@mobileaction/action-kit 1.55.9 → 1.55.10-beta.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/CHANGELOG.md +7 -0
- package/dist/action-kit.mjs +1 -1
- package/dist/{annotations-DzwRKOiX.js → annotations-GmXY7Foc.js} +1 -1
- package/dist/components/button/index.vue.d.ts +6 -20
- package/dist/components/button/link-button/index.vue.d.ts +4 -16
- package/dist/components/button/social-button/index.vue.d.ts +3 -13
- package/dist/components/button/types.d.ts +42 -0
- package/dist/components/input/index.vue.d.ts +2 -0
- package/dist/components/modal/types.d.ts +1 -1
- package/dist/components/modal-2/MaConfirmModal.vue.d.ts +3 -1
- package/dist/components/modal-2/types.d.ts +5 -9
- package/dist/components/popconfirm/index.vue.d.ts +1 -1
- package/dist/components/popconfirm-2/index.vue.d.ts +1 -1
- package/dist/components/result/stories/constants.d.ts +3 -3
- package/dist/{export-data-CogMIKLw.js → export-data-BuxNsVSJ.js} +1 -1
- package/dist/{exporting-BC5gPbRD.js → exporting-CHUDak6p.js} +1 -1
- package/dist/{funnel-DCKPuShR.js → funnel-Dn-F3JdY.js} +1 -1
- package/dist/{index-B3BnsEOn.js → index-D76j1Xn4.js} +3040 -3046
- package/dist/index.d.ts +0 -2
- package/dist/{map-BuUu2S2x.js → map-B5hFEb7n.js} +1 -1
- package/dist/{offline-exporting-Dl3qVzLd.js → offline-exporting-BaZI47i3.js} +1 -1
- package/dist/{stock-CgmqjadN.js → stock-vcuf2AVr.js} +1 -1
- package/dist/{venn-DAfzV8Ud.js → venn-DPAHstF8.js} +1 -1
- package/dist/{wordcloud-Dpd1_4HN.js → wordcloud-B5U7DBv3.js} +1 -1
- package/package.json +2 -2
- package/dist/components/button/link-button/types.d.ts +0 -4
- package/dist/components/button/social-button/types.d.ts +0 -4
package/dist/index.d.ts
CHANGED
|
@@ -11,9 +11,7 @@ export { default as MaBadge } from './components/badge/index.vue';
|
|
|
11
11
|
export * from './components/badge/types';
|
|
12
12
|
export { default as MaButton } from './components/button/index.vue';
|
|
13
13
|
export { default as MaLinkButton } from './components/button/link-button/index.vue';
|
|
14
|
-
export * from './components/button/link-button/types';
|
|
15
14
|
export { default as MaSocialButton } from './components/button/social-button/index.vue';
|
|
16
|
-
export * from './components/button/social-button/types';
|
|
17
15
|
export * from './components/button/types';
|
|
18
16
|
export { default as MaCard } from './components/card/index.vue';
|
|
19
17
|
export * from './components/card/types';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mobileaction/action-kit",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.55.
|
|
4
|
+
"version": "1.55.10-beta.1",
|
|
5
5
|
"description": "UI Component library for Mobile Action.",
|
|
6
6
|
"author": "MobileAction",
|
|
7
7
|
"license": "MIT",
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
"storybook": "9.0.15",
|
|
110
110
|
"tailwindcss": "^3.4.3",
|
|
111
111
|
"typescript": "^5.6.3",
|
|
112
|
-
"vite": "7.0.
|
|
112
|
+
"vite": "7.0.8",
|
|
113
113
|
"vite-plugin-dts": "^4.3.0",
|
|
114
114
|
"vite-svg-loader": "^5.1.0",
|
|
115
115
|
"vitest": "2.1.9",
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export declare const LinkButtonColors: readonly ["dark", "blue", "red", "gray"];
|
|
2
|
-
export declare const LinkButtonSizes: readonly ["small", "medium"];
|
|
3
|
-
export type LinkButtonColor = (typeof LinkButtonColors)[number];
|
|
4
|
-
export type LinkButtonSize = (typeof LinkButtonSizes)[number];
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export declare const SocialButtonBrands: readonly ["google", "x", "linkedin", "facebook", "apple"];
|
|
2
|
-
export declare const SocialButtonVariants: readonly ["filled", "stroke"];
|
|
3
|
-
export type SocialButtonBrand = (typeof SocialButtonBrands)[number];
|
|
4
|
-
export type SocialButtonVariant = (typeof SocialButtonVariants)[number];
|