@mekari/pixel3-tag 0.0.24 → 0.0.25-dev.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/modules/tag.props.d.mts +1 -1
- package/dist/modules/tag.props.d.ts +1 -1
- package/dist/tag.d.mts +1 -1
- package/dist/tag.d.ts +1 -1
- package/package.json +4 -4
|
@@ -23,7 +23,7 @@ declare const tagProps: {
|
|
|
23
23
|
readonly default: false;
|
|
24
24
|
};
|
|
25
25
|
};
|
|
26
|
-
declare const tagEmits: ("
|
|
26
|
+
declare const tagEmits: ("click" | "close")[];
|
|
27
27
|
type TagPropsType = ExtractPublicPropTypes<typeof tagProps>;
|
|
28
28
|
type MpTagType = ComponentWithProps<TagPropsType>;
|
|
29
29
|
|
|
@@ -23,7 +23,7 @@ declare const tagProps: {
|
|
|
23
23
|
readonly default: false;
|
|
24
24
|
};
|
|
25
25
|
};
|
|
26
|
-
declare const tagEmits: ("
|
|
26
|
+
declare const tagEmits: ("click" | "close")[];
|
|
27
27
|
type TagPropsType = ExtractPublicPropTypes<typeof tagProps>;
|
|
28
28
|
type MpTagType = ComponentWithProps<TagPropsType>;
|
|
29
29
|
|
package/dist/tag.d.mts
CHANGED
|
@@ -26,7 +26,7 @@ declare const MpTag: vue.DefineComponent<{
|
|
|
26
26
|
readonly type: vue.PropType<boolean | undefined>;
|
|
27
27
|
readonly default: false;
|
|
28
28
|
};
|
|
29
|
-
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, ("
|
|
29
|
+
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, ("click" | "close")[], "click" | "close", vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
30
30
|
readonly as: {
|
|
31
31
|
readonly type: vue.PropType<keyof HTMLElementTagNameMap>;
|
|
32
32
|
readonly default: "button";
|
package/dist/tag.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ declare const MpTag: vue.DefineComponent<{
|
|
|
26
26
|
readonly type: vue.PropType<boolean | undefined>;
|
|
27
27
|
readonly default: false;
|
|
28
28
|
};
|
|
29
|
-
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, ("
|
|
29
|
+
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, ("click" | "close")[], "click" | "close", vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
30
30
|
readonly as: {
|
|
31
31
|
readonly type: vue.PropType<keyof HTMLElementTagNameMap>;
|
|
32
32
|
readonly default: "button";
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mekari/pixel3-tag",
|
|
3
3
|
"description": "Mekari Pixel 3 | Tag component is used to display label that can optionally be selected and unselected or removed",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.25-dev.0",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist"
|
|
9
9
|
],
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@mekari/pixel3-button": "0.1.
|
|
12
|
-
"@mekari/pixel3-utils": "0.0.
|
|
13
|
-
"@mekari/pixel3-styled-system": "0.
|
|
11
|
+
"@mekari/pixel3-button": "0.1.8-dev.0",
|
|
12
|
+
"@mekari/pixel3-utils": "0.1.0-dev.0",
|
|
13
|
+
"@mekari/pixel3-styled-system": "0.2.0-dev.0"
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {
|
|
16
16
|
"vue": "^3.4.9"
|