@maggioli-design-system/magma-react 1.11.8 → 2.0.0-alpha.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/README.md +8 -0
- package/dist/components.js +133 -112
- package/dist/types/components.d.ts +12 -1
- package/package.json +7 -2
package/README.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
Magma React specific building blocks on top of [@maggioli-design-system/magma](https://www.npmjs.com/package/@maggioli-design-system/magma) components.
|
|
4
4
|
|
|
5
|
+
## Compatibility
|
|
6
|
+
|
|
7
|
+
`magma-react` follows the same major version as `magma`. Use the versions of `@maggioli-design-system/design-tokens` and `@maggioli-design-system/styles` matching your magma major version:
|
|
8
|
+
|
|
9
|
+
| magma | design-tokens | styles |
|
|
10
|
+
| :--- | :--- | :--- |
|
|
11
|
+
| `1.x` (before Magma 2) | `13.x` (latest `13.7.2`) | `15.x` (latest `15.11.1`) |
|
|
12
|
+
| `2.x` and later | `>= 14` | `>= 16` |
|
|
5
13
|
|
|
6
14
|
## Installation
|
|
7
15
|
|
package/dist/components.js
CHANGED
|
@@ -70,6 +70,8 @@ import { MdsPrefConsumption as MdsPrefConsumptionElement, defineCustomElement as
|
|
|
70
70
|
import { MdsPrefContrast as MdsPrefContrastElement, defineCustomElement as defineMdsPrefContrast } from "@maggioli-design-system/magma/dist/components/mds-pref-contrast.js";
|
|
71
71
|
import { MdsPrefLanguageItem as MdsPrefLanguageItemElement, defineCustomElement as defineMdsPrefLanguageItem } from "@maggioli-design-system/magma/dist/components/mds-pref-language-item.js";
|
|
72
72
|
import { MdsPrefLanguage as MdsPrefLanguageElement, defineCustomElement as defineMdsPrefLanguage } from "@maggioli-design-system/magma/dist/components/mds-pref-language.js";
|
|
73
|
+
import { MdsPrefThemeVariantItem as MdsPrefThemeVariantItemElement, defineCustomElement as defineMdsPrefThemeVariantItem } from "@maggioli-design-system/magma/dist/components/mds-pref-theme-variant-item.js";
|
|
74
|
+
import { MdsPrefThemeVariant as MdsPrefThemeVariantElement, defineCustomElement as defineMdsPrefThemeVariant } from "@maggioli-design-system/magma/dist/components/mds-pref-theme-variant.js";
|
|
73
75
|
import { MdsPrefTheme as MdsPrefThemeElement, defineCustomElement as defineMdsPrefTheme } from "@maggioli-design-system/magma/dist/components/mds-pref-theme.js";
|
|
74
76
|
import { MdsPref as MdsPrefElement, defineCustomElement as defineMdsPref } from "@maggioli-design-system/magma/dist/components/mds-pref.js";
|
|
75
77
|
import { MdsPriceTableFeaturesCell as MdsPriceTableFeaturesCellElement, defineCustomElement as defineMdsPriceTableFeaturesCell } from "@maggioli-design-system/magma/dist/components/mds-price-table-features-cell.js";
|
|
@@ -116,7 +118,7 @@ import React from 'react';
|
|
|
116
118
|
export const MdsAccordion = /*@__PURE__*/ createComponent({
|
|
117
119
|
tagName: 'mds-accordion',
|
|
118
120
|
elementClass: MdsAccordionElement,
|
|
119
|
-
// @ts-ignore - React type
|
|
121
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
120
122
|
react: React,
|
|
121
123
|
events: { onMdsAccordionChange: 'mdsAccordionChange' },
|
|
122
124
|
defineCustomElement: defineMdsAccordion
|
|
@@ -124,7 +126,7 @@ export const MdsAccordion = /*@__PURE__*/ createComponent({
|
|
|
124
126
|
export const MdsAccordionItem = /*@__PURE__*/ createComponent({
|
|
125
127
|
tagName: 'mds-accordion-item',
|
|
126
128
|
elementClass: MdsAccordionItemElement,
|
|
127
|
-
// @ts-ignore - React type
|
|
129
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
128
130
|
react: React,
|
|
129
131
|
events: {
|
|
130
132
|
onMdsAccordionItemSelect: 'mdsAccordionItemSelect',
|
|
@@ -136,7 +138,7 @@ export const MdsAccordionItem = /*@__PURE__*/ createComponent({
|
|
|
136
138
|
export const MdsAccordionTimer = /*@__PURE__*/ createComponent({
|
|
137
139
|
tagName: 'mds-accordion-timer',
|
|
138
140
|
elementClass: MdsAccordionTimerElement,
|
|
139
|
-
// @ts-ignore - React type
|
|
141
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
140
142
|
react: React,
|
|
141
143
|
events: { onMdsAccordionTimerChange: 'mdsAccordionTimerChange' },
|
|
142
144
|
defineCustomElement: defineMdsAccordionTimer
|
|
@@ -144,7 +146,7 @@ export const MdsAccordionTimer = /*@__PURE__*/ createComponent({
|
|
|
144
146
|
export const MdsAccordionTimerItem = /*@__PURE__*/ createComponent({
|
|
145
147
|
tagName: 'mds-accordion-timer-item',
|
|
146
148
|
elementClass: MdsAccordionTimerItemElement,
|
|
147
|
-
// @ts-ignore - React type
|
|
149
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
148
150
|
react: React,
|
|
149
151
|
events: {
|
|
150
152
|
onMdsAccordionTimerItemClickSelect: 'mdsAccordionTimerItemClickSelect',
|
|
@@ -157,7 +159,7 @@ export const MdsAccordionTimerItem = /*@__PURE__*/ createComponent({
|
|
|
157
159
|
export const MdsAuthor = /*@__PURE__*/ createComponent({
|
|
158
160
|
tagName: 'mds-author',
|
|
159
161
|
elementClass: MdsAuthorElement,
|
|
160
|
-
// @ts-ignore - React type
|
|
162
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
161
163
|
react: React,
|
|
162
164
|
events: {},
|
|
163
165
|
defineCustomElement: defineMdsAuthor
|
|
@@ -165,7 +167,7 @@ export const MdsAuthor = /*@__PURE__*/ createComponent({
|
|
|
165
167
|
export const MdsAvatar = /*@__PURE__*/ createComponent({
|
|
166
168
|
tagName: 'mds-avatar',
|
|
167
169
|
elementClass: MdsAvatarElement,
|
|
168
|
-
// @ts-ignore - React type
|
|
170
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
169
171
|
react: React,
|
|
170
172
|
events: {},
|
|
171
173
|
defineCustomElement: defineMdsAvatar
|
|
@@ -173,7 +175,7 @@ export const MdsAvatar = /*@__PURE__*/ createComponent({
|
|
|
173
175
|
export const MdsAvatarStack = /*@__PURE__*/ createComponent({
|
|
174
176
|
tagName: 'mds-avatar-stack',
|
|
175
177
|
elementClass: MdsAvatarStackElement,
|
|
176
|
-
// @ts-ignore - React type
|
|
178
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
177
179
|
react: React,
|
|
178
180
|
events: {},
|
|
179
181
|
defineCustomElement: defineMdsAvatarStack
|
|
@@ -181,7 +183,7 @@ export const MdsAvatarStack = /*@__PURE__*/ createComponent({
|
|
|
181
183
|
export const MdsAvatarStackItem = /*@__PURE__*/ createComponent({
|
|
182
184
|
tagName: 'mds-avatar-stack-item',
|
|
183
185
|
elementClass: MdsAvatarStackItemElement,
|
|
184
|
-
// @ts-ignore - React type
|
|
186
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
185
187
|
react: React,
|
|
186
188
|
events: {},
|
|
187
189
|
defineCustomElement: defineMdsAvatarStackItem
|
|
@@ -189,7 +191,7 @@ export const MdsAvatarStackItem = /*@__PURE__*/ createComponent({
|
|
|
189
191
|
export const MdsBadge = /*@__PURE__*/ createComponent({
|
|
190
192
|
tagName: 'mds-badge',
|
|
191
193
|
elementClass: MdsBadgeElement,
|
|
192
|
-
// @ts-ignore - React type
|
|
194
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
193
195
|
react: React,
|
|
194
196
|
events: {},
|
|
195
197
|
defineCustomElement: defineMdsBadge
|
|
@@ -197,7 +199,7 @@ export const MdsBadge = /*@__PURE__*/ createComponent({
|
|
|
197
199
|
export const MdsBanner = /*@__PURE__*/ createComponent({
|
|
198
200
|
tagName: 'mds-banner',
|
|
199
201
|
elementClass: MdsBannerElement,
|
|
200
|
-
// @ts-ignore - React type
|
|
202
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
201
203
|
react: React,
|
|
202
204
|
events: { onMdsBannerClose: 'mdsBannerClose' },
|
|
203
205
|
defineCustomElement: defineMdsBanner
|
|
@@ -205,7 +207,7 @@ export const MdsBanner = /*@__PURE__*/ createComponent({
|
|
|
205
207
|
export const MdsBenchmarkBar = /*@__PURE__*/ createComponent({
|
|
206
208
|
tagName: 'mds-benchmark-bar',
|
|
207
209
|
elementClass: MdsBenchmarkBarElement,
|
|
208
|
-
// @ts-ignore - React type
|
|
210
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
209
211
|
react: React,
|
|
210
212
|
events: {},
|
|
211
213
|
defineCustomElement: defineMdsBenchmarkBar
|
|
@@ -213,7 +215,7 @@ export const MdsBenchmarkBar = /*@__PURE__*/ createComponent({
|
|
|
213
215
|
export const MdsBibliography = /*@__PURE__*/ createComponent({
|
|
214
216
|
tagName: 'mds-bibliography',
|
|
215
217
|
elementClass: MdsBibliographyElement,
|
|
216
|
-
// @ts-ignore - React type
|
|
218
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
217
219
|
react: React,
|
|
218
220
|
events: {},
|
|
219
221
|
defineCustomElement: defineMdsBibliography
|
|
@@ -221,7 +223,7 @@ export const MdsBibliography = /*@__PURE__*/ createComponent({
|
|
|
221
223
|
export const MdsBreadcrumb = /*@__PURE__*/ createComponent({
|
|
222
224
|
tagName: 'mds-breadcrumb',
|
|
223
225
|
elementClass: MdsBreadcrumbElement,
|
|
224
|
-
// @ts-ignore - React type
|
|
226
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
225
227
|
react: React,
|
|
226
228
|
events: { onMdsBreadcrumbChange: 'mdsBreadcrumbChange' },
|
|
227
229
|
defineCustomElement: defineMdsBreadcrumb
|
|
@@ -229,7 +231,7 @@ export const MdsBreadcrumb = /*@__PURE__*/ createComponent({
|
|
|
229
231
|
export const MdsBreadcrumbItem = /*@__PURE__*/ createComponent({
|
|
230
232
|
tagName: 'mds-breadcrumb-item',
|
|
231
233
|
elementClass: MdsBreadcrumbItemElement,
|
|
232
|
-
// @ts-ignore - React type
|
|
234
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
233
235
|
react: React,
|
|
234
236
|
events: { onMdsBreadcrumbItemSelect: 'mdsBreadcrumbItemSelect' },
|
|
235
237
|
defineCustomElement: defineMdsBreadcrumbItem
|
|
@@ -237,7 +239,7 @@ export const MdsBreadcrumbItem = /*@__PURE__*/ createComponent({
|
|
|
237
239
|
export const MdsButton = /*@__PURE__*/ createComponent({
|
|
238
240
|
tagName: 'mds-button',
|
|
239
241
|
elementClass: MdsButtonElement,
|
|
240
|
-
// @ts-ignore - React type
|
|
242
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
241
243
|
react: React,
|
|
242
244
|
events: {},
|
|
243
245
|
defineCustomElement: defineMdsButton
|
|
@@ -245,7 +247,7 @@ export const MdsButton = /*@__PURE__*/ createComponent({
|
|
|
245
247
|
export const MdsButtonDropdown = /*@__PURE__*/ createComponent({
|
|
246
248
|
tagName: 'mds-button-dropdown',
|
|
247
249
|
elementClass: MdsButtonDropdownElement,
|
|
248
|
-
// @ts-ignore - React type
|
|
250
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
249
251
|
react: React,
|
|
250
252
|
events: {},
|
|
251
253
|
defineCustomElement: defineMdsButtonDropdown
|
|
@@ -253,7 +255,7 @@ export const MdsButtonDropdown = /*@__PURE__*/ createComponent({
|
|
|
253
255
|
export const MdsButtonGroup = /*@__PURE__*/ createComponent({
|
|
254
256
|
tagName: 'mds-button-group',
|
|
255
257
|
elementClass: MdsButtonGroupElement,
|
|
256
|
-
// @ts-ignore - React type
|
|
258
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
257
259
|
react: React,
|
|
258
260
|
events: {},
|
|
259
261
|
defineCustomElement: defineMdsButtonGroup
|
|
@@ -261,7 +263,7 @@ export const MdsButtonGroup = /*@__PURE__*/ createComponent({
|
|
|
261
263
|
export const MdsCalendar = /*@__PURE__*/ createComponent({
|
|
262
264
|
tagName: 'mds-calendar',
|
|
263
265
|
elementClass: MdsCalendarElement,
|
|
264
|
-
// @ts-ignore - React type
|
|
266
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
265
267
|
react: React,
|
|
266
268
|
events: {
|
|
267
269
|
onMdsCalendarChange: 'mdsCalendarChange',
|
|
@@ -272,7 +274,7 @@ export const MdsCalendar = /*@__PURE__*/ createComponent({
|
|
|
272
274
|
export const MdsCalendarCell = /*@__PURE__*/ createComponent({
|
|
273
275
|
tagName: 'mds-calendar-cell',
|
|
274
276
|
elementClass: MdsCalendarCellElement,
|
|
275
|
-
// @ts-ignore - React type
|
|
277
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
276
278
|
react: React,
|
|
277
279
|
events: {},
|
|
278
280
|
defineCustomElement: defineMdsCalendarCell
|
|
@@ -280,7 +282,7 @@ export const MdsCalendarCell = /*@__PURE__*/ createComponent({
|
|
|
280
282
|
export const MdsCard = /*@__PURE__*/ createComponent({
|
|
281
283
|
tagName: 'mds-card',
|
|
282
284
|
elementClass: MdsCardElement,
|
|
283
|
-
// @ts-ignore - React type
|
|
285
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
284
286
|
react: React,
|
|
285
287
|
events: {},
|
|
286
288
|
defineCustomElement: defineMdsCard
|
|
@@ -288,7 +290,7 @@ export const MdsCard = /*@__PURE__*/ createComponent({
|
|
|
288
290
|
export const MdsCardContent = /*@__PURE__*/ createComponent({
|
|
289
291
|
tagName: 'mds-card-content',
|
|
290
292
|
elementClass: MdsCardContentElement,
|
|
291
|
-
// @ts-ignore - React type
|
|
293
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
292
294
|
react: React,
|
|
293
295
|
events: {},
|
|
294
296
|
defineCustomElement: defineMdsCardContent
|
|
@@ -296,7 +298,7 @@ export const MdsCardContent = /*@__PURE__*/ createComponent({
|
|
|
296
298
|
export const MdsCardFooter = /*@__PURE__*/ createComponent({
|
|
297
299
|
tagName: 'mds-card-footer',
|
|
298
300
|
elementClass: MdsCardFooterElement,
|
|
299
|
-
// @ts-ignore - React type
|
|
301
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
300
302
|
react: React,
|
|
301
303
|
events: {},
|
|
302
304
|
defineCustomElement: defineMdsCardFooter
|
|
@@ -304,7 +306,7 @@ export const MdsCardFooter = /*@__PURE__*/ createComponent({
|
|
|
304
306
|
export const MdsCardHeader = /*@__PURE__*/ createComponent({
|
|
305
307
|
tagName: 'mds-card-header',
|
|
306
308
|
elementClass: MdsCardHeaderElement,
|
|
307
|
-
// @ts-ignore - React type
|
|
309
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
308
310
|
react: React,
|
|
309
311
|
events: {},
|
|
310
312
|
defineCustomElement: defineMdsCardHeader
|
|
@@ -312,7 +314,7 @@ export const MdsCardHeader = /*@__PURE__*/ createComponent({
|
|
|
312
314
|
export const MdsCardMedia = /*@__PURE__*/ createComponent({
|
|
313
315
|
tagName: 'mds-card-media',
|
|
314
316
|
elementClass: MdsCardMediaElement,
|
|
315
|
-
// @ts-ignore - React type
|
|
317
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
316
318
|
react: React,
|
|
317
319
|
events: {},
|
|
318
320
|
defineCustomElement: defineMdsCardMedia
|
|
@@ -320,7 +322,7 @@ export const MdsCardMedia = /*@__PURE__*/ createComponent({
|
|
|
320
322
|
export const MdsChip = /*@__PURE__*/ createComponent({
|
|
321
323
|
tagName: 'mds-chip',
|
|
322
324
|
elementClass: MdsChipElement,
|
|
323
|
-
// @ts-ignore - React type
|
|
325
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
324
326
|
react: React,
|
|
325
327
|
events: {
|
|
326
328
|
onMdsChipClickLabel: 'mdsChipClickLabel',
|
|
@@ -332,7 +334,7 @@ export const MdsChip = /*@__PURE__*/ createComponent({
|
|
|
332
334
|
export const MdsDetails = /*@__PURE__*/ createComponent({
|
|
333
335
|
tagName: 'mds-details',
|
|
334
336
|
elementClass: MdsDetailsElement,
|
|
335
|
-
// @ts-ignore - React type
|
|
337
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
336
338
|
react: React,
|
|
337
339
|
events: { onMdsDetailsChange: 'mdsDetailsChange' },
|
|
338
340
|
defineCustomElement: defineMdsDetails
|
|
@@ -340,7 +342,7 @@ export const MdsDetails = /*@__PURE__*/ createComponent({
|
|
|
340
342
|
export const MdsDropdown = /*@__PURE__*/ createComponent({
|
|
341
343
|
tagName: 'mds-dropdown',
|
|
342
344
|
elementClass: MdsDropdownElement,
|
|
343
|
-
// @ts-ignore - React type
|
|
345
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
344
346
|
react: React,
|
|
345
347
|
events: {
|
|
346
348
|
onMdsDropdownVisible: 'mdsDropdownVisible',
|
|
@@ -352,7 +354,7 @@ export const MdsDropdown = /*@__PURE__*/ createComponent({
|
|
|
352
354
|
export const MdsEmoji = /*@__PURE__*/ createComponent({
|
|
353
355
|
tagName: 'mds-emoji',
|
|
354
356
|
elementClass: MdsEmojiElement,
|
|
355
|
-
// @ts-ignore - React type
|
|
357
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
356
358
|
react: React,
|
|
357
359
|
events: {},
|
|
358
360
|
defineCustomElement: defineMdsEmoji
|
|
@@ -360,7 +362,7 @@ export const MdsEmoji = /*@__PURE__*/ createComponent({
|
|
|
360
362
|
export const MdsEntity = /*@__PURE__*/ createComponent({
|
|
361
363
|
tagName: 'mds-entity',
|
|
362
364
|
elementClass: MdsEntityElement,
|
|
363
|
-
// @ts-ignore - React type
|
|
365
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
364
366
|
react: React,
|
|
365
367
|
events: {},
|
|
366
368
|
defineCustomElement: defineMdsEntity
|
|
@@ -368,7 +370,7 @@ export const MdsEntity = /*@__PURE__*/ createComponent({
|
|
|
368
370
|
export const MdsFile = /*@__PURE__*/ createComponent({
|
|
369
371
|
tagName: 'mds-file',
|
|
370
372
|
elementClass: MdsFileElement,
|
|
371
|
-
// @ts-ignore - React type
|
|
373
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
372
374
|
react: React,
|
|
373
375
|
events: { onMdsFileDownload: 'mdsFileDownload' },
|
|
374
376
|
defineCustomElement: defineMdsFile
|
|
@@ -376,7 +378,7 @@ export const MdsFile = /*@__PURE__*/ createComponent({
|
|
|
376
378
|
export const MdsFilePreview = /*@__PURE__*/ createComponent({
|
|
377
379
|
tagName: 'mds-file-preview',
|
|
378
380
|
elementClass: MdsFilePreviewElement,
|
|
379
|
-
// @ts-ignore - React type
|
|
381
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
380
382
|
react: React,
|
|
381
383
|
events: {
|
|
382
384
|
onMdsFileDownload: 'mdsFileDownload',
|
|
@@ -387,7 +389,7 @@ export const MdsFilePreview = /*@__PURE__*/ createComponent({
|
|
|
387
389
|
export const MdsFilter = /*@__PURE__*/ createComponent({
|
|
388
390
|
tagName: 'mds-filter',
|
|
389
391
|
elementClass: MdsFilterElement,
|
|
390
|
-
// @ts-ignore - React type
|
|
392
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
391
393
|
react: React,
|
|
392
394
|
events: { onMdsFilterChange: 'mdsFilterChange' },
|
|
393
395
|
defineCustomElement: defineMdsFilter
|
|
@@ -395,7 +397,7 @@ export const MdsFilter = /*@__PURE__*/ createComponent({
|
|
|
395
397
|
export const MdsFilterItem = /*@__PURE__*/ createComponent({
|
|
396
398
|
tagName: 'mds-filter-item',
|
|
397
399
|
elementClass: MdsFilterItemElement,
|
|
398
|
-
// @ts-ignore - React type
|
|
400
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
399
401
|
react: React,
|
|
400
402
|
events: { onMdsFilterItemSelect: 'mdsFilterItemSelect' },
|
|
401
403
|
defineCustomElement: defineMdsFilterItem
|
|
@@ -403,7 +405,7 @@ export const MdsFilterItem = /*@__PURE__*/ createComponent({
|
|
|
403
405
|
export const MdsHeader = /*@__PURE__*/ createComponent({
|
|
404
406
|
tagName: 'mds-header',
|
|
405
407
|
elementClass: MdsHeaderElement,
|
|
406
|
-
// @ts-ignore - React type
|
|
408
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
407
409
|
react: React,
|
|
408
410
|
events: {
|
|
409
411
|
onMdsHeaderClose: 'mdsHeaderClose',
|
|
@@ -414,7 +416,7 @@ export const MdsHeader = /*@__PURE__*/ createComponent({
|
|
|
414
416
|
export const MdsHeaderBar = /*@__PURE__*/ createComponent({
|
|
415
417
|
tagName: 'mds-header-bar',
|
|
416
418
|
elementClass: MdsHeaderBarElement,
|
|
417
|
-
// @ts-ignore - React type
|
|
419
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
418
420
|
react: React,
|
|
419
421
|
events: { onMdsHeaderBarOpen: 'mdsHeaderBarOpen' },
|
|
420
422
|
defineCustomElement: defineMdsHeaderBar
|
|
@@ -422,7 +424,7 @@ export const MdsHeaderBar = /*@__PURE__*/ createComponent({
|
|
|
422
424
|
export const MdsHelp = /*@__PURE__*/ createComponent({
|
|
423
425
|
tagName: 'mds-help',
|
|
424
426
|
elementClass: MdsHelpElement,
|
|
425
|
-
// @ts-ignore - React type
|
|
427
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
426
428
|
react: React,
|
|
427
429
|
events: {},
|
|
428
430
|
defineCustomElement: defineMdsHelp
|
|
@@ -430,7 +432,7 @@ export const MdsHelp = /*@__PURE__*/ createComponent({
|
|
|
430
432
|
export const MdsHorizontalScroll = /*@__PURE__*/ createComponent({
|
|
431
433
|
tagName: 'mds-horizontal-scroll',
|
|
432
434
|
elementClass: MdsHorizontalScrollElement,
|
|
433
|
-
// @ts-ignore - React type
|
|
435
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
434
436
|
react: React,
|
|
435
437
|
events: {},
|
|
436
438
|
defineCustomElement: defineMdsHorizontalScroll
|
|
@@ -438,7 +440,7 @@ export const MdsHorizontalScroll = /*@__PURE__*/ createComponent({
|
|
|
438
440
|
export const MdsHr = /*@__PURE__*/ createComponent({
|
|
439
441
|
tagName: 'mds-hr',
|
|
440
442
|
elementClass: MdsHrElement,
|
|
441
|
-
// @ts-ignore - React type
|
|
443
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
442
444
|
react: React,
|
|
443
445
|
events: {},
|
|
444
446
|
defineCustomElement: defineMdsHr
|
|
@@ -446,7 +448,7 @@ export const MdsHr = /*@__PURE__*/ createComponent({
|
|
|
446
448
|
export const MdsIcon = /*@__PURE__*/ createComponent({
|
|
447
449
|
tagName: 'mds-icon',
|
|
448
450
|
elementClass: MdsIconElement,
|
|
449
|
-
// @ts-ignore - React type
|
|
451
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
450
452
|
react: React,
|
|
451
453
|
events: {},
|
|
452
454
|
defineCustomElement: defineMdsIcon
|
|
@@ -454,7 +456,7 @@ export const MdsIcon = /*@__PURE__*/ createComponent({
|
|
|
454
456
|
export const MdsImg = /*@__PURE__*/ createComponent({
|
|
455
457
|
tagName: 'mds-img',
|
|
456
458
|
elementClass: MdsImgElement,
|
|
457
|
-
// @ts-ignore - React type
|
|
459
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
458
460
|
react: React,
|
|
459
461
|
events: {
|
|
460
462
|
onMdsImgLoadError: 'mdsImgLoadError',
|
|
@@ -465,7 +467,7 @@ export const MdsImg = /*@__PURE__*/ createComponent({
|
|
|
465
467
|
export const MdsInput = /*@__PURE__*/ createComponent({
|
|
466
468
|
tagName: 'mds-input',
|
|
467
469
|
elementClass: MdsInputElement,
|
|
468
|
-
// @ts-ignore - React type
|
|
470
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
469
471
|
react: React,
|
|
470
472
|
events: {
|
|
471
473
|
onMdsInputChange: 'mdsInputChange',
|
|
@@ -480,7 +482,7 @@ export const MdsInput = /*@__PURE__*/ createComponent({
|
|
|
480
482
|
export const MdsInputDate = /*@__PURE__*/ createComponent({
|
|
481
483
|
tagName: 'mds-input-date',
|
|
482
484
|
elementClass: MdsInputDateElement,
|
|
483
|
-
// @ts-ignore - React type
|
|
485
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
484
486
|
react: React,
|
|
485
487
|
events: {
|
|
486
488
|
onMdsInputValidation: 'mdsInputValidation',
|
|
@@ -491,7 +493,7 @@ export const MdsInputDate = /*@__PURE__*/ createComponent({
|
|
|
491
493
|
export const MdsInputDateRange = /*@__PURE__*/ createComponent({
|
|
492
494
|
tagName: 'mds-input-date-range',
|
|
493
495
|
elementClass: MdsInputDateRangeElement,
|
|
494
|
-
// @ts-ignore - React type
|
|
496
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
495
497
|
react: React,
|
|
496
498
|
events: {
|
|
497
499
|
onMdsInputDateRangeSelect: 'mdsInputDateRangeSelect',
|
|
@@ -502,7 +504,7 @@ export const MdsInputDateRange = /*@__PURE__*/ createComponent({
|
|
|
502
504
|
export const MdsInputDateRangePreselection = /*@__PURE__*/ createComponent({
|
|
503
505
|
tagName: 'mds-input-date-range-preselection',
|
|
504
506
|
elementClass: MdsInputDateRangePreselectionElement,
|
|
505
|
-
// @ts-ignore - React type
|
|
507
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
506
508
|
react: React,
|
|
507
509
|
events: {},
|
|
508
510
|
defineCustomElement: defineMdsInputDateRangePreselection
|
|
@@ -510,7 +512,7 @@ export const MdsInputDateRangePreselection = /*@__PURE__*/ createComponent({
|
|
|
510
512
|
export const MdsInputField = /*@__PURE__*/ createComponent({
|
|
511
513
|
tagName: 'mds-input-field',
|
|
512
514
|
elementClass: MdsInputFieldElement,
|
|
513
|
-
// @ts-ignore - React type
|
|
515
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
514
516
|
react: React,
|
|
515
517
|
events: {},
|
|
516
518
|
defineCustomElement: defineMdsInputField
|
|
@@ -518,7 +520,7 @@ export const MdsInputField = /*@__PURE__*/ createComponent({
|
|
|
518
520
|
export const MdsInputOtp = /*@__PURE__*/ createComponent({
|
|
519
521
|
tagName: 'mds-input-otp',
|
|
520
522
|
elementClass: MdsInputOtpElement,
|
|
521
|
-
// @ts-ignore - React type
|
|
523
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
522
524
|
react: React,
|
|
523
525
|
events: {},
|
|
524
526
|
defineCustomElement: defineMdsInputOtp
|
|
@@ -526,7 +528,7 @@ export const MdsInputOtp = /*@__PURE__*/ createComponent({
|
|
|
526
528
|
export const MdsInputRange = /*@__PURE__*/ createComponent({
|
|
527
529
|
tagName: 'mds-input-range',
|
|
528
530
|
elementClass: MdsInputRangeElement,
|
|
529
|
-
// @ts-ignore - React type
|
|
531
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
530
532
|
react: React,
|
|
531
533
|
events: { onMdsInputRangeChange: 'mdsInputRangeChange' },
|
|
532
534
|
defineCustomElement: defineMdsInputRange
|
|
@@ -534,7 +536,7 @@ export const MdsInputRange = /*@__PURE__*/ createComponent({
|
|
|
534
536
|
export const MdsInputSelect = /*@__PURE__*/ createComponent({
|
|
535
537
|
tagName: 'mds-input-select',
|
|
536
538
|
elementClass: MdsInputSelectElement,
|
|
537
|
-
// @ts-ignore - React type
|
|
539
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
538
540
|
react: React,
|
|
539
541
|
events: { onMdsInputSelectChange: 'mdsInputSelectChange' },
|
|
540
542
|
defineCustomElement: defineMdsInputSelect
|
|
@@ -542,7 +544,7 @@ export const MdsInputSelect = /*@__PURE__*/ createComponent({
|
|
|
542
544
|
export const MdsInputSwitch = /*@__PURE__*/ createComponent({
|
|
543
545
|
tagName: 'mds-input-switch',
|
|
544
546
|
elementClass: MdsInputSwitchElement,
|
|
545
|
-
// @ts-ignore - React type
|
|
547
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
546
548
|
react: React,
|
|
547
549
|
events: { onMdsInputSwitchChange: 'mdsInputSwitchChange' },
|
|
548
550
|
defineCustomElement: defineMdsInputSwitch
|
|
@@ -550,7 +552,7 @@ export const MdsInputSwitch = /*@__PURE__*/ createComponent({
|
|
|
550
552
|
export const MdsInputTip = /*@__PURE__*/ createComponent({
|
|
551
553
|
tagName: 'mds-input-tip',
|
|
552
554
|
elementClass: MdsInputTipElement,
|
|
553
|
-
// @ts-ignore - React type
|
|
555
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
554
556
|
react: React,
|
|
555
557
|
events: {},
|
|
556
558
|
defineCustomElement: defineMdsInputTip
|
|
@@ -558,7 +560,7 @@ export const MdsInputTip = /*@__PURE__*/ createComponent({
|
|
|
558
560
|
export const MdsInputTipItem = /*@__PURE__*/ createComponent({
|
|
559
561
|
tagName: 'mds-input-tip-item',
|
|
560
562
|
elementClass: MdsInputTipItemElement,
|
|
561
|
-
// @ts-ignore - React type
|
|
563
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
562
564
|
react: React,
|
|
563
565
|
events: {},
|
|
564
566
|
defineCustomElement: defineMdsInputTipItem
|
|
@@ -566,7 +568,7 @@ export const MdsInputTipItem = /*@__PURE__*/ createComponent({
|
|
|
566
568
|
export const MdsInputUpload = /*@__PURE__*/ createComponent({
|
|
567
569
|
tagName: 'mds-input-upload',
|
|
568
570
|
elementClass: MdsInputUploadElement,
|
|
569
|
-
// @ts-ignore - React type
|
|
571
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
570
572
|
react: React,
|
|
571
573
|
events: { onMdsInputUploadChange: 'mdsInputUploadChange' },
|
|
572
574
|
defineCustomElement: defineMdsInputUpload
|
|
@@ -574,7 +576,7 @@ export const MdsInputUpload = /*@__PURE__*/ createComponent({
|
|
|
574
576
|
export const MdsKeyboard = /*@__PURE__*/ createComponent({
|
|
575
577
|
tagName: 'mds-keyboard',
|
|
576
578
|
elementClass: MdsKeyboardElement,
|
|
577
|
-
// @ts-ignore - React type
|
|
579
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
578
580
|
react: React,
|
|
579
581
|
events: {},
|
|
580
582
|
defineCustomElement: defineMdsKeyboard
|
|
@@ -582,7 +584,7 @@ export const MdsKeyboard = /*@__PURE__*/ createComponent({
|
|
|
582
584
|
export const MdsKeyboardKey = /*@__PURE__*/ createComponent({
|
|
583
585
|
tagName: 'mds-keyboard-key',
|
|
584
586
|
elementClass: MdsKeyboardKeyElement,
|
|
585
|
-
// @ts-ignore - React type
|
|
587
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
586
588
|
react: React,
|
|
587
589
|
events: {},
|
|
588
590
|
defineCustomElement: defineMdsKeyboardKey
|
|
@@ -590,7 +592,7 @@ export const MdsKeyboardKey = /*@__PURE__*/ createComponent({
|
|
|
590
592
|
export const MdsKpi = /*@__PURE__*/ createComponent({
|
|
591
593
|
tagName: 'mds-kpi',
|
|
592
594
|
elementClass: MdsKpiElement,
|
|
593
|
-
// @ts-ignore - React type
|
|
595
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
594
596
|
react: React,
|
|
595
597
|
events: {},
|
|
596
598
|
defineCustomElement: defineMdsKpi
|
|
@@ -598,7 +600,7 @@ export const MdsKpi = /*@__PURE__*/ createComponent({
|
|
|
598
600
|
export const MdsKpiItem = /*@__PURE__*/ createComponent({
|
|
599
601
|
tagName: 'mds-kpi-item',
|
|
600
602
|
elementClass: MdsKpiItemElement,
|
|
601
|
-
// @ts-ignore - React type
|
|
603
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
602
604
|
react: React,
|
|
603
605
|
events: {},
|
|
604
606
|
defineCustomElement: defineMdsKpiItem
|
|
@@ -606,7 +608,7 @@ export const MdsKpiItem = /*@__PURE__*/ createComponent({
|
|
|
606
608
|
export const MdsLabel = /*@__PURE__*/ createComponent({
|
|
607
609
|
tagName: 'mds-label',
|
|
608
610
|
elementClass: MdsLabelElement,
|
|
609
|
-
// @ts-ignore - React type
|
|
611
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
610
612
|
react: React,
|
|
611
613
|
events: { onMdsLabelDelete: 'mdsLabelDelete' },
|
|
612
614
|
defineCustomElement: defineMdsLabel
|
|
@@ -614,7 +616,7 @@ export const MdsLabel = /*@__PURE__*/ createComponent({
|
|
|
614
616
|
export const MdsList = /*@__PURE__*/ createComponent({
|
|
615
617
|
tagName: 'mds-list',
|
|
616
618
|
elementClass: MdsListElement,
|
|
617
|
-
// @ts-ignore - React type
|
|
619
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
618
620
|
react: React,
|
|
619
621
|
events: {},
|
|
620
622
|
defineCustomElement: defineMdsList
|
|
@@ -622,7 +624,7 @@ export const MdsList = /*@__PURE__*/ createComponent({
|
|
|
622
624
|
export const MdsListItem = /*@__PURE__*/ createComponent({
|
|
623
625
|
tagName: 'mds-list-item',
|
|
624
626
|
elementClass: MdsListItemElement,
|
|
625
|
-
// @ts-ignore - React type
|
|
627
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
626
628
|
react: React,
|
|
627
629
|
events: {},
|
|
628
630
|
defineCustomElement: defineMdsListItem
|
|
@@ -630,7 +632,7 @@ export const MdsListItem = /*@__PURE__*/ createComponent({
|
|
|
630
632
|
export const MdsMention = /*@__PURE__*/ createComponent({
|
|
631
633
|
tagName: 'mds-mention',
|
|
632
634
|
elementClass: MdsMentionElement,
|
|
633
|
-
// @ts-ignore - React type
|
|
635
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
634
636
|
react: React,
|
|
635
637
|
events: {},
|
|
636
638
|
defineCustomElement: defineMdsMention
|
|
@@ -638,7 +640,7 @@ export const MdsMention = /*@__PURE__*/ createComponent({
|
|
|
638
640
|
export const MdsModal = /*@__PURE__*/ createComponent({
|
|
639
641
|
tagName: 'mds-modal',
|
|
640
642
|
elementClass: MdsModalElement,
|
|
641
|
-
// @ts-ignore - React type
|
|
643
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
642
644
|
react: React,
|
|
643
645
|
events: {
|
|
644
646
|
onMdsModalOpen: 'mdsModalOpen',
|
|
@@ -651,7 +653,7 @@ export const MdsModal = /*@__PURE__*/ createComponent({
|
|
|
651
653
|
export const MdsNote = /*@__PURE__*/ createComponent({
|
|
652
654
|
tagName: 'mds-note',
|
|
653
655
|
elementClass: MdsNoteElement,
|
|
654
|
-
// @ts-ignore - React type
|
|
656
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
655
657
|
react: React,
|
|
656
658
|
events: { onMdsNoteDelete: 'mdsNoteDelete' },
|
|
657
659
|
defineCustomElement: defineMdsNote
|
|
@@ -659,7 +661,7 @@ export const MdsNote = /*@__PURE__*/ createComponent({
|
|
|
659
661
|
export const MdsNotification = /*@__PURE__*/ createComponent({
|
|
660
662
|
tagName: 'mds-notification',
|
|
661
663
|
elementClass: MdsNotificationElement,
|
|
662
|
-
// @ts-ignore - React type
|
|
664
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
663
665
|
react: React,
|
|
664
666
|
events: {},
|
|
665
667
|
defineCustomElement: defineMdsNotification
|
|
@@ -667,7 +669,7 @@ export const MdsNotification = /*@__PURE__*/ createComponent({
|
|
|
667
669
|
export const MdsPaginator = /*@__PURE__*/ createComponent({
|
|
668
670
|
tagName: 'mds-paginator',
|
|
669
671
|
elementClass: MdsPaginatorElement,
|
|
670
|
-
// @ts-ignore - React type
|
|
672
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
671
673
|
react: React,
|
|
672
674
|
events: { onMdsPaginatorChange: 'mdsPaginatorChange' },
|
|
673
675
|
defineCustomElement: defineMdsPaginator
|
|
@@ -675,7 +677,7 @@ export const MdsPaginator = /*@__PURE__*/ createComponent({
|
|
|
675
677
|
export const MdsPaginatorItem = /*@__PURE__*/ createComponent({
|
|
676
678
|
tagName: 'mds-paginator-item',
|
|
677
679
|
elementClass: MdsPaginatorItemElement,
|
|
678
|
-
// @ts-ignore - React type
|
|
680
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
679
681
|
react: React,
|
|
680
682
|
events: {},
|
|
681
683
|
defineCustomElement: defineMdsPaginatorItem
|
|
@@ -683,7 +685,7 @@ export const MdsPaginatorItem = /*@__PURE__*/ createComponent({
|
|
|
683
685
|
export const MdsPolicyAi = /*@__PURE__*/ createComponent({
|
|
684
686
|
tagName: 'mds-policy-ai',
|
|
685
687
|
elementClass: MdsPolicyAiElement,
|
|
686
|
-
// @ts-ignore - React type
|
|
688
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
687
689
|
react: React,
|
|
688
690
|
events: {},
|
|
689
691
|
defineCustomElement: defineMdsPolicyAi
|
|
@@ -691,7 +693,7 @@ export const MdsPolicyAi = /*@__PURE__*/ createComponent({
|
|
|
691
693
|
export const MdsPref = /*@__PURE__*/ createComponent({
|
|
692
694
|
tagName: 'mds-pref',
|
|
693
695
|
elementClass: MdsPrefElement,
|
|
694
|
-
// @ts-ignore - React type
|
|
696
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
695
697
|
react: React,
|
|
696
698
|
events: {},
|
|
697
699
|
defineCustomElement: defineMdsPref
|
|
@@ -699,7 +701,7 @@ export const MdsPref = /*@__PURE__*/ createComponent({
|
|
|
699
701
|
export const MdsPrefAnimation = /*@__PURE__*/ createComponent({
|
|
700
702
|
tagName: 'mds-pref-animation',
|
|
701
703
|
elementClass: MdsPrefAnimationElement,
|
|
702
|
-
// @ts-ignore - React type
|
|
704
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
703
705
|
react: React,
|
|
704
706
|
events: { onMdsPrefChange: 'mdsPrefChange' },
|
|
705
707
|
defineCustomElement: defineMdsPrefAnimation
|
|
@@ -707,7 +709,7 @@ export const MdsPrefAnimation = /*@__PURE__*/ createComponent({
|
|
|
707
709
|
export const MdsPrefConsumption = /*@__PURE__*/ createComponent({
|
|
708
710
|
tagName: 'mds-pref-consumption',
|
|
709
711
|
elementClass: MdsPrefConsumptionElement,
|
|
710
|
-
// @ts-ignore - React type
|
|
712
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
711
713
|
react: React,
|
|
712
714
|
events: { onMdsPrefChange: 'mdsPrefChange' },
|
|
713
715
|
defineCustomElement: defineMdsPrefConsumption
|
|
@@ -715,7 +717,7 @@ export const MdsPrefConsumption = /*@__PURE__*/ createComponent({
|
|
|
715
717
|
export const MdsPrefContrast = /*@__PURE__*/ createComponent({
|
|
716
718
|
tagName: 'mds-pref-contrast',
|
|
717
719
|
elementClass: MdsPrefContrastElement,
|
|
718
|
-
// @ts-ignore - React type
|
|
720
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
719
721
|
react: React,
|
|
720
722
|
events: { onMdsPrefChange: 'mdsPrefChange' },
|
|
721
723
|
defineCustomElement: defineMdsPrefContrast
|
|
@@ -723,7 +725,7 @@ export const MdsPrefContrast = /*@__PURE__*/ createComponent({
|
|
|
723
725
|
export const MdsPrefLanguage = /*@__PURE__*/ createComponent({
|
|
724
726
|
tagName: 'mds-pref-language',
|
|
725
727
|
elementClass: MdsPrefLanguageElement,
|
|
726
|
-
// @ts-ignore - React type
|
|
728
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
727
729
|
react: React,
|
|
728
730
|
events: {
|
|
729
731
|
onMdsPrefLanguageChange: 'mdsPrefLanguageChange',
|
|
@@ -734,7 +736,7 @@ export const MdsPrefLanguage = /*@__PURE__*/ createComponent({
|
|
|
734
736
|
export const MdsPrefLanguageItem = /*@__PURE__*/ createComponent({
|
|
735
737
|
tagName: 'mds-pref-language-item',
|
|
736
738
|
elementClass: MdsPrefLanguageItemElement,
|
|
737
|
-
// @ts-ignore - React type
|
|
739
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
738
740
|
react: React,
|
|
739
741
|
events: { onMdsPrefLanguageItemSelect: 'mdsPrefLanguageItemSelect' },
|
|
740
742
|
defineCustomElement: defineMdsPrefLanguageItem
|
|
@@ -742,15 +744,34 @@ export const MdsPrefLanguageItem = /*@__PURE__*/ createComponent({
|
|
|
742
744
|
export const MdsPrefTheme = /*@__PURE__*/ createComponent({
|
|
743
745
|
tagName: 'mds-pref-theme',
|
|
744
746
|
elementClass: MdsPrefThemeElement,
|
|
745
|
-
// @ts-ignore - React type
|
|
747
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
746
748
|
react: React,
|
|
747
749
|
events: { onMdsPrefChange: 'mdsPrefChange' },
|
|
748
750
|
defineCustomElement: defineMdsPrefTheme
|
|
749
751
|
});
|
|
752
|
+
export const MdsPrefThemeVariant = /*@__PURE__*/ createComponent({
|
|
753
|
+
tagName: 'mds-pref-theme-variant',
|
|
754
|
+
elementClass: MdsPrefThemeVariantElement,
|
|
755
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
756
|
+
react: React,
|
|
757
|
+
events: {
|
|
758
|
+
onMdsPrefThemeVariantChange: 'mdsPrefThemeVariantChange',
|
|
759
|
+
onMdsPrefChange: 'mdsPrefChange'
|
|
760
|
+
},
|
|
761
|
+
defineCustomElement: defineMdsPrefThemeVariant
|
|
762
|
+
});
|
|
763
|
+
export const MdsPrefThemeVariantItem = /*@__PURE__*/ createComponent({
|
|
764
|
+
tagName: 'mds-pref-theme-variant-item',
|
|
765
|
+
elementClass: MdsPrefThemeVariantItemElement,
|
|
766
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
767
|
+
react: React,
|
|
768
|
+
events: { onMdsPrefThemeVariantItemSelect: 'mdsPrefThemeVariantItemSelect' },
|
|
769
|
+
defineCustomElement: defineMdsPrefThemeVariantItem
|
|
770
|
+
});
|
|
750
771
|
export const MdsPriceTable = /*@__PURE__*/ createComponent({
|
|
751
772
|
tagName: 'mds-price-table',
|
|
752
773
|
elementClass: MdsPriceTableElement,
|
|
753
|
-
// @ts-ignore - React type
|
|
774
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
754
775
|
react: React,
|
|
755
776
|
events: {},
|
|
756
777
|
defineCustomElement: defineMdsPriceTable
|
|
@@ -758,7 +779,7 @@ export const MdsPriceTable = /*@__PURE__*/ createComponent({
|
|
|
758
779
|
export const MdsPriceTableFeatures = /*@__PURE__*/ createComponent({
|
|
759
780
|
tagName: 'mds-price-table-features',
|
|
760
781
|
elementClass: MdsPriceTableFeaturesElement,
|
|
761
|
-
// @ts-ignore - React type
|
|
782
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
762
783
|
react: React,
|
|
763
784
|
events: {},
|
|
764
785
|
defineCustomElement: defineMdsPriceTableFeatures
|
|
@@ -766,7 +787,7 @@ export const MdsPriceTableFeatures = /*@__PURE__*/ createComponent({
|
|
|
766
787
|
export const MdsPriceTableFeaturesCell = /*@__PURE__*/ createComponent({
|
|
767
788
|
tagName: 'mds-price-table-features-cell',
|
|
768
789
|
elementClass: MdsPriceTableFeaturesCellElement,
|
|
769
|
-
// @ts-ignore - React type
|
|
790
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
770
791
|
react: React,
|
|
771
792
|
events: {},
|
|
772
793
|
defineCustomElement: defineMdsPriceTableFeaturesCell
|
|
@@ -774,7 +795,7 @@ export const MdsPriceTableFeaturesCell = /*@__PURE__*/ createComponent({
|
|
|
774
795
|
export const MdsPriceTableFeaturesRow = /*@__PURE__*/ createComponent({
|
|
775
796
|
tagName: 'mds-price-table-features-row',
|
|
776
797
|
elementClass: MdsPriceTableFeaturesRowElement,
|
|
777
|
-
// @ts-ignore - React type
|
|
798
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
778
799
|
react: React,
|
|
779
800
|
events: {},
|
|
780
801
|
defineCustomElement: defineMdsPriceTableFeaturesRow
|
|
@@ -782,7 +803,7 @@ export const MdsPriceTableFeaturesRow = /*@__PURE__*/ createComponent({
|
|
|
782
803
|
export const MdsPriceTableHeader = /*@__PURE__*/ createComponent({
|
|
783
804
|
tagName: 'mds-price-table-header',
|
|
784
805
|
elementClass: MdsPriceTableHeaderElement,
|
|
785
|
-
// @ts-ignore - React type
|
|
806
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
786
807
|
react: React,
|
|
787
808
|
events: {},
|
|
788
809
|
defineCustomElement: defineMdsPriceTableHeader
|
|
@@ -790,7 +811,7 @@ export const MdsPriceTableHeader = /*@__PURE__*/ createComponent({
|
|
|
790
811
|
export const MdsPriceTableList = /*@__PURE__*/ createComponent({
|
|
791
812
|
tagName: 'mds-price-table-list',
|
|
792
813
|
elementClass: MdsPriceTableListElement,
|
|
793
|
-
// @ts-ignore - React type
|
|
814
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
794
815
|
react: React,
|
|
795
816
|
events: {},
|
|
796
817
|
defineCustomElement: defineMdsPriceTableList
|
|
@@ -798,7 +819,7 @@ export const MdsPriceTableList = /*@__PURE__*/ createComponent({
|
|
|
798
819
|
export const MdsPriceTableListItem = /*@__PURE__*/ createComponent({
|
|
799
820
|
tagName: 'mds-price-table-list-item',
|
|
800
821
|
elementClass: MdsPriceTableListItemElement,
|
|
801
|
-
// @ts-ignore - React type
|
|
822
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
802
823
|
react: React,
|
|
803
824
|
events: {},
|
|
804
825
|
defineCustomElement: defineMdsPriceTableListItem
|
|
@@ -806,7 +827,7 @@ export const MdsPriceTableListItem = /*@__PURE__*/ createComponent({
|
|
|
806
827
|
export const MdsProgress = /*@__PURE__*/ createComponent({
|
|
807
828
|
tagName: 'mds-progress',
|
|
808
829
|
elementClass: MdsProgressElement,
|
|
809
|
-
// @ts-ignore - React type
|
|
830
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
810
831
|
react: React,
|
|
811
832
|
events: {},
|
|
812
833
|
defineCustomElement: defineMdsProgress
|
|
@@ -814,7 +835,7 @@ export const MdsProgress = /*@__PURE__*/ createComponent({
|
|
|
814
835
|
export const MdsPushNotification = /*@__PURE__*/ createComponent({
|
|
815
836
|
tagName: 'mds-push-notification',
|
|
816
837
|
elementClass: MdsPushNotificationElement,
|
|
817
|
-
// @ts-ignore - React type
|
|
838
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
818
839
|
react: React,
|
|
819
840
|
events: {
|
|
820
841
|
onMdsPushNotificationChange: 'mdsPushNotificationChange',
|
|
@@ -826,7 +847,7 @@ export const MdsPushNotification = /*@__PURE__*/ createComponent({
|
|
|
826
847
|
export const MdsPushNotificationItem = /*@__PURE__*/ createComponent({
|
|
827
848
|
tagName: 'mds-push-notification-item',
|
|
828
849
|
elementClass: MdsPushNotificationItemElement,
|
|
829
|
-
// @ts-ignore - React type
|
|
850
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
830
851
|
react: React,
|
|
831
852
|
events: { onMdsPushNotificationItemClose: 'mdsPushNotificationItemClose' },
|
|
832
853
|
defineCustomElement: defineMdsPushNotificationItem
|
|
@@ -834,7 +855,7 @@ export const MdsPushNotificationItem = /*@__PURE__*/ createComponent({
|
|
|
834
855
|
export const MdsQuote = /*@__PURE__*/ createComponent({
|
|
835
856
|
tagName: 'mds-quote',
|
|
836
857
|
elementClass: MdsQuoteElement,
|
|
837
|
-
// @ts-ignore - React type
|
|
858
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
838
859
|
react: React,
|
|
839
860
|
events: {},
|
|
840
861
|
defineCustomElement: defineMdsQuote
|
|
@@ -842,7 +863,7 @@ export const MdsQuote = /*@__PURE__*/ createComponent({
|
|
|
842
863
|
export const MdsRadialMenu = /*@__PURE__*/ createComponent({
|
|
843
864
|
tagName: 'mds-radial-menu',
|
|
844
865
|
elementClass: MdsRadialMenuElement,
|
|
845
|
-
// @ts-ignore - React type
|
|
866
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
846
867
|
react: React,
|
|
847
868
|
events: {},
|
|
848
869
|
defineCustomElement: defineMdsRadialMenu
|
|
@@ -850,7 +871,7 @@ export const MdsRadialMenu = /*@__PURE__*/ createComponent({
|
|
|
850
871
|
export const MdsRadialMenuItem = /*@__PURE__*/ createComponent({
|
|
851
872
|
tagName: 'mds-radial-menu-item',
|
|
852
873
|
elementClass: MdsRadialMenuItemElement,
|
|
853
|
-
// @ts-ignore - React type
|
|
874
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
854
875
|
react: React,
|
|
855
876
|
events: {},
|
|
856
877
|
defineCustomElement: defineMdsRadialMenuItem
|
|
@@ -858,7 +879,7 @@ export const MdsRadialMenuItem = /*@__PURE__*/ createComponent({
|
|
|
858
879
|
export const MdsRadialProgress = /*@__PURE__*/ createComponent({
|
|
859
880
|
tagName: 'mds-radial-progress',
|
|
860
881
|
elementClass: MdsRadialProgressElement,
|
|
861
|
-
// @ts-ignore - React type
|
|
882
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
862
883
|
react: React,
|
|
863
884
|
events: {},
|
|
864
885
|
defineCustomElement: defineMdsRadialProgress
|
|
@@ -866,7 +887,7 @@ export const MdsRadialProgress = /*@__PURE__*/ createComponent({
|
|
|
866
887
|
export const MdsSeparator = /*@__PURE__*/ createComponent({
|
|
867
888
|
tagName: 'mds-separator',
|
|
868
889
|
elementClass: MdsSeparatorElement,
|
|
869
|
-
// @ts-ignore - React type
|
|
890
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
870
891
|
react: React,
|
|
871
892
|
events: {},
|
|
872
893
|
defineCustomElement: defineMdsSeparator
|
|
@@ -874,7 +895,7 @@ export const MdsSeparator = /*@__PURE__*/ createComponent({
|
|
|
874
895
|
export const MdsSpinner = /*@__PURE__*/ createComponent({
|
|
875
896
|
tagName: 'mds-spinner',
|
|
876
897
|
elementClass: MdsSpinnerElement,
|
|
877
|
-
// @ts-ignore - React type
|
|
898
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
878
899
|
react: React,
|
|
879
900
|
events: {},
|
|
880
901
|
defineCustomElement: defineMdsSpinner
|
|
@@ -882,7 +903,7 @@ export const MdsSpinner = /*@__PURE__*/ createComponent({
|
|
|
882
903
|
export const MdsStatusBar = /*@__PURE__*/ createComponent({
|
|
883
904
|
tagName: 'mds-status-bar',
|
|
884
905
|
elementClass: MdsStatusBarElement,
|
|
885
|
-
// @ts-ignore - React type
|
|
906
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
886
907
|
react: React,
|
|
887
908
|
events: {},
|
|
888
909
|
defineCustomElement: defineMdsStatusBar
|
|
@@ -890,7 +911,7 @@ export const MdsStatusBar = /*@__PURE__*/ createComponent({
|
|
|
890
911
|
export const MdsStepperBar = /*@__PURE__*/ createComponent({
|
|
891
912
|
tagName: 'mds-stepper-bar',
|
|
892
913
|
elementClass: MdsStepperBarElement,
|
|
893
|
-
// @ts-ignore - React type
|
|
914
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
894
915
|
react: React,
|
|
895
916
|
events: { onMdsStepperBarChange: 'mdsStepperBarChange' },
|
|
896
917
|
defineCustomElement: defineMdsStepperBar
|
|
@@ -898,7 +919,7 @@ export const MdsStepperBar = /*@__PURE__*/ createComponent({
|
|
|
898
919
|
export const MdsStepperBarItem = /*@__PURE__*/ createComponent({
|
|
899
920
|
tagName: 'mds-stepper-bar-item',
|
|
900
921
|
elementClass: MdsStepperBarItemElement,
|
|
901
|
-
// @ts-ignore - React type
|
|
922
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
902
923
|
react: React,
|
|
903
924
|
events: { onMdsStepperBarItemDone: 'mdsStepperBarItemDone' },
|
|
904
925
|
defineCustomElement: defineMdsStepperBarItem
|
|
@@ -906,7 +927,7 @@ export const MdsStepperBarItem = /*@__PURE__*/ createComponent({
|
|
|
906
927
|
export const MdsTab = /*@__PURE__*/ createComponent({
|
|
907
928
|
tagName: 'mds-tab',
|
|
908
929
|
elementClass: MdsTabElement,
|
|
909
|
-
// @ts-ignore - React type
|
|
930
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
910
931
|
react: React,
|
|
911
932
|
events: { onMdsTabChange: 'mdsTabChange' },
|
|
912
933
|
defineCustomElement: defineMdsTab
|
|
@@ -914,7 +935,7 @@ export const MdsTab = /*@__PURE__*/ createComponent({
|
|
|
914
935
|
export const MdsTabBar = /*@__PURE__*/ createComponent({
|
|
915
936
|
tagName: 'mds-tab-bar',
|
|
916
937
|
elementClass: MdsTabBarElement,
|
|
917
|
-
// @ts-ignore - React type
|
|
938
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
918
939
|
react: React,
|
|
919
940
|
events: { onMdsTabBarChange: 'mdsTabBarChange' },
|
|
920
941
|
defineCustomElement: defineMdsTabBar
|
|
@@ -922,7 +943,7 @@ export const MdsTabBar = /*@__PURE__*/ createComponent({
|
|
|
922
943
|
export const MdsTabBarItem = /*@__PURE__*/ createComponent({
|
|
923
944
|
tagName: 'mds-tab-bar-item',
|
|
924
945
|
elementClass: MdsTabBarItemElement,
|
|
925
|
-
// @ts-ignore - React type
|
|
946
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
926
947
|
react: React,
|
|
927
948
|
events: { onMdsTabBarItemSelect: 'mdsTabBarItemSelect' },
|
|
928
949
|
defineCustomElement: defineMdsTabBarItem
|
|
@@ -930,7 +951,7 @@ export const MdsTabBarItem = /*@__PURE__*/ createComponent({
|
|
|
930
951
|
export const MdsTabItem = /*@__PURE__*/ createComponent({
|
|
931
952
|
tagName: 'mds-tab-item',
|
|
932
953
|
elementClass: MdsTabItemElement,
|
|
933
|
-
// @ts-ignore - React type
|
|
954
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
934
955
|
react: React,
|
|
935
956
|
events: {
|
|
936
957
|
onMdsTabItemSelect: 'mdsTabItemSelect',
|
|
@@ -941,7 +962,7 @@ export const MdsTabItem = /*@__PURE__*/ createComponent({
|
|
|
941
962
|
export const MdsTable = /*@__PURE__*/ createComponent({
|
|
942
963
|
tagName: 'mds-table',
|
|
943
964
|
elementClass: MdsTableElement,
|
|
944
|
-
// @ts-ignore - React type
|
|
965
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
945
966
|
react: React,
|
|
946
967
|
events: { onMdsTableSelectionChange: 'mdsTableSelectionChange' },
|
|
947
968
|
defineCustomElement: defineMdsTable
|
|
@@ -949,7 +970,7 @@ export const MdsTable = /*@__PURE__*/ createComponent({
|
|
|
949
970
|
export const MdsTableBody = /*@__PURE__*/ createComponent({
|
|
950
971
|
tagName: 'mds-table-body',
|
|
951
972
|
elementClass: MdsTableBodyElement,
|
|
952
|
-
// @ts-ignore - React type
|
|
973
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
953
974
|
react: React,
|
|
954
975
|
events: {},
|
|
955
976
|
defineCustomElement: defineMdsTableBody
|
|
@@ -957,7 +978,7 @@ export const MdsTableBody = /*@__PURE__*/ createComponent({
|
|
|
957
978
|
export const MdsTableCell = /*@__PURE__*/ createComponent({
|
|
958
979
|
tagName: 'mds-table-cell',
|
|
959
980
|
elementClass: MdsTableCellElement,
|
|
960
|
-
// @ts-ignore - React type
|
|
981
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
961
982
|
react: React,
|
|
962
983
|
events: {},
|
|
963
984
|
defineCustomElement: defineMdsTableCell
|
|
@@ -965,7 +986,7 @@ export const MdsTableCell = /*@__PURE__*/ createComponent({
|
|
|
965
986
|
export const MdsTableFooter = /*@__PURE__*/ createComponent({
|
|
966
987
|
tagName: 'mds-table-footer',
|
|
967
988
|
elementClass: MdsTableFooterElement,
|
|
968
|
-
// @ts-ignore - React type
|
|
989
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
969
990
|
react: React,
|
|
970
991
|
events: {},
|
|
971
992
|
defineCustomElement: defineMdsTableFooter
|
|
@@ -973,7 +994,7 @@ export const MdsTableFooter = /*@__PURE__*/ createComponent({
|
|
|
973
994
|
export const MdsTableHeader = /*@__PURE__*/ createComponent({
|
|
974
995
|
tagName: 'mds-table-header',
|
|
975
996
|
elementClass: MdsTableHeaderElement,
|
|
976
|
-
// @ts-ignore - React type
|
|
997
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
977
998
|
react: React,
|
|
978
999
|
events: {},
|
|
979
1000
|
defineCustomElement: defineMdsTableHeader
|
|
@@ -981,7 +1002,7 @@ export const MdsTableHeader = /*@__PURE__*/ createComponent({
|
|
|
981
1002
|
export const MdsTableHeaderCell = /*@__PURE__*/ createComponent({
|
|
982
1003
|
tagName: 'mds-table-header-cell',
|
|
983
1004
|
elementClass: MdsTableHeaderCellElement,
|
|
984
|
-
// @ts-ignore - React type
|
|
1005
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
985
1006
|
react: React,
|
|
986
1007
|
events: {},
|
|
987
1008
|
defineCustomElement: defineMdsTableHeaderCell
|
|
@@ -989,7 +1010,7 @@ export const MdsTableHeaderCell = /*@__PURE__*/ createComponent({
|
|
|
989
1010
|
export const MdsTableRow = /*@__PURE__*/ createComponent({
|
|
990
1011
|
tagName: 'mds-table-row',
|
|
991
1012
|
elementClass: MdsTableRowElement,
|
|
992
|
-
// @ts-ignore - React type
|
|
1013
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
993
1014
|
react: React,
|
|
994
1015
|
events: {},
|
|
995
1016
|
defineCustomElement: defineMdsTableRow
|
|
@@ -997,7 +1018,7 @@ export const MdsTableRow = /*@__PURE__*/ createComponent({
|
|
|
997
1018
|
export const MdsText = /*@__PURE__*/ createComponent({
|
|
998
1019
|
tagName: 'mds-text',
|
|
999
1020
|
elementClass: MdsTextElement,
|
|
1000
|
-
// @ts-ignore - React type
|
|
1021
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
1001
1022
|
react: React,
|
|
1002
1023
|
events: {},
|
|
1003
1024
|
defineCustomElement: defineMdsText
|
|
@@ -1005,7 +1026,7 @@ export const MdsText = /*@__PURE__*/ createComponent({
|
|
|
1005
1026
|
export const MdsToast = /*@__PURE__*/ createComponent({
|
|
1006
1027
|
tagName: 'mds-toast',
|
|
1007
1028
|
elementClass: MdsToastElement,
|
|
1008
|
-
// @ts-ignore - React type
|
|
1029
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
1009
1030
|
react: React,
|
|
1010
1031
|
events: { onMdsToastClose: 'mdsToastClose' },
|
|
1011
1032
|
defineCustomElement: defineMdsToast
|
|
@@ -1013,7 +1034,7 @@ export const MdsToast = /*@__PURE__*/ createComponent({
|
|
|
1013
1034
|
export const MdsTooltip = /*@__PURE__*/ createComponent({
|
|
1014
1035
|
tagName: 'mds-tooltip',
|
|
1015
1036
|
elementClass: MdsTooltipElement,
|
|
1016
|
-
// @ts-ignore - React type
|
|
1037
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
1017
1038
|
react: React,
|
|
1018
1039
|
events: {},
|
|
1019
1040
|
defineCustomElement: defineMdsTooltip
|
|
@@ -1021,7 +1042,7 @@ export const MdsTooltip = /*@__PURE__*/ createComponent({
|
|
|
1021
1042
|
export const MdsTree = /*@__PURE__*/ createComponent({
|
|
1022
1043
|
tagName: 'mds-tree',
|
|
1023
1044
|
elementClass: MdsTreeElement,
|
|
1024
|
-
// @ts-ignore - React type
|
|
1045
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
1025
1046
|
react: React,
|
|
1026
1047
|
events: {},
|
|
1027
1048
|
defineCustomElement: defineMdsTree
|
|
@@ -1029,7 +1050,7 @@ export const MdsTree = /*@__PURE__*/ createComponent({
|
|
|
1029
1050
|
export const MdsTreeItem = /*@__PURE__*/ createComponent({
|
|
1030
1051
|
tagName: 'mds-tree-item',
|
|
1031
1052
|
elementClass: MdsTreeItemElement,
|
|
1032
|
-
// @ts-ignore - React type
|
|
1053
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
1033
1054
|
react: React,
|
|
1034
1055
|
events: {
|
|
1035
1056
|
onMdsTreeItemExpand: 'mdsTreeItemExpand',
|
|
@@ -1040,7 +1061,7 @@ export const MdsTreeItem = /*@__PURE__*/ createComponent({
|
|
|
1040
1061
|
export const MdsUrlView = /*@__PURE__*/ createComponent({
|
|
1041
1062
|
tagName: 'mds-url-view',
|
|
1042
1063
|
elementClass: MdsUrlViewElement,
|
|
1043
|
-
// @ts-ignore - React type
|
|
1064
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
1044
1065
|
react: React,
|
|
1045
1066
|
events: { onMdsUrlViewClose: 'mdsUrlViewClose' },
|
|
1046
1067
|
defineCustomElement: defineMdsUrlView
|
|
@@ -1048,7 +1069,7 @@ export const MdsUrlView = /*@__PURE__*/ createComponent({
|
|
|
1048
1069
|
export const MdsUsage = /*@__PURE__*/ createComponent({
|
|
1049
1070
|
tagName: 'mds-usage',
|
|
1050
1071
|
elementClass: MdsUsageElement,
|
|
1051
|
-
// @ts-ignore - React type
|
|
1072
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
1052
1073
|
react: React,
|
|
1053
1074
|
events: {},
|
|
1054
1075
|
defineCustomElement: defineMdsUsage
|
|
@@ -1056,7 +1077,7 @@ export const MdsUsage = /*@__PURE__*/ createComponent({
|
|
|
1056
1077
|
export const MdsVideoWall = /*@__PURE__*/ createComponent({
|
|
1057
1078
|
tagName: 'mds-video-wall',
|
|
1058
1079
|
elementClass: MdsVideoWallElement,
|
|
1059
|
-
// @ts-ignore - React type
|
|
1080
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
1060
1081
|
react: React,
|
|
1061
1082
|
events: {},
|
|
1062
1083
|
defineCustomElement: defineMdsVideoWall
|
|
@@ -1064,7 +1085,7 @@ export const MdsVideoWall = /*@__PURE__*/ createComponent({
|
|
|
1064
1085
|
export const MdsZero = /*@__PURE__*/ createComponent({
|
|
1065
1086
|
tagName: 'mds-zero',
|
|
1066
1087
|
elementClass: MdsZeroElement,
|
|
1067
|
-
// @ts-ignore - React type
|
|
1088
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
1068
1089
|
react: React,
|
|
1069
1090
|
events: {},
|
|
1070
1091
|
defineCustomElement: defineMdsZero
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* This file was automatically generated by the Stencil React Output Target.
|
|
3
3
|
* Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
|
|
4
4
|
*/
|
|
5
|
-
import { type MdsAccordionCustomEvent, type MdsAccordionEventDetail, type MdsAccordionItemCustomEvent, type MdsAccordionItemEventDetail, type MdsAccordionTimerCustomEvent, type MdsAccordionTimerEventDetail, type MdsAccordionTimerItemCustomEvent, type MdsAccordionTimerItemEventDetail, type MdsBreadcrumbCustomEvent, type MdsBreadcrumbEventDetail, type MdsBreadcrumbItemCustomEvent, type MdsBreadcrumbItemEventDetail, type MdsChipCustomEvent, type MdsChipEvent, type MdsDropdownCustomEvent, type MdsDropdownEventDetail, type MdsFileCustomEvent, type MdsFileEventDetail, type MdsFilePreviewCustomEvent, type MdsFilePreviewEventDetail, type MdsFilterCustomEvent, type MdsFilterEventDetail, type MdsFilterItemCustomEvent, type MdsFilterItemEventDetail, type MdsHeaderCustomEvent, type MdsHeaderEventDetail, type MdsHeaderVisibilityEventDetail, type MdsImgCustomEvent, type MdsImgEventDetail, type MdsInputCustomEvent, type MdsInputEventDetail, type MdsInputSelectCustomEvent, type MdsInputSwitchCustomEvent, type MdsInputSwitchEventDetail, type MdsInputUploadCustomEvent, type MdsPaginatorCustomEvent, type MdsPaginatorEventDetail, type MdsPrefAnimationCustomEvent, type MdsPrefChangeEventDetail, type MdsPrefConsumptionCustomEvent, type MdsPrefContrastCustomEvent, type MdsPrefLanguageCustomEvent, type MdsPrefLanguageEventDetail, type MdsPrefLanguageItemCustomEvent, type MdsPrefThemeCustomEvent, type MdsPushNotificationCustomEvent, type MdsPushNotificationEventDetail, type MdsPushNotificationItemCustomEvent, type MdsPushNotificationItemEventDetail, type MdsStepperBarCustomEvent, type MdsStepperBarEventDetail, type MdsStepperBarItemCustomEvent, type MdsStepperBarItemEventDetail, type MdsTabBarCustomEvent, type MdsTabBarEventDetail, type MdsTabCustomEvent, type MdsTabEventDetail, type MdsTabItemCustomEvent, type MdsTabItemEventDetail, type MdsTableCustomEvent, type MdsTableSelectionEventDetail, type MdsTreeItemCustomEvent, type MdsTreeItemEventDetail } from "@maggioli-design-system/magma";
|
|
5
|
+
import { type MdsAccordionCustomEvent, type MdsAccordionEventDetail, type MdsAccordionItemCustomEvent, type MdsAccordionItemEventDetail, type MdsAccordionTimerCustomEvent, type MdsAccordionTimerEventDetail, type MdsAccordionTimerItemCustomEvent, type MdsAccordionTimerItemEventDetail, type MdsBreadcrumbCustomEvent, type MdsBreadcrumbEventDetail, type MdsBreadcrumbItemCustomEvent, type MdsBreadcrumbItemEventDetail, type MdsChipCustomEvent, type MdsChipEvent, type MdsDropdownCustomEvent, type MdsDropdownEventDetail, type MdsFileCustomEvent, type MdsFileEventDetail, type MdsFilePreviewCustomEvent, type MdsFilePreviewEventDetail, type MdsFilterCustomEvent, type MdsFilterEventDetail, type MdsFilterItemCustomEvent, type MdsFilterItemEventDetail, type MdsHeaderCustomEvent, type MdsHeaderEventDetail, type MdsHeaderVisibilityEventDetail, type MdsImgCustomEvent, type MdsImgEventDetail, type MdsInputCustomEvent, type MdsInputEventDetail, type MdsInputSelectCustomEvent, type MdsInputSwitchCustomEvent, type MdsInputSwitchEventDetail, type MdsInputUploadCustomEvent, type MdsPaginatorCustomEvent, type MdsPaginatorEventDetail, type MdsPrefAnimationCustomEvent, type MdsPrefChangeEventDetail, type MdsPrefConsumptionCustomEvent, type MdsPrefContrastCustomEvent, type MdsPrefLanguageCustomEvent, type MdsPrefLanguageEventDetail, type MdsPrefLanguageItemCustomEvent, type MdsPrefThemeCustomEvent, type MdsPrefThemeVariantCustomEvent, type MdsPrefThemeVariantEventDetail, type MdsPrefThemeVariantItemCustomEvent, type MdsPushNotificationCustomEvent, type MdsPushNotificationEventDetail, type MdsPushNotificationItemCustomEvent, type MdsPushNotificationItemEventDetail, type MdsStepperBarCustomEvent, type MdsStepperBarEventDetail, type MdsStepperBarItemCustomEvent, type MdsStepperBarItemEventDetail, type MdsTabBarCustomEvent, type MdsTabBarEventDetail, type MdsTabCustomEvent, type MdsTabEventDetail, type MdsTabItemCustomEvent, type MdsTabItemEventDetail, type MdsTableCustomEvent, type MdsTableSelectionEventDetail, type MdsTreeItemCustomEvent, type MdsTreeItemEventDetail } from "@maggioli-design-system/magma";
|
|
6
6
|
import { MdsAccordionItem as MdsAccordionItemElement } from "@maggioli-design-system/magma/dist/components/mds-accordion-item.js";
|
|
7
7
|
import { MdsAccordionTimerItem as MdsAccordionTimerItemElement } from "@maggioli-design-system/magma/dist/components/mds-accordion-timer-item.js";
|
|
8
8
|
import { MdsAccordionTimer as MdsAccordionTimerElement } from "@maggioli-design-system/magma/dist/components/mds-accordion-timer.js";
|
|
@@ -74,6 +74,8 @@ import { MdsPrefConsumption as MdsPrefConsumptionElement } from "@maggioli-desig
|
|
|
74
74
|
import { MdsPrefContrast as MdsPrefContrastElement } from "@maggioli-design-system/magma/dist/components/mds-pref-contrast.js";
|
|
75
75
|
import { MdsPrefLanguageItem as MdsPrefLanguageItemElement } from "@maggioli-design-system/magma/dist/components/mds-pref-language-item.js";
|
|
76
76
|
import { MdsPrefLanguage as MdsPrefLanguageElement } from "@maggioli-design-system/magma/dist/components/mds-pref-language.js";
|
|
77
|
+
import { MdsPrefThemeVariantItem as MdsPrefThemeVariantItemElement } from "@maggioli-design-system/magma/dist/components/mds-pref-theme-variant-item.js";
|
|
78
|
+
import { MdsPrefThemeVariant as MdsPrefThemeVariantElement } from "@maggioli-design-system/magma/dist/components/mds-pref-theme-variant.js";
|
|
77
79
|
import { MdsPrefTheme as MdsPrefThemeElement } from "@maggioli-design-system/magma/dist/components/mds-pref-theme.js";
|
|
78
80
|
import { MdsPref as MdsPrefElement } from "@maggioli-design-system/magma/dist/components/mds-pref.js";
|
|
79
81
|
import { MdsPriceTableFeaturesCell as MdsPriceTableFeaturesCellElement } from "@maggioli-design-system/magma/dist/components/mds-price-table-features-cell.js";
|
|
@@ -365,6 +367,15 @@ export type MdsPrefThemeEvents = {
|
|
|
365
367
|
onMdsPrefChange: EventName<MdsPrefThemeCustomEvent<MdsPrefChangeEventDetail>>;
|
|
366
368
|
};
|
|
367
369
|
export declare const MdsPrefTheme: StencilReactComponent<MdsPrefThemeElement, MdsPrefThemeEvents>;
|
|
370
|
+
export type MdsPrefThemeVariantEvents = {
|
|
371
|
+
onMdsPrefThemeVariantChange: EventName<MdsPrefThemeVariantCustomEvent<MdsPrefThemeVariantEventDetail>>;
|
|
372
|
+
onMdsPrefChange: EventName<MdsPrefThemeVariantCustomEvent<MdsPrefChangeEventDetail>>;
|
|
373
|
+
};
|
|
374
|
+
export declare const MdsPrefThemeVariant: StencilReactComponent<MdsPrefThemeVariantElement, MdsPrefThemeVariantEvents>;
|
|
375
|
+
export type MdsPrefThemeVariantItemEvents = {
|
|
376
|
+
onMdsPrefThemeVariantItemSelect: EventName<MdsPrefThemeVariantItemCustomEvent<MdsPrefThemeVariantEventDetail>>;
|
|
377
|
+
};
|
|
378
|
+
export declare const MdsPrefThemeVariantItem: StencilReactComponent<MdsPrefThemeVariantItemElement, MdsPrefThemeVariantItemEvents>;
|
|
368
379
|
export type MdsPriceTableEvents = NonNullable<unknown>;
|
|
369
380
|
export declare const MdsPriceTable: StencilReactComponent<MdsPriceTableElement, MdsPriceTableEvents>;
|
|
370
381
|
export type MdsPriceTableFeaturesEvents = NonNullable<unknown>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maggioli-design-system/magma-react",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-alpha.1",
|
|
4
4
|
"main": "dist/components.js",
|
|
5
5
|
"module": "dist/components.js",
|
|
6
6
|
"types": "dist/types/components.d.ts",
|
|
@@ -15,10 +15,15 @@
|
|
|
15
15
|
"access": "public"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@maggioli-design-system/magma": "
|
|
18
|
+
"@maggioli-design-system/magma": "2.0.0-alpha.1",
|
|
19
19
|
"@stencil/react-output-target": "1.0.2"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"typescript": "5.6.3"
|
|
23
|
+
},
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "git+https://github.com/magma-design-system/magma.git",
|
|
27
|
+
"directory": "projects/stencil/react"
|
|
23
28
|
}
|
|
24
29
|
}
|