@mobileaction/action-kit 1.40.1-beta.2 → 1.40.1-beta.20

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.
Files changed (29) hide show
  1. package/dist/action-kit.mjs +8790 -8677
  2. package/dist/close-CFWde4ah.js +17 -0
  3. package/dist/{rotate-right-ChWRxbQX.js → rotate-right-CG20lBd1.js} +10 -10
  4. package/dist/src/components/popconfirm/index.vue.d.ts +2 -2
  5. package/dist/src/components/popconfirm/stories/constants.d.ts +5 -5
  6. package/dist/src/components/popover-2/index.vue.d.ts +1 -1
  7. package/dist/src/components/popover-2/stories/constants.d.ts +3 -3
  8. package/dist/src/components/select-2/components/selectOption.vue.d.ts +33 -0
  9. package/dist/src/components/{image-2/group.vue.d.ts → select-2/components/selectOptionGroup.vue.d.ts} +4 -10
  10. package/dist/src/components/select-2/composables/use-keyboard-navigation.d.ts +8 -0
  11. package/dist/src/components/select-2/composables/use-options-registry.d.ts +7 -0
  12. package/dist/src/components/select-2/index.vue.d.ts +112 -0
  13. package/dist/src/components/select-2/stories/borderless.stories.d.ts +8 -0
  14. package/dist/src/components/select-2/stories/constants.d.ts +12 -0
  15. package/dist/src/components/select-2/stories/inline.stories.d.ts +8 -0
  16. package/dist/src/components/select-2/stories/multiple.stories.d.ts +14 -0
  17. package/dist/src/components/select-2/stories/select-option-group.stories.d.ts +41 -0
  18. package/dist/src/components/select-2/stories/select-option.stories.d.ts +119 -0
  19. package/dist/src/components/select-2/stories/single.stories.d.ts +25 -0
  20. package/dist/src/components/select-2/types.d.ts +174 -0
  21. package/dist/src/index.d.ts +3 -3
  22. package/dist/style.css +1 -1
  23. package/package.json +2 -1
  24. package/dist/close-DuGn1Sq0.js +0 -27
  25. package/dist/src/components/image-2/index.vue.d.ts +0 -30
  26. package/dist/src/components/image-2/preview.vue.d.ts +0 -22
  27. package/dist/src/components/image-2/stories/constants.d.ts +0 -8
  28. package/dist/src/components/image-2/stories/default.stories.d.ts +0 -9
  29. /package/dist/src/components/{image-2/image2.test.d.ts → select-2/select.test.d.ts} +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mobileaction/action-kit",
3
- "version": "1.40.1-beta.2",
3
+ "version": "1.40.1-beta.20",
4
4
  "type": "module",
5
5
  "main": "dist/action-kit.mjs",
6
6
  "module": "dist/action-kit.mjs",
@@ -106,6 +106,7 @@
106
106
  "floating-vue": "^5.2.2",
107
107
  "lottie-web": "^5.12.2",
108
108
  "vue": "^3.5.12",
109
+ "vue-virtual-scroller": "^2.0.0-beta.8",
109
110
  "vuedraggable": "^4.1.0"
110
111
  },
111
112
  "description": "UI Component library for Mobile Action.",
@@ -1,27 +0,0 @@
1
- import { openBlock as n, createElementBlock as t, createElementVNode as e } from "vue";
2
- const l = {
3
- xmlns: "http://www.w3.org/2000/svg",
4
- viewBox: "0 0 24 24",
5
- fill: "none",
6
- stroke: "currentColor",
7
- "stroke-width": "2",
8
- "stroke-linecap": "round",
9
- "stroke-linejoin": "round",
10
- class: "icon icon-tabler icons-tabler-outline icon-tabler-x"
11
- };
12
- function r(s, o) {
13
- return n(), t("svg", l, o[0] || (o[0] = [
14
- e("path", {
15
- stroke: "none",
16
- d: "M0 0h24v24H0z",
17
- fill: "none"
18
- }, null, -1),
19
- e("path", { d: "M18 6l-12 12" }, null, -1),
20
- e("path", { d: "M6 6l12 12" }, null, -1)
21
- ]));
22
- }
23
- const c = { render: r };
24
- export {
25
- c as default,
26
- r as render
27
- };
@@ -1,30 +0,0 @@
1
- export interface MaImage2Props {
2
- src: string;
3
- width?: number;
4
- height?: number;
5
- fallback?: string;
6
- alt: string;
7
- }
8
- declare function __VLS_template(): {
9
- attrs: Partial<{}>;
10
- slots: {
11
- "preview-overlay"?(_: {}): any;
12
- };
13
- refs: {};
14
- rootEl: any;
15
- };
16
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
17
- declare const __VLS_component: import("vue").DefineComponent<MaImage2Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18
- error: (...args: any[]) => void;
19
- }, string, import("vue").PublicProps, Readonly<MaImage2Props> & Readonly<{
20
- onError?: (...args: any[]) => any;
21
- }>, {
22
- fallback: string;
23
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
24
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
25
- export default _default;
26
- type __VLS_WithTemplateSlots<T, S> = T & {
27
- new (): {
28
- $slots: S;
29
- };
30
- };
@@ -1,22 +0,0 @@
1
- export interface MaImagePreviewProps {
2
- visible: boolean;
3
- isGroup?: boolean;
4
- src?: string;
5
- multiSrc?: string[];
6
- currentIndex?: number;
7
- zIndex?: number;
8
- }
9
- declare const _default: import("vue").DefineComponent<MaImagePreviewProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
10
- closePreview: () => any;
11
- navigateLeft: () => any;
12
- navigateRight: () => any;
13
- }, string, import("vue").PublicProps, Readonly<MaImagePreviewProps> & Readonly<{
14
- onClosePreview?: () => any;
15
- onNavigateLeft?: () => any;
16
- onNavigateRight?: () => any;
17
- }>, {
18
- isGroup: boolean;
19
- zIndex: number;
20
- currentIndex: number;
21
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
22
- export default _default;
@@ -1,8 +0,0 @@
1
- import type { Meta, StoryFn } from '@storybook/vue3';
2
- import { MaImage2 } from '@/index';
3
- export declare const baseConfig: Meta<typeof MaImage2>;
4
- export declare const Template: StoryFn;
5
- export declare const GroupSlotTemplate: StoryFn;
6
- export declare const GroupImagesTemplate: StoryFn;
7
- export declare const CustomPreviewOverlaySlotTemplate: StoryFn;
8
- export declare const FallbackPreviewTemplate: StoryFn;
@@ -1,9 +0,0 @@
1
- import type { Meta } from '@storybook/vue3';
2
- import { MaImage2 } from '@/index';
3
- declare const meta: Meta<typeof MaImage2>;
4
- export default meta;
5
- export declare const Default: import("@storybook/vue3").StoryFn;
6
- export declare const GroupSlot: import("@storybook/vue3").StoryFn;
7
- export declare const GroupImages: import("@storybook/vue3").StoryFn;
8
- export declare const Fallback: import("@storybook/vue3").StoryFn;
9
- export declare const CustomPreviewOverlaySlot: import("@storybook/vue3").StoryFn;