UNPKG

casc-cesium

Version:

Vue 3.x components for CesiumJS.

152 lines (151 loc) 5.24 kB
import SpinnerBall from './spinner-ball'; import SpinnerBars from './spinner-bars'; import SpinnerDots from './spinner-dots'; import SpinnerGears from './spinner-gears'; import SpinnerHourglass from './spinner-hourglass'; import SpinnerIos from './spinner-ios'; import SpinnerOrbit from './spinner-orbit'; import SpinnerOval from './spinner-oval'; import SpinnerPuff from './spinner-puff'; import SpinnerRings from './spinner-rings'; import SpinnerTail from './spinner-tail'; import Spinner from './spinner'; import { ComponentPublicInstance } from 'vue'; export { SpinnerBall, SpinnerBars, SpinnerDots, SpinnerGears, SpinnerHourglass, SpinnerIos, SpinnerOrbit, SpinnerOval, SpinnerPuff, SpinnerRings, SpinnerTail, Spinner }; export interface VcSpinnerProps { /** * Size in CSS units, including unit name or standard size name (xs|sm|md|lg|xl) */ size?: string | undefined; /** * Color name for component from the Color Palette */ color?: string | undefined; /** * Override value to use for stroke-width * Default value: 5 */ thickness?: number | undefined; } export declare type VcSpinnerRef = ComponentPublicInstance<VcSpinnerProps>; export interface VcSpinnerBallProps { /** * Size in CSS units, including unit name or standard size name (xs|sm|md|lg|xl) */ size?: string | undefined; /** * Color name for component from the Quasar Color Palette */ color?: string | undefined; } export declare type VcSpinnerBallRef = ComponentPublicInstance<VcSpinnerBallProps>; export interface VcSpinnerBarsProps { /** * Size in CSS units, including unit name or standard size name (xs|sm|md|lg|xl) */ size?: string | undefined; /** * Color name for component from the Quasar Color Palette */ color?: string | undefined; } export declare type VcSpinnerBarsRef = ComponentPublicInstance<VcSpinnerBarsProps>; export interface VcSpinnerDotsProps { /** * Size in CSS units, including unit name or standard size name (xs|sm|md|lg|xl) */ size?: string | undefined; /** * Color name for component from the Quasar Color Palette */ color?: string | undefined; } export declare type VcSpinnerDotsRef = ComponentPublicInstance<VcSpinnerDotsProps>; export interface VcSpinnerGearsProps { /** * Size in CSS units, including unit name or standard size name (xs|sm|md|lg|xl) */ size?: string | undefined; /** * Color name for component from the Quasar Color Palette */ color?: string | undefined; } export declare type VcSpinnerGearsRef = ComponentPublicInstance<VcSpinnerGearsProps>; export interface VcSpinnerHourglassProps { /** * Size in CSS units, including unit name or standard size name (xs|sm|md|lg|xl) */ size?: string | undefined; /** * Color name for component from the Quasar Color Palette */ color?: string | undefined; } export declare type VcSpinnerHourglassRef = ComponentPublicInstance<VcSpinnerHourglassProps>; export interface VcSpinnerIosProps { /** * Size in CSS units, including unit name or standard size name (xs|sm|md|lg|xl) */ size?: string | undefined; /** * Color name for component from the Quasar Color Palette */ color?: string | undefined; } export declare type VcSpinnerIosRef = ComponentPublicInstance<VcSpinnerIosProps>; export interface VcSpinnerOrbitProps { /** * Size in CSS units, including unit name or standard size name (xs|sm|md|lg|xl) */ size?: string | undefined; /** * Color name for component from the Quasar Color Palette */ color?: string | undefined; } export declare type VcSpinnerOrbitRef = ComponentPublicInstance<VcSpinnerOrbitProps>; export interface VcSpinnerOvalProps { /** * Size in CSS units, including unit name or standard size name (xs|sm|md|lg|xl) */ size?: string | undefined; /** * Color name for component from the Quasar Color Palette */ color?: string | undefined; } export declare type VcSpinnerOvalRef = ComponentPublicInstance<VcSpinnerOvalProps>; export interface VcSpinnerPuffProps { /** * Size in CSS units, including unit name or standard size name (xs|sm|md|lg|xl) */ size?: string | undefined; /** * Color name for component from the Quasar Color Palette */ color?: string | undefined; } export declare type VcSpinnerPuffRef = ComponentPublicInstance<VcSpinnerPuffProps>; export interface VcSpinnerRingsProps { /** * Size in CSS units, including unit name or standard size name (xs|sm|md|lg|xl) */ size?: string | undefined; /** * Color name for component from the Quasar Color Palette */ color?: string | undefined; } export declare type VcSpinnerRingsRef = ComponentPublicInstance<VcSpinnerRingsProps>; export interface VcSpinnerTailProps { /** * Size in CSS units, including unit name or standard size name (xs|sm|md|lg|xl) */ size?: string | undefined; /** * Color name for component from the Quasar Color Palette */ color?: string | undefined; } export declare type VcSpinnerTailRef = ComponentPublicInstance<VcSpinnerTailProps>;