@maggioli-design-system/mds-input-range 1.0.1
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/dist/cjs/index-5f49298d.js +1790 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +13 -0
- package/dist/cjs/mds-input-range.cjs.entry.js +81 -0
- package/dist/cjs/mds-input-range.cjs.js +23 -0
- package/dist/collection/collection-manifest.json +12 -0
- package/dist/collection/common/aria.js +29 -0
- package/dist/collection/common/file.js +48 -0
- package/dist/collection/common/icon.js +15 -0
- package/dist/collection/common/keyboard-manager.js +45 -0
- package/dist/collection/common/unit.js +22 -0
- package/dist/collection/common/yugop/core.js +16 -0
- package/dist/collection/common/yugop/index.js +3 -0
- package/dist/collection/common/yugop/random-text.js +59 -0
- package/dist/collection/common/yugop/utils/math.js +11 -0
- package/dist/collection/common/yugop/utils/noop.js +1 -0
- package/dist/collection/common/yugop/utils/prng.js +21 -0
- package/dist/collection/common/yugop/utils/string.js +2 -0
- package/dist/collection/components/mds-input-range/mds-input-range.css +280 -0
- package/dist/collection/components/mds-input-range/mds-input-range.js +182 -0
- package/dist/collection/components/mds-input-range/test/mds-input-range.e2e.js +10 -0
- package/dist/collection/components/mds-input-range/test/mds-input-range.stories.js +40 -0
- package/dist/collection/dictionary/autocomplete.js +59 -0
- package/dist/collection/dictionary/button.js +30 -0
- package/dist/collection/dictionary/color.js +19 -0
- package/dist/collection/dictionary/file-extensions.js +64 -0
- package/dist/collection/dictionary/floating-ui.js +19 -0
- package/dist/collection/dictionary/icon.js +10 -0
- package/dist/collection/dictionary/input.js +37 -0
- package/dist/collection/dictionary/loading.js +5 -0
- package/dist/collection/dictionary/text.js +6 -0
- package/dist/collection/dictionary/typography.js +67 -0
- package/dist/collection/dictionary/variant.js +90 -0
- package/dist/collection/fixtures/cities.js +110 -0
- package/dist/collection/fixtures/filenames.js +57 -0
- package/dist/collection/interface/input-value.js +1 -0
- package/dist/collection/type/autocomplete.js +1 -0
- package/dist/collection/type/button.js +1 -0
- package/dist/collection/type/file-types.js +1 -0
- package/dist/collection/type/floating-ui.js +1 -0
- package/dist/collection/type/form-rel.js +1 -0
- package/dist/collection/type/input.js +1 -0
- package/dist/collection/type/loading.js +1 -0
- package/dist/collection/type/text.js +1 -0
- package/dist/collection/type/typography.js +1 -0
- package/dist/collection/type/variant-file-format.js +120 -0
- package/dist/collection/type/variant.js +1 -0
- package/dist/components/index.d.ts +33 -0
- package/dist/components/index.js +1 -0
- package/dist/components/mds-input-range.d.ts +11 -0
- package/dist/components/mds-input-range.js +100 -0
- package/dist/documentation.d.ts +401 -0
- package/dist/documentation.json +158 -0
- package/dist/esm/index-1ed4544f.js +1761 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +9 -0
- package/dist/esm/mds-input-range.entry.js +77 -0
- package/dist/esm/mds-input-range.js +18 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/esm-es5/index-1ed4544f.js +1 -0
- package/dist/esm-es5/index.js +0 -0
- package/dist/esm-es5/loader.js +1 -0
- package/dist/esm-es5/mds-input-range.entry.js +1 -0
- package/dist/esm-es5/mds-input-range.js +1 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/mds-input-range/index.esm.js +0 -0
- package/dist/mds-input-range/mds-input-range.esm.js +1 -0
- package/dist/mds-input-range/mds-input-range.js +127 -0
- package/dist/mds-input-range/p-1afe8cf0.system.entry.js +1 -0
- package/dist/mds-input-range/p-50ea2036.system.js +1 -0
- package/dist/mds-input-range/p-5dcf9ad8.js +2 -0
- package/dist/mds-input-range/p-7a418e68.system.js +1 -0
- package/dist/mds-input-range/p-c87cd964.entry.js +1 -0
- package/dist/mds-input-range/p-e5d9d1a5.system.js +2 -0
- package/dist/stats.json +669 -0
- package/dist/types/common/aria.d.ts +5 -0
- package/dist/types/common/file.d.ts +12 -0
- package/dist/types/common/icon.d.ts +5 -0
- package/dist/types/common/keyboard-manager.d.ts +12 -0
- package/dist/types/common/unit.d.ts +3 -0
- package/dist/types/common/yugop/core.d.ts +10 -0
- package/dist/types/common/yugop/index.d.ts +1 -0
- package/dist/types/common/yugop/random-text.d.ts +31 -0
- package/dist/types/common/yugop/utils/math.d.ts +3 -0
- package/dist/types/common/yugop/utils/noop.d.ts +1 -0
- package/dist/types/common/yugop/utils/prng.d.ts +8 -0
- package/dist/types/common/yugop/utils/string.d.ts +1 -0
- package/dist/types/components/mds-input-range/mds-input-range.d.ts +36 -0
- package/dist/types/components/mds-input-range/test/mds-input-range.stories.d.ts +39 -0
- package/dist/types/components.d.ts +88 -0
- package/dist/types/dictionary/autocomplete.d.ts +2 -0
- package/dist/types/dictionary/button.d.ts +6 -0
- package/dist/types/dictionary/color.d.ts +3 -0
- package/dist/types/dictionary/file-extensions.d.ts +11 -0
- package/dist/types/dictionary/floating-ui.d.ts +3 -0
- package/dist/types/dictionary/icon.d.ts +4 -0
- package/dist/types/dictionary/input.d.ts +5 -0
- package/dist/types/dictionary/loading.d.ts +2 -0
- package/dist/types/dictionary/text.d.ts +2 -0
- package/dist/types/dictionary/typography.d.ts +11 -0
- package/dist/types/dictionary/variant.d.ts +11 -0
- package/dist/types/fixtures/cities.d.ts +2 -0
- package/dist/types/fixtures/filenames.d.ts +2 -0
- package/dist/types/interface/input-value.d.ts +4 -0
- package/dist/types/stencil-public-runtime.d.ts +1681 -0
- package/dist/types/type/autocomplete.d.ts +2 -0
- package/dist/types/type/button.d.ts +5 -0
- package/dist/types/type/file-types.d.ts +1 -0
- package/dist/types/type/floating-ui.d.ts +2 -0
- package/dist/types/type/form-rel.d.ts +1 -0
- package/dist/types/type/input.d.ts +4 -0
- package/dist/types/type/loading.d.ts +1 -0
- package/dist/types/type/text.d.ts +1 -0
- package/dist/types/type/typography.d.ts +10 -0
- package/dist/types/type/variant-file-format.d.ts +11 -0
- package/dist/types/type/variant.d.ts +12 -0
- package/documentation.json +596 -0
- package/loader/cdn.js +3 -0
- package/loader/index.cjs.js +3 -0
- package/loader/index.d.ts +21 -0
- package/loader/index.es2017.js +3 -0
- package/loader/index.js +4 -0
- package/loader/package.json +11 -0
- package/package.json +49 -0
- package/readme.md +53 -0
- package/src/common/aria.ts +39 -0
- package/src/common/file.ts +63 -0
- package/src/common/icon.ts +25 -0
- package/src/common/keyboard-manager.ts +50 -0
- package/src/common/unit.ts +33 -0
- package/src/common/yugop/core.ts +47 -0
- package/src/common/yugop/index.ts +4 -0
- package/src/common/yugop/random-text.ts +95 -0
- package/src/common/yugop/utils/math.ts +21 -0
- package/src/common/yugop/utils/noop.ts +1 -0
- package/src/common/yugop/utils/prng.ts +35 -0
- package/src/common/yugop/utils/string.ts +4 -0
- package/src/components/mds-input-range/.gitlab-ci.yml +25 -0
- package/src/components/mds-input-range/mds-input-range.css +109 -0
- package/src/components/mds-input-range/mds-input-range.tsx +117 -0
- package/src/components/mds-input-range/readme.md +38 -0
- package/src/components/mds-input-range/test/mds-input-range.e2e.ts +12 -0
- package/src/components/mds-input-range/test/mds-input-range.stories.tsx +50 -0
- package/src/components.d.ts +88 -0
- package/src/dictionary/autocomplete.ts +62 -0
- package/src/dictionary/button.ts +41 -0
- package/src/dictionary/color.ts +24 -0
- package/src/dictionary/file-extensions.ts +81 -0
- package/src/dictionary/floating-ui.ts +25 -0
- package/src/dictionary/icon.ts +15 -0
- package/src/dictionary/input.ts +48 -0
- package/src/dictionary/loading.ts +9 -0
- package/src/dictionary/text.ts +9 -0
- package/src/dictionary/typography.ts +88 -0
- package/src/dictionary/variant.ts +111 -0
- package/src/fixtures/cities.ts +116 -0
- package/src/fixtures/filenames.ts +60 -0
- package/src/fixtures/icons.json +332 -0
- package/src/fixtures/iconsauce.json +253 -0
- package/src/interface/input-value.ts +5 -0
- package/src/tailwind/components.css +15 -0
- package/src/type/autocomplete.ts +69 -0
- package/src/type/button.ts +28 -0
- package/src/type/file-types.ts +55 -0
- package/src/type/floating-ui.ts +17 -0
- package/src/type/form-rel.ts +11 -0
- package/src/type/input.ts +25 -0
- package/src/type/loading.ts +3 -0
- package/src/type/text.ts +4 -0
- package/src/type/typography.ts +65 -0
- package/src/type/variant-file-format.ts +137 -0
- package/src/type/variant.ts +99 -0
- package/www/build/index.esm.js +0 -0
- package/www/build/mds-input-range.esm.js +1 -0
- package/www/build/mds-input-range.js +127 -0
- package/www/build/p-1afe8cf0.system.entry.js +1 -0
- package/www/build/p-50ea2036.system.js +1 -0
- package/www/build/p-5dcf9ad8.js +2 -0
- package/www/build/p-7a418e68.system.js +1 -0
- package/www/build/p-c87cd964.entry.js +1 -0
- package/www/build/p-e5d9d1a5.system.js +2 -0
- package/www/host.config.json +15 -0
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
const typographyDictionary = [
|
|
2
|
+
'action',
|
|
3
|
+
'caption',
|
|
4
|
+
'snippet',
|
|
5
|
+
'detail',
|
|
6
|
+
'h1',
|
|
7
|
+
'h2',
|
|
8
|
+
'h3',
|
|
9
|
+
'h4',
|
|
10
|
+
'h5',
|
|
11
|
+
'h6',
|
|
12
|
+
'hack',
|
|
13
|
+
'label',
|
|
14
|
+
'option',
|
|
15
|
+
'paragraph',
|
|
16
|
+
'tip',
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
const typographyVariationsDictionary = [
|
|
20
|
+
'title',
|
|
21
|
+
'info',
|
|
22
|
+
'read',
|
|
23
|
+
'code',
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
const typographyReadingVariationsDictionary = [
|
|
27
|
+
'info',
|
|
28
|
+
'read',
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
const typographyMonoDictionary = [
|
|
32
|
+
'snippet',
|
|
33
|
+
'hack',
|
|
34
|
+
]
|
|
35
|
+
|
|
36
|
+
const typographyTitleDictionary = [
|
|
37
|
+
'action',
|
|
38
|
+
'h1',
|
|
39
|
+
'h2',
|
|
40
|
+
'h3',
|
|
41
|
+
'h4',
|
|
42
|
+
'h5',
|
|
43
|
+
'h6',
|
|
44
|
+
]
|
|
45
|
+
|
|
46
|
+
const typographyInfoDictionary = [
|
|
47
|
+
'caption',
|
|
48
|
+
'detail',
|
|
49
|
+
'label',
|
|
50
|
+
'option',
|
|
51
|
+
'paragraph',
|
|
52
|
+
'tip',
|
|
53
|
+
]
|
|
54
|
+
|
|
55
|
+
const typographyReadDictionary = [
|
|
56
|
+
'caption',
|
|
57
|
+
'detail',
|
|
58
|
+
'paragraph',
|
|
59
|
+
]
|
|
60
|
+
|
|
61
|
+
const typographySmallerDictionary = [
|
|
62
|
+
'option',
|
|
63
|
+
'tip',
|
|
64
|
+
]
|
|
65
|
+
|
|
66
|
+
const typographyTooltipDictionary = [
|
|
67
|
+
'caption',
|
|
68
|
+
'detail',
|
|
69
|
+
'tip',
|
|
70
|
+
]
|
|
71
|
+
|
|
72
|
+
const typographyInputDictionary = [
|
|
73
|
+
'snippet',
|
|
74
|
+
'detail',
|
|
75
|
+
]
|
|
76
|
+
|
|
77
|
+
export {
|
|
78
|
+
typographyDictionary,
|
|
79
|
+
typographyInfoDictionary,
|
|
80
|
+
typographyInputDictionary,
|
|
81
|
+
typographyMonoDictionary,
|
|
82
|
+
typographyReadDictionary,
|
|
83
|
+
typographyReadingVariationsDictionary,
|
|
84
|
+
typographySmallerDictionary,
|
|
85
|
+
typographyTitleDictionary,
|
|
86
|
+
typographyTooltipDictionary,
|
|
87
|
+
typographyVariationsDictionary,
|
|
88
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
const themeVariantDictionary = [
|
|
2
|
+
'dark',
|
|
3
|
+
'error',
|
|
4
|
+
'info',
|
|
5
|
+
'light',
|
|
6
|
+
'primary',
|
|
7
|
+
'success',
|
|
8
|
+
'warning',
|
|
9
|
+
]
|
|
10
|
+
|
|
11
|
+
const themeLuminanceVariantDictionary = [
|
|
12
|
+
'dark',
|
|
13
|
+
'light',
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
const themeStatusVariantDictionary = [
|
|
17
|
+
'error',
|
|
18
|
+
'info',
|
|
19
|
+
'success',
|
|
20
|
+
'warning',
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
const themeFullVariantDictionary = [
|
|
24
|
+
'amaranth',
|
|
25
|
+
'aqua',
|
|
26
|
+
'blue',
|
|
27
|
+
'dark',
|
|
28
|
+
'error',
|
|
29
|
+
'green',
|
|
30
|
+
'info',
|
|
31
|
+
'light',
|
|
32
|
+
'lime',
|
|
33
|
+
'orange',
|
|
34
|
+
'orchid',
|
|
35
|
+
'sky',
|
|
36
|
+
'success',
|
|
37
|
+
'violet',
|
|
38
|
+
'warning',
|
|
39
|
+
'yellow',
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
const themeFullVariantAvatarDictionary = [
|
|
43
|
+
'amaranth',
|
|
44
|
+
'aqua',
|
|
45
|
+
'blue',
|
|
46
|
+
'error',
|
|
47
|
+
'green',
|
|
48
|
+
'info',
|
|
49
|
+
'lime',
|
|
50
|
+
'orange',
|
|
51
|
+
'orchid',
|
|
52
|
+
'primary',
|
|
53
|
+
'sky',
|
|
54
|
+
'success',
|
|
55
|
+
'violet',
|
|
56
|
+
'warning',
|
|
57
|
+
'yellow',
|
|
58
|
+
]
|
|
59
|
+
|
|
60
|
+
const themeLabelVariantDictionary = [
|
|
61
|
+
'amaranth',
|
|
62
|
+
'aqua',
|
|
63
|
+
'blue',
|
|
64
|
+
'green',
|
|
65
|
+
'lime',
|
|
66
|
+
'orange',
|
|
67
|
+
'orchid',
|
|
68
|
+
'sky',
|
|
69
|
+
'violet',
|
|
70
|
+
'yellow',
|
|
71
|
+
]
|
|
72
|
+
|
|
73
|
+
const toneVariantDictionary = [
|
|
74
|
+
'strong',
|
|
75
|
+
'weak',
|
|
76
|
+
'ghost',
|
|
77
|
+
'quiet',
|
|
78
|
+
]
|
|
79
|
+
|
|
80
|
+
const toneActionVariantDictionary = [
|
|
81
|
+
'primary',
|
|
82
|
+
'secondary',
|
|
83
|
+
'tertiary',
|
|
84
|
+
'strong',
|
|
85
|
+
'weak',
|
|
86
|
+
'quiet',
|
|
87
|
+
]
|
|
88
|
+
|
|
89
|
+
const toneSimpleVariantDictionary = [
|
|
90
|
+
'strong',
|
|
91
|
+
'weak',
|
|
92
|
+
'quiet',
|
|
93
|
+
]
|
|
94
|
+
|
|
95
|
+
const toneMinimalVariantDictionary = [
|
|
96
|
+
'strong',
|
|
97
|
+
'weak',
|
|
98
|
+
]
|
|
99
|
+
|
|
100
|
+
export {
|
|
101
|
+
themeFullVariantAvatarDictionary,
|
|
102
|
+
themeFullVariantDictionary,
|
|
103
|
+
themeLabelVariantDictionary,
|
|
104
|
+
themeLuminanceVariantDictionary,
|
|
105
|
+
themeStatusVariantDictionary,
|
|
106
|
+
themeVariantDictionary,
|
|
107
|
+
toneActionVariantDictionary,
|
|
108
|
+
toneMinimalVariantDictionary,
|
|
109
|
+
toneSimpleVariantDictionary,
|
|
110
|
+
toneVariantDictionary,
|
|
111
|
+
}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
const citiesDictionary = [
|
|
2
|
+
'Agrigento',
|
|
3
|
+
'Alessandria',
|
|
4
|
+
'Ancona',
|
|
5
|
+
'Aosta',
|
|
6
|
+
'Arezzo',
|
|
7
|
+
'Ascoli Piceno',
|
|
8
|
+
'Asti',
|
|
9
|
+
'Avellino',
|
|
10
|
+
'Bari',
|
|
11
|
+
'Barletta-Andria-Trani',
|
|
12
|
+
'Belluno',
|
|
13
|
+
'Benevento',
|
|
14
|
+
'Bergamo',
|
|
15
|
+
'Biella',
|
|
16
|
+
'Bologna',
|
|
17
|
+
'Bolzano',
|
|
18
|
+
'Brescia',
|
|
19
|
+
'Brindisi',
|
|
20
|
+
'Cagliari',
|
|
21
|
+
'Caltanissetta',
|
|
22
|
+
'Campobasso',
|
|
23
|
+
'Caserta',
|
|
24
|
+
'Catania',
|
|
25
|
+
'Catanzaro',
|
|
26
|
+
'Chieti',
|
|
27
|
+
'Como',
|
|
28
|
+
'Cosenza',
|
|
29
|
+
'Cremona',
|
|
30
|
+
'Crotone',
|
|
31
|
+
'Cuneo',
|
|
32
|
+
'Enna',
|
|
33
|
+
'Fermo',
|
|
34
|
+
'Ferrara',
|
|
35
|
+
'Firenze',
|
|
36
|
+
'Foggia',
|
|
37
|
+
'Forlì-Cesena',
|
|
38
|
+
'Frosinone',
|
|
39
|
+
'Genova',
|
|
40
|
+
'Gorizia',
|
|
41
|
+
'Grosseto',
|
|
42
|
+
'Imperia',
|
|
43
|
+
'Isernia',
|
|
44
|
+
'La Spezia',
|
|
45
|
+
'L\'Aquila',
|
|
46
|
+
'Latina',
|
|
47
|
+
'Lecce',
|
|
48
|
+
'Lecco',
|
|
49
|
+
'Livorno',
|
|
50
|
+
'Lodi',
|
|
51
|
+
'Lucca',
|
|
52
|
+
'Macerata',
|
|
53
|
+
'Mantova',
|
|
54
|
+
'Massa-Carrara',
|
|
55
|
+
'Matera',
|
|
56
|
+
'Messina',
|
|
57
|
+
'Milano',
|
|
58
|
+
'Modena',
|
|
59
|
+
'Monza e della Brianza',
|
|
60
|
+
'Napoli',
|
|
61
|
+
'Novara',
|
|
62
|
+
'Nuoro',
|
|
63
|
+
'Oristano',
|
|
64
|
+
'Padova',
|
|
65
|
+
'Palermo',
|
|
66
|
+
'Parma',
|
|
67
|
+
'Pavia',
|
|
68
|
+
'Perugia',
|
|
69
|
+
'Pesaro e Urbino',
|
|
70
|
+
'Pescara',
|
|
71
|
+
'Piacenza',
|
|
72
|
+
'Pisa',
|
|
73
|
+
'Pistoia',
|
|
74
|
+
'Pordenone',
|
|
75
|
+
'Potenza',
|
|
76
|
+
'Prato',
|
|
77
|
+
'Ragusa',
|
|
78
|
+
'Ravenna',
|
|
79
|
+
'Reggio Calabria',
|
|
80
|
+
'Reggio Emilia',
|
|
81
|
+
'Rieti',
|
|
82
|
+
'Rimini',
|
|
83
|
+
'Roma',
|
|
84
|
+
'Rovigo',
|
|
85
|
+
'Salerno',
|
|
86
|
+
'Sassari',
|
|
87
|
+
'Savona',
|
|
88
|
+
'Siena',
|
|
89
|
+
'Siracusa',
|
|
90
|
+
'Sondrio',
|
|
91
|
+
'Sud Sardegna',
|
|
92
|
+
'Taranto',
|
|
93
|
+
'Teramo',
|
|
94
|
+
'Terni',
|
|
95
|
+
'Torino',
|
|
96
|
+
'Trapani',
|
|
97
|
+
'Trento',
|
|
98
|
+
'Treviso',
|
|
99
|
+
'Trieste',
|
|
100
|
+
'Udine',
|
|
101
|
+
'Varese',
|
|
102
|
+
'Venezia',
|
|
103
|
+
'Verbano-Cusio-Ossola',
|
|
104
|
+
'Vercelli',
|
|
105
|
+
'Verona',
|
|
106
|
+
'Vibo Valentia',
|
|
107
|
+
'Vicenza',
|
|
108
|
+
'Viterbo',
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
export {
|
|
112
|
+
citiesDictionary,
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
const filesList = [
|
|
2
|
+
'alarm_circuit_plastic.eps',
|
|
3
|
+
'awesome_orchestration.png',
|
|
4
|
+
'b2c_tan_sports.svg',
|
|
5
|
+
'bedfordshire_iceland_identity.txt',
|
|
6
|
+
'books_monetize_arizona.htm',
|
|
7
|
+
'brand.shtml',
|
|
8
|
+
'brunei_logistical.eml',
|
|
9
|
+
'buckinghamshire_macao.jpg',
|
|
10
|
+
'calculating.json',
|
|
11
|
+
'complexity_deposit.mpg',
|
|
12
|
+
'compressing_black_colorado.ods',
|
|
13
|
+
'connect_local_visualize.pdf',
|
|
14
|
+
'copying.default',
|
|
15
|
+
'explicit.mp2',
|
|
16
|
+
'fish.php',
|
|
17
|
+
'flexibility_auto_money.html',
|
|
18
|
+
'foreground_overriding.ai',
|
|
19
|
+
'forge_face.ts',
|
|
20
|
+
'forges.doc',
|
|
21
|
+
'frozen_haptic.7z',
|
|
22
|
+
'gorgeous_manager_savings.ppt',
|
|
23
|
+
'graphic_frozen_bedfordshire.tar',
|
|
24
|
+
'hdd_navigate_panama.xlsx',
|
|
25
|
+
'https://i2.wp.com/clipart.info/images/ccovers/1495750818Apple-PNG-Clip-Art.png',
|
|
26
|
+
'impactful_alarm_handmade.mpeg',
|
|
27
|
+
'initiatives_group.gif',
|
|
28
|
+
'intelligent_radical.jpe',
|
|
29
|
+
'interface_bedfordshire_solid.m2v',
|
|
30
|
+
'iowa_installation.jpeg',
|
|
31
|
+
'liaison_panel_central.flac',
|
|
32
|
+
'matrix_black_hat.db',
|
|
33
|
+
'metrics_lempira_account.xls',
|
|
34
|
+
'monitor.js',
|
|
35
|
+
'nebraska.mp4',
|
|
36
|
+
'needs_based_solid.odp',
|
|
37
|
+
'officer_somalia.docm',
|
|
38
|
+
'open_source.webp',
|
|
39
|
+
'open_source_gorgeous.sass',
|
|
40
|
+
'optimization_radical.mp3',
|
|
41
|
+
'ports_copy_granite.mpga',
|
|
42
|
+
'pound.rtf',
|
|
43
|
+
'protocol_designer.dmg',
|
|
44
|
+
'reduced_regional_greenland.mp4v',
|
|
45
|
+
'revolutionize.mpg4',
|
|
46
|
+
'rss_systematic_avon.exe',
|
|
47
|
+
'salad_compressing.odt',
|
|
48
|
+
'sky_marketing.ace',
|
|
49
|
+
'synergistic.wav',
|
|
50
|
+
'this_is_an_extensionless_file',
|
|
51
|
+
'tuna_table_fall.zip',
|
|
52
|
+
'unbranded.rar',
|
|
53
|
+
'upgradable_gold.docx',
|
|
54
|
+
'wisconsin_bypassing_small.xar',
|
|
55
|
+
'wooden.jsx',
|
|
56
|
+
]
|
|
57
|
+
|
|
58
|
+
export {
|
|
59
|
+
filesList,
|
|
60
|
+
}
|
|
@@ -0,0 +1,332 @@
|
|
|
1
|
+
[
|
|
2
|
+
"mdi/alien",
|
|
3
|
+
"mdi/barley",
|
|
4
|
+
"mdi/baseball",
|
|
5
|
+
"mdi/crown",
|
|
6
|
+
"mdi/delete",
|
|
7
|
+
"mdi/dots-vertical",
|
|
8
|
+
"mdi/email",
|
|
9
|
+
"mdi/file-document-remove-outline",
|
|
10
|
+
"mdi/harddisk",
|
|
11
|
+
"mdi/map-marker",
|
|
12
|
+
"mdi/replay",
|
|
13
|
+
"mdi/vector-curve",
|
|
14
|
+
"mgg/abitazione-principale",
|
|
15
|
+
"mgg/action-email-overlay-progress-10",
|
|
16
|
+
"mgg/action-email-overlay-progress-90",
|
|
17
|
+
"mgg/action-email-send-wait",
|
|
18
|
+
"mgg/action-email-send-warning",
|
|
19
|
+
"mgg/action-hide-down-side",
|
|
20
|
+
"mgg/action-hide-left-side",
|
|
21
|
+
"mgg/action-hide-right-side",
|
|
22
|
+
"mgg/action-hide-sidebar-left",
|
|
23
|
+
"mgg/action-hide-sidebar-right",
|
|
24
|
+
"mgg/action-show-down-side",
|
|
25
|
+
"mgg/action-show-left-side",
|
|
26
|
+
"mgg/action-show-right-side",
|
|
27
|
+
"mgg/action-show-sidebar-left",
|
|
28
|
+
"mgg/action-show-sidebar-right",
|
|
29
|
+
"mgg/activation-key",
|
|
30
|
+
"mgg/activity-list",
|
|
31
|
+
"mgg/add-document-settings",
|
|
32
|
+
"mgg/additional-contents",
|
|
33
|
+
"mgg/address-book-off",
|
|
34
|
+
"mgg/address-book-on",
|
|
35
|
+
"mgg/adv-denied",
|
|
36
|
+
"mgg/alerts-pagopa",
|
|
37
|
+
"mgg/ansc",
|
|
38
|
+
"mgg/area-edificabile",
|
|
39
|
+
"mgg/area-weather",
|
|
40
|
+
"mgg/assignments-accept-rejection",
|
|
41
|
+
"mgg/assignments-acceptance-accepted",
|
|
42
|
+
"mgg/assignments-assignment",
|
|
43
|
+
"mgg/assignments-competence",
|
|
44
|
+
"mgg/assignments-completed",
|
|
45
|
+
"mgg/assignments-rejected",
|
|
46
|
+
"mgg/assignments-sorted",
|
|
47
|
+
"mgg/auto-awesome-motion",
|
|
48
|
+
"mgg/balance",
|
|
49
|
+
"mgg/bill",
|
|
50
|
+
"mgg/box-multiple",
|
|
51
|
+
"mgg/breadcrumb",
|
|
52
|
+
"mgg/bus-stops",
|
|
53
|
+
"mgg/calendar-euro",
|
|
54
|
+
"mgg/calendar-multiple",
|
|
55
|
+
"mgg/calendar-schedule",
|
|
56
|
+
"mgg/cancelled-sheet",
|
|
57
|
+
"mgg/car-license",
|
|
58
|
+
"mgg/card-stamping",
|
|
59
|
+
"mgg/check-small",
|
|
60
|
+
"mgg/checklist",
|
|
61
|
+
"mgg/checklist-settings",
|
|
62
|
+
"mgg/citizenship",
|
|
63
|
+
"mgg/city-bin",
|
|
64
|
+
"mgg/classic-permission",
|
|
65
|
+
"mgg/copy-paste",
|
|
66
|
+
"mgg/d-instrumental-buildings",
|
|
67
|
+
"mgg/data-analytics-alt",
|
|
68
|
+
"mgg/data-analytics-search",
|
|
69
|
+
"mgg/data-analytics-time",
|
|
70
|
+
"mgg/data-category-alt",
|
|
71
|
+
"mgg/data-civil-union",
|
|
72
|
+
"mgg/data-cleaning",
|
|
73
|
+
"mgg/data-death-civil-union",
|
|
74
|
+
"mgg/data-death-marriage",
|
|
75
|
+
"mgg/data-end-civil-union",
|
|
76
|
+
"mgg/data-end-marriage",
|
|
77
|
+
"mgg/dataset",
|
|
78
|
+
"mgg/delivered-to-the-recipient",
|
|
79
|
+
"mgg/document-euro",
|
|
80
|
+
"mgg/document-less",
|
|
81
|
+
"mgg/document-magic",
|
|
82
|
+
"mgg/document-rename",
|
|
83
|
+
"mgg/download-csv",
|
|
84
|
+
"mgg/download-json",
|
|
85
|
+
"mgg/electronic-document",
|
|
86
|
+
"mgg/email-open-check",
|
|
87
|
+
"mgg/email-open-off",
|
|
88
|
+
"mgg/face-to-face-meeting",
|
|
89
|
+
"mgg/factory",
|
|
90
|
+
"mgg/farmer",
|
|
91
|
+
"mgg/field",
|
|
92
|
+
"mgg/file-download",
|
|
93
|
+
"mgg/file-folder-tree",
|
|
94
|
+
"mgg/file-folder-tree-open",
|
|
95
|
+
"mgg/file-import",
|
|
96
|
+
"mgg/file-odt",
|
|
97
|
+
"mgg/file-rtf",
|
|
98
|
+
"mgg/file-settings-alt",
|
|
99
|
+
"mgg/file-stack",
|
|
100
|
+
"mgg/file-stack-alt",
|
|
101
|
+
"mgg/file-sub",
|
|
102
|
+
"mgg/file-type-document-attachment",
|
|
103
|
+
"mgg/file-type-document-multiple-attachment",
|
|
104
|
+
"mgg/file-type-document-rubber-stamp",
|
|
105
|
+
"mgg/file-type-home",
|
|
106
|
+
"mgg/file-type-pdf",
|
|
107
|
+
"mgg/file-type-success",
|
|
108
|
+
"mgg/file-type-warning",
|
|
109
|
+
"mgg/file-xml",
|
|
110
|
+
"mgg/finance-euro-cashback",
|
|
111
|
+
"mgg/fit-horizontal",
|
|
112
|
+
"mgg/fit-vertical",
|
|
113
|
+
"mgg/forwarded-with-a-single-sending",
|
|
114
|
+
"mgg/fullscreen-on-alt",
|
|
115
|
+
"mgg/google-check-small",
|
|
116
|
+
"mgg/google-experiment",
|
|
117
|
+
"mgg/google-face-retouching-off",
|
|
118
|
+
"mgg/google-keyboard-double-arrow-down",
|
|
119
|
+
"mgg/google-keyboard-double-arrow-up",
|
|
120
|
+
"mgg/google-place-item",
|
|
121
|
+
"mgg/group-assigned-automatically-system",
|
|
122
|
+
"mgg/group-ceased",
|
|
123
|
+
"mgg/group-inherited",
|
|
124
|
+
"mgg/heart",
|
|
125
|
+
"mgg/heart-outline",
|
|
126
|
+
"mgg/historic-building",
|
|
127
|
+
"mgg/historic-building-unusable",
|
|
128
|
+
"mgg/home-hammer",
|
|
129
|
+
"mgg/home-number",
|
|
130
|
+
"mgg/inagibile",
|
|
131
|
+
"mgg/input-calendar-costs",
|
|
132
|
+
"mgg/input-calendar-period",
|
|
133
|
+
"mgg/input-calendar-time",
|
|
134
|
+
"mgg/instrumental-buildings",
|
|
135
|
+
"mgg/internationalization-add",
|
|
136
|
+
"mgg/internationalization-check",
|
|
137
|
+
"mgg/internationalization-delete",
|
|
138
|
+
"mgg/isbn",
|
|
139
|
+
"mgg/judge-hammer",
|
|
140
|
+
"mgg/land-registry",
|
|
141
|
+
"mgg/layers",
|
|
142
|
+
"mgg/liquidated-document",
|
|
143
|
+
"mgg/list-dot",
|
|
144
|
+
"mgg/logo-girasole-camuno",
|
|
145
|
+
"mgg/logo-gpl",
|
|
146
|
+
"mgg/logo-ilibro",
|
|
147
|
+
"mgg/map-marker-settings",
|
|
148
|
+
"mgg/masks-office",
|
|
149
|
+
"mgg/military-draft",
|
|
150
|
+
"mgg/money-bag-settings",
|
|
151
|
+
"mgg/money-on-hand",
|
|
152
|
+
"mgg/money-paid",
|
|
153
|
+
"mgg/move-down",
|
|
154
|
+
"mgg/move-left",
|
|
155
|
+
"mgg/move-right",
|
|
156
|
+
"mgg/move-row-down",
|
|
157
|
+
"mgg/move-row-up",
|
|
158
|
+
"mgg/move-up",
|
|
159
|
+
"mgg/multiple-payments",
|
|
160
|
+
"mgg/national-document",
|
|
161
|
+
"mgg/national-document-off",
|
|
162
|
+
"mgg/not-instrumental-d-buildings",
|
|
163
|
+
"mgg/not-sent-yet",
|
|
164
|
+
"mgg/office-off",
|
|
165
|
+
"mgg/order-return-down-left-to-right",
|
|
166
|
+
"mgg/order-return-down-left-to-up",
|
|
167
|
+
"mgg/order-return-down-right-to-left",
|
|
168
|
+
"mgg/order-return-down-right-to-up",
|
|
169
|
+
"mgg/order-return-up-left-to-down",
|
|
170
|
+
"mgg/order-return-up-left-to-right",
|
|
171
|
+
"mgg/order-return-up-right-to-down",
|
|
172
|
+
"mgg/order-return-up-right-to-left",
|
|
173
|
+
"mgg/order-zigzag-down-left-to-right",
|
|
174
|
+
"mgg/order-zigzag-down-left-to-up",
|
|
175
|
+
"mgg/order-zigzag-down-right-to-left",
|
|
176
|
+
"mgg/order-zigzag-down-right-to-up",
|
|
177
|
+
"mgg/order-zigzag-up-left-to-down",
|
|
178
|
+
"mgg/order-zigzag-up-left-to-right",
|
|
179
|
+
"mgg/order-zigzag-up-right-to-down",
|
|
180
|
+
"mgg/order-zigzag-up-right-to-left",
|
|
181
|
+
"mgg/other-properties",
|
|
182
|
+
"mgg/other-properties-off",
|
|
183
|
+
"mgg/other-residential-buildings",
|
|
184
|
+
"mgg/pagopa",
|
|
185
|
+
"mgg/partial-wall",
|
|
186
|
+
"mgg/payment-settings",
|
|
187
|
+
"mgg/pec-handshake",
|
|
188
|
+
"mgg/pec-ok",
|
|
189
|
+
"mgg/pec-sent-to-the-not-pec-recipient",
|
|
190
|
+
"mgg/places-green",
|
|
191
|
+
"mgg/places-green-doc",
|
|
192
|
+
"mgg/places-green-history",
|
|
193
|
+
"mgg/places-green-info",
|
|
194
|
+
"mgg/places-holiday-beach",
|
|
195
|
+
"mgg/places-market",
|
|
196
|
+
"mgg/places-park",
|
|
197
|
+
"mgg/places-park-alt",
|
|
198
|
+
"mgg/places-store-access-denied",
|
|
199
|
+
"mgg/property-owner",
|
|
200
|
+
"mgg/relevance",
|
|
201
|
+
"mgg/reporting-abuse",
|
|
202
|
+
"mgg/residency-permit",
|
|
203
|
+
"mgg/robot",
|
|
204
|
+
"mgg/roles-permission",
|
|
205
|
+
"mgg/rubber-stamp",
|
|
206
|
+
"mgg/rurale",
|
|
207
|
+
"mgg/search-maggioli",
|
|
208
|
+
"mgg/send-progress",
|
|
209
|
+
"mgg/sending-error",
|
|
210
|
+
"mgg/session",
|
|
211
|
+
"mgg/settings-attachment",
|
|
212
|
+
"mgg/sign-shop",
|
|
213
|
+
"mgg/square-viewfinder",
|
|
214
|
+
"mgg/stamp",
|
|
215
|
+
"mgg/status-progress-a-quarter",
|
|
216
|
+
"mgg/status-progress-complete",
|
|
217
|
+
"mgg/status-progress-half",
|
|
218
|
+
"mgg/status-progress-three-quarter",
|
|
219
|
+
"mgg/stuck-codes",
|
|
220
|
+
"mgg/subtractive-permission",
|
|
221
|
+
"mgg/tea-light",
|
|
222
|
+
"mgg/terminal",
|
|
223
|
+
"mgg/todo",
|
|
224
|
+
"mgg/todo-action-businessman-view",
|
|
225
|
+
"mgg/todo-action-certificate",
|
|
226
|
+
"mgg/todo-action-contract",
|
|
227
|
+
"mgg/todo-action-currency-euro",
|
|
228
|
+
"mgg/todo-action-graduate",
|
|
229
|
+
"mgg/todo-action-graduation-hat",
|
|
230
|
+
"mgg/todo-action-judge",
|
|
231
|
+
"mgg/todo-action-money",
|
|
232
|
+
"mgg/todo-action-protocol",
|
|
233
|
+
"mgg/todo-action-upload",
|
|
234
|
+
"mgg/todo-action-wkf-document-checked",
|
|
235
|
+
"mgg/todo-action-wkf-people-checked",
|
|
236
|
+
"mgg/todo-action-wkf-set-pub-date",
|
|
237
|
+
"mgg/todo-completed",
|
|
238
|
+
"mgg/todo-completed-re-executable",
|
|
239
|
+
"mgg/todo-in-charge-by-me",
|
|
240
|
+
"mgg/todo-in-charge-by-others",
|
|
241
|
+
"mgg/todo-in-evaluation",
|
|
242
|
+
"mgg/todo-in-evaluation-by-others",
|
|
243
|
+
"mgg/todo-incoming-in-charge",
|
|
244
|
+
"mgg/todo-incoming-rejected",
|
|
245
|
+
"mgg/todo-pause",
|
|
246
|
+
"mgg/todo-running-completed",
|
|
247
|
+
"mgg/todo-suspended",
|
|
248
|
+
"mgg/touchpoint-laptop-info",
|
|
249
|
+
"mgg/touchpoint-laptop-search",
|
|
250
|
+
"mgg/traffic-cone",
|
|
251
|
+
"mgg/trending-down",
|
|
252
|
+
"mgg/tribute",
|
|
253
|
+
"mgg/tributes",
|
|
254
|
+
"mgg/urban-city",
|
|
255
|
+
"mgg/user-dead",
|
|
256
|
+
"mgg/user-family",
|
|
257
|
+
"mgg/user-location",
|
|
258
|
+
"mgg/user-location-off",
|
|
259
|
+
"mgg/user-signed-out",
|
|
260
|
+
"mgg/view-chart-gantt",
|
|
261
|
+
"mgg/view-side-by-side",
|
|
262
|
+
"mgg/warning-superscript",
|
|
263
|
+
"mgg/web-app-ansc",
|
|
264
|
+
"mgg/work-book",
|
|
265
|
+
"mi/baseline/account-balance",
|
|
266
|
+
"mi/baseline/account-balance-wallet",
|
|
267
|
+
"mi/baseline/add",
|
|
268
|
+
"mi/baseline/add-circle",
|
|
269
|
+
"mi/baseline/adobe",
|
|
270
|
+
"mi/baseline/agriculture",
|
|
271
|
+
"mi/baseline/arrow-back",
|
|
272
|
+
"mi/baseline/arrow-forward",
|
|
273
|
+
"mi/baseline/attach-file",
|
|
274
|
+
"mi/baseline/attachment",
|
|
275
|
+
"mi/baseline/audiotrack",
|
|
276
|
+
"mi/baseline/badge",
|
|
277
|
+
"mi/baseline/book",
|
|
278
|
+
"mi/baseline/border-all",
|
|
279
|
+
"mi/baseline/cancel",
|
|
280
|
+
"mi/baseline/category",
|
|
281
|
+
"mi/baseline/check-box",
|
|
282
|
+
"mi/baseline/check-box-outline-blank",
|
|
283
|
+
"mi/baseline/check-circle",
|
|
284
|
+
"mi/baseline/close",
|
|
285
|
+
"mi/baseline/css",
|
|
286
|
+
"mi/baseline/description",
|
|
287
|
+
"mi/baseline/done",
|
|
288
|
+
"mi/baseline/downhill-skiing",
|
|
289
|
+
"mi/baseline/eco",
|
|
290
|
+
"mi/baseline/email",
|
|
291
|
+
"mi/baseline/error",
|
|
292
|
+
"mi/baseline/explore",
|
|
293
|
+
"mi/baseline/file-download-done",
|
|
294
|
+
"mi/baseline/folder-zip",
|
|
295
|
+
"mi/baseline/groups",
|
|
296
|
+
"mi/baseline/horizontal-rule",
|
|
297
|
+
"mi/baseline/indeterminate-check-box",
|
|
298
|
+
"mi/baseline/info",
|
|
299
|
+
"mi/baseline/insert-drive-file",
|
|
300
|
+
"mi/baseline/keyboard-arrow-down",
|
|
301
|
+
"mi/baseline/keyboard-arrow-up",
|
|
302
|
+
"mi/baseline/local-activity",
|
|
303
|
+
"mi/baseline/lock-open",
|
|
304
|
+
"mi/baseline/login",
|
|
305
|
+
"mi/baseline/logout",
|
|
306
|
+
"mi/baseline/navigate-next",
|
|
307
|
+
"mi/baseline/panorama",
|
|
308
|
+
"mi/baseline/person",
|
|
309
|
+
"mi/baseline/pets",
|
|
310
|
+
"mi/baseline/radio-button-checked",
|
|
311
|
+
"mi/baseline/radio-button-unchecked",
|
|
312
|
+
"mi/baseline/remove",
|
|
313
|
+
"mi/baseline/remove-circle",
|
|
314
|
+
"mi/baseline/route",
|
|
315
|
+
"mi/baseline/settings",
|
|
316
|
+
"mi/baseline/terminal",
|
|
317
|
+
"mi/baseline/timer",
|
|
318
|
+
"mi/baseline/tv",
|
|
319
|
+
"mi/baseline/videocam",
|
|
320
|
+
"mi/baseline/warning",
|
|
321
|
+
"mi/baseline/warning-amber",
|
|
322
|
+
"mi/baseline/web",
|
|
323
|
+
"mi/baseline/wysiwyg",
|
|
324
|
+
"mi/outline/help-outline",
|
|
325
|
+
"mi/outline/schedule",
|
|
326
|
+
"mi/round/arrow-circle-down",
|
|
327
|
+
"mi/round/email",
|
|
328
|
+
"mi/round/groups",
|
|
329
|
+
"mi/round/menu",
|
|
330
|
+
"mi/round/more-vert",
|
|
331
|
+
"mi/round/person"
|
|
332
|
+
]
|