carbon-custom-elements
Version:
A Carbon Design System variant that's as easy to use as native HTML elements, with no framework tax, no framework silo.
51 lines (49 loc) • 1.1 kB
TypeScript
/**
* @license
*
* Copyright IBM Corp. 2019, 2020
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
import { LitElement } from 'lit-element';
/**
* Loading state for inline loading spinner.
*/
export declare enum INLINE_LOADING_STATE {
/**
* Inactive state.
*/
INACTIVE = "inactive",
/**
* State for loading in progress.
*/
ACTIVE = "active",
/**
* State for loading successful.
*/
FINISHED = "finished",
/**
* State for loading failure.
*/
ERROR = "error"
}
/**
* Lnline loading spinner.
* @element bx-inline-loading
*/
declare class BXInlineLoading extends LitElement {
/**
* @returns The template for the status icon.
*/
private _renderIcon;
/**
* The loading status.
*/
status: INLINE_LOADING_STATE;
connectedCallback(): void;
render(): import("lit-element").TemplateResult;
static styles: any;
}
export default BXInlineLoading;
//# sourceMappingURL=inline-loading.d.ts.map