@maggioli-design-system/mds-push-notification 5.1.1 → 5.2.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.
- package/dist/collection/common/number.js +5 -0
- package/dist/collection/common/unit.js +16 -1
- package/dist/collection/dictionary/button.js +16 -1
- package/dist/collection/dictionary/variant.js +9 -1
- package/dist/documentation.json +1 -1
- package/dist/stats.json +5 -3
- package/dist/types/common/number.d.ts +2 -0
- package/dist/types/common/unit.d.ts +3 -1
- package/dist/types/dictionary/button.d.ts +3 -1
- package/dist/types/dictionary/variant.d.ts +2 -1
- package/dist/types/type/button.d.ts +1 -0
- package/dist/types/type/variant.d.ts +1 -0
- package/documentation.json +18 -3
- package/package.json +3 -3
- package/src/common/number.ts +8 -0
- package/src/common/unit.ts +23 -0
- package/src/dictionary/button.ts +19 -0
- package/src/dictionary/variant.ts +11 -1
- package/src/fixtures/icons.json +11 -0
- package/src/fixtures/iconsauce.json +4 -0
- package/src/type/button.ts +11 -0
- package/src/type/variant.ts +8 -0
|
@@ -7,6 +7,15 @@ const cssDurationToMilliseconds = (duration, defaultValue = 1000) => {
|
|
|
7
7
|
}
|
|
8
8
|
return defaultValue;
|
|
9
9
|
};
|
|
10
|
+
const cssDurationToSeconds = (duration, defaultValue = 1000) => {
|
|
11
|
+
if (duration.includes('ms')) {
|
|
12
|
+
return Number(duration.replace('ms', '')) / 1000;
|
|
13
|
+
}
|
|
14
|
+
if (duration.includes('s')) {
|
|
15
|
+
return Number(duration.replace('s', ''));
|
|
16
|
+
}
|
|
17
|
+
return defaultValue;
|
|
18
|
+
};
|
|
10
19
|
const cssSizeToNumber = (size, defaultValue = 0) => {
|
|
11
20
|
if (size.includes('px')) {
|
|
12
21
|
return Number(size.replace('px', ''));
|
|
@@ -19,4 +28,10 @@ const cssSizeToNumber = (size, defaultValue = 0) => {
|
|
|
19
28
|
}
|
|
20
29
|
return defaultValue;
|
|
21
30
|
};
|
|
22
|
-
|
|
31
|
+
const cssRotationToNumber = (size, defaultValue = 0) => {
|
|
32
|
+
if (size.includes('deg')) {
|
|
33
|
+
return Number(size.replace('deg', ''));
|
|
34
|
+
}
|
|
35
|
+
return defaultValue;
|
|
36
|
+
};
|
|
37
|
+
export { cssDurationToMilliseconds, cssDurationToSeconds, cssRotationToNumber, cssSizeToNumber, };
|
|
@@ -11,12 +11,27 @@ const buttonVariantDictionary = [
|
|
|
11
11
|
'success',
|
|
12
12
|
'warning',
|
|
13
13
|
];
|
|
14
|
+
const buttonDropdownVariantDictionary = [
|
|
15
|
+
'ai',
|
|
16
|
+
'dark',
|
|
17
|
+
'error',
|
|
18
|
+
'info',
|
|
19
|
+
'light',
|
|
20
|
+
'primary',
|
|
21
|
+
'secondary',
|
|
22
|
+
'success',
|
|
23
|
+
'warning',
|
|
24
|
+
];
|
|
14
25
|
const buttonToneVariantDictionary = [
|
|
15
26
|
'strong',
|
|
16
27
|
'weak',
|
|
17
28
|
'ghost',
|
|
18
29
|
'quiet',
|
|
19
30
|
];
|
|
31
|
+
const buttonToneMinimalVariantDictionary = [
|
|
32
|
+
'strong',
|
|
33
|
+
'weak',
|
|
34
|
+
];
|
|
20
35
|
const buttonTargetDictionary = [
|
|
21
36
|
'blank',
|
|
22
37
|
'self',
|
|
@@ -36,4 +51,4 @@ const buttonTypeDictionary = [
|
|
|
36
51
|
'submit',
|
|
37
52
|
'reset',
|
|
38
53
|
];
|
|
39
|
-
export { buttonIconPositionDictionary, buttonSizeDictionary, buttonTargetDictionary, buttonToneVariantDictionary, buttonTypeDictionary, buttonVariantDictionary, };
|
|
54
|
+
export { buttonDropdownVariantDictionary, buttonIconPositionDictionary, buttonSizeDictionary, buttonTargetDictionary, buttonToneMinimalVariantDictionary, buttonToneVariantDictionary, buttonTypeDictionary, buttonVariantDictionary, };
|
|
@@ -18,6 +18,14 @@ const themeStatusVariantDictionary = [
|
|
|
18
18
|
'success',
|
|
19
19
|
'warning',
|
|
20
20
|
];
|
|
21
|
+
const themeInputVariantDictionary = [
|
|
22
|
+
'ai',
|
|
23
|
+
'error',
|
|
24
|
+
'info',
|
|
25
|
+
'primary',
|
|
26
|
+
'success',
|
|
27
|
+
'warning',
|
|
28
|
+
];
|
|
21
29
|
const themeFullVariantDictionary = [
|
|
22
30
|
'amaranth',
|
|
23
31
|
'aqua',
|
|
@@ -113,4 +121,4 @@ const toneMinimalVariantDictionary = [
|
|
|
113
121
|
'strong',
|
|
114
122
|
'weak',
|
|
115
123
|
];
|
|
116
|
-
export { themeFullVariantAvatarDictionary, themeFullVariantDictionary, themeLabelVariantDictionary, themeLuminanceVariantDictionary, themeStatusVariantDictionary,
|
|
124
|
+
export { themeFullVariantAvatarDictionary, themeFullVariantDictionary, themeInputVariantDictionary, themeLabelVariantDictionary, themeLuminanceVariantDictionary, themeStatusVariantDictionary, themeVariantChipDictionary, themeVariantDictionary, toneActionVariantDictionary, toneMinimalVariantDictionary, toneSimpleVariantDictionary, toneSmartVariantDictionary, toneVariantDictionary, };
|
package/dist/documentation.json
CHANGED
package/dist/stats.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2025-
|
|
2
|
+
"timestamp": "2025-06-23T15:01:25",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "node",
|
|
5
5
|
"version": "22.11.0"
|
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
"fsNamespace": "mds-push-notification",
|
|
10
10
|
"components": 1,
|
|
11
11
|
"entries": 1,
|
|
12
|
-
"bundles":
|
|
12
|
+
"bundles": 105,
|
|
13
13
|
"outputs": [
|
|
14
14
|
{
|
|
15
15
|
"name": "dist-collection",
|
|
16
|
-
"files":
|
|
16
|
+
"files": 57,
|
|
17
17
|
"generatedFiles": [
|
|
18
18
|
"./dist/collection/common/aria.js",
|
|
19
19
|
"./dist/collection/common/browser.js",
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
"./dist/collection/common/icon.js",
|
|
25
25
|
"./dist/collection/common/keyboard-manager.js",
|
|
26
26
|
"./dist/collection/common/locale.js",
|
|
27
|
+
"./dist/collection/common/number.js",
|
|
27
28
|
"./dist/collection/common/slot.js",
|
|
28
29
|
"./dist/collection/common/string.js",
|
|
29
30
|
"./dist/collection/common/unit.js",
|
|
@@ -773,6 +774,7 @@
|
|
|
773
774
|
"./src/common/icon.ts": [],
|
|
774
775
|
"./src/common/keyboard-manager.ts": [],
|
|
775
776
|
"./src/common/locale.ts": [],
|
|
777
|
+
"./src/common/number.ts": [],
|
|
776
778
|
"./src/common/slot.ts": [],
|
|
777
779
|
"./src/common/string.ts": [],
|
|
778
780
|
"./src/common/unit.ts": [],
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
declare const cssDurationToMilliseconds: (duration: string, defaultValue?: number) => number;
|
|
2
|
+
declare const cssDurationToSeconds: (duration: string, defaultValue?: number) => number;
|
|
2
3
|
declare const cssSizeToNumber: (size: string, defaultValue?: number) => number;
|
|
3
|
-
|
|
4
|
+
declare const cssRotationToNumber: (size: string, defaultValue?: number) => number;
|
|
5
|
+
export { cssDurationToMilliseconds, cssDurationToSeconds, cssRotationToNumber, cssSizeToNumber, };
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
declare const buttonVariantDictionary: string[];
|
|
2
|
+
declare const buttonDropdownVariantDictionary: string[];
|
|
2
3
|
declare const buttonToneVariantDictionary: string[];
|
|
4
|
+
declare const buttonToneMinimalVariantDictionary: string[];
|
|
3
5
|
declare const buttonTargetDictionary: string[];
|
|
4
6
|
declare const buttonSizeDictionary: string[];
|
|
5
7
|
declare const buttonIconPositionDictionary: string[];
|
|
6
8
|
declare const buttonTypeDictionary: string[];
|
|
7
|
-
export { buttonIconPositionDictionary, buttonSizeDictionary, buttonTargetDictionary, buttonToneVariantDictionary, buttonTypeDictionary, buttonVariantDictionary, };
|
|
9
|
+
export { buttonDropdownVariantDictionary, buttonIconPositionDictionary, buttonSizeDictionary, buttonTargetDictionary, buttonToneMinimalVariantDictionary, buttonToneVariantDictionary, buttonTypeDictionary, buttonVariantDictionary, };
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
declare const themeVariantDictionary: string[];
|
|
2
2
|
declare const themeLuminanceVariantDictionary: string[];
|
|
3
3
|
declare const themeStatusVariantDictionary: string[];
|
|
4
|
+
declare const themeInputVariantDictionary: string[];
|
|
4
5
|
declare const themeFullVariantDictionary: string[];
|
|
5
6
|
declare const themeFullVariantAvatarDictionary: string[];
|
|
6
7
|
declare const themeLabelVariantDictionary: string[];
|
|
@@ -10,4 +11,4 @@ declare const toneActionVariantDictionary: string[];
|
|
|
10
11
|
declare const toneSimpleVariantDictionary: string[];
|
|
11
12
|
declare const toneSmartVariantDictionary: string[];
|
|
12
13
|
declare const toneMinimalVariantDictionary: string[];
|
|
13
|
-
export { themeFullVariantAvatarDictionary, themeFullVariantDictionary, themeLabelVariantDictionary, themeLuminanceVariantDictionary, themeStatusVariantDictionary,
|
|
14
|
+
export { themeFullVariantAvatarDictionary, themeFullVariantDictionary, themeInputVariantDictionary, themeLabelVariantDictionary, themeLuminanceVariantDictionary, themeStatusVariantDictionary, themeVariantChipDictionary, themeVariantDictionary, toneActionVariantDictionary, toneMinimalVariantDictionary, toneSimpleVariantDictionary, toneSmartVariantDictionary, toneVariantDictionary, };
|
|
@@ -3,3 +3,4 @@ export type ButtonTargetType = 'self' | 'blank';
|
|
|
3
3
|
export type ButtonSizeType = 'sm' | 'md' | 'lg' | 'xl';
|
|
4
4
|
export type ButtonIconPositionType = 'left' | 'right';
|
|
5
5
|
export type ButtonVariantType = 'ai' | 'apple' | 'dark' | 'error' | 'google' | 'info' | 'light' | 'primary' | 'secondary' | 'success' | 'warning';
|
|
6
|
+
export type ButtonDropdownVariantType = 'ai' | 'dark' | 'error' | 'info' | 'light' | 'primary' | 'secondary' | 'success' | 'warning';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export type ThemeStatusVariantType = 'error' | 'info' | 'success' | 'warning';
|
|
2
|
+
export type ThemeInputVariantType = 'primary' | 'ai' | 'error' | 'info' | 'success' | 'warning';
|
|
2
3
|
export type ThemeVariantType = 'ai' | 'dark' | 'error' | 'info' | 'light' | 'primary' | 'success' | 'warning';
|
|
3
4
|
export type ThemeFullVariantType = 'amaranth' | 'aqua' | 'blue' | 'dark' | 'error' | 'green' | 'info' | 'light' | 'lime' | 'orange' | 'orchid' | 'sky' | 'success' | 'violet' | 'warning' | 'yellow';
|
|
4
5
|
export type ThemeFullVariantAvatarType = 'amaranth' | 'aqua' | 'blue' | 'error' | 'green' | 'info' | 'lime' | 'orange' | 'orchid' | 'primary' | 'sky' | 'success' | 'violet' | 'warning' | 'yellow';
|
package/documentation.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2025-
|
|
2
|
+
"timestamp": "2025-06-23T13:28:32",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "@stencil/core",
|
|
5
5
|
"version": "4.27.2",
|
|
@@ -399,6 +399,11 @@
|
|
|
399
399
|
"docstring": "",
|
|
400
400
|
"path": "src/type/text.ts"
|
|
401
401
|
},
|
|
402
|
+
"src/type/button.ts::ButtonDropdownVariantType": {
|
|
403
|
+
"declaration": "export type ButtonDropdownVariantType =\n | 'ai'\n | 'dark'\n | 'error'\n | 'info'\n | 'light'\n | 'primary'\n | 'secondary'\n | 'success'\n | 'warning'",
|
|
404
|
+
"docstring": "",
|
|
405
|
+
"path": "src/type/button.ts"
|
|
406
|
+
},
|
|
402
407
|
"src/components/mds-calendar-cell/meta/types.ts::CalendarCellType": {
|
|
403
408
|
"declaration": "export type CalendarCellType =\n | 'other'\n | 'current'\n | 'weekend'",
|
|
404
409
|
"docstring": "",
|
|
@@ -539,8 +544,8 @@
|
|
|
539
544
|
"docstring": "",
|
|
540
545
|
"path": "src/type/input.ts"
|
|
541
546
|
},
|
|
542
|
-
"src/type/variant.ts::
|
|
543
|
-
"declaration": "export type
|
|
547
|
+
"src/type/variant.ts::ThemeInputVariantType": {
|
|
548
|
+
"declaration": "export type ThemeInputVariantType =\n | 'primary'\n | 'ai'\n | 'error'\n | 'info'\n | 'success'\n | 'warning'",
|
|
544
549
|
"docstring": "",
|
|
545
550
|
"path": "src/type/variant.ts"
|
|
546
551
|
},
|
|
@@ -569,6 +574,11 @@
|
|
|
569
574
|
"docstring": "",
|
|
570
575
|
"path": "src/components/mds-input/meta/validators.ts"
|
|
571
576
|
},
|
|
577
|
+
"src/type/variant.ts::ThemeStatusVariantType": {
|
|
578
|
+
"declaration": "export type ThemeStatusVariantType =\n | 'error'\n | 'info'\n | 'success'\n | 'warning'",
|
|
579
|
+
"docstring": "",
|
|
580
|
+
"path": "src/type/variant.ts"
|
|
581
|
+
},
|
|
572
582
|
"src/components/mds-input-switch/meta/types.ts::InputSwitchSizeType": {
|
|
573
583
|
"declaration": "export type InputSwitchSizeType =\n | 'sm'\n | 'md'\n | 'lg'",
|
|
574
584
|
"docstring": "",
|
|
@@ -624,6 +634,11 @@
|
|
|
624
634
|
"docstring": "",
|
|
625
635
|
"path": "src/type/typography.ts"
|
|
626
636
|
},
|
|
637
|
+
"src/components/mds-mention/meta/type.ts::MentionSize": {
|
|
638
|
+
"declaration": "export type MentionSize =\n | 'sm'\n | 'md'\n | 'lg'",
|
|
639
|
+
"docstring": "",
|
|
640
|
+
"path": "src/components/mds-mention/meta/type.ts"
|
|
641
|
+
},
|
|
627
642
|
"src/components/mds-modal/meta/types.ts::ModalPositionType": {
|
|
628
643
|
"declaration": "export type ModalPositionType =\n | 'bottom'\n | 'bottom-left'\n | 'bottom-right'\n | 'center'\n | 'left'\n | 'right'\n | 'top'\n | 'top-left'\n | 'top-right'",
|
|
629
644
|
"docstring": "",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maggioli-design-system/mds-push-notification",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.2.0",
|
|
4
4
|
"description": "mds-push-notification is a web-component from Magma Design System, built with StencilJS, TypeScript, Storybook. It's based on the web-component standard and it's designed to be agnostic from the JavaScript framework you are using.",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"test": "stencil test --spec --e2e"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@maggioli-design-system/mds-push-notification-item": "1.
|
|
28
|
-
"@maggioli-design-system/styles": "15.
|
|
27
|
+
"@maggioli-design-system/mds-push-notification-item": "1.2.0",
|
|
28
|
+
"@maggioli-design-system/styles": "15.11.0",
|
|
29
29
|
"@stencil/core": "4.27.2",
|
|
30
30
|
"clsx": "2.1.0"
|
|
31
31
|
},
|
package/src/common/unit.ts
CHANGED
|
@@ -11,6 +11,19 @@ const cssDurationToMilliseconds = (duration: string, defaultValue = 1000): numbe
|
|
|
11
11
|
return defaultValue
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
+
const cssDurationToSeconds = (duration: string, defaultValue = 1000): number => {
|
|
15
|
+
|
|
16
|
+
if (duration.includes('ms')) {
|
|
17
|
+
return Number(duration.replace('ms', '')) / 1000
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
if (duration.includes('s')) {
|
|
21
|
+
return Number(duration.replace('s', ''))
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
return defaultValue
|
|
25
|
+
}
|
|
26
|
+
|
|
14
27
|
const cssSizeToNumber = (size: string, defaultValue = 0): number => {
|
|
15
28
|
if (size.includes('px')) {
|
|
16
29
|
return Number(size.replace('px', ''))
|
|
@@ -27,7 +40,17 @@ const cssSizeToNumber = (size: string, defaultValue = 0): number => {
|
|
|
27
40
|
return defaultValue
|
|
28
41
|
}
|
|
29
42
|
|
|
43
|
+
const cssRotationToNumber = (size: string, defaultValue = 0): number => {
|
|
44
|
+
if (size.includes('deg')) {
|
|
45
|
+
return Number(size.replace('deg', ''))
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
return defaultValue
|
|
49
|
+
}
|
|
50
|
+
|
|
30
51
|
export {
|
|
31
52
|
cssDurationToMilliseconds,
|
|
53
|
+
cssDurationToSeconds,
|
|
54
|
+
cssRotationToNumber,
|
|
32
55
|
cssSizeToNumber,
|
|
33
56
|
}
|
package/src/dictionary/button.ts
CHANGED
|
@@ -12,6 +12,18 @@ const buttonVariantDictionary = [
|
|
|
12
12
|
'warning',
|
|
13
13
|
]
|
|
14
14
|
|
|
15
|
+
const buttonDropdownVariantDictionary = [
|
|
16
|
+
'ai',
|
|
17
|
+
'dark',
|
|
18
|
+
'error',
|
|
19
|
+
'info',
|
|
20
|
+
'light',
|
|
21
|
+
'primary',
|
|
22
|
+
'secondary',
|
|
23
|
+
'success',
|
|
24
|
+
'warning',
|
|
25
|
+
]
|
|
26
|
+
|
|
15
27
|
const buttonToneVariantDictionary = [
|
|
16
28
|
'strong',
|
|
17
29
|
'weak',
|
|
@@ -19,6 +31,11 @@ const buttonToneVariantDictionary = [
|
|
|
19
31
|
'quiet',
|
|
20
32
|
]
|
|
21
33
|
|
|
34
|
+
const buttonToneMinimalVariantDictionary = [
|
|
35
|
+
'strong',
|
|
36
|
+
'weak',
|
|
37
|
+
]
|
|
38
|
+
|
|
22
39
|
const buttonTargetDictionary = [
|
|
23
40
|
'blank',
|
|
24
41
|
'self',
|
|
@@ -43,9 +60,11 @@ const buttonTypeDictionary = [
|
|
|
43
60
|
]
|
|
44
61
|
|
|
45
62
|
export {
|
|
63
|
+
buttonDropdownVariantDictionary,
|
|
46
64
|
buttonIconPositionDictionary,
|
|
47
65
|
buttonSizeDictionary,
|
|
48
66
|
buttonTargetDictionary,
|
|
67
|
+
buttonToneMinimalVariantDictionary,
|
|
49
68
|
buttonToneVariantDictionary,
|
|
50
69
|
buttonTypeDictionary,
|
|
51
70
|
buttonVariantDictionary,
|
|
@@ -21,6 +21,15 @@ const themeStatusVariantDictionary = [
|
|
|
21
21
|
'warning',
|
|
22
22
|
]
|
|
23
23
|
|
|
24
|
+
const themeInputVariantDictionary = [
|
|
25
|
+
'ai',
|
|
26
|
+
'error',
|
|
27
|
+
'info',
|
|
28
|
+
'primary',
|
|
29
|
+
'success',
|
|
30
|
+
'warning',
|
|
31
|
+
]
|
|
32
|
+
|
|
24
33
|
const themeFullVariantDictionary = [
|
|
25
34
|
'amaranth',
|
|
26
35
|
'aqua',
|
|
@@ -128,11 +137,12 @@ const toneMinimalVariantDictionary = [
|
|
|
128
137
|
export {
|
|
129
138
|
themeFullVariantAvatarDictionary,
|
|
130
139
|
themeFullVariantDictionary,
|
|
140
|
+
themeInputVariantDictionary,
|
|
131
141
|
themeLabelVariantDictionary,
|
|
132
142
|
themeLuminanceVariantDictionary,
|
|
133
143
|
themeStatusVariantDictionary,
|
|
134
|
-
themeVariantDictionary,
|
|
135
144
|
themeVariantChipDictionary,
|
|
145
|
+
themeVariantDictionary,
|
|
136
146
|
toneActionVariantDictionary,
|
|
137
147
|
toneMinimalVariantDictionary,
|
|
138
148
|
toneSimpleVariantDictionary,
|
package/src/fixtures/icons.json
CHANGED
|
@@ -53,6 +53,8 @@
|
|
|
53
53
|
"mgg/adv-denied",
|
|
54
54
|
"mgg/ai-brain",
|
|
55
55
|
"mgg/ai-brain-outline",
|
|
56
|
+
"mgg/ai-chatbot",
|
|
57
|
+
"mgg/ai-chatbot-outline",
|
|
56
58
|
"mgg/ai-human",
|
|
57
59
|
"mgg/ai-message",
|
|
58
60
|
"mgg/ai-outline",
|
|
@@ -116,6 +118,7 @@
|
|
|
116
118
|
"mgg/document-magic",
|
|
117
119
|
"mgg/document-rename",
|
|
118
120
|
"mgg/download-csv",
|
|
121
|
+
"mgg/download-html",
|
|
119
122
|
"mgg/download-json",
|
|
120
123
|
"mgg/edit-article",
|
|
121
124
|
"mgg/electronic-document",
|
|
@@ -138,6 +141,7 @@
|
|
|
138
141
|
"mgg/file-download",
|
|
139
142
|
"mgg/file-folder-tree",
|
|
140
143
|
"mgg/file-folder-tree-open",
|
|
144
|
+
"mgg/file-html",
|
|
141
145
|
"mgg/file-import",
|
|
142
146
|
"mgg/file-odt",
|
|
143
147
|
"mgg/file-rtf",
|
|
@@ -339,6 +343,7 @@
|
|
|
339
343
|
"mi/baseline/add-circle",
|
|
340
344
|
"mi/baseline/adobe",
|
|
341
345
|
"mi/baseline/agriculture",
|
|
346
|
+
"mi/baseline/alternate-email",
|
|
342
347
|
"mi/baseline/animation",
|
|
343
348
|
"mi/baseline/arrow-back",
|
|
344
349
|
"mi/baseline/arrow-back-ios-new",
|
|
@@ -372,6 +377,7 @@
|
|
|
372
377
|
"mi/baseline/directions-run",
|
|
373
378
|
"mi/baseline/directions-walk",
|
|
374
379
|
"mi/baseline/done",
|
|
380
|
+
"mi/baseline/done-all",
|
|
375
381
|
"mi/baseline/downhill-skiing",
|
|
376
382
|
"mi/baseline/draw",
|
|
377
383
|
"mi/baseline/eco",
|
|
@@ -429,6 +435,8 @@
|
|
|
429
435
|
"mi/baseline/sports-soccer",
|
|
430
436
|
"mi/baseline/stadium",
|
|
431
437
|
"mi/baseline/terminal",
|
|
438
|
+
"mi/baseline/text-format",
|
|
439
|
+
"mi/baseline/text-rotate-up",
|
|
432
440
|
"mi/baseline/timer",
|
|
433
441
|
"mi/baseline/tv",
|
|
434
442
|
"mi/baseline/undo",
|
|
@@ -442,12 +450,15 @@
|
|
|
442
450
|
"mi/baseline/warning",
|
|
443
451
|
"mi/baseline/warning-amber",
|
|
444
452
|
"mi/baseline/web",
|
|
453
|
+
"mi/baseline/wrap-text",
|
|
445
454
|
"mi/baseline/wysiwyg",
|
|
446
455
|
"mi/outline/auto-awesome",
|
|
447
456
|
"mi/outline/backspace",
|
|
448
457
|
"mi/outline/circle",
|
|
449
458
|
"mi/outline/dark-mode",
|
|
450
459
|
"mi/outline/help-outline",
|
|
460
|
+
"mi/outline/mic",
|
|
461
|
+
"mi/outline/mic-off",
|
|
451
462
|
"mi/outline/policy",
|
|
452
463
|
"mi/outline/schedule",
|
|
453
464
|
"mi/round/arrow-circle-down",
|
|
@@ -23,6 +23,8 @@
|
|
|
23
23
|
"mgg/adv-denied",
|
|
24
24
|
"mgg/ai-brain-outline",
|
|
25
25
|
"mgg/ai-brain",
|
|
26
|
+
"mgg/ai-chatbot-outline",
|
|
27
|
+
"mgg/ai-chatbot",
|
|
26
28
|
"mgg/ai-human",
|
|
27
29
|
"mgg/ai-message",
|
|
28
30
|
"mgg/ai-outline",
|
|
@@ -86,6 +88,7 @@
|
|
|
86
88
|
"mgg/document-magic",
|
|
87
89
|
"mgg/document-rename",
|
|
88
90
|
"mgg/download-csv",
|
|
91
|
+
"mgg/download-html",
|
|
89
92
|
"mgg/download-json",
|
|
90
93
|
"mgg/edit-article",
|
|
91
94
|
"mgg/electronic-document",
|
|
@@ -108,6 +111,7 @@
|
|
|
108
111
|
"mgg/file-download",
|
|
109
112
|
"mgg/file-folder-tree-open",
|
|
110
113
|
"mgg/file-folder-tree",
|
|
114
|
+
"mgg/file-html",
|
|
111
115
|
"mgg/file-import",
|
|
112
116
|
"mgg/file-odt",
|
|
113
117
|
"mgg/file-rtf",
|
package/src/type/button.ts
CHANGED
package/src/type/variant.ts
CHANGED