@maggioli-design-system/mds-input-tip 1.5.3 → 1.5.4
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/dictionary/variant.js +9 -1
- package/dist/documentation.json +1 -1
- package/dist/stats.json +1 -1
- package/dist/types/dictionary/variant.d.ts +2 -1
- package/dist/types/type/variant.d.ts +1 -0
- package/documentation.json +8 -3
- package/package.json +3 -3
- package/src/dictionary/variant.ts +11 -1
- package/src/fixtures/icons.json +6 -0
- package/src/fixtures/iconsauce.json +4 -0
- package/src/type/variant.ts +8 -0
@@ -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,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, };
|
@@ -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-03T08:10:23",
|
3
3
|
"compiler": {
|
4
4
|
"name": "@stencil/core",
|
5
5
|
"version": "4.27.2",
|
@@ -384,8 +384,8 @@
|
|
384
384
|
"docstring": "",
|
385
385
|
"path": "src/type/input.ts"
|
386
386
|
},
|
387
|
-
"src/type/variant.ts::
|
388
|
-
"declaration": "export type
|
387
|
+
"src/type/variant.ts::ThemeInputVariantType": {
|
388
|
+
"declaration": "export type ThemeInputVariantType =\n | 'primary'\n | 'ai'\n | 'error'\n | 'info'\n | 'success'\n | 'warning'",
|
389
389
|
"docstring": "",
|
390
390
|
"path": "src/type/variant.ts"
|
391
391
|
},
|
@@ -414,6 +414,11 @@
|
|
414
414
|
"docstring": "",
|
415
415
|
"path": "src/components/mds-input/meta/validators.ts"
|
416
416
|
},
|
417
|
+
"src/type/variant.ts::ThemeStatusVariantType": {
|
418
|
+
"declaration": "export type ThemeStatusVariantType =\n | 'error'\n | 'info'\n | 'success'\n | 'warning'",
|
419
|
+
"docstring": "",
|
420
|
+
"path": "src/type/variant.ts"
|
421
|
+
},
|
417
422
|
"src/components/mds-input-switch/meta/types.ts::InputSwitchSizeType": {
|
418
423
|
"declaration": "export type InputSwitchSizeType =\n | 'sm'\n | 'md'\n | 'lg'",
|
419
424
|
"docstring": "",
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@maggioli-design-system/mds-input-tip",
|
3
|
-
"version": "1.5.
|
3
|
+
"version": "1.5.4",
|
4
4
|
"description": "mds-input-tip 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-input-tip-item": "1.5.
|
28
|
-
"@maggioli-design-system/styles": "15.
|
27
|
+
"@maggioli-design-system/mds-input-tip-item": "1.5.3",
|
28
|
+
"@maggioli-design-system/styles": "15.11.0",
|
29
29
|
"@stencil/core": "4.27.2"
|
30
30
|
},
|
31
31
|
"license": "MIT",
|
@@ -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",
|
@@ -448,6 +452,8 @@
|
|
448
452
|
"mi/outline/circle",
|
449
453
|
"mi/outline/dark-mode",
|
450
454
|
"mi/outline/help-outline",
|
455
|
+
"mi/outline/mic",
|
456
|
+
"mi/outline/mic-off",
|
451
457
|
"mi/outline/policy",
|
452
458
|
"mi/outline/schedule",
|
453
459
|
"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/variant.ts
CHANGED