@mobileaction/action-kit 1.32.5 → 1.33.0

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 CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [1.33.0](https://github.com/mobileaction/action-kit/compare/v1.32.6...v1.33.0) (2024-08-21)
6
+
7
+
8
+ ### Features
9
+
10
+ * **DUV-6365:** AG Grid Mobile Action theme, preview, and documentation have been added to ActionKit. ([881e5c8](https://github.com/mobileaction/action-kit/commit/881e5c8875f99e8914794400b68b85bb177d9cea))
11
+
12
+ ## [1.32.6](https://github.com/mobileaction/action-kit/compare/v1.32.5...v1.32.6) (2024-08-20)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * **DUV-6296:** Select item name and checkbox gap ([613a7d0](https://github.com/mobileaction/action-kit/commit/613a7d0216c478ef5a458562fe34f16f5198200a))
18
+
5
19
  ## [1.32.5](https://github.com/mobileaction/action-kit/compare/v1.32.4...v1.32.5) (2024-08-19)
6
20
 
7
21
 
@@ -0,0 +1,39 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ data: {
3
+ type: ArrayConstructor;
4
+ required: true;
5
+ };
6
+ columns: {
7
+ type: ArrayConstructor;
8
+ required: true;
9
+ };
10
+ advancedFilter: {
11
+ type: BooleanConstructor;
12
+ default: boolean;
13
+ };
14
+ domLayout: {
15
+ type: StringConstructor;
16
+ default: string;
17
+ };
18
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
19
+ data: {
20
+ type: ArrayConstructor;
21
+ required: true;
22
+ };
23
+ columns: {
24
+ type: ArrayConstructor;
25
+ required: true;
26
+ };
27
+ advancedFilter: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ };
31
+ domLayout: {
32
+ type: StringConstructor;
33
+ default: string;
34
+ };
35
+ }>>, {
36
+ advancedFilter: boolean;
37
+ domLayout: string;
38
+ }>;
39
+ export default _default;
@@ -0,0 +1,10 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ params: {
3
+ type: () => any;
4
+ };
5
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
6
+ params: {
7
+ type: () => any;
8
+ };
9
+ }>>, {}>;
10
+ export default _default;
@@ -0,0 +1,121 @@
1
+ export declare const Fields: ({
2
+ field: string;
3
+ headerName: string;
4
+ checkboxSelection: boolean;
5
+ headerCheckboxSelection: boolean;
6
+ filter: string;
7
+ floatingFilter: boolean;
8
+ pinned: boolean;
9
+ cellRenderer: string;
10
+ minWidth: number;
11
+ cellClass?: undefined;
12
+ sortable?: undefined;
13
+ filterParams?: undefined;
14
+ type?: undefined;
15
+ valueFormatter?: undefined;
16
+ cellDataType?: undefined;
17
+ cellStyle?: undefined;
18
+ } | {
19
+ field: string;
20
+ headerName: string;
21
+ pinned: boolean;
22
+ cellClass: string;
23
+ sortable: boolean;
24
+ cellRenderer: {
25
+ props: string[];
26
+ setup(): () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
27
+ [key: string]: any;
28
+ }>;
29
+ };
30
+ checkboxSelection?: undefined;
31
+ headerCheckboxSelection?: undefined;
32
+ filter?: undefined;
33
+ floatingFilter?: undefined;
34
+ minWidth?: undefined;
35
+ filterParams?: undefined;
36
+ type?: undefined;
37
+ valueFormatter?: undefined;
38
+ cellDataType?: undefined;
39
+ cellStyle?: undefined;
40
+ } | {
41
+ field: string;
42
+ headerName: string;
43
+ filter: string;
44
+ floatingFilter: boolean;
45
+ filterParams: {
46
+ buttons: string[];
47
+ };
48
+ type: string;
49
+ checkboxSelection?: undefined;
50
+ headerCheckboxSelection?: undefined;
51
+ pinned?: undefined;
52
+ cellRenderer?: undefined;
53
+ minWidth?: undefined;
54
+ cellClass?: undefined;
55
+ sortable?: undefined;
56
+ valueFormatter?: undefined;
57
+ cellDataType?: undefined;
58
+ cellStyle?: undefined;
59
+ } | {
60
+ field: string;
61
+ headerName: string;
62
+ filter: string;
63
+ floatingFilter: boolean;
64
+ type: string;
65
+ checkboxSelection?: undefined;
66
+ headerCheckboxSelection?: undefined;
67
+ pinned?: undefined;
68
+ cellRenderer?: undefined;
69
+ minWidth?: undefined;
70
+ cellClass?: undefined;
71
+ sortable?: undefined;
72
+ filterParams?: undefined;
73
+ valueFormatter?: undefined;
74
+ cellDataType?: undefined;
75
+ cellStyle?: undefined;
76
+ } | {
77
+ field: string;
78
+ headerName: string;
79
+ filter: string;
80
+ floatingFilter: boolean;
81
+ type: string;
82
+ valueFormatter: ({ value }: {
83
+ value: number;
84
+ }) => string;
85
+ checkboxSelection?: undefined;
86
+ headerCheckboxSelection?: undefined;
87
+ pinned?: undefined;
88
+ cellRenderer?: undefined;
89
+ minWidth?: undefined;
90
+ cellClass?: undefined;
91
+ sortable?: undefined;
92
+ filterParams?: undefined;
93
+ cellDataType?: undefined;
94
+ cellStyle?: undefined;
95
+ } | {
96
+ field: string;
97
+ headerName: string;
98
+ filter: string;
99
+ floatingFilter: boolean;
100
+ cellDataType: string;
101
+ checkboxSelection: boolean;
102
+ cellRenderer: {
103
+ props: string[];
104
+ setup(props: any): () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
105
+ [key: string]: any;
106
+ }>;
107
+ };
108
+ cellStyle: {
109
+ display: string;
110
+ justifyContent: string;
111
+ alignItems: string;
112
+ };
113
+ headerCheckboxSelection?: undefined;
114
+ pinned?: undefined;
115
+ minWidth?: undefined;
116
+ cellClass?: undefined;
117
+ sortable?: undefined;
118
+ filterParams?: undefined;
119
+ type?: undefined;
120
+ valueFormatter?: undefined;
121
+ })[];
@@ -0,0 +1,13 @@
1
+ import { StoryFn } from '@storybook/vue3';
2
+ declare const _default: {
3
+ title: string;
4
+ parameters: {
5
+ docs: {
6
+ disable: boolean;
7
+ };
8
+ };
9
+ };
10
+ export default _default;
11
+ export declare const Default: StoryFn;
12
+ export declare const AdvancedFilter: StoryFn;
13
+ export declare const StickyHeader: StoryFn;