@mekari/pixel3-drawer 0.0.25-dev.1 → 0.0.26-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/{chunk-5RIMQAZV.mjs → chunk-OZUONPNI.mjs} +2 -1
- package/dist/{chunk-EIMC43YU.mjs → chunk-SFUYSBMH.mjs} +4 -0
- package/dist/drawer.d.mts +10 -1
- package/dist/drawer.d.ts +10 -1
- package/dist/drawer.js +5 -0
- package/dist/drawer.mjs +2 -2
- package/dist/index.js +5 -0
- package/dist/index.mjs +2 -2
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/dist/modules/drawer.props.d.mts +4 -0
- package/dist/modules/drawer.props.d.ts +4 -0
- package/dist/modules/drawer.props.js +4 -0
- package/dist/modules/drawer.props.mjs +1 -1
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
drawerEmits,
|
|
3
3
|
drawerProps
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-SFUYSBMH.mjs";
|
|
5
5
|
import {
|
|
6
6
|
DrawerProvider
|
|
7
7
|
} from "./chunk-54CTPMF7.mjs";
|
|
@@ -30,6 +30,7 @@ var MpDrawer = defineComponent({
|
|
|
30
30
|
"isCloseOnEsc": props.isCloseOnEsc,
|
|
31
31
|
"isCloseOnOverlayClick": props.isCloseOnOverlayClick,
|
|
32
32
|
"isKeepAlive": props.isKeepAlive,
|
|
33
|
+
"isDisableFocusTrap": props.isDisableFocusTrap,
|
|
33
34
|
"size": props.size,
|
|
34
35
|
"onOpen": () => emit("open", true),
|
|
35
36
|
"onClose": () => emit("close", true),
|
package/dist/drawer.d.mts
CHANGED
|
@@ -27,6 +27,10 @@ declare const MpDrawer: vue.DefineComponent<{
|
|
|
27
27
|
type: vue.PropType<boolean>;
|
|
28
28
|
default: boolean;
|
|
29
29
|
};
|
|
30
|
+
isDisableFocusTrap: {
|
|
31
|
+
type: vue.PropType<boolean>;
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
30
34
|
placement: {
|
|
31
35
|
type: vue.PropType<_mekari_pixel3_modal.ModalPlacement>;
|
|
32
36
|
default: string;
|
|
@@ -66,6 +70,10 @@ declare const MpDrawer: vue.DefineComponent<{
|
|
|
66
70
|
type: vue.PropType<boolean>;
|
|
67
71
|
default: boolean;
|
|
68
72
|
};
|
|
73
|
+
isDisableFocusTrap: {
|
|
74
|
+
type: vue.PropType<boolean>;
|
|
75
|
+
default: boolean;
|
|
76
|
+
};
|
|
69
77
|
placement: {
|
|
70
78
|
type: vue.PropType<_mekari_pixel3_modal.ModalPlacement>;
|
|
71
79
|
default: string;
|
|
@@ -82,13 +90,14 @@ declare const MpDrawer: vue.DefineComponent<{
|
|
|
82
90
|
onClose?: ((value: boolean) => any) | undefined;
|
|
83
91
|
onOpen?: ((value: boolean) => any) | undefined;
|
|
84
92
|
}, {
|
|
85
|
-
size: _mekari_pixel3_modal.ModalBaseSize;
|
|
86
93
|
isOpen: boolean;
|
|
87
94
|
isBlockScrollOnMount: boolean;
|
|
88
95
|
isCloseOnEsc: boolean;
|
|
89
96
|
isCloseOnOverlayClick: boolean;
|
|
90
97
|
isKeepAlive: boolean;
|
|
98
|
+
isDisableFocusTrap: boolean;
|
|
91
99
|
placement: _mekari_pixel3_modal.ModalPlacement;
|
|
100
|
+
size: _mekari_pixel3_modal.ModalBaseSize;
|
|
92
101
|
variant: DrawerVariant;
|
|
93
102
|
}, {}>;
|
|
94
103
|
|
package/dist/drawer.d.ts
CHANGED
|
@@ -27,6 +27,10 @@ declare const MpDrawer: vue.DefineComponent<{
|
|
|
27
27
|
type: vue.PropType<boolean>;
|
|
28
28
|
default: boolean;
|
|
29
29
|
};
|
|
30
|
+
isDisableFocusTrap: {
|
|
31
|
+
type: vue.PropType<boolean>;
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
30
34
|
placement: {
|
|
31
35
|
type: vue.PropType<_mekari_pixel3_modal.ModalPlacement>;
|
|
32
36
|
default: string;
|
|
@@ -66,6 +70,10 @@ declare const MpDrawer: vue.DefineComponent<{
|
|
|
66
70
|
type: vue.PropType<boolean>;
|
|
67
71
|
default: boolean;
|
|
68
72
|
};
|
|
73
|
+
isDisableFocusTrap: {
|
|
74
|
+
type: vue.PropType<boolean>;
|
|
75
|
+
default: boolean;
|
|
76
|
+
};
|
|
69
77
|
placement: {
|
|
70
78
|
type: vue.PropType<_mekari_pixel3_modal.ModalPlacement>;
|
|
71
79
|
default: string;
|
|
@@ -82,13 +90,14 @@ declare const MpDrawer: vue.DefineComponent<{
|
|
|
82
90
|
onClose?: ((value: boolean) => any) | undefined;
|
|
83
91
|
onOpen?: ((value: boolean) => any) | undefined;
|
|
84
92
|
}, {
|
|
85
|
-
size: _mekari_pixel3_modal.ModalBaseSize;
|
|
86
93
|
isOpen: boolean;
|
|
87
94
|
isBlockScrollOnMount: boolean;
|
|
88
95
|
isCloseOnEsc: boolean;
|
|
89
96
|
isCloseOnOverlayClick: boolean;
|
|
90
97
|
isKeepAlive: boolean;
|
|
98
|
+
isDisableFocusTrap: boolean;
|
|
91
99
|
placement: _mekari_pixel3_modal.ModalPlacement;
|
|
100
|
+
size: _mekari_pixel3_modal.ModalBaseSize;
|
|
92
101
|
variant: DrawerVariant;
|
|
93
102
|
}, {}>;
|
|
94
103
|
|
package/dist/drawer.js
CHANGED
|
@@ -52,6 +52,10 @@ var drawerProps = {
|
|
|
52
52
|
type: Boolean,
|
|
53
53
|
default: false
|
|
54
54
|
},
|
|
55
|
+
isDisableFocusTrap: {
|
|
56
|
+
type: Boolean,
|
|
57
|
+
default: false
|
|
58
|
+
},
|
|
55
59
|
placement: {
|
|
56
60
|
type: String,
|
|
57
61
|
default: "right"
|
|
@@ -95,6 +99,7 @@ var MpDrawer = (0, import_vue2.defineComponent)({
|
|
|
95
99
|
"isCloseOnEsc": props.isCloseOnEsc,
|
|
96
100
|
"isCloseOnOverlayClick": props.isCloseOnOverlayClick,
|
|
97
101
|
"isKeepAlive": props.isKeepAlive,
|
|
102
|
+
"isDisableFocusTrap": props.isDisableFocusTrap,
|
|
98
103
|
"size": props.size,
|
|
99
104
|
"onOpen": () => emit("open", true),
|
|
100
105
|
"onClose": () => emit("close", true),
|
package/dist/drawer.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -61,6 +61,10 @@ var drawerProps = {
|
|
|
61
61
|
type: Boolean,
|
|
62
62
|
default: false
|
|
63
63
|
},
|
|
64
|
+
isDisableFocusTrap: {
|
|
65
|
+
type: Boolean,
|
|
66
|
+
default: false
|
|
67
|
+
},
|
|
64
68
|
placement: {
|
|
65
69
|
type: String,
|
|
66
70
|
default: "right"
|
|
@@ -104,6 +108,7 @@ var MpDrawer = (0, import_vue2.defineComponent)({
|
|
|
104
108
|
"isCloseOnEsc": props.isCloseOnEsc,
|
|
105
109
|
"isCloseOnOverlayClick": props.isCloseOnOverlayClick,
|
|
106
110
|
"isKeepAlive": props.isKeepAlive,
|
|
111
|
+
"isDisableFocusTrap": props.isDisableFocusTrap,
|
|
107
112
|
"size": props.size,
|
|
108
113
|
"onOpen": () => emit("open", true),
|
|
109
114
|
"onClose": () => emit("close", true),
|
package/dist/index.mjs
CHANGED
|
@@ -9,8 +9,8 @@ import {
|
|
|
9
9
|
} from "./chunk-25EDSYX3.mjs";
|
|
10
10
|
import {
|
|
11
11
|
MpDrawer
|
|
12
|
-
} from "./chunk-
|
|
13
|
-
import "./chunk-
|
|
12
|
+
} from "./chunk-OZUONPNI.mjs";
|
|
13
|
+
import "./chunk-SFUYSBMH.mjs";
|
|
14
14
|
import "./chunk-54CTPMF7.mjs";
|
|
15
15
|
import {
|
|
16
16
|
MpDrawerFooter
|
package/dist/metafile-cjs.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"src/modules/drawer.context.ts":{"bytes":401,"imports":[{"path":"@mekari/pixel3-utils","kind":"import-statement","external":true}],"format":"esm"},"src/body.tsx":{"bytes":765,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true},{"path":"src/modules/drawer.context.ts","kind":"import-statement","original":"./modules/drawer.context"}],"format":"esm"},"src/close-button.tsx":{"bytes":481,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true}],"format":"esm"},"src/content.tsx":{"bytes":1919,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true},{"path":"src/modules/drawer.context.ts","kind":"import-statement","original":"./modules/drawer.context"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/modules/drawer.props.ts":{"bytes":
|
|
1
|
+
{"inputs":{"src/modules/drawer.context.ts":{"bytes":401,"imports":[{"path":"@mekari/pixel3-utils","kind":"import-statement","external":true}],"format":"esm"},"src/body.tsx":{"bytes":765,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true},{"path":"src/modules/drawer.context.ts","kind":"import-statement","original":"./modules/drawer.context"}],"format":"esm"},"src/close-button.tsx":{"bytes":481,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true}],"format":"esm"},"src/content.tsx":{"bytes":1919,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true},{"path":"src/modules/drawer.context.ts","kind":"import-statement","original":"./modules/drawer.context"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/modules/drawer.props.ts":{"bytes":1289,"imports":[],"format":"esm"},"src/drawer.tsx":{"bytes":1229,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true},{"path":"src/modules/drawer.props.ts","kind":"import-statement","original":"./modules/drawer.props"},{"path":"src/modules/drawer.context.ts","kind":"import-statement","original":"./modules/drawer.context"}],"format":"esm"},"src/footer.tsx":{"bytes":542,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true}],"format":"esm"},"src/header.tsx":{"bytes":579,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true}],"format":"esm"},"src/overlay.tsx":{"bytes":461,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true}],"format":"esm"},"src/index.ts":{"bytes":272,"imports":[{"path":"src/drawer.tsx","kind":"import-statement","original":"./drawer"},{"path":"src/overlay.tsx","kind":"import-statement","original":"./overlay"},{"path":"src/content.tsx","kind":"import-statement","original":"./content"},{"path":"src/body.tsx","kind":"import-statement","original":"./body"},{"path":"src/header.tsx","kind":"import-statement","original":"./header"},{"path":"src/footer.tsx","kind":"import-statement","original":"./footer"},{"path":"src/close-button.tsx","kind":"import-statement","original":"./close-button"}],"format":"esm"}},"outputs":{"dist/body.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-modal","kind":"require-call","external":true},{"path":"@mekari/pixel3-utils","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/body.tsx","inputs":{"src/body.tsx":{"bytesInOutput":807},"src/modules/drawer.context.ts":{"bytesInOutput":165}},"bytes":1945},"dist/close-button.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-modal","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/close-button.tsx","inputs":{"src/close-button.tsx":{"bytesInOutput":587}},"bytes":1524},"dist/content.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-modal","kind":"require-call","external":true},{"path":"@mekari/pixel3-utils","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/content.tsx","inputs":{"src/content.tsx":{"bytesInOutput":1957},"src/modules/drawer.context.ts":{"bytesInOutput":165}},"bytes":3194},"dist/drawer.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-modal","kind":"require-call","external":true},{"path":"@mekari/pixel3-utils","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/drawer.tsx","inputs":{"src/drawer.tsx":{"bytesInOutput":1189},"src/modules/drawer.props.ts":{"bytesInOutput":675},"src/modules/drawer.context.ts":{"bytesInOutput":165}},"bytes":3034},"dist/footer.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-modal","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/footer.tsx","inputs":{"src/footer.tsx":{"bytesInOutput":625}},"bytes":1551},"dist/header.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-modal","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/header.tsx","inputs":{"src/header.tsx":{"bytesInOutput":662}},"bytes":1588},"dist/index.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-modal","kind":"require-call","external":true},{"path":"@mekari/pixel3-utils","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-modal","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-modal","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-modal","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-modal","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-modal","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-modal","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":371},"src/drawer.tsx":{"bytesInOutput":1059},"src/modules/drawer.props.ts":{"bytesInOutput":675},"src/modules/drawer.context.ts":{"bytesInOutput":165},"src/overlay.tsx":{"bytesInOutput":405},"src/content.tsx":{"bytesInOutput":1816},"src/body.tsx":{"bytesInOutput":681},"src/header.tsx":{"bytesInOutput":526},"src/footer.tsx":{"bytesInOutput":491},"src/close-button.tsx":{"bytesInOutput":425}},"bytes":7959},"dist/overlay.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-modal","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/overlay.tsx","inputs":{"src/overlay.tsx":{"bytesInOutput":548}},"bytes":1476},"dist/modules/drawer.context.js":{"imports":[{"path":"@mekari/pixel3-utils","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/modules/drawer.context.ts","inputs":{"src/modules/drawer.context.ts":{"bytesInOutput":375}},"bytes":1336},"dist/modules/drawer.props.js":{"imports":[],"exports":[],"entryPoint":"src/modules/drawer.props.ts","inputs":{"src/modules/drawer.props.ts":{"bytesInOutput":863}},"bytes":1814}}}
|
package/dist/metafile-esm.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"src/modules/drawer.context.ts":{"bytes":401,"imports":[{"path":"@mekari/pixel3-utils","kind":"import-statement","external":true}],"format":"esm"},"src/body.tsx":{"bytes":765,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true},{"path":"src/modules/drawer.context.ts","kind":"import-statement","original":"./modules/drawer.context"}],"format":"esm"},"src/close-button.tsx":{"bytes":481,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true}],"format":"esm"},"src/content.tsx":{"bytes":1919,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true},{"path":"src/modules/drawer.context.ts","kind":"import-statement","original":"./modules/drawer.context"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/modules/drawer.props.ts":{"bytes":
|
|
1
|
+
{"inputs":{"src/modules/drawer.context.ts":{"bytes":401,"imports":[{"path":"@mekari/pixel3-utils","kind":"import-statement","external":true}],"format":"esm"},"src/body.tsx":{"bytes":765,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true},{"path":"src/modules/drawer.context.ts","kind":"import-statement","original":"./modules/drawer.context"}],"format":"esm"},"src/close-button.tsx":{"bytes":481,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true}],"format":"esm"},"src/content.tsx":{"bytes":1919,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true},{"path":"src/modules/drawer.context.ts","kind":"import-statement","original":"./modules/drawer.context"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/modules/drawer.props.ts":{"bytes":1289,"imports":[],"format":"esm"},"src/drawer.tsx":{"bytes":1229,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true},{"path":"src/modules/drawer.props.ts","kind":"import-statement","original":"./modules/drawer.props"},{"path":"src/modules/drawer.context.ts","kind":"import-statement","original":"./modules/drawer.context"}],"format":"esm"},"src/footer.tsx":{"bytes":542,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true}],"format":"esm"},"src/header.tsx":{"bytes":579,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true}],"format":"esm"},"src/overlay.tsx":{"bytes":461,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true}],"format":"esm"},"src/index.ts":{"bytes":272,"imports":[{"path":"src/drawer.tsx","kind":"import-statement","original":"./drawer"},{"path":"src/overlay.tsx","kind":"import-statement","original":"./overlay"},{"path":"src/content.tsx","kind":"import-statement","original":"./content"},{"path":"src/body.tsx","kind":"import-statement","original":"./body"},{"path":"src/header.tsx","kind":"import-statement","original":"./header"},{"path":"src/footer.tsx","kind":"import-statement","original":"./footer"},{"path":"src/close-button.tsx","kind":"import-statement","original":"./close-button"}],"format":"esm"}},"outputs":{"dist/modules/drawer.context.mjs":{"imports":[{"path":"dist/chunk-54CTPMF7.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["DrawerProvider","useDrawerContext"],"entryPoint":"src/modules/drawer.context.ts","inputs":{},"bytes":159},"dist/modules/drawer.props.mjs":{"imports":[{"path":"dist/chunk-SFUYSBMH.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["drawerEmits","drawerProps"],"entryPoint":"src/modules/drawer.props.ts","inputs":{},"bytes":143},"dist/body.mjs":{"imports":[{"path":"dist/chunk-MFLS5N5K.mjs","kind":"import-statement"},{"path":"dist/chunk-54CTPMF7.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpDrawerBody"],"entryPoint":"src/body.tsx","inputs":{},"bytes":144},"dist/close-button.mjs":{"imports":[{"path":"dist/chunk-CMAJDRDT.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpDrawerCloseButton"],"entryPoint":"src/close-button.tsx","inputs":{},"bytes":127},"dist/content.mjs":{"imports":[{"path":"dist/chunk-25EDSYX3.mjs","kind":"import-statement"},{"path":"dist/chunk-54CTPMF7.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpDrawerContent"],"entryPoint":"src/content.tsx","inputs":{},"bytes":150},"dist/drawer.mjs":{"imports":[{"path":"dist/chunk-OZUONPNI.mjs","kind":"import-statement"},{"path":"dist/chunk-SFUYSBMH.mjs","kind":"import-statement"},{"path":"dist/chunk-54CTPMF7.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpDrawer"],"entryPoint":"src/drawer.tsx","inputs":{},"bytes":167},"dist/footer.mjs":{"imports":[{"path":"dist/chunk-V64M33JD.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpDrawerFooter"],"entryPoint":"src/footer.tsx","inputs":{},"bytes":117},"dist/header.mjs":{"imports":[{"path":"dist/chunk-QBLJ6VFU.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpDrawerHeader"],"entryPoint":"src/header.tsx","inputs":{},"bytes":117},"dist/index.mjs":{"imports":[{"path":"dist/chunk-MFLS5N5K.mjs","kind":"import-statement"},{"path":"dist/chunk-CMAJDRDT.mjs","kind":"import-statement"},{"path":"dist/chunk-25EDSYX3.mjs","kind":"import-statement"},{"path":"dist/chunk-OZUONPNI.mjs","kind":"import-statement"},{"path":"dist/chunk-SFUYSBMH.mjs","kind":"import-statement"},{"path":"dist/chunk-54CTPMF7.mjs","kind":"import-statement"},{"path":"dist/chunk-V64M33JD.mjs","kind":"import-statement"},{"path":"dist/chunk-QBLJ6VFU.mjs","kind":"import-statement"},{"path":"dist/chunk-PZOVPODZ.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpDrawer","MpDrawerBody","MpDrawerCloseButton","MpDrawerContent","MpDrawerFooter","MpDrawerHeader","MpDrawerOverlay"],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":0}},"bytes":627},"dist/chunk-MFLS5N5K.mjs":{"imports":[{"path":"dist/chunk-54CTPMF7.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true}],"exports":["MpDrawerBody"],"inputs":{"src/body.tsx":{"bytesInOutput":639}},"bytes":743},"dist/chunk-CMAJDRDT.mjs":{"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true}],"exports":["MpDrawerCloseButton"],"inputs":{"src/close-button.tsx":{"bytesInOutput":388}},"bytes":447},"dist/chunk-25EDSYX3.mjs":{"imports":[{"path":"dist/chunk-54CTPMF7.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true}],"exports":["MpDrawerContent"],"inputs":{"src/content.tsx":{"bytesInOutput":1770}},"bytes":1929},"dist/chunk-OZUONPNI.mjs":{"imports":[{"path":"dist/chunk-SFUYSBMH.mjs","kind":"import-statement"},{"path":"dist/chunk-54CTPMF7.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true}],"exports":["MpDrawer"],"inputs":{"src/drawer.tsx":{"bytesInOutput":1010}},"bytes":1179},"dist/chunk-SFUYSBMH.mjs":{"imports":[],"exports":["drawerEmits","drawerProps"],"inputs":{"src/modules/drawer.props.ts":{"bytesInOutput":675}},"bytes":748},"dist/chunk-54CTPMF7.mjs":{"imports":[{"path":"@mekari/pixel3-utils","kind":"import-statement","external":true}],"exports":["DrawerProvider","useDrawerContext"],"inputs":{"src/modules/drawer.context.ts":{"bytesInOutput":143}},"bytes":226},"dist/chunk-V64M33JD.mjs":{"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true}],"exports":["MpDrawerFooter"],"inputs":{"src/footer.tsx":{"bytesInOutput":449}},"bytes":497},"dist/chunk-QBLJ6VFU.mjs":{"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true}],"exports":["MpDrawerHeader"],"inputs":{"src/header.tsx":{"bytesInOutput":486}},"bytes":534},"dist/overlay.mjs":{"imports":[{"path":"dist/chunk-PZOVPODZ.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpDrawerOverlay"],"entryPoint":"src/overlay.tsx","inputs":{},"bytes":119},"dist/chunk-PZOVPODZ.mjs":{"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-modal","kind":"import-statement","external":true}],"exports":["MpDrawerOverlay"],"inputs":{"src/overlay.tsx":{"bytesInOutput":368}},"bytes":418},"dist/chunk-QZ7VFGWC.mjs":{"imports":[],"exports":["__name"],"inputs":{},"bytes":151}}}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mekari/pixel3-drawer",
|
|
3
3
|
"description": "Drawer component for mekari pixel 3",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.26-dev.0",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"files": [
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
],
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"animejs": "^3.2.2",
|
|
12
|
-
"@mekari/pixel3-modal": "0.0.25-dev.1",
|
|
13
12
|
"@mekari/pixel3-styled-system": "0.2.0",
|
|
13
|
+
"@mekari/pixel3-modal": "0.0.26-dev.0",
|
|
14
14
|
"@mekari/pixel3-utils": "0.1.0"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|