@maggioli-design-system/magma-react 1.11.0 → 1.11.2
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 +9 -0
- package/dist/types/components.d.ts +3 -0
- package/package.json +2 -2
package/dist/components.js
CHANGED
|
@@ -85,6 +85,7 @@ import { MdsPushNotification as MdsPushNotificationElement, defineCustomElement
|
|
|
85
85
|
import { MdsQuote as MdsQuoteElement, defineCustomElement as defineMdsQuote } from "@maggioli-design-system/magma/dist/components/mds-quote.js";
|
|
86
86
|
import { MdsRadialMenuItem as MdsRadialMenuItemElement, defineCustomElement as defineMdsRadialMenuItem } from "@maggioli-design-system/magma/dist/components/mds-radial-menu-item.js";
|
|
87
87
|
import { MdsRadialMenu as MdsRadialMenuElement, defineCustomElement as defineMdsRadialMenu } from "@maggioli-design-system/magma/dist/components/mds-radial-menu.js";
|
|
88
|
+
import { MdsRadialProgress as MdsRadialProgressElement, defineCustomElement as defineMdsRadialProgress } from "@maggioli-design-system/magma/dist/components/mds-radial-progress.js";
|
|
88
89
|
import { MdsSeparator as MdsSeparatorElement, defineCustomElement as defineMdsSeparator } from "@maggioli-design-system/magma/dist/components/mds-separator.js";
|
|
89
90
|
import { MdsSpinner as MdsSpinnerElement, defineCustomElement as defineMdsSpinner } from "@maggioli-design-system/magma/dist/components/mds-spinner.js";
|
|
90
91
|
import { MdsStatusBar as MdsStatusBarElement, defineCustomElement as defineMdsStatusBar } from "@maggioli-design-system/magma/dist/components/mds-status-bar.js";
|
|
@@ -851,6 +852,14 @@ export const MdsRadialMenuItem = /*@__PURE__*/ createComponent({
|
|
|
851
852
|
events: {},
|
|
852
853
|
defineCustomElement: defineMdsRadialMenuItem
|
|
853
854
|
});
|
|
855
|
+
export const MdsRadialProgress = /*@__PURE__*/ createComponent({
|
|
856
|
+
tagName: 'mds-radial-progress',
|
|
857
|
+
elementClass: MdsRadialProgressElement,
|
|
858
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
859
|
+
react: React,
|
|
860
|
+
events: {},
|
|
861
|
+
defineCustomElement: defineMdsRadialProgress
|
|
862
|
+
});
|
|
854
863
|
export const MdsSeparator = /*@__PURE__*/ createComponent({
|
|
855
864
|
tagName: 'mds-separator',
|
|
856
865
|
elementClass: MdsSeparatorElement,
|
|
@@ -89,6 +89,7 @@ import { MdsPushNotification as MdsPushNotificationElement } from "@maggioli-des
|
|
|
89
89
|
import { MdsQuote as MdsQuoteElement } from "@maggioli-design-system/magma/dist/components/mds-quote.js";
|
|
90
90
|
import { MdsRadialMenuItem as MdsRadialMenuItemElement } from "@maggioli-design-system/magma/dist/components/mds-radial-menu-item.js";
|
|
91
91
|
import { MdsRadialMenu as MdsRadialMenuElement } from "@maggioli-design-system/magma/dist/components/mds-radial-menu.js";
|
|
92
|
+
import { MdsRadialProgress as MdsRadialProgressElement } from "@maggioli-design-system/magma/dist/components/mds-radial-progress.js";
|
|
92
93
|
import { MdsSeparator as MdsSeparatorElement } from "@maggioli-design-system/magma/dist/components/mds-separator.js";
|
|
93
94
|
import { MdsSpinner as MdsSpinnerElement } from "@maggioli-design-system/magma/dist/components/mds-spinner.js";
|
|
94
95
|
import { MdsStatusBar as MdsStatusBarElement } from "@maggioli-design-system/magma/dist/components/mds-status-bar.js";
|
|
@@ -395,6 +396,8 @@ export type MdsRadialMenuEvents = NonNullable<unknown>;
|
|
|
395
396
|
export declare const MdsRadialMenu: StencilReactComponent<MdsRadialMenuElement, MdsRadialMenuEvents>;
|
|
396
397
|
export type MdsRadialMenuItemEvents = NonNullable<unknown>;
|
|
397
398
|
export declare const MdsRadialMenuItem: StencilReactComponent<MdsRadialMenuItemElement, MdsRadialMenuItemEvents>;
|
|
399
|
+
export type MdsRadialProgressEvents = NonNullable<unknown>;
|
|
400
|
+
export declare const MdsRadialProgress: StencilReactComponent<MdsRadialProgressElement, MdsRadialProgressEvents>;
|
|
398
401
|
export type MdsSeparatorEvents = NonNullable<unknown>;
|
|
399
402
|
export declare const MdsSeparator: StencilReactComponent<MdsSeparatorElement, MdsSeparatorEvents>;
|
|
400
403
|
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.11.
|
|
3
|
+
"version": "1.11.2",
|
|
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.11.
|
|
18
|
+
"@maggioli-design-system/magma": "1.11.2",
|
|
19
19
|
"@stencil/react-output-target": "1.0.2"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|