@mobileaction/action-kit 1.31.4 → 1.31.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mobileaction/action-kit",
3
- "version": "1.31.4",
3
+ "version": "1.31.6",
4
4
  "main": "dist/action-kit.js",
5
5
  "module": "dist/action-kit.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -1,4 +0,0 @@
1
- declare const _sfc_main: {
2
- name: string;
3
- };
4
- export default _sfc_main;
@@ -1,43 +0,0 @@
1
- import type { PropType as __PropType } from 'vue';
2
- export interface ListItemMetaProps {
3
- avatar?: string;
4
- icon?: string;
5
- title?: string;
6
- description?: string;
7
- }
8
- declare const _sfc_main: import("vue").DefineComponent<{
9
- avatar: {
10
- type: __PropType<string>;
11
- required: false;
12
- };
13
- icon: {
14
- type: __PropType<string>;
15
- required: false;
16
- };
17
- title: {
18
- type: __PropType<string>;
19
- required: false;
20
- };
21
- description: {
22
- type: __PropType<string>;
23
- required: false;
24
- };
25
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
26
- avatar: {
27
- type: __PropType<string>;
28
- required: false;
29
- };
30
- icon: {
31
- type: __PropType<string>;
32
- required: false;
33
- };
34
- title: {
35
- type: __PropType<string>;
36
- required: false;
37
- };
38
- description: {
39
- type: __PropType<string>;
40
- required: false;
41
- };
42
- }>>, {}>;
43
- export default _sfc_main;
@@ -1,30 +0,0 @@
1
- import type { PropType as __PropType } from 'vue';
2
- export interface MAListData {
3
- avatar: string;
4
- icon: string;
5
- title: string;
6
- description: string;
7
- actions: {
8
- label: string;
9
- onClick: () => void;
10
- }[];
11
- }
12
- export interface MaListProps {
13
- listData?: MAListData[];
14
- }
15
- declare const _sfc_main: import("vue").DefineComponent<{
16
- listData: {
17
- type: __PropType<MAListData[]>;
18
- required: false;
19
- default: () => MAListData[];
20
- };
21
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
22
- listData: {
23
- type: __PropType<MAListData[]>;
24
- required: false;
25
- default: () => MAListData[];
26
- };
27
- }>>, {
28
- listData: MAListData[];
29
- }>;
30
- export default _sfc_main;