@mobileaction/action-kit 1.55.5-beta.0 → 1.55.5-beta.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.
@@ -1,4 +1,4 @@
1
- import { g as Ut } from "./index-B7Xzu1nv.js";
1
+ import { g as Ut } from "./index-Dc_jRkes.js";
2
2
  function qt(S, q) {
3
3
  for (var M = 0; M < q.length; M++) {
4
4
  const P = q[M];
@@ -1,4 +1,4 @@
1
- import { g as Ct } from "./index-B7Xzu1nv.js";
1
+ import { g as Ct } from "./index-Dc_jRkes.js";
2
2
  function _t(W, R) {
3
3
  for (var T = 0; T < R.length; T++) {
4
4
  const v = R[T];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mobileaction/action-kit",
3
3
  "type": "module",
4
- "version": "1.55.5-beta.0",
4
+ "version": "1.55.5-beta.2",
5
5
  "description": "UI Component library for Mobile Action.",
6
6
  "author": "MobileAction",
7
7
  "license": "MIT",
@@ -1,103 +0,0 @@
1
- export type MaDrawerPlacement = 'left' | 'right';
2
- export type MaDrawerMarginSize = 'small' | 'medium' | 'none';
3
- export interface MaDrawerProps {
4
- /**
5
- * Controls the visibility of the drawer.
6
- * @default false
7
- */
8
- visible?: boolean;
9
- /**
10
- * Sets the width of the drawer container.
11
- */
12
- width?: string;
13
- /**
14
- * Specifies the z-index of the drawer overlay.
15
- * @default 1000
16
- */
17
- zIndex?: number;
18
- /**
19
- * Vue native teleport component prop `:to`
20
- *
21
- * {@link https://vuejs.org/guide/built-ins/teleport.html#basic-usage}
22
- */
23
- to?: string | HTMLElement;
24
- /**
25
- * Determines the placement of the drawer on the screen.
26
- * @default right
27
- */
28
- placement?: MaDrawerPlacement;
29
- /**
30
- * Determines whether the drawer should close when the close button is clicked.
31
- * @default true
32
- */
33
- closable?: boolean;
34
- /**
35
- * Determines whether the drawer should close when the overlay is clicked.
36
- * @default true
37
- */
38
- maskClosable?: boolean;
39
- /**
40
- * Specifies the height of an external header (e.g., dashboard header) to account for when the drawer is fixed.
41
- * This allows the drawer to adjust its position or size accordingly.
42
- */
43
- headerHeight?: string;
44
- /**
45
- * Makes the drawer header sticky (fixed) when scrolling.
46
- * @default false
47
- */
48
- headerSticky?: boolean;
49
- /**
50
- * Makes the drawer footer sticky (fixed) when scrolling.
51
- * @default false
52
- */
53
- footerSticky?: boolean;
54
- /**
55
- * Sets the margin size of the drawer container.
56
- * @default small
57
- */
58
- marginSize?: MaDrawerMarginSize;
59
- /**
60
- * Sets the drawer's title.
61
- */
62
- title?: string;
63
- /**
64
- * Sets the drawer's subtitle.
65
- */
66
- hintText?: string;
67
- }
68
- export interface MaDrawerEvents {
69
- /**
70
- * Emitted when the drawer's visibility changes.
71
- * @param open - Indicates whether the drawer is now open (`true`) or closed (`false`).
72
- */
73
- (e: 'update:visible', open: boolean): void;
74
- /**
75
- * Emitted after the drawer has fully opened and the opening animation is complete.
76
- */
77
- (e: 'opened'): void;
78
- /**
79
- * Emitted after the drawer has fully closed and the closing animation is complete.
80
- */
81
- (e: 'closed'): void;
82
- }
83
- export interface MaDrawerSlots {
84
- /**
85
- * Slot for the drawer's header content.
86
- * Typically used to display the title or controls.
87
- */
88
- header: () => unknown;
89
- /**
90
- * Slot for the drawer's tab menu.
91
- */
92
- tabs: () => unknown;
93
- /**
94
- * Default slot for the main content of the drawer.
95
- * Used to display the primary information or interactive elements.
96
- */
97
- default: () => unknown;
98
- /**
99
- * Slot for the drawer's footer content.
100
- * Commonly used for action buttons or supplementary information.
101
- */
102
- footer: () => unknown;
103
- }