@maggioli-design-system/magma-react 1.9.0 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components.js +40 -1
- package/dist/types/components.d.ts +16 -0
- package/package.json +2 -2
package/dist/components.js
CHANGED
|
@@ -13,6 +13,8 @@ import { MdsBenchmarkBar as MdsBenchmarkBarElement, defineCustomElement as defin
|
|
|
13
13
|
import { MdsBibliography as MdsBibliographyElement, defineCustomElement as defineMdsBibliography } from "@maggioli-design-system/magma/dist/components/mds-bibliography.js";
|
|
14
14
|
import { MdsBreadcrumbItem as MdsBreadcrumbItemElement, defineCustomElement as defineMdsBreadcrumbItem } from "@maggioli-design-system/magma/dist/components/mds-breadcrumb-item.js";
|
|
15
15
|
import { MdsBreadcrumb as MdsBreadcrumbElement, defineCustomElement as defineMdsBreadcrumb } from "@maggioli-design-system/magma/dist/components/mds-breadcrumb.js";
|
|
16
|
+
import { MdsButtonDropdown as MdsButtonDropdownElement, defineCustomElement as defineMdsButtonDropdown } from "@maggioli-design-system/magma/dist/components/mds-button-dropdown.js";
|
|
17
|
+
import { MdsButtonGroup as MdsButtonGroupElement, defineCustomElement as defineMdsButtonGroup } from "@maggioli-design-system/magma/dist/components/mds-button-group.js";
|
|
16
18
|
import { MdsButton as MdsButtonElement, defineCustomElement as defineMdsButton } from "@maggioli-design-system/magma/dist/components/mds-button.js";
|
|
17
19
|
import { MdsCalendarCell as MdsCalendarCellElement, defineCustomElement as defineMdsCalendarCell } from "@maggioli-design-system/magma/dist/components/mds-calendar-cell.js";
|
|
18
20
|
import { MdsCalendar as MdsCalendarElement, defineCustomElement as defineMdsCalendar } from "@maggioli-design-system/magma/dist/components/mds-calendar.js";
|
|
@@ -56,6 +58,7 @@ import { MdsKpi as MdsKpiElement, defineCustomElement as defineMdsKpi } from "@m
|
|
|
56
58
|
import { MdsLabel as MdsLabelElement, defineCustomElement as defineMdsLabel } from "@maggioli-design-system/magma/dist/components/mds-label.js";
|
|
57
59
|
import { MdsListItem as MdsListItemElement, defineCustomElement as defineMdsListItem } from "@maggioli-design-system/magma/dist/components/mds-list-item.js";
|
|
58
60
|
import { MdsList as MdsListElement, defineCustomElement as defineMdsList } from "@maggioli-design-system/magma/dist/components/mds-list.js";
|
|
61
|
+
import { MdsMention as MdsMentionElement, defineCustomElement as defineMdsMention } from "@maggioli-design-system/magma/dist/components/mds-mention.js";
|
|
59
62
|
import { MdsModal as MdsModalElement, defineCustomElement as defineMdsModal } from "@maggioli-design-system/magma/dist/components/mds-modal.js";
|
|
60
63
|
import { MdsNote as MdsNoteElement, defineCustomElement as defineMdsNote } from "@maggioli-design-system/magma/dist/components/mds-note.js";
|
|
61
64
|
import { MdsNotification as MdsNotificationElement, defineCustomElement as defineMdsNotification } from "@maggioli-design-system/magma/dist/components/mds-notification.js";
|
|
@@ -84,6 +87,7 @@ import { MdsRadialMenuItem as MdsRadialMenuItemElement, defineCustomElement as d
|
|
|
84
87
|
import { MdsRadialMenu as MdsRadialMenuElement, defineCustomElement as defineMdsRadialMenu } from "@maggioli-design-system/magma/dist/components/mds-radial-menu.js";
|
|
85
88
|
import { MdsSeparator as MdsSeparatorElement, defineCustomElement as defineMdsSeparator } from "@maggioli-design-system/magma/dist/components/mds-separator.js";
|
|
86
89
|
import { MdsSpinner as MdsSpinnerElement, defineCustomElement as defineMdsSpinner } from "@maggioli-design-system/magma/dist/components/mds-spinner.js";
|
|
90
|
+
import { MdsStatusBar as MdsStatusBarElement, defineCustomElement as defineMdsStatusBar } from "@maggioli-design-system/magma/dist/components/mds-status-bar.js";
|
|
87
91
|
import { MdsStepperBarItem as MdsStepperBarItemElement, defineCustomElement as defineMdsStepperBarItem } from "@maggioli-design-system/magma/dist/components/mds-stepper-bar-item.js";
|
|
88
92
|
import { MdsStepperBar as MdsStepperBarElement, defineCustomElement as defineMdsStepperBar } from "@maggioli-design-system/magma/dist/components/mds-stepper-bar.js";
|
|
89
93
|
import { MdsTabBarItem as MdsTabBarItemElement, defineCustomElement as defineMdsTabBarItem } from "@maggioli-design-system/magma/dist/components/mds-tab-bar-item.js";
|
|
@@ -237,6 +241,22 @@ export const MdsButton = /*@__PURE__*/ createComponent({
|
|
|
237
241
|
events: {},
|
|
238
242
|
defineCustomElement: defineMdsButton
|
|
239
243
|
});
|
|
244
|
+
export const MdsButtonDropdown = /*@__PURE__*/ createComponent({
|
|
245
|
+
tagName: 'mds-button-dropdown',
|
|
246
|
+
elementClass: MdsButtonDropdownElement,
|
|
247
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
248
|
+
react: React,
|
|
249
|
+
events: {},
|
|
250
|
+
defineCustomElement: defineMdsButtonDropdown
|
|
251
|
+
});
|
|
252
|
+
export const MdsButtonGroup = /*@__PURE__*/ createComponent({
|
|
253
|
+
tagName: 'mds-button-group',
|
|
254
|
+
elementClass: MdsButtonGroupElement,
|
|
255
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
256
|
+
react: React,
|
|
257
|
+
events: {},
|
|
258
|
+
defineCustomElement: defineMdsButtonGroup
|
|
259
|
+
});
|
|
240
260
|
export const MdsCalendar = /*@__PURE__*/ createComponent({
|
|
241
261
|
tagName: 'mds-calendar',
|
|
242
262
|
elementClass: MdsCalendarElement,
|
|
@@ -468,7 +488,10 @@ export const MdsInputDateRange = /*@__PURE__*/ createComponent({
|
|
|
468
488
|
elementClass: MdsInputDateRangeElement,
|
|
469
489
|
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
470
490
|
react: React,
|
|
471
|
-
events: {
|
|
491
|
+
events: {
|
|
492
|
+
onMdsInputDateRangeSelect: 'mdsInputDateRangeSelect',
|
|
493
|
+
onMdsInputDateRangeValueChange: 'mdsInputDateRangeValueChange'
|
|
494
|
+
},
|
|
472
495
|
defineCustomElement: defineMdsInputDateRange
|
|
473
496
|
});
|
|
474
497
|
export const MdsInputDateRangePreselection = /*@__PURE__*/ createComponent({
|
|
@@ -599,6 +622,14 @@ export const MdsListItem = /*@__PURE__*/ createComponent({
|
|
|
599
622
|
events: {},
|
|
600
623
|
defineCustomElement: defineMdsListItem
|
|
601
624
|
});
|
|
625
|
+
export const MdsMention = /*@__PURE__*/ createComponent({
|
|
626
|
+
tagName: 'mds-mention',
|
|
627
|
+
elementClass: MdsMentionElement,
|
|
628
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
629
|
+
react: React,
|
|
630
|
+
events: {},
|
|
631
|
+
defineCustomElement: defineMdsMention
|
|
632
|
+
});
|
|
602
633
|
export const MdsModal = /*@__PURE__*/ createComponent({
|
|
603
634
|
tagName: 'mds-modal',
|
|
604
635
|
elementClass: MdsModalElement,
|
|
@@ -833,6 +864,14 @@ export const MdsSpinner = /*@__PURE__*/ createComponent({
|
|
|
833
864
|
events: {},
|
|
834
865
|
defineCustomElement: defineMdsSpinner
|
|
835
866
|
});
|
|
867
|
+
export const MdsStatusBar = /*@__PURE__*/ createComponent({
|
|
868
|
+
tagName: 'mds-status-bar',
|
|
869
|
+
elementClass: MdsStatusBarElement,
|
|
870
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
871
|
+
react: React,
|
|
872
|
+
events: {},
|
|
873
|
+
defineCustomElement: defineMdsStatusBar
|
|
874
|
+
});
|
|
836
875
|
export const MdsStepperBar = /*@__PURE__*/ createComponent({
|
|
837
876
|
tagName: 'mds-stepper-bar',
|
|
838
877
|
elementClass: MdsStepperBarElement,
|
|
@@ -17,6 +17,8 @@ import { MdsBenchmarkBar as MdsBenchmarkBarElement } from "@maggioli-design-syst
|
|
|
17
17
|
import { MdsBibliography as MdsBibliographyElement } from "@maggioli-design-system/magma/dist/components/mds-bibliography.js";
|
|
18
18
|
import { MdsBreadcrumbItem as MdsBreadcrumbItemElement } from "@maggioli-design-system/magma/dist/components/mds-breadcrumb-item.js";
|
|
19
19
|
import { MdsBreadcrumb as MdsBreadcrumbElement } from "@maggioli-design-system/magma/dist/components/mds-breadcrumb.js";
|
|
20
|
+
import { MdsButtonDropdown as MdsButtonDropdownElement } from "@maggioli-design-system/magma/dist/components/mds-button-dropdown.js";
|
|
21
|
+
import { MdsButtonGroup as MdsButtonGroupElement } from "@maggioli-design-system/magma/dist/components/mds-button-group.js";
|
|
20
22
|
import { MdsButton as MdsButtonElement } from "@maggioli-design-system/magma/dist/components/mds-button.js";
|
|
21
23
|
import { MdsCalendarCell as MdsCalendarCellElement } from "@maggioli-design-system/magma/dist/components/mds-calendar-cell.js";
|
|
22
24
|
import { MdsCalendar as MdsCalendarElement } from "@maggioli-design-system/magma/dist/components/mds-calendar.js";
|
|
@@ -60,6 +62,7 @@ import { MdsKpi as MdsKpiElement } from "@maggioli-design-system/magma/dist/comp
|
|
|
60
62
|
import { MdsLabel as MdsLabelElement } from "@maggioli-design-system/magma/dist/components/mds-label.js";
|
|
61
63
|
import { MdsListItem as MdsListItemElement } from "@maggioli-design-system/magma/dist/components/mds-list-item.js";
|
|
62
64
|
import { MdsList as MdsListElement } from "@maggioli-design-system/magma/dist/components/mds-list.js";
|
|
65
|
+
import { MdsMention as MdsMentionElement } from "@maggioli-design-system/magma/dist/components/mds-mention.js";
|
|
63
66
|
import { MdsModal as MdsModalElement } from "@maggioli-design-system/magma/dist/components/mds-modal.js";
|
|
64
67
|
import { MdsNote as MdsNoteElement } from "@maggioli-design-system/magma/dist/components/mds-note.js";
|
|
65
68
|
import { MdsNotification as MdsNotificationElement } from "@maggioli-design-system/magma/dist/components/mds-notification.js";
|
|
@@ -88,6 +91,7 @@ import { MdsRadialMenuItem as MdsRadialMenuItemElement } from "@maggioli-design-
|
|
|
88
91
|
import { MdsRadialMenu as MdsRadialMenuElement } from "@maggioli-design-system/magma/dist/components/mds-radial-menu.js";
|
|
89
92
|
import { MdsSeparator as MdsSeparatorElement } from "@maggioli-design-system/magma/dist/components/mds-separator.js";
|
|
90
93
|
import { MdsSpinner as MdsSpinnerElement } from "@maggioli-design-system/magma/dist/components/mds-spinner.js";
|
|
94
|
+
import { MdsStatusBar as MdsStatusBarElement } from "@maggioli-design-system/magma/dist/components/mds-status-bar.js";
|
|
91
95
|
import { MdsStepperBarItem as MdsStepperBarItemElement } from "@maggioli-design-system/magma/dist/components/mds-stepper-bar-item.js";
|
|
92
96
|
import { MdsStepperBar as MdsStepperBarElement } from "@maggioli-design-system/magma/dist/components/mds-stepper-bar.js";
|
|
93
97
|
import { MdsTabBarItem as MdsTabBarItemElement } from "@maggioli-design-system/magma/dist/components/mds-tab-bar-item.js";
|
|
@@ -160,6 +164,10 @@ export type MdsBreadcrumbItemEvents = {
|
|
|
160
164
|
export declare const MdsBreadcrumbItem: StencilReactComponent<MdsBreadcrumbItemElement, MdsBreadcrumbItemEvents>;
|
|
161
165
|
export type MdsButtonEvents = NonNullable<unknown>;
|
|
162
166
|
export declare const MdsButton: StencilReactComponent<MdsButtonElement, MdsButtonEvents>;
|
|
167
|
+
export type MdsButtonDropdownEvents = NonNullable<unknown>;
|
|
168
|
+
export declare const MdsButtonDropdown: StencilReactComponent<MdsButtonDropdownElement, MdsButtonDropdownEvents>;
|
|
169
|
+
export type MdsButtonGroupEvents = NonNullable<unknown>;
|
|
170
|
+
export declare const MdsButtonGroup: StencilReactComponent<MdsButtonGroupElement, MdsButtonGroupEvents>;
|
|
163
171
|
export type MdsCalendarEvents = {
|
|
164
172
|
onMdsCalendarChange: EventName<CustomEvent<{
|
|
165
173
|
startDate: string;
|
|
@@ -256,6 +264,10 @@ export type MdsInputDateRangeEvents = {
|
|
|
256
264
|
startDate: string;
|
|
257
265
|
endDate: string;
|
|
258
266
|
}>>;
|
|
267
|
+
onMdsInputDateRangeValueChange: EventName<CustomEvent<{
|
|
268
|
+
startDate: string;
|
|
269
|
+
endDate: string;
|
|
270
|
+
}>>;
|
|
259
271
|
};
|
|
260
272
|
export declare const MdsInputDateRange: StencilReactComponent<MdsInputDateRangeElement, MdsInputDateRangeEvents>;
|
|
261
273
|
export type MdsInputDateRangePreselectionEvents = NonNullable<unknown>;
|
|
@@ -300,6 +312,8 @@ export type MdsListEvents = NonNullable<unknown>;
|
|
|
300
312
|
export declare const MdsList: StencilReactComponent<MdsListElement, MdsListEvents>;
|
|
301
313
|
export type MdsListItemEvents = NonNullable<unknown>;
|
|
302
314
|
export declare const MdsListItem: StencilReactComponent<MdsListItemElement, MdsListItemEvents>;
|
|
315
|
+
export type MdsMentionEvents = NonNullable<unknown>;
|
|
316
|
+
export declare const MdsMention: StencilReactComponent<MdsMentionElement, MdsMentionEvents>;
|
|
303
317
|
export type MdsModalEvents = {
|
|
304
318
|
onMdsModalClose: EventName<CustomEvent<void>>;
|
|
305
319
|
onMdsModalHide: EventName<CustomEvent<void>>;
|
|
@@ -382,6 +396,8 @@ export type MdsSeparatorEvents = NonNullable<unknown>;
|
|
|
382
396
|
export declare const MdsSeparator: StencilReactComponent<MdsSeparatorElement, MdsSeparatorEvents>;
|
|
383
397
|
export type MdsSpinnerEvents = NonNullable<unknown>;
|
|
384
398
|
export declare const MdsSpinner: StencilReactComponent<MdsSpinnerElement, MdsSpinnerEvents>;
|
|
399
|
+
export type MdsStatusBarEvents = NonNullable<unknown>;
|
|
400
|
+
export declare const MdsStatusBar: StencilReactComponent<MdsStatusBarElement, MdsStatusBarEvents>;
|
|
385
401
|
export type MdsStepperBarEvents = {
|
|
386
402
|
onMdsStepperBarChange: EventName<MdsStepperBarCustomEvent<MdsStepperBarEventDetail>>;
|
|
387
403
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maggioli-design-system/magma-react",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.0",
|
|
4
4
|
"main": "dist/components.js",
|
|
5
5
|
"module": "dist/components.js",
|
|
6
6
|
"types": "dist/types/components.d.ts",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"access": "public"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@maggioli-design-system/magma": "1.
|
|
18
|
+
"@maggioli-design-system/magma": "1.10.0",
|
|
19
19
|
"@stencil/react-output-target": "1.0.2"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|