@maggioli-design-system/mds-input-tip 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index-fe2df682.js +1571 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +13 -0
- package/dist/cjs/mds-input-tip.cjs.entry.js +21 -0
- package/dist/cjs/mds-input-tip.cjs.js +23 -0
- package/dist/collection/collection-manifest.json +12 -0
- package/dist/collection/common/aria.js +29 -0
- package/dist/collection/common/file.js +48 -0
- package/dist/collection/common/icon.js +15 -0
- package/dist/collection/common/keyboard-manager.js +45 -0
- package/dist/collection/common/locale.js +20 -0
- package/dist/collection/common/unit.js +22 -0
- package/dist/collection/common/yugop/core.js +16 -0
- package/dist/collection/common/yugop/index.js +3 -0
- package/dist/collection/common/yugop/random-text.js +59 -0
- package/dist/collection/common/yugop/utils/math.js +11 -0
- package/dist/collection/common/yugop/utils/noop.js +1 -0
- package/dist/collection/common/yugop/utils/prng.js +21 -0
- package/dist/collection/common/yugop/utils/string.js +2 -0
- package/dist/collection/components/mds-input-tip/mds-input-tip.css +280 -0
- package/dist/collection/components/mds-input-tip/mds-input-tip.js +68 -0
- package/dist/collection/components/mds-input-tip/meta/types.js +1 -0
- package/dist/collection/components/mds-input-tip/test/mds-input-tip.e2e.js +9 -0
- package/dist/collection/dictionary/autocomplete.js +59 -0
- package/dist/collection/dictionary/button.js +30 -0
- package/dist/collection/dictionary/color.js +19 -0
- package/dist/collection/dictionary/file-extensions.js +64 -0
- package/dist/collection/dictionary/floating-ui.js +19 -0
- package/dist/collection/dictionary/icon.js +10 -0
- package/dist/collection/dictionary/input.js +37 -0
- package/dist/collection/dictionary/loading.js +5 -0
- package/dist/collection/dictionary/text.js +6 -0
- package/dist/collection/dictionary/typography.js +67 -0
- package/dist/collection/dictionary/variant.js +90 -0
- package/dist/collection/fixtures/cities.js +110 -0
- package/dist/collection/fixtures/filenames.js +57 -0
- package/dist/collection/interface/input-value.js +1 -0
- package/dist/collection/type/autocomplete.js +1 -0
- package/dist/collection/type/button.js +1 -0
- package/dist/collection/type/file-types.js +1 -0
- package/dist/collection/type/floating-ui.js +1 -0
- package/dist/collection/type/form-rel.js +1 -0
- package/dist/collection/type/input.js +1 -0
- package/dist/collection/type/loading.js +1 -0
- package/dist/collection/type/text.js +1 -0
- package/dist/collection/type/typography.js +1 -0
- package/dist/collection/type/variant-file-format.js +120 -0
- package/dist/collection/type/variant.js +1 -0
- package/dist/components/index.d.ts +33 -0
- package/dist/components/index.js +1 -0
- package/dist/components/mds-input-tip.d.ts +11 -0
- package/dist/components/mds-input-tip.js +38 -0
- package/dist/documentation.d.ts +401 -0
- package/dist/documentation.json +97 -0
- package/dist/esm/index-351c5c8a.js +1544 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +9 -0
- package/dist/esm/mds-input-tip.entry.js +17 -0
- package/dist/esm/mds-input-tip.js +18 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/esm-es5/index-351c5c8a.js +1 -0
- package/dist/esm-es5/index.js +0 -0
- package/dist/esm-es5/loader.js +1 -0
- package/dist/esm-es5/mds-input-tip.entry.js +1 -0
- package/dist/esm-es5/mds-input-tip.js +1 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/mds-input-tip/index.esm.js +0 -0
- package/dist/mds-input-tip/mds-input-tip.esm.js +1 -0
- package/dist/mds-input-tip/mds-input-tip.js +127 -0
- package/dist/mds-input-tip/p-22b86e20.js +2 -0
- package/dist/mds-input-tip/p-3428f886.system.js +2 -0
- package/dist/mds-input-tip/p-50ea2036.system.js +1 -0
- package/dist/mds-input-tip/p-630886b5.entry.js +1 -0
- package/dist/mds-input-tip/p-89e037f5.system.entry.js +1 -0
- package/dist/mds-input-tip/p-e5fe0b68.system.js +1 -0
- package/dist/stats.json +500 -0
- package/dist/types/common/aria.d.ts +5 -0
- package/dist/types/common/file.d.ts +12 -0
- package/dist/types/common/icon.d.ts +5 -0
- package/dist/types/common/keyboard-manager.d.ts +12 -0
- package/dist/types/common/locale.d.ts +14 -0
- package/dist/types/common/unit.d.ts +3 -0
- package/dist/types/common/yugop/core.d.ts +10 -0
- package/dist/types/common/yugop/index.d.ts +1 -0
- package/dist/types/common/yugop/random-text.d.ts +31 -0
- package/dist/types/common/yugop/utils/math.d.ts +3 -0
- package/dist/types/common/yugop/utils/noop.d.ts +1 -0
- package/dist/types/common/yugop/utils/prng.d.ts +8 -0
- package/dist/types/common/yugop/utils/string.d.ts +1 -0
- package/dist/types/components/mds-input-tip/mds-input-tip.d.ts +12 -0
- package/dist/types/components/mds-input-tip/meta/types.d.ts +1 -0
- package/dist/types/components.d.ts +55 -0
- package/dist/types/dictionary/autocomplete.d.ts +2 -0
- package/dist/types/dictionary/button.d.ts +6 -0
- package/dist/types/dictionary/color.d.ts +3 -0
- package/dist/types/dictionary/file-extensions.d.ts +11 -0
- package/dist/types/dictionary/floating-ui.d.ts +3 -0
- package/dist/types/dictionary/icon.d.ts +4 -0
- package/dist/types/dictionary/input.d.ts +5 -0
- package/dist/types/dictionary/loading.d.ts +2 -0
- package/dist/types/dictionary/text.d.ts +2 -0
- package/dist/types/dictionary/typography.d.ts +11 -0
- package/dist/types/dictionary/variant.d.ts +11 -0
- package/dist/types/fixtures/cities.d.ts +2 -0
- package/dist/types/fixtures/filenames.d.ts +2 -0
- package/dist/types/interface/input-value.d.ts +4 -0
- package/dist/types/stencil-public-runtime.d.ts +1681 -0
- package/dist/types/type/autocomplete.d.ts +2 -0
- package/dist/types/type/button.d.ts +5 -0
- package/dist/types/type/file-types.d.ts +1 -0
- package/dist/types/type/floating-ui.d.ts +2 -0
- package/dist/types/type/form-rel.d.ts +1 -0
- package/dist/types/type/input.d.ts +4 -0
- package/dist/types/type/loading.d.ts +1 -0
- package/dist/types/type/text.d.ts +1 -0
- package/dist/types/type/typography.d.ts +10 -0
- package/dist/types/type/variant-file-format.d.ts +11 -0
- package/dist/types/type/variant.d.ts +12 -0
- package/documentation.json +568 -0
- package/loader/cdn.js +3 -0
- package/loader/index.cjs.js +3 -0
- package/loader/index.d.ts +21 -0
- package/loader/index.es2017.js +3 -0
- package/loader/index.js +4 -0
- package/loader/package.json +11 -0
- package/package.json +59 -0
- package/readme.md +33 -0
- package/src/common/aria.ts +39 -0
- package/src/common/file.ts +63 -0
- package/src/common/icon.ts +25 -0
- package/src/common/keyboard-manager.ts +50 -0
- package/src/common/locale.ts +31 -0
- package/src/common/unit.ts +33 -0
- package/src/common/yugop/core.ts +47 -0
- package/src/common/yugop/index.ts +4 -0
- package/src/common/yugop/random-text.ts +95 -0
- package/src/common/yugop/utils/math.ts +21 -0
- package/src/common/yugop/utils/noop.ts +1 -0
- package/src/common/yugop/utils/prng.ts +35 -0
- package/src/common/yugop/utils/string.ts +4 -0
- package/src/components/mds-input-tip/.gitlab-ci.yml +25 -0
- package/src/components/mds-input-tip/mds-input-tip.css +52 -0
- package/src/components/mds-input-tip/mds-input-tip.tsx +28 -0
- package/src/components/mds-input-tip/meta/types.ts +3 -0
- package/src/components/mds-input-tip/readme.md +18 -0
- package/src/components/mds-input-tip/test/mds-input-tip.e2e.ts +11 -0
- package/src/components.d.ts +55 -0
- package/src/dictionary/autocomplete.ts +62 -0
- package/src/dictionary/button.ts +41 -0
- package/src/dictionary/color.ts +24 -0
- package/src/dictionary/file-extensions.ts +81 -0
- package/src/dictionary/floating-ui.ts +25 -0
- package/src/dictionary/icon.ts +15 -0
- package/src/dictionary/input.ts +48 -0
- package/src/dictionary/loading.ts +9 -0
- package/src/dictionary/text.ts +9 -0
- package/src/dictionary/typography.ts +88 -0
- package/src/dictionary/variant.ts +111 -0
- package/src/fixtures/cities.ts +116 -0
- package/src/fixtures/filenames.ts +60 -0
- package/src/fixtures/icons.json +344 -0
- package/src/fixtures/iconsauce.json +257 -0
- package/src/interface/input-value.ts +5 -0
- package/src/tailwind/components.css +15 -0
- package/src/type/autocomplete.ts +69 -0
- package/src/type/button.ts +28 -0
- package/src/type/file-types.ts +55 -0
- package/src/type/floating-ui.ts +17 -0
- package/src/type/form-rel.ts +11 -0
- package/src/type/input.ts +25 -0
- package/src/type/loading.ts +3 -0
- package/src/type/text.ts +4 -0
- package/src/type/typography.ts +65 -0
- package/src/type/variant-file-format.ts +137 -0
- package/src/type/variant.ts +99 -0
- package/www/build/index.esm.js +0 -0
- package/www/build/mds-input-tip.esm.js +1 -0
- package/www/build/mds-input-tip.js +127 -0
- package/www/build/p-22b86e20.js +2 -0
- package/www/build/p-3428f886.system.js +2 -0
- package/www/build/p-50ea2036.system.js +1 -0
- package/www/build/p-630886b5.entry.js +1 -0
- package/www/build/p-89e037f5.system.entry.js +1 -0
- package/www/build/p-e5fe0b68.system.js +1 -0
- package/www/host.config.json +15 -0
package/dist/stats.json
ADDED
@@ -0,0 +1,500 @@
|
|
1
|
+
{
|
2
|
+
"timestamp": "2024-08-23T15:17:13",
|
3
|
+
"compiler": {
|
4
|
+
"name": "node",
|
5
|
+
"version": "20.10.0"
|
6
|
+
},
|
7
|
+
"app": {
|
8
|
+
"namespace": "MdsInputTip",
|
9
|
+
"fsNamespace": "mds-input-tip",
|
10
|
+
"components": 1,
|
11
|
+
"entries": 1,
|
12
|
+
"bundles": 82,
|
13
|
+
"outputs": [
|
14
|
+
{
|
15
|
+
"name": "dist-collection",
|
16
|
+
"files": 41,
|
17
|
+
"generatedFiles": [
|
18
|
+
"./dist/collection/common/aria.js",
|
19
|
+
"./dist/collection/common/file.js",
|
20
|
+
"./dist/collection/common/icon.js",
|
21
|
+
"./dist/collection/common/keyboard-manager.js",
|
22
|
+
"./dist/collection/common/locale.js",
|
23
|
+
"./dist/collection/common/unit.js",
|
24
|
+
"./dist/collection/common/yugop/core.js",
|
25
|
+
"./dist/collection/common/yugop/index.js",
|
26
|
+
"./dist/collection/common/yugop/random-text.js",
|
27
|
+
"./dist/collection/common/yugop/utils/math.js",
|
28
|
+
"./dist/collection/common/yugop/utils/noop.js",
|
29
|
+
"./dist/collection/common/yugop/utils/prng.js",
|
30
|
+
"./dist/collection/common/yugop/utils/string.js",
|
31
|
+
"./dist/collection/components/mds-input-tip/mds-input-tip.js",
|
32
|
+
"./dist/collection/components/mds-input-tip/meta/types.js",
|
33
|
+
"./dist/collection/components/mds-input-tip/test/mds-input-tip.e2e.js",
|
34
|
+
"./dist/collection/dictionary/autocomplete.js",
|
35
|
+
"./dist/collection/dictionary/button.js",
|
36
|
+
"./dist/collection/dictionary/color.js",
|
37
|
+
"./dist/collection/dictionary/file-extensions.js",
|
38
|
+
"./dist/collection/dictionary/floating-ui.js",
|
39
|
+
"./dist/collection/dictionary/icon.js",
|
40
|
+
"./dist/collection/dictionary/input.js",
|
41
|
+
"./dist/collection/dictionary/loading.js",
|
42
|
+
"./dist/collection/dictionary/text.js",
|
43
|
+
"./dist/collection/dictionary/typography.js",
|
44
|
+
"./dist/collection/dictionary/variant.js",
|
45
|
+
"./dist/collection/fixtures/cities.js",
|
46
|
+
"./dist/collection/fixtures/filenames.js",
|
47
|
+
"./dist/collection/interface/input-value.js",
|
48
|
+
"./dist/collection/type/autocomplete.js",
|
49
|
+
"./dist/collection/type/button.js",
|
50
|
+
"./dist/collection/type/file-types.js",
|
51
|
+
"./dist/collection/type/floating-ui.js",
|
52
|
+
"./dist/collection/type/form-rel.js",
|
53
|
+
"./dist/collection/type/input.js",
|
54
|
+
"./dist/collection/type/loading.js",
|
55
|
+
"./dist/collection/type/text.js",
|
56
|
+
"./dist/collection/type/typography.js",
|
57
|
+
"./dist/collection/type/variant-file-format.js",
|
58
|
+
"./dist/collection/type/variant.js"
|
59
|
+
]
|
60
|
+
},
|
61
|
+
{
|
62
|
+
"name": "dist-custom-elements",
|
63
|
+
"files": 4,
|
64
|
+
"generatedFiles": [
|
65
|
+
"./dist/components/index.d.ts",
|
66
|
+
"./dist/components/index.js",
|
67
|
+
"./dist/components/mds-input-tip.d.ts",
|
68
|
+
"./dist/components/mds-input-tip.js"
|
69
|
+
]
|
70
|
+
},
|
71
|
+
{
|
72
|
+
"name": "dist-lazy",
|
73
|
+
"files": 35,
|
74
|
+
"generatedFiles": [
|
75
|
+
"./dist/cjs/index-fe2df682.js",
|
76
|
+
"./dist/cjs/index.cjs.js",
|
77
|
+
"./dist/cjs/loader.cjs.js",
|
78
|
+
"./dist/cjs/mds-input-tip.cjs.entry.js",
|
79
|
+
"./dist/cjs/mds-input-tip.cjs.js",
|
80
|
+
"./dist/esm-es5/index-351c5c8a.js",
|
81
|
+
"./dist/esm-es5/index.js",
|
82
|
+
"./dist/esm-es5/loader.js",
|
83
|
+
"./dist/esm-es5/mds-input-tip.entry.js",
|
84
|
+
"./dist/esm-es5/mds-input-tip.js",
|
85
|
+
"./dist/esm/index-351c5c8a.js",
|
86
|
+
"./dist/esm/index.js",
|
87
|
+
"./dist/esm/loader.js",
|
88
|
+
"./dist/esm/mds-input-tip.entry.js",
|
89
|
+
"./dist/esm/mds-input-tip.js",
|
90
|
+
"./dist/index.cjs.js",
|
91
|
+
"./dist/index.js",
|
92
|
+
"./dist/mds-input-tip/index.esm.js",
|
93
|
+
"./dist/mds-input-tip/mds-input-tip.esm.js",
|
94
|
+
"./dist/mds-input-tip/mds-input-tip.js",
|
95
|
+
"./dist/mds-input-tip/p-22b86e20.js",
|
96
|
+
"./dist/mds-input-tip/p-3428f886.system.js",
|
97
|
+
"./dist/mds-input-tip/p-50ea2036.system.js",
|
98
|
+
"./dist/mds-input-tip/p-630886b5.entry.js",
|
99
|
+
"./dist/mds-input-tip/p-89e037f5.system.entry.js",
|
100
|
+
"./dist/mds-input-tip/p-e5fe0b68.system.js",
|
101
|
+
"./www/build/index.esm.js",
|
102
|
+
"./www/build/mds-input-tip.esm.js",
|
103
|
+
"./www/build/mds-input-tip.js",
|
104
|
+
"./www/build/p-22b86e20.js",
|
105
|
+
"./www/build/p-3428f886.system.js",
|
106
|
+
"./www/build/p-50ea2036.system.js",
|
107
|
+
"./www/build/p-630886b5.entry.js",
|
108
|
+
"./www/build/p-89e037f5.system.entry.js",
|
109
|
+
"./www/build/p-e5fe0b68.system.js"
|
110
|
+
]
|
111
|
+
},
|
112
|
+
{
|
113
|
+
"name": "dist-types",
|
114
|
+
"files": 1,
|
115
|
+
"generatedFiles": [
|
116
|
+
"./dist/types/stencil-public-runtime.d.ts"
|
117
|
+
]
|
118
|
+
},
|
119
|
+
{
|
120
|
+
"name": "www",
|
121
|
+
"files": 1,
|
122
|
+
"generatedFiles": [
|
123
|
+
"./www/host.config.json"
|
124
|
+
]
|
125
|
+
}
|
126
|
+
]
|
127
|
+
},
|
128
|
+
"options": {
|
129
|
+
"minifyJs": true,
|
130
|
+
"minifyCss": true,
|
131
|
+
"hashFileNames": true,
|
132
|
+
"hashedFileNameLength": 8,
|
133
|
+
"buildEs5": true
|
134
|
+
},
|
135
|
+
"formats": {
|
136
|
+
"esmBrowser": [
|
137
|
+
{
|
138
|
+
"key": "mds-input-tip.entry",
|
139
|
+
"components": [
|
140
|
+
"mds-input-tip"
|
141
|
+
],
|
142
|
+
"bundleId": "p-630886b5",
|
143
|
+
"fileName": "p-630886b5.entry.js",
|
144
|
+
"imports": [
|
145
|
+
"p-22b86e20.js"
|
146
|
+
],
|
147
|
+
"originalByteSize": 5397
|
148
|
+
}
|
149
|
+
],
|
150
|
+
"esm": [
|
151
|
+
{
|
152
|
+
"key": "mds-input-tip.entry",
|
153
|
+
"components": [
|
154
|
+
"mds-input-tip"
|
155
|
+
],
|
156
|
+
"bundleId": "mds-input-tip",
|
157
|
+
"fileName": "mds-input-tip.entry.js",
|
158
|
+
"imports": [
|
159
|
+
"index-351c5c8a.js"
|
160
|
+
],
|
161
|
+
"originalByteSize": 5401
|
162
|
+
}
|
163
|
+
],
|
164
|
+
"es5": [
|
165
|
+
{
|
166
|
+
"key": "mds-input-tip.entry",
|
167
|
+
"components": [
|
168
|
+
"mds-input-tip"
|
169
|
+
],
|
170
|
+
"bundleId": "mds-input-tip",
|
171
|
+
"fileName": "mds-input-tip.entry.js",
|
172
|
+
"imports": [
|
173
|
+
"index-351c5c8a.js"
|
174
|
+
],
|
175
|
+
"originalByteSize": 5401
|
176
|
+
}
|
177
|
+
],
|
178
|
+
"system": [
|
179
|
+
{
|
180
|
+
"key": "mds-input-tip.entry",
|
181
|
+
"components": [
|
182
|
+
"mds-input-tip"
|
183
|
+
],
|
184
|
+
"bundleId": "p-89e037f5.system",
|
185
|
+
"fileName": "p-89e037f5.system.entry.js",
|
186
|
+
"imports": [
|
187
|
+
"p-3428f886.system.js"
|
188
|
+
],
|
189
|
+
"originalByteSize": 5670
|
190
|
+
}
|
191
|
+
],
|
192
|
+
"commonjs": [
|
193
|
+
{
|
194
|
+
"key": "mds-input-tip.entry",
|
195
|
+
"components": [
|
196
|
+
"mds-input-tip"
|
197
|
+
],
|
198
|
+
"bundleId": "mds-input-tip.cjs",
|
199
|
+
"fileName": "mds-input-tip.cjs.entry.js",
|
200
|
+
"imports": [
|
201
|
+
"index-fe2df682.js"
|
202
|
+
],
|
203
|
+
"originalByteSize": 5471
|
204
|
+
}
|
205
|
+
]
|
206
|
+
},
|
207
|
+
"components": [
|
208
|
+
{
|
209
|
+
"tag": "mds-input-tip",
|
210
|
+
"path": "./src/components/mds-input-tip/mds-input-tip.js",
|
211
|
+
"source": "./src/components/mds-input-tip/mds-input-tip.tsx",
|
212
|
+
"elementRef": null,
|
213
|
+
"componentClassName": "MdsInputTip",
|
214
|
+
"assetsDirs": [],
|
215
|
+
"dependencies": [],
|
216
|
+
"dependents": [],
|
217
|
+
"directDependencies": [],
|
218
|
+
"directDependents": [],
|
219
|
+
"docs": {
|
220
|
+
"tags": [],
|
221
|
+
"text": ""
|
222
|
+
},
|
223
|
+
"encapsulation": "shadow",
|
224
|
+
"excludeFromCollection": false,
|
225
|
+
"events": [],
|
226
|
+
"internal": false,
|
227
|
+
"listeners": [],
|
228
|
+
"methods": [],
|
229
|
+
"potentialCmpRefs": [],
|
230
|
+
"properties": [
|
231
|
+
{
|
232
|
+
"name": "active",
|
233
|
+
"type": "boolean",
|
234
|
+
"attribute": "active",
|
235
|
+
"reflect": true,
|
236
|
+
"mutable": false,
|
237
|
+
"required": false,
|
238
|
+
"optional": true,
|
239
|
+
"defaultValue": "false",
|
240
|
+
"complexType": {
|
241
|
+
"original": "boolean",
|
242
|
+
"resolved": "boolean | undefined",
|
243
|
+
"references": {}
|
244
|
+
},
|
245
|
+
"docs": {
|
246
|
+
"tags": [],
|
247
|
+
"text": "Specifies the position of the element relative to its container"
|
248
|
+
},
|
249
|
+
"internal": false
|
250
|
+
},
|
251
|
+
{
|
252
|
+
"name": "position",
|
253
|
+
"type": "string",
|
254
|
+
"attribute": "position",
|
255
|
+
"reflect": true,
|
256
|
+
"mutable": false,
|
257
|
+
"required": false,
|
258
|
+
"optional": true,
|
259
|
+
"defaultValue": "'top'",
|
260
|
+
"complexType": {
|
261
|
+
"original": "InputTipPositionType",
|
262
|
+
"resolved": "\"bottom\" | \"top\" | undefined",
|
263
|
+
"references": {
|
264
|
+
"InputTipPositionType": {
|
265
|
+
"location": "import",
|
266
|
+
"path": "./meta/types",
|
267
|
+
"id": "src/components/mds-input-tip/meta/types.ts::InputTipPositionType"
|
268
|
+
}
|
269
|
+
}
|
270
|
+
},
|
271
|
+
"docs": {
|
272
|
+
"tags": [],
|
273
|
+
"text": "Specifies the position of the element relative to its container"
|
274
|
+
},
|
275
|
+
"internal": false
|
276
|
+
}
|
277
|
+
],
|
278
|
+
"shadowDelegatesFocus": false,
|
279
|
+
"states": []
|
280
|
+
}
|
281
|
+
],
|
282
|
+
"entries": [
|
283
|
+
{
|
284
|
+
"cmps": [
|
285
|
+
{
|
286
|
+
"attachInternalsMemberName": null,
|
287
|
+
"formAssociated": false,
|
288
|
+
"tagName": "mds-input-tip",
|
289
|
+
"excludeFromCollection": false,
|
290
|
+
"isCollectionDependency": false,
|
291
|
+
"componentClassName": "MdsInputTip",
|
292
|
+
"elementRef": null,
|
293
|
+
"encapsulation": "shadow",
|
294
|
+
"shadowDelegatesFocus": false,
|
295
|
+
"properties": [
|
296
|
+
{
|
297
|
+
"name": "active",
|
298
|
+
"type": "boolean",
|
299
|
+
"attribute": "active",
|
300
|
+
"reflect": true,
|
301
|
+
"mutable": false,
|
302
|
+
"required": false,
|
303
|
+
"optional": true,
|
304
|
+
"defaultValue": "false",
|
305
|
+
"complexType": {
|
306
|
+
"original": "boolean",
|
307
|
+
"resolved": "boolean | undefined",
|
308
|
+
"references": {}
|
309
|
+
},
|
310
|
+
"docs": {
|
311
|
+
"tags": [],
|
312
|
+
"text": "Specifies the position of the element relative to its container"
|
313
|
+
},
|
314
|
+
"internal": false
|
315
|
+
},
|
316
|
+
{
|
317
|
+
"name": "position",
|
318
|
+
"type": "string",
|
319
|
+
"attribute": "position",
|
320
|
+
"reflect": true,
|
321
|
+
"mutable": false,
|
322
|
+
"required": false,
|
323
|
+
"optional": true,
|
324
|
+
"defaultValue": "'top'",
|
325
|
+
"complexType": {
|
326
|
+
"original": "InputTipPositionType",
|
327
|
+
"resolved": "\"bottom\" | \"top\" | undefined",
|
328
|
+
"references": {
|
329
|
+
"InputTipPositionType": {
|
330
|
+
"location": "import",
|
331
|
+
"path": "./meta/types",
|
332
|
+
"id": "src/components/mds-input-tip/meta/types.ts::InputTipPositionType"
|
333
|
+
}
|
334
|
+
}
|
335
|
+
},
|
336
|
+
"docs": {
|
337
|
+
"tags": [],
|
338
|
+
"text": "Specifies the position of the element relative to its container"
|
339
|
+
},
|
340
|
+
"internal": false
|
341
|
+
}
|
342
|
+
],
|
343
|
+
"virtualProperties": [],
|
344
|
+
"states": [],
|
345
|
+
"methods": [],
|
346
|
+
"listeners": [],
|
347
|
+
"events": [],
|
348
|
+
"watchers": [],
|
349
|
+
"styles": [
|
350
|
+
{
|
351
|
+
"modeName": "$",
|
352
|
+
"styleId": "MDS-INPUT-TIP",
|
353
|
+
"styleStr": null,
|
354
|
+
"styleIdentifier": "MdsInputTipStyle",
|
355
|
+
"externalStyles": [
|
356
|
+
{
|
357
|
+
"absolutePath": "/builds/maggiolispa/ricerca-sviluppo-new-media/magma/design-system/projects/stencil/.build/mds-input-tip/src/components/mds-input-tip/mds-input-tip.css",
|
358
|
+
"relativePath": "mds-input-tip.css",
|
359
|
+
"originalComponentPath": "mds-input-tip.css"
|
360
|
+
}
|
361
|
+
]
|
362
|
+
}
|
363
|
+
],
|
364
|
+
"internal": false,
|
365
|
+
"assetsDirs": [],
|
366
|
+
"styleDocs": [],
|
367
|
+
"docs": {
|
368
|
+
"tags": [],
|
369
|
+
"text": ""
|
370
|
+
},
|
371
|
+
"jsFilePath": "/builds/maggiolispa/ricerca-sviluppo-new-media/magma/design-system/projects/stencil/.build/mds-input-tip/src/components/mds-input-tip/mds-input-tip.js",
|
372
|
+
"sourceFilePath": "/builds/maggiolispa/ricerca-sviluppo-new-media/magma/design-system/projects/stencil/.build/mds-input-tip/src/components/mds-input-tip/mds-input-tip.tsx",
|
373
|
+
"sourceMapPath": null,
|
374
|
+
"hasAttributeChangedCallbackFn": false,
|
375
|
+
"hasComponentWillLoadFn": false,
|
376
|
+
"hasComponentDidLoadFn": false,
|
377
|
+
"hasComponentShouldUpdateFn": false,
|
378
|
+
"hasComponentWillUpdateFn": false,
|
379
|
+
"hasComponentDidUpdateFn": false,
|
380
|
+
"hasComponentWillRenderFn": false,
|
381
|
+
"hasComponentDidRenderFn": false,
|
382
|
+
"hasComponentDidUnloadFn": false,
|
383
|
+
"hasConnectedCallbackFn": false,
|
384
|
+
"hasDisconnectedCallbackFn": false,
|
385
|
+
"hasElement": false,
|
386
|
+
"hasEvent": false,
|
387
|
+
"hasLifecycle": false,
|
388
|
+
"hasListener": false,
|
389
|
+
"hasListenerTarget": false,
|
390
|
+
"hasListenerTargetWindow": false,
|
391
|
+
"hasListenerTargetDocument": false,
|
392
|
+
"hasListenerTargetBody": false,
|
393
|
+
"hasListenerTargetParent": false,
|
394
|
+
"hasMember": true,
|
395
|
+
"hasMethod": false,
|
396
|
+
"hasMode": false,
|
397
|
+
"hasAttribute": true,
|
398
|
+
"hasProp": true,
|
399
|
+
"hasPropNumber": false,
|
400
|
+
"hasPropBoolean": true,
|
401
|
+
"hasPropString": true,
|
402
|
+
"hasPropMutable": false,
|
403
|
+
"hasReflect": true,
|
404
|
+
"hasRenderFn": true,
|
405
|
+
"hasState": false,
|
406
|
+
"hasStyle": true,
|
407
|
+
"hasVdomAttribute": false,
|
408
|
+
"hasVdomXlink": false,
|
409
|
+
"hasVdomClass": false,
|
410
|
+
"hasVdomFunctional": false,
|
411
|
+
"hasVdomKey": false,
|
412
|
+
"hasVdomListener": false,
|
413
|
+
"hasVdomPropOrAttr": false,
|
414
|
+
"hasVdomRef": false,
|
415
|
+
"hasVdomRender": true,
|
416
|
+
"hasVdomStyle": false,
|
417
|
+
"hasVdomText": false,
|
418
|
+
"hasWatchCallback": false,
|
419
|
+
"isPlain": false,
|
420
|
+
"htmlAttrNames": [],
|
421
|
+
"htmlTagNames": [
|
422
|
+
"slot"
|
423
|
+
],
|
424
|
+
"htmlParts": [],
|
425
|
+
"isUpdateable": true,
|
426
|
+
"potentialCmpRefs": [],
|
427
|
+
"dependents": [],
|
428
|
+
"dependencies": [],
|
429
|
+
"directDependents": [],
|
430
|
+
"directDependencies": []
|
431
|
+
}
|
432
|
+
],
|
433
|
+
"entryKey": "mds-input-tip.entry"
|
434
|
+
}
|
435
|
+
],
|
436
|
+
"componentGraph": {
|
437
|
+
"sc-mds-input-tip": [
|
438
|
+
"p-22b86e20.js"
|
439
|
+
]
|
440
|
+
},
|
441
|
+
"sourceGraph": {
|
442
|
+
"./src/common/aria.ts": [],
|
443
|
+
"./src/common/file.ts": [],
|
444
|
+
"./src/common/icon.ts": [],
|
445
|
+
"./src/common/keyboard-manager.ts": [],
|
446
|
+
"./src/common/locale.ts": [],
|
447
|
+
"./src/common/unit.ts": [],
|
448
|
+
"./src/common/yugop/core.ts": [
|
449
|
+
"./src/common/yugop/utils/math",
|
450
|
+
"./src/common/yugop/utils/prng",
|
451
|
+
"./src/common/yugop/utils/string"
|
452
|
+
],
|
453
|
+
"./src/common/yugop/index.ts": [],
|
454
|
+
"./src/common/yugop/random-text.ts": [
|
455
|
+
"./src/common/yugop/core",
|
456
|
+
"./src/common/yugop/utils/noop"
|
457
|
+
],
|
458
|
+
"./src/common/yugop/utils/math.ts": [
|
459
|
+
"./src/common/yugop/utils/prng"
|
460
|
+
],
|
461
|
+
"./src/common/yugop/utils/noop.ts": [],
|
462
|
+
"./src/common/yugop/utils/prng.ts": [],
|
463
|
+
"./src/common/yugop/utils/string.ts": [],
|
464
|
+
"./src/components/mds-input-tip/mds-input-tip.tsx": [],
|
465
|
+
"./src/components/mds-input-tip/meta/types.ts": [],
|
466
|
+
"./src/components/mds-input-tip/test/mds-input-tip.e2e.ts": [],
|
467
|
+
"./src/dictionary/autocomplete.ts": [],
|
468
|
+
"./src/dictionary/button.ts": [],
|
469
|
+
"./src/dictionary/color.ts": [],
|
470
|
+
"./src/dictionary/file-extensions.ts": [],
|
471
|
+
"./src/dictionary/floating-ui.ts": [],
|
472
|
+
"./src/dictionary/icon.ts": [
|
473
|
+
"./src/fixtures/icons.json",
|
474
|
+
"./src/fixtures/iconsauce.json"
|
475
|
+
],
|
476
|
+
"./src/dictionary/input.ts": [],
|
477
|
+
"./src/dictionary/loading.ts": [],
|
478
|
+
"./src/dictionary/text.ts": [],
|
479
|
+
"./src/dictionary/typography.ts": [],
|
480
|
+
"./src/dictionary/variant.ts": [],
|
481
|
+
"./src/fixtures/cities.ts": [],
|
482
|
+
"./src/fixtures/filenames.ts": [],
|
483
|
+
"./src/interface/input-value.ts": [],
|
484
|
+
"./src/type/autocomplete.ts": [],
|
485
|
+
"./src/type/button.ts": [],
|
486
|
+
"./src/type/file-types.ts": [],
|
487
|
+
"./src/type/floating-ui.ts": [],
|
488
|
+
"./src/type/form-rel.ts": [],
|
489
|
+
"./src/type/input.ts": [],
|
490
|
+
"./src/type/loading.ts": [],
|
491
|
+
"./src/type/text.ts": [],
|
492
|
+
"./src/type/typography.ts": [],
|
493
|
+
"./src/type/variant-file-format.ts": [],
|
494
|
+
"./src/type/variant.ts": []
|
495
|
+
},
|
496
|
+
"rollupResults": {
|
497
|
+
"modules": []
|
498
|
+
},
|
499
|
+
"collections": []
|
500
|
+
}
|
@@ -0,0 +1,5 @@
|
|
1
|
+
declare const unslugName: (name: string) => string;
|
2
|
+
declare const setAttributeIfEmpty: (element: HTMLElement, attribute: string, value: string) => string;
|
3
|
+
declare const hashValue: (value: string) => string;
|
4
|
+
declare const hashRandomValue: (value?: string) => string;
|
5
|
+
export { unslugName, setAttributeIfEmpty, hashRandomValue, hashValue, };
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { ExtensionInfo } from '@dictionary/file-extensions';
|
2
|
+
interface FileFormatsVariants {
|
3
|
+
color: string;
|
4
|
+
icon: string;
|
5
|
+
iconBackground: string;
|
6
|
+
variant: string;
|
7
|
+
}
|
8
|
+
declare const getName: (rawFilename: string) => string;
|
9
|
+
declare const getSuffix: (rawFilename: string, suffixOverride?: string) => string;
|
10
|
+
declare const getExtensionInfos: (rawFilename: string, suffixOverride?: string) => ExtensionInfo;
|
11
|
+
declare const getFormatsVariant: (rawFilename: string, suffixOverride?: string) => FileFormatsVariants;
|
12
|
+
export { getExtensionInfos, getFormatsVariant, getSuffix, getName, };
|
@@ -0,0 +1,5 @@
|
|
1
|
+
declare const BASE64_SVG_ICON = "data:image/svg+xml;base64,";
|
2
|
+
declare const MARKUP_SVG_ICON = "<svg ";
|
3
|
+
declare const isIconFormatIsBase64: (icon?: string) => boolean;
|
4
|
+
declare const isIconFormatIsSVG: (icon?: string) => boolean;
|
5
|
+
export { isIconFormatIsBase64, isIconFormatIsSVG, BASE64_SVG_ICON, MARKUP_SVG_ICON, };
|
@@ -0,0 +1,12 @@
|
|
1
|
+
export declare class KeyboardManager {
|
2
|
+
private escapeCallback;
|
3
|
+
private elements;
|
4
|
+
private handleClickBehaviorDispatchEvent;
|
5
|
+
private handleEscapeBehaviorDispatchEvent;
|
6
|
+
addElement: (el: HTMLElement, name?: string) => void;
|
7
|
+
removeElement: (name?: string) => void;
|
8
|
+
attachClickBehavior: (name?: string) => void;
|
9
|
+
detachClickBehavior: (name?: string) => void;
|
10
|
+
attachEscapeBehavior: (callback: () => void) => void;
|
11
|
+
detachEscapeBehavior: () => void;
|
12
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
type LocaleConfig = {
|
2
|
+
it?: Record<string, string>;
|
3
|
+
en?: Record<string, string>;
|
4
|
+
gr?: Record<string, string>;
|
5
|
+
};
|
6
|
+
export declare class Locale {
|
7
|
+
defaultLanguage: string;
|
8
|
+
language: string;
|
9
|
+
config: LocaleConfig;
|
10
|
+
constructor(configData: LocaleConfig);
|
11
|
+
lang: (element: HTMLElement) => void;
|
12
|
+
get: (tag: string) => string;
|
13
|
+
}
|
14
|
+
export {};
|
@@ -0,0 +1,10 @@
|
|
1
|
+
export declare const generateRandomCharCodeArray: (arg0: number, arg1: number) => (arg0: string) => number[];
|
2
|
+
type Options = {
|
3
|
+
str: string;
|
4
|
+
minCharCode: number;
|
5
|
+
maxCharCode: number;
|
6
|
+
placeholderChar: string;
|
7
|
+
charStep: number;
|
8
|
+
};
|
9
|
+
export declare const charCodeArrayToString: (arg0: Options) => (arg0: number[]) => string;
|
10
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './random-text';
|
@@ -0,0 +1,31 @@
|
|
1
|
+
type Options = {
|
2
|
+
str: string;
|
3
|
+
speed?: number;
|
4
|
+
placeholderChar?: string;
|
5
|
+
frameOffset?: number;
|
6
|
+
charOffset?: number;
|
7
|
+
charStep?: number;
|
8
|
+
minCharCode?: number;
|
9
|
+
maxCharCode?: number;
|
10
|
+
onProgress?: (arg0: string) => void;
|
11
|
+
onComplete?: (arg0: string) => void;
|
12
|
+
};
|
13
|
+
declare class RandomText {
|
14
|
+
static defaults: Options;
|
15
|
+
str: string;
|
16
|
+
speed: number;
|
17
|
+
placeholderChar: string;
|
18
|
+
frameOffset: number;
|
19
|
+
charOffset: number;
|
20
|
+
charStep: number;
|
21
|
+
minCharCode: number;
|
22
|
+
maxCharCode: number;
|
23
|
+
onProgress: (...args: Array<string>) => string;
|
24
|
+
onComplete: (...args: Array<string>) => string;
|
25
|
+
rafId: number;
|
26
|
+
constructor(options: Options);
|
27
|
+
start: () => void;
|
28
|
+
stop(): void;
|
29
|
+
step(randoms: number[], stepCount: number, speed: number): void;
|
30
|
+
}
|
31
|
+
export default RandomText;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const noop: (...rest: unknown[]) => unknown;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const strToCharCodeArray: (arg0: string) => number[];
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { InputTipPositionType } from './meta/types';
|
2
|
+
export declare class MdsInputTip {
|
3
|
+
/**
|
4
|
+
* Specifies the position of the element relative to its container
|
5
|
+
*/
|
6
|
+
readonly active?: boolean;
|
7
|
+
/**
|
8
|
+
* Specifies the position of the element relative to its container
|
9
|
+
*/
|
10
|
+
readonly position?: InputTipPositionType;
|
11
|
+
render(): any;
|
12
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export type InputTipPositionType = 'top' | 'bottom';
|