@mekari/pixel3-drawer 0.0.21-dev.1 → 0.0.21-dev.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.
@@ -9,7 +9,7 @@ var drawerProps = {
9
9
  },
10
10
  isBlockScrollOnMount: {
11
11
  type: Boolean,
12
- default: false
12
+ default: true
13
13
  },
14
14
  isCloseOnEsc: {
15
15
  type: Boolean,
@@ -23,10 +23,6 @@ var drawerProps = {
23
23
  type: Boolean,
24
24
  default: false
25
25
  },
26
- isFullHeight: {
27
- type: Boolean,
28
- default: true
29
- },
30
26
  placement: {
31
27
  type: String,
32
28
  default: "right"
@@ -31,7 +31,7 @@ var getPlacementStyles = /* @__PURE__ */ __name((position, {
31
31
  ...finalWidth && {
32
32
  maxWidth: finalWidth
33
33
  },
34
- height: "100vh",
34
+ height: "100%",
35
35
  left: 0,
36
36
  top: 0
37
37
  },
@@ -41,7 +41,7 @@ var getPlacementStyles = /* @__PURE__ */ __name((position, {
41
41
  },
42
42
  right: 0,
43
43
  top: 0,
44
- height: "100vh"
44
+ height: "100%"
45
45
  }
46
46
  };
47
47
  return placements[position] || placements.right;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  drawerEmits,
3
3
  drawerProps
4
- } from "./chunk-MD36J55Z.mjs";
4
+ } from "./chunk-BMJBVQAN.mjs";
5
5
  import {
6
6
  DrawerProvider
7
7
  } from "./chunk-54CTPMF7.mjs";
@@ -26,10 +26,11 @@ var MpDrawer = defineComponent({
26
26
  "data-pixel-component": "MpDrawer",
27
27
  "id": props.id,
28
28
  "isOpen": props.isOpen,
29
- "size": props.size,
29
+ "isBlockScrollOnMount": props.isBlockScrollOnMount,
30
30
  "isCloseOnEsc": props.isCloseOnEsc,
31
31
  "isCloseOnOverlayClick": props.isCloseOnOverlayClick,
32
32
  "isKeepAlive": props.isKeepAlive,
33
+ "size": props.size,
33
34
  "onOpen": () => emit("open", true),
34
35
  "onClose": () => emit("close", true),
35
36
  "scrollBehavior": "inside"
package/dist/content.js CHANGED
@@ -55,7 +55,7 @@ var getPlacementStyles = /* @__PURE__ */ __name((position, {
55
55
  ...finalWidth && {
56
56
  maxWidth: finalWidth
57
57
  },
58
- height: "100vh",
58
+ height: "100%",
59
59
  left: 0,
60
60
  top: 0
61
61
  },
@@ -65,7 +65,7 @@ var getPlacementStyles = /* @__PURE__ */ __name((position, {
65
65
  },
66
66
  right: 0,
67
67
  top: 0,
68
- height: "100vh"
68
+ height: "100%"
69
69
  }
70
70
  };
71
71
  return placements[position] || placements.right;
package/dist/content.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  MpDrawerContent
3
- } from "./chunk-GMU5T25B.mjs";
3
+ } from "./chunk-GCUVIMGG.mjs";
4
4
  import "./chunk-54CTPMF7.mjs";
5
5
  import "./chunk-QZ7VFGWC.mjs";
6
6
  export {
package/dist/drawer.d.mts CHANGED
@@ -26,10 +26,6 @@ declare const MpDrawer: vue.DefineComponent<{
26
26
  type: vue.PropType<boolean>;
27
27
  default: boolean;
28
28
  };
29
- isFullHeight: {
30
- type: vue.PropType<boolean>;
31
- default: boolean;
32
- };
33
29
  placement: {
34
30
  type: vue.PropType<_mekari_pixel3_modal.ModalPlacement>;
35
31
  default: string;
@@ -65,10 +61,6 @@ declare const MpDrawer: vue.DefineComponent<{
65
61
  type: vue.PropType<boolean>;
66
62
  default: boolean;
67
63
  };
68
- isFullHeight: {
69
- type: vue.PropType<boolean>;
70
- default: boolean;
71
- };
72
64
  placement: {
73
65
  type: vue.PropType<_mekari_pixel3_modal.ModalPlacement>;
74
66
  default: string;
@@ -88,7 +80,6 @@ declare const MpDrawer: vue.DefineComponent<{
88
80
  isCloseOnOverlayClick: boolean;
89
81
  isKeepAlive: boolean;
90
82
  placement: _mekari_pixel3_modal.ModalPlacement;
91
- isFullHeight: boolean;
92
83
  }, {}>;
93
84
 
94
85
  export { MpDrawer };
package/dist/drawer.d.ts CHANGED
@@ -26,10 +26,6 @@ declare const MpDrawer: vue.DefineComponent<{
26
26
  type: vue.PropType<boolean>;
27
27
  default: boolean;
28
28
  };
29
- isFullHeight: {
30
- type: vue.PropType<boolean>;
31
- default: boolean;
32
- };
33
29
  placement: {
34
30
  type: vue.PropType<_mekari_pixel3_modal.ModalPlacement>;
35
31
  default: string;
@@ -65,10 +61,6 @@ declare const MpDrawer: vue.DefineComponent<{
65
61
  type: vue.PropType<boolean>;
66
62
  default: boolean;
67
63
  };
68
- isFullHeight: {
69
- type: vue.PropType<boolean>;
70
- default: boolean;
71
- };
72
64
  placement: {
73
65
  type: vue.PropType<_mekari_pixel3_modal.ModalPlacement>;
74
66
  default: string;
@@ -88,7 +80,6 @@ declare const MpDrawer: vue.DefineComponent<{
88
80
  isCloseOnOverlayClick: boolean;
89
81
  isKeepAlive: boolean;
90
82
  placement: _mekari_pixel3_modal.ModalPlacement;
91
- isFullHeight: boolean;
92
83
  }, {}>;
93
84
 
94
85
  export { MpDrawer };
package/dist/drawer.js CHANGED
@@ -38,7 +38,7 @@ var drawerProps = {
38
38
  },
39
39
  isBlockScrollOnMount: {
40
40
  type: Boolean,
41
- default: false
41
+ default: true
42
42
  },
43
43
  isCloseOnEsc: {
44
44
  type: Boolean,
@@ -52,10 +52,6 @@ var drawerProps = {
52
52
  type: Boolean,
53
53
  default: false
54
54
  },
55
- isFullHeight: {
56
- type: Boolean,
57
- default: true
58
- },
59
55
  placement: {
60
56
  type: String,
61
57
  default: "right"
@@ -91,10 +87,11 @@ var MpDrawer = (0, import_vue2.defineComponent)({
91
87
  "data-pixel-component": "MpDrawer",
92
88
  "id": props.id,
93
89
  "isOpen": props.isOpen,
94
- "size": props.size,
90
+ "isBlockScrollOnMount": props.isBlockScrollOnMount,
95
91
  "isCloseOnEsc": props.isCloseOnEsc,
96
92
  "isCloseOnOverlayClick": props.isCloseOnOverlayClick,
97
93
  "isKeepAlive": props.isKeepAlive,
94
+ "size": props.size,
98
95
  "onOpen": () => emit("open", true),
99
96
  "onClose": () => emit("close", true),
100
97
  "scrollBehavior": "inside"
package/dist/drawer.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  MpDrawer
3
- } from "./chunk-C6TVIDBL.mjs";
4
- import "./chunk-MD36J55Z.mjs";
3
+ } from "./chunk-MCN332Y2.mjs";
4
+ import "./chunk-BMJBVQAN.mjs";
5
5
  import "./chunk-54CTPMF7.mjs";
6
6
  import "./chunk-QZ7VFGWC.mjs";
7
7
  export {
package/dist/index.js CHANGED
@@ -47,7 +47,7 @@ var drawerProps = {
47
47
  },
48
48
  isBlockScrollOnMount: {
49
49
  type: Boolean,
50
- default: false
50
+ default: true
51
51
  },
52
52
  isCloseOnEsc: {
53
53
  type: Boolean,
@@ -61,10 +61,6 @@ var drawerProps = {
61
61
  type: Boolean,
62
62
  default: false
63
63
  },
64
- isFullHeight: {
65
- type: Boolean,
66
- default: true
67
- },
68
64
  placement: {
69
65
  type: String,
70
66
  default: "right"
@@ -100,10 +96,11 @@ var MpDrawer = (0, import_vue2.defineComponent)({
100
96
  "data-pixel-component": "MpDrawer",
101
97
  "id": props.id,
102
98
  "isOpen": props.isOpen,
103
- "size": props.size,
99
+ "isBlockScrollOnMount": props.isBlockScrollOnMount,
104
100
  "isCloseOnEsc": props.isCloseOnEsc,
105
101
  "isCloseOnOverlayClick": props.isCloseOnOverlayClick,
106
102
  "isKeepAlive": props.isKeepAlive,
103
+ "size": props.size,
107
104
  "onOpen": () => emit("open", true),
108
105
  "onClose": () => emit("close", true),
109
106
  "scrollBehavior": "inside"
@@ -155,7 +152,7 @@ var getPlacementStyles = /* @__PURE__ */ __name((position, {
155
152
  ...finalWidth && {
156
153
  maxWidth: finalWidth
157
154
  },
158
- height: "100vh",
155
+ height: "100%",
159
156
  left: 0,
160
157
  top: 0
161
158
  },
@@ -165,7 +162,7 @@ var getPlacementStyles = /* @__PURE__ */ __name((position, {
165
162
  },
166
163
  right: 0,
167
164
  top: 0,
168
- height: "100vh"
165
+ height: "100%"
169
166
  }
170
167
  };
171
168
  return placements[position] || placements.right;
package/dist/index.mjs CHANGED
@@ -6,11 +6,11 @@ import {
6
6
  } from "./chunk-CMAJDRDT.mjs";
7
7
  import {
8
8
  MpDrawerContent
9
- } from "./chunk-GMU5T25B.mjs";
9
+ } from "./chunk-GCUVIMGG.mjs";
10
10
  import {
11
11
  MpDrawer
12
- } from "./chunk-C6TVIDBL.mjs";
13
- import "./chunk-MD36J55Z.mjs";
12
+ } from "./chunk-MCN332Y2.mjs";
13
+ import "./chunk-BMJBVQAN.mjs";
14
14
  import "./chunk-54CTPMF7.mjs";
15
15
  import {
16
16
  MpDrawerFooter
@@ -1 +1 @@
1
- {"inputs":{"src/body.tsx":{"bytes":532,"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/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/modules/drawer.context.ts":{"bytes":401,"imports":[{"path":"@mekari/pixel3-utils","kind":"import-statement","external":true}],"format":"esm"},"src/content.tsx":{"bytes":1846,"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":1143,"imports":[],"format":"esm"},"src/drawer.tsx":{"bytes":1113,"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}],"exports":[],"entryPoint":"src/body.tsx","inputs":{"src/body.tsx":{"bytesInOutput":607}},"bytes":1529},"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":1856},"src/modules/drawer.context.ts":{"bytesInOutput":165}},"bytes":3093},"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":1073},"src/modules/drawer.props.ts":{"bytesInOutput":610},"src/modules/drawer.context.ts":{"bytesInOutput":165}},"bytes":2853},"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":943},"src/modules/drawer.props.ts":{"bytesInOutput":610},"src/modules/drawer.context.ts":{"bytesInOutput":165},"src/overlay.tsx":{"bytesInOutput":405},"src/content.tsx":{"bytesInOutput":1715},"src/body.tsx":{"bytesInOutput":479},"src/header.tsx":{"bytesInOutput":526},"src/footer.tsx":{"bytesInOutput":491},"src/close-button.tsx":{"bytesInOutput":425}},"bytes":7475},"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":798}},"bytes":1749}}}
1
+ {"inputs":{"src/body.tsx":{"bytes":532,"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/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/modules/drawer.context.ts":{"bytes":401,"imports":[{"path":"@mekari/pixel3-utils","kind":"import-statement","external":true}],"format":"esm"},"src/content.tsx":{"bytes":1844,"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":1059,"imports":[],"format":"esm"},"src/drawer.tsx":{"bytes":1173,"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}],"exports":[],"entryPoint":"src/body.tsx","inputs":{"src/body.tsx":{"bytesInOutput":607}},"bytes":1529},"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":1854},"src/modules/drawer.context.ts":{"bytesInOutput":165}},"bytes":3091},"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":1133},"src/modules/drawer.props.ts":{"bytesInOutput":549},"src/modules/drawer.context.ts":{"bytesInOutput":165}},"bytes":2852},"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":1003},"src/modules/drawer.props.ts":{"bytesInOutput":549},"src/modules/drawer.context.ts":{"bytesInOutput":165},"src/overlay.tsx":{"bytesInOutput":405},"src/content.tsx":{"bytesInOutput":1713},"src/body.tsx":{"bytesInOutput":479},"src/header.tsx":{"bytesInOutput":526},"src/footer.tsx":{"bytesInOutput":491},"src/close-button.tsx":{"bytesInOutput":425}},"bytes":7472},"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":737}},"bytes":1688}}}
@@ -1 +1 @@
1
- {"inputs":{"src/body.tsx":{"bytes":532,"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/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/modules/drawer.context.ts":{"bytes":401,"imports":[{"path":"@mekari/pixel3-utils","kind":"import-statement","external":true}],"format":"esm"},"src/content.tsx":{"bytes":1846,"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":1143,"imports":[],"format":"esm"},"src/drawer.tsx":{"bytes":1113,"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-MD36J55Z.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-ZTWQO5OZ.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpDrawerBody"],"entryPoint":"src/body.tsx","inputs":{},"bytes":113},"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-GMU5T25B.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-C6TVIDBL.mjs","kind":"import-statement"},{"path":"dist/chunk-MD36J55Z.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-ZTWQO5OZ.mjs","kind":"import-statement"},{"path":"dist/chunk-CMAJDRDT.mjs","kind":"import-statement"},{"path":"dist/chunk-GMU5T25B.mjs","kind":"import-statement"},{"path":"dist/chunk-C6TVIDBL.mjs","kind":"import-statement"},{"path":"dist/chunk-MD36J55Z.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-ZTWQO5OZ.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":["MpDrawerBody"],"inputs":{"src/body.tsx":{"bytesInOutput":439}},"bytes":483},"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-GMU5T25B.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":1669}},"bytes":1828},"dist/chunk-C6TVIDBL.mjs":{"imports":[{"path":"dist/chunk-MD36J55Z.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":894}},"bytes":1063},"dist/chunk-MD36J55Z.mjs":{"imports":[],"exports":["drawerEmits","drawerProps"],"inputs":{"src/modules/drawer.props.ts":{"bytesInOutput":610}},"bytes":683},"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}}}
1
+ {"inputs":{"src/body.tsx":{"bytes":532,"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/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/modules/drawer.context.ts":{"bytes":401,"imports":[{"path":"@mekari/pixel3-utils","kind":"import-statement","external":true}],"format":"esm"},"src/content.tsx":{"bytes":1844,"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":1059,"imports":[],"format":"esm"},"src/drawer.tsx":{"bytes":1173,"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-BMJBVQAN.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-ZTWQO5OZ.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpDrawerBody"],"entryPoint":"src/body.tsx","inputs":{},"bytes":113},"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-GCUVIMGG.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-MCN332Y2.mjs","kind":"import-statement"},{"path":"dist/chunk-BMJBVQAN.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-ZTWQO5OZ.mjs","kind":"import-statement"},{"path":"dist/chunk-CMAJDRDT.mjs","kind":"import-statement"},{"path":"dist/chunk-GCUVIMGG.mjs","kind":"import-statement"},{"path":"dist/chunk-MCN332Y2.mjs","kind":"import-statement"},{"path":"dist/chunk-BMJBVQAN.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-ZTWQO5OZ.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":["MpDrawerBody"],"inputs":{"src/body.tsx":{"bytesInOutput":439}},"bytes":483},"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-GCUVIMGG.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":1667}},"bytes":1826},"dist/chunk-MCN332Y2.mjs":{"imports":[{"path":"dist/chunk-BMJBVQAN.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":954}},"bytes":1123},"dist/chunk-BMJBVQAN.mjs":{"imports":[],"exports":["drawerEmits","drawerProps"],"inputs":{"src/modules/drawer.props.ts":{"bytesInOutput":549}},"bytes":622},"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}}}
@@ -25,10 +25,6 @@ declare const drawerProps: {
25
25
  type: PropType<boolean>;
26
26
  default: boolean;
27
27
  };
28
- isFullHeight: {
29
- type: PropType<boolean>;
30
- default: boolean;
31
- };
32
28
  placement: {
33
29
  type: PropType<ModalPlacement>;
34
30
  default: string;
@@ -25,10 +25,6 @@ declare const drawerProps: {
25
25
  type: PropType<boolean>;
26
26
  default: boolean;
27
27
  };
28
- isFullHeight: {
29
- type: PropType<boolean>;
30
- default: boolean;
31
- };
32
28
  placement: {
33
29
  type: PropType<ModalPlacement>;
34
30
  default: string;
@@ -34,7 +34,7 @@ var drawerProps = {
34
34
  },
35
35
  isBlockScrollOnMount: {
36
36
  type: Boolean,
37
- default: false
37
+ default: true
38
38
  },
39
39
  isCloseOnEsc: {
40
40
  type: Boolean,
@@ -48,10 +48,6 @@ var drawerProps = {
48
48
  type: Boolean,
49
49
  default: false
50
50
  },
51
- isFullHeight: {
52
- type: Boolean,
53
- default: true
54
- },
55
51
  placement: {
56
52
  type: String,
57
53
  default: "right"
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  drawerEmits,
3
3
  drawerProps
4
- } from "../chunk-MD36J55Z.mjs";
4
+ } from "../chunk-BMJBVQAN.mjs";
5
5
  import "../chunk-QZ7VFGWC.mjs";
6
6
  export {
7
7
  drawerEmits,
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.21-dev.1",
4
+ "version": "0.0.21-dev.2",
5
5
  "main": "dist/index.js",
6
6
  "license": "MIT",
7
7
  "files": [
@@ -9,9 +9,9 @@
9
9
  ],
10
10
  "dependencies": {
11
11
  "animejs": "^3.2.2",
12
- "@mekari/pixel3-styled-system": "0.1.6-dev.0",
13
12
  "@mekari/pixel3-utils": "0.0.8-dev.0",
14
- "@mekari/pixel3-modal": "0.0.21-dev.1"
13
+ "@mekari/pixel3-modal": "0.0.21-dev.2",
14
+ "@mekari/pixel3-styled-system": "0.1.6-dev.0"
15
15
  },
16
16
  "peerDependencies": {
17
17
  "vue": "^3.4.9"