@maggioli-design-system/mds-input-range 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index-5f49298d.js +1790 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +13 -0
- package/dist/cjs/mds-input-range.cjs.entry.js +81 -0
- package/dist/cjs/mds-input-range.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/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-range/mds-input-range.css +280 -0
- package/dist/collection/components/mds-input-range/mds-input-range.js +182 -0
- package/dist/collection/components/mds-input-range/test/mds-input-range.e2e.js +10 -0
- package/dist/collection/components/mds-input-range/test/mds-input-range.stories.js +40 -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-range.d.ts +11 -0
- package/dist/components/mds-input-range.js +100 -0
- package/dist/documentation.d.ts +401 -0
- package/dist/documentation.json +158 -0
- package/dist/esm/index-1ed4544f.js +1761 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +9 -0
- package/dist/esm/mds-input-range.entry.js +77 -0
- package/dist/esm/mds-input-range.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-1ed4544f.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-range.entry.js +1 -0
- package/dist/esm-es5/mds-input-range.js +1 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/mds-input-range/index.esm.js +0 -0
- package/dist/mds-input-range/mds-input-range.esm.js +1 -0
- package/dist/mds-input-range/mds-input-range.js +127 -0
- package/dist/mds-input-range/p-1afe8cf0.system.entry.js +1 -0
- package/dist/mds-input-range/p-50ea2036.system.js +1 -0
- package/dist/mds-input-range/p-5dcf9ad8.js +2 -0
- package/dist/mds-input-range/p-7a418e68.system.js +1 -0
- package/dist/mds-input-range/p-c87cd964.entry.js +1 -0
- package/dist/mds-input-range/p-e5d9d1a5.system.js +2 -0
- package/dist/stats.json +669 -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/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-range/mds-input-range.d.ts +36 -0
- package/dist/types/components/mds-input-range/test/mds-input-range.stories.d.ts +39 -0
- package/dist/types/components.d.ts +88 -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 +596 -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 +49 -0
- package/readme.md +53 -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/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-range/.gitlab-ci.yml +25 -0
- package/src/components/mds-input-range/mds-input-range.css +109 -0
- package/src/components/mds-input-range/mds-input-range.tsx +117 -0
- package/src/components/mds-input-range/readme.md +38 -0
- package/src/components/mds-input-range/test/mds-input-range.e2e.ts +12 -0
- package/src/components/mds-input-range/test/mds-input-range.stories.tsx +50 -0
- package/src/components.d.ts +88 -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 +332 -0
- package/src/fixtures/iconsauce.json +253 -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-range.esm.js +1 -0
- package/www/build/mds-input-range.js +127 -0
- package/www/build/p-1afe8cf0.system.entry.js +1 -0
- package/www/build/p-50ea2036.system.js +1 -0
- package/www/build/p-5dcf9ad8.js +2 -0
- package/www/build/p-7a418e68.system.js +1 -0
- package/www/build/p-c87cd964.entry.js +1 -0
- package/www/build/p-e5d9d1a5.system.js +2 -0
- package/www/host.config.json +15 -0
|
@@ -0,0 +1,596 @@
|
|
|
1
|
+
{
|
|
2
|
+
"timestamp": "2024-07-29T15:05:26",
|
|
3
|
+
"compiler": {
|
|
4
|
+
"name": "@stencil/core",
|
|
5
|
+
"version": "4.10.0",
|
|
6
|
+
"typescriptVersion": "5.3.3"
|
|
7
|
+
},
|
|
8
|
+
"components": [
|
|
9
|
+
{
|
|
10
|
+
"filePath": "src/components/mds-input-range/mds-input-range.tsx",
|
|
11
|
+
"encapsulation": "shadow",
|
|
12
|
+
"tag": "mds-input-range",
|
|
13
|
+
"readme": "# mds-input-range\n\n\n\nThis is a web-component from Maggioli Design System [Magma](https://magma.maggiolicloud.it), built with StencilJS, TypeScript, Storybook. It's based on the web-component standard and it's designed to be agnostic from the JavaScirpt framework you are using.\n",
|
|
14
|
+
"docs": "This is a web-component from Maggioli Design System [Magma](https://magma.maggiolicloud.it), built with StencilJS, TypeScript, Storybook. It's based on the web-component standard and it's designed to be agnostic from the JavaScirpt framework you are using.",
|
|
15
|
+
"docsTags": [],
|
|
16
|
+
"usage": {},
|
|
17
|
+
"props": [
|
|
18
|
+
{
|
|
19
|
+
"name": "max",
|
|
20
|
+
"type": "number",
|
|
21
|
+
"complexType": {
|
|
22
|
+
"original": "number",
|
|
23
|
+
"resolved": "number",
|
|
24
|
+
"references": {}
|
|
25
|
+
},
|
|
26
|
+
"mutable": false,
|
|
27
|
+
"attr": "max",
|
|
28
|
+
"reflectToAttr": false,
|
|
29
|
+
"docs": "The greatest value in the range of permitted values",
|
|
30
|
+
"docsTags": [],
|
|
31
|
+
"default": "100",
|
|
32
|
+
"values": [
|
|
33
|
+
{
|
|
34
|
+
"type": "number"
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
"optional": false,
|
|
38
|
+
"required": false
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "min",
|
|
42
|
+
"type": "number",
|
|
43
|
+
"complexType": {
|
|
44
|
+
"original": "number",
|
|
45
|
+
"resolved": "number",
|
|
46
|
+
"references": {}
|
|
47
|
+
},
|
|
48
|
+
"mutable": false,
|
|
49
|
+
"attr": "min",
|
|
50
|
+
"reflectToAttr": false,
|
|
51
|
+
"docs": "The lowest value in the range of permitted values",
|
|
52
|
+
"docsTags": [],
|
|
53
|
+
"default": "0",
|
|
54
|
+
"values": [
|
|
55
|
+
{
|
|
56
|
+
"type": "number"
|
|
57
|
+
}
|
|
58
|
+
],
|
|
59
|
+
"optional": false,
|
|
60
|
+
"required": false
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"name": "step",
|
|
64
|
+
"type": "number",
|
|
65
|
+
"complexType": {
|
|
66
|
+
"original": "number",
|
|
67
|
+
"resolved": "number",
|
|
68
|
+
"references": {}
|
|
69
|
+
},
|
|
70
|
+
"mutable": false,
|
|
71
|
+
"attr": "step",
|
|
72
|
+
"reflectToAttr": false,
|
|
73
|
+
"docs": "The step attribute is a number that specifies the granularity that\nthe value must adhere to, or the special value any, which is described below.",
|
|
74
|
+
"docsTags": [],
|
|
75
|
+
"default": "1",
|
|
76
|
+
"values": [
|
|
77
|
+
{
|
|
78
|
+
"type": "number"
|
|
79
|
+
}
|
|
80
|
+
],
|
|
81
|
+
"optional": false,
|
|
82
|
+
"required": false
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "value",
|
|
86
|
+
"type": "number",
|
|
87
|
+
"complexType": {
|
|
88
|
+
"original": "number",
|
|
89
|
+
"resolved": "number",
|
|
90
|
+
"references": {}
|
|
91
|
+
},
|
|
92
|
+
"mutable": true,
|
|
93
|
+
"attr": "value",
|
|
94
|
+
"reflectToAttr": true,
|
|
95
|
+
"docs": "The value attribute contains a number which contains a representation of the selected number.",
|
|
96
|
+
"docsTags": [],
|
|
97
|
+
"values": [
|
|
98
|
+
{
|
|
99
|
+
"type": "number"
|
|
100
|
+
}
|
|
101
|
+
],
|
|
102
|
+
"optional": false,
|
|
103
|
+
"required": false
|
|
104
|
+
}
|
|
105
|
+
],
|
|
106
|
+
"methods": [],
|
|
107
|
+
"events": [
|
|
108
|
+
{
|
|
109
|
+
"event": "mdsInputRangeChange",
|
|
110
|
+
"detail": "number",
|
|
111
|
+
"bubbles": true,
|
|
112
|
+
"complexType": {
|
|
113
|
+
"original": "number",
|
|
114
|
+
"resolved": "number",
|
|
115
|
+
"references": {}
|
|
116
|
+
},
|
|
117
|
+
"cancelable": true,
|
|
118
|
+
"composed": true,
|
|
119
|
+
"docs": "Emits when the input range is changed",
|
|
120
|
+
"docsTags": []
|
|
121
|
+
}
|
|
122
|
+
],
|
|
123
|
+
"listeners": [],
|
|
124
|
+
"styles": [
|
|
125
|
+
{
|
|
126
|
+
"name": "--mds-input-range-thumb-background",
|
|
127
|
+
"annotation": "prop",
|
|
128
|
+
"docs": ""
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"name": "--mds-input-range-thumb-size",
|
|
132
|
+
"annotation": "prop",
|
|
133
|
+
"docs": "Sets the thumb width and height of the component"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"name": "--mds-input-range-track-background",
|
|
137
|
+
"annotation": "prop",
|
|
138
|
+
"docs": ""
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"name": "--mds-input-range-track-progress-background",
|
|
142
|
+
"annotation": "prop",
|
|
143
|
+
"docs": ""
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"name": "--mds-input-range-track-size",
|
|
147
|
+
"annotation": "prop",
|
|
148
|
+
"docs": ""
|
|
149
|
+
}
|
|
150
|
+
],
|
|
151
|
+
"slots": [],
|
|
152
|
+
"parts": [],
|
|
153
|
+
"dependents": [],
|
|
154
|
+
"dependencies": [
|
|
155
|
+
"mds-text"
|
|
156
|
+
],
|
|
157
|
+
"dependencyGraph": {
|
|
158
|
+
"mds-input-range": [
|
|
159
|
+
"mds-text"
|
|
160
|
+
]
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
],
|
|
164
|
+
"typeLibrary": {
|
|
165
|
+
"src/components/mds-accordion/meta/event-detail.ts::MdsAccordionEventDetail": {
|
|
166
|
+
"declaration": "export interface MdsAccordionEventDetail {\n children: NodeListOf<HTMLMdsAccordionItemElement>\n selected: string\n}",
|
|
167
|
+
"docstring": "",
|
|
168
|
+
"path": "src/components/mds-accordion/meta/event-detail.ts"
|
|
169
|
+
},
|
|
170
|
+
"src/type/typography.ts::TypographyTitleType": {
|
|
171
|
+
"declaration": "export type TypographyTitleType =\n | 'action'\n | 'h1'\n | 'h2'\n | 'h3'\n | 'h4'\n | 'h5'\n | 'h6'",
|
|
172
|
+
"docstring": "",
|
|
173
|
+
"path": "src/type/typography.ts"
|
|
174
|
+
},
|
|
175
|
+
"src/components/mds-accordion-item/meta/event-detail.ts::MdsAccordionItemEventDetail": {
|
|
176
|
+
"declaration": "export interface MdsAccordionItemEventDetail {\n id: string;\n selected: boolean;\n}",
|
|
177
|
+
"docstring": "",
|
|
178
|
+
"path": "src/components/mds-accordion-item/meta/event-detail.ts"
|
|
179
|
+
},
|
|
180
|
+
"src/components/mds-accordion-timer-item/meta/event-detail.ts::MdsAccordionTimerItemEventDetail": {
|
|
181
|
+
"declaration": "export interface MdsAccordionTimerItemEventDetail {\n selected: boolean;\n uuid: number;\n}",
|
|
182
|
+
"docstring": "",
|
|
183
|
+
"path": "src/components/mds-accordion-timer-item/meta/event-detail.ts"
|
|
184
|
+
},
|
|
185
|
+
"src/type/variant.ts::ToneMinimalVariantType": {
|
|
186
|
+
"declaration": "export type ToneMinimalVariantType =\n| 'strong'\n| 'weak'",
|
|
187
|
+
"docstring": "",
|
|
188
|
+
"path": "src/type/variant.ts"
|
|
189
|
+
},
|
|
190
|
+
"src/type/variant.ts::ThemeFullVariantAvatarType": {
|
|
191
|
+
"declaration": "export type ThemeFullVariantAvatarType =\n | 'amaranth'\n | 'aqua'\n | 'blue'\n | 'error'\n | 'green'\n | 'info'\n | 'lime'\n | 'orange'\n | 'orchid'\n | 'primary'\n | 'sky'\n | 'success'\n | 'violet'\n | 'warning'\n | 'yellow'",
|
|
192
|
+
"docstring": "",
|
|
193
|
+
"path": "src/type/variant.ts"
|
|
194
|
+
},
|
|
195
|
+
"src/type/variant.ts::ThemeFullVariantType": {
|
|
196
|
+
"declaration": "export type ThemeFullVariantType =\n | 'amaranth'\n | 'aqua'\n | 'blue'\n | 'dark'\n | 'error'\n | 'green'\n | 'info'\n | 'light'\n | 'lime'\n | 'orange'\n | 'orchid'\n | 'sky'\n | 'success'\n | 'violet'\n | 'warning'\n | 'yellow'",
|
|
197
|
+
"docstring": "",
|
|
198
|
+
"path": "src/type/variant.ts"
|
|
199
|
+
},
|
|
200
|
+
"src/type/variant.ts::ToneSimpleVariantType": {
|
|
201
|
+
"declaration": "export type ToneSimpleVariantType =\n | 'strong'\n | 'weak'\n | 'quiet'",
|
|
202
|
+
"docstring": "",
|
|
203
|
+
"path": "src/type/variant.ts"
|
|
204
|
+
},
|
|
205
|
+
"src/type/typography.ts::TypographyInfoType": {
|
|
206
|
+
"declaration": "export type TypographyInfoType =\n | 'caption'\n | 'detail'\n | 'label'\n | 'option'\n | 'paragraph'\n | 'tip'",
|
|
207
|
+
"docstring": "",
|
|
208
|
+
"path": "src/type/typography.ts"
|
|
209
|
+
},
|
|
210
|
+
"src/type/typography.ts::TypographyReadType": {
|
|
211
|
+
"declaration": "export type TypographyReadType =\n | 'caption'\n | 'detail'\n | 'paragraph'",
|
|
212
|
+
"docstring": "",
|
|
213
|
+
"path": "src/type/typography.ts"
|
|
214
|
+
},
|
|
215
|
+
"src/type/typography.ts::TypographyVariants": {
|
|
216
|
+
"declaration": "export type TypographyVariants =\n | 'title'\n | 'info'\n | 'read'\n | 'code'",
|
|
217
|
+
"docstring": "",
|
|
218
|
+
"path": "src/type/typography.ts"
|
|
219
|
+
},
|
|
220
|
+
"src/type/variant.ts::ThemeVariantType": {
|
|
221
|
+
"declaration": "export type ThemeVariantType =\n | 'dark'\n | 'error'\n | 'info'\n | 'light'\n | 'primary'\n | 'success'\n | 'warning'",
|
|
222
|
+
"docstring": "",
|
|
223
|
+
"path": "src/type/variant.ts"
|
|
224
|
+
},
|
|
225
|
+
"src/components/mds-benchmark-bar/meta/types.ts::BenchmarkBarTypographyType": {
|
|
226
|
+
"declaration": "export type BenchmarkBarTypographyType =\n | 'option'\n | 'label'",
|
|
227
|
+
"docstring": "",
|
|
228
|
+
"path": "src/components/mds-benchmark-bar/meta/types.ts"
|
|
229
|
+
},
|
|
230
|
+
"src/components/mds-bibliography/meta/types.ts::BibliographyFormatType": {
|
|
231
|
+
"declaration": "export type BibliographyFormatType =\n | 'apa' // American Psychological Association - Simmons, B. (2015, January 9). The tale of two Flaccos. Grantland. http://grantland.com/the-triangle/the-tale-of-two-flaccos/\n | 'mla' // Modern Language Association - Author's Last name, First name. \"Title of Source.\" Title of Container, Other contributors, Version, Numbers, Publisher, Publication Date, Location.\n | 'turabian'",
|
|
232
|
+
"docstring": "",
|
|
233
|
+
"path": "src/components/mds-bibliography/meta/types.ts"
|
|
234
|
+
},
|
|
235
|
+
"src/components/mds-bibliography/meta/types.ts::BibliographyRelationshipType": {
|
|
236
|
+
"declaration": "export type BibliographyRelationshipType =\n | 'author'\n | 'external'",
|
|
237
|
+
"docstring": "",
|
|
238
|
+
"path": "src/components/mds-bibliography/meta/types.ts"
|
|
239
|
+
},
|
|
240
|
+
"src/components/mds-breadcrumb/meta/event-detail.ts::MdsBreadcrumbEventDetail": {
|
|
241
|
+
"declaration": "export interface MdsBreadcrumbEventDetail {\n caller: HTMLMdsBreadcrumbItemElement\n id: string\n selected?: boolean\n}",
|
|
242
|
+
"docstring": "",
|
|
243
|
+
"path": "src/components/mds-breadcrumb/meta/event-detail.ts"
|
|
244
|
+
},
|
|
245
|
+
"src/components/mds-breadcrumb-item/meta/event-detail.ts::MdsBreadcrumbItemEventDetail": {
|
|
246
|
+
"declaration": "export interface MdsBreadcrumbItemEventDetail {\n id: string\n selected: boolean\n}",
|
|
247
|
+
"docstring": "",
|
|
248
|
+
"path": "src/components/mds-breadcrumb-item/meta/event-detail.ts"
|
|
249
|
+
},
|
|
250
|
+
"src/type/button.ts::ButtonIconPositionType": {
|
|
251
|
+
"declaration": "export type ButtonIconPositionType =\n | 'left'\n | 'right'",
|
|
252
|
+
"docstring": "",
|
|
253
|
+
"path": "src/type/button.ts"
|
|
254
|
+
},
|
|
255
|
+
"src/type/button.ts::ButtonType": {
|
|
256
|
+
"declaration": "export type ButtonType =\n | 'a'\n | 'button'\n | 'reset'\n | 'submit'",
|
|
257
|
+
"docstring": "",
|
|
258
|
+
"path": "src/type/button.ts"
|
|
259
|
+
},
|
|
260
|
+
"src/type/button.ts::ButtonVariantType": {
|
|
261
|
+
"declaration": "export type ButtonVariantType =\n | 'primary'\n | 'dark'\n | 'light'\n | 'error'\n | 'info'\n | 'success'\n | 'warning'",
|
|
262
|
+
"docstring": "",
|
|
263
|
+
"path": "src/type/button.ts"
|
|
264
|
+
},
|
|
265
|
+
"src/type/variant.ts::ToneVariantType": {
|
|
266
|
+
"declaration": "export type ToneVariantType =\n | 'strong' // background strong\n | 'weak' // background weak\n | 'ghost' // bordered\n | 'quiet'",
|
|
267
|
+
"docstring": "",
|
|
268
|
+
"path": "src/type/variant.ts"
|
|
269
|
+
},
|
|
270
|
+
"src/type/button.ts::ButtonSizeType": {
|
|
271
|
+
"declaration": "export type ButtonSizeType =\n | 'sm'\n | 'md'\n | 'lg'\n | 'xl'",
|
|
272
|
+
"docstring": "",
|
|
273
|
+
"path": "src/type/button.ts"
|
|
274
|
+
},
|
|
275
|
+
"src/type/button.ts::ButtonTargetType": {
|
|
276
|
+
"declaration": "export type ButtonTargetType =\n |'self'\n |'blank'",
|
|
277
|
+
"docstring": "",
|
|
278
|
+
"path": "src/type/button.ts"
|
|
279
|
+
},
|
|
280
|
+
"src/components/mds-chip/meta/interface.ts::MdsChipEvent": {
|
|
281
|
+
"declaration": "interface MdsChipEvent {\n event: Event\n element: HTMLMdsChipElement\n}",
|
|
282
|
+
"docstring": "",
|
|
283
|
+
"path": "src/components/mds-chip/meta/interface.ts"
|
|
284
|
+
},
|
|
285
|
+
"src/components/mds-dropdown/meta/types.ts::DropdownInteractionType": {
|
|
286
|
+
"declaration": "export type DropdownInteractionType =\n | 'click'\n | 'mouseover'",
|
|
287
|
+
"docstring": "",
|
|
288
|
+
"path": "src/components/mds-dropdown/meta/types.ts"
|
|
289
|
+
},
|
|
290
|
+
"src/type/floating-ui.ts::FloatingUIPlacement": {
|
|
291
|
+
"declaration": "export type FloatingUIPlacement =\n | 'bottom'\n | 'bottom-end'\n | 'bottom-start'\n | 'left'\n | 'left-end'\n | 'left-start'\n | 'right'\n | 'right-end'\n | 'right-start'\n | 'top'\n | 'top-end'\n | 'top-start'",
|
|
292
|
+
"docstring": "",
|
|
293
|
+
"path": "src/type/floating-ui.ts"
|
|
294
|
+
},
|
|
295
|
+
"src/type/floating-ui.ts::FloatingUIStrategy": {
|
|
296
|
+
"declaration": "export type FloatingUIStrategy =\n | 'absolute'\n | 'fixed'",
|
|
297
|
+
"docstring": "",
|
|
298
|
+
"path": "src/type/floating-ui.ts"
|
|
299
|
+
},
|
|
300
|
+
"src/components/mds-dropdown/meta/event-detail.ts::MdsDropdownEventDetail": {
|
|
301
|
+
"declaration": "export interface MdsDropdownEventDetail {\n caller: HTMLElement\n visible: boolean\n}",
|
|
302
|
+
"docstring": "",
|
|
303
|
+
"path": "src/components/mds-dropdown/meta/event-detail.ts"
|
|
304
|
+
},
|
|
305
|
+
"src/type/file-types.ts::ExtensionSuffixType": {
|
|
306
|
+
"declaration": "export type ExtensionSuffixType =\n | '7z'\n | 'ace'\n | 'ai'\n | 'db'\n | 'default'\n | 'dmg'\n | 'doc'\n | 'docm'\n | 'docx'\n | 'eml'\n | 'eps'\n | 'exe'\n | 'flac'\n | 'gif'\n | 'heic'\n | 'htm'\n | 'html'\n | 'jpe'\n | 'jpeg'\n | 'jpg'\n | 'js'\n | 'json'\n | 'jsx'\n | 'm2v'\n | 'mp2'\n | 'mp3'\n | 'mp4'\n | 'mp4v'\n | 'mpeg'\n | 'mpg'\n | 'mpg4'\n | 'mpga'\n | 'odp'\n | 'ods'\n | 'odt'\n | 'pdf'\n | 'php'\n | 'png'\n | 'ppt'\n | 'rar'\n | 'rtf'\n | 'sass'\n | 'shtml'\n | 'svg'\n | 'tar'\n | 'tiff'\n | 'ts'\n | 'txt'\n | 'wav'\n | 'webp'\n | 'xar'\n | 'xls'\n | 'xlsx'\n | 'zip'",
|
|
307
|
+
"docstring": "",
|
|
308
|
+
"path": "src/type/file-types.ts"
|
|
309
|
+
},
|
|
310
|
+
"src/components/mds-file/meta/event-detail.ts::MdsFileEventDetail": {
|
|
311
|
+
"declaration": "export interface MdsFileEventDetail {\n description: string\n extension: string\n filename: string\n target: HTMLMdsFileElement\n type: string\n}",
|
|
312
|
+
"docstring": "",
|
|
313
|
+
"path": "src/components/mds-file/meta/event-detail.ts"
|
|
314
|
+
},
|
|
315
|
+
"src/type/text.ts::TypographyTruncateType": {
|
|
316
|
+
"declaration": "export type TypographyTruncateType =\n | 'all'\n | 'none'\n | 'word'",
|
|
317
|
+
"docstring": "",
|
|
318
|
+
"path": "src/type/text.ts"
|
|
319
|
+
},
|
|
320
|
+
"src/components/mds-file-preview/meta/event-detail.ts::MdsFilePreviewEventDetail": {
|
|
321
|
+
"declaration": "export interface MdsFilePreviewEventDetail {\n extension: string\n filename: string\n target: HTMLMdsFileElement\n}",
|
|
322
|
+
"docstring": "",
|
|
323
|
+
"path": "src/components/mds-file-preview/meta/event-detail.ts"
|
|
324
|
+
},
|
|
325
|
+
"src/components/mds-filter/meta/event-detail.ts::MdsFilterEventDetail": {
|
|
326
|
+
"declaration": "export interface MdsFilterEventDetail {\n children: NodeListOf<HTMLMdsFilterItemElement>\n value: string\n}",
|
|
327
|
+
"docstring": "",
|
|
328
|
+
"path": "src/components/mds-filter/meta/event-detail.ts"
|
|
329
|
+
},
|
|
330
|
+
"src/components/mds-filter-item/meta/event-detail.ts::MdsFilterItemEventDetail": {
|
|
331
|
+
"declaration": "export interface MdsFilterItemEventDetail {\n id: string\n selected: boolean\n}",
|
|
332
|
+
"docstring": "",
|
|
333
|
+
"path": "src/components/mds-filter-item/meta/event-detail.ts"
|
|
334
|
+
},
|
|
335
|
+
"src/components/mds-form/meta/types.ts::CharacterSetType": {
|
|
336
|
+
"declaration": "export type CharacterSetType =\n | '8859-1'\n | 'ansi'\n | 'ascii'\n | 'utf-8'",
|
|
337
|
+
"docstring": "",
|
|
338
|
+
"path": "src/components/mds-form/meta/types.ts"
|
|
339
|
+
},
|
|
340
|
+
"src/components/mds-form/meta/types.ts::FormAutocompleteType": {
|
|
341
|
+
"declaration": "export type FormAutocompleteType =\n | 'off'\n | 'on'",
|
|
342
|
+
"docstring": "",
|
|
343
|
+
"path": "src/components/mds-form/meta/types.ts"
|
|
344
|
+
},
|
|
345
|
+
"src/components/mds-form/meta/types.ts::EnctypeType": {
|
|
346
|
+
"declaration": "export type EnctypeType =\n | 'application/x-www-form-urlencoded'\n | 'multipart/form-data'\n | 'text/plain'",
|
|
347
|
+
"docstring": "",
|
|
348
|
+
"path": "src/components/mds-form/meta/types.ts"
|
|
349
|
+
},
|
|
350
|
+
"src/components/mds-form/meta/types.ts::FormMethodType": {
|
|
351
|
+
"declaration": "export type FormMethodType =\n | 'get'\n | 'post'",
|
|
352
|
+
"docstring": "",
|
|
353
|
+
"path": "src/components/mds-form/meta/types.ts"
|
|
354
|
+
},
|
|
355
|
+
"src/components/mds-header-bar/meta/types.ts::MenuType": {
|
|
356
|
+
"declaration": "export type MenuType =\n | 'all'\n | 'desktop'\n | 'mobile'\n | 'none'",
|
|
357
|
+
"docstring": "",
|
|
358
|
+
"path": "src/components/mds-header-bar/meta/types.ts"
|
|
359
|
+
},
|
|
360
|
+
"src/components/mds-header/meta/event-detail.ts::MdsHeaderEventDetail": {
|
|
361
|
+
"declaration": "export interface MdsHeaderEventDetail {\n bar: HTMLMdsHeaderBarElement\n}",
|
|
362
|
+
"docstring": "",
|
|
363
|
+
"path": "src/components/mds-header/meta/event-detail.ts"
|
|
364
|
+
},
|
|
365
|
+
"src/components/mds-horizontal-scroll/meta/types.ts::ViewportType": {
|
|
366
|
+
"declaration": "export type ViewportType =\n | 'all'\n | 'tv'\n | 'xlarge'\n | 'large'\n | 'wide'\n | 'desktop'\n | 'tablet'\n | 'none'",
|
|
367
|
+
"docstring": "",
|
|
368
|
+
"path": "src/components/mds-horizontal-scroll/meta/types.ts"
|
|
369
|
+
},
|
|
370
|
+
"src/components/mds-horizontal-scroll/meta/types.ts::SnapType": {
|
|
371
|
+
"declaration": "export type SnapType =\n | 'center'\n | 'end'\n | 'none'\n | 'start'",
|
|
372
|
+
"docstring": "",
|
|
373
|
+
"path": "src/components/mds-horizontal-scroll/meta/types.ts"
|
|
374
|
+
},
|
|
375
|
+
"src/components/mds-img/meta/types.ts::CrossoriginType": {
|
|
376
|
+
"declaration": "export type CrossoriginType =\n | 'anonymous'\n | 'use-credentials'",
|
|
377
|
+
"docstring": "",
|
|
378
|
+
"path": "src/components/mds-img/meta/types.ts"
|
|
379
|
+
},
|
|
380
|
+
"src/type/loading.ts::LoadingType": {
|
|
381
|
+
"declaration": "export type LoadingType =\n | 'eager'\n | 'lazy'",
|
|
382
|
+
"docstring": "",
|
|
383
|
+
"path": "src/type/loading.ts"
|
|
384
|
+
},
|
|
385
|
+
"src/components/mds-img/meta/types.ts::ReferrerpolicyType": {
|
|
386
|
+
"declaration": "export type ReferrerpolicyType =\n | 'no-referrer'\n | 'no-referrer-when-downgrade'\n | 'origin'\n | 'origin-when-cross-origin'\n | 'unsafe-url'",
|
|
387
|
+
"docstring": "",
|
|
388
|
+
"path": "src/components/mds-img/meta/types.ts"
|
|
389
|
+
},
|
|
390
|
+
"src/components/mds-img/meta/event-detail.ts::MdsImgEventDetail": {
|
|
391
|
+
"declaration": "export interface MdsImgEventDetail {\n image: HTMLImageElement\n}",
|
|
392
|
+
"docstring": "",
|
|
393
|
+
"path": "src/components/mds-img/meta/event-detail.ts"
|
|
394
|
+
},
|
|
395
|
+
"src/type/autocomplete.ts::AutocompleteType": {
|
|
396
|
+
"declaration": "export type AutocompleteType =\n | 'additional-name'\n | 'address'\n | 'address-level1'\n | 'address-level2'\n | 'address-level3'\n | 'address-level4'\n | 'address-line1'\n | 'address-line2'\n | 'address-line3'\n | 'bday'\n | 'bday-day'\n | 'bday-month'\n | 'bday-year'\n | 'cc-additional-name'\n | 'cc-csc'\n | 'cc-exp'\n | 'cc-exp-month'\n | 'cc-exp-year'\n | 'cc-family-name'\n | 'cc-family-name'\n | 'cc-given-name'\n | 'cc-name'\n | 'cc-number'\n | 'cc-type'\n | 'country'\n | 'country-name'\n | 'current-password'\n | 'email'\n | 'family-name'\n | 'given-name'\n | 'honorific-prefix'\n | 'honorific-suffix'\n | 'impp'\n | 'language'\n | 'name'\n | 'new-password'\n | 'nickname'\n | 'off'\n | 'on'\n | 'one-time-code'\n | 'organization'\n | 'organization-title'\n | 'photo'\n | 'postal-code'\n | 'sex'\n | 'street-address'\n | 'tel'\n | 'tel-area-code'\n | 'tel-country-code'\n | 'tel-extension'\n | 'tel-local'\n | 'tel-national'\n | 'transaction-amount'\n | 'transaction-currency'\n | 'url'\n | 'username'",
|
|
397
|
+
"docstring": "",
|
|
398
|
+
"path": "src/type/autocomplete.ts"
|
|
399
|
+
},
|
|
400
|
+
"src/type/input.ts::InputControlsLayoutType": {
|
|
401
|
+
"declaration": "export type InputControlsLayoutType =\n | 'horizontal'\n | 'vertical'",
|
|
402
|
+
"docstring": "",
|
|
403
|
+
"path": "src/type/input.ts"
|
|
404
|
+
},
|
|
405
|
+
"src/type/input.ts::InputControlsIconType": {
|
|
406
|
+
"declaration": "export type InputControlsIconType =\n | 'arrow'\n | 'arithmetic'",
|
|
407
|
+
"docstring": "",
|
|
408
|
+
"path": "src/type/input.ts"
|
|
409
|
+
},
|
|
410
|
+
"src/type/variant.ts::ThemeStatusVariantType": {
|
|
411
|
+
"declaration": "export type ThemeStatusVariantType =\n | 'error'\n | 'info'\n | 'success'\n | 'warning'",
|
|
412
|
+
"docstring": "",
|
|
413
|
+
"path": "src/type/variant.ts"
|
|
414
|
+
},
|
|
415
|
+
"src/type/input.ts::InputTextType": {
|
|
416
|
+
"declaration": "export type InputTextType =\n | 'date'\n | 'email'\n | 'number'\n | 'password'\n | 'search'\n | 'tel'\n | 'text'\n | 'textarea'\n | 'time'\n | 'url'",
|
|
417
|
+
"docstring": "",
|
|
418
|
+
"path": "src/type/input.ts"
|
|
419
|
+
},
|
|
420
|
+
"src/type/typography.ts::TypographyInputType": {
|
|
421
|
+
"declaration": "export type TypographyInputType =\n | 'snippet'\n | 'detail'",
|
|
422
|
+
"docstring": "",
|
|
423
|
+
"path": "src/type/typography.ts"
|
|
424
|
+
},
|
|
425
|
+
"src/components/mds-input/meta/event-detail.ts::MdsInputEventDetail": {
|
|
426
|
+
"declaration": "export interface MdsInputEventDetail {\n value?: string\n}",
|
|
427
|
+
"docstring": "",
|
|
428
|
+
"path": "src/components/mds-input/meta/event-detail.ts"
|
|
429
|
+
},
|
|
430
|
+
"src/components/mds-input-field/meta/types.ts::InputFieldType": {
|
|
431
|
+
"declaration": "export type InputFieldType =\n | 'date'\n | 'email'\n | 'number'\n | 'password'\n | 'search'\n | 'tel'\n | 'text'\n | 'textarea'\n | 'time'\n | 'url'\n | 'cc'\n | 'cf'\n | 'isbn'\n | 'piva'",
|
|
432
|
+
"docstring": "",
|
|
433
|
+
"path": "src/components/mds-input-field/meta/types.ts"
|
|
434
|
+
},
|
|
435
|
+
"src/components/mds-input-field/meta/validators.ts::MdsValidatorFn": {
|
|
436
|
+
"declaration": "(input: string) => null | MdsValidationErrors",
|
|
437
|
+
"docstring": "",
|
|
438
|
+
"path": "src/components/mds-input-field/meta/validators.ts"
|
|
439
|
+
},
|
|
440
|
+
"src/components/mds-input-field/meta/validators.ts::MdsValidationErrors": {
|
|
441
|
+
"declaration": "export interface MdsValidationErrors {\n [key: string]: string\n}",
|
|
442
|
+
"docstring": "",
|
|
443
|
+
"path": "src/components/mds-input-field/meta/validators.ts"
|
|
444
|
+
},
|
|
445
|
+
"src/interface/input-value.ts::InputValue": {
|
|
446
|
+
"declaration": "export interface InputValue {\n value: InputValueType\n}",
|
|
447
|
+
"docstring": "",
|
|
448
|
+
"path": "src/interface/input-value.ts"
|
|
449
|
+
},
|
|
450
|
+
"src/components/mds-input-switch/meta/types.ts::InputSwitchSizeType": {
|
|
451
|
+
"declaration": "export type InputSwitchSizeType =\n | 'sm'\n | 'md'\n | 'lg'",
|
|
452
|
+
"docstring": "",
|
|
453
|
+
"path": "src/components/mds-input-switch/meta/types.ts"
|
|
454
|
+
},
|
|
455
|
+
"src/components/mds-input-switch/meta/types.ts::InputSwitchType": {
|
|
456
|
+
"declaration": "export type InputSwitchType =\n | 'checkbox'\n | 'radio'\n | 'switch'",
|
|
457
|
+
"docstring": "",
|
|
458
|
+
"path": "src/components/mds-input-switch/meta/types.ts"
|
|
459
|
+
},
|
|
460
|
+
"src/components/mds-input-switch/meta/event-detail.ts::MdsInputSwitchEventDetail": {
|
|
461
|
+
"declaration": "export interface MdsInputSwitchEventDetail {\n name: string\n checked: boolean\n value: string\n}",
|
|
462
|
+
"docstring": "",
|
|
463
|
+
"path": "src/components/mds-input-switch/meta/event-detail.ts"
|
|
464
|
+
},
|
|
465
|
+
"src/components/mds-input-upload/meta/types.ts::AttachmentSort": {
|
|
466
|
+
"declaration": "type AttachmentSort =\n 'status' |\n 'date'",
|
|
467
|
+
"docstring": "",
|
|
468
|
+
"path": "src/components/mds-input-upload/meta/types.ts"
|
|
469
|
+
},
|
|
470
|
+
"src/components/mds-input-upload/meta/types.ts::FileError": {
|
|
471
|
+
"declaration": "interface FileError {\n filename: string,\n errorMessage: string,\n}",
|
|
472
|
+
"docstring": "",
|
|
473
|
+
"path": "src/components/mds-input-upload/meta/types.ts"
|
|
474
|
+
},
|
|
475
|
+
"src/type/typography.ts::TypographyType": {
|
|
476
|
+
"declaration": "export type TypographyType =\n | 'action'\n | 'caption'\n | 'snippet'\n | 'detail'\n | 'h1'\n | 'h2'\n | 'h3'\n | 'h4'\n | 'h5'\n | 'h6'\n | 'hack'\n | 'label'\n | 'option'\n | 'paragraph'\n | 'tip'",
|
|
477
|
+
"docstring": "",
|
|
478
|
+
"path": "src/type/typography.ts"
|
|
479
|
+
},
|
|
480
|
+
"src/type/typography.ts::TypographyReadingVariants": {
|
|
481
|
+
"declaration": "export type TypographyReadingVariants =\n | 'info'\n | 'read'",
|
|
482
|
+
"docstring": "",
|
|
483
|
+
"path": "src/type/typography.ts"
|
|
484
|
+
},
|
|
485
|
+
"src/components/mds-modal/meta/types.ts::ModalPositionType": {
|
|
486
|
+
"declaration": "export type ModalPositionType =\n | 'bottom'\n | 'center'\n | 'left'\n | 'right'\n | 'top'",
|
|
487
|
+
"docstring": "",
|
|
488
|
+
"path": "src/components/mds-modal/meta/types.ts"
|
|
489
|
+
},
|
|
490
|
+
"src/type/variant.ts::LabelVariantType": {
|
|
491
|
+
"declaration": "export type LabelVariantType =\n | 'amaranth'\n | 'aqua'\n | 'blue'\n | 'green'\n | 'lime'\n | 'orange'\n | 'orchid'\n | 'sky'\n | 'violet'\n | 'yellow'",
|
|
492
|
+
"docstring": "",
|
|
493
|
+
"path": "src/type/variant.ts"
|
|
494
|
+
},
|
|
495
|
+
"src/components/mds-notification/meta/types.ts::StrategyType": {
|
|
496
|
+
"declaration": "export type StrategyType =\n | 'absolute'\n | 'fixed'\n | 'disabled'",
|
|
497
|
+
"docstring": "",
|
|
498
|
+
"path": "src/components/mds-notification/meta/types.ts"
|
|
499
|
+
},
|
|
500
|
+
"src/components/mds-paginator/meta/event-detail.ts::MdsPaginatorEventDetail": {
|
|
501
|
+
"declaration": "export interface MdsPaginatorEventDetail {\n caller?: HTMLMdsPaginatorItemElement\n page: number\n}",
|
|
502
|
+
"docstring": "",
|
|
503
|
+
"path": "src/components/mds-paginator/meta/event-detail.ts"
|
|
504
|
+
},
|
|
505
|
+
"src/components/mds-price-table-features-cell/meta/types.ts::PriceTableFeaturesCellType": {
|
|
506
|
+
"declaration": "export type PriceTableFeaturesCellType =\n | 'custom'\n | 'label'\n | 'supported'\n | 'text'\n | 'unsupported'",
|
|
507
|
+
"docstring": "",
|
|
508
|
+
"path": "src/components/mds-price-table-features-cell/meta/types.ts"
|
|
509
|
+
},
|
|
510
|
+
"src/components/mds-progress/meta/types.ts::DirectionType": {
|
|
511
|
+
"declaration": "export type DirectionType =\n | 'horizontal'\n | 'vertical'",
|
|
512
|
+
"docstring": "",
|
|
513
|
+
"path": "src/components/mds-progress/meta/types.ts"
|
|
514
|
+
},
|
|
515
|
+
"src/components/mds-push-notification/meta/types.ts::NotificationPreviewType": {
|
|
516
|
+
"declaration": "export type NotificationPreviewType =\n | 'avatar'\n | 'image'",
|
|
517
|
+
"docstring": "",
|
|
518
|
+
"path": "src/components/mds-push-notification/meta/types.ts"
|
|
519
|
+
},
|
|
520
|
+
"src/components/mds-push-notification/meta/event-detail.ts::MdsPushNotificationEventDetail": {
|
|
521
|
+
"declaration": "export interface MdsPushNotificationEventDetail {\n id: string;\n}",
|
|
522
|
+
"docstring": "",
|
|
523
|
+
"path": "src/components/mds-push-notification/meta/event-detail.ts"
|
|
524
|
+
},
|
|
525
|
+
"src/components/mds-stepper-bar/meta/event-detail.ts::MdsStepperBarEventDetail": {
|
|
526
|
+
"declaration": "export interface MdsStepperBarEventDetail {\n step: number\n value: string\n}",
|
|
527
|
+
"docstring": "",
|
|
528
|
+
"path": "src/components/mds-stepper-bar/meta/event-detail.ts"
|
|
529
|
+
},
|
|
530
|
+
"src/components/mds-stepper-bar-item/meta/event-detail.ts::MdsStepperBarItemEventDetail": {
|
|
531
|
+
"declaration": "export interface MdsStepperBarItemEventDetail {\n value: string\n}",
|
|
532
|
+
"docstring": "",
|
|
533
|
+
"path": "src/components/mds-stepper-bar-item/meta/event-detail.ts"
|
|
534
|
+
},
|
|
535
|
+
"src/components/mds-tab/meta/event-detail.ts::MdsTabEventDetail": {
|
|
536
|
+
"declaration": "export interface MdsTabEventDetail {\n id: number\n value?: string\n}",
|
|
537
|
+
"docstring": "",
|
|
538
|
+
"path": "src/components/mds-tab/meta/event-detail.ts"
|
|
539
|
+
},
|
|
540
|
+
"src/components/mds-tab-bar/meta/event-detail.ts::MdsTabBarEventDetail": {
|
|
541
|
+
"declaration": "export interface MdsTabBarEventDetail {\n index: number\n}",
|
|
542
|
+
"docstring": "",
|
|
543
|
+
"path": "src/components/mds-tab-bar/meta/event-detail.ts"
|
|
544
|
+
},
|
|
545
|
+
"src/type/typography.ts::TypographySmallerType": {
|
|
546
|
+
"declaration": "export type TypographySmallerType =\n | 'tip'\n | 'option'",
|
|
547
|
+
"docstring": "",
|
|
548
|
+
"path": "src/type/typography.ts"
|
|
549
|
+
},
|
|
550
|
+
"src/components/mds-tab-item/meta/event-detail.ts::MdsTabItemEventDetail": {
|
|
551
|
+
"declaration": "export interface MdsTabItemEventDetail {\n target: HTMLMdsTabItemElement\n value?: string\n}",
|
|
552
|
+
"docstring": "",
|
|
553
|
+
"path": "src/components/mds-tab-item/meta/event-detail.ts"
|
|
554
|
+
},
|
|
555
|
+
"src/components/mds-text/meta/types.ts::TextAnimationType": {
|
|
556
|
+
"declaration": "export type TextAnimationType =\n | 'none'\n | 'yugop'",
|
|
557
|
+
"docstring": "",
|
|
558
|
+
"path": "src/components/mds-text/meta/types.ts"
|
|
559
|
+
},
|
|
560
|
+
"src/components/mds-text/meta/types.ts::TypographyTagType": {
|
|
561
|
+
"declaration": "export type TypographyTagType =\n | 'abbr'\n | 'address'\n | 'article'\n | 'b'\n | 'bdo'\n | 'blockquote'\n | 'cite'\n | 'code'\n | 'dd'\n | 'del'\n | 'details'\n | 'dfn'\n | 'div'\n | 'dl'\n | 'dt'\n | 'em'\n | 'figcaption'\n | 'h1'\n | 'h2'\n | 'h3'\n | 'h4'\n | 'h5'\n | 'h6'\n | 'i'\n | 'ins'\n | 'kbd'\n | 'label'\n | 'legend'\n | 'li'\n | 'mark'\n | 'ol'\n | 'p'\n | 'pre'\n | 'q'\n | 'rb'\n | 'rt'\n | 'ruby'\n | 's'\n | 'samp'\n | 'small'\n | 'span'\n | 'strong'\n | 'sub'\n | 'summary'\n | 'sup'\n | 'time'\n | 'u'\n | 'ul'\n | 'var'",
|
|
562
|
+
"docstring": "",
|
|
563
|
+
"path": "src/components/mds-text/meta/types.ts"
|
|
564
|
+
},
|
|
565
|
+
"src/type/variant.ts::ThemeLuminanceVariantType": {
|
|
566
|
+
"declaration": "export type ThemeLuminanceVariantType =\n | 'dark'\n | 'light'",
|
|
567
|
+
"docstring": "",
|
|
568
|
+
"path": "src/type/variant.ts"
|
|
569
|
+
},
|
|
570
|
+
"src/components/mds-toast/meta/types.ts::ToastPosition": {
|
|
571
|
+
"declaration": "export type ToastPosition =\n | 'top-left'\n | 'top-center'\n | 'top-right'\n | 'bottom-left'\n | 'bottom-center'\n | 'bottom-right'",
|
|
572
|
+
"docstring": "",
|
|
573
|
+
"path": "src/components/mds-toast/meta/types.ts"
|
|
574
|
+
},
|
|
575
|
+
"src/type/typography.ts::TypographyTooltipType": {
|
|
576
|
+
"declaration": "export type TypographyTooltipType =\n | 'caption'\n | 'detail'\n | 'tip'",
|
|
577
|
+
"docstring": "",
|
|
578
|
+
"path": "src/type/typography.ts"
|
|
579
|
+
},
|
|
580
|
+
"src/components/mds-usage/meta/types.ts::UsageType": {
|
|
581
|
+
"declaration": "export type UsageType =\n | 'do'\n | 'dont'\n | 'info'\n | 'warn'",
|
|
582
|
+
"docstring": "",
|
|
583
|
+
"path": "src/components/mds-usage/meta/types.ts"
|
|
584
|
+
},
|
|
585
|
+
"src/components/mds-video-wall/meta/types.ts::NoiseType": {
|
|
586
|
+
"declaration": "export type NoiseType =\n | 'classic'\n | 'none'\n | 'sharp'\n | 'soft'\n | 'tv'",
|
|
587
|
+
"docstring": "",
|
|
588
|
+
"path": "src/components/mds-video-wall/meta/types.ts"
|
|
589
|
+
},
|
|
590
|
+
"src/components/mds-video-wall/meta/types.ts::PreloadType": {
|
|
591
|
+
"declaration": "export type PreloadType =\n | 'auto'\n | 'metadata'\n | 'none'",
|
|
592
|
+
"docstring": "",
|
|
593
|
+
"path": "src/components/mds-video-wall/meta/types.ts"
|
|
594
|
+
}
|
|
595
|
+
}
|
|
596
|
+
}
|
package/loader/cdn.js
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export * from '../dist/types/components';
|
|
2
|
+
export interface CustomElementsDefineOptions {
|
|
3
|
+
exclude?: string[];
|
|
4
|
+
resourcesUrl?: string;
|
|
5
|
+
syncQueue?: boolean;
|
|
6
|
+
jmp?: (c: Function) => any;
|
|
7
|
+
raf?: (c: FrameRequestCallback) => number;
|
|
8
|
+
ael?: (el: EventTarget, eventName: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions) => void;
|
|
9
|
+
rel?: (el: EventTarget, eventName: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions) => void;
|
|
10
|
+
}
|
|
11
|
+
export declare function defineCustomElements(win?: Window, opts?: CustomElementsDefineOptions): void;
|
|
12
|
+
export declare function applyPolyfills(): Promise<void>;
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Used to specify a nonce value that corresponds with an application's CSP.
|
|
16
|
+
* When set, the nonce will be added to all dynamically created script and style tags at runtime.
|
|
17
|
+
* Alternatively, the nonce value can be set on a meta tag in the DOM head
|
|
18
|
+
* (<meta name="csp-nonce" content="{ nonce value here }" />) which
|
|
19
|
+
* will result in the same behavior.
|
|
20
|
+
*/
|
|
21
|
+
export declare function setNonce(nonce: string): void;
|
package/loader/index.js
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
|
|
2
|
+
(function(){if("undefined"!==typeof window&&void 0!==window.Reflect&&void 0!==window.customElements){var a=HTMLElement;window.HTMLElement=function(){return Reflect.construct(a,[],this.constructor)};HTMLElement.prototype=a.prototype;HTMLElement.prototype.constructor=HTMLElement;Object.setPrototypeOf(HTMLElement,a)}})();
|
|
3
|
+
export * from '../dist/esm/polyfills/index.js';
|
|
4
|
+
export * from '../dist/esm-es5/loader.js';
|