UNPKG

vue-cesium

Version:
152 lines (151 loc) 5.15 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 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 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 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 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 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 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 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 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 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 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 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 type VcSpinnerTailRef = ComponentPublicInstance<VcSpinnerTailProps>;