@maggioli-design-system/mds-modal 5.0.0 → 5.2.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/mds-modal.cjs.entry.js +7 -5
- package/dist/collection/common/aria.js +17 -1
- package/dist/collection/common/device.js +6 -0
- package/dist/collection/common/keyboard-manager.js +2 -2
- package/dist/collection/common/slot.js +13 -0
- package/dist/collection/components/mds-modal/mds-modal.css +10 -23
- package/dist/collection/components/mds-modal/mds-modal.js +6 -4
- package/dist/collection/components/mds-modal/test/mds-modal.stories.js +15 -6
- package/dist/collection/dictionary/animation.js +5 -0
- package/dist/collection/dictionary/file-extensions.js +61 -56
- package/dist/collection/dictionary/text.js +60 -1
- package/dist/collection/fixtures/filenames.js +62 -1
- package/dist/collection/type/animation.js +1 -0
- package/dist/collection/type/variant-file-format.js +5 -0
- package/dist/components/mds-modal.js +7 -5
- package/dist/documentation.json +11 -1
- package/dist/esm/mds-modal.entry.js +7 -5
- package/dist/esm-es5/mds-modal.entry.js +1 -1
- package/dist/mds-modal/mds-modal.esm.js +1 -1
- package/dist/mds-modal/p-08a99956.entry.js +1 -0
- package/dist/mds-modal/p-0d78ea55.system.entry.js +1 -0
- package/dist/mds-modal/p-67c6f337.system.js +1 -1
- package/dist/stats.json +36 -17
- package/dist/types/common/aria.d.ts +3 -1
- package/dist/types/common/device.d.ts +2 -0
- package/dist/types/common/slot.d.ts +2 -0
- package/dist/types/components/mds-modal/test/mds-modal.stories.d.ts +3 -3
- package/dist/types/dictionary/animation.d.ts +2 -0
- package/dist/types/dictionary/text.d.ts +3 -1
- package/dist/types/fixtures/filenames.d.ts +62 -1
- package/dist/types/type/animation.d.ts +1 -0
- package/dist/types/type/file-types.d.ts +1 -1
- package/dist/types/type/text.d.ts +2 -0
- package/dist/types/type/variant-file-format.d.ts +1 -1
- package/documentation.json +35 -10
- package/package.json +2 -2
- package/readme.md +2 -0
- package/src/common/aria.ts +22 -2
- package/src/common/device.ts +9 -0
- package/src/common/keyboard-manager.ts +2 -2
- package/src/common/slot.ts +15 -0
- package/src/components/mds-modal/css/mds-modal-animate-left.css +2 -1
- package/src/components/mds-modal/css/mds-modal-animate-right.css +2 -1
- package/src/components/mds-modal/css/mds-modal-animate.css +0 -10
- package/src/components/mds-modal/mds-modal.css +6 -0
- package/src/components/mds-modal/mds-modal.tsx +3 -2
- package/src/components/mds-modal/readme.md +2 -0
- package/src/components/mds-modal/test/mds-modal.stories.tsx +18 -8
- package/src/dictionary/animation.ts +8 -0
- package/src/dictionary/file-extensions.ts +61 -56
- package/src/dictionary/text.ts +64 -0
- package/src/fixtures/filenames.ts +63 -0
- package/src/fixtures/icons.json +9 -0
- package/src/fixtures/iconsauce.json +5 -0
- package/src/meta/file-format/locale.el.json +44 -0
- package/src/meta/file-format/locale.en.json +44 -0
- package/src/meta/file-format/locale.es.json +44 -0
- package/src/meta/file-format/locale.it.json +44 -0
- package/src/type/animation.ts +3 -0
- package/src/type/file-types.ts +6 -0
- package/src/type/text.ts +59 -0
- package/src/type/variant-file-format.ts +6 -0
- package/www/build/mds-modal.esm.js +1 -1
- package/www/build/p-08a99956.entry.js +1 -0
- package/www/build/p-0d78ea55.system.entry.js +1 -0
- package/www/build/p-67c6f337.system.js +1 -1
- package/dist/mds-modal/p-63a918d2.system.entry.js +0 -1
- package/dist/mds-modal/p-67200987.entry.js +0 -1
- package/www/build/p-63a918d2.system.entry.js +0 -1
- package/www/build/p-67200987.entry.js +0 -1
|
@@ -47,7 +47,9 @@
|
|
|
47
47
|
| `--mds-modal-overlay-color` | Set the overlay color of the background when the component is opened, this property can be inherited from `globals.css` in `styles^8.0.0`. |
|
|
48
48
|
| `--mds-modal-overlay-opacity` | Set the overlay color opacity of the background when the component is opened, this property can be inherited from `globals.css` in `styles^8.0.0`. |
|
|
49
49
|
| `--mds-modal-window-background` | Set the background color of the window |
|
|
50
|
+
| `--mds-modal-window-distance` | Set the distance between the modal window and the screen bounds |
|
|
50
51
|
| `--mds-modal-window-overflow` | Set the overflow of the window |
|
|
52
|
+
| `--mds-modal-window-radius` | Set the border radius of the window |
|
|
51
53
|
| `--mds-modal-window-shadow` | Set the box shadow of the window |
|
|
52
54
|
| `--mds-modal-z-index` | Set the z-index of the window when the component is opened |
|
|
53
55
|
|
|
@@ -8,13 +8,13 @@ export default {
|
|
|
8
8
|
argTypes: {
|
|
9
9
|
opened: {
|
|
10
10
|
description: 'Specifies if the modal is opened or not',
|
|
11
|
-
type: { name: 'boolean'
|
|
11
|
+
type: { name: 'boolean' },
|
|
12
12
|
},
|
|
13
13
|
position: {
|
|
14
14
|
control: { type: 'select' },
|
|
15
15
|
description: 'Specifies the animation position of the modal window',
|
|
16
16
|
options: modalPositionDictionary,
|
|
17
|
-
type: { name: 'string'
|
|
17
|
+
type: { name: 'string' },
|
|
18
18
|
},
|
|
19
19
|
},
|
|
20
20
|
}
|
|
@@ -26,19 +26,19 @@ const email = `${firstName.toLowerCase()}.${lastName.toLowerCase()}@nintendo.com
|
|
|
26
26
|
|
|
27
27
|
const Template = args =>
|
|
28
28
|
<mds-modal {...args}>
|
|
29
|
-
<header slot="top" class="p-800 flex gap-400 items-center border-b border-solid border-0 border-tone-neutral-09">
|
|
29
|
+
<header slot="top" class="p-800 flex gap-400 items-center border-b border-solid border-0 border-tone-neutral-09 max-w-[400px]">
|
|
30
30
|
<mds-img class="w-1600" src="/logo-gruppo-maggioli-512w.webp"/>
|
|
31
31
|
<div class="text-tone-neutral-02">
|
|
32
32
|
<mds-text typography="h5" class="truncate min-w-0">Maggioli Editore</mds-text>
|
|
33
33
|
<mds-text typography="detail" class="truncate min-w-0">Menu di servizio</mds-text>
|
|
34
34
|
</div>
|
|
35
35
|
</header>
|
|
36
|
-
<div class="p-800">
|
|
36
|
+
<div class="p-800 max-w-[400px]">
|
|
37
37
|
<mds-text>
|
|
38
38
|
As a multi-brand design system, our components need to be flexible enough for any one of our brands to use them for multiple use cases. To achieve this, we ensure that all of the brands are involved in the specification stage, giving us more confidence that we’re future-proofing our components as more brands adopt NewsKit.
|
|
39
39
|
</mds-text>
|
|
40
40
|
</div>
|
|
41
|
-
<footer slot="bottom" class="p-800 flex gap-400 text-tone-neutral-02 border-t border-solid border-0 border-tone-neutral-09">
|
|
41
|
+
<footer slot="bottom" class="p-800 flex gap-400 text-tone-neutral-02 border-t border-solid border-0 border-tone-neutral-09 max-w-[400px]">
|
|
42
42
|
<mds-author class="flex-grow">
|
|
43
43
|
<mds-avatar slot="avatar" class="w-1600 mobile:w-1200" src="/avatar-01-200x200.jpeg"/>
|
|
44
44
|
<mds-text typography="h6">{ fullName }</mds-text>
|
|
@@ -59,7 +59,7 @@ const CustomTemplate = args =>
|
|
|
59
59
|
</mds-banner>
|
|
60
60
|
</mds-modal>
|
|
61
61
|
|
|
62
|
-
const
|
|
62
|
+
const InteractiveTemplate = () => {
|
|
63
63
|
// Click not working with reader
|
|
64
64
|
const [opened, setOpened] = useState(false)
|
|
65
65
|
window.addEventListener('mdsModalClose', () => { setOpened(false) })
|
|
@@ -81,5 +81,15 @@ export const Default = Template.bind({})
|
|
|
81
81
|
Default.args = {
|
|
82
82
|
position: 'right',
|
|
83
83
|
}
|
|
84
|
-
|
|
85
|
-
export const
|
|
84
|
+
|
|
85
|
+
export const DefaultWindowCustomized = Template.bind({})
|
|
86
|
+
DefaultWindowCustomized.args = {
|
|
87
|
+
position: 'right',
|
|
88
|
+
style: { '--mds-modal-window-distance': '1rem', '--mds-modal-window-radius': '1rem' },
|
|
89
|
+
}
|
|
90
|
+
export const CustomWindowElement = CustomTemplate.bind({})
|
|
91
|
+
export const Interactive = InteractiveTemplate.bind({})
|
|
92
|
+
export const ARIATest = CustomTemplate.bind({})
|
|
93
|
+
ARIATest.args = {
|
|
94
|
+
opened: true,
|
|
95
|
+
}
|
|
@@ -11,62 +11,67 @@ interface ExtensionInfo {
|
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
const fileExtensionsDictionary: FileExtenstion = {
|
|
14
|
-
'7z': { format: 'archive', description: '
|
|
15
|
-
ace: { format: 'archive', description: '
|
|
16
|
-
ai: { format: 'vector', description: '
|
|
17
|
-
dart: { format: 'code', description: '
|
|
18
|
-
db: { format: 'data', description: '
|
|
19
|
-
default: { format: 'attachment', description: '
|
|
20
|
-
dmg: { format: 'executable', description: '
|
|
21
|
-
doc: { format: 'text', description: '
|
|
22
|
-
docm: { format: 'text', description: '
|
|
23
|
-
docx: { format: 'text', description: '
|
|
24
|
-
eml: { format: 'email', description: '
|
|
25
|
-
eps: { format: 'vector', description: '
|
|
26
|
-
exe: { format: 'executable', description: '
|
|
27
|
-
flac: { format: 'audio', description: '
|
|
28
|
-
gif: { format: 'image', description: '
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
html: { format: 'markup', description: '
|
|
32
|
-
jpe: { format: 'image', description: '
|
|
33
|
-
jpeg: { format: 'image', description: '
|
|
34
|
-
jpg: { format: 'image', description: '
|
|
35
|
-
js: { format: 'code', description: '
|
|
36
|
-
json: { format: 'data', description: '
|
|
37
|
-
jsx: { format: 'code', description: '
|
|
38
|
-
m2v: { format: 'video', description: '
|
|
39
|
-
mp2: { format: 'audio', description: '
|
|
40
|
-
mp3: { format: 'audio', description: '
|
|
41
|
-
mp4: { format: 'video', description: '
|
|
42
|
-
mp4v: { format: 'video', description: '
|
|
43
|
-
mpeg: { format: 'video', description: '
|
|
44
|
-
mpg4: { format: 'video', description: '
|
|
45
|
-
mpg: { format: 'video', description: '
|
|
46
|
-
mpga: { format: 'audio', description: '
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
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([
|
package/src/dictionary/text.ts
CHANGED
|
@@ -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
|
}
|
|
@@ -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
|
}
|
package/src/fixtures/icons.json
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"mdi/email",
|
|
9
9
|
"mdi/file-document-remove-outline",
|
|
10
10
|
"mdi/harddisk",
|
|
11
|
+
"mdi/license",
|
|
11
12
|
"mdi/map-marker",
|
|
12
13
|
"mdi/replay",
|
|
13
14
|
"mdi/vector-curve",
|
|
@@ -35,6 +36,7 @@
|
|
|
35
36
|
"mgg/adv-denied",
|
|
36
37
|
"mgg/ai-brain",
|
|
37
38
|
"mgg/ai-brain-outline",
|
|
39
|
+
"mgg/ai-human",
|
|
38
40
|
"mgg/ai-message",
|
|
39
41
|
"mgg/ai-outline",
|
|
40
42
|
"mgg/ai-status-completed",
|
|
@@ -111,6 +113,8 @@
|
|
|
111
113
|
"mgg/factory",
|
|
112
114
|
"mgg/farmer",
|
|
113
115
|
"mgg/field",
|
|
116
|
+
"mgg/file-certificate",
|
|
117
|
+
"mgg/file-clock",
|
|
114
118
|
"mgg/file-download",
|
|
115
119
|
"mgg/file-folder-tree",
|
|
116
120
|
"mgg/file-folder-tree-open",
|
|
@@ -132,6 +136,7 @@
|
|
|
132
136
|
"mgg/finance-euro-cashback",
|
|
133
137
|
"mgg/fit-horizontal",
|
|
134
138
|
"mgg/fit-vertical",
|
|
139
|
+
"mgg/fontawesome-torii-gate",
|
|
135
140
|
"mgg/forwarded-with-a-single-sending",
|
|
136
141
|
"mgg/fullscreen-on-alt",
|
|
137
142
|
"mgg/google-book-closed",
|
|
@@ -141,6 +146,7 @@
|
|
|
141
146
|
"mgg/google-book-opening",
|
|
142
147
|
"mgg/google-book-opening-outline",
|
|
143
148
|
"mgg/google-check-small",
|
|
149
|
+
"mgg/google-drag-pan",
|
|
144
150
|
"mgg/google-experiment",
|
|
145
151
|
"mgg/google-face-retouching-off",
|
|
146
152
|
"mgg/google-hub",
|
|
@@ -320,6 +326,7 @@
|
|
|
320
326
|
"mi/baseline/book",
|
|
321
327
|
"mi/baseline/border-all",
|
|
322
328
|
"mi/baseline/broken-image",
|
|
329
|
+
"mi/baseline/call",
|
|
323
330
|
"mi/baseline/cancel",
|
|
324
331
|
"mi/baseline/category",
|
|
325
332
|
"mi/baseline/check-box",
|
|
@@ -329,6 +336,7 @@
|
|
|
329
336
|
"mi/baseline/contrast",
|
|
330
337
|
"mi/baseline/css",
|
|
331
338
|
"mi/baseline/dark-mode",
|
|
339
|
+
"mi/baseline/delete",
|
|
332
340
|
"mi/baseline/description",
|
|
333
341
|
"mi/baseline/directions-run",
|
|
334
342
|
"mi/baseline/directions-walk",
|
|
@@ -360,6 +368,7 @@
|
|
|
360
368
|
"mi/baseline/remove",
|
|
361
369
|
"mi/baseline/remove-circle",
|
|
362
370
|
"mi/baseline/route",
|
|
371
|
+
"mi/baseline/send",
|
|
363
372
|
"mi/baseline/settings",
|
|
364
373
|
"mi/baseline/sports",
|
|
365
374
|
"mi/baseline/sports-soccer",
|
|
@@ -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",
|
|
@@ -99,6 +100,8 @@
|
|
|
99
100
|
"mgg/factory",
|
|
100
101
|
"mgg/farmer",
|
|
101
102
|
"mgg/field",
|
|
103
|
+
"mgg/file-certificate",
|
|
104
|
+
"mgg/file-clock",
|
|
102
105
|
"mgg/file-download",
|
|
103
106
|
"mgg/file-folder-tree-open",
|
|
104
107
|
"mgg/file-folder-tree",
|
|
@@ -120,6 +123,7 @@
|
|
|
120
123
|
"mgg/finance-euro-cashback",
|
|
121
124
|
"mgg/fit-horizontal",
|
|
122
125
|
"mgg/fit-vertical",
|
|
126
|
+
"mgg/fontawesome-torii-gate",
|
|
123
127
|
"mgg/forwarded-with-a-single-sending",
|
|
124
128
|
"mgg/fullscreen-on-alt",
|
|
125
129
|
"mgg/google-book-closed-outline",
|
|
@@ -129,6 +133,7 @@
|
|
|
129
133
|
"mgg/google-book-opening-outline",
|
|
130
134
|
"mgg/google-book-opening",
|
|
131
135
|
"mgg/google-check-small",
|
|
136
|
+
"mgg/google-drag-pan",
|
|
132
137
|
"mgg/google-experiment",
|
|
133
138
|
"mgg/google-face-retouching-off",
|
|
134
139
|
"mgg/google-hub",
|
|
@@ -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
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"appleDiskImage": "Immagine Disco Apple",
|
|
3
|
+
"certificateTSD": "Marca temporale",
|
|
4
|
+
"compressedArchive": "Archivio compresso",
|
|
5
|
+
"compressedAudio": "Audio compresso",
|
|
6
|
+
"compressedDocumentMS": "Documento di testo Microsoft Word Compresso",
|
|
7
|
+
"compressedImage": "Immagine compressa",
|
|
8
|
+
"dart": "File Dart",
|
|
9
|
+
"documentAdobe": "Documento Adobe",
|
|
10
|
+
"documentDigitalSingnature": "Documento con firma digitale",
|
|
11
|
+
"documentLO": "Documento di testo LibreOffice",
|
|
12
|
+
"documentMS": "Documento di testo Microsoft Word",
|
|
13
|
+
"documentRTF": "Documento di testo Rich Text Format",
|
|
14
|
+
"documentTXT": "Documento di testo senza formattazione",
|
|
15
|
+
"documentWeb": "Pagina web",
|
|
16
|
+
"email": "E-mail",
|
|
17
|
+
"extensibleMarkupLanguage": "Linguaggio markup per dati",
|
|
18
|
+
"fileAI": "File vettoriale Adobe Illustrator",
|
|
19
|
+
"fileDB": "File di database",
|
|
20
|
+
"fileEPS": "File vettoriale Corel Draw",
|
|
21
|
+
"fileEXE": "File eseguibile Windows",
|
|
22
|
+
"fileJS": "File JavaScript",
|
|
23
|
+
"fileJSON": "File JavaScript Object Notation",
|
|
24
|
+
"filePHP": "File Hypertext Preprocessor",
|
|
25
|
+
"fileSASS": "File Syntactically Awesome StyleSheets",
|
|
26
|
+
"fileTS": "File TypeScript",
|
|
27
|
+
"fileTSX": "File TypeScript Extended Syntax",
|
|
28
|
+
"imageHEIC": "High Efficiency Image File Format",
|
|
29
|
+
"imagePNG": "Immagine Portable Network Graphics",
|
|
30
|
+
"imageSVG": "Immagine vettoriale Scalable Vector Graphics",
|
|
31
|
+
"imageTIFF": "Immagine Tag Image File Format",
|
|
32
|
+
"imageWEBP": "Immagine Google Web Picture",
|
|
33
|
+
"objectLinkingAndEmbedding": "Integrazione oggetti nei file",
|
|
34
|
+
"openDocumentFormat": "Documento OpenDocument",
|
|
35
|
+
"slideLO": "Slide di presentazione LibreOffice",
|
|
36
|
+
"slidePowerPoint": "Slide di presentazione PowerPoint",
|
|
37
|
+
"spreadsheetLO": "Foglio di calcolo LibreOffice",
|
|
38
|
+
"spreadsheetMS": "Foglio di calcolo Office",
|
|
39
|
+
"uncompressedArchive": "Archivio non compresso",
|
|
40
|
+
"uncompressedAudio": "Audio non compresso",
|
|
41
|
+
"unknown": "Formato file sconosciuto",
|
|
42
|
+
"videoHD": "Filmato HD ad alta risoluzione",
|
|
43
|
+
"videoSD": "Filmato SD a bassa risoluzione"
|
|
44
|
+
}
|