@maggioli-design-system/mds-input-otp 1.0.3 → 1.1.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/collection/common/locale.js +10 -8
- package/dist/collection/common/number.js +5 -0
- package/dist/collection/common/slot.js +10 -1
- package/dist/collection/common/unit.js +16 -1
- package/dist/collection/dictionary/button.js +20 -1
- package/dist/collection/dictionary/icon.js +1 -1
- package/dist/documentation.json +1 -1
- package/dist/stats.json +7 -6
- package/dist/types/common/number.d.ts +2 -0
- package/dist/types/common/slot.d.ts +2 -1
- package/dist/types/common/unit.d.ts +3 -1
- package/dist/types/dictionary/button.d.ts +4 -1
- package/dist/types/type/button.d.ts +2 -0
- package/documentation.json +26 -1
- package/package.json +2 -2
- package/src/common/locale.ts +10 -8
- package/src/common/number.ts +8 -0
- package/src/common/slot.ts +12 -0
- package/src/common/unit.ts +23 -0
- package/src/dictionary/button.ts +25 -0
- package/src/dictionary/icon.ts +2 -1
- package/src/fixtures/icons.json +9 -298
- package/src/tailwind/components.css +1 -1
- package/src/type/button.ts +15 -0
- package/src/fixtures/iconsauce.json +0 -310
|
@@ -19,15 +19,17 @@ export class Locale {
|
|
|
19
19
|
};
|
|
20
20
|
this.update = (doc) => {
|
|
21
21
|
const context = doc !== null && doc !== void 0 ? doc : this.element.shadowRoot;
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
22
|
+
if (context) {
|
|
23
|
+
context.querySelectorAll('*').forEach(el => {
|
|
24
|
+
if (el.tagName.toLowerCase().startsWith('mds-')) {
|
|
25
|
+
// eslint-disable-next-line no-restricted-syntax
|
|
26
|
+
if (el && 'updateLang' in el) {
|
|
27
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
28
|
+
el.updateLang();
|
|
29
|
+
}
|
|
28
30
|
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
+
});
|
|
32
|
+
}
|
|
31
33
|
};
|
|
32
34
|
this.pluralize = (tag, context) => {
|
|
33
35
|
const languagePhrase = this.config[this.language] ? this.config[this.language][tag] : this.config[this.rollbackLanguage][tag];
|
|
@@ -25,4 +25,13 @@ const hasSlotted = (el, name) => {
|
|
|
25
25
|
}
|
|
26
26
|
return false;
|
|
27
27
|
};
|
|
28
|
-
|
|
28
|
+
const hasSlottedContent = (el, name) => {
|
|
29
|
+
var _a;
|
|
30
|
+
const query = name ? `slot[name="${name}"]` : 'slot:not([name])';
|
|
31
|
+
const slot = (_a = el.shadowRoot) === null || _a === void 0 ? void 0 : _a.querySelector(query);
|
|
32
|
+
if (!slot)
|
|
33
|
+
return false;
|
|
34
|
+
const assignedNodes = slot.assignedNodes({ flatten: true });
|
|
35
|
+
return assignedNodes.some(node => { var _a; return node.nodeType === Node.TEXT_NODE && ((_a = node.textContent) === null || _a === void 0 ? void 0 : _a.trim()) !== ''; });
|
|
36
|
+
};
|
|
37
|
+
export { hasSlottedElements, hasSlottedNodes, hasSlottedContent, hasSlotted, };
|
|
@@ -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',
|
|
@@ -27,6 +42,10 @@ const buttonSizeDictionary = [
|
|
|
27
42
|
'lg',
|
|
28
43
|
'xl',
|
|
29
44
|
];
|
|
45
|
+
const tabSizeDictionary = [
|
|
46
|
+
'sm',
|
|
47
|
+
'md',
|
|
48
|
+
];
|
|
30
49
|
const buttonIconPositionDictionary = [
|
|
31
50
|
'left',
|
|
32
51
|
'right',
|
|
@@ -36,4 +55,4 @@ const buttonTypeDictionary = [
|
|
|
36
55
|
'submit',
|
|
37
56
|
'reset',
|
|
38
57
|
];
|
|
39
|
-
export { buttonIconPositionDictionary, buttonSizeDictionary, buttonTargetDictionary, buttonToneVariantDictionary, buttonTypeDictionary, buttonVariantDictionary, };
|
|
58
|
+
export { buttonDropdownVariantDictionary, buttonIconPositionDictionary, buttonSizeDictionary, buttonTargetDictionary, buttonToneMinimalVariantDictionary, buttonToneVariantDictionary, buttonTypeDictionary, buttonVariantDictionary, tabSizeDictionary, };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import jsonIconsDictionary from "../fixtures/icons.json";
|
|
2
|
-
import jsonMggIconsDictionary from "
|
|
2
|
+
import jsonMggIconsDictionary from "@maggioli-design-system/svg-icons/dist/iconsauce.json";
|
|
3
3
|
const iconsDictionary = jsonIconsDictionary;
|
|
4
4
|
const mggIconsDictionary = jsonMggIconsDictionary;
|
|
5
5
|
const svgIconsDictionary = [
|
package/dist/documentation.json
CHANGED
package/dist/stats.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2025-
|
|
2
|
+
"timestamp": "2025-07-04T10:13:15",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "node",
|
|
5
|
-
"version": "22.
|
|
5
|
+
"version": "22.15.0"
|
|
6
6
|
},
|
|
7
7
|
"app": {
|
|
8
8
|
"namespace": "MdsInputOtp",
|
|
9
9
|
"fsNamespace": "mds-input-otp",
|
|
10
10
|
"components": 1,
|
|
11
11
|
"entries": 1,
|
|
12
|
-
"bundles":
|
|
12
|
+
"bundles": 104,
|
|
13
13
|
"outputs": [
|
|
14
14
|
{
|
|
15
15
|
"name": "dist-collection",
|
|
16
|
-
"files":
|
|
16
|
+
"files": 56,
|
|
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",
|
|
@@ -522,6 +523,7 @@
|
|
|
522
523
|
"./src/common/icon.ts": [],
|
|
523
524
|
"./src/common/keyboard-manager.ts": [],
|
|
524
525
|
"./src/common/locale.ts": [],
|
|
526
|
+
"./src/common/number.ts": [],
|
|
525
527
|
"./src/common/slot.ts": [],
|
|
526
528
|
"./src/common/string.ts": [],
|
|
527
529
|
"./src/common/unit.ts": [],
|
|
@@ -550,8 +552,7 @@
|
|
|
550
552
|
"./src/dictionary/file-extensions.ts": [],
|
|
551
553
|
"./src/dictionary/floating-ui.ts": [],
|
|
552
554
|
"./src/dictionary/icon.ts": [
|
|
553
|
-
"./src/fixtures/icons.json"
|
|
554
|
-
"./src/fixtures/iconsauce.json"
|
|
555
|
+
"./src/fixtures/icons.json"
|
|
555
556
|
],
|
|
556
557
|
"./src/dictionary/input.ts": [],
|
|
557
558
|
"./src/dictionary/keyboard.ts": [],
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
declare const hasSlottedElements: (el: HTMLElement, name?: string) => boolean;
|
|
2
2
|
declare const hasSlottedNodes: (el: HTMLElement, name?: string) => boolean;
|
|
3
3
|
declare const hasSlotted: (el: HTMLElement, name?: string) => boolean;
|
|
4
|
-
|
|
4
|
+
declare const hasSlottedContent: (el: HTMLElement, name?: string) => boolean;
|
|
5
|
+
export { hasSlottedElements, hasSlottedNodes, hasSlottedContent, hasSlotted, };
|
|
@@ -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,10 @@
|
|
|
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[];
|
|
7
|
+
declare const tabSizeDictionary: string[];
|
|
5
8
|
declare const buttonIconPositionDictionary: string[];
|
|
6
9
|
declare const buttonTypeDictionary: string[];
|
|
7
|
-
export { buttonIconPositionDictionary, buttonSizeDictionary, buttonTargetDictionary, buttonToneVariantDictionary, buttonTypeDictionary, buttonVariantDictionary, };
|
|
10
|
+
export { buttonDropdownVariantDictionary, buttonIconPositionDictionary, buttonSizeDictionary, buttonTargetDictionary, buttonToneMinimalVariantDictionary, buttonToneVariantDictionary, buttonTypeDictionary, buttonVariantDictionary, tabSizeDictionary, };
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export type ButtonType = 'a' | 'button' | 'reset' | 'submit';
|
|
2
2
|
export type ButtonTargetType = 'self' | 'blank';
|
|
3
3
|
export type ButtonSizeType = 'sm' | 'md' | 'lg' | 'xl';
|
|
4
|
+
export type TabSizeType = 'sm' | 'md';
|
|
4
5
|
export type ButtonIconPositionType = 'left' | 'right';
|
|
5
6
|
export type ButtonVariantType = 'ai' | 'apple' | 'dark' | 'error' | 'google' | 'info' | 'light' | 'primary' | 'secondary' | 'success' | 'warning';
|
|
7
|
+
export type ButtonDropdownVariantType = 'ai' | 'dark' | 'error' | 'info' | 'light' | 'primary' | 'secondary' | 'success' | 'warning';
|
package/documentation.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2025-
|
|
2
|
+
"timestamp": "2025-07-04T09:57:56",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "@stencil/core",
|
|
5
5
|
"version": "4.27.2",
|
|
@@ -259,6 +259,11 @@
|
|
|
259
259
|
"docstring": "",
|
|
260
260
|
"path": "src/type/text.ts"
|
|
261
261
|
},
|
|
262
|
+
"src/type/button.ts::ButtonDropdownVariantType": {
|
|
263
|
+
"declaration": "export type ButtonDropdownVariantType =\n | 'ai'\n | 'dark'\n | 'error'\n | 'info'\n | 'light'\n | 'primary'\n | 'secondary'\n | 'success'\n | 'warning'",
|
|
264
|
+
"docstring": "",
|
|
265
|
+
"path": "src/type/button.ts"
|
|
266
|
+
},
|
|
262
267
|
"src/components/mds-calendar-cell/meta/types.ts::CalendarCellType": {
|
|
263
268
|
"declaration": "export type CalendarCellType =\n | 'other'\n | 'current'\n | 'weekend'",
|
|
264
269
|
"docstring": "",
|
|
@@ -489,6 +494,11 @@
|
|
|
489
494
|
"docstring": "",
|
|
490
495
|
"path": "src/type/typography.ts"
|
|
491
496
|
},
|
|
497
|
+
"src/components/mds-mention/meta/type.ts::MentionSize": {
|
|
498
|
+
"declaration": "export type MentionSize =\n | 'sm'\n | 'md'\n | 'lg'",
|
|
499
|
+
"docstring": "",
|
|
500
|
+
"path": "src/components/mds-mention/meta/type.ts"
|
|
501
|
+
},
|
|
492
502
|
"src/components/mds-modal/meta/types.ts::ModalPositionType": {
|
|
493
503
|
"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'",
|
|
494
504
|
"docstring": "",
|
|
@@ -529,6 +539,11 @@
|
|
|
529
539
|
"docstring": "",
|
|
530
540
|
"path": "src/components/mds-policy-ai/meta/types.ts"
|
|
531
541
|
},
|
|
542
|
+
"src/type/button.ts::TabSizeType": {
|
|
543
|
+
"declaration": "export type TabSizeType =\n | 'sm'\n | 'md'",
|
|
544
|
+
"docstring": "",
|
|
545
|
+
"path": "src/type/button.ts"
|
|
546
|
+
},
|
|
532
547
|
"src/components/mds-pref-animation/meta/types.ts::AnimationModeType": {
|
|
533
548
|
"declaration": "export type AnimationModeType =\n | 'reduce'\n | 'no-preference'\n | 'system'",
|
|
534
549
|
"docstring": "",
|
|
@@ -609,6 +624,11 @@
|
|
|
609
624
|
"docstring": "",
|
|
610
625
|
"path": "src/components/mds-radial-menu/meta/types.ts"
|
|
611
626
|
},
|
|
627
|
+
"src/components.d.ts::ModalOverflowType": {
|
|
628
|
+
"declaration": "any",
|
|
629
|
+
"docstring": "",
|
|
630
|
+
"path": "src/components.d.ts"
|
|
631
|
+
},
|
|
612
632
|
"src/components/mds-stepper-bar/meta/event-detail.ts::MdsStepperBarEventDetail": {
|
|
613
633
|
"declaration": "export interface MdsStepperBarEventDetail {\n step: number\n value: string\n}",
|
|
614
634
|
"docstring": "",
|
|
@@ -619,6 +639,11 @@
|
|
|
619
639
|
"docstring": "",
|
|
620
640
|
"path": "src/components/mds-stepper-bar-item/meta/event-detail.ts"
|
|
621
641
|
},
|
|
642
|
+
"src/components/mds-tab/meta/type.ts::DirectionType": {
|
|
643
|
+
"declaration": "export type DirectionType =\n | 'horizontal'\n | 'vertical'",
|
|
644
|
+
"docstring": "",
|
|
645
|
+
"path": "src/components/mds-tab/meta/type.ts"
|
|
646
|
+
},
|
|
622
647
|
"src/type/animation.ts::HorizontalActionsAnimationType": {
|
|
623
648
|
"declaration": "export type HorizontalActionsAnimationType =\n | 'fade'\n | 'slide'",
|
|
624
649
|
"docstring": "",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maggioli-design-system/mds-input-otp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "mds-input-otp 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,7 +24,7 @@
|
|
|
24
24
|
"test": "stencil test --spec --e2e"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@maggioli-design-system/mds-input": "7.
|
|
27
|
+
"@maggioli-design-system/mds-input": "7.8.1",
|
|
28
28
|
"@maggioli-design-system/styles": "15.11.0",
|
|
29
29
|
"@stencil/core": "4.27.2"
|
|
30
30
|
},
|
package/src/common/locale.ts
CHANGED
|
@@ -41,15 +41,17 @@ export class Locale {
|
|
|
41
41
|
|
|
42
42
|
update = (doc?: Document | ShadowRoot): void => {
|
|
43
43
|
const context = doc ?? this.element.shadowRoot
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
44
|
+
if (context) {
|
|
45
|
+
context.querySelectorAll('*').forEach(el => {
|
|
46
|
+
if (el.tagName.toLowerCase().startsWith('mds-')) {
|
|
47
|
+
// eslint-disable-next-line no-restricted-syntax
|
|
48
|
+
if (el && 'updateLang' in el) {
|
|
49
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
50
|
+
(el as any).updateLang()
|
|
51
|
+
}
|
|
50
52
|
}
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
+
})
|
|
54
|
+
}
|
|
53
55
|
}
|
|
54
56
|
|
|
55
57
|
private pluralize = (tag: string | string[], context: Record<string, string | number | boolean>): string => {
|
package/src/common/slot.ts
CHANGED
|
@@ -28,8 +28,20 @@ const hasSlotted = (el: HTMLElement, name?: string): boolean => {
|
|
|
28
28
|
return false
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
+
const hasSlottedContent = (el: HTMLElement, name?: string): boolean => {
|
|
32
|
+
const query = name ? `slot[name="${name}"]` : 'slot:not([name])'
|
|
33
|
+
const slot: HTMLSlotElement = el.shadowRoot?.querySelector(query) as HTMLSlotElement
|
|
34
|
+
if (!slot) return false
|
|
35
|
+
|
|
36
|
+
const assignedNodes = slot.assignedNodes({ flatten: true })
|
|
37
|
+
return assignedNodes.some(node =>
|
|
38
|
+
node.nodeType === Node.TEXT_NODE && node.textContent?.trim() !== '',
|
|
39
|
+
)
|
|
40
|
+
}
|
|
41
|
+
|
|
31
42
|
export {
|
|
32
43
|
hasSlottedElements,
|
|
33
44
|
hasSlottedNodes,
|
|
45
|
+
hasSlottedContent,
|
|
34
46
|
hasSlotted,
|
|
35
47
|
}
|
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',
|
|
@@ -31,6 +48,11 @@ const buttonSizeDictionary = [
|
|
|
31
48
|
'xl',
|
|
32
49
|
]
|
|
33
50
|
|
|
51
|
+
const tabSizeDictionary = [
|
|
52
|
+
'sm',
|
|
53
|
+
'md',
|
|
54
|
+
]
|
|
55
|
+
|
|
34
56
|
const buttonIconPositionDictionary = [
|
|
35
57
|
'left',
|
|
36
58
|
'right',
|
|
@@ -43,10 +65,13 @@ const buttonTypeDictionary = [
|
|
|
43
65
|
]
|
|
44
66
|
|
|
45
67
|
export {
|
|
68
|
+
buttonDropdownVariantDictionary,
|
|
46
69
|
buttonIconPositionDictionary,
|
|
47
70
|
buttonSizeDictionary,
|
|
48
71
|
buttonTargetDictionary,
|
|
72
|
+
buttonToneMinimalVariantDictionary,
|
|
49
73
|
buttonToneVariantDictionary,
|
|
50
74
|
buttonTypeDictionary,
|
|
51
75
|
buttonVariantDictionary,
|
|
76
|
+
tabSizeDictionary,
|
|
52
77
|
}
|
package/src/dictionary/icon.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import jsonIconsDictionary from '../fixtures/icons.json'
|
|
2
|
-
import jsonMggIconsDictionary from '
|
|
2
|
+
import jsonMggIconsDictionary from '@maggioli-design-system/svg-icons/dist/iconsauce.json'
|
|
3
|
+
|
|
3
4
|
const iconsDictionary = jsonIconsDictionary
|
|
4
5
|
const mggIconsDictionary = jsonMggIconsDictionary
|
|
5
6
|
const svgIconsDictionary = [
|
package/src/fixtures/icons.json
CHANGED
|
@@ -29,320 +29,23 @@
|
|
|
29
29
|
"mdi/numeric-8",
|
|
30
30
|
"mdi/replay",
|
|
31
31
|
"mdi/vector-curve",
|
|
32
|
-
"mgg/abitazione-principale",
|
|
33
|
-
"mgg/action-email-overlay-progress-10",
|
|
34
|
-
"mgg/action-email-overlay-progress-90",
|
|
35
|
-
"mgg/action-email-send-wait",
|
|
36
|
-
"mgg/action-email-send-warning",
|
|
37
|
-
"mgg/action-hide-down-side",
|
|
38
|
-
"mgg/action-hide-left-side",
|
|
39
|
-
"mgg/action-hide-right-side",
|
|
40
|
-
"mgg/action-hide-sidebar-left",
|
|
41
|
-
"mgg/action-hide-sidebar-right",
|
|
42
|
-
"mgg/action-show-down-side",
|
|
43
|
-
"mgg/action-show-left-side",
|
|
44
|
-
"mgg/action-show-right-side",
|
|
45
|
-
"mgg/action-show-sidebar-left",
|
|
46
|
-
"mgg/action-show-sidebar-right",
|
|
47
|
-
"mgg/activation-key",
|
|
48
|
-
"mgg/activity-list",
|
|
49
|
-
"mgg/add-document-settings",
|
|
50
|
-
"mgg/additional-contents",
|
|
51
|
-
"mgg/address-book-off",
|
|
52
|
-
"mgg/address-book-on",
|
|
53
|
-
"mgg/adv-denied",
|
|
54
32
|
"mgg/ai-brain",
|
|
55
|
-
"mgg/ai-brain-outline",
|
|
56
33
|
"mgg/ai-chatbot",
|
|
57
34
|
"mgg/ai-chatbot-outline",
|
|
58
|
-
"mgg/ai-human",
|
|
59
|
-
"mgg/ai-message",
|
|
60
|
-
"mgg/ai-outline",
|
|
61
|
-
"mgg/ai-status-completed",
|
|
62
|
-
"mgg/ai-status-error",
|
|
63
|
-
"mgg/ai-status-processing",
|
|
64
|
-
"mgg/ai-status-suspended",
|
|
65
|
-
"mgg/alerts-pagopa",
|
|
66
|
-
"mgg/anagrafe-nazionale",
|
|
67
|
-
"mgg/anist",
|
|
68
|
-
"mgg/anpr",
|
|
69
|
-
"mgg/ansc",
|
|
70
|
-
"mgg/area-edificabile",
|
|
71
|
-
"mgg/area-weather",
|
|
72
|
-
"mgg/assignments-accept-rejection",
|
|
73
|
-
"mgg/assignments-acceptance-accepted",
|
|
74
|
-
"mgg/assignments-assignment",
|
|
75
|
-
"mgg/assignments-competence",
|
|
76
|
-
"mgg/assignments-completed",
|
|
77
|
-
"mgg/assignments-rejected",
|
|
78
|
-
"mgg/assignments-sorted",
|
|
79
|
-
"mgg/auto-awesome-motion",
|
|
80
|
-
"mgg/back-to-document",
|
|
81
|
-
"mgg/balance",
|
|
82
|
-
"mgg/bill",
|
|
83
|
-
"mgg/box-multiple",
|
|
84
|
-
"mgg/breadcrumb",
|
|
85
|
-
"mgg/bus-stops",
|
|
86
|
-
"mgg/calendar-euro",
|
|
87
|
-
"mgg/calendar-multiple",
|
|
88
|
-
"mgg/calendar-schedule",
|
|
89
|
-
"mgg/cancelled-sheet",
|
|
90
|
-
"mgg/car-license",
|
|
91
|
-
"mgg/card-stamping",
|
|
92
|
-
"mgg/cash-register-settings",
|
|
93
35
|
"mgg/check-small",
|
|
94
|
-
"mgg/checklist",
|
|
95
|
-
"mgg/checklist-settings",
|
|
96
|
-
"mgg/citizenship",
|
|
97
|
-
"mgg/city-bin",
|
|
98
|
-
"mgg/classic-permission",
|
|
99
36
|
"mgg/consumption-high",
|
|
100
37
|
"mgg/consumption-low",
|
|
101
38
|
"mgg/consumption-medium",
|
|
102
|
-
"mgg/copy-paste",
|
|
103
|
-
"mgg/d-instrumental-buildings",
|
|
104
|
-
"mgg/data-analytics-alt",
|
|
105
|
-
"mgg/data-analytics-search",
|
|
106
|
-
"mgg/data-analytics-time",
|
|
107
|
-
"mgg/data-category-alt",
|
|
108
|
-
"mgg/data-civil-union",
|
|
109
|
-
"mgg/data-cleaning",
|
|
110
|
-
"mgg/data-death-civil-union",
|
|
111
|
-
"mgg/data-death-marriage",
|
|
112
|
-
"mgg/data-end-civil-union",
|
|
113
|
-
"mgg/data-end-marriage",
|
|
114
|
-
"mgg/dataset",
|
|
115
|
-
"mgg/delivered-to-the-recipient",
|
|
116
|
-
"mgg/document-euro",
|
|
117
|
-
"mgg/document-less",
|
|
118
|
-
"mgg/document-magic",
|
|
119
|
-
"mgg/document-rename",
|
|
120
|
-
"mgg/download-csv",
|
|
121
|
-
"mgg/download-html",
|
|
122
|
-
"mgg/download-json",
|
|
123
|
-
"mgg/edit-article",
|
|
124
|
-
"mgg/electronic-document",
|
|
125
|
-
"mgg/email-assigned",
|
|
126
|
-
"mgg/email-open-blocked",
|
|
127
|
-
"mgg/email-open-check",
|
|
128
|
-
"mgg/email-open-lock",
|
|
129
|
-
"mgg/email-open-off",
|
|
130
|
-
"mgg/email-open-play",
|
|
131
|
-
"mgg/email-open-stop",
|
|
132
|
-
"mgg/email-open-user",
|
|
133
|
-
"mgg/email-open-view",
|
|
134
|
-
"mgg/email-to-assign",
|
|
135
|
-
"mgg/face-to-face-meeting",
|
|
136
|
-
"mgg/factory",
|
|
137
|
-
"mgg/farmer",
|
|
138
|
-
"mgg/field",
|
|
139
|
-
"mgg/file-certificate",
|
|
140
|
-
"mgg/file-clock",
|
|
141
|
-
"mgg/file-download",
|
|
142
|
-
"mgg/file-folder-tree",
|
|
143
|
-
"mgg/file-folder-tree-open",
|
|
144
|
-
"mgg/file-html",
|
|
145
|
-
"mgg/file-import",
|
|
146
|
-
"mgg/file-odt",
|
|
147
|
-
"mgg/file-rtf",
|
|
148
|
-
"mgg/file-settings-alt",
|
|
149
|
-
"mgg/file-stack",
|
|
150
|
-
"mgg/file-stack-alt",
|
|
151
|
-
"mgg/file-sub",
|
|
152
|
-
"mgg/file-type-document-attachment",
|
|
153
|
-
"mgg/file-type-document-multiple-attachment",
|
|
154
|
-
"mgg/file-type-document-rubber-stamp",
|
|
155
|
-
"mgg/file-type-home",
|
|
156
|
-
"mgg/file-type-pdf",
|
|
157
|
-
"mgg/file-type-success",
|
|
158
|
-
"mgg/file-type-warning",
|
|
159
|
-
"mgg/file-xml",
|
|
160
|
-
"mgg/finance-euro-cashback",
|
|
161
|
-
"mgg/fit-horizontal",
|
|
162
|
-
"mgg/fit-vertical",
|
|
163
|
-
"mgg/fontawesome-torii-gate",
|
|
164
|
-
"mgg/forwarded-with-a-single-sending",
|
|
165
|
-
"mgg/fullscreen-on-alt",
|
|
166
|
-
"mgg/google-book-closed",
|
|
167
|
-
"mgg/google-book-closed-outline",
|
|
168
39
|
"mgg/google-book-large",
|
|
169
|
-
"mgg/google-book-large-outline",
|
|
170
|
-
"mgg/google-book-opening",
|
|
171
|
-
"mgg/google-book-opening-outline",
|
|
172
|
-
"mgg/google-check-small",
|
|
173
|
-
"mgg/google-drag-pan",
|
|
174
|
-
"mgg/google-experiment",
|
|
175
|
-
"mgg/google-face-retouching-off",
|
|
176
|
-
"mgg/google-hub",
|
|
177
|
-
"mgg/google-keyboard-double-arrow-down",
|
|
178
|
-
"mgg/google-keyboard-double-arrow-up",
|
|
179
|
-
"mgg/google-newsstand",
|
|
180
|
-
"mgg/google-place-item",
|
|
181
|
-
"mgg/group-assigned-automatically-system",
|
|
182
|
-
"mgg/group-ceased",
|
|
183
|
-
"mgg/group-inherited",
|
|
184
|
-
"mgg/heart",
|
|
185
|
-
"mgg/heart-outline",
|
|
186
40
|
"mgg/historic-building",
|
|
187
|
-
"mgg/historic-building-unusable",
|
|
188
|
-
"mgg/home-hammer",
|
|
189
|
-
"mgg/home-link",
|
|
190
|
-
"mgg/home-number",
|
|
191
|
-
"mgg/inad",
|
|
192
|
-
"mgg/inagibile",
|
|
193
|
-
"mgg/inps",
|
|
194
|
-
"mgg/input-calendar-costs",
|
|
195
|
-
"mgg/input-calendar-period",
|
|
196
|
-
"mgg/input-calendar-time",
|
|
197
|
-
"mgg/instrumental-buildings",
|
|
198
|
-
"mgg/internationalization-add",
|
|
199
|
-
"mgg/internationalization-check",
|
|
200
|
-
"mgg/internationalization-delete",
|
|
201
|
-
"mgg/isbn",
|
|
202
|
-
"mgg/judge-hammer",
|
|
203
|
-
"mgg/land-registry",
|
|
204
|
-
"mgg/layers",
|
|
205
|
-
"mgg/liquidated-document",
|
|
206
41
|
"mgg/list-dot",
|
|
207
|
-
"mgg/logo-girasole-camuno",
|
|
208
|
-
"mgg/logo-gpl",
|
|
209
|
-
"mgg/logo-ilibro",
|
|
210
|
-
"mgg/map-marker-settings",
|
|
211
|
-
"mgg/masks-office",
|
|
212
|
-
"mgg/mdi-binoculars",
|
|
213
|
-
"mgg/mdi-graph-outline",
|
|
214
|
-
"mgg/mdi-microscope",
|
|
215
|
-
"mgg/mdi-telescope",
|
|
216
|
-
"mgg/military-draft",
|
|
217
|
-
"mgg/money-bag-settings",
|
|
218
|
-
"mgg/money-on-hand",
|
|
219
|
-
"mgg/money-paid",
|
|
220
|
-
"mgg/move-down",
|
|
221
|
-
"mgg/move-left",
|
|
222
|
-
"mgg/move-right",
|
|
223
|
-
"mgg/move-row-down",
|
|
224
|
-
"mgg/move-row-up",
|
|
225
|
-
"mgg/move-up",
|
|
226
|
-
"mgg/multiple-payments",
|
|
227
|
-
"mgg/national-document",
|
|
228
|
-
"mgg/national-document-off",
|
|
229
|
-
"mgg/not-instrumental-d-buildings",
|
|
230
|
-
"mgg/not-sent-yet",
|
|
231
|
-
"mgg/office-off",
|
|
232
|
-
"mgg/order-return-down-left-to-right",
|
|
233
|
-
"mgg/order-return-down-left-to-up",
|
|
234
|
-
"mgg/order-return-down-right-to-left",
|
|
235
|
-
"mgg/order-return-down-right-to-up",
|
|
236
|
-
"mgg/order-return-up-left-to-down",
|
|
237
|
-
"mgg/order-return-up-left-to-right",
|
|
238
|
-
"mgg/order-return-up-right-to-down",
|
|
239
|
-
"mgg/order-return-up-right-to-left",
|
|
240
|
-
"mgg/order-zigzag-down-left-to-right",
|
|
241
|
-
"mgg/order-zigzag-down-left-to-up",
|
|
242
|
-
"mgg/order-zigzag-down-right-to-left",
|
|
243
|
-
"mgg/order-zigzag-down-right-to-up",
|
|
244
|
-
"mgg/order-zigzag-up-left-to-down",
|
|
245
|
-
"mgg/order-zigzag-up-left-to-right",
|
|
246
|
-
"mgg/order-zigzag-up-right-to-down",
|
|
247
|
-
"mgg/order-zigzag-up-right-to-left",
|
|
248
|
-
"mgg/other-properties",
|
|
249
|
-
"mgg/other-properties-off",
|
|
250
|
-
"mgg/other-residential-buildings",
|
|
251
|
-
"mgg/pagopa",
|
|
252
|
-
"mgg/partial-wall",
|
|
253
|
-
"mgg/payment-settings",
|
|
254
|
-
"mgg/pec-handshake",
|
|
255
|
-
"mgg/pec-ok",
|
|
256
|
-
"mgg/pec-sent-to-the-not-pec-recipient",
|
|
257
|
-
"mgg/places-green",
|
|
258
|
-
"mgg/places-green-doc",
|
|
259
|
-
"mgg/places-green-history",
|
|
260
|
-
"mgg/places-green-info",
|
|
261
|
-
"mgg/places-holiday-beach",
|
|
262
|
-
"mgg/places-market",
|
|
263
|
-
"mgg/places-park",
|
|
264
|
-
"mgg/places-park-alt",
|
|
265
|
-
"mgg/places-store-access-denied",
|
|
266
|
-
"mgg/pos",
|
|
267
|
-
"mgg/property-owner",
|
|
268
|
-
"mgg/registro-imprese",
|
|
269
|
-
"mgg/relevance",
|
|
270
|
-
"mgg/reporting-abuse",
|
|
271
|
-
"mgg/residency-permit",
|
|
272
|
-
"mgg/robot",
|
|
273
|
-
"mgg/roles-permission",
|
|
274
|
-
"mgg/rubber-stamp",
|
|
275
|
-
"mgg/rurale",
|
|
276
|
-
"mgg/search-maggioli",
|
|
277
|
-
"mgg/send-progress",
|
|
278
|
-
"mgg/sending-error",
|
|
279
|
-
"mgg/session",
|
|
280
|
-
"mgg/settings-attachment",
|
|
281
|
-
"mgg/sign-shop",
|
|
282
|
-
"mgg/square-viewfinder",
|
|
283
|
-
"mgg/stacked-documents",
|
|
284
|
-
"mgg/stamp",
|
|
285
|
-
"mgg/status-progress-a-quarter",
|
|
286
|
-
"mgg/status-progress-complete",
|
|
287
|
-
"mgg/status-progress-half",
|
|
288
|
-
"mgg/status-progress-three-quarter",
|
|
289
|
-
"mgg/stuck-codes",
|
|
290
|
-
"mgg/subtractive-permission",
|
|
291
|
-
"mgg/tea-light",
|
|
292
|
-
"mgg/terminal",
|
|
293
|
-
"mgg/tie",
|
|
294
|
-
"mgg/to-single-document",
|
|
295
|
-
"mgg/to-stacked-documents",
|
|
296
|
-
"mgg/todo",
|
|
297
|
-
"mgg/todo-action-businessman-view",
|
|
298
|
-
"mgg/todo-action-certificate",
|
|
299
|
-
"mgg/todo-action-contract",
|
|
300
|
-
"mgg/todo-action-currency-euro",
|
|
301
|
-
"mgg/todo-action-graduate",
|
|
302
|
-
"mgg/todo-action-graduation-hat",
|
|
303
|
-
"mgg/todo-action-judge",
|
|
304
|
-
"mgg/todo-action-money",
|
|
305
|
-
"mgg/todo-action-protocol",
|
|
306
|
-
"mgg/todo-action-upload",
|
|
307
|
-
"mgg/todo-action-wkf-document-checked",
|
|
308
|
-
"mgg/todo-action-wkf-people-checked",
|
|
309
|
-
"mgg/todo-action-wkf-set-pub-date",
|
|
310
|
-
"mgg/todo-completed",
|
|
311
|
-
"mgg/todo-completed-re-executable",
|
|
312
|
-
"mgg/todo-in-charge-by-me",
|
|
313
|
-
"mgg/todo-in-charge-by-others",
|
|
314
|
-
"mgg/todo-in-evaluation",
|
|
315
|
-
"mgg/todo-in-evaluation-by-others",
|
|
316
|
-
"mgg/todo-incoming-in-charge",
|
|
317
|
-
"mgg/todo-incoming-rejected",
|
|
318
|
-
"mgg/todo-pause",
|
|
319
|
-
"mgg/todo-running-completed",
|
|
320
|
-
"mgg/todo-suspended",
|
|
321
|
-
"mgg/touchpoint-laptop-info",
|
|
322
|
-
"mgg/touchpoint-laptop-search",
|
|
323
|
-
"mgg/traffic-cone",
|
|
324
|
-
"mgg/trending-down",
|
|
325
|
-
"mgg/tribute",
|
|
326
|
-
"mgg/tributes",
|
|
327
|
-
"mgg/urban-city",
|
|
328
|
-
"mgg/user-dead",
|
|
329
|
-
"mgg/user-family",
|
|
330
|
-
"mgg/user-location",
|
|
331
|
-
"mgg/user-location-off",
|
|
332
|
-
"mgg/user-signed-out",
|
|
333
|
-
"mgg/user-substitution",
|
|
334
|
-
"mgg/view-chart-gantt",
|
|
335
|
-
"mgg/view-side-by-side",
|
|
336
|
-
"mgg/vote",
|
|
337
|
-
"mgg/warning-superscript",
|
|
338
|
-
"mgg/web-app-ansc",
|
|
339
|
-
"mgg/work-book",
|
|
340
42
|
"mi/baseline/account-balance",
|
|
341
43
|
"mi/baseline/account-balance-wallet",
|
|
342
44
|
"mi/baseline/add",
|
|
343
45
|
"mi/baseline/add-circle",
|
|
344
46
|
"mi/baseline/adobe",
|
|
345
47
|
"mi/baseline/agriculture",
|
|
48
|
+
"mi/baseline/alternate-email",
|
|
346
49
|
"mi/baseline/animation",
|
|
347
50
|
"mi/baseline/arrow-back",
|
|
348
51
|
"mi/baseline/arrow-back-ios-new",
|
|
@@ -376,6 +79,7 @@
|
|
|
376
79
|
"mi/baseline/directions-run",
|
|
377
80
|
"mi/baseline/directions-walk",
|
|
378
81
|
"mi/baseline/done",
|
|
82
|
+
"mi/baseline/done-all",
|
|
379
83
|
"mi/baseline/downhill-skiing",
|
|
380
84
|
"mi/baseline/draw",
|
|
381
85
|
"mi/baseline/eco",
|
|
@@ -426,6 +130,7 @@
|
|
|
426
130
|
"mi/baseline/remove-circle",
|
|
427
131
|
"mi/baseline/remove-red-eye",
|
|
428
132
|
"mi/baseline/route",
|
|
133
|
+
"mi/baseline/search",
|
|
429
134
|
"mi/baseline/send",
|
|
430
135
|
"mi/baseline/settings",
|
|
431
136
|
"mi/baseline/south",
|
|
@@ -433,6 +138,8 @@
|
|
|
433
138
|
"mi/baseline/sports-soccer",
|
|
434
139
|
"mi/baseline/stadium",
|
|
435
140
|
"mi/baseline/terminal",
|
|
141
|
+
"mi/baseline/text-format",
|
|
142
|
+
"mi/baseline/text-rotate-up",
|
|
436
143
|
"mi/baseline/timer",
|
|
437
144
|
"mi/baseline/tv",
|
|
438
145
|
"mi/baseline/undo",
|
|
@@ -446,16 +153,20 @@
|
|
|
446
153
|
"mi/baseline/warning",
|
|
447
154
|
"mi/baseline/warning-amber",
|
|
448
155
|
"mi/baseline/web",
|
|
156
|
+
"mi/baseline/wrap-text",
|
|
449
157
|
"mi/baseline/wysiwyg",
|
|
450
158
|
"mi/outline/auto-awesome",
|
|
451
159
|
"mi/outline/backspace",
|
|
452
160
|
"mi/outline/circle",
|
|
453
161
|
"mi/outline/dark-mode",
|
|
454
162
|
"mi/outline/help-outline",
|
|
163
|
+
"mi/outline/ios-share",
|
|
455
164
|
"mi/outline/mic",
|
|
456
165
|
"mi/outline/mic-off",
|
|
457
166
|
"mi/outline/policy",
|
|
458
167
|
"mi/outline/schedule",
|
|
168
|
+
"mi/outline/thumb-down",
|
|
169
|
+
"mi/outline/thumb-up",
|
|
459
170
|
"mi/round/arrow-circle-down",
|
|
460
171
|
"mi/round/email",
|
|
461
172
|
"mi/round/menu",
|
package/src/type/button.ts
CHANGED
|
@@ -14,6 +14,10 @@ export type ButtonSizeType =
|
|
|
14
14
|
| 'lg'
|
|
15
15
|
| 'xl'
|
|
16
16
|
|
|
17
|
+
export type TabSizeType =
|
|
18
|
+
| 'sm'
|
|
19
|
+
| 'md'
|
|
20
|
+
|
|
17
21
|
export type ButtonIconPositionType =
|
|
18
22
|
| 'left'
|
|
19
23
|
| 'right'
|
|
@@ -30,3 +34,14 @@ export type ButtonVariantType =
|
|
|
30
34
|
| 'secondary'
|
|
31
35
|
| 'success'
|
|
32
36
|
| 'warning'
|
|
37
|
+
|
|
38
|
+
export type ButtonDropdownVariantType =
|
|
39
|
+
| 'ai'
|
|
40
|
+
| 'dark'
|
|
41
|
+
| 'error'
|
|
42
|
+
| 'info'
|
|
43
|
+
| 'light'
|
|
44
|
+
| 'primary'
|
|
45
|
+
| 'secondary'
|
|
46
|
+
| 'success'
|
|
47
|
+
| 'warning'
|
|
@@ -1,310 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
"mgg/abitazione-principale",
|
|
3
|
-
"mgg/action-email-overlay-progress-10",
|
|
4
|
-
"mgg/action-email-overlay-progress-90",
|
|
5
|
-
"mgg/action-email-send-wait",
|
|
6
|
-
"mgg/action-email-send-warning",
|
|
7
|
-
"mgg/action-hide-down-side",
|
|
8
|
-
"mgg/action-hide-left-side",
|
|
9
|
-
"mgg/action-hide-right-side",
|
|
10
|
-
"mgg/action-hide-sidebar-left",
|
|
11
|
-
"mgg/action-hide-sidebar-right",
|
|
12
|
-
"mgg/action-show-down-side",
|
|
13
|
-
"mgg/action-show-left-side",
|
|
14
|
-
"mgg/action-show-right-side",
|
|
15
|
-
"mgg/action-show-sidebar-left",
|
|
16
|
-
"mgg/action-show-sidebar-right",
|
|
17
|
-
"mgg/activation-key",
|
|
18
|
-
"mgg/activity-list",
|
|
19
|
-
"mgg/add-document-settings",
|
|
20
|
-
"mgg/additional-contents",
|
|
21
|
-
"mgg/address-book-off",
|
|
22
|
-
"mgg/address-book-on",
|
|
23
|
-
"mgg/adv-denied",
|
|
24
|
-
"mgg/ai-brain-outline",
|
|
25
|
-
"mgg/ai-brain",
|
|
26
|
-
"mgg/ai-chatbot-outline",
|
|
27
|
-
"mgg/ai-chatbot",
|
|
28
|
-
"mgg/ai-human",
|
|
29
|
-
"mgg/ai-message",
|
|
30
|
-
"mgg/ai-outline",
|
|
31
|
-
"mgg/ai-status-completed",
|
|
32
|
-
"mgg/ai-status-error",
|
|
33
|
-
"mgg/ai-status-processing",
|
|
34
|
-
"mgg/ai-status-suspended",
|
|
35
|
-
"mgg/alerts-pagopa",
|
|
36
|
-
"mgg/anagrafe-nazionale",
|
|
37
|
-
"mgg/anist",
|
|
38
|
-
"mgg/anpr",
|
|
39
|
-
"mgg/ansc",
|
|
40
|
-
"mgg/area-edificabile",
|
|
41
|
-
"mgg/area-weather",
|
|
42
|
-
"mgg/assignments-accept-rejection",
|
|
43
|
-
"mgg/assignments-acceptance-accepted",
|
|
44
|
-
"mgg/assignments-assignment",
|
|
45
|
-
"mgg/assignments-competence",
|
|
46
|
-
"mgg/assignments-completed",
|
|
47
|
-
"mgg/assignments-rejected",
|
|
48
|
-
"mgg/assignments-sorted",
|
|
49
|
-
"mgg/auto-awesome-motion",
|
|
50
|
-
"mgg/back-to-document",
|
|
51
|
-
"mgg/balance",
|
|
52
|
-
"mgg/bill",
|
|
53
|
-
"mgg/box-multiple",
|
|
54
|
-
"mgg/breadcrumb",
|
|
55
|
-
"mgg/bus-stops",
|
|
56
|
-
"mgg/calendar-euro",
|
|
57
|
-
"mgg/calendar-multiple",
|
|
58
|
-
"mgg/calendar-schedule",
|
|
59
|
-
"mgg/cancelled-sheet",
|
|
60
|
-
"mgg/car-license",
|
|
61
|
-
"mgg/card-stamping",
|
|
62
|
-
"mgg/cash-register-settings",
|
|
63
|
-
"mgg/check-small",
|
|
64
|
-
"mgg/checklist-settings",
|
|
65
|
-
"mgg/checklist",
|
|
66
|
-
"mgg/citizenship",
|
|
67
|
-
"mgg/city-bin",
|
|
68
|
-
"mgg/classic-permission",
|
|
69
|
-
"mgg/consumption-high",
|
|
70
|
-
"mgg/consumption-low",
|
|
71
|
-
"mgg/consumption-medium",
|
|
72
|
-
"mgg/copy-paste",
|
|
73
|
-
"mgg/d-instrumental-buildings",
|
|
74
|
-
"mgg/data-analytics-alt",
|
|
75
|
-
"mgg/data-analytics-search",
|
|
76
|
-
"mgg/data-analytics-time",
|
|
77
|
-
"mgg/data-category-alt",
|
|
78
|
-
"mgg/data-civil-union",
|
|
79
|
-
"mgg/data-cleaning",
|
|
80
|
-
"mgg/data-death-civil-union",
|
|
81
|
-
"mgg/data-death-marriage",
|
|
82
|
-
"mgg/data-end-civil-union",
|
|
83
|
-
"mgg/data-end-marriage",
|
|
84
|
-
"mgg/dataset",
|
|
85
|
-
"mgg/delivered-to-the-recipient",
|
|
86
|
-
"mgg/document-euro",
|
|
87
|
-
"mgg/document-less",
|
|
88
|
-
"mgg/document-magic",
|
|
89
|
-
"mgg/document-rename",
|
|
90
|
-
"mgg/download-csv",
|
|
91
|
-
"mgg/download-html",
|
|
92
|
-
"mgg/download-json",
|
|
93
|
-
"mgg/edit-article",
|
|
94
|
-
"mgg/electronic-document",
|
|
95
|
-
"mgg/email-assigned",
|
|
96
|
-
"mgg/email-open-blocked",
|
|
97
|
-
"mgg/email-open-check",
|
|
98
|
-
"mgg/email-open-lock",
|
|
99
|
-
"mgg/email-open-off",
|
|
100
|
-
"mgg/email-open-play",
|
|
101
|
-
"mgg/email-open-stop",
|
|
102
|
-
"mgg/email-open-user",
|
|
103
|
-
"mgg/email-open-view",
|
|
104
|
-
"mgg/email-to-assign",
|
|
105
|
-
"mgg/face-to-face-meeting",
|
|
106
|
-
"mgg/factory",
|
|
107
|
-
"mgg/farmer",
|
|
108
|
-
"mgg/field",
|
|
109
|
-
"mgg/file-certificate",
|
|
110
|
-
"mgg/file-clock",
|
|
111
|
-
"mgg/file-download",
|
|
112
|
-
"mgg/file-folder-tree-open",
|
|
113
|
-
"mgg/file-folder-tree",
|
|
114
|
-
"mgg/file-html",
|
|
115
|
-
"mgg/file-import",
|
|
116
|
-
"mgg/file-odt",
|
|
117
|
-
"mgg/file-rtf",
|
|
118
|
-
"mgg/file-settings-alt",
|
|
119
|
-
"mgg/file-stack-alt",
|
|
120
|
-
"mgg/file-stack",
|
|
121
|
-
"mgg/file-sub",
|
|
122
|
-
"mgg/file-type-document-attachment",
|
|
123
|
-
"mgg/file-type-document-multiple-attachment",
|
|
124
|
-
"mgg/file-type-document-rubber-stamp",
|
|
125
|
-
"mgg/file-type-home",
|
|
126
|
-
"mgg/file-type-pdf",
|
|
127
|
-
"mgg/file-type-success",
|
|
128
|
-
"mgg/file-type-warning",
|
|
129
|
-
"mgg/file-xml",
|
|
130
|
-
"mgg/finance-euro-cashback",
|
|
131
|
-
"mgg/fit-horizontal",
|
|
132
|
-
"mgg/fit-vertical",
|
|
133
|
-
"mgg/fontawesome-torii-gate",
|
|
134
|
-
"mgg/forwarded-with-a-single-sending",
|
|
135
|
-
"mgg/fullscreen-on-alt",
|
|
136
|
-
"mgg/google-book-closed-outline",
|
|
137
|
-
"mgg/google-book-closed",
|
|
138
|
-
"mgg/google-book-large-outline",
|
|
139
|
-
"mgg/google-book-large",
|
|
140
|
-
"mgg/google-book-opening-outline",
|
|
141
|
-
"mgg/google-book-opening",
|
|
142
|
-
"mgg/google-check-small",
|
|
143
|
-
"mgg/google-drag-pan",
|
|
144
|
-
"mgg/google-experiment",
|
|
145
|
-
"mgg/google-face-retouching-off",
|
|
146
|
-
"mgg/google-hub",
|
|
147
|
-
"mgg/google-keyboard-double-arrow-down",
|
|
148
|
-
"mgg/google-keyboard-double-arrow-up",
|
|
149
|
-
"mgg/google-newsstand",
|
|
150
|
-
"mgg/google-place-item",
|
|
151
|
-
"mgg/group-assigned-automatically-system",
|
|
152
|
-
"mgg/group-ceased",
|
|
153
|
-
"mgg/group-inherited",
|
|
154
|
-
"mgg/heart-outline",
|
|
155
|
-
"mgg/heart",
|
|
156
|
-
"mgg/historic-building-unusable",
|
|
157
|
-
"mgg/historic-building",
|
|
158
|
-
"mgg/home-hammer",
|
|
159
|
-
"mgg/home-link",
|
|
160
|
-
"mgg/home-number",
|
|
161
|
-
"mgg/inad",
|
|
162
|
-
"mgg/inagibile",
|
|
163
|
-
"mgg/inps",
|
|
164
|
-
"mgg/input-calendar-costs",
|
|
165
|
-
"mgg/input-calendar-period",
|
|
166
|
-
"mgg/input-calendar-time",
|
|
167
|
-
"mgg/instrumental-buildings",
|
|
168
|
-
"mgg/internationalization-add",
|
|
169
|
-
"mgg/internationalization-check",
|
|
170
|
-
"mgg/internationalization-delete",
|
|
171
|
-
"mgg/isbn",
|
|
172
|
-
"mgg/judge-hammer",
|
|
173
|
-
"mgg/land-registry",
|
|
174
|
-
"mgg/layers",
|
|
175
|
-
"mgg/liquidated-document",
|
|
176
|
-
"mgg/list-dot",
|
|
177
|
-
"mgg/logo-girasole-camuno",
|
|
178
|
-
"mgg/logo-gpl",
|
|
179
|
-
"mgg/logo-ilibro",
|
|
180
|
-
"mgg/map-marker-settings",
|
|
181
|
-
"mgg/masks-office",
|
|
182
|
-
"mgg/mdi-binoculars",
|
|
183
|
-
"mgg/mdi-graph-outline",
|
|
184
|
-
"mgg/mdi-microscope",
|
|
185
|
-
"mgg/mdi-telescope",
|
|
186
|
-
"mgg/military-draft",
|
|
187
|
-
"mgg/money-bag-settings",
|
|
188
|
-
"mgg/money-on-hand",
|
|
189
|
-
"mgg/money-paid",
|
|
190
|
-
"mgg/move-down",
|
|
191
|
-
"mgg/move-left",
|
|
192
|
-
"mgg/move-right",
|
|
193
|
-
"mgg/move-row-down",
|
|
194
|
-
"mgg/move-row-up",
|
|
195
|
-
"mgg/move-up",
|
|
196
|
-
"mgg/multiple-payments",
|
|
197
|
-
"mgg/national-document-off",
|
|
198
|
-
"mgg/national-document",
|
|
199
|
-
"mgg/not-instrumental-d-buildings",
|
|
200
|
-
"mgg/not-sent-yet",
|
|
201
|
-
"mgg/office-off",
|
|
202
|
-
"mgg/order-return-down-left-to-right",
|
|
203
|
-
"mgg/order-return-down-left-to-up",
|
|
204
|
-
"mgg/order-return-down-right-to-left",
|
|
205
|
-
"mgg/order-return-down-right-to-up",
|
|
206
|
-
"mgg/order-return-up-left-to-down",
|
|
207
|
-
"mgg/order-return-up-left-to-right",
|
|
208
|
-
"mgg/order-return-up-right-to-down",
|
|
209
|
-
"mgg/order-return-up-right-to-left",
|
|
210
|
-
"mgg/order-zigzag-down-left-to-right",
|
|
211
|
-
"mgg/order-zigzag-down-left-to-up",
|
|
212
|
-
"mgg/order-zigzag-down-right-to-left",
|
|
213
|
-
"mgg/order-zigzag-down-right-to-up",
|
|
214
|
-
"mgg/order-zigzag-up-left-to-down",
|
|
215
|
-
"mgg/order-zigzag-up-left-to-right",
|
|
216
|
-
"mgg/order-zigzag-up-right-to-down",
|
|
217
|
-
"mgg/order-zigzag-up-right-to-left",
|
|
218
|
-
"mgg/other-properties-off",
|
|
219
|
-
"mgg/other-properties",
|
|
220
|
-
"mgg/other-residential-buildings",
|
|
221
|
-
"mgg/pagopa",
|
|
222
|
-
"mgg/partial-wall",
|
|
223
|
-
"mgg/payment-settings",
|
|
224
|
-
"mgg/pec-handshake",
|
|
225
|
-
"mgg/pec-ok",
|
|
226
|
-
"mgg/pec-sent-to-the-not-pec-recipient",
|
|
227
|
-
"mgg/places-green-doc",
|
|
228
|
-
"mgg/places-green-history",
|
|
229
|
-
"mgg/places-green-info",
|
|
230
|
-
"mgg/places-green",
|
|
231
|
-
"mgg/places-holiday-beach",
|
|
232
|
-
"mgg/places-market",
|
|
233
|
-
"mgg/places-park-alt",
|
|
234
|
-
"mgg/places-park",
|
|
235
|
-
"mgg/places-store-access-denied",
|
|
236
|
-
"mgg/pos",
|
|
237
|
-
"mgg/property-owner",
|
|
238
|
-
"mgg/registro-imprese",
|
|
239
|
-
"mgg/relevance",
|
|
240
|
-
"mgg/reporting-abuse",
|
|
241
|
-
"mgg/residency-permit",
|
|
242
|
-
"mgg/robot",
|
|
243
|
-
"mgg/roles-permission",
|
|
244
|
-
"mgg/rubber-stamp",
|
|
245
|
-
"mgg/rurale",
|
|
246
|
-
"mgg/search-maggioli",
|
|
247
|
-
"mgg/send-progress",
|
|
248
|
-
"mgg/sending-error",
|
|
249
|
-
"mgg/session",
|
|
250
|
-
"mgg/settings-attachment",
|
|
251
|
-
"mgg/sign-shop",
|
|
252
|
-
"mgg/square-viewfinder",
|
|
253
|
-
"mgg/stacked-documents",
|
|
254
|
-
"mgg/stamp",
|
|
255
|
-
"mgg/status-progress-a-quarter",
|
|
256
|
-
"mgg/status-progress-complete",
|
|
257
|
-
"mgg/status-progress-half",
|
|
258
|
-
"mgg/status-progress-three-quarter",
|
|
259
|
-
"mgg/stuck-codes",
|
|
260
|
-
"mgg/subtractive-permission",
|
|
261
|
-
"mgg/tea-light",
|
|
262
|
-
"mgg/terminal",
|
|
263
|
-
"mgg/tie",
|
|
264
|
-
"mgg/to-single-document",
|
|
265
|
-
"mgg/to-stacked-documents",
|
|
266
|
-
"mgg/todo-action-businessman-view",
|
|
267
|
-
"mgg/todo-action-certificate",
|
|
268
|
-
"mgg/todo-action-contract",
|
|
269
|
-
"mgg/todo-action-currency-euro",
|
|
270
|
-
"mgg/todo-action-graduate",
|
|
271
|
-
"mgg/todo-action-graduation-hat",
|
|
272
|
-
"mgg/todo-action-judge",
|
|
273
|
-
"mgg/todo-action-money",
|
|
274
|
-
"mgg/todo-action-protocol",
|
|
275
|
-
"mgg/todo-action-upload",
|
|
276
|
-
"mgg/todo-action-wkf-document-checked",
|
|
277
|
-
"mgg/todo-action-wkf-people-checked",
|
|
278
|
-
"mgg/todo-action-wkf-set-pub-date",
|
|
279
|
-
"mgg/todo-completed-re-executable",
|
|
280
|
-
"mgg/todo-completed",
|
|
281
|
-
"mgg/todo-in-charge-by-me",
|
|
282
|
-
"mgg/todo-in-charge-by-others",
|
|
283
|
-
"mgg/todo-in-evaluation-by-others",
|
|
284
|
-
"mgg/todo-in-evaluation",
|
|
285
|
-
"mgg/todo-incoming-in-charge",
|
|
286
|
-
"mgg/todo-incoming-rejected",
|
|
287
|
-
"mgg/todo-pause",
|
|
288
|
-
"mgg/todo-running-completed",
|
|
289
|
-
"mgg/todo-suspended",
|
|
290
|
-
"mgg/todo",
|
|
291
|
-
"mgg/touchpoint-laptop-info",
|
|
292
|
-
"mgg/touchpoint-laptop-search",
|
|
293
|
-
"mgg/traffic-cone",
|
|
294
|
-
"mgg/trending-down",
|
|
295
|
-
"mgg/tribute",
|
|
296
|
-
"mgg/tributes",
|
|
297
|
-
"mgg/urban-city",
|
|
298
|
-
"mgg/user-dead",
|
|
299
|
-
"mgg/user-family",
|
|
300
|
-
"mgg/user-location-off",
|
|
301
|
-
"mgg/user-location",
|
|
302
|
-
"mgg/user-signed-out",
|
|
303
|
-
"mgg/user-substitution",
|
|
304
|
-
"mgg/view-chart-gantt",
|
|
305
|
-
"mgg/view-side-by-side",
|
|
306
|
-
"mgg/vote",
|
|
307
|
-
"mgg/warning-superscript",
|
|
308
|
-
"mgg/web-app-ansc",
|
|
309
|
-
"mgg/work-book"
|
|
310
|
-
]
|