@marioschmidt/design-system-vue 1.3.0 → 1.3.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/dist/components.d.ts +1 -0
- package/dist/components.d.ts.map +1 -1
- package/dist/components.js +9 -0
- package/package.json +1 -1
package/dist/components.d.ts
CHANGED
|
@@ -2,4 +2,5 @@ import { type StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
|
2
2
|
import type { JSX } from '@marioschmidt/design-system-components';
|
|
3
3
|
export declare const DsButton: StencilVueComponent<JSX.DsButton>;
|
|
4
4
|
export declare const DsCard: StencilVueComponent<JSX.DsCard>;
|
|
5
|
+
export declare const DsIcon: StencilVueComponent<JSX.DsIcon>;
|
|
5
6
|
//# sourceMappingURL=components.d.ts.map
|
package/dist/components.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../src/components.ts"],"names":[],"mappings":"AAGA,OAAO,EAAmB,KAAK,mBAAmB,EAAE,MAAM,oCAAoC,CAAC;AAE/F,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,wCAAwC,CAAC;
|
|
1
|
+
{"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../src/components.ts"],"names":[],"mappings":"AAGA,OAAO,EAAmB,KAAK,mBAAmB,EAAE,MAAM,oCAAoC,CAAC;AAE/F,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,wCAAwC,CAAC;AAOlE,eAAO,MAAM,QAAQ,EAAE,mBAAmB,CAAC,GAAG,CAAC,QAAQ,CAGrD,CAAC;AAGH,eAAO,MAAM,MAAM,EAAE,mBAAmB,CAAC,GAAG,CAAC,MAAM,CAGjD,CAAC;AAGH,eAAO,MAAM,MAAM,EAAE,mBAAmB,CAAC,GAAG,CAAC,MAAM,CAOjD,CAAC"}
|
package/dist/components.js
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
import { defineContainer } from '@stencil/vue-output-target/runtime';
|
|
5
5
|
import { defineCustomElement as defineDsButton } from '@marioschmidt/design-system-components/dist/components/ds-button.js';
|
|
6
6
|
import { defineCustomElement as defineDsCard } from '@marioschmidt/design-system-components/dist/components/ds-card.js';
|
|
7
|
+
import { defineCustomElement as defineDsIcon } from '@marioschmidt/design-system-components/dist/components/ds-icon.js';
|
|
7
8
|
export const DsButton = /*@__PURE__*/ defineContainer('ds-button', defineDsButton, [
|
|
8
9
|
'variant',
|
|
9
10
|
'disabled'
|
|
@@ -12,3 +13,11 @@ export const DsCard = /*@__PURE__*/ defineContainer('ds-card', defineDsCard, [
|
|
|
12
13
|
'surface',
|
|
13
14
|
'cardTitle'
|
|
14
15
|
]);
|
|
16
|
+
export const DsIcon = /*@__PURE__*/ defineContainer('ds-icon', defineDsIcon, [
|
|
17
|
+
'name',
|
|
18
|
+
'size',
|
|
19
|
+
'color',
|
|
20
|
+
'basePath',
|
|
21
|
+
'lazy',
|
|
22
|
+
'label'
|
|
23
|
+
]);
|