@maggioli-design-system/mds-input-tip 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index-fe2df682.js +1571 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +13 -0
- package/dist/cjs/mds-input-tip.cjs.entry.js +21 -0
- package/dist/cjs/mds-input-tip.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/locale.js +20 -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-tip/mds-input-tip.css +280 -0
- package/dist/collection/components/mds-input-tip/mds-input-tip.js +68 -0
- package/dist/collection/components/mds-input-tip/meta/types.js +1 -0
- package/dist/collection/components/mds-input-tip/test/mds-input-tip.e2e.js +9 -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-tip.d.ts +11 -0
- package/dist/components/mds-input-tip.js +38 -0
- package/dist/documentation.d.ts +401 -0
- package/dist/documentation.json +97 -0
- package/dist/esm/index-351c5c8a.js +1544 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +9 -0
- package/dist/esm/mds-input-tip.entry.js +17 -0
- package/dist/esm/mds-input-tip.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-351c5c8a.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-tip.entry.js +1 -0
- package/dist/esm-es5/mds-input-tip.js +1 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/mds-input-tip/index.esm.js +0 -0
- package/dist/mds-input-tip/mds-input-tip.esm.js +1 -0
- package/dist/mds-input-tip/mds-input-tip.js +127 -0
- package/dist/mds-input-tip/p-22b86e20.js +2 -0
- package/dist/mds-input-tip/p-3428f886.system.js +2 -0
- package/dist/mds-input-tip/p-50ea2036.system.js +1 -0
- package/dist/mds-input-tip/p-630886b5.entry.js +1 -0
- package/dist/mds-input-tip/p-89e037f5.system.entry.js +1 -0
- package/dist/mds-input-tip/p-e5fe0b68.system.js +1 -0
- package/dist/stats.json +500 -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/locale.d.ts +14 -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-tip/mds-input-tip.d.ts +12 -0
- package/dist/types/components/mds-input-tip/meta/types.d.ts +1 -0
- package/dist/types/components.d.ts +55 -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 +568 -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 +59 -0
- package/readme.md +33 -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/locale.ts +31 -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-tip/.gitlab-ci.yml +25 -0
- package/src/components/mds-input-tip/mds-input-tip.css +52 -0
- package/src/components/mds-input-tip/mds-input-tip.tsx +28 -0
- package/src/components/mds-input-tip/meta/types.ts +3 -0
- package/src/components/mds-input-tip/readme.md +18 -0
- package/src/components/mds-input-tip/test/mds-input-tip.e2e.ts +11 -0
- package/src/components.d.ts +55 -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 +344 -0
- package/src/fixtures/iconsauce.json +257 -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-tip.esm.js +1 -0
- package/www/build/mds-input-tip.js +127 -0
- package/www/build/p-22b86e20.js +2 -0
- package/www/build/p-3428f886.system.js +2 -0
- package/www/build/p-50ea2036.system.js +1 -0
- package/www/build/p-630886b5.entry.js +1 -0
- package/www/build/p-89e037f5.system.entry.js +1 -0
- package/www/build/p-e5fe0b68.system.js +1 -0
- package/www/host.config.json +15 -0
@@ -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,344 @@
|
|
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/consumption-high",
|
66
|
+
"mgg/consumption-low",
|
67
|
+
"mgg/consumption-medium",
|
68
|
+
"mgg/copy-paste",
|
69
|
+
"mgg/d-instrumental-buildings",
|
70
|
+
"mgg/data-analytics-alt",
|
71
|
+
"mgg/data-analytics-search",
|
72
|
+
"mgg/data-analytics-time",
|
73
|
+
"mgg/data-category-alt",
|
74
|
+
"mgg/data-civil-union",
|
75
|
+
"mgg/data-cleaning",
|
76
|
+
"mgg/data-death-civil-union",
|
77
|
+
"mgg/data-death-marriage",
|
78
|
+
"mgg/data-end-civil-union",
|
79
|
+
"mgg/data-end-marriage",
|
80
|
+
"mgg/dataset",
|
81
|
+
"mgg/delivered-to-the-recipient",
|
82
|
+
"mgg/document-euro",
|
83
|
+
"mgg/document-less",
|
84
|
+
"mgg/document-magic",
|
85
|
+
"mgg/document-rename",
|
86
|
+
"mgg/download-csv",
|
87
|
+
"mgg/download-json",
|
88
|
+
"mgg/electronic-document",
|
89
|
+
"mgg/email-open-check",
|
90
|
+
"mgg/email-open-off",
|
91
|
+
"mgg/face-to-face-meeting",
|
92
|
+
"mgg/factory",
|
93
|
+
"mgg/farmer",
|
94
|
+
"mgg/field",
|
95
|
+
"mgg/file-download",
|
96
|
+
"mgg/file-folder-tree",
|
97
|
+
"mgg/file-folder-tree-open",
|
98
|
+
"mgg/file-import",
|
99
|
+
"mgg/file-odt",
|
100
|
+
"mgg/file-rtf",
|
101
|
+
"mgg/file-settings-alt",
|
102
|
+
"mgg/file-stack",
|
103
|
+
"mgg/file-stack-alt",
|
104
|
+
"mgg/file-sub",
|
105
|
+
"mgg/file-type-document-attachment",
|
106
|
+
"mgg/file-type-document-multiple-attachment",
|
107
|
+
"mgg/file-type-document-rubber-stamp",
|
108
|
+
"mgg/file-type-home",
|
109
|
+
"mgg/file-type-pdf",
|
110
|
+
"mgg/file-type-success",
|
111
|
+
"mgg/file-type-warning",
|
112
|
+
"mgg/file-xml",
|
113
|
+
"mgg/finance-euro-cashback",
|
114
|
+
"mgg/fit-horizontal",
|
115
|
+
"mgg/fit-vertical",
|
116
|
+
"mgg/forwarded-with-a-single-sending",
|
117
|
+
"mgg/fullscreen-on-alt",
|
118
|
+
"mgg/google-check-small",
|
119
|
+
"mgg/google-experiment",
|
120
|
+
"mgg/google-face-retouching-off",
|
121
|
+
"mgg/google-hub",
|
122
|
+
"mgg/google-keyboard-double-arrow-down",
|
123
|
+
"mgg/google-keyboard-double-arrow-up",
|
124
|
+
"mgg/google-place-item",
|
125
|
+
"mgg/group-assigned-automatically-system",
|
126
|
+
"mgg/group-ceased",
|
127
|
+
"mgg/group-inherited",
|
128
|
+
"mgg/heart",
|
129
|
+
"mgg/heart-outline",
|
130
|
+
"mgg/historic-building",
|
131
|
+
"mgg/historic-building-unusable",
|
132
|
+
"mgg/home-hammer",
|
133
|
+
"mgg/home-number",
|
134
|
+
"mgg/inagibile",
|
135
|
+
"mgg/input-calendar-costs",
|
136
|
+
"mgg/input-calendar-period",
|
137
|
+
"mgg/input-calendar-time",
|
138
|
+
"mgg/instrumental-buildings",
|
139
|
+
"mgg/internationalization-add",
|
140
|
+
"mgg/internationalization-check",
|
141
|
+
"mgg/internationalization-delete",
|
142
|
+
"mgg/isbn",
|
143
|
+
"mgg/judge-hammer",
|
144
|
+
"mgg/land-registry",
|
145
|
+
"mgg/layers",
|
146
|
+
"mgg/liquidated-document",
|
147
|
+
"mgg/list-dot",
|
148
|
+
"mgg/logo-girasole-camuno",
|
149
|
+
"mgg/logo-gpl",
|
150
|
+
"mgg/logo-ilibro",
|
151
|
+
"mgg/map-marker-settings",
|
152
|
+
"mgg/masks-office",
|
153
|
+
"mgg/military-draft",
|
154
|
+
"mgg/money-bag-settings",
|
155
|
+
"mgg/money-on-hand",
|
156
|
+
"mgg/money-paid",
|
157
|
+
"mgg/move-down",
|
158
|
+
"mgg/move-left",
|
159
|
+
"mgg/move-right",
|
160
|
+
"mgg/move-row-down",
|
161
|
+
"mgg/move-row-up",
|
162
|
+
"mgg/move-up",
|
163
|
+
"mgg/multiple-payments",
|
164
|
+
"mgg/national-document",
|
165
|
+
"mgg/national-document-off",
|
166
|
+
"mgg/not-instrumental-d-buildings",
|
167
|
+
"mgg/not-sent-yet",
|
168
|
+
"mgg/office-off",
|
169
|
+
"mgg/order-return-down-left-to-right",
|
170
|
+
"mgg/order-return-down-left-to-up",
|
171
|
+
"mgg/order-return-down-right-to-left",
|
172
|
+
"mgg/order-return-down-right-to-up",
|
173
|
+
"mgg/order-return-up-left-to-down",
|
174
|
+
"mgg/order-return-up-left-to-right",
|
175
|
+
"mgg/order-return-up-right-to-down",
|
176
|
+
"mgg/order-return-up-right-to-left",
|
177
|
+
"mgg/order-zigzag-down-left-to-right",
|
178
|
+
"mgg/order-zigzag-down-left-to-up",
|
179
|
+
"mgg/order-zigzag-down-right-to-left",
|
180
|
+
"mgg/order-zigzag-down-right-to-up",
|
181
|
+
"mgg/order-zigzag-up-left-to-down",
|
182
|
+
"mgg/order-zigzag-up-left-to-right",
|
183
|
+
"mgg/order-zigzag-up-right-to-down",
|
184
|
+
"mgg/order-zigzag-up-right-to-left",
|
185
|
+
"mgg/other-properties",
|
186
|
+
"mgg/other-properties-off",
|
187
|
+
"mgg/other-residential-buildings",
|
188
|
+
"mgg/pagopa",
|
189
|
+
"mgg/partial-wall",
|
190
|
+
"mgg/payment-settings",
|
191
|
+
"mgg/pec-handshake",
|
192
|
+
"mgg/pec-ok",
|
193
|
+
"mgg/pec-sent-to-the-not-pec-recipient",
|
194
|
+
"mgg/places-green",
|
195
|
+
"mgg/places-green-doc",
|
196
|
+
"mgg/places-green-history",
|
197
|
+
"mgg/places-green-info",
|
198
|
+
"mgg/places-holiday-beach",
|
199
|
+
"mgg/places-market",
|
200
|
+
"mgg/places-park",
|
201
|
+
"mgg/places-park-alt",
|
202
|
+
"mgg/places-store-access-denied",
|
203
|
+
"mgg/property-owner",
|
204
|
+
"mgg/relevance",
|
205
|
+
"mgg/reporting-abuse",
|
206
|
+
"mgg/residency-permit",
|
207
|
+
"mgg/robot",
|
208
|
+
"mgg/roles-permission",
|
209
|
+
"mgg/rubber-stamp",
|
210
|
+
"mgg/rurale",
|
211
|
+
"mgg/search-maggioli",
|
212
|
+
"mgg/send-progress",
|
213
|
+
"mgg/sending-error",
|
214
|
+
"mgg/session",
|
215
|
+
"mgg/settings-attachment",
|
216
|
+
"mgg/sign-shop",
|
217
|
+
"mgg/square-viewfinder",
|
218
|
+
"mgg/stamp",
|
219
|
+
"mgg/status-progress-a-quarter",
|
220
|
+
"mgg/status-progress-complete",
|
221
|
+
"mgg/status-progress-half",
|
222
|
+
"mgg/status-progress-three-quarter",
|
223
|
+
"mgg/stuck-codes",
|
224
|
+
"mgg/subtractive-permission",
|
225
|
+
"mgg/tea-light",
|
226
|
+
"mgg/terminal",
|
227
|
+
"mgg/todo",
|
228
|
+
"mgg/todo-action-businessman-view",
|
229
|
+
"mgg/todo-action-certificate",
|
230
|
+
"mgg/todo-action-contract",
|
231
|
+
"mgg/todo-action-currency-euro",
|
232
|
+
"mgg/todo-action-graduate",
|
233
|
+
"mgg/todo-action-graduation-hat",
|
234
|
+
"mgg/todo-action-judge",
|
235
|
+
"mgg/todo-action-money",
|
236
|
+
"mgg/todo-action-protocol",
|
237
|
+
"mgg/todo-action-upload",
|
238
|
+
"mgg/todo-action-wkf-document-checked",
|
239
|
+
"mgg/todo-action-wkf-people-checked",
|
240
|
+
"mgg/todo-action-wkf-set-pub-date",
|
241
|
+
"mgg/todo-completed",
|
242
|
+
"mgg/todo-completed-re-executable",
|
243
|
+
"mgg/todo-in-charge-by-me",
|
244
|
+
"mgg/todo-in-charge-by-others",
|
245
|
+
"mgg/todo-in-evaluation",
|
246
|
+
"mgg/todo-in-evaluation-by-others",
|
247
|
+
"mgg/todo-incoming-in-charge",
|
248
|
+
"mgg/todo-incoming-rejected",
|
249
|
+
"mgg/todo-pause",
|
250
|
+
"mgg/todo-running-completed",
|
251
|
+
"mgg/todo-suspended",
|
252
|
+
"mgg/touchpoint-laptop-info",
|
253
|
+
"mgg/touchpoint-laptop-search",
|
254
|
+
"mgg/traffic-cone",
|
255
|
+
"mgg/trending-down",
|
256
|
+
"mgg/tribute",
|
257
|
+
"mgg/tributes",
|
258
|
+
"mgg/urban-city",
|
259
|
+
"mgg/user-dead",
|
260
|
+
"mgg/user-family",
|
261
|
+
"mgg/user-location",
|
262
|
+
"mgg/user-location-off",
|
263
|
+
"mgg/user-signed-out",
|
264
|
+
"mgg/view-chart-gantt",
|
265
|
+
"mgg/view-side-by-side",
|
266
|
+
"mgg/warning-superscript",
|
267
|
+
"mgg/web-app-ansc",
|
268
|
+
"mgg/work-book",
|
269
|
+
"mi/baseline/account-balance",
|
270
|
+
"mi/baseline/account-balance-wallet",
|
271
|
+
"mi/baseline/add",
|
272
|
+
"mi/baseline/add-circle",
|
273
|
+
"mi/baseline/adobe",
|
274
|
+
"mi/baseline/agriculture",
|
275
|
+
"mi/baseline/animation",
|
276
|
+
"mi/baseline/arrow-back",
|
277
|
+
"mi/baseline/arrow-forward",
|
278
|
+
"mi/baseline/attach-file",
|
279
|
+
"mi/baseline/attachment",
|
280
|
+
"mi/baseline/audiotrack",
|
281
|
+
"mi/baseline/auto-awesome",
|
282
|
+
"mi/baseline/badge",
|
283
|
+
"mi/baseline/book",
|
284
|
+
"mi/baseline/border-all",
|
285
|
+
"mi/baseline/cancel",
|
286
|
+
"mi/baseline/category",
|
287
|
+
"mi/baseline/check-box",
|
288
|
+
"mi/baseline/check-box-outline-blank",
|
289
|
+
"mi/baseline/check-circle",
|
290
|
+
"mi/baseline/close",
|
291
|
+
"mi/baseline/contrast",
|
292
|
+
"mi/baseline/css",
|
293
|
+
"mi/baseline/dark-mode",
|
294
|
+
"mi/baseline/description",
|
295
|
+
"mi/baseline/done",
|
296
|
+
"mi/baseline/downhill-skiing",
|
297
|
+
"mi/baseline/eco",
|
298
|
+
"mi/baseline/email",
|
299
|
+
"mi/baseline/error",
|
300
|
+
"mi/baseline/explore",
|
301
|
+
"mi/baseline/file-download-done",
|
302
|
+
"mi/baseline/folder-zip",
|
303
|
+
"mi/baseline/groups",
|
304
|
+
"mi/baseline/horizontal-rule",
|
305
|
+
"mi/baseline/indeterminate-check-box",
|
306
|
+
"mi/baseline/info",
|
307
|
+
"mi/baseline/insert-drive-file",
|
308
|
+
"mi/baseline/keyboard-arrow-down",
|
309
|
+
"mi/baseline/keyboard-arrow-up",
|
310
|
+
"mi/baseline/light-mode",
|
311
|
+
"mi/baseline/local-activity",
|
312
|
+
"mi/baseline/lock-open",
|
313
|
+
"mi/baseline/login",
|
314
|
+
"mi/baseline/logout",
|
315
|
+
"mi/baseline/navigate-next",
|
316
|
+
"mi/baseline/panorama",
|
317
|
+
"mi/baseline/person",
|
318
|
+
"mi/baseline/pets",
|
319
|
+
"mi/baseline/radio-button-checked",
|
320
|
+
"mi/baseline/radio-button-unchecked",
|
321
|
+
"mi/baseline/remove",
|
322
|
+
"mi/baseline/remove-circle",
|
323
|
+
"mi/baseline/route",
|
324
|
+
"mi/baseline/settings",
|
325
|
+
"mi/baseline/terminal",
|
326
|
+
"mi/baseline/timer",
|
327
|
+
"mi/baseline/tv",
|
328
|
+
"mi/baseline/videocam",
|
329
|
+
"mi/baseline/warning",
|
330
|
+
"mi/baseline/warning-amber",
|
331
|
+
"mi/baseline/web",
|
332
|
+
"mi/baseline/wysiwyg",
|
333
|
+
"mi/outline/auto-awesome",
|
334
|
+
"mi/outline/circle",
|
335
|
+
"mi/outline/dark-mode",
|
336
|
+
"mi/outline/help-outline",
|
337
|
+
"mi/outline/schedule",
|
338
|
+
"mi/round/arrow-circle-down",
|
339
|
+
"mi/round/email",
|
340
|
+
"mi/round/groups",
|
341
|
+
"mi/round/menu",
|
342
|
+
"mi/round/more-vert",
|
343
|
+
"mi/round/person"
|
344
|
+
]
|