@mobileaction/action-kit 1.54.1 → 1.54.2

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,13 @@
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.54.2](https://github.com/mobileaction/action-kit/compare/v1.54.1...v1.54.2) (2025-08-14)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **DUV-8268:** release ([01410a8](https://github.com/mobileaction/action-kit/commit/01410a813dafae2877d854bc5beae46bd52012b7))
11
+
5
12
  ## [1.54.1](https://github.com/mobileaction/action-kit/compare/v1.54.0...v1.54.1) (2025-08-13)
6
13
 
7
14
 
@@ -713,9 +720,9 @@ All notable changes to this project will be documented in this file. See [standa
713
720
 
714
721
  ### Bug Fixes
715
722
 
716
- **DUV-6837:**
723
+ **DUV-6837:**
717
724
  * keyword track button design foundation sync
718
- * app icon style improvements
725
+ * app icon style improvements
719
726
  * datepicker autorange doc improvent
720
727
 
721
728
  ## [1.39.32](https://github.com/mobileaction/action-kit/compare/v1.39.31...v1.39.32) (2024-12-04)
@@ -1,57 +1,13 @@
1
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
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
- showStatusBar: {
19
- type: BooleanConstructor;
20
- default: boolean;
21
- };
22
- secondary: {
23
- type: BooleanConstructor;
24
- default: boolean;
25
- };
26
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
27
- data: {
28
- type: ArrayConstructor;
29
- required: true;
30
- };
31
- columns: {
32
- type: ArrayConstructor;
33
- required: true;
34
- };
35
- advancedFilter: {
36
- type: BooleanConstructor;
37
- default: boolean;
38
- };
39
- domLayout: {
40
- type: StringConstructor;
41
- default: string;
42
- };
43
- showStatusBar: {
44
- type: BooleanConstructor;
45
- default: boolean;
46
- };
47
- secondary: {
48
- type: BooleanConstructor;
49
- default: boolean;
50
- };
51
- }>> & Readonly<{}>, {
52
- secondary: boolean;
53
- advancedFilter: boolean;
54
- domLayout: string;
55
- showStatusBar: boolean;
56
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1
+ import type { ColDef, DomLayoutType } from 'ag-grid-enterprise';
2
+ interface TableProps {
3
+ data: any[];
4
+ columns: ColDef[];
5
+ advancedFilter?: boolean;
6
+ domLayout?: DomLayoutType;
7
+ showStatusBar?: boolean;
8
+ secondary?: boolean;
9
+ }
10
+ declare const _default: import("vue").DefineComponent<TableProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<TableProps> & Readonly<{}>, {
11
+ domLayout: DomLayoutType;
12
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
57
13
  export default _default;
@@ -1,108 +1,5 @@
1
- export declare const Fields: ({
2
- field: string;
3
- headerName: string;
4
- filter: string;
5
- pinned: boolean;
6
- cellRenderer: string;
7
- minWidth: number;
8
- cellClass?: undefined;
9
- sortable?: undefined;
10
- filterParams?: undefined;
11
- type?: undefined;
12
- aggFunc?: undefined;
13
- headerClass?: undefined;
14
- valueFormatter?: undefined;
15
- cellDataType?: undefined;
16
- } | {
17
- field: string;
18
- headerName: string;
19
- pinned: boolean;
20
- cellClass: string;
21
- sortable: boolean;
22
- cellRenderer: {
23
- props: string[];
24
- setup(props: any): () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
25
- [key: string]: any;
26
- }>;
27
- };
28
- filter?: undefined;
29
- minWidth?: undefined;
30
- filterParams?: undefined;
31
- type?: undefined;
32
- aggFunc?: undefined;
33
- headerClass?: undefined;
34
- valueFormatter?: undefined;
35
- cellDataType?: undefined;
36
- } | {
37
- field: string;
38
- headerName: string;
39
- filter: string;
40
- filterParams: {
41
- buttons: string[];
42
- };
43
- type: string;
44
- aggFunc: string;
45
- headerClass: string;
46
- pinned?: undefined;
47
- cellRenderer?: undefined;
48
- minWidth?: undefined;
49
- cellClass?: undefined;
50
- sortable?: undefined;
51
- valueFormatter?: undefined;
52
- cellDataType?: undefined;
53
- } | {
54
- field: string;
55
- headerName: string;
56
- filter: string;
57
- type: string;
58
- aggFunc: string;
59
- headerClass: string;
60
- pinned?: undefined;
61
- cellRenderer?: undefined;
62
- minWidth?: undefined;
63
- cellClass?: undefined;
64
- sortable?: undefined;
65
- filterParams?: undefined;
66
- valueFormatter?: undefined;
67
- cellDataType?: undefined;
68
- } | {
69
- field: string;
70
- headerName: string;
71
- filter: string;
72
- type: string;
73
- aggFunc: string;
74
- valueFormatter: ({ value }: {
75
- value: number;
76
- }) => string;
77
- headerClass: string;
78
- pinned?: undefined;
79
- cellRenderer?: undefined;
80
- minWidth?: undefined;
81
- cellClass?: undefined;
82
- sortable?: undefined;
83
- filterParams?: undefined;
84
- cellDataType?: undefined;
85
- } | {
86
- field: string;
87
- headerName: string;
88
- filter: string;
89
- cellDataType: string;
90
- cellRenderer: {
91
- props: string[];
92
- setup(props: any): () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
93
- [key: string]: any;
94
- }>;
95
- };
96
- pinned?: undefined;
97
- minWidth?: undefined;
98
- cellClass?: undefined;
99
- sortable?: undefined;
100
- filterParams?: undefined;
101
- type?: undefined;
102
- aggFunc?: undefined;
103
- headerClass?: undefined;
104
- valueFormatter?: undefined;
105
- })[];
1
+ import type { ColDef } from 'ag-grid-enterprise';
2
+ export declare const Fields: ColDef[];
106
3
  export declare const SecondaryFields: ({
107
4
  field: string;
108
5
  headerName: string;