@maggioli-design-system/mds-table-row 4.7.0 → 4.8.0

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 (108) hide show
  1. package/dist/cjs/{index-97006570.js → index-6ff13374.js} +45 -7
  2. package/dist/cjs/loader.cjs.js +2 -2
  3. package/dist/cjs/mds-table-row.cjs.entry.js +17 -3
  4. package/dist/cjs/mds-table-row.cjs.js +3 -3
  5. package/dist/collection/collection-manifest.json +2 -2
  6. package/dist/collection/common/aria.js +17 -1
  7. package/dist/collection/common/device.js +6 -0
  8. package/dist/collection/common/keyboard-manager.js +2 -2
  9. package/dist/collection/common/locale.js +17 -5
  10. package/dist/collection/components/mds-table-row/mds-table-row.css +57 -252
  11. package/dist/collection/components/mds-table-row/mds-table-row.js +26 -1
  12. package/dist/collection/dictionary/button.js +1 -0
  13. package/dist/collection/dictionary/file-extensions.js +114 -56
  14. package/dist/collection/dictionary/text.js +60 -1
  15. package/dist/collection/dictionary/variant.js +10 -1
  16. package/dist/collection/type/variant-file-format.js +0 -34
  17. package/dist/components/mds-table-row.js +18 -3
  18. package/dist/documentation.json +24 -3
  19. package/dist/esm/{index-ac4b33c0.js → index-0a14d3b4.js} +45 -8
  20. package/dist/esm/loader.js +3 -3
  21. package/dist/esm/mds-table-row.entry.js +17 -3
  22. package/dist/esm/mds-table-row.js +4 -4
  23. package/dist/esm-es5/index-0a14d3b4.js +1 -0
  24. package/dist/esm-es5/loader.js +1 -1
  25. package/dist/esm-es5/mds-table-row.entry.js +1 -1
  26. package/dist/esm-es5/mds-table-row.js +1 -1
  27. package/dist/mds-table-row/mds-table-row.esm.js +1 -1
  28. package/dist/mds-table-row/mds-table-row.js +1 -1
  29. package/dist/mds-table-row/p-25a5e94e.system.js +1 -0
  30. package/dist/mds-table-row/p-33796315.entry.js +1 -0
  31. package/dist/mds-table-row/p-580bb30b.system.js +2 -0
  32. package/dist/mds-table-row/p-60aa058b.js +2 -0
  33. package/dist/mds-table-row/p-cca5599e.system.entry.js +1 -0
  34. package/dist/stats.json +84 -43
  35. package/dist/types/common/aria.d.ts +3 -1
  36. package/dist/types/common/date.d.ts +1 -1
  37. package/dist/types/common/device.d.ts +2 -0
  38. package/dist/types/common/file.d.ts +3 -4
  39. package/dist/types/common/locale.d.ts +3 -1
  40. package/dist/types/components/mds-table-row/mds-table-row.d.ts +4 -0
  41. package/dist/types/components.d.ts +2 -0
  42. package/dist/types/dictionary/file-extensions.d.ts +2 -1
  43. package/dist/types/dictionary/text.d.ts +3 -1
  44. package/dist/types/dictionary/variant.d.ts +2 -1
  45. package/dist/types/stencil-public-runtime.d.ts +6 -0
  46. package/dist/types/type/autocomplete.d.ts +1 -1
  47. package/dist/types/type/button.d.ts +1 -1
  48. package/dist/types/type/header-bar.d.ts +2 -0
  49. package/dist/types/type/input.d.ts +3 -0
  50. package/dist/types/type/text.d.ts +2 -0
  51. package/dist/types/type/variant-file-format.d.ts +4 -4
  52. package/dist/types/type/variant.d.ts +2 -1
  53. package/documentation.json +65 -34
  54. package/package.json +5 -5
  55. package/readme.md +5 -4
  56. package/src/common/aria.ts +22 -2
  57. package/src/common/device.ts +9 -0
  58. package/src/common/file.ts +2 -3
  59. package/src/common/keyboard-manager.ts +2 -2
  60. package/src/common/locale.ts +20 -6
  61. package/src/common/unit.ts +1 -1
  62. package/src/components/mds-table-row/.gitlab-ci.yml +5 -10
  63. package/src/components/mds-table-row/mds-table-row.css +60 -0
  64. package/src/components/mds-table-row/mds-table-row.tsx +19 -1
  65. package/src/components/mds-table-row/readme.md +4 -3
  66. package/src/components.d.ts +2 -0
  67. package/src/dictionary/button.ts +1 -0
  68. package/src/dictionary/file-extensions.ts +118 -57
  69. package/src/dictionary/text.ts +64 -0
  70. package/src/dictionary/variant.ts +11 -0
  71. package/src/fixtures/icons.json +20 -2
  72. package/src/fixtures/iconsauce.json +12 -0
  73. package/src/meta/file-format/locale.el.json +39 -0
  74. package/src/meta/file-format/locale.en.json +39 -0
  75. package/src/meta/file-format/locale.es.json +39 -0
  76. package/src/meta/file-format/locale.it.json +39 -0
  77. package/src/tailwind/components.css +1 -1
  78. package/src/type/autocomplete.ts +0 -1
  79. package/src/type/button.ts +1 -0
  80. package/src/type/header-bar.ts +11 -0
  81. package/src/type/input.ts +4 -0
  82. package/src/type/text.ts +59 -0
  83. package/src/type/variant-file-format.ts +20 -37
  84. package/src/type/variant.ts +9 -1
  85. package/www/build/mds-table-row.esm.js +1 -1
  86. package/www/build/mds-table-row.js +1 -1
  87. package/www/build/p-25a5e94e.system.js +1 -0
  88. package/www/build/p-33796315.entry.js +1 -0
  89. package/www/build/p-580bb30b.system.js +2 -0
  90. package/www/build/p-60aa058b.js +2 -0
  91. package/www/build/p-cca5599e.system.entry.js +1 -0
  92. package/dist/collection/type/language.js +0 -1
  93. package/dist/esm-es5/index-ac4b33c0.js +0 -1
  94. package/dist/mds-table-row/p-0a6d4960.js +0 -2
  95. package/dist/mds-table-row/p-11e2454f.system.js +0 -1
  96. package/dist/mds-table-row/p-bc92b059.system.js +0 -2
  97. package/dist/mds-table-row/p-cb00bcd8.entry.js +0 -1
  98. package/dist/mds-table-row/p-e2d6387e.system.entry.js +0 -1
  99. package/dist/types/interface/input-value.d.ts +0 -4
  100. package/dist/types/type/language.d.ts +0 -2
  101. package/src/interface/input-value.ts +0 -5
  102. package/src/type/language.ts +0 -8
  103. package/www/build/p-0a6d4960.js +0 -2
  104. package/www/build/p-11e2454f.system.js +0 -1
  105. package/www/build/p-bc92b059.system.js +0 -2
  106. package/www/build/p-cb00bcd8.entry.js +0 -1
  107. package/www/build/p-e2d6387e.system.entry.js +0 -1
  108. /package/dist/collection/{interface/input-value.js → type/header-bar.js} +0 -0
@@ -1,72 +1,133 @@
1
+ import { FileFormat } from '@type/variant-file-format'
2
+
1
3
  interface FileExtenstion {
2
4
  [key: string]: ExtensionInfo
3
5
  }
4
6
 
5
7
  interface ExtensionInfo {
6
8
  preview?: boolean
7
- format: string
9
+ format: FileFormat
8
10
  description: string
9
11
  }
10
12
 
11
13
  const fileExtensionsDictionary: FileExtenstion = {
12
- '7z': { format: 'archive', description: 'Archivio compresso' },
13
- ace: { format: 'archive', description: 'Archivio compresso' },
14
- ai: { format: 'vector', description: 'Vettoriale Adobe Illustrator' },
15
- dart: { format: 'code', description: 'Dart' },
16
- db: { format: 'data', description: 'File di database' },
17
- default: { format: 'attachment', description: 'Formato sconosciuto' },
18
- dmg: { format: 'executable', description: 'Apple Disk Image' },
19
- doc: { format: 'text', description: 'Documento Microsoft Word' },
20
- docm: { format: 'text', description: 'Documento Microsoft Word' },
21
- docx: { format: 'text', description: 'Documento Microsoft Word Compresso' },
22
- eml: { format: 'email', description: 'E-mail di posta elettronica' },
23
- eps: { format: 'vector', description: 'Vettoriale Corel Draw' },
24
- exe: { format: 'executable', description: 'File eseguibile Windows' },
25
- flac: { format: 'audio', description: 'Audio non compresso' },
26
- gif: { format: 'image', description: 'Immagine compressa', preview: true },
27
- htm: { format: 'markup', description: 'Pagina web' },
28
- heic: { format: 'image', description: 'High Efficiency Image File Format' },
29
- html: { format: 'markup', description: 'Pagina web' },
30
- jpe: { format: 'image', description: 'Immagine compressa', preview: true },
31
- jpeg: { format: 'image', description: 'Immagine compressa', preview: true },
32
- jpg: { format: 'image', description: 'Immagine compressa', preview: true },
33
- js: { format: 'code', description: 'JavaScript' },
34
- json: { format: 'data', description: 'JavaScript Object Notation' },
35
- jsx: { format: 'code', description: 'JavaScript' },
36
- m2v: { format: 'video', description: 'Filmato SD' },
37
- mp2: { format: 'audio', description: 'Audio compresso' },
38
- mp3: { format: 'audio', description: 'Audio compresso' },
39
- mp4: { format: 'video', description: 'Filmato HD' },
40
- mp4v: { format: 'video', description: 'Filmato HD' },
41
- mpeg: { format: 'video', description: 'Filmato SD' },
42
- mpg4: { format: 'video', description: 'Filmato SD' },
43
- mpg: { format: 'video', description: 'Filmato SD' },
44
- mpga: { format: 'audio', description: 'Audio compresso' },
45
- odp: { format: 'slide', description: 'Slide di presentazione LibreOffice' },
46
- ods: { format: 'spreadsheet', description: 'Foglio di calcolo LibreOffice' },
47
- odt: { format: 'text', description: 'File di testo LibreOffice' },
48
- pdf: { format: 'document', description: 'Documento Adobe' },
49
- php: { format: 'code', description: 'Hypertext Preprocessor' },
50
- png: { format: 'image', description: 'Immagine Portable Network Graphics', preview: true },
51
- ppt: { format: 'slide', description: 'Slide di presentazione PowerPoint' },
52
- rar: { format: 'archive', description: 'Archivio compresso' },
53
- rtf: { format: 'text', description: 'Documento di testo Rich Text Format' },
54
- sass: { format: 'code', description: 'Syntactically Awesome StyleSheets' },
55
- shtml: { format: 'markup', description: 'Pagina web' },
56
- svg: { format: 'vector', description: 'Scalable Vector Graphics', preview: true },
57
- tar: { format: 'archive', description: 'Archivio non compresso' },
58
- tiff: { format: 'image', description: 'Tag Image File Format' },
59
- ts: { format: 'code', description: 'TypeScript' },
60
- tsx: { format: 'code', description: 'TypeScript Extended Syntax' },
61
- txt: { format: 'text', description: 'Documento di testo non formattato' },
62
- wav: { format: 'audio', description: 'Audio non compresso' },
63
- webp: { format: 'image', description: 'Immagine Web Picture', preview: true },
64
- xar: { format: 'archive', description: 'Archivio compresso' },
65
- xls: { format: 'spreadsheet', description: 'Foglio di calcolo Office' },
66
- xlsx: { format: 'spreadsheet', description: 'Foglio di calcolo Office' },
67
- 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
+ htm: { format: 'markup', description: 'documentWeb' },
30
+ heic: { format: 'image', description: 'imageHEFF' },
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
+ odp: { format: 'slide', description: 'slideLO' },
48
+ ods: { format: 'spreadsheet', description: 'spreadsheetLO' },
49
+ odt: { format: 'text', description: 'documentLO' },
50
+ pdf: { format: 'document', description: 'documentAdobe' },
51
+ php: { format: 'code', description: 'filePHP' },
52
+ png: { format: 'image', description: 'imagePNG', preview: true },
53
+ ppt: { format: 'slide', description: 'slidePowerPoint' },
54
+ rar: { format: 'archive', description: 'compressedArchive' },
55
+ rtf: { format: 'text', description: 'documentRTF' },
56
+ sass: { format: 'code', description: 'fileSASS' },
57
+ shtml: { format: 'markup', description: 'documentWeb' },
58
+ svg: { format: 'vector', description: 'imageSVG', preview: true },
59
+ tar: { format: 'archive', description: 'uncompressedArchive' },
60
+ tiff: { format: 'image', description: 'imageTIFF' },
61
+ ts: { format: 'code', description: 'fileTS' },
62
+ tsx: { format: 'code', description: 'fileTSX' },
63
+ txt: { format: 'text', description: 'documentTXT' },
64
+ wav: { format: 'audio', description: 'uncompressedAudio' },
65
+ webp: { format: 'image', description: 'imageWEBP', preview: true },
66
+ xar: { format: 'archive', description: 'compressedArchive' },
67
+ xls: { format: 'spreadsheet', description: 'spreadsheetMS' },
68
+ xlsx: { format: 'spreadsheet', description: 'spreadsheetMS' },
69
+ zip: { format: 'archive', description: 'compressedArchive' },
68
70
  }
69
71
 
72
+ // const fileExtensionsDictionary: FileExtenstion = {
73
+ // '7z': { format: 'archive', description: 'Archivio compresso' },
74
+ // ace: { format: 'archive', description: 'Archivio compresso' },
75
+ // ai: { format: 'vector', description: 'Vettoriale Adobe Illustrator' },
76
+ // dart: { format: 'code', description: 'Dart' },
77
+ // db: { format: 'data', description: 'File di database' },
78
+ // default: { format: 'attachment', description: 'Formato sconosciuto' },
79
+ // dmg: { format: 'executable', description: 'Apple Disk Image' },
80
+ // doc: { format: 'text', description: 'Documento Microsoft Word' },
81
+ // docm: { format: 'text', description: 'Documento Microsoft Word' },
82
+ // docx: { format: 'text', description: 'Documento Microsoft Word Compresso' },
83
+ // eml: { format: 'email', description: 'E-mail di posta elettronica' },
84
+ // eps: { format: 'vector', description: 'Vettoriale Corel Draw' },
85
+ // exe: { format: 'executable', description: 'File eseguibile Windows' },
86
+ // flac: { format: 'audio', description: 'Audio non compresso' },
87
+ // gif: { format: 'image', description: 'Immagine compressa', preview: true },
88
+ // htm: { format: 'markup', description: 'Pagina web' },
89
+ // heic: { format: 'image', description: 'High Efficiency Image File Format' },
90
+ // html: { format: 'markup', description: 'Pagina web' },
91
+ // jpe: { format: 'image', description: 'Immagine compressa', preview: true },
92
+ // jpeg: { format: 'image', description: 'Immagine compressa', preview: true },
93
+ // jpg: { format: 'image', description: 'Immagine compressa', preview: true },
94
+ // js: { format: 'code', description: 'JavaScript' },
95
+ // json: { format: 'data', description: 'JavaScript Object Notation' },
96
+ // jsx: { format: 'code', description: 'JavaScript' },
97
+ // m2v: { format: 'video', description: 'Filmato SD' },
98
+ // mp2: { format: 'audio', description: 'Audio compresso' },
99
+ // mp3: { format: 'audio', description: 'Audio compresso' },
100
+ // mp4: { format: 'video', description: 'Filmato HD' },
101
+ // mp4v: { format: 'video', description: 'Filmato HD' },
102
+ // mpeg: { format: 'video', description: 'Filmato SD' },
103
+ // mpg4: { format: 'video', description: 'Filmato SD' },
104
+ // mpg: { format: 'video', description: 'Filmato SD' },
105
+ // mpga: { format: 'audio', description: 'Audio compresso' },
106
+ // odp: { format: 'slide', description: 'Slide di presentazione LibreOffice' },
107
+ // ods: { format: 'spreadsheet', description: 'Foglio di calcolo LibreOffice' },
108
+ // odt: { format: 'text', description: 'File di testo LibreOffice' },
109
+ // pdf: { format: 'document', description: 'Documento Adobe' },
110
+ // php: { format: 'code', description: 'Hypertext Preprocessor' },
111
+ // png: { format: 'image', description: 'Immagine Portable Network Graphics', preview: true },
112
+ // ppt: { format: 'slide', description: 'Slide di presentazione PowerPoint' },
113
+ // rar: { format: 'archive', description: 'Archivio compresso' },
114
+ // rtf: { format: 'text', description: 'Documento di testo Rich Text Format' },
115
+ // sass: { format: 'code', description: 'Syntactically Awesome StyleSheets' },
116
+ // shtml: { format: 'markup', description: 'Pagina web' },
117
+ // svg: { format: 'vector', description: 'Scalable Vector Graphics', preview: true },
118
+ // tar: { format: 'archive', description: 'Archivio non compresso' },
119
+ // tiff: { format: 'image', description: 'Tag Image File Format' },
120
+ // ts: { format: 'code', description: 'TypeScript' },
121
+ // tsx: { format: 'code', description: 'TypeScript Extended Syntax' },
122
+ // txt: { format: 'text', description: 'Documento di testo non formattato' },
123
+ // wav: { format: 'audio', description: 'Audio non compresso' },
124
+ // webp: { format: 'image', description: 'Immagine Web Picture', preview: true },
125
+ // xar: { format: 'archive', description: 'Archivio compresso' },
126
+ // xls: { format: 'spreadsheet', description: 'Foglio di calcolo Office' },
127
+ // xlsx: { format: 'spreadsheet', description: 'Foglio di calcolo Office' },
128
+ // zip: { format: 'archive', description: 'Archivio compresso' },
129
+ // }
130
+
70
131
  const genericMimeToExt: Map<string, string[]> = new Map([
71
132
  ['image', ['.png', '.jpg', '.jpeg', '.tiff', '.webp', '.jpe', '.gif', '.heic']],
72
133
  ['audio', ['.mp2', '.mp3', '.mpga', '.wav', '.flac']],
@@ -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
  }
@@ -77,6 +77,16 @@ const toneVariantDictionary = [
77
77
  'quiet',
78
78
  ]
79
79
 
80
+ const themeVariantChipDictionary = [
81
+ 'primary',
82
+ 'secondary',
83
+ 'dark',
84
+ 'error',
85
+ 'info',
86
+ 'success',
87
+ 'warning',
88
+ ]
89
+
80
90
  const toneActionVariantDictionary = [
81
91
  'primary',
82
92
  'secondary',
@@ -110,6 +120,7 @@ export {
110
120
  themeLuminanceVariantDictionary,
111
121
  themeStatusVariantDictionary,
112
122
  themeVariantDictionary,
123
+ themeVariantChipDictionary,
113
124
  toneActionVariantDictionary,
114
125
  toneMinimalVariantDictionary,
115
126
  toneSimpleVariantDictionary,
@@ -35,6 +35,7 @@
35
35
  "mgg/adv-denied",
36
36
  "mgg/ai-brain",
37
37
  "mgg/ai-brain-outline",
38
+ "mgg/ai-human",
38
39
  "mgg/ai-message",
39
40
  "mgg/ai-outline",
40
41
  "mgg/ai-status-completed",
@@ -42,6 +43,7 @@
42
43
  "mgg/ai-status-processing",
43
44
  "mgg/ai-status-suspended",
44
45
  "mgg/alerts-pagopa",
46
+ "mgg/anpr",
45
47
  "mgg/ansc",
46
48
  "mgg/area-edificabile",
47
49
  "mgg/area-weather",
@@ -110,6 +112,8 @@
110
112
  "mgg/factory",
111
113
  "mgg/farmer",
112
114
  "mgg/field",
115
+ "mgg/file-certificate",
116
+ "mgg/file-clock",
113
117
  "mgg/file-download",
114
118
  "mgg/file-folder-tree",
115
119
  "mgg/file-folder-tree-open",
@@ -131,6 +135,7 @@
131
135
  "mgg/finance-euro-cashback",
132
136
  "mgg/fit-horizontal",
133
137
  "mgg/fit-vertical",
138
+ "mgg/fontawesome-torii-gate",
134
139
  "mgg/forwarded-with-a-single-sending",
135
140
  "mgg/fullscreen-on-alt",
136
141
  "mgg/google-book-closed",
@@ -140,6 +145,7 @@
140
145
  "mgg/google-book-opening",
141
146
  "mgg/google-book-opening-outline",
142
147
  "mgg/google-check-small",
148
+ "mgg/google-drag-pan",
143
149
  "mgg/google-experiment",
144
150
  "mgg/google-face-retouching-off",
145
151
  "mgg/google-hub",
@@ -176,6 +182,10 @@
176
182
  "mgg/logo-ilibro",
177
183
  "mgg/map-marker-settings",
178
184
  "mgg/masks-office",
185
+ "mgg/mdi-binoculars",
186
+ "mgg/mdi-graph-outline",
187
+ "mgg/mdi-microscope",
188
+ "mgg/mdi-telescope",
179
189
  "mgg/military-draft",
180
190
  "mgg/money-bag-settings",
181
191
  "mgg/money-on-hand",
@@ -251,6 +261,7 @@
251
261
  "mgg/subtractive-permission",
252
262
  "mgg/tea-light",
253
263
  "mgg/terminal",
264
+ "mgg/tie",
254
265
  "mgg/to-single-document",
255
266
  "mgg/to-stacked-documents",
256
267
  "mgg/todo",
@@ -293,6 +304,7 @@
293
304
  "mgg/user-substitution",
294
305
  "mgg/view-chart-gantt",
295
306
  "mgg/view-side-by-side",
307
+ "mgg/vote",
296
308
  "mgg/warning-superscript",
297
309
  "mgg/web-app-ansc",
298
310
  "mgg/work-book",
@@ -313,6 +325,7 @@
313
325
  "mi/baseline/book",
314
326
  "mi/baseline/border-all",
315
327
  "mi/baseline/broken-image",
328
+ "mi/baseline/call",
316
329
  "mi/baseline/cancel",
317
330
  "mi/baseline/category",
318
331
  "mi/baseline/check-box",
@@ -322,7 +335,10 @@
322
335
  "mi/baseline/contrast",
323
336
  "mi/baseline/css",
324
337
  "mi/baseline/dark-mode",
338
+ "mi/baseline/delete",
325
339
  "mi/baseline/description",
340
+ "mi/baseline/directions-run",
341
+ "mi/baseline/directions-walk",
326
342
  "mi/baseline/done",
327
343
  "mi/baseline/downhill-skiing",
328
344
  "mi/baseline/eco",
@@ -331,7 +347,6 @@
331
347
  "mi/baseline/explore",
332
348
  "mi/baseline/file-download-done",
333
349
  "mi/baseline/folder-zip",
334
- "mi/baseline/groups",
335
350
  "mi/baseline/horizontal-rule",
336
351
  "mi/baseline/indeterminate-check-box",
337
352
  "mi/baseline/info",
@@ -352,7 +367,11 @@
352
367
  "mi/baseline/remove",
353
368
  "mi/baseline/remove-circle",
354
369
  "mi/baseline/route",
370
+ "mi/baseline/send",
355
371
  "mi/baseline/settings",
372
+ "mi/baseline/sports",
373
+ "mi/baseline/sports-soccer",
374
+ "mi/baseline/stadium",
356
375
  "mi/baseline/terminal",
357
376
  "mi/baseline/timer",
358
377
  "mi/baseline/tv",
@@ -371,7 +390,6 @@
371
390
  "mi/outline/schedule",
372
391
  "mi/round/arrow-circle-down",
373
392
  "mi/round/email",
374
- "mi/round/groups",
375
393
  "mi/round/menu",
376
394
  "mi/round/more-vert",
377
395
  "mi/round/person"
@@ -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/anpr",
33
35
  "mgg/ansc",
34
36
  "mgg/area-edificabile",
35
37
  "mgg/area-weather",
@@ -98,6 +100,8 @@
98
100
  "mgg/factory",
99
101
  "mgg/farmer",
100
102
  "mgg/field",
103
+ "mgg/file-certificate",
104
+ "mgg/file-clock",
101
105
  "mgg/file-download",
102
106
  "mgg/file-folder-tree-open",
103
107
  "mgg/file-folder-tree",
@@ -119,6 +123,7 @@
119
123
  "mgg/finance-euro-cashback",
120
124
  "mgg/fit-horizontal",
121
125
  "mgg/fit-vertical",
126
+ "mgg/fontawesome-torii-gate",
122
127
  "mgg/forwarded-with-a-single-sending",
123
128
  "mgg/fullscreen-on-alt",
124
129
  "mgg/google-book-closed-outline",
@@ -128,6 +133,7 @@
128
133
  "mgg/google-book-opening-outline",
129
134
  "mgg/google-book-opening",
130
135
  "mgg/google-check-small",
136
+ "mgg/google-drag-pan",
131
137
  "mgg/google-experiment",
132
138
  "mgg/google-face-retouching-off",
133
139
  "mgg/google-hub",
@@ -164,6 +170,10 @@
164
170
  "mgg/logo-ilibro",
165
171
  "mgg/map-marker-settings",
166
172
  "mgg/masks-office",
173
+ "mgg/mdi-binoculars",
174
+ "mgg/mdi-graph-outline",
175
+ "mgg/mdi-microscope",
176
+ "mgg/mdi-telescope",
167
177
  "mgg/military-draft",
168
178
  "mgg/money-bag-settings",
169
179
  "mgg/money-on-hand",
@@ -239,6 +249,7 @@
239
249
  "mgg/subtractive-permission",
240
250
  "mgg/tea-light",
241
251
  "mgg/terminal",
252
+ "mgg/tie",
242
253
  "mgg/to-single-document",
243
254
  "mgg/to-stacked-documents",
244
255
  "mgg/todo-action-businessman-view",
@@ -281,6 +292,7 @@
281
292
  "mgg/user-substitution",
282
293
  "mgg/view-chart-gantt",
283
294
  "mgg/view-side-by-side",
295
+ "mgg/vote",
284
296
  "mgg/warning-superscript",
285
297
  "mgg/web-app-ansc",
286
298
  "mgg/work-book"
@@ -0,0 +1,39 @@
1
+ {
2
+ "appleDiskImage": "Εικόνα δίσκου Apple",
3
+ "compressedArchive": "Συμπιεσμένο αρχείο",
4
+ "uncompressedArchive": "Μη συμπιεσμένο αρχείο",
5
+ "compressedAudio": "Συμπιεσμένος ήχος",
6
+ "uncompressedAudio": "Μη συμπιεσμένος ήχος",
7
+ "dart": "Αρχείο Dart",
8
+ "documentAdobe": "Έγγραφο Adobe",
9
+ "compressedDocumentMS": "Συμπιεσμένο έγγραφο Microsoft Word",
10
+ "documentMS": "Έγγραφο Microsoft Word",
11
+ "documentRTF": "Έγγραφο μορφής εμπλουτισμένου κειμένου",
12
+ "documentTXT": "Απλό έγγραφο κειμένου",
13
+ "email": "Ηλεκτρονικό ταχυδρομείο",
14
+ "fileDB": "Αρχείο βάσης δεδομένων",
15
+ "documentLO": "Έγγραφο LibreOffice",
16
+ "fileEXE": "Εκτελέσιμο αρχείο Windows",
17
+ "videoHD": "Βίντεο υψηλής ανάλυσης",
18
+ "videoSD": "Βίντεο χαμηλής ανάλυσης",
19
+ "spreadsheetLO": "Υπολογιστικό φύλλο LibreOffice",
20
+ "spreadsheetMS": "Υπολογιστικό φύλλο Microsoft Office",
21
+ "unknown": "Άγνωστη μορφή αρχείου",
22
+ "imageHEIC": "Μορφή αρχείου εικόνας υψηλής αποδοτικότητας",
23
+ "filePHP": "Αρχείο Hypertext Preprocessor",
24
+ "imagePNG": "Εικόνα Portable Network Graphics",
25
+ "imageWEBP": "Εικόνα Google Web Picture",
26
+ "compressedImage": "Συμπιεσμένη εικόνα",
27
+ "fileJSON": "Αρχείο JavaScript Object Notation",
28
+ "fileJS": "Αρχείο JavaScript",
29
+ "documentWeb": "Ιστοσελίδα",
30
+ "imageSVG": "Διανυσματική εικόνα Scalable Vector Graphics",
31
+ "slideLO": "Διαφάνεια παρουσίασης LibreOffice",
32
+ "slidePowerPoint": "Διαφάνεια παρουσίασης PowerPoint",
33
+ "fileSASS": "Αρχείο Syntactically Awesome StyleSheets",
34
+ "imageTIFF": "Εικόνα Tag Image File Format",
35
+ "fileTSX": "Αρχείο TypeScript Extended Syntax",
36
+ "fileTS": "Αρχείο TypeScript",
37
+ "fileAI": "Διανυσματικό αρχείο Adobe Illustrator",
38
+ "fileEPS": "Διανυσματικό αρχείο Corel Draw"
39
+ }
@@ -0,0 +1,39 @@
1
+ {
2
+ "appleDiskImage": "Apple Disk Image",
3
+ "compressedArchive": "Compressed Archive",
4
+ "uncompressedArchive": "Uncompressed Archive",
5
+ "compressedAudio": "Compressed Audio",
6
+ "uncompressedAudio": "Uncompressed Audio",
7
+ "dart": "Dart File",
8
+ "documentAdobe": "Adobe Document",
9
+ "compressedDocumentMS": "Compressed Microsoft Word Document",
10
+ "documentMS": "Microsoft Word Document",
11
+ "documentRTF": "Rich Text Format Document",
12
+ "documentTXT": "Plain Text Document",
13
+ "email": "E-mail",
14
+ "fileDB": "Database File",
15
+ "documentLO": "LibreOffice Document",
16
+ "fileEXE": "Windows Executable File",
17
+ "videoHD": "High Definition Video",
18
+ "videoSD": "Standard Definition Video",
19
+ "spreadsheetLO": "LibreOffice Spreadsheet",
20
+ "spreadsheetMS": "Microsoft Office Spreadsheet",
21
+ "unknown": "Unknown File Format",
22
+ "imageHEIC": "High Efficiency Image File Format",
23
+ "filePHP": "Hypertext Preprocessor File",
24
+ "imagePNG": "Portable Network Graphics Image",
25
+ "imageWEBP": "Google Web Picture Image",
26
+ "compressedImage": "Compressed Image",
27
+ "fileJSON": "JavaScript Object Notation File",
28
+ "fileJS": "JavaScript File",
29
+ "documentWeb": "Web Page",
30
+ "imageSVG": "Scalable Vector Graphics Image",
31
+ "slideLO": "LibreOffice Presentation Slide",
32
+ "slidePowerPoint": "PowerPoint Presentation Slide",
33
+ "fileSASS": "Syntactically Awesome StyleSheets File",
34
+ "imageTIFF": "Tag Image File Format Image",
35
+ "fileTSX": "TypeScript Extended Syntax File",
36
+ "fileTS": "TypeScript File",
37
+ "fileAI": "Adobe Illustrator Vector File",
38
+ "fileEPS": "Corel Draw Vector File"
39
+ }
@@ -0,0 +1,39 @@
1
+ {
2
+ "appleDiskImage": "Imagen de disco Apple",
3
+ "compressedArchive": "Archivo comprimido",
4
+ "uncompressedArchive": "Archivo no comprimido",
5
+ "compressedAudio": "Audio comprimido",
6
+ "uncompressedAudio": "Audio no comprimido",
7
+ "dart": "Archivo Dart",
8
+ "documentAdobe": "Documento Adobe",
9
+ "compressedDocumentMS": "Documento comprimido de Microsoft Word",
10
+ "documentMS": "Documento de Microsoft Word",
11
+ "documentRTF": "Documento de formato de texto enriquecido",
12
+ "documentTXT": "Documento de texto sin formato",
13
+ "email": "Correo electrónico",
14
+ "fileDB": "Archivo de base de datos",
15
+ "documentLO": "Documento de LibreOffice",
16
+ "fileEXE": "Archivo ejecutable de Windows",
17
+ "videoHD": "Video de alta definición",
18
+ "videoSD": "Video de definición estándar",
19
+ "spreadsheetLO": "Hoja de cálculo de LibreOffice",
20
+ "spreadsheetMS": "Hoja de cálculo de Microsoft Office",
21
+ "unknown": "Formato de archivo desconocido",
22
+ "imageHEIC": "Formato de archivo de imagen de alta eficiencia",
23
+ "filePHP": "Archivo de preprocesador de hipertexto",
24
+ "imagePNG": "Imagen Portable Network Graphics",
25
+ "imageWEBP": "Imagen Google Web Picture",
26
+ "compressedImage": "Imagen comprimida",
27
+ "fileJSON": "Archivo de notación de objetos de JavaScript",
28
+ "fileJS": "Archivo JavaScript",
29
+ "documentWeb": "Página web",
30
+ "imageSVG": "Imagen de gráficos vectoriales escalables",
31
+ "slideLO": "Diapositiva de presentación de LibreOffice",
32
+ "slidePowerPoint": "Diapositiva de presentación de PowerPoint",
33
+ "fileSASS": "Archivo de Syntactically Awesome StyleSheets",
34
+ "imageTIFF": "Imagen de formato de archivo de imagen etiquetado",
35
+ "fileTSX": "Archivo de sintaxis extendida de TypeScript",
36
+ "fileTS": "Archivo TypeScript",
37
+ "fileAI": "Archivo vectorial de Adobe Illustrator",
38
+ "fileEPS": "Archivo vectorial de Corel Draw"
39
+ }
@@ -0,0 +1,39 @@
1
+ {
2
+ "appleDiskImage": "Immagine Disco Apple",
3
+ "compressedArchive": "Archivio compresso",
4
+ "uncompressedArchive": "Archivio non compresso",
5
+ "compressedAudio": "Audio compresso",
6
+ "uncompressedAudio": "Audio non compresso",
7
+ "dart": "File Dart",
8
+ "documentAdobe": "Documento Adobe",
9
+ "compressedDocumentMS": "Documento di testo Microsoft Word Compresso",
10
+ "documentMS": "Documento di testo Microsoft Word",
11
+ "documentRTF": "Documento di testo Rich Text Format",
12
+ "documentTXT": "Documento di testo senza formattazione",
13
+ "email": "E-mail",
14
+ "fileDB": "File di database",
15
+ "documentLO": "Documento di testo LibreOffice",
16
+ "fileEXE": "File eseguibile Windows",
17
+ "videoHD": "Filmato HD ad alta risoluzione",
18
+ "videoSD": "Filmato SD a bassa risoluzione",
19
+ "spreadsheetLO": "Foglio di calcolo LibreOffice",
20
+ "spreadsheetMS": "Foglio di calcolo Office",
21
+ "unknown": "Formato file sconosciuto",
22
+ "imageHEIC": "High Efficiency Image File Format",
23
+ "filePHP": "File Hypertext Preprocessor",
24
+ "imagePNG": "Immagine Portable Network Graphics",
25
+ "imageWEBP": "Immagine Google Web Picture",
26
+ "compressedImage": "Immagine compressa",
27
+ "fileJSON": "File JavaScript Object Notation",
28
+ "fileJS": "File JavaScript",
29
+ "documentWeb": "Pagina web",
30
+ "imageSVG": "Immagine vettoriale Scalable Vector Graphics",
31
+ "slideLO": "Slide di presentazione LibreOffice",
32
+ "slidePowerPoint": "Slide di presentazione PowerPoint",
33
+ "fileSASS": "File Syntactically Awesome StyleSheets",
34
+ "imageTIFF": "Immagine Tag Image File Format",
35
+ "fileTSX": "File TypeScript Extended Syntax",
36
+ "fileTS": "File TypeScript",
37
+ "fileAI": "File vettoriale Adobe Illustrator",
38
+ "fileEPS": "File vettoriale Corel Draw"
39
+ }
@@ -75,7 +75,7 @@
75
75
  }
76
76
 
77
77
  @container style(--magma-pref-animation: system) {
78
-
78
+
79
79
  @media (prefers-reduced-motion) {
80
80
  .contrast-area,
81
81
  .contrast-area-50 {
@@ -18,7 +18,6 @@ export type AutocompleteType =
18
18
  | 'cc-exp-month'
19
19
  | 'cc-exp-year'
20
20
  | 'cc-family-name'
21
- | 'cc-family-name'
22
21
  | 'cc-given-name'
23
22
  | 'cc-name'
24
23
  | 'cc-number'
@@ -20,6 +20,7 @@ export type ButtonIconPositionType =
20
20
 
21
21
  export type ButtonVariantType =
22
22
  | 'primary'
23
+ | 'secondary'
23
24
  | 'dark'
24
25
  | 'light'
25
26
  | 'error'