@maggioli-design-system/mds-progress 3.0.0 → 3.0.2

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.
Files changed (96) hide show
  1. package/dist/cjs/{index-9725b4b4.js → index-abfa4aa9.js} +164 -65
  2. package/dist/cjs/loader.cjs.js +1 -1
  3. package/dist/cjs/mds-progress.cjs.entry.js +37 -4
  4. package/dist/cjs/mds-progress.cjs.js +2 -2
  5. package/dist/collection/collection-manifest.json +1 -1
  6. package/dist/collection/common/aria.js +17 -1
  7. package/dist/collection/common/device.js +6 -0
  8. package/dist/collection/common/floating-controller.js +180 -0
  9. package/dist/collection/common/keyboard-manager.js +2 -2
  10. package/dist/collection/common/slot.js +19 -0
  11. package/dist/collection/components/mds-progress/mds-progress.js +28 -3
  12. package/dist/collection/components/mds-progress/test/mds-progress.stories.js +1 -1
  13. package/dist/collection/dictionary/animation.js +5 -0
  14. package/dist/collection/dictionary/file-extensions.js +61 -56
  15. package/dist/collection/dictionary/text.js +60 -1
  16. package/dist/collection/dictionary/tree.js +13 -0
  17. package/dist/collection/fixtures/filenames.js +62 -1
  18. package/dist/collection/type/animation.js +1 -0
  19. package/dist/collection/type/tree.js +1 -0
  20. package/dist/collection/type/variant-file-format.js +5 -0
  21. package/dist/components/mds-progress.js +36 -3
  22. package/dist/documentation.d.ts +8 -0
  23. package/dist/documentation.json +14 -6
  24. package/dist/esm/{index-9f9c0c97.js → index-a89959e6.js} +164 -65
  25. package/dist/esm/loader.js +2 -2
  26. package/dist/esm/mds-progress.entry.js +37 -4
  27. package/dist/esm/mds-progress.js +3 -3
  28. package/dist/esm-es5/index-a89959e6.js +1 -0
  29. package/dist/esm-es5/loader.js +1 -1
  30. package/dist/esm-es5/mds-progress.entry.js +1 -1
  31. package/dist/esm-es5/mds-progress.js +1 -1
  32. package/dist/mds-progress/mds-progress.esm.js +1 -1
  33. package/dist/mds-progress/mds-progress.js +1 -1
  34. package/dist/mds-progress/p-088b5b20.system.entry.js +1 -0
  35. package/dist/mds-progress/p-2b265ffa.system.js +1 -0
  36. package/dist/mds-progress/p-64876922.system.js +2 -0
  37. package/dist/mds-progress/p-8a9536f1.js +2 -0
  38. package/dist/mds-progress/p-d8baed2c.entry.js +1 -0
  39. package/dist/stats.json +75 -41
  40. package/dist/types/common/aria.d.ts +3 -1
  41. package/dist/types/common/device.d.ts +2 -0
  42. package/dist/types/common/floating-controller.d.ts +46 -0
  43. package/dist/types/common/slot.d.ts +3 -0
  44. package/dist/types/components/mds-progress/mds-progress.d.ts +1 -0
  45. package/dist/types/dictionary/animation.d.ts +2 -0
  46. package/dist/types/dictionary/text.d.ts +3 -1
  47. package/dist/types/dictionary/tree.d.ts +4 -0
  48. package/dist/types/fixtures/filenames.d.ts +62 -1
  49. package/dist/types/type/animation.d.ts +1 -0
  50. package/dist/types/type/file-types.d.ts +1 -1
  51. package/dist/types/type/text.d.ts +2 -0
  52. package/dist/types/type/tree.d.ts +3 -0
  53. package/dist/types/type/variant-file-format.d.ts +1 -1
  54. package/documentation.json +63 -20
  55. package/package.json +3 -3
  56. package/src/common/aria.ts +22 -2
  57. package/src/common/device.ts +9 -0
  58. package/src/common/floating-controller.ts +263 -0
  59. package/src/common/keyboard-manager.ts +2 -2
  60. package/src/common/slot.ts +24 -0
  61. package/src/components/mds-progress/mds-progress.tsx +9 -2
  62. package/src/components/mds-progress/test/mds-progress.stories.tsx +1 -1
  63. package/src/dictionary/animation.ts +8 -0
  64. package/src/dictionary/file-extensions.ts +61 -56
  65. package/src/dictionary/text.ts +64 -0
  66. package/src/dictionary/tree.ts +21 -0
  67. package/src/fixtures/filenames.ts +63 -0
  68. package/src/fixtures/icons.json +29 -0
  69. package/src/fixtures/iconsauce.json +11 -0
  70. package/src/meta/file-format/locale.el.json +44 -0
  71. package/src/meta/file-format/locale.en.json +44 -0
  72. package/src/meta/file-format/locale.es.json +44 -0
  73. package/src/meta/file-format/locale.it.json +44 -0
  74. package/src/type/animation.ts +3 -0
  75. package/src/type/file-types.ts +6 -0
  76. package/src/type/text.ts +59 -0
  77. package/src/type/tree.ts +12 -0
  78. package/src/type/variant-file-format.ts +6 -0
  79. package/www/build/mds-progress.esm.js +1 -1
  80. package/www/build/mds-progress.js +1 -1
  81. package/www/build/p-088b5b20.system.entry.js +1 -0
  82. package/www/build/p-2b265ffa.system.js +1 -0
  83. package/www/build/p-64876922.system.js +2 -0
  84. package/www/build/p-8a9536f1.js +2 -0
  85. package/www/build/p-d8baed2c.entry.js +1 -0
  86. package/dist/esm-es5/index-9f9c0c97.js +0 -1
  87. package/dist/mds-progress/p-0e39acfd.system.js +0 -1
  88. package/dist/mds-progress/p-93b285aa.js +0 -2
  89. package/dist/mds-progress/p-b8db6677.entry.js +0 -1
  90. package/dist/mds-progress/p-c09df41d.system.js +0 -2
  91. package/dist/mds-progress/p-fafac9b1.system.entry.js +0 -1
  92. package/www/build/p-0e39acfd.system.js +0 -1
  93. package/www/build/p-93b285aa.js +0 -2
  94. package/www/build/p-b8db6677.entry.js +0 -1
  95. package/www/build/p-c09df41d.system.js +0 -2
  96. package/www/build/p-fafac9b1.system.entry.js +0 -1
package/dist/stats.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "timestamp": "2024-11-25T18:55:25",
2
+ "timestamp": "2025-02-06T09:53:12",
3
3
  "compiler": {
4
4
  "name": "node",
5
5
  "version": "22.11.0"
@@ -9,18 +9,21 @@
9
9
  "fsNamespace": "mds-progress",
10
10
  "components": 1,
11
11
  "entries": 1,
12
- "bundles": 93,
12
+ "bundles": 100,
13
13
  "outputs": [
14
14
  {
15
15
  "name": "dist-collection",
16
- "files": 45,
16
+ "files": 52,
17
17
  "generatedFiles": [
18
18
  "./dist/collection/common/aria.js",
19
19
  "./dist/collection/common/date.js",
20
+ "./dist/collection/common/device.js",
20
21
  "./dist/collection/common/file.js",
22
+ "./dist/collection/common/floating-controller.js",
21
23
  "./dist/collection/common/icon.js",
22
24
  "./dist/collection/common/keyboard-manager.js",
23
25
  "./dist/collection/common/locale.js",
26
+ "./dist/collection/common/slot.js",
24
27
  "./dist/collection/common/unit.js",
25
28
  "./dist/collection/common/yugop/core.js",
26
29
  "./dist/collection/common/yugop/index.js",
@@ -33,6 +36,7 @@
33
36
  "./dist/collection/components/mds-progress/meta/dictionary.js",
34
37
  "./dist/collection/components/mds-progress/meta/types.js",
35
38
  "./dist/collection/components/mds-progress/test/mds-progress.stories.js",
39
+ "./dist/collection/dictionary/animation.js",
36
40
  "./dist/collection/dictionary/autocomplete.js",
37
41
  "./dist/collection/dictionary/button.js",
38
42
  "./dist/collection/dictionary/color.js",
@@ -42,10 +46,12 @@
42
46
  "./dist/collection/dictionary/input.js",
43
47
  "./dist/collection/dictionary/loading.js",
44
48
  "./dist/collection/dictionary/text.js",
49
+ "./dist/collection/dictionary/tree.js",
45
50
  "./dist/collection/dictionary/typography.js",
46
51
  "./dist/collection/dictionary/variant.js",
47
52
  "./dist/collection/fixtures/cities.js",
48
53
  "./dist/collection/fixtures/filenames.js",
54
+ "./dist/collection/type/animation.js",
49
55
  "./dist/collection/type/autocomplete.js",
50
56
  "./dist/collection/type/button.js",
51
57
  "./dist/collection/type/date.js",
@@ -57,6 +63,7 @@
57
63
  "./dist/collection/type/loading.js",
58
64
  "./dist/collection/type/preference.js",
59
65
  "./dist/collection/type/text.js",
66
+ "./dist/collection/type/tree.js",
60
67
  "./dist/collection/type/typography.js",
61
68
  "./dist/collection/type/variant-file-format.js",
62
69
  "./dist/collection/type/variant.js"
@@ -77,19 +84,19 @@
77
84
  "files": 42,
78
85
  "generatedFiles": [
79
86
  "./dist/cjs/app-globals-3a1e7e63.js",
80
- "./dist/cjs/index-9725b4b4.js",
87
+ "./dist/cjs/index-abfa4aa9.js",
81
88
  "./dist/cjs/index.cjs.js",
82
89
  "./dist/cjs/loader.cjs.js",
83
90
  "./dist/cjs/mds-progress.cjs.entry.js",
84
91
  "./dist/cjs/mds-progress.cjs.js",
85
92
  "./dist/esm-es5/app-globals-0f993ce5.js",
86
- "./dist/esm-es5/index-9f9c0c97.js",
93
+ "./dist/esm-es5/index-a89959e6.js",
87
94
  "./dist/esm-es5/index.js",
88
95
  "./dist/esm-es5/loader.js",
89
96
  "./dist/esm-es5/mds-progress.entry.js",
90
97
  "./dist/esm-es5/mds-progress.js",
91
98
  "./dist/esm/app-globals-0f993ce5.js",
92
- "./dist/esm/index-9f9c0c97.js",
99
+ "./dist/esm/index-a89959e6.js",
93
100
  "./dist/esm/index.js",
94
101
  "./dist/esm/loader.js",
95
102
  "./dist/esm/mds-progress.entry.js",
@@ -99,25 +106,25 @@
99
106
  "./dist/mds-progress/index.esm.js",
100
107
  "./dist/mds-progress/mds-progress.esm.js",
101
108
  "./dist/mds-progress/mds-progress.js",
102
- "./dist/mds-progress/p-0e39acfd.system.js",
109
+ "./dist/mds-progress/p-088b5b20.system.entry.js",
110
+ "./dist/mds-progress/p-2b265ffa.system.js",
103
111
  "./dist/mds-progress/p-50ea2036.system.js",
104
112
  "./dist/mds-progress/p-56ba5cbf.system.js",
105
- "./dist/mds-progress/p-93b285aa.js",
106
- "./dist/mds-progress/p-b8db6677.entry.js",
107
- "./dist/mds-progress/p-c09df41d.system.js",
113
+ "./dist/mds-progress/p-64876922.system.js",
114
+ "./dist/mds-progress/p-8a9536f1.js",
115
+ "./dist/mds-progress/p-d8baed2c.entry.js",
108
116
  "./dist/mds-progress/p-e1255160.js",
109
- "./dist/mds-progress/p-fafac9b1.system.entry.js",
110
117
  "./www/build/index.esm.js",
111
118
  "./www/build/mds-progress.esm.js",
112
119
  "./www/build/mds-progress.js",
113
- "./www/build/p-0e39acfd.system.js",
120
+ "./www/build/p-088b5b20.system.entry.js",
121
+ "./www/build/p-2b265ffa.system.js",
114
122
  "./www/build/p-50ea2036.system.js",
115
123
  "./www/build/p-56ba5cbf.system.js",
116
- "./www/build/p-93b285aa.js",
117
- "./www/build/p-b8db6677.entry.js",
118
- "./www/build/p-c09df41d.system.js",
119
- "./www/build/p-e1255160.js",
120
- "./www/build/p-fafac9b1.system.entry.js"
124
+ "./www/build/p-64876922.system.js",
125
+ "./www/build/p-8a9536f1.js",
126
+ "./www/build/p-d8baed2c.entry.js",
127
+ "./www/build/p-e1255160.js"
121
128
  ]
122
129
  },
123
130
  {
@@ -150,12 +157,12 @@
150
157
  "components": [
151
158
  "mds-progress"
152
159
  ],
153
- "bundleId": "p-b8db6677",
154
- "fileName": "p-b8db6677.entry.js",
160
+ "bundleId": "p-d8baed2c",
161
+ "fileName": "p-d8baed2c.entry.js",
155
162
  "imports": [
156
- "p-93b285aa.js"
163
+ "p-8a9536f1.js"
157
164
  ],
158
- "originalByteSize": 7229
165
+ "originalByteSize": 8485
159
166
  }
160
167
  ],
161
168
  "esm": [
@@ -167,9 +174,9 @@
167
174
  "bundleId": "mds-progress",
168
175
  "fileName": "mds-progress.entry.js",
169
176
  "imports": [
170
- "index-9f9c0c97.js"
177
+ "index-a89959e6.js"
171
178
  ],
172
- "originalByteSize": 7233
179
+ "originalByteSize": 8489
173
180
  }
174
181
  ],
175
182
  "es5": [
@@ -181,9 +188,9 @@
181
188
  "bundleId": "mds-progress",
182
189
  "fileName": "mds-progress.entry.js",
183
190
  "imports": [
184
- "index-9f9c0c97.js"
191
+ "index-a89959e6.js"
185
192
  ],
186
- "originalByteSize": 7233
193
+ "originalByteSize": 8489
187
194
  }
188
195
  ],
189
196
  "system": [
@@ -192,12 +199,12 @@
192
199
  "components": [
193
200
  "mds-progress"
194
201
  ],
195
- "bundleId": "p-fafac9b1.system",
196
- "fileName": "p-fafac9b1.system.entry.js",
202
+ "bundleId": "p-088b5b20.system",
203
+ "fileName": "p-088b5b20.system.entry.js",
197
204
  "imports": [
198
- "p-c09df41d.system.js"
205
+ "p-64876922.system.js"
199
206
  ],
200
- "originalByteSize": 7694
207
+ "originalByteSize": 9622
201
208
  }
202
209
  ],
203
210
  "commonjs": [
@@ -209,9 +216,9 @@
209
216
  "bundleId": "mds-progress.cjs",
210
217
  "fileName": "mds-progress.cjs.entry.js",
211
218
  "imports": [
212
- "index-9725b4b4.js"
219
+ "index-abfa4aa9.js"
213
220
  ],
214
- "originalByteSize": 7298
221
+ "originalByteSize": 8554
215
222
  }
216
223
  ]
217
224
  },
@@ -257,7 +264,9 @@
257
264
  "tags": [],
258
265
  "text": "A value between 0 and 1 that rapresents the status progress"
259
266
  },
260
- "internal": false
267
+ "internal": false,
268
+ "getter": false,
269
+ "setter": false
261
270
  },
262
271
  {
263
272
  "name": "direction",
@@ -283,7 +292,9 @@
283
292
  "tags": [],
284
293
  "text": "Specifies the direction of the progress bar, if horizonatl or vertical"
285
294
  },
286
- "internal": false
295
+ "internal": false,
296
+ "getter": false,
297
+ "setter": false
287
298
  },
288
299
  {
289
300
  "name": "variant",
@@ -309,7 +320,9 @@
309
320
  "tags": [],
310
321
  "text": "Sets the theme variant colors"
311
322
  },
312
- "internal": false
323
+ "internal": false,
324
+ "getter": false,
325
+ "setter": false
313
326
  },
314
327
  {
315
328
  "name": "steps",
@@ -329,7 +342,9 @@
329
342
  "tags": [],
330
343
  "text": "Sets the steps that can be pronounced by accessibility technologies"
331
344
  },
332
- "internal": false
345
+ "internal": false,
346
+ "getter": false,
347
+ "setter": false
333
348
  }
334
349
  ],
335
350
  "shadowDelegatesFocus": false,
@@ -372,7 +387,9 @@
372
387
  "tags": [],
373
388
  "text": "A value between 0 and 1 that rapresents the status progress"
374
389
  },
375
- "internal": false
390
+ "internal": false,
391
+ "getter": false,
392
+ "setter": false
376
393
  },
377
394
  {
378
395
  "name": "direction",
@@ -398,7 +415,9 @@
398
415
  "tags": [],
399
416
  "text": "Specifies the direction of the progress bar, if horizonatl or vertical"
400
417
  },
401
- "internal": false
418
+ "internal": false,
419
+ "getter": false,
420
+ "setter": false
402
421
  },
403
422
  {
404
423
  "name": "variant",
@@ -424,7 +443,9 @@
424
443
  "tags": [],
425
444
  "text": "Sets the theme variant colors"
426
445
  },
427
- "internal": false
446
+ "internal": false,
447
+ "getter": false,
448
+ "setter": false
428
449
  },
429
450
  {
430
451
  "name": "steps",
@@ -444,7 +465,9 @@
444
465
  "tags": [],
445
466
  "text": "Sets the steps that can be pronounced by accessibility technologies"
446
467
  },
447
- "internal": false
468
+ "internal": false,
469
+ "getter": false,
470
+ "setter": false
448
471
  }
449
472
  ],
450
473
  "virtualProperties": [],
@@ -524,7 +547,7 @@
524
547
  "sourceMapPath": null,
525
548
  "hasAttributeChangedCallbackFn": false,
526
549
  "hasComponentWillLoadFn": true,
527
- "hasComponentDidLoadFn": false,
550
+ "hasComponentDidLoadFn": true,
528
551
  "hasComponentShouldUpdateFn": false,
529
552
  "hasComponentWillUpdateFn": false,
530
553
  "hasComponentDidUpdateFn": false,
@@ -545,6 +568,7 @@
545
568
  "hasMember": true,
546
569
  "hasMethod": false,
547
570
  "hasMode": false,
571
+ "hasModernPropertyDecls": false,
548
572
  "hasAttribute": true,
549
573
  "hasProp": true,
550
574
  "hasPropNumber": true,
@@ -594,16 +618,22 @@
594
618
  ],
595
619
  "componentGraph": {
596
620
  "sc-mds-progress": [
597
- "p-93b285aa.js"
621
+ "p-8a9536f1.js"
598
622
  ]
599
623
  },
600
624
  "sourceGraph": {
601
625
  "./src/common/aria.ts": [],
602
626
  "./src/common/date.ts": [],
627
+ "./src/common/device.ts": [],
603
628
  "./src/common/file.ts": [],
629
+ "./src/common/floating-controller.ts": [
630
+ "./src/common/aria",
631
+ "./src/common/unit"
632
+ ],
604
633
  "./src/common/icon.ts": [],
605
634
  "./src/common/keyboard-manager.ts": [],
606
635
  "./src/common/locale.ts": [],
636
+ "./src/common/slot.ts": [],
607
637
  "./src/common/unit.ts": [],
608
638
  "./src/common/yugop/core.ts": [
609
639
  "./src/common/yugop/utils/math",
@@ -627,6 +657,7 @@
627
657
  "./src/components/mds-progress/test/mds-progress.stories.tsx": [
628
658
  "./src/components/mds-progress/meta/dictionary"
629
659
  ],
660
+ "./src/dictionary/animation.ts": [],
630
661
  "./src/dictionary/autocomplete.ts": [],
631
662
  "./src/dictionary/button.ts": [],
632
663
  "./src/dictionary/color.ts": [],
@@ -639,10 +670,12 @@
639
670
  "./src/dictionary/input.ts": [],
640
671
  "./src/dictionary/loading.ts": [],
641
672
  "./src/dictionary/text.ts": [],
673
+ "./src/dictionary/tree.ts": [],
642
674
  "./src/dictionary/typography.ts": [],
643
675
  "./src/dictionary/variant.ts": [],
644
676
  "./src/fixtures/cities.ts": [],
645
677
  "./src/fixtures/filenames.ts": [],
678
+ "./src/type/animation.ts": [],
646
679
  "./src/type/autocomplete.ts": [],
647
680
  "./src/type/button.ts": [],
648
681
  "./src/type/date.ts": [],
@@ -654,6 +687,7 @@
654
687
  "./src/type/loading.ts": [],
655
688
  "./src/type/preference.ts": [],
656
689
  "./src/type/text.ts": [],
690
+ "./src/type/tree.ts": [],
657
691
  "./src/type/typography.ts": [],
658
692
  "./src/type/variant-file-format.ts": [],
659
693
  "./src/type/variant.ts": []
@@ -1,5 +1,7 @@
1
1
  declare const unslugName: (name: string) => string;
2
2
  declare const setAttributeIfEmpty: (element: HTMLElement, attribute: string, value: string) => string;
3
+ declare const removeAttributesIf: (element: HTMLElement, attribute: string, valueCheck: string | undefined, cleanAttributes: string | string[]) => boolean;
4
+ declare const ifAttribute: (element: HTMLElement, attribute: string, valueCheck?: string) => boolean;
3
5
  declare const hashValue: (value: string) => string;
4
6
  declare const hashRandomValue: (value?: string) => string;
5
- export { unslugName, setAttributeIfEmpty, hashRandomValue, hashValue, };
7
+ export { hashRandomValue, hashValue, removeAttributesIf, setAttributeIfEmpty, ifAttribute, unslugName, };
@@ -0,0 +1,2 @@
1
+ declare const isMobileDevice: () => boolean;
2
+ export { isMobileDevice, };
@@ -0,0 +1,46 @@
1
+ import { FloatingUIPlacement, FloatingUIStrategy } from "../type/floating-ui";
2
+ import { HTMLStencilElement } from '../stencil-public-runtime';
3
+ export interface FloatingElement extends PositionOptions {
4
+ host: HTMLFloatingElement;
5
+ }
6
+ export interface HTMLFloatingElement extends HTMLStencilElement, PositionOptions {
7
+ visible: boolean;
8
+ }
9
+ export interface PositionOptions {
10
+ arrow: boolean;
11
+ arrowPadding: number;
12
+ autoPlacement: boolean;
13
+ flip: boolean;
14
+ offset: number;
15
+ placement: FloatingUIPlacement;
16
+ shift: boolean;
17
+ shiftPadding: number;
18
+ strategy: FloatingUIStrategy;
19
+ }
20
+ export declare class FloatingController {
21
+ private _caller;
22
+ private readonly _host;
23
+ arrowEl: HTMLElement | undefined;
24
+ private cleanupAutoUpdate;
25
+ constructor(host: HTMLFloatingElement, arrowEl?: HTMLElement);
26
+ updateCaller(target: string): HTMLElement;
27
+ private readonly arrowInset;
28
+ private readonly arrowTransform;
29
+ private readonly arrowTransformOrigin;
30
+ private readonly calculatePosition;
31
+ updatePosition(): void;
32
+ dismiss(): void;
33
+ }
34
+ export declare class Backdrop {
35
+ private readonly defaultBackdropId;
36
+ private readonly backdropBackgroundVisible;
37
+ private readonly backdropBackgroundHidden;
38
+ private readonly backdropId;
39
+ private readonly cssBackdropZIndex;
40
+ private readonly cssBackdropDuration;
41
+ private backdropEl;
42
+ private backdropTimer;
43
+ constructor(backdropId?: string);
44
+ attachBackdrop(): void;
45
+ detachBackdrop(): void;
46
+ }
@@ -0,0 +1,3 @@
1
+ declare const hasSlottedElements: (el: HTMLElement, name?: string) => boolean;
2
+ declare const hasSlottedNodes: (el: HTMLElement, name?: string) => boolean;
3
+ export { hasSlottedElements, hasSlottedNodes, };
@@ -21,6 +21,7 @@ export declare class MdsProgress {
21
21
  */
22
22
  readonly steps: string;
23
23
  componentWillLoad(): void;
24
+ componentDidLoad(): void;
24
25
  private setProgress;
25
26
  progressChanged(progress: number): void;
26
27
  stepsChanged(steps: string): void;
@@ -0,0 +1,2 @@
1
+ declare const horizontalActionsAnimationDictionary: string[];
2
+ export { horizontalActionsAnimationDictionary, };
@@ -1,2 +1,4 @@
1
+ declare const typographyTagDictionary: string[];
2
+ declare const typographyHeadingTagDictionary: string[];
1
3
  declare const truncateDictionary: string[];
2
- export { truncateDictionary, };
4
+ export { truncateDictionary, typographyHeadingTagDictionary, typographyTagDictionary, };
@@ -0,0 +1,4 @@
1
+ declare const treeActionsDictionary: string[];
2
+ declare const treeAppearanceDictionary: string[];
3
+ declare const treeIconDictionary: string[];
4
+ export { treeActionsDictionary, treeAppearanceDictionary, treeIconDictionary, };
@@ -1,2 +1,63 @@
1
1
  declare const filesList: string[];
2
- export { filesList, };
2
+ declare const namedFilesList: {
3
+ '7z': string;
4
+ 'No extension file': string;
5
+ 'png with URL': string;
6
+ ace: string;
7
+ ai: string;
8
+ db: string;
9
+ default: string;
10
+ dmg: string;
11
+ doc: string;
12
+ docm: string;
13
+ docx: string;
14
+ eml: string;
15
+ eps: string;
16
+ exe: string;
17
+ flac: string;
18
+ gif: string;
19
+ htm: string;
20
+ html: string;
21
+ jpe: string;
22
+ jpeg: string;
23
+ jpg: string;
24
+ js: string;
25
+ json: string;
26
+ jsx: string;
27
+ m2v: string;
28
+ mp2: string;
29
+ mp3: string;
30
+ mp4: string;
31
+ mp4v: string;
32
+ mpeg: string;
33
+ mpg4: string;
34
+ mpg: string;
35
+ mpga: string;
36
+ odf: string;
37
+ odp: string;
38
+ ods: string;
39
+ odt: string;
40
+ ole: string;
41
+ p7m: string;
42
+ pdf: string;
43
+ php: string;
44
+ png: string;
45
+ ppt: string;
46
+ rar: string;
47
+ rtf: string;
48
+ sass: string;
49
+ shtml: string;
50
+ svg: string;
51
+ tar: string;
52
+ ts: string;
53
+ tsd: string;
54
+ txt: string;
55
+ wav: string;
56
+ webp: string;
57
+ xar: string;
58
+ xls: string;
59
+ xlsx: string;
60
+ xml: string;
61
+ zip: string;
62
+ };
63
+ export { filesList, namedFilesList, };
@@ -0,0 +1 @@
1
+ export type HorizontalActionsAnimationType = 'fade' | 'slide';
@@ -1 +1 @@
1
- export type ExtensionSuffixType = '7z' | 'ace' | 'ai' | 'db' | 'default' | 'dmg' | 'doc' | 'docm' | 'docx' | 'eml' | 'eps' | 'exe' | 'flac' | 'gif' | 'heic' | 'htm' | 'html' | 'jpe' | 'jpeg' | 'jpg' | 'js' | 'json' | 'jsx' | 'm2v' | 'mp2' | 'mp3' | 'mp4' | 'mp4v' | 'mpeg' | 'mpg' | 'mpg4' | 'mpga' | 'odp' | 'ods' | 'odt' | 'pdf' | 'php' | 'png' | 'ppt' | 'rar' | 'rtf' | 'sass' | 'shtml' | 'svg' | 'tar' | 'tiff' | 'ts' | 'txt' | 'wav' | 'webp' | 'xar' | 'xls' | 'xlsx' | 'zip';
1
+ export type ExtensionSuffixType = '7z' | 'ace' | 'ai' | 'db' | 'default' | 'dmg' | 'doc' | 'docm' | 'docx' | 'eml' | 'eps' | 'exe' | 'flac' | 'gif' | 'heic' | 'htm' | 'html' | 'jpe' | 'jpeg' | 'jpg' | 'js' | 'json' | 'jsx' | 'm2v' | 'mp2' | 'mp3' | 'mp4' | 'mp4v' | 'mpeg' | 'mpg' | 'mpg4' | 'mpga' | 'odf' | 'odp' | 'ods' | 'odt' | 'odt' | 'ole' | 'p7m' | 'pdf' | 'php' | 'png' | 'ppt' | 'rar' | 'rtf' | 'sass' | 'shtml' | 'svg' | 'tar' | 'tiff' | 'ts' | 'tsd' | 'txt' | 'wav' | 'webp' | 'xar' | 'xls' | 'xlsx' | 'xml' | 'zip';
@@ -1 +1,3 @@
1
+ export type TypographyTagType = 'abbr' | 'address' | 'article' | 'b' | 'bdo' | 'blockquote' | 'cite' | 'code' | 'dd' | 'del' | 'details' | 'dfn' | 'div' | 'dl' | 'dt' | 'em' | 'figcaption' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'i' | 'ins' | 'kbd' | 'label' | 'legend' | 'li' | 'mark' | 'ol' | 'p' | 'pre' | 'q' | 'rb' | 'rt' | 'ruby' | 's' | 'samp' | 'small' | 'span' | 'strong' | 'sub' | 'summary' | 'sup' | 'time' | 'u' | 'ul' | 'var';
2
+ export type TypographyHeadingTagType = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
1
3
  export type TypographyTruncateType = 'all' | 'none' | 'word';
@@ -0,0 +1,3 @@
1
+ export type TreeAppearance = 'none' | 'depth';
2
+ export type TreeIcon = 'folder' | 'chevron';
3
+ export type TreeActions = 'auto' | 'visible';
@@ -1,5 +1,5 @@
1
1
  import { ThemeFullVariantType } from "./variant";
2
- type FileFormat = 'archive' | 'attachment' | 'audio' | 'code' | 'data' | 'document' | 'email' | 'executable' | 'image' | 'markup' | 'slide' | 'spreadsheet' | 'text' | 'vector' | 'video';
2
+ type FileFormat = 'archive' | 'attachment' | 'audio' | 'certificate' | 'code' | 'data' | 'document' | 'email' | 'executable' | 'image' | 'markup' | 'slide' | 'spreadsheet' | 'text' | 'vector' | 'video';
3
3
  interface FileFormatVariant {
4
4
  icon: string;
5
5
  variant: ThemeFullVariantType;