@mobileaction/action-kit 1.35.9 → 1.35.12
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 +23 -0
- package/dist/action-kit.js +55 -1
- package/dist/action-kit.mjs +17180 -157
- package/dist/components/animation/index.vue.d.ts +1 -1
- package/dist/src/components/animation/index.vue.d.ts +1 -1
- package/dist/src/components/select/stories/group.stories.d.ts +4 -2
- package/dist/style.css +1 -1
- package/dist/table.css +11 -1
- package/package.json +1 -1
- package/dist/404-page-0ee5cadd.js +0 -3
- package/dist/404-page-98ec8592.mjs +0 -10581
- package/dist/fly-waiting-9101fb8f.js +0 -1
- package/dist/fly-waiting-bc221374.mjs +0 -1672
- package/dist/index-363aa798.mjs +0 -12380
- package/dist/index-5395a171.js +0 -47
- package/dist/lottie_light-16ecca7e.js +0 -9
- package/dist/lottie_light-c4f264e2.mjs +0 -4814
- package/dist/maintenance-740efe0b.js +0 -1
- package/dist/maintenance-94f5ab19.mjs +0 -18866
- package/dist/no-data-found-65b42caf.js +0 -1
- package/dist/no-data-found-98af8e80.mjs +0 -3399
- package/dist/rocket-21431704.mjs +0 -28646
- package/dist/rocket-8d93d70d.js +0 -1
- package/dist/rounded-loading-c4ebb46c.js +0 -1
- package/dist/rounded-loading-d3184421.mjs +0 -830
- package/dist/sad-not-found-44e231b1.mjs +0 -1336
- package/dist/sad-not-found-7da4aa65.js +0 -1
- package/dist/success-confetti-33dc00b3.js +0 -1
- package/dist/success-confetti-b9594f98.mjs +0 -89136
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { PropType as __PropType } from 'vue';
|
|
2
|
-
import { type AnimationName } from
|
|
2
|
+
import { type AnimationName } from './types';
|
|
3
3
|
import { SVGRendererConfig } from 'lottie-web/build/player/lottie_light';
|
|
4
4
|
export interface MaAnimationProps {
|
|
5
5
|
name?: AnimationName;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
import type { Meta, StoryFn } from '@storybook/vue3';
|
|
2
|
-
import { MaSelect } from
|
|
1
|
+
import type { Meta, StoryFn, StoryObj } from '@storybook/vue3';
|
|
2
|
+
import { MaSelect } from '@/index';
|
|
3
3
|
declare const meta: Meta<typeof MaSelect>;
|
|
4
4
|
export default meta;
|
|
5
|
+
declare type Story = StoryObj<typeof MaSelect>;
|
|
5
6
|
export declare const Group: StoryFn;
|
|
7
|
+
export declare const MultiCountrySelectGroup: Story;
|