@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
@@ -0,0 +1,568 @@
|
|
1
|
+
{
|
2
|
+
"timestamp": "2024-08-23T14:24:28",
|
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-tip/mds-input-tip.tsx",
|
11
|
+
"encapsulation": "shadow",
|
12
|
+
"tag": "mds-input-tip",
|
13
|
+
"readme": "# mds-input-tip\n\n\n",
|
14
|
+
"docs": "",
|
15
|
+
"docsTags": [],
|
16
|
+
"usage": {},
|
17
|
+
"props": [
|
18
|
+
{
|
19
|
+
"name": "active",
|
20
|
+
"type": "boolean | undefined",
|
21
|
+
"complexType": {
|
22
|
+
"original": "boolean",
|
23
|
+
"resolved": "boolean | undefined",
|
24
|
+
"references": {}
|
25
|
+
},
|
26
|
+
"mutable": false,
|
27
|
+
"attr": "active",
|
28
|
+
"reflectToAttr": true,
|
29
|
+
"docs": "Specifies the position of the element relative to its container",
|
30
|
+
"docsTags": [],
|
31
|
+
"default": "false",
|
32
|
+
"values": [
|
33
|
+
{
|
34
|
+
"type": "boolean"
|
35
|
+
},
|
36
|
+
{
|
37
|
+
"type": "undefined"
|
38
|
+
}
|
39
|
+
],
|
40
|
+
"optional": true,
|
41
|
+
"required": false
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"name": "position",
|
45
|
+
"type": "\"bottom\" | \"top\" | undefined",
|
46
|
+
"complexType": {
|
47
|
+
"original": "InputTipPositionType",
|
48
|
+
"resolved": "\"bottom\" | \"top\" | undefined",
|
49
|
+
"references": {
|
50
|
+
"InputTipPositionType": {
|
51
|
+
"location": "import",
|
52
|
+
"path": "./meta/types",
|
53
|
+
"id": "src/components/mds-input-tip/meta/types.ts::InputTipPositionType"
|
54
|
+
}
|
55
|
+
}
|
56
|
+
},
|
57
|
+
"mutable": false,
|
58
|
+
"attr": "position",
|
59
|
+
"reflectToAttr": true,
|
60
|
+
"docs": "Specifies the position of the element relative to its container",
|
61
|
+
"docsTags": [],
|
62
|
+
"default": "'top'",
|
63
|
+
"values": [
|
64
|
+
{
|
65
|
+
"value": "bottom",
|
66
|
+
"type": "string"
|
67
|
+
},
|
68
|
+
{
|
69
|
+
"value": "top",
|
70
|
+
"type": "string"
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"type": "undefined"
|
74
|
+
}
|
75
|
+
],
|
76
|
+
"optional": true,
|
77
|
+
"required": false
|
78
|
+
}
|
79
|
+
],
|
80
|
+
"methods": [],
|
81
|
+
"events": [],
|
82
|
+
"listeners": [],
|
83
|
+
"styles": [],
|
84
|
+
"slots": [],
|
85
|
+
"parts": [],
|
86
|
+
"dependents": [
|
87
|
+
"mds-input",
|
88
|
+
"mds-input-select"
|
89
|
+
],
|
90
|
+
"dependencies": [],
|
91
|
+
"dependencyGraph": {
|
92
|
+
"mds-input": [
|
93
|
+
"mds-input-tip"
|
94
|
+
],
|
95
|
+
"mds-input-select": [
|
96
|
+
"mds-input-tip"
|
97
|
+
]
|
98
|
+
}
|
99
|
+
}
|
100
|
+
],
|
101
|
+
"typeLibrary": {
|
102
|
+
"src/components/mds-accordion/meta/event-detail.ts::MdsAccordionEventDetail": {
|
103
|
+
"declaration": "export interface MdsAccordionEventDetail {\n children: NodeListOf<HTMLMdsAccordionItemElement>\n selected: string\n}",
|
104
|
+
"docstring": "",
|
105
|
+
"path": "src/components/mds-accordion/meta/event-detail.ts"
|
106
|
+
},
|
107
|
+
"src/type/typography.ts::TypographyTitleType": {
|
108
|
+
"declaration": "export type TypographyTitleType =\n | 'action'\n | 'h1'\n | 'h2'\n | 'h3'\n | 'h4'\n | 'h5'\n | 'h6'",
|
109
|
+
"docstring": "",
|
110
|
+
"path": "src/type/typography.ts"
|
111
|
+
},
|
112
|
+
"src/components/mds-accordion-item/meta/event-detail.ts::MdsAccordionItemEventDetail": {
|
113
|
+
"declaration": "export interface MdsAccordionItemEventDetail {\n id: string;\n selected: boolean;\n}",
|
114
|
+
"docstring": "",
|
115
|
+
"path": "src/components/mds-accordion-item/meta/event-detail.ts"
|
116
|
+
},
|
117
|
+
"src/components/mds-accordion-timer-item/meta/event-detail.ts::MdsAccordionTimerItemEventDetail": {
|
118
|
+
"declaration": "export interface MdsAccordionTimerItemEventDetail {\n selected: boolean;\n uuid: number;\n}",
|
119
|
+
"docstring": "",
|
120
|
+
"path": "src/components/mds-accordion-timer-item/meta/event-detail.ts"
|
121
|
+
},
|
122
|
+
"src/type/variant.ts::ToneMinimalVariantType": {
|
123
|
+
"declaration": "export type ToneMinimalVariantType =\n| 'strong'\n| 'weak'",
|
124
|
+
"docstring": "",
|
125
|
+
"path": "src/type/variant.ts"
|
126
|
+
},
|
127
|
+
"src/type/variant.ts::ThemeFullVariantAvatarType": {
|
128
|
+
"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'",
|
129
|
+
"docstring": "",
|
130
|
+
"path": "src/type/variant.ts"
|
131
|
+
},
|
132
|
+
"src/type/variant.ts::ThemeFullVariantType": {
|
133
|
+
"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'",
|
134
|
+
"docstring": "",
|
135
|
+
"path": "src/type/variant.ts"
|
136
|
+
},
|
137
|
+
"src/type/variant.ts::ToneSimpleVariantType": {
|
138
|
+
"declaration": "export type ToneSimpleVariantType =\n | 'strong'\n | 'weak'\n | 'quiet'",
|
139
|
+
"docstring": "",
|
140
|
+
"path": "src/type/variant.ts"
|
141
|
+
},
|
142
|
+
"src/type/typography.ts::TypographyInfoType": {
|
143
|
+
"declaration": "export type TypographyInfoType =\n | 'caption'\n | 'detail'\n | 'label'\n | 'option'\n | 'paragraph'\n | 'tip'",
|
144
|
+
"docstring": "",
|
145
|
+
"path": "src/type/typography.ts"
|
146
|
+
},
|
147
|
+
"src/type/typography.ts::TypographyReadType": {
|
148
|
+
"declaration": "export type TypographyReadType =\n | 'caption'\n | 'detail'\n | 'paragraph'",
|
149
|
+
"docstring": "",
|
150
|
+
"path": "src/type/typography.ts"
|
151
|
+
},
|
152
|
+
"src/type/typography.ts::TypographyVariants": {
|
153
|
+
"declaration": "export type TypographyVariants =\n | 'title'\n | 'info'\n | 'read'\n | 'code'",
|
154
|
+
"docstring": "",
|
155
|
+
"path": "src/type/typography.ts"
|
156
|
+
},
|
157
|
+
"src/type/variant.ts::ThemeVariantType": {
|
158
|
+
"declaration": "export type ThemeVariantType =\n | 'dark'\n | 'error'\n | 'info'\n | 'light'\n | 'primary'\n | 'success'\n | 'warning'",
|
159
|
+
"docstring": "",
|
160
|
+
"path": "src/type/variant.ts"
|
161
|
+
},
|
162
|
+
"src/components/mds-benchmark-bar/meta/types.ts::BenchmarkBarTypographyType": {
|
163
|
+
"declaration": "export type BenchmarkBarTypographyType =\n | 'option'\n | 'label'",
|
164
|
+
"docstring": "",
|
165
|
+
"path": "src/components/mds-benchmark-bar/meta/types.ts"
|
166
|
+
},
|
167
|
+
"src/components/mds-bibliography/meta/types.ts::BibliographyFormatType": {
|
168
|
+
"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'",
|
169
|
+
"docstring": "",
|
170
|
+
"path": "src/components/mds-bibliography/meta/types.ts"
|
171
|
+
},
|
172
|
+
"src/components/mds-bibliography/meta/types.ts::BibliographyRelationshipType": {
|
173
|
+
"declaration": "export type BibliographyRelationshipType =\n | 'author'\n | 'external'",
|
174
|
+
"docstring": "",
|
175
|
+
"path": "src/components/mds-bibliography/meta/types.ts"
|
176
|
+
},
|
177
|
+
"src/components/mds-breadcrumb/meta/event-detail.ts::MdsBreadcrumbEventDetail": {
|
178
|
+
"declaration": "export interface MdsBreadcrumbEventDetail {\n caller: HTMLMdsBreadcrumbItemElement\n id: string\n selected?: boolean\n}",
|
179
|
+
"docstring": "",
|
180
|
+
"path": "src/components/mds-breadcrumb/meta/event-detail.ts"
|
181
|
+
},
|
182
|
+
"src/components/mds-breadcrumb-item/meta/event-detail.ts::MdsBreadcrumbItemEventDetail": {
|
183
|
+
"declaration": "export interface MdsBreadcrumbItemEventDetail {\n id: string\n selected: boolean\n}",
|
184
|
+
"docstring": "",
|
185
|
+
"path": "src/components/mds-breadcrumb-item/meta/event-detail.ts"
|
186
|
+
},
|
187
|
+
"src/type/button.ts::ButtonIconPositionType": {
|
188
|
+
"declaration": "export type ButtonIconPositionType =\n | 'left'\n | 'right'",
|
189
|
+
"docstring": "",
|
190
|
+
"path": "src/type/button.ts"
|
191
|
+
},
|
192
|
+
"src/type/button.ts::ButtonType": {
|
193
|
+
"declaration": "export type ButtonType =\n | 'a'\n | 'button'\n | 'reset'\n | 'submit'",
|
194
|
+
"docstring": "",
|
195
|
+
"path": "src/type/button.ts"
|
196
|
+
},
|
197
|
+
"src/type/button.ts::ButtonVariantType": {
|
198
|
+
"declaration": "export type ButtonVariantType =\n | 'primary'\n | 'dark'\n | 'light'\n | 'error'\n | 'info'\n | 'success'\n | 'warning'",
|
199
|
+
"docstring": "",
|
200
|
+
"path": "src/type/button.ts"
|
201
|
+
},
|
202
|
+
"src/type/variant.ts::ToneVariantType": {
|
203
|
+
"declaration": "export type ToneVariantType =\n | 'strong' // background strong\n | 'weak' // background weak\n | 'ghost' // bordered\n | 'quiet'",
|
204
|
+
"docstring": "",
|
205
|
+
"path": "src/type/variant.ts"
|
206
|
+
},
|
207
|
+
"src/type/button.ts::ButtonSizeType": {
|
208
|
+
"declaration": "export type ButtonSizeType =\n | 'sm'\n | 'md'\n | 'lg'\n | 'xl'",
|
209
|
+
"docstring": "",
|
210
|
+
"path": "src/type/button.ts"
|
211
|
+
},
|
212
|
+
"src/type/button.ts::ButtonTargetType": {
|
213
|
+
"declaration": "export type ButtonTargetType =\n |'self'\n |'blank'",
|
214
|
+
"docstring": "",
|
215
|
+
"path": "src/type/button.ts"
|
216
|
+
},
|
217
|
+
"src/components/mds-chip/meta/interface.ts::MdsChipEvent": {
|
218
|
+
"declaration": "interface MdsChipEvent {\n event: Event\n element: HTMLMdsChipElement\n}",
|
219
|
+
"docstring": "",
|
220
|
+
"path": "src/components/mds-chip/meta/interface.ts"
|
221
|
+
},
|
222
|
+
"src/components/mds-dropdown/meta/types.ts::DropdownInteractionType": {
|
223
|
+
"declaration": "export type DropdownInteractionType =\n | 'click'\n | 'mouseover'",
|
224
|
+
"docstring": "",
|
225
|
+
"path": "src/components/mds-dropdown/meta/types.ts"
|
226
|
+
},
|
227
|
+
"src/type/floating-ui.ts::FloatingUIPlacement": {
|
228
|
+
"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'",
|
229
|
+
"docstring": "",
|
230
|
+
"path": "src/type/floating-ui.ts"
|
231
|
+
},
|
232
|
+
"src/type/floating-ui.ts::FloatingUIStrategy": {
|
233
|
+
"declaration": "export type FloatingUIStrategy =\n | 'absolute'\n | 'fixed'",
|
234
|
+
"docstring": "",
|
235
|
+
"path": "src/type/floating-ui.ts"
|
236
|
+
},
|
237
|
+
"src/components/mds-dropdown/meta/event-detail.ts::MdsDropdownEventDetail": {
|
238
|
+
"declaration": "export interface MdsDropdownEventDetail {\n caller: HTMLElement\n visible: boolean\n}",
|
239
|
+
"docstring": "",
|
240
|
+
"path": "src/components/mds-dropdown/meta/event-detail.ts"
|
241
|
+
},
|
242
|
+
"src/type/file-types.ts::ExtensionSuffixType": {
|
243
|
+
"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'",
|
244
|
+
"docstring": "",
|
245
|
+
"path": "src/type/file-types.ts"
|
246
|
+
},
|
247
|
+
"src/components/mds-file/meta/event-detail.ts::MdsFileEventDetail": {
|
248
|
+
"declaration": "export interface MdsFileEventDetail {\n description: string\n extension: string\n filename: string\n target: HTMLMdsFileElement\n type: string\n}",
|
249
|
+
"docstring": "",
|
250
|
+
"path": "src/components/mds-file/meta/event-detail.ts"
|
251
|
+
},
|
252
|
+
"src/type/text.ts::TypographyTruncateType": {
|
253
|
+
"declaration": "export type TypographyTruncateType =\n | 'all'\n | 'none'\n | 'word'",
|
254
|
+
"docstring": "",
|
255
|
+
"path": "src/type/text.ts"
|
256
|
+
},
|
257
|
+
"src/components/mds-file-preview/meta/event-detail.ts::MdsFilePreviewEventDetail": {
|
258
|
+
"declaration": "export interface MdsFilePreviewEventDetail {\n extension: string\n filename: string\n target: HTMLMdsFileElement\n}",
|
259
|
+
"docstring": "",
|
260
|
+
"path": "src/components/mds-file-preview/meta/event-detail.ts"
|
261
|
+
},
|
262
|
+
"src/components/mds-filter/meta/event-detail.ts::MdsFilterEventDetail": {
|
263
|
+
"declaration": "export interface MdsFilterEventDetail {\n children: NodeListOf<HTMLMdsFilterItemElement>\n value: string\n}",
|
264
|
+
"docstring": "",
|
265
|
+
"path": "src/components/mds-filter/meta/event-detail.ts"
|
266
|
+
},
|
267
|
+
"src/components/mds-filter-item/meta/event-detail.ts::MdsFilterItemEventDetail": {
|
268
|
+
"declaration": "export interface MdsFilterItemEventDetail {\n id: string\n selected: boolean\n}",
|
269
|
+
"docstring": "",
|
270
|
+
"path": "src/components/mds-filter-item/meta/event-detail.ts"
|
271
|
+
},
|
272
|
+
"src/components/mds-form/meta/types.ts::CharacterSetType": {
|
273
|
+
"declaration": "export type CharacterSetType =\n | '8859-1'\n | 'ansi'\n | 'ascii'\n | 'utf-8'",
|
274
|
+
"docstring": "",
|
275
|
+
"path": "src/components/mds-form/meta/types.ts"
|
276
|
+
},
|
277
|
+
"src/components/mds-form/meta/types.ts::FormAutocompleteType": {
|
278
|
+
"declaration": "export type FormAutocompleteType =\n | 'off'\n | 'on'",
|
279
|
+
"docstring": "",
|
280
|
+
"path": "src/components/mds-form/meta/types.ts"
|
281
|
+
},
|
282
|
+
"src/components/mds-form/meta/types.ts::EnctypeType": {
|
283
|
+
"declaration": "export type EnctypeType =\n | 'application/x-www-form-urlencoded'\n | 'multipart/form-data'\n | 'text/plain'",
|
284
|
+
"docstring": "",
|
285
|
+
"path": "src/components/mds-form/meta/types.ts"
|
286
|
+
},
|
287
|
+
"src/components/mds-form/meta/types.ts::FormMethodType": {
|
288
|
+
"declaration": "export type FormMethodType =\n | 'get'\n | 'post'",
|
289
|
+
"docstring": "",
|
290
|
+
"path": "src/components/mds-form/meta/types.ts"
|
291
|
+
},
|
292
|
+
"src/components/mds-header-bar/meta/types.ts::MenuType": {
|
293
|
+
"declaration": "export type MenuType =\n | 'all'\n | 'desktop'\n | 'mobile'\n | 'none'",
|
294
|
+
"docstring": "",
|
295
|
+
"path": "src/components/mds-header-bar/meta/types.ts"
|
296
|
+
},
|
297
|
+
"src/components/mds-header/meta/event-detail.ts::MdsHeaderEventDetail": {
|
298
|
+
"declaration": "export interface MdsHeaderEventDetail {\n bar: HTMLMdsHeaderBarElement\n}",
|
299
|
+
"docstring": "",
|
300
|
+
"path": "src/components/mds-header/meta/event-detail.ts"
|
301
|
+
},
|
302
|
+
"src/components/mds-horizontal-scroll/meta/types.ts::ViewportType": {
|
303
|
+
"declaration": "export type ViewportType =\n | 'all'\n | 'tv'\n | 'xlarge'\n | 'large'\n | 'wide'\n | 'desktop'\n | 'tablet'\n | 'none'",
|
304
|
+
"docstring": "",
|
305
|
+
"path": "src/components/mds-horizontal-scroll/meta/types.ts"
|
306
|
+
},
|
307
|
+
"src/components/mds-horizontal-scroll/meta/types.ts::SnapType": {
|
308
|
+
"declaration": "export type SnapType =\n | 'center'\n | 'end'\n | 'none'\n | 'start'",
|
309
|
+
"docstring": "",
|
310
|
+
"path": "src/components/mds-horizontal-scroll/meta/types.ts"
|
311
|
+
},
|
312
|
+
"src/components/mds-img/meta/types.ts::CrossoriginType": {
|
313
|
+
"declaration": "export type CrossoriginType =\n | 'anonymous'\n | 'use-credentials'",
|
314
|
+
"docstring": "",
|
315
|
+
"path": "src/components/mds-img/meta/types.ts"
|
316
|
+
},
|
317
|
+
"src/type/loading.ts::LoadingType": {
|
318
|
+
"declaration": "export type LoadingType =\n | 'eager'\n | 'lazy'",
|
319
|
+
"docstring": "",
|
320
|
+
"path": "src/type/loading.ts"
|
321
|
+
},
|
322
|
+
"src/components/mds-img/meta/types.ts::ReferrerpolicyType": {
|
323
|
+
"declaration": "export type ReferrerpolicyType =\n | 'no-referrer'\n | 'no-referrer-when-downgrade'\n | 'origin'\n | 'origin-when-cross-origin'\n | 'unsafe-url'",
|
324
|
+
"docstring": "",
|
325
|
+
"path": "src/components/mds-img/meta/types.ts"
|
326
|
+
},
|
327
|
+
"src/components/mds-img/meta/event-detail.ts::MdsImgEventDetail": {
|
328
|
+
"declaration": "export interface MdsImgEventDetail {\n image: HTMLImageElement\n}",
|
329
|
+
"docstring": "",
|
330
|
+
"path": "src/components/mds-img/meta/event-detail.ts"
|
331
|
+
},
|
332
|
+
"src/type/autocomplete.ts::AutocompleteType": {
|
333
|
+
"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'",
|
334
|
+
"docstring": "",
|
335
|
+
"path": "src/type/autocomplete.ts"
|
336
|
+
},
|
337
|
+
"src/type/input.ts::InputControlsLayoutType": {
|
338
|
+
"declaration": "export type InputControlsLayoutType =\n | 'horizontal'\n | 'vertical'",
|
339
|
+
"docstring": "",
|
340
|
+
"path": "src/type/input.ts"
|
341
|
+
},
|
342
|
+
"src/type/input.ts::InputControlsIconType": {
|
343
|
+
"declaration": "export type InputControlsIconType =\n | 'arrow'\n | 'arithmetic'",
|
344
|
+
"docstring": "",
|
345
|
+
"path": "src/type/input.ts"
|
346
|
+
},
|
347
|
+
"src/type/variant.ts::ThemeStatusVariantType": {
|
348
|
+
"declaration": "export type ThemeStatusVariantType =\n | 'error'\n | 'info'\n | 'success'\n | 'warning'",
|
349
|
+
"docstring": "",
|
350
|
+
"path": "src/type/variant.ts"
|
351
|
+
},
|
352
|
+
"src/type/input.ts::InputTextType": {
|
353
|
+
"declaration": "export type InputTextType =\n | 'date'\n | 'email'\n | 'number'\n | 'password'\n | 'search'\n | 'tel'\n | 'text'\n | 'textarea'\n | 'time'\n | 'url'",
|
354
|
+
"docstring": "",
|
355
|
+
"path": "src/type/input.ts"
|
356
|
+
},
|
357
|
+
"src/type/typography.ts::TypographyInputType": {
|
358
|
+
"declaration": "export type TypographyInputType =\n | 'snippet'\n | 'detail'",
|
359
|
+
"docstring": "",
|
360
|
+
"path": "src/type/typography.ts"
|
361
|
+
},
|
362
|
+
"src/components/mds-input/meta/event-detail.ts::MdsInputEventDetail": {
|
363
|
+
"declaration": "export interface MdsInputEventDetail {\n value?: string\n}",
|
364
|
+
"docstring": "",
|
365
|
+
"path": "src/components/mds-input/meta/event-detail.ts"
|
366
|
+
},
|
367
|
+
"src/components/mds-input-field/meta/types.ts::InputFieldType": {
|
368
|
+
"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'",
|
369
|
+
"docstring": "",
|
370
|
+
"path": "src/components/mds-input-field/meta/types.ts"
|
371
|
+
},
|
372
|
+
"src/components/mds-input-field/meta/validators.ts::MdsValidatorFn": {
|
373
|
+
"declaration": "(input: string) => null | MdsValidationErrors",
|
374
|
+
"docstring": "",
|
375
|
+
"path": "src/components/mds-input-field/meta/validators.ts"
|
376
|
+
},
|
377
|
+
"src/components/mds-input-field/meta/validators.ts::MdsValidationErrors": {
|
378
|
+
"declaration": "export interface MdsValidationErrors {\n [key: string]: string\n}",
|
379
|
+
"docstring": "",
|
380
|
+
"path": "src/components/mds-input-field/meta/validators.ts"
|
381
|
+
},
|
382
|
+
"src/interface/input-value.ts::InputValue": {
|
383
|
+
"declaration": "export interface InputValue {\n value: InputValueType\n}",
|
384
|
+
"docstring": "",
|
385
|
+
"path": "src/interface/input-value.ts"
|
386
|
+
},
|
387
|
+
"src/components/mds-input-switch/meta/types.ts::InputSwitchSizeType": {
|
388
|
+
"declaration": "export type InputSwitchSizeType =\n | 'sm'\n | 'md'\n | 'lg'",
|
389
|
+
"docstring": "",
|
390
|
+
"path": "src/components/mds-input-switch/meta/types.ts"
|
391
|
+
},
|
392
|
+
"src/components/mds-input-switch/meta/types.ts::InputSwitchType": {
|
393
|
+
"declaration": "export type InputSwitchType =\n | 'checkbox'\n | 'radio'\n | 'switch'",
|
394
|
+
"docstring": "",
|
395
|
+
"path": "src/components/mds-input-switch/meta/types.ts"
|
396
|
+
},
|
397
|
+
"src/components/mds-input-switch/meta/event-detail.ts::MdsInputSwitchEventDetail": {
|
398
|
+
"declaration": "export interface MdsInputSwitchEventDetail {\n name: string\n checked: boolean\n value: string\n}",
|
399
|
+
"docstring": "",
|
400
|
+
"path": "src/components/mds-input-switch/meta/event-detail.ts"
|
401
|
+
},
|
402
|
+
"src/components/mds-input-tip/meta/types.ts::InputTipPositionType": {
|
403
|
+
"declaration": "export type InputTipPositionType =\n | 'top'\n | 'bottom'",
|
404
|
+
"docstring": "",
|
405
|
+
"path": "src/components/mds-input-tip/meta/types.ts"
|
406
|
+
},
|
407
|
+
"src/components/mds-input-tip-item/meta/types.ts::InputTipItemVariantType": {
|
408
|
+
"declaration": "export type InputTipItemVariantType =\n | 'required'\n | 'required-success'\n | 'disabled'\n | 'readonly'\n | 'text'",
|
409
|
+
"docstring": "",
|
410
|
+
"path": "src/components/mds-input-tip-item/meta/types.ts"
|
411
|
+
},
|
412
|
+
"src/components/mds-input-upload/meta/types.ts::AttachmentSort": {
|
413
|
+
"declaration": "type AttachmentSort =\n 'status' |\n 'date'",
|
414
|
+
"docstring": "",
|
415
|
+
"path": "src/components/mds-input-upload/meta/types.ts"
|
416
|
+
},
|
417
|
+
"src/components/mds-input-upload/meta/types.ts::FileError": {
|
418
|
+
"declaration": "interface FileError {\n filename: string,\n errorMessage: string,\n}",
|
419
|
+
"docstring": "",
|
420
|
+
"path": "src/components/mds-input-upload/meta/types.ts"
|
421
|
+
},
|
422
|
+
"src/type/typography.ts::TypographyType": {
|
423
|
+
"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'",
|
424
|
+
"docstring": "",
|
425
|
+
"path": "src/type/typography.ts"
|
426
|
+
},
|
427
|
+
"src/type/typography.ts::TypographyReadingVariants": {
|
428
|
+
"declaration": "export type TypographyReadingVariants =\n | 'info'\n | 'read'",
|
429
|
+
"docstring": "",
|
430
|
+
"path": "src/type/typography.ts"
|
431
|
+
},
|
432
|
+
"src/components/mds-modal/meta/types.ts::ModalPositionType": {
|
433
|
+
"declaration": "export type ModalPositionType =\n | 'bottom'\n | 'center'\n | 'left'\n | 'right'\n | 'top'",
|
434
|
+
"docstring": "",
|
435
|
+
"path": "src/components/mds-modal/meta/types.ts"
|
436
|
+
},
|
437
|
+
"src/type/variant.ts::LabelVariantType": {
|
438
|
+
"declaration": "export type LabelVariantType =\n | 'amaranth'\n | 'aqua'\n | 'blue'\n | 'green'\n | 'lime'\n | 'orange'\n | 'orchid'\n | 'sky'\n | 'violet'\n | 'yellow'",
|
439
|
+
"docstring": "",
|
440
|
+
"path": "src/type/variant.ts"
|
441
|
+
},
|
442
|
+
"src/components/mds-notification/meta/types.ts::StrategyType": {
|
443
|
+
"declaration": "export type StrategyType =\n | 'absolute'\n | 'fixed'\n | 'disabled'",
|
444
|
+
"docstring": "",
|
445
|
+
"path": "src/components/mds-notification/meta/types.ts"
|
446
|
+
},
|
447
|
+
"src/components/mds-paginator/meta/event-detail.ts::MdsPaginatorEventDetail": {
|
448
|
+
"declaration": "export interface MdsPaginatorEventDetail {\n caller?: HTMLMdsPaginatorItemElement\n page: number\n}",
|
449
|
+
"docstring": "",
|
450
|
+
"path": "src/components/mds-paginator/meta/event-detail.ts"
|
451
|
+
},
|
452
|
+
"src/components/mds-pref-animation/meta/types.ts::AnimationModeType": {
|
453
|
+
"declaration": "export type AnimationModeType =\n | 'reduce'\n | 'no-preference'\n | 'system'",
|
454
|
+
"docstring": "",
|
455
|
+
"path": "src/components/mds-pref-animation/meta/types.ts"
|
456
|
+
},
|
457
|
+
"src/components/mds-pref-consumption/meta/types.ts::ConsumptionModeType": {
|
458
|
+
"declaration": "export type ConsumptionModeType =\n | 'high'\n | 'medium'\n | 'low'",
|
459
|
+
"docstring": "",
|
460
|
+
"path": "src/components/mds-pref-consumption/meta/types.ts"
|
461
|
+
},
|
462
|
+
"src/components/mds-pref-contrast/meta/types.ts::ContrastModeType": {
|
463
|
+
"declaration": "export type ContrastModeType =\n | 'more'\n | 'no-preference'\n | 'system'",
|
464
|
+
"docstring": "",
|
465
|
+
"path": "src/components/mds-pref-contrast/meta/types.ts"
|
466
|
+
},
|
467
|
+
"src/components/mds-pref-theme/meta/types.ts::ThemeModeType": {
|
468
|
+
"declaration": "export type ThemeModeType =\n | 'light'\n | 'dark'\n | 'system'",
|
469
|
+
"docstring": "",
|
470
|
+
"path": "src/components/mds-pref-theme/meta/types.ts"
|
471
|
+
},
|
472
|
+
"src/components/mds-pref-theme/meta/types.ts::ThemeTransitionType": {
|
473
|
+
"declaration": "export type ThemeTransitionType =\n | 'none'\n | 'flash'\n | 'smooth'",
|
474
|
+
"docstring": "",
|
475
|
+
"path": "src/components/mds-pref-theme/meta/types.ts"
|
476
|
+
},
|
477
|
+
"src/components/mds-price-table-features-cell/meta/types.ts::PriceTableFeaturesCellType": {
|
478
|
+
"declaration": "export type PriceTableFeaturesCellType =\n | 'custom'\n | 'label'\n | 'supported'\n | 'text'\n | 'unsupported'",
|
479
|
+
"docstring": "",
|
480
|
+
"path": "src/components/mds-price-table-features-cell/meta/types.ts"
|
481
|
+
},
|
482
|
+
"src/components/mds-progress/meta/types.ts::DirectionType": {
|
483
|
+
"declaration": "export type DirectionType =\n | 'horizontal'\n | 'vertical'",
|
484
|
+
"docstring": "",
|
485
|
+
"path": "src/components/mds-progress/meta/types.ts"
|
486
|
+
},
|
487
|
+
"src/components/mds-push-notification/meta/types.ts::NotificationPreviewType": {
|
488
|
+
"declaration": "export type NotificationPreviewType =\n | 'avatar'\n | 'image'",
|
489
|
+
"docstring": "",
|
490
|
+
"path": "src/components/mds-push-notification/meta/types.ts"
|
491
|
+
},
|
492
|
+
"src/components/mds-push-notification/meta/event-detail.ts::MdsPushNotificationEventDetail": {
|
493
|
+
"declaration": "export interface MdsPushNotificationEventDetail {\n id: string;\n}",
|
494
|
+
"docstring": "",
|
495
|
+
"path": "src/components/mds-push-notification/meta/event-detail.ts"
|
496
|
+
},
|
497
|
+
"src/components/mds-stepper-bar/meta/event-detail.ts::MdsStepperBarEventDetail": {
|
498
|
+
"declaration": "export interface MdsStepperBarEventDetail {\n step: number\n value: string\n}",
|
499
|
+
"docstring": "",
|
500
|
+
"path": "src/components/mds-stepper-bar/meta/event-detail.ts"
|
501
|
+
},
|
502
|
+
"src/components/mds-stepper-bar-item/meta/event-detail.ts::MdsStepperBarItemEventDetail": {
|
503
|
+
"declaration": "export interface MdsStepperBarItemEventDetail {\n value: string\n}",
|
504
|
+
"docstring": "",
|
505
|
+
"path": "src/components/mds-stepper-bar-item/meta/event-detail.ts"
|
506
|
+
},
|
507
|
+
"src/components/mds-tab/meta/event-detail.ts::MdsTabEventDetail": {
|
508
|
+
"declaration": "export interface MdsTabEventDetail {\n id: number\n value?: string\n}",
|
509
|
+
"docstring": "",
|
510
|
+
"path": "src/components/mds-tab/meta/event-detail.ts"
|
511
|
+
},
|
512
|
+
"src/components/mds-tab-bar/meta/event-detail.ts::MdsTabBarEventDetail": {
|
513
|
+
"declaration": "export interface MdsTabBarEventDetail {\n index: number\n}",
|
514
|
+
"docstring": "",
|
515
|
+
"path": "src/components/mds-tab-bar/meta/event-detail.ts"
|
516
|
+
},
|
517
|
+
"src/type/typography.ts::TypographySmallerType": {
|
518
|
+
"declaration": "export type TypographySmallerType =\n | 'tip'\n | 'option'",
|
519
|
+
"docstring": "",
|
520
|
+
"path": "src/type/typography.ts"
|
521
|
+
},
|
522
|
+
"src/components/mds-tab-item/meta/event-detail.ts::MdsTabItemEventDetail": {
|
523
|
+
"declaration": "export interface MdsTabItemEventDetail {\n target: HTMLMdsTabItemElement\n value?: string\n}",
|
524
|
+
"docstring": "",
|
525
|
+
"path": "src/components/mds-tab-item/meta/event-detail.ts"
|
526
|
+
},
|
527
|
+
"src/components/mds-text/meta/types.ts::TextAnimationType": {
|
528
|
+
"declaration": "export type TextAnimationType =\n | 'none'\n | 'yugop'",
|
529
|
+
"docstring": "",
|
530
|
+
"path": "src/components/mds-text/meta/types.ts"
|
531
|
+
},
|
532
|
+
"src/components/mds-text/meta/types.ts::TypographyTagType": {
|
533
|
+
"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'",
|
534
|
+
"docstring": "",
|
535
|
+
"path": "src/components/mds-text/meta/types.ts"
|
536
|
+
},
|
537
|
+
"src/type/variant.ts::ThemeLuminanceVariantType": {
|
538
|
+
"declaration": "export type ThemeLuminanceVariantType =\n | 'dark'\n | 'light'",
|
539
|
+
"docstring": "",
|
540
|
+
"path": "src/type/variant.ts"
|
541
|
+
},
|
542
|
+
"src/components/mds-toast/meta/types.ts::ToastPosition": {
|
543
|
+
"declaration": "export type ToastPosition =\n | 'top-left'\n | 'top-center'\n | 'top-right'\n | 'bottom-left'\n | 'bottom-center'\n | 'bottom-right'",
|
544
|
+
"docstring": "",
|
545
|
+
"path": "src/components/mds-toast/meta/types.ts"
|
546
|
+
},
|
547
|
+
"src/type/typography.ts::TypographyTooltipType": {
|
548
|
+
"declaration": "export type TypographyTooltipType =\n | 'caption'\n | 'detail'\n | 'tip'",
|
549
|
+
"docstring": "",
|
550
|
+
"path": "src/type/typography.ts"
|
551
|
+
},
|
552
|
+
"src/components/mds-usage/meta/types.ts::UsageType": {
|
553
|
+
"declaration": "export type UsageType =\n | 'do'\n | 'dont'\n | 'info'\n | 'warn'",
|
554
|
+
"docstring": "",
|
555
|
+
"path": "src/components/mds-usage/meta/types.ts"
|
556
|
+
},
|
557
|
+
"src/components/mds-video-wall/meta/types.ts::NoiseType": {
|
558
|
+
"declaration": "export type NoiseType =\n | 'classic'\n | 'none'\n | 'sharp'\n | 'soft'\n | 'tv'",
|
559
|
+
"docstring": "",
|
560
|
+
"path": "src/components/mds-video-wall/meta/types.ts"
|
561
|
+
},
|
562
|
+
"src/components/mds-video-wall/meta/types.ts::PreloadType": {
|
563
|
+
"declaration": "export type PreloadType =\n | 'auto'\n | 'metadata'\n | 'none'",
|
564
|
+
"docstring": "",
|
565
|
+
"path": "src/components/mds-video-wall/meta/types.ts"
|
566
|
+
}
|
567
|
+
}
|
568
|
+
}
|
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';
|
@@ -0,0 +1,11 @@
|
|
1
|
+
{
|
2
|
+
"name": "mds-input-tip-loader",
|
3
|
+
"private": true,
|
4
|
+
"typings": "./index.d.ts",
|
5
|
+
"module": "./index.js",
|
6
|
+
"main": "./index.cjs.js",
|
7
|
+
"jsnext:main": "./index.es2017.js",
|
8
|
+
"es2015": "./index.es2017.js",
|
9
|
+
"es2017": "./index.es2017.js",
|
10
|
+
"unpkg": "./cdn.js"
|
11
|
+
}
|