@mobileaction/action-kit 1.15.1 → 1.15.11

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 (27) hide show
  1. package/dist/action-kit.js +1 -1
  2. package/dist/action-kit.mjs +52 -52
  3. package/dist/components/keyword-group-selection/index.vue.d.ts +12 -0
  4. package/dist/components/watchlist-button/components/button.vue.d.ts +88 -0
  5. package/dist/components/watchlist-button/index.vue.d.ts +101 -0
  6. package/dist/components/watchlist-button/types.d.ts +4 -0
  7. package/dist/{index-f7fb73bf.mjs → index-36f8175a.mjs} +3192 -3099
  8. package/dist/index-cda1632b.js +56 -0
  9. package/dist/index.d.ts +1 -1
  10. package/dist/{lottie_light-698cd07c.mjs → lottie_light-42dfbb0d.mjs} +1 -1
  11. package/dist/{lottie_light-64d53144.js → lottie_light-aa86b0f6.js} +1 -1
  12. package/dist/src/components/keyword-group-selection/index.vue.d.ts +4 -0
  13. package/dist/src/components/{pagination/index.vue.d.ts → watchlist-button/components/button.vue.d.ts} +24 -22
  14. package/dist/src/components/watchlist-button/index.vue.d.ts +50 -0
  15. package/dist/src/components/watchlist-button/stories/constants.d.ts +5 -0
  16. package/dist/src/components/watchlist-button/stories/dashed.stories.d.ts +6 -0
  17. package/dist/src/components/watchlist-button/stories/default.stories.d.ts +11 -0
  18. package/dist/src/components/watchlist-button/types.d.ts +4 -0
  19. package/dist/src/index.d.ts +1 -1
  20. package/dist/style.css +1 -1
  21. package/package.json +2 -2
  22. package/dist/components/pagination/index.vue.d.ts +0 -69
  23. package/dist/components/pagination/types.d.ts +0 -2
  24. package/dist/index-478f9143.js +0 -56
  25. package/dist/src/components/pagination/stories/constants.d.ts +0 -6
  26. package/dist/src/components/pagination/stories/default.stories.d.ts +0 -6
  27. package/dist/src/components/pagination/types.d.ts +0 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mobileaction/action-kit",
3
- "version": "1.15.01",
3
+ "version": "1.15.11",
4
4
  "main": "dist/action-kit.js",
5
5
  "module": "dist/action-kit.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -106,4 +106,4 @@
106
106
  "url": "https://github.com/mobileaction/action-kit/issues"
107
107
  },
108
108
  "homepage": "https://mobileaction.github.io/action-kit"
109
- }
109
+ }
@@ -1,69 +0,0 @@
1
- import type { PropType as __PropType } from 'vue';
2
- import { MaPaginationType } from '../../components/pagination/types';
3
- export interface MaPaginationProps {
4
- totalItems?: number;
5
- itemsPerPage?: number;
6
- type?: MaPaginationType;
7
- showEllipsis?: boolean;
8
- showTotalItems?: boolean;
9
- }
10
- declare const _sfc_main: import("vue").DefineComponent<{
11
- totalItems: {
12
- type: __PropType<number>;
13
- required: false;
14
- default: number;
15
- };
16
- itemsPerPage: {
17
- type: __PropType<number>;
18
- required: false;
19
- default: number;
20
- };
21
- type: {
22
- type: __PropType<"compact" | "divided">;
23
- required: false;
24
- default: string;
25
- };
26
- showEllipsis: {
27
- type: __PropType<boolean>;
28
- required: false;
29
- default: boolean;
30
- };
31
- showTotalItems: {
32
- type: __PropType<boolean>;
33
- required: false;
34
- default: boolean;
35
- };
36
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
37
- totalItems: {
38
- type: __PropType<number>;
39
- required: false;
40
- default: number;
41
- };
42
- itemsPerPage: {
43
- type: __PropType<number>;
44
- required: false;
45
- default: number;
46
- };
47
- type: {
48
- type: __PropType<"compact" | "divided">;
49
- required: false;
50
- default: string;
51
- };
52
- showEllipsis: {
53
- type: __PropType<boolean>;
54
- required: false;
55
- default: boolean;
56
- };
57
- showTotalItems: {
58
- type: __PropType<boolean>;
59
- required: false;
60
- default: boolean;
61
- };
62
- }>>, {
63
- type: "compact" | "divided";
64
- totalItems: number;
65
- itemsPerPage: number;
66
- showEllipsis: boolean;
67
- showTotalItems: boolean;
68
- }>;
69
- export default _sfc_main;
@@ -1,2 +0,0 @@
1
- export declare const MaPaginationTypes: readonly ["divided", "compact"];
2
- export type MaPaginationType = (typeof MaPaginationTypes)[number];