@progress/kendo-vue-indicators 8.0.3-develop.1 → 8.0.3-develop.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -5,663 +5,13 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- import { ComponentOptionsMixin } from 'vue';
9
- import { ComponentProvideOptions } from 'vue';
10
- import { DefineComponent } from 'vue';
11
- import { ExtractPropTypes } from 'vue';
12
- import { PropType } from 'vue';
13
- import { PublicProps } from 'vue';
14
- import { SkeletonAnimation as SkeletonAnimation_2 } from './SkeletonProps';
15
-
16
- /**
17
- * Represents the [Kendo UI for Vue Badge component]({% slug api_indicators_badgeprops %}).
18
- *
19
- * @example
20
- * ```jsx
21
- * <Badge>99+</Badge>
22
- * ```
23
- */
24
- export declare const Badge: DefineComponent<ExtractPropTypes< {
25
- dir: PropType<string>;
26
- align: {
27
- type: PropType<BadgeAlign>;
28
- default: () => BadgeAlign;
29
- };
30
- size: {
31
- type: PropType<"small" | "medium" | "large">;
32
- validator: (value: string) => boolean;
33
- };
34
- fillMode: {
35
- type: PropType<"solid" | "outline">;
36
- validator: (value: string) => boolean;
37
- };
38
- themeColor: {
39
- type: PropType<"primary" | "secondary" | "tertiary" | "info" | "success" | "warning" | "error" | "dark" | "light" | "inverse" | "inherit">;
40
- validator: (value: string) => boolean;
41
- };
42
- rounded: {
43
- type: PropType<"small" | "medium" | "large" | "none" | "full">;
44
- validator: (value: string) => boolean;
45
- };
46
- position: {
47
- type: PropType<string>;
48
- default: string;
49
- validator: (value: string) => any;
50
- };
51
- cutoutBorder: PropType<boolean>;
52
- }>, {}, {}, {
53
- badgeClasses(): {
54
- [x: string]: any;
55
- 'k-badge': boolean;
56
- 'k-badge-sm': boolean;
57
- 'k-badge-md': boolean;
58
- 'k-badge-lg': boolean;
59
- 'k-badge-border-cutout': any;
60
- 'k-top-start': boolean;
61
- 'k-top-end': boolean;
62
- 'k-bottom-start': boolean;
63
- 'k-bottom-end': boolean;
64
- };
65
- }, {
66
- focusElement(): void;
67
- }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
68
- dir: PropType<string>;
69
- align: {
70
- type: PropType<BadgeAlign>;
71
- default: () => BadgeAlign;
72
- };
73
- size: {
74
- type: PropType<"small" | "medium" | "large">;
75
- validator: (value: string) => boolean;
76
- };
77
- fillMode: {
78
- type: PropType<"solid" | "outline">;
79
- validator: (value: string) => boolean;
80
- };
81
- themeColor: {
82
- type: PropType<"primary" | "secondary" | "tertiary" | "info" | "success" | "warning" | "error" | "dark" | "light" | "inverse" | "inherit">;
83
- validator: (value: string) => boolean;
84
- };
85
- rounded: {
86
- type: PropType<"small" | "medium" | "large" | "none" | "full">;
87
- validator: (value: string) => boolean;
88
- };
89
- position: {
90
- type: PropType<string>;
91
- default: string;
92
- validator: (value: string) => any;
93
- };
94
- cutoutBorder: PropType<boolean>;
95
- }>> & Readonly<{}>, {
96
- position: string;
97
- align: BadgeAlign;
98
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
99
-
100
- /**
101
- * Specifies the horizontal and vertical alignment of the Badge in a relation to the element.
102
- */
103
- export declare interface BadgeAlign {
104
- /**
105
- * Defines the possible horizontal alignment of the Badge.
106
- *
107
- * The available values are:
108
- * - `start`&mdash;Uses the start point of the parent element.
109
- * - `end`(Default)&mdash;Uses the end point of the parent element.
110
- */
111
- horizontal: 'start' | 'end';
112
- /**
113
- * Defines the possible vertical alignment of the Badge.
114
- *
115
- * The available values are:
116
- * - `top`(Default)&mdash;Uses the top point of the parent element.
117
- * - `bottom`&mdash;Uses the bottom point of the parent element.
118
- */
119
- vertical: 'top' | 'bottom';
120
- }
121
-
122
- /**
123
- * Represents the [Kendo UI for Vue BadgeContainer component]({% slug api_indicators_badgeprops %}).
124
- *
125
- * @example
126
- * ```jsx
127
- * <BadgeContainer>99+</BadgeContainer>
128
- * ```
129
- */
130
- export declare const BadgeContainer: DefineComponent<ExtractPropTypes< {
131
- dir: PropType<string>;
132
- align: {
133
- type: PropType<BadgeAlign>;
134
- default: () => BadgeAlign;
135
- };
136
- size: {
137
- type: PropType<"small" | "medium" | "large">;
138
- validator: (value: string) => boolean;
139
- };
140
- fillMode: {
141
- type: PropType<"solid" | "outline">;
142
- validator: (value: string) => boolean;
143
- };
144
- themeColor: {
145
- type: PropType<"primary" | "secondary" | "tertiary" | "info" | "success" | "warning" | "error" | "dark" | "light" | "inverse" | "inherit">;
146
- default: string;
147
- validator: (value: string) => boolean;
148
- };
149
- rounded: {
150
- type: PropType<"small" | "medium" | "large" | "none" | "full">;
151
- validator: (value: string) => boolean;
152
- };
153
- position: {
154
- type: PropType<string>;
155
- default: string;
156
- validator: (value: string) => boolean;
157
- };
158
- cutoutBorder: PropType<boolean>;
159
- content: PropType<any>;
160
- }>, {}, {}, {
161
- badgeContainerClasses(): {
162
- 'k-badge-container': boolean;
163
- };
164
- badgeClasses(): {
165
- [x: string]: any;
166
- 'k-badge': boolean;
167
- 'k-badge-sm': boolean;
168
- 'k-badge-md': boolean;
169
- 'k-badge-lg': boolean;
170
- 'k-badge-border-cutout': any;
171
- 'k-top-start': boolean;
172
- 'k-top-end': boolean;
173
- 'k-bottom-start': boolean;
174
- 'k-bottom-end': boolean;
175
- };
176
- }, {
177
- focusElement(): void;
178
- }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
179
- dir: PropType<string>;
180
- align: {
181
- type: PropType<BadgeAlign>;
182
- default: () => BadgeAlign;
183
- };
184
- size: {
185
- type: PropType<"small" | "medium" | "large">;
186
- validator: (value: string) => boolean;
187
- };
188
- fillMode: {
189
- type: PropType<"solid" | "outline">;
190
- validator: (value: string) => boolean;
191
- };
192
- themeColor: {
193
- type: PropType<"primary" | "secondary" | "tertiary" | "info" | "success" | "warning" | "error" | "dark" | "light" | "inverse" | "inherit">;
194
- default: string;
195
- validator: (value: string) => boolean;
196
- };
197
- rounded: {
198
- type: PropType<"small" | "medium" | "large" | "none" | "full">;
199
- validator: (value: string) => boolean;
200
- };
201
- position: {
202
- type: PropType<string>;
203
- default: string;
204
- validator: (value: string) => boolean;
205
- };
206
- cutoutBorder: PropType<boolean>;
207
- content: PropType<any>;
208
- }>> & Readonly<{}>, {
209
- themeColor: "primary" | "secondary" | "tertiary" | "info" | "success" | "warning" | "error" | "dark" | "light" | "inverse" | "inherit";
210
- position: string;
211
- align: BadgeAlign;
212
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
213
-
214
- /**
215
- * Represents the props of the [Kendo UI for Vue Badge component]({% slug overview_badge %}).
216
- */
217
- export declare interface BadgeContainerProps extends BadgeProps {
218
- /**
219
- * Defines the custom rendering of the Badge content. Accepts a slot name, a `render` function, or a Vue Component.
220
- */
221
- content?: any;
222
- }
223
-
224
- /**
225
- * Specifies the appearance fill style of the Badge.
226
- *
227
- * The possible values are:
228
- * * `solid` (Default)
229
- * * `outline`
230
- *
231
- */
232
- export declare type BadgeFill = 'solid' | 'outline';
233
-
234
- /**
235
- * Specifies the position of the Badge relative to the edge of the container element.
236
- *
237
- * The possible values are:
238
- * * `edge` (Default)&mdash;The center of the Badge is positioned on the edge of the container element.
239
- * * `outside`&mdash;The Badge is entirely positioned outside the edge of the container element.
240
- * * `inside`&mdash;The Badge is entirely positioned inside the edge of the the container element.
241
- *
242
- */
243
- export declare type BadgePosition = 'edge' | 'outside' | 'inside';
244
-
245
- /**
246
- * Represents the props of the [Kendo UI for Vue Badge component]({% slug overview_badge %}).
247
- */
248
- export declare interface BadgeProps {
249
- /**
250
- * Represents the `dir` HTML attribute. This is used to switch from LTR to RTL.
251
- */
252
- dir?: string;
253
- /**
254
- * Specifies the size of the Badge.
255
- *
256
- * The possible values are:
257
- * * `small`
258
- * * `medium`
259
- * * `large`
260
- *
261
- * @default `undefined`
262
- */
263
- size?: 'small' | 'medium' | 'large';
264
- /**
265
- * Specifies the roundness of the Badge.
266
- *
267
- * The possible values are:
268
- * - none
269
- * - small
270
- * - medium
271
- * - large
272
- * - full
273
- *
274
- * @default `undefined`
275
- */
276
- rounded?: 'none' | 'small' | 'medium' | 'large' | 'full';
277
- /**
278
- * Specifies the appearance fill style of the Badge.
279
- *
280
- * The possible values are:
281
- * * `solid`
282
- * * `outline`
283
- *
284
- * @default `undefined`
285
- */
286
- fillMode?: 'solid' | 'outline';
287
- /**
288
- * Specifies the theme color of the Badge.
289
- *
290
- * The possible values are:
291
- * * `primary`&mdash;Applies coloring based on primary theme color.
292
- * * `secondary`&mdash;Applies coloring based on secondary theme color.
293
- * * `tertiary`&mdash; Applies coloring based on tertiary theme color.
294
- * * `inherit`&mdash; Applies inherited coloring value.
295
- * * `info`&mdash;Applies coloring based on info theme color.
296
- * * `success`&mdash; Applies coloring based on success theme color.
297
- * * `warning`&mdash; Applies coloring based on warning theme color.
298
- * * `error`&mdash; Applies coloring based on error theme color.
299
- * * `dark`&mdash; Applies coloring based on dark theme color.
300
- * * `light`&mdash; Applies coloring based on light theme color.
301
- * * `inverse`&mdash; Applies coloring based on inverse theme color.
302
- *
303
- * @default `undefined`
304
- */
305
- themeColor?: 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse' | 'inherit';
306
- /**
307
- * Specifies the alignment of the Badge.
308
- *
309
- * The possible keys are:
310
- * * `horizontal`&mdash; Defines the possible horizontal alignment of the Badge.
311
- * * `start`&mdash;Uses the start point of the parent element.
312
- * * `end`(Default)&mdash;Uses the end point of the parent element.
313
- * * `vertical`&mdash; Defines the possible vertical alignment of the Badge.
314
- * * `top`(Default)&mdash;Uses the top point of the parent element.
315
- * * `bottom`&mdash;Uses the bottom point of the parent element.
316
- *
317
- */
318
- align?: {
319
- /**
320
- * Defines the possible horizontal alignment of the Badge.
321
- *
322
- * The available values are:
323
- * - `start`&mdash;Uses the start point of the parent element.
324
- * - `end`(Default)&mdash;Uses the end point of the parent element.
325
- */
326
- horizontal: 'start' | 'end';
327
- /**
328
- * Defines the possible vertical alignment of the Badge.
329
- *
330
- * The available values are:
331
- * - `top`(Default)&mdash;Uses the top point of the parent element.
332
- * - `bottom`&mdash;Uses the bottom point of the parent element.
333
- */
334
- vertical: 'top' | 'bottom';
335
- };
336
- /**
337
- * Specifies the position of the Badge relative to the edge of the container element.
338
- *
339
- * The possible values are:
340
- * * `edge` (Default)&mdash;The center of the Badge is positioned on the edge of the container element.
341
- * * `outside`&mdash;The Badge is entirely positioned outside the edge of the container element.
342
- * * `inside`&mdash;The Badge is entirely positioned inside the edge of the the container element.
343
- *
344
- * @default `edge`
345
- */
346
- position?: 'edge' | 'outside' | 'inside' | string;
347
- /**
348
- * Specifies wether or not to render additional "cutout" border around the Badge.
349
- *
350
- * The possible values are:
351
- * * `true`
352
- * * `false` (Default)
353
- *
354
- */
355
- cutoutBorder?: boolean;
356
- }
357
-
358
- /**
359
- * Specifies the size of the Badge.
360
- *
361
- * The possible values are:
362
- * * `small`
363
- * * `medium` (Default)
364
- * * `large`
365
- *
366
- */
367
- export declare type BadgeSize = 'small' | 'medium' | 'large';
368
-
369
- /**
370
- * Specifies the theme color of the Badge.
371
- *
372
- * The possible values are:
373
- * * `primary` (Default)&mdash;Applies coloring based on primary theme color.
374
- * * `secondary`&mdash;Applies coloring based on secondary theme color.
375
- * * `tertiary`&mdash; Applies coloring based on tertiary theme color.
376
- * * `inherit`&mdash; Applies inherited coloring value.
377
- * * `info`&mdash;Applies coloring based on info theme color.
378
- * * `success`&mdash; Applies coloring based on success theme color.
379
- * * `warning`&mdash; Applies coloring based on warning theme color.
380
- * * `error`&mdash; Applies coloring based on error theme color.
381
- * * `dark`&mdash; Applies coloring based on dark theme color.
382
- * * `light`&mdash; Applies coloring based on light theme color.
383
- * * `inverse`&mdash; Applies coloring based on inverse theme color.
384
- *
385
- */
386
- export declare type BadgeThemeColor = 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse' | 'inherit';
387
-
388
- /**
389
- * @hidden
390
- */
391
- export declare const Loader: DefineComponent<ExtractPropTypes< {
392
- type: {
393
- type: PropType<string>;
394
- default: string;
395
- validator: (value: string) => boolean;
396
- };
397
- size: {
398
- type: PropType<string>;
399
- validator: (value: string) => boolean;
400
- };
401
- themeColor: {
402
- type: PropType<string>;
403
- default: string;
404
- validator: (value: string) => boolean;
405
- };
406
- }>, {}, {}, {
407
- loaderClasses(): {
408
- 'k-loader': boolean;
409
- 'k-loader-sm': boolean;
410
- 'k-loader-md': boolean;
411
- 'k-loader-lg': boolean;
412
- 'k-loader-primary': boolean;
413
- 'k-loader-secondary': boolean;
414
- 'k-loader-tertiary': boolean;
415
- 'k-loader-info': boolean;
416
- 'k-loader-success': boolean;
417
- 'k-loader-warning': boolean;
418
- 'k-loader-error': boolean;
419
- 'k-loader-dark': boolean;
420
- 'k-loader-light': boolean;
421
- 'k-loader-inverse': boolean;
422
- 'k-loader-pulsing-2': boolean;
423
- 'k-loader-spinner-3': boolean;
424
- 'k-loader-spinner-4': boolean;
425
- };
426
- }, {
427
- focus(e: any): void;
428
- }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
429
- type: {
430
- type: PropType<string>;
431
- default: string;
432
- validator: (value: string) => boolean;
433
- };
434
- size: {
435
- type: PropType<string>;
436
- validator: (value: string) => boolean;
437
- };
438
- themeColor: {
439
- type: PropType<string>;
440
- default: string;
441
- validator: (value: string) => boolean;
442
- };
443
- }>> & Readonly<{}>, {
444
- type: string;
445
- themeColor: string;
446
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
447
-
448
- /**
449
- * Represents the props of the [Kendo UI for Vue Loader component]({% slug overview_loader %}).
450
- */
451
- export declare interface LoaderProps {
452
- /**
453
- * Specifies the size of the Loader.
454
- *
455
- * The possible values are:
456
- * * `small`
457
- * * `medium` (Default)
458
- * * `large`
459
- *
460
- */
461
- size?: LoaderSize | string;
462
- /**
463
- * Specifies the theme color of the Loader.
464
- *
465
- * The possible values are:
466
- * * `primary` (Default)&mdash;Applies coloring based on primary theme color.
467
- * * `secondary`&mdash;Applies coloring based on secondary theme color.
468
- * * `tertiary`&mdash; Applies coloring based on tertiary theme color.
469
- * * `info`&mdash;Applies coloring based on info theme color.
470
- * * `success`&mdash; Applies coloring based on success theme color.
471
- * * `warning`&mdash; Applies coloring based on warning theme color.
472
- * * `error`&mdash; Applies coloring based on error theme color.
473
- * * `dark`&mdash; Applies coloring based on dark theme color.
474
- * * `light`&mdash; Applies coloring based on light theme color.
475
- * * `inverse`&mdash; Applies coloring based on inverse theme color.
476
- */
477
- themeColor?: LoaderThemeColor | string;
478
- /**
479
- * Specifies the Loader animation type.
480
- *
481
- * The possible values are:
482
- * - `pulsing` (default)
483
- * - `infinite-spinner`
484
- * - `converging-spinner`
485
- */
486
- type?: LoaderType | string;
487
- }
488
-
489
- /**
490
- * Specifies the size of the Loader
491
- * ([see example]({% slug appearance_loader %}#toc-size)).
492
- *
493
- * The possible values are:
494
- * * `small`
495
- * * `medium` (Default)
496
- * * `large`
497
- *
498
- */
499
- export declare type LoaderSize = 'small' | 'medium' | 'large';
500
-
501
- /**
502
- * Specifies the theme color of the Loader.
503
- * ([see example]({% slug appearance_loader %}#toc-theme-color)).
504
- *
505
- * The possible values are:
506
- * * `primary` (Default)&mdash;Applies coloring based on primary theme color.
507
- * * `secondary`&mdash;Applies coloring based on secondary theme color.
508
- * * `tertiary`&mdash; Applies coloring based on tertiary theme color.
509
- * * `info`&mdash;Applies coloring based on info theme color.
510
- * * `success`&mdash; Applies coloring based on success theme color.
511
- * * `warning`&mdash; Applies coloring based on warning theme color.
512
- * * `error`&mdash; Applies coloring based on error theme color.
513
- * * `dark`&mdash; Applies coloring based on dark theme color.
514
- * * `light`&mdash; Applies coloring based on light theme color.
515
- * * `inverse`&mdash; Applies coloring based on inverted theme color.
516
- *
517
- */
518
- export declare type LoaderThemeColor = 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse';
519
-
520
- /**
521
- * Specifies the Loader animation type.
522
- *
523
- * The possible values are:
524
- * - `pulsing` (default)
525
- * - `infinite-spinner`
526
- * - `converging-spinner`
527
- *
528
- */
529
- export declare type LoaderType = 'pulsing' | 'infinite-spinner' | 'converging-spinner';
530
-
531
- /**
532
- * @hidden
533
- */
534
- export declare const Skeleton: DefineComponent<ExtractPropTypes< {
535
- animation: {
536
- type: PropType<boolean | SkeletonAnimation_2>;
537
- default: () => {
538
- type: string;
539
- };
540
- validator: (value: any) => any;
541
- };
542
- shape: {
543
- type: PropType<string>;
544
- default: string;
545
- validator: (value: any) => any;
546
- };
547
- ariaBusy: {
548
- type: PropType<boolean>;
549
- default: any;
550
- };
551
- role: {
552
- type: PropType<string>;
553
- default: any;
554
- };
555
- }>, {}, {}, {
556
- skeletonClasses(): {
557
- 'k-skeleton': boolean;
558
- 'k-skeleton-circle': boolean;
559
- 'k-skeleton-rect': boolean;
560
- 'k-skeleton-text': boolean;
561
- 'k-skeleton-pulse': boolean;
562
- 'k-skeleton-wave': boolean;
563
- };
564
- }, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
565
- animation: {
566
- type: PropType<boolean | SkeletonAnimation_2>;
567
- default: () => {
568
- type: string;
569
- };
570
- validator: (value: any) => any;
571
- };
572
- shape: {
573
- type: PropType<string>;
574
- default: string;
575
- validator: (value: any) => any;
576
- };
577
- ariaBusy: {
578
- type: PropType<boolean>;
579
- default: any;
580
- };
581
- role: {
582
- type: PropType<string>;
583
- default: any;
584
- };
585
- }>> & Readonly<{}>, {
586
- role: string;
587
- animation: {
588
- type: string;
589
- };
590
- shape: string;
591
- ariaBusy: boolean;
592
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
593
-
594
- /**
595
- * Specifies the animation settings of the Skeleton.
596
- */
597
- export declare interface SkeletonAnimation {
598
- /**
599
- * Specifies the type of the Skeleton animation. Defaults to `pulse`.
600
- */
601
- type?: 'wave' | 'pulse';
602
- }
603
-
604
- /**
605
- * Represents the props of the [Kendo Ui for Vue Skeleton component]({% slug overview_skeleton %}).
606
- */
607
- export declare interface SkeletonProps {
608
- /**
609
- * Specifies the animation settings of the Skeleton.
610
- *
611
- * The possible keys are:
612
- * * `type`&mdash;Defines the type of the Skeleton animation.
613
- * * `wave`&mdash;Shows wave animation effect.
614
- * * `pulse`(Default)&mdash;Shows pulse animation effect.
615
- *
616
- * To disable the animation, set the property to `false`.
617
- *
618
- */
619
- animation?: boolean | SkeletonAnimation;
620
- /**
621
- * Specifies the shape of the Skeleton.
622
- *
623
- * The possible values are:
624
- * * `circle`&mdash;Renders a circular Skeleton.
625
- * * `text`(Default)&mdash;Renders a line Skeleton.
626
- * * `rectangle`&mdash;Renders a rectangular Skeleton.
627
- *
628
- */
629
- shape?: SkeletonShape | string;
630
- /**
631
- * Specifies the ariaBusy attribute of the Skeleton.
632
- *
633
- * The Skeleton component does not have accessibility on its own as it is only a visual indicator.
634
- * It should be integrated within an element that refers to the loading state.
635
- * When integrating the Skeleton on a page, you might want to define an `ariaBusy` attribute and
636
- * this property gives you this option.
637
- *
638
- * By default the `ariaBusy` attribute is not rendered.
639
- */
640
- ariaBusy?: boolean | undefined;
641
- /**
642
- * Specifies the role attribute of the Skeleton.
643
- *
644
- * The Skeleton component does not have accessibility on its own as it is only a visual indicator.
645
- * It should be integrated within an element that refers to the loading state.
646
- * When integrating the Skeleton on a page, you might want to define a `role` attribute and
647
- * this property gives you this option.
648
- *
649
- * By default the `role` attribute is not rendered.
650
- *
651
- * The recommended value of the attribute is `alert`
652
- */
653
- role?: string | undefined;
654
- }
655
-
656
- /**
657
- * Specifies the shape of the Skeleton.
658
- *
659
- * The possible values are:
660
- * * `circle`&mdash;Renders a circular Skeleton.
661
- * * `text`(Default)&mdash;Renders a line Skeleton.
662
- * * `rectangle`&mdash;Renders a rectangular Skeleton.
663
- *
664
- */
665
- export declare type SkeletonShape = 'circle' | 'text' | 'rectangle';
666
-
667
- export { }
8
+ export * from './badge/Badge';
9
+ export * from './badge/BadgeProps';
10
+ export * from './badge/BadgeContainer';
11
+ export * from './loader/Loader';
12
+ export * from './loader/LoaderProps';
13
+ export * from './loader/models/size';
14
+ export * from './loader/models/theme-color';
15
+ export * from './loader/models/type';
16
+ export * from './skeleton/Skeleton';
17
+ export * from './skeleton/SkeletonProps';