@maggioli-design-system/magma-react 1.7.0 → 1.8.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 +18 -0
- package/dist/types/components.d.ts +6 -0
- package/package.json +2 -2
package/dist/components.js
CHANGED
|
@@ -79,6 +79,8 @@ import { MdsProgress as MdsProgressElement, defineCustomElement as defineMdsProg
|
|
|
79
79
|
import { MdsPushNotificationItem as MdsPushNotificationItemElement, defineCustomElement as defineMdsPushNotificationItem } from "@maggioli-design-system/magma/dist/components/mds-push-notification-item.js";
|
|
80
80
|
import { MdsPushNotification as MdsPushNotificationElement, defineCustomElement as defineMdsPushNotification } from "@maggioli-design-system/magma/dist/components/mds-push-notification.js";
|
|
81
81
|
import { MdsQuote as MdsQuoteElement, defineCustomElement as defineMdsQuote } from "@maggioli-design-system/magma/dist/components/mds-quote.js";
|
|
82
|
+
import { MdsRadialMenuItem as MdsRadialMenuItemElement, defineCustomElement as defineMdsRadialMenuItem } from "@maggioli-design-system/magma/dist/components/mds-radial-menu-item.js";
|
|
83
|
+
import { MdsRadialMenu as MdsRadialMenuElement, defineCustomElement as defineMdsRadialMenu } from "@maggioli-design-system/magma/dist/components/mds-radial-menu.js";
|
|
82
84
|
import { MdsSeparator as MdsSeparatorElement, defineCustomElement as defineMdsSeparator } from "@maggioli-design-system/magma/dist/components/mds-separator.js";
|
|
83
85
|
import { MdsSpinner as MdsSpinnerElement, defineCustomElement as defineMdsSpinner } from "@maggioli-design-system/magma/dist/components/mds-spinner.js";
|
|
84
86
|
import { MdsStepperBarItem as MdsStepperBarItemElement, defineCustomElement as defineMdsStepperBarItem } from "@maggioli-design-system/magma/dist/components/mds-stepper-bar-item.js";
|
|
@@ -789,6 +791,22 @@ export const MdsQuote = /*@__PURE__*/ createComponent({
|
|
|
789
791
|
events: {},
|
|
790
792
|
defineCustomElement: defineMdsQuote
|
|
791
793
|
});
|
|
794
|
+
export const MdsRadialMenu = /*@__PURE__*/ createComponent({
|
|
795
|
+
tagName: 'mds-radial-menu',
|
|
796
|
+
elementClass: MdsRadialMenuElement,
|
|
797
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
798
|
+
react: React,
|
|
799
|
+
events: {},
|
|
800
|
+
defineCustomElement: defineMdsRadialMenu
|
|
801
|
+
});
|
|
802
|
+
export const MdsRadialMenuItem = /*@__PURE__*/ createComponent({
|
|
803
|
+
tagName: 'mds-radial-menu-item',
|
|
804
|
+
elementClass: MdsRadialMenuItemElement,
|
|
805
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
806
|
+
react: React,
|
|
807
|
+
events: {},
|
|
808
|
+
defineCustomElement: defineMdsRadialMenuItem
|
|
809
|
+
});
|
|
792
810
|
export const MdsSeparator = /*@__PURE__*/ createComponent({
|
|
793
811
|
tagName: 'mds-separator',
|
|
794
812
|
elementClass: MdsSeparatorElement,
|
|
@@ -83,6 +83,8 @@ import { MdsProgress as MdsProgressElement } from "@maggioli-design-system/magma
|
|
|
83
83
|
import { MdsPushNotificationItem as MdsPushNotificationItemElement } from "@maggioli-design-system/magma/dist/components/mds-push-notification-item.js";
|
|
84
84
|
import { MdsPushNotification as MdsPushNotificationElement } from "@maggioli-design-system/magma/dist/components/mds-push-notification.js";
|
|
85
85
|
import { MdsQuote as MdsQuoteElement } from "@maggioli-design-system/magma/dist/components/mds-quote.js";
|
|
86
|
+
import { MdsRadialMenuItem as MdsRadialMenuItemElement } from "@maggioli-design-system/magma/dist/components/mds-radial-menu-item.js";
|
|
87
|
+
import { MdsRadialMenu as MdsRadialMenuElement } from "@maggioli-design-system/magma/dist/components/mds-radial-menu.js";
|
|
86
88
|
import { MdsSeparator as MdsSeparatorElement } from "@maggioli-design-system/magma/dist/components/mds-separator.js";
|
|
87
89
|
import { MdsSpinner as MdsSpinnerElement } from "@maggioli-design-system/magma/dist/components/mds-spinner.js";
|
|
88
90
|
import { MdsStepperBarItem as MdsStepperBarItemElement } from "@maggioli-design-system/magma/dist/components/mds-stepper-bar-item.js";
|
|
@@ -368,6 +370,10 @@ export type MdsPushNotificationItemEvents = {
|
|
|
368
370
|
export declare const MdsPushNotificationItem: StencilReactComponent<MdsPushNotificationItemElement, MdsPushNotificationItemEvents>;
|
|
369
371
|
export type MdsQuoteEvents = NonNullable<unknown>;
|
|
370
372
|
export declare const MdsQuote: StencilReactComponent<MdsQuoteElement, MdsQuoteEvents>;
|
|
373
|
+
export type MdsRadialMenuEvents = NonNullable<unknown>;
|
|
374
|
+
export declare const MdsRadialMenu: StencilReactComponent<MdsRadialMenuElement, MdsRadialMenuEvents>;
|
|
375
|
+
export type MdsRadialMenuItemEvents = NonNullable<unknown>;
|
|
376
|
+
export declare const MdsRadialMenuItem: StencilReactComponent<MdsRadialMenuItemElement, MdsRadialMenuItemEvents>;
|
|
371
377
|
export type MdsSeparatorEvents = NonNullable<unknown>;
|
|
372
378
|
export declare const MdsSeparator: StencilReactComponent<MdsSeparatorElement, MdsSeparatorEvents>;
|
|
373
379
|
export type MdsSpinnerEvents = NonNullable<unknown>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maggioli-design-system/magma-react",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.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.8.0",
|
|
19
19
|
"@stencil/react-output-target": "1.0.2"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|