@maggioli-design-system/mds-input-tip 1.2.1 → 1.2.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.
Files changed (86) hide show
  1. package/dist/cjs/{index-442db91d.js → index-66d8bb25.js} +143 -58
  2. package/dist/cjs/loader.cjs.js +1 -1
  3. package/dist/cjs/mds-input-tip.cjs.entry.js +7 -1
  4. package/dist/cjs/mds-input-tip.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-input-tip/mds-input-tip.js +10 -0
  12. package/dist/collection/dictionary/animation.js +5 -0
  13. package/dist/collection/dictionary/file-extensions.js +61 -56
  14. package/dist/collection/dictionary/text.js +60 -1
  15. package/dist/collection/dictionary/tree.js +13 -0
  16. package/dist/collection/fixtures/filenames.js +62 -1
  17. package/dist/collection/type/animation.js +1 -0
  18. package/dist/collection/type/tree.js +1 -0
  19. package/dist/collection/type/variant-file-format.js +5 -0
  20. package/dist/components/mds-input-tip.js +6 -0
  21. package/dist/documentation.d.ts +8 -0
  22. package/dist/documentation.json +8 -4
  23. package/dist/esm/{index-8fed469d.js → index-4e431d49.js} +143 -58
  24. package/dist/esm/loader.js +2 -2
  25. package/dist/esm/mds-input-tip.entry.js +7 -1
  26. package/dist/esm/mds-input-tip.js +3 -3
  27. package/dist/esm-es5/index-4e431d49.js +1 -0
  28. package/dist/esm-es5/loader.js +1 -1
  29. package/dist/esm-es5/mds-input-tip.entry.js +1 -1
  30. package/dist/esm-es5/mds-input-tip.js +1 -1
  31. package/dist/mds-input-tip/mds-input-tip.esm.js +1 -1
  32. package/dist/mds-input-tip/mds-input-tip.js +1 -1
  33. package/dist/mds-input-tip/{p-4486a5e4.entry.js → p-3bf85392.entry.js} +1 -1
  34. package/dist/mds-input-tip/{p-fadf816e.system.entry.js → p-5c7f52a4.system.entry.js} +1 -1
  35. package/dist/mds-input-tip/p-7eeec96b.system.js +2 -0
  36. package/dist/mds-input-tip/p-b8376582.js +2 -0
  37. package/dist/mds-input-tip/{p-c915dfb3.system.js → p-c7ede63a.system.js} +1 -1
  38. package/dist/stats.json +62 -36
  39. package/dist/types/common/aria.d.ts +3 -1
  40. package/dist/types/common/device.d.ts +2 -0
  41. package/dist/types/common/floating-controller.d.ts +46 -0
  42. package/dist/types/common/slot.d.ts +3 -0
  43. package/dist/types/dictionary/animation.d.ts +2 -0
  44. package/dist/types/dictionary/text.d.ts +3 -1
  45. package/dist/types/dictionary/tree.d.ts +4 -0
  46. package/dist/types/fixtures/filenames.d.ts +62 -1
  47. package/dist/types/type/animation.d.ts +1 -0
  48. package/dist/types/type/file-types.d.ts +1 -1
  49. package/dist/types/type/text.d.ts +2 -0
  50. package/dist/types/type/tree.d.ts +3 -0
  51. package/dist/types/type/variant-file-format.d.ts +1 -1
  52. package/documentation.json +57 -18
  53. package/package.json +4 -4
  54. package/src/common/aria.ts +22 -2
  55. package/src/common/device.ts +9 -0
  56. package/src/common/floating-controller.ts +263 -0
  57. package/src/common/keyboard-manager.ts +2 -2
  58. package/src/common/slot.ts +24 -0
  59. package/src/dictionary/animation.ts +8 -0
  60. package/src/dictionary/file-extensions.ts +61 -56
  61. package/src/dictionary/text.ts +64 -0
  62. package/src/dictionary/tree.ts +21 -0
  63. package/src/fixtures/filenames.ts +63 -0
  64. package/src/fixtures/icons.json +29 -0
  65. package/src/fixtures/iconsauce.json +11 -0
  66. package/src/meta/file-format/locale.el.json +44 -0
  67. package/src/meta/file-format/locale.en.json +44 -0
  68. package/src/meta/file-format/locale.es.json +44 -0
  69. package/src/meta/file-format/locale.it.json +44 -0
  70. package/src/type/animation.ts +3 -0
  71. package/src/type/file-types.ts +6 -0
  72. package/src/type/text.ts +59 -0
  73. package/src/type/tree.ts +12 -0
  74. package/src/type/variant-file-format.ts +6 -0
  75. package/www/build/mds-input-tip.esm.js +1 -1
  76. package/www/build/mds-input-tip.js +1 -1
  77. package/www/build/{p-4486a5e4.entry.js → p-3bf85392.entry.js} +1 -1
  78. package/www/build/{p-fadf816e.system.entry.js → p-5c7f52a4.system.entry.js} +1 -1
  79. package/www/build/p-7eeec96b.system.js +2 -0
  80. package/www/build/p-b8376582.js +2 -0
  81. package/www/build/{p-c915dfb3.system.js → p-c7ede63a.system.js} +1 -1
  82. package/dist/esm-es5/index-8fed469d.js +0 -1
  83. package/dist/mds-input-tip/p-37c61f56.system.js +0 -2
  84. package/dist/mds-input-tip/p-3e967425.js +0 -2
  85. package/www/build/p-37c61f56.system.js +0 -2
  86. package/www/build/p-3e967425.js +0 -2
@@ -11,62 +11,67 @@ interface ExtensionInfo {
11
11
  }
12
12
 
13
13
  const fileExtensionsDictionary: FileExtenstion = {
14
- '7z': { format: 'archive', description: 'Archivio compresso' },
15
- ace: { format: 'archive', description: 'Archivio compresso' },
16
- ai: { format: 'vector', description: 'Vettoriale Adobe Illustrator' },
17
- dart: { format: 'code', description: 'Dart' },
18
- db: { format: 'data', description: 'File di database' },
19
- default: { format: 'attachment', description: 'Formato sconosciuto' },
20
- dmg: { format: 'executable', description: 'Apple Disk Image' },
21
- doc: { format: 'text', description: 'Documento Microsoft Word' },
22
- docm: { format: 'text', description: 'Documento Microsoft Word' },
23
- docx: { format: 'text', description: 'Documento Microsoft Word Compresso' },
24
- eml: { format: 'email', description: 'E-mail di posta elettronica' },
25
- eps: { format: 'vector', description: 'Vettoriale Corel Draw' },
26
- exe: { format: 'executable', description: 'File eseguibile Windows' },
27
- flac: { format: 'audio', description: 'Audio non compresso' },
28
- gif: { format: 'image', description: 'Immagine compressa', preview: true },
29
- htm: { format: 'markup', description: 'Pagina web' },
30
- heic: { format: 'image', description: 'High Efficiency Image File Format' },
31
- html: { format: 'markup', description: 'Pagina web' },
32
- jpe: { format: 'image', description: 'Immagine compressa', preview: true },
33
- jpeg: { format: 'image', description: 'Immagine compressa', preview: true },
34
- jpg: { format: 'image', description: 'Immagine compressa', preview: true },
35
- js: { format: 'code', description: 'JavaScript' },
36
- json: { format: 'data', description: 'JavaScript Object Notation' },
37
- jsx: { format: 'code', description: 'JavaScript' },
38
- m2v: { format: 'video', description: 'Filmato SD' },
39
- mp2: { format: 'audio', description: 'Audio compresso' },
40
- mp3: { format: 'audio', description: 'Audio compresso' },
41
- mp4: { format: 'video', description: 'Filmato HD' },
42
- mp4v: { format: 'video', description: 'Filmato HD' },
43
- mpeg: { format: 'video', description: 'Filmato SD' },
44
- mpg4: { format: 'video', description: 'Filmato SD' },
45
- mpg: { format: 'video', description: 'Filmato SD' },
46
- mpga: { format: 'audio', description: 'Audio compresso' },
47
- odp: { format: 'slide', description: 'Slide di presentazione LibreOffice' },
48
- ods: { format: 'spreadsheet', description: 'Foglio di calcolo LibreOffice' },
49
- odt: { format: 'text', description: 'File di testo LibreOffice' },
50
- pdf: { format: 'document', description: 'Documento Adobe' },
51
- php: { format: 'code', description: 'Hypertext Preprocessor' },
52
- png: { format: 'image', description: 'Immagine Portable Network Graphics', preview: true },
53
- ppt: { format: 'slide', description: 'Slide di presentazione PowerPoint' },
54
- rar: { format: 'archive', description: 'Archivio compresso' },
55
- rtf: { format: 'text', description: 'Documento di testo Rich Text Format' },
56
- sass: { format: 'code', description: 'Syntactically Awesome StyleSheets' },
57
- shtml: { format: 'markup', description: 'Pagina web' },
58
- svg: { format: 'vector', description: 'Scalable Vector Graphics', preview: true },
59
- tar: { format: 'archive', description: 'Archivio non compresso' },
60
- tiff: { format: 'image', description: 'Tag Image File Format' },
61
- ts: { format: 'code', description: 'TypeScript' },
62
- tsx: { format: 'code', description: 'TypeScript Extended Syntax' },
63
- txt: { format: 'text', description: 'Documento di testo non formattato' },
64
- wav: { format: 'audio', description: 'Audio non compresso' },
65
- webp: { format: 'image', description: 'Immagine Web Picture', preview: true },
66
- xar: { format: 'archive', description: 'Archivio compresso' },
67
- xls: { format: 'spreadsheet', description: 'Foglio di calcolo Office' },
68
- xlsx: { format: 'spreadsheet', description: 'Foglio di calcolo Office' },
69
- zip: { format: 'archive', description: 'Archivio compresso' },
14
+ '7z': { format: 'archive', description: 'compressedArchive' },
15
+ ace: { format: 'archive', description: 'compressedArchive' },
16
+ ai: { format: 'vector', description: 'fileAI' },
17
+ dart: { format: 'code', description: 'dart' },
18
+ db: { format: 'data', description: 'fileDB' },
19
+ default: { format: 'attachment', description: 'unknown' },
20
+ dmg: { format: 'executable', description: 'appleDiskImage' },
21
+ doc: { format: 'text', description: 'documentMS' },
22
+ docm: { format: 'text', description: 'documentMS' },
23
+ docx: { format: 'text', description: 'compressedDocumentMS' },
24
+ eml: { format: 'email', description: 'email' },
25
+ eps: { format: 'vector', description: 'fileEPS' },
26
+ exe: { format: 'executable', description: 'fileEXE' },
27
+ flac: { format: 'audio', description: 'uncompressedAudio' },
28
+ gif: { format: 'image', description: 'compressedImage', preview: true },
29
+ heic: { format: 'image', description: 'imageHEFF' },
30
+ htm: { format: 'markup', description: 'documentWeb' },
31
+ html: { format: 'markup', description: 'documentWeb' },
32
+ jpe: { format: 'image', description: 'compressedImage', preview: true },
33
+ jpeg: { format: 'image', description: 'compressedImage', preview: true },
34
+ jpg: { format: 'image', description: 'compressedImage', preview: true },
35
+ js: { format: 'code', description: 'fileJS' },
36
+ json: { format: 'data', description: 'fileJSON' },
37
+ jsx: { format: 'code', description: 'fileJS' },
38
+ m2v: { format: 'video', description: 'videoSD' },
39
+ mp2: { format: 'audio', description: 'compressedAudio' },
40
+ mp3: { format: 'audio', description: 'compressedAudio' },
41
+ mp4: { format: 'video', description: 'videoHD' },
42
+ mp4v: { format: 'video', description: 'videoHD' },
43
+ mpeg: { format: 'video', description: 'videoSD' },
44
+ mpg4: { format: 'video', description: 'videoSD' },
45
+ mpg: { format: 'video', description: 'videoSD' },
46
+ mpga: { format: 'audio', description: 'compressedAudio' },
47
+ odf: { format: 'document', description: 'openDocumentFormat' },
48
+ odp: { format: 'slide', description: 'slideLO' },
49
+ ods: { format: 'spreadsheet', description: 'spreadsheetLO' },
50
+ odt: { format: 'text', description: 'documentLO' },
51
+ ole: { format: 'document', description: 'objectLinkingAndEmbedding' },
52
+ p7m: { format: 'certificate', description: 'documentDigitalSingnature' },
53
+ pdf: { format: 'document', description: 'documentAdobe' },
54
+ php: { format: 'code', description: 'filePHP' },
55
+ png: { format: 'image', description: 'imagePNG', preview: true },
56
+ ppt: { format: 'slide', description: 'slidePowerPoint' },
57
+ rar: { format: 'archive', description: 'compressedArchive' },
58
+ rtf: { format: 'text', description: 'documentRTF' },
59
+ sass: { format: 'code', description: 'fileSASS' },
60
+ shtml: { format: 'markup', description: 'documentWeb' },
61
+ svg: { format: 'vector', description: 'imageSVG', preview: true },
62
+ tar: { format: 'archive', description: 'uncompressedArchive' },
63
+ tiff: { format: 'image', description: 'imageTIFF' },
64
+ ts: { format: 'code', description: 'fileTS' },
65
+ tsd: { format: 'certificate', description: 'certificateTSD' },
66
+ tsx: { format: 'code', description: 'fileTSX' },
67
+ txt: { format: 'text', description: 'documentTXT' },
68
+ wav: { format: 'audio', description: 'uncompressedAudio' },
69
+ webp: { format: 'image', description: 'imageWEBP', preview: true },
70
+ xar: { format: 'archive', description: 'compressedArchive' },
71
+ xls: { format: 'spreadsheet', description: 'spreadsheetMS' },
72
+ xlsx: { format: 'spreadsheet', description: 'spreadsheetMS' },
73
+ xml: { format: 'markup', description: 'extensibleMarkupLanguage' },
74
+ zip: { format: 'archive', description: 'compressedArchive' },
70
75
  }
71
76
 
72
77
  const genericMimeToExt: Map<string, string[]> = new Map([
@@ -1,3 +1,65 @@
1
+ const typographyTagDictionary = [
2
+ 'abbr',
3
+ 'address',
4
+ 'article',
5
+ 'b',
6
+ 'bdo',
7
+ 'blockquote',
8
+ 'cite',
9
+ 'code',
10
+ 'dd',
11
+ 'del',
12
+ 'details',
13
+ 'dfn',
14
+ 'div',
15
+ 'dl',
16
+ 'dt',
17
+ 'em',
18
+ 'figcaption',
19
+ 'h1',
20
+ 'h2',
21
+ 'h3',
22
+ 'h4',
23
+ 'h5',
24
+ 'h6',
25
+ 'i',
26
+ 'ins',
27
+ 'kbd',
28
+ 'label',
29
+ 'legend',
30
+ 'li',
31
+ 'mark',
32
+ 'ol',
33
+ 'p',
34
+ 'pre',
35
+ 'q',
36
+ 'rb',
37
+ 'rt',
38
+ 'ruby',
39
+ 's',
40
+ 'samp',
41
+ 'small',
42
+ 'span',
43
+ 'strong',
44
+ 'sub',
45
+ 'summary',
46
+ 'sup',
47
+ 'time',
48
+ 'u',
49
+ 'ul',
50
+ 'var',
51
+ ]
52
+
53
+ const typographyHeadingTagDictionary = [
54
+ 'h1',
55
+ 'h2',
56
+ 'h3',
57
+ 'h4',
58
+ 'h5',
59
+ 'h6',
60
+ ]
61
+
62
+
1
63
  const truncateDictionary = [
2
64
  'all',
3
65
  'none',
@@ -6,4 +68,6 @@ const truncateDictionary = [
6
68
 
7
69
  export {
8
70
  truncateDictionary,
71
+ typographyHeadingTagDictionary,
72
+ typographyTagDictionary,
9
73
  }
@@ -0,0 +1,21 @@
1
+ const treeActionsDictionary = [
2
+ 'auto',
3
+ 'visible',
4
+ ]
5
+
6
+ const treeAppearanceDictionary = [
7
+ 'depth',
8
+ 'none',
9
+ ]
10
+
11
+ const treeIconDictionary = [
12
+ 'folder',
13
+ 'chevron',
14
+ ]
15
+
16
+ export {
17
+ treeActionsDictionary,
18
+ treeAppearanceDictionary,
19
+ treeIconDictionary,
20
+ }
21
+
@@ -55,6 +55,69 @@ const filesList = [
55
55
  'wooden.jsx',
56
56
  ]
57
57
 
58
+ const namedFilesList = {
59
+ '7z': 'frozen_haptic.7z',
60
+ 'No extension file': 'this_is_an_extensionless_file',
61
+ 'png with URL': 'https://i2.wp.com/clipart.info/images/ccovers/1495750818Apple-PNG-Clip-Art.png',
62
+ ace: 'sky_marketing.ace',
63
+ ai: 'foreground_overriding.ai',
64
+ db: 'matrix_black_hat.db',
65
+ default: 'copying.default',
66
+ dmg: 'protocol_designer.dmg',
67
+ doc: 'forges.doc',
68
+ docm: 'officer_somalia.docm',
69
+ docx: 'upgradable_gold.docx',
70
+ eml: 'brunei_logistical.eml',
71
+ eps: 'alarm_circuit_plastic.eps',
72
+ exe: 'rss_systematic_avon.exe',
73
+ flac: 'liaison_panel_central.flac',
74
+ gif: 'initiatives_group.gif',
75
+ htm: 'books_monetize_arizona.htm',
76
+ html: 'flexibility_auto_money.html',
77
+ jpe: 'intelligent_radical.jpe',
78
+ jpeg: 'iowa_installation.jpeg',
79
+ jpg: 'buckinghamshire_macao.jpg',
80
+ js: 'monitor.js',
81
+ json: 'calculating.json',
82
+ jsx: 'wooden.jsx',
83
+ m2v: 'interface_bedfordshire_solid.m2v',
84
+ mp2: 'explicit.mp2',
85
+ mp3: 'optimization_radical.mp3',
86
+ mp4: 'nebraska.mp4',
87
+ mp4v: 'reduced_regional_greenland.mp4v',
88
+ mpeg: 'impactful_alarm_handmade.mpeg',
89
+ mpg4: 'revolutionize.mpg4',
90
+ mpg: 'complexity_deposit.mpg',
91
+ mpga: 'ports_copy_granite.mpga',
92
+ odf: 'This is a file_to_read.odf',
93
+ odp: 'needs_based_solid.odp',
94
+ ods: 'compressing_black_colorado.ods',
95
+ odt: 'salad_compressing.odt',
96
+ ole: 'Document-RPF_Open-new.ole',
97
+ p7m: 'file with certificate from government.pdf.p7m',
98
+ pdf: 'connect_local_visualize.pdf',
99
+ php: 'fish.php',
100
+ png: 'awesome_orchestration.png',
101
+ ppt: 'gorgeous_manager_savings.ppt',
102
+ rar: 'unbranded.rar',
103
+ rtf: 'pound.rtf',
104
+ sass: 'open_source_gorgeous.sass',
105
+ shtml: 'brand.shtml',
106
+ svg: 'b2c_tan_sports.svg',
107
+ tar: 'graphic_frozen_bedfordshire.tar',
108
+ ts: 'forge_face.ts',
109
+ tsd: 'Marked file-7483274hy6Fg6R8.tsd',
110
+ txt: 'bedfordshire_iceland_identity.txt',
111
+ wav: 'synergistic.wav',
112
+ webp: 'open_source.webp',
113
+ xar: 'wisconsin_bypassing_small.xar',
114
+ xls: 'metrics_lempira_account.xls',
115
+ xlsx: 'hdd_navigate_panama.xlsx',
116
+ xml: 'Markup language.xml',
117
+ zip: 'tuna_table_fall.zip',
118
+ }
119
+
58
120
  export {
59
121
  filesList,
122
+ namedFilesList,
60
123
  }
@@ -7,7 +7,12 @@
7
7
  "mdi/dots-vertical",
8
8
  "mdi/email",
9
9
  "mdi/file-document-remove-outline",
10
+ "mdi/file-download-outline",
11
+ "mdi/file-upload-outline",
12
+ "mdi/folder-open",
13
+ "mdi/handshake",
10
14
  "mdi/harddisk",
15
+ "mdi/license",
11
16
  "mdi/map-marker",
12
17
  "mdi/replay",
13
18
  "mdi/vector-curve",
@@ -35,6 +40,7 @@
35
40
  "mgg/adv-denied",
36
41
  "mgg/ai-brain",
37
42
  "mgg/ai-brain-outline",
43
+ "mgg/ai-human",
38
44
  "mgg/ai-message",
39
45
  "mgg/ai-outline",
40
46
  "mgg/ai-status-completed",
@@ -42,6 +48,7 @@
42
48
  "mgg/ai-status-processing",
43
49
  "mgg/ai-status-suspended",
44
50
  "mgg/alerts-pagopa",
51
+ "mgg/anagrafe-nazionale",
45
52
  "mgg/anpr",
46
53
  "mgg/ansc",
47
54
  "mgg/area-edificabile",
@@ -66,6 +73,7 @@
66
73
  "mgg/cancelled-sheet",
67
74
  "mgg/car-license",
68
75
  "mgg/card-stamping",
76
+ "mgg/cash-register-settings",
69
77
  "mgg/check-small",
70
78
  "mgg/checklist",
71
79
  "mgg/checklist-settings",
@@ -111,6 +119,8 @@
111
119
  "mgg/factory",
112
120
  "mgg/farmer",
113
121
  "mgg/field",
122
+ "mgg/file-certificate",
123
+ "mgg/file-clock",
114
124
  "mgg/file-download",
115
125
  "mgg/file-folder-tree",
116
126
  "mgg/file-folder-tree-open",
@@ -132,6 +142,7 @@
132
142
  "mgg/finance-euro-cashback",
133
143
  "mgg/fit-horizontal",
134
144
  "mgg/fit-vertical",
145
+ "mgg/fontawesome-torii-gate",
135
146
  "mgg/forwarded-with-a-single-sending",
136
147
  "mgg/fullscreen-on-alt",
137
148
  "mgg/google-book-closed",
@@ -141,6 +152,7 @@
141
152
  "mgg/google-book-opening",
142
153
  "mgg/google-book-opening-outline",
143
154
  "mgg/google-check-small",
155
+ "mgg/google-drag-pan",
144
156
  "mgg/google-experiment",
145
157
  "mgg/google-face-retouching-off",
146
158
  "mgg/google-hub",
@@ -158,7 +170,9 @@
158
170
  "mgg/home-hammer",
159
171
  "mgg/home-link",
160
172
  "mgg/home-number",
173
+ "mgg/inad",
161
174
  "mgg/inagibile",
175
+ "mgg/inps",
162
176
  "mgg/input-calendar-costs",
163
177
  "mgg/input-calendar-period",
164
178
  "mgg/input-calendar-time",
@@ -231,7 +245,9 @@
231
245
  "mgg/places-park",
232
246
  "mgg/places-park-alt",
233
247
  "mgg/places-store-access-denied",
248
+ "mgg/pos",
234
249
  "mgg/property-owner",
250
+ "mgg/registro-imprese",
235
251
  "mgg/relevance",
236
252
  "mgg/reporting-abuse",
237
253
  "mgg/residency-permit",
@@ -320,25 +336,33 @@
320
336
  "mi/baseline/book",
321
337
  "mi/baseline/border-all",
322
338
  "mi/baseline/broken-image",
339
+ "mi/baseline/call",
323
340
  "mi/baseline/cancel",
324
341
  "mi/baseline/category",
325
342
  "mi/baseline/check-box",
326
343
  "mi/baseline/check-box-outline-blank",
327
344
  "mi/baseline/check-circle",
345
+ "mi/baseline/chevron-right",
328
346
  "mi/baseline/close",
329
347
  "mi/baseline/contrast",
330
348
  "mi/baseline/css",
331
349
  "mi/baseline/dark-mode",
350
+ "mi/baseline/delete",
332
351
  "mi/baseline/description",
352
+ "mi/baseline/desk",
333
353
  "mi/baseline/directions-run",
334
354
  "mi/baseline/directions-walk",
335
355
  "mi/baseline/done",
336
356
  "mi/baseline/downhill-skiing",
357
+ "mi/baseline/draw",
337
358
  "mi/baseline/eco",
338
359
  "mi/baseline/email",
339
360
  "mi/baseline/error",
340
361
  "mi/baseline/explore",
362
+ "mi/baseline/favorite",
363
+ "mi/baseline/favorite-border",
341
364
  "mi/baseline/file-download-done",
365
+ "mi/baseline/folder",
342
366
  "mi/baseline/folder-zip",
343
367
  "mi/baseline/horizontal-rule",
344
368
  "mi/baseline/indeterminate-check-box",
@@ -348,9 +372,12 @@
348
372
  "mi/baseline/keyboard-arrow-up",
349
373
  "mi/baseline/light-mode",
350
374
  "mi/baseline/local-activity",
375
+ "mi/baseline/location-city",
351
376
  "mi/baseline/lock-open",
352
377
  "mi/baseline/login",
353
378
  "mi/baseline/logout",
379
+ "mi/baseline/meeting-room",
380
+ "mi/baseline/more-vert",
354
381
  "mi/baseline/navigate-next",
355
382
  "mi/baseline/panorama",
356
383
  "mi/baseline/person",
@@ -360,6 +387,7 @@
360
387
  "mi/baseline/remove",
361
388
  "mi/baseline/remove-circle",
362
389
  "mi/baseline/route",
390
+ "mi/baseline/send",
363
391
  "mi/baseline/settings",
364
392
  "mi/baseline/sports",
365
393
  "mi/baseline/sports-soccer",
@@ -367,6 +395,7 @@
367
395
  "mi/baseline/terminal",
368
396
  "mi/baseline/timer",
369
397
  "mi/baseline/tv",
398
+ "mi/baseline/unfold-less",
370
399
  "mi/baseline/unfold-more",
371
400
  "mi/baseline/videocam",
372
401
  "mi/baseline/visibility",
@@ -23,6 +23,7 @@
23
23
  "mgg/adv-denied",
24
24
  "mgg/ai-brain-outline",
25
25
  "mgg/ai-brain",
26
+ "mgg/ai-human",
26
27
  "mgg/ai-message",
27
28
  "mgg/ai-outline",
28
29
  "mgg/ai-status-completed",
@@ -30,6 +31,7 @@
30
31
  "mgg/ai-status-processing",
31
32
  "mgg/ai-status-suspended",
32
33
  "mgg/alerts-pagopa",
34
+ "mgg/anagrafe-nazionale",
33
35
  "mgg/anpr",
34
36
  "mgg/ansc",
35
37
  "mgg/area-edificabile",
@@ -54,6 +56,7 @@
54
56
  "mgg/cancelled-sheet",
55
57
  "mgg/car-license",
56
58
  "mgg/card-stamping",
59
+ "mgg/cash-register-settings",
57
60
  "mgg/check-small",
58
61
  "mgg/checklist-settings",
59
62
  "mgg/checklist",
@@ -99,6 +102,8 @@
99
102
  "mgg/factory",
100
103
  "mgg/farmer",
101
104
  "mgg/field",
105
+ "mgg/file-certificate",
106
+ "mgg/file-clock",
102
107
  "mgg/file-download",
103
108
  "mgg/file-folder-tree-open",
104
109
  "mgg/file-folder-tree",
@@ -120,6 +125,7 @@
120
125
  "mgg/finance-euro-cashback",
121
126
  "mgg/fit-horizontal",
122
127
  "mgg/fit-vertical",
128
+ "mgg/fontawesome-torii-gate",
123
129
  "mgg/forwarded-with-a-single-sending",
124
130
  "mgg/fullscreen-on-alt",
125
131
  "mgg/google-book-closed-outline",
@@ -129,6 +135,7 @@
129
135
  "mgg/google-book-opening-outline",
130
136
  "mgg/google-book-opening",
131
137
  "mgg/google-check-small",
138
+ "mgg/google-drag-pan",
132
139
  "mgg/google-experiment",
133
140
  "mgg/google-face-retouching-off",
134
141
  "mgg/google-hub",
@@ -146,7 +153,9 @@
146
153
  "mgg/home-hammer",
147
154
  "mgg/home-link",
148
155
  "mgg/home-number",
156
+ "mgg/inad",
149
157
  "mgg/inagibile",
158
+ "mgg/inps",
150
159
  "mgg/input-calendar-costs",
151
160
  "mgg/input-calendar-period",
152
161
  "mgg/input-calendar-time",
@@ -219,7 +228,9 @@
219
228
  "mgg/places-park-alt",
220
229
  "mgg/places-park",
221
230
  "mgg/places-store-access-denied",
231
+ "mgg/pos",
222
232
  "mgg/property-owner",
233
+ "mgg/registro-imprese",
223
234
  "mgg/relevance",
224
235
  "mgg/reporting-abuse",
225
236
  "mgg/residency-permit",
@@ -0,0 +1,44 @@
1
+ {
2
+ "appleDiskImage": "Εικόνα δίσκου Apple",
3
+ "certificateTSD": "Πιστοποιητικό χρονικής σήμανσης",
4
+ "compressedArchive": "Συμπιεσμένο αρχείο",
5
+ "compressedAudio": "Συμπιεσμένος ήχος",
6
+ "compressedDocumentMS": "Συμπιεσμένο έγγραφο Microsoft Word",
7
+ "compressedImage": "Συμπιεσμένη εικόνα",
8
+ "dart": "Αρχείο Dart",
9
+ "documentAdobe": "Έγγραφο Adobe",
10
+ "documentDigitalSingnature": "Έγγραφο με ψηφιακή υπογραφή",
11
+ "documentLO": "Έγγραφο LibreOffice",
12
+ "documentMS": "Έγγραφο Microsoft Word",
13
+ "documentRTF": "Έγγραφο μορφής εμπλουτισμένου κειμένου",
14
+ "documentTXT": "Απλό έγγραφο κειμένου",
15
+ "documentWeb": "Ιστοσελίδα",
16
+ "email": "Ηλεκτρονικό ταχυδρομείο",
17
+ "extensibleMarkupLanguage": "Γλώσσα σήμανσης για δεδομένα",
18
+ "fileAI": "Διανυσματικό αρχείο Adobe Illustrator",
19
+ "fileDB": "Αρχείο βάσης δεδομένων",
20
+ "fileEPS": "Διανυσματικό αρχείο Corel Draw",
21
+ "fileEXE": "Εκτελέσιμο αρχείο Windows",
22
+ "fileJS": "Αρχείο JavaScript",
23
+ "fileJSON": "Αρχείο JavaScript Object Notation",
24
+ "filePHP": "Αρχείο Hypertext Preprocessor",
25
+ "fileSASS": "Αρχείο Syntactically Awesome StyleSheets",
26
+ "fileTS": "Αρχείο TypeScript",
27
+ "fileTSX": "Αρχείο TypeScript Extended Syntax",
28
+ "imageHEIC": "Μορφή αρχείου εικόνας υψηλής αποδοτικότητας",
29
+ "imagePNG": "Εικόνα Portable Network Graphics",
30
+ "imageSVG": "Διανυσματική εικόνα Scalable Vector Graphics",
31
+ "imageTIFF": "Εικόνα Tag Image File Format",
32
+ "imageWEBP": "Εικόνα Google Web Picture",
33
+ "objectLinkingAndEmbedding": "Σύνδεση και ενσωμάτωση αντικειμένων",
34
+ "openDocumentFormat": "Έγγραφο OpenDocument",
35
+ "slideLO": "Διαφάνεια παρουσίασης LibreOffice",
36
+ "slidePowerPoint": "Διαφάνεια παρουσίασης PowerPoint",
37
+ "spreadsheetLO": "Υπολογιστικό φύλλο LibreOffice",
38
+ "spreadsheetMS": "Υπολογιστικό φύλλο Microsoft Office",
39
+ "uncompressedArchive": "Μη συμπιεσμένο αρχείο",
40
+ "uncompressedAudio": "Μη συμπιεσμένος ήχος",
41
+ "unknown": "Άγνωστη μορφή αρχείου",
42
+ "videoHD": "Βίντεο υψηλής ανάλυσης",
43
+ "videoSD": "Βίντεο χαμηλής ανάλυσης"
44
+ }
@@ -0,0 +1,44 @@
1
+ {
2
+ "appleDiskImage": "Apple Disk Image",
3
+ "certificateTSD": "Timestamp Certificate",
4
+ "compressedArchive": "Compressed Archive",
5
+ "compressedAudio": "Compressed Audio",
6
+ "compressedDocumentMS": "Compressed Microsoft Word Document",
7
+ "compressedImage": "Compressed Image",
8
+ "dart": "Dart File",
9
+ "documentAdobe": "Adobe Document",
10
+ "documentDigitalSingnature": "Document with digital signature",
11
+ "documentLO": "LibreOffice Document",
12
+ "documentMS": "Microsoft Word Document",
13
+ "documentRTF": "Rich Text Format Document",
14
+ "documentTXT": "Plain Text Document",
15
+ "documentWeb": "Web Page",
16
+ "email": "E-mail",
17
+ "extensibleMarkupLanguage": "Markup language for data",
18
+ "fileAI": "Adobe Illustrator Vector File",
19
+ "fileDB": "Database File",
20
+ "fileEPS": "Corel Draw Vector File",
21
+ "fileEXE": "Windows Executable File",
22
+ "fileJS": "JavaScript File",
23
+ "fileJSON": "JavaScript Object Notation File",
24
+ "filePHP": "Hypertext Preprocessor File",
25
+ "fileSASS": "Syntactically Awesome StyleSheets File",
26
+ "fileTS": "TypeScript File",
27
+ "fileTSX": "TypeScript Extended Syntax File",
28
+ "imageHEIC": "High Efficiency Image File Format",
29
+ "imagePNG": "Portable Network Graphics Image",
30
+ "imageSVG": "Scalable Vector Graphics Image",
31
+ "imageTIFF": "Tag Image File Format Image",
32
+ "imageWEBP": "Google Web Picture Image",
33
+ "objectLinkingAndEmbedding": "Object Linking and Embedding",
34
+ "openDocumentFormat": "OpenDocument Document",
35
+ "slideLO": "LibreOffice Presentation Slide",
36
+ "slidePowerPoint": "PowerPoint Presentation Slide",
37
+ "spreadsheetLO": "LibreOffice Spreadsheet",
38
+ "spreadsheetMS": "Microsoft Office Spreadsheet",
39
+ "uncompressedArchive": "Uncompressed Archive",
40
+ "uncompressedAudio": "Uncompressed Audio",
41
+ "unknown": "Unknown File Format",
42
+ "videoHD": "High Definition Video",
43
+ "videoSD": "Standard Definition Video"
44
+ }
@@ -0,0 +1,44 @@
1
+ {
2
+ "appleDiskImage": "Imagen de disco Apple",
3
+ "certificateTSD": "Certificado de sello de tiempo",
4
+ "compressedArchive": "Archivo comprimido",
5
+ "compressedAudio": "Audio comprimido",
6
+ "compressedDocumentMS": "Documento comprimido de Microsoft Word",
7
+ "compressedImage": "Imagen comprimida",
8
+ "dart": "Archivo Dart",
9
+ "documentAdobe": "Documento Adobe",
10
+ "documentDigitalSingnature": "Documento con firma digital",
11
+ "documentLO": "Documento de LibreOffice",
12
+ "documentMS": "Documento de Microsoft Word",
13
+ "documentRTF": "Documento de formato de texto enriquecido",
14
+ "documentTXT": "Documento de texto sin formato",
15
+ "documentWeb": "Página web",
16
+ "email": "Correo electrónico",
17
+ "extensibleMarkupLanguage": "Lenguaje de marcado para datos",
18
+ "fileAI": "Archivo vectorial de Adobe Illustrator",
19
+ "fileDB": "Archivo de base de datos",
20
+ "fileEPS": "Archivo vectorial de Corel Draw",
21
+ "fileEXE": "Archivo ejecutable de Windows",
22
+ "fileJS": "Archivo JavaScript",
23
+ "fileJSON": "Archivo de notación de objetos de JavaScript",
24
+ "filePHP": "Archivo de preprocesador de hipertexto",
25
+ "fileSASS": "Archivo de Syntactically Awesome StyleSheets",
26
+ "fileTS": "Archivo TypeScript",
27
+ "fileTSX": "Archivo de sintaxis extendida de TypeScript",
28
+ "imageHEIC": "Formato de archivo de imagen de alta eficiencia",
29
+ "imagePNG": "Imagen Portable Network Graphics",
30
+ "imageSVG": "Imagen de gráficos vectoriales escalables",
31
+ "imageTIFF": "Imagen de formato de archivo de imagen etiquetado",
32
+ "imageWEBP": "Imagen Google Web Picture",
33
+ "objectLinkingAndEmbedding": "Vinculación e incrustación de objetos",
34
+ "openDocumentFormat": "Documento OpenDocument",
35
+ "slideLO": "Diapositiva de presentación de LibreOffice",
36
+ "slidePowerPoint": "Diapositiva de presentación de PowerPoint",
37
+ "spreadsheetLO": "Hoja de cálculo de LibreOffice",
38
+ "spreadsheetMS": "Hoja de cálculo de Microsoft Office",
39
+ "uncompressedArchive": "Archivo no comprimido",
40
+ "uncompressedAudio": "Audio no comprimido",
41
+ "unknown": "Formato de archivo desconocido",
42
+ "videoHD": "Video de alta definición",
43
+ "videoSD": "Video de definición estándar"
44
+ }