@mobileaction/action-kit 1.35.7 → 1.35.8
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 +7 -0
- package/dist/src/components/table/stories/data/fields.d.ts +0 -12
- package/dist/table.css +55 -21
- package/package.json +16 -15
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.35.8](https://github.com/mobileaction/action-kit/compare/v1.35.7...v1.35.8) (2024-10-04)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **DUV-6586:** ag-grid version upgrade ([e8aab7d](https://github.com/mobileaction/action-kit/commit/e8aab7d1cde6137ad1c270b5128fcaba025473ad))
|
|
11
|
+
|
|
5
12
|
## [1.35.7](https://github.com/mobileaction/action-kit/compare/v1.35.6...v1.35.7) (2024-10-01)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
export declare const Fields: ({
|
|
2
2
|
field: string;
|
|
3
3
|
headerName: string;
|
|
4
|
-
checkboxSelection: ({ data }: any) => boolean;
|
|
5
|
-
headerCheckboxSelection: boolean;
|
|
6
4
|
filter: string;
|
|
7
5
|
pinned: boolean;
|
|
8
6
|
cellRenderer: string;
|
|
@@ -27,8 +25,6 @@ export declare const Fields: ({
|
|
|
27
25
|
[key: string]: any;
|
|
28
26
|
}>;
|
|
29
27
|
};
|
|
30
|
-
checkboxSelection?: undefined;
|
|
31
|
-
headerCheckboxSelection?: undefined;
|
|
32
28
|
filter?: undefined;
|
|
33
29
|
minWidth?: undefined;
|
|
34
30
|
filterParams?: undefined;
|
|
@@ -47,8 +43,6 @@ export declare const Fields: ({
|
|
|
47
43
|
type: string;
|
|
48
44
|
aggFunc: string;
|
|
49
45
|
headerClass: string;
|
|
50
|
-
checkboxSelection?: undefined;
|
|
51
|
-
headerCheckboxSelection?: undefined;
|
|
52
46
|
pinned?: undefined;
|
|
53
47
|
cellRenderer?: undefined;
|
|
54
48
|
minWidth?: undefined;
|
|
@@ -63,8 +57,6 @@ export declare const Fields: ({
|
|
|
63
57
|
type: string;
|
|
64
58
|
aggFunc: string;
|
|
65
59
|
headerClass: string;
|
|
66
|
-
checkboxSelection?: undefined;
|
|
67
|
-
headerCheckboxSelection?: undefined;
|
|
68
60
|
pinned?: undefined;
|
|
69
61
|
cellRenderer?: undefined;
|
|
70
62
|
minWidth?: undefined;
|
|
@@ -83,8 +75,6 @@ export declare const Fields: ({
|
|
|
83
75
|
value: number;
|
|
84
76
|
}) => string;
|
|
85
77
|
headerClass: string;
|
|
86
|
-
checkboxSelection?: undefined;
|
|
87
|
-
headerCheckboxSelection?: undefined;
|
|
88
78
|
pinned?: undefined;
|
|
89
79
|
cellRenderer?: undefined;
|
|
90
80
|
minWidth?: undefined;
|
|
@@ -103,8 +93,6 @@ export declare const Fields: ({
|
|
|
103
93
|
[key: string]: any;
|
|
104
94
|
}>;
|
|
105
95
|
};
|
|
106
|
-
checkboxSelection?: undefined;
|
|
107
|
-
headerCheckboxSelection?: undefined;
|
|
108
96
|
pinned?: undefined;
|
|
109
97
|
minWidth?: undefined;
|
|
110
98
|
cellClass?: undefined;
|
package/dist/table.css
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
body {
|
|
2
|
+
--ag-legacy-styles-loaded: "true";
|
|
3
|
+
}
|
|
4
|
+
|
|
1
5
|
.ag-icon {
|
|
2
6
|
font-family: var(--ag-icon-font-family);
|
|
3
7
|
font-weight: var(--ag-icon-font-weight);
|
|
@@ -1682,19 +1686,19 @@ ag-grid-aurelia {
|
|
|
1682
1686
|
}
|
|
1683
1687
|
|
|
1684
1688
|
.ag-ltr .ag-header-cell-resize {
|
|
1685
|
-
right: -
|
|
1689
|
+
right: -3px;
|
|
1686
1690
|
}
|
|
1687
1691
|
|
|
1688
1692
|
.ag-rtl .ag-header-cell-resize {
|
|
1689
|
-
left: -
|
|
1693
|
+
left: -3px;
|
|
1690
1694
|
}
|
|
1691
1695
|
|
|
1692
1696
|
.ag-pinned-left-header .ag-header-cell-resize {
|
|
1693
|
-
right: -
|
|
1697
|
+
right: -3px;
|
|
1694
1698
|
}
|
|
1695
1699
|
|
|
1696
1700
|
.ag-pinned-right-header .ag-header-cell-resize {
|
|
1697
|
-
left: -
|
|
1701
|
+
left: -3px;
|
|
1698
1702
|
}
|
|
1699
1703
|
|
|
1700
1704
|
.ag-header-select-all {
|
|
@@ -2040,12 +2044,10 @@ ag-grid-aurelia {
|
|
|
2040
2044
|
}
|
|
2041
2045
|
|
|
2042
2046
|
.ag-dnd-ghost {
|
|
2043
|
-
position: absolute;
|
|
2044
2047
|
display: inline-flex;
|
|
2045
2048
|
align-items: center;
|
|
2046
2049
|
cursor: move;
|
|
2047
2050
|
white-space: nowrap;
|
|
2048
|
-
z-index: 9999;
|
|
2049
2051
|
}
|
|
2050
2052
|
|
|
2051
2053
|
.ag-overlay {
|
|
@@ -3486,7 +3488,7 @@ button[class^=ag-]:focus {
|
|
|
3486
3488
|
text-overflow: ellipsis;
|
|
3487
3489
|
border: var(--ag-borders-secondary) var(--ag-secondary-border-color);
|
|
3488
3490
|
color: var(--ag-secondary-foreground-color);
|
|
3489
|
-
height: var(--ag-header-height)
|
|
3491
|
+
height: var(--ag-header-height);
|
|
3490
3492
|
line-height: var(--ag-header-height);
|
|
3491
3493
|
margin: 0;
|
|
3492
3494
|
padding: 0 calc(var(--ag-grid-size) * 2);
|
|
@@ -3677,7 +3679,6 @@ button[class^=ag-]:focus {
|
|
|
3677
3679
|
}
|
|
3678
3680
|
|
|
3679
3681
|
.ag-pill .ag-pill-button:hover {
|
|
3680
|
-
color: var(--ag-active-color);
|
|
3681
3682
|
cursor: pointer;
|
|
3682
3683
|
}
|
|
3683
3684
|
|
|
@@ -3877,10 +3878,6 @@ button[class^=ag-]:focus {
|
|
|
3877
3878
|
padding-left: calc(var(--ag-indentation-level) * var(--ag-row-group-indent-size));
|
|
3878
3879
|
}
|
|
3879
3880
|
|
|
3880
|
-
.ag-pivot-leaf-group {
|
|
3881
|
-
margin-left: min(var(--ag-row-group-indent-size), var(--ag-row-group-indent-size) * var(--ag-indentation-level));
|
|
3882
|
-
}
|
|
3883
|
-
|
|
3884
3881
|
.ag-ltr .ag-row-group-leaf-indent {
|
|
3885
3882
|
margin-left: var(--ag-row-group-indent-size);
|
|
3886
3883
|
}
|
|
@@ -3889,6 +3886,10 @@ button[class^=ag-]:focus {
|
|
|
3889
3886
|
margin-right: var(--ag-row-group-indent-size);
|
|
3890
3887
|
}
|
|
3891
3888
|
|
|
3889
|
+
.ag-row:not(.ag-row-level-0) .ag-pivot-leaf-group {
|
|
3890
|
+
margin-left: var(--ag-row-group-indent-size);
|
|
3891
|
+
}
|
|
3892
|
+
|
|
3892
3893
|
.ag-value-change-delta {
|
|
3893
3894
|
padding-right: 2px;
|
|
3894
3895
|
}
|
|
@@ -4926,7 +4927,6 @@ button.ag-side-button-button:focus {
|
|
|
4926
4927
|
left: 0;
|
|
4927
4928
|
right: 0;
|
|
4928
4929
|
height: 1px;
|
|
4929
|
-
background-color: var(--ag-range-selection-border-color);
|
|
4930
4930
|
}
|
|
4931
4931
|
|
|
4932
4932
|
.ag-column-select-list .ag-item-highlight-top::after {
|
|
@@ -5102,6 +5102,26 @@ button.ag-side-button-button:focus {
|
|
|
5102
5102
|
left: 0;
|
|
5103
5103
|
}
|
|
5104
5104
|
|
|
5105
|
+
.ag-header-highlight-before::after,
|
|
5106
|
+
.ag-header-highlight-after::after {
|
|
5107
|
+
content: "";
|
|
5108
|
+
position: absolute;
|
|
5109
|
+
height: 100%;
|
|
5110
|
+
width: 1px;
|
|
5111
|
+
}
|
|
5112
|
+
|
|
5113
|
+
.ag-header-highlight-before::after {
|
|
5114
|
+
left: 0px;
|
|
5115
|
+
}
|
|
5116
|
+
|
|
5117
|
+
.ag-header-highlight-after::after {
|
|
5118
|
+
right: 0px;
|
|
5119
|
+
}
|
|
5120
|
+
|
|
5121
|
+
.ag-pinned-left-header .ag-header-highlight-after::after {
|
|
5122
|
+
right: 1px;
|
|
5123
|
+
}
|
|
5124
|
+
|
|
5105
5125
|
.ag-header-cell-resize {
|
|
5106
5126
|
display: flex;
|
|
5107
5127
|
align-items: center;
|
|
@@ -5833,7 +5853,6 @@ button.ag-side-button-button:focus {
|
|
|
5833
5853
|
left: 0;
|
|
5834
5854
|
right: 0;
|
|
5835
5855
|
height: 1px;
|
|
5836
|
-
background-color: var(--ag-range-selection-border-color);
|
|
5837
5856
|
}
|
|
5838
5857
|
|
|
5839
5858
|
.ag-charts-data-group-container .ag-item-highlight-top::after {
|
|
@@ -6020,7 +6039,6 @@ button.ag-side-button-button:focus {
|
|
|
6020
6039
|
left: 0;
|
|
6021
6040
|
right: 0;
|
|
6022
6041
|
height: 1px;
|
|
6023
|
-
background-color: var(--ag-range-selection-border-color);
|
|
6024
6042
|
}
|
|
6025
6043
|
|
|
6026
6044
|
.ag-advanced-filter-builder-list .ag-item-highlight-top::after {
|
|
@@ -6892,12 +6910,6 @@ input[class^=ag-][type=range]:disabled {
|
|
|
6892
6910
|
color: color-mix(in srgb, transparent, var(--ag-foreground-color) 95%);
|
|
6893
6911
|
}
|
|
6894
6912
|
|
|
6895
|
-
.ag-theme-quartz .ag-menu-option .ag-icon, .ag-theme-ma .ag-menu-option .ag-icon,
|
|
6896
|
-
.ag-theme-quartz-dark .ag-menu-option .ag-icon,
|
|
6897
|
-
.ag-theme-quartz-auto-dark .ag-menu-option .ag-icon {
|
|
6898
|
-
opacity: 65%;
|
|
6899
|
-
}
|
|
6900
|
-
|
|
6901
6913
|
.ag-theme-quartz .ag-menu-header, .ag-theme-ma .ag-menu-header,
|
|
6902
6914
|
.ag-theme-quartz-dark .ag-menu-header,
|
|
6903
6915
|
.ag-theme-quartz-auto-dark .ag-menu-header {
|
|
@@ -7938,6 +7950,28 @@ input[class^=ag-][type=range]:disabled {
|
|
|
7938
7950
|
padding: calc(var(--ag-grid-size) * 3.75);
|
|
7939
7951
|
}
|
|
7940
7952
|
|
|
7953
|
+
.ag-theme-quartz .ag-list-item-hovered::after, .ag-theme-ma .ag-list-item-hovered::after,
|
|
7954
|
+
.ag-theme-quartz-dark .ag-list-item-hovered::after,
|
|
7955
|
+
.ag-theme-quartz-auto-dark .ag-list-item-hovered::after {
|
|
7956
|
+
background-color: var(--ag-active-color);
|
|
7957
|
+
}
|
|
7958
|
+
|
|
7959
|
+
.ag-theme-quartz .ag-pill .ag-pill-button:hover, .ag-theme-ma .ag-pill .ag-pill-button:hover,
|
|
7960
|
+
.ag-theme-quartz-dark .ag-pill .ag-pill-button:hover,
|
|
7961
|
+
.ag-theme-quartz-auto-dark .ag-pill .ag-pill-button:hover {
|
|
7962
|
+
color: var(--ag-active-color);
|
|
7963
|
+
}
|
|
7964
|
+
|
|
7965
|
+
.ag-theme-quartz .ag-header-highlight-before::after, .ag-theme-ma .ag-header-highlight-before::after,
|
|
7966
|
+
.ag-theme-quartz .ag-header-highlight-after::after,
|
|
7967
|
+
.ag-theme-ma .ag-header-highlight-after::after,
|
|
7968
|
+
.ag-theme-quartz-dark .ag-header-highlight-before::after,
|
|
7969
|
+
.ag-theme-quartz-dark .ag-header-highlight-after::after,
|
|
7970
|
+
.ag-theme-quartz-auto-dark .ag-header-highlight-before::after,
|
|
7971
|
+
.ag-theme-quartz-auto-dark .ag-header-highlight-after::after {
|
|
7972
|
+
background-color: var(--ag-active-color);
|
|
7973
|
+
}
|
|
7974
|
+
|
|
7941
7975
|
.ag-theme-quartz-dark .ag-column-select-header-filter-wrapper .ag-input-wrapper::before,
|
|
7942
7976
|
.ag-theme-quartz-dark .ag-filter-toolpanel-search .ag-input-wrapper::before,
|
|
7943
7977
|
.ag-theme-quartz-dark .ag-mini-filter .ag-input-wrapper::before,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mobileaction/action-kit",
|
|
3
|
-
"version": "1.35.
|
|
3
|
+
"version": "1.35.8",
|
|
4
4
|
"main": "dist/action-kit.js",
|
|
5
5
|
"module": "dist/action-kit.mjs",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -88,22 +88,23 @@
|
|
|
88
88
|
},
|
|
89
89
|
"peerDependencies": {},
|
|
90
90
|
"dependencies": {
|
|
91
|
-
"@ag-grid-community/client-side-row-model": "^32.
|
|
92
|
-
"@ag-grid-community/core": "^32.
|
|
93
|
-
"@ag-grid-community/styles": "^32.
|
|
94
|
-
"@ag-grid-community/vue3": "^32.
|
|
95
|
-
"@ag-grid-enterprise/advanced-filter": "^32.
|
|
96
|
-
"@ag-grid-enterprise/clipboard": "^32.
|
|
97
|
-
"@ag-grid-enterprise/column-tool-panel": "^32.
|
|
98
|
-
"@ag-grid-enterprise/core": "^32.
|
|
99
|
-
"@ag-grid-enterprise/excel-export": "^32.
|
|
100
|
-
"@ag-grid-enterprise/master-detail": "^32.
|
|
101
|
-
"@ag-grid-enterprise/menu": "^32.
|
|
102
|
-
"@ag-grid-enterprise/range-selection": "^32.
|
|
103
|
-
"@ag-grid-enterprise/
|
|
91
|
+
"@ag-grid-community/client-side-row-model": "^32.2.0",
|
|
92
|
+
"@ag-grid-community/core": "^32.2.0",
|
|
93
|
+
"@ag-grid-community/styles": "^32.2.0",
|
|
94
|
+
"@ag-grid-community/vue3": "^32.2.0",
|
|
95
|
+
"@ag-grid-enterprise/advanced-filter": "^32.2.0",
|
|
96
|
+
"@ag-grid-enterprise/clipboard": "^32.2.0",
|
|
97
|
+
"@ag-grid-enterprise/column-tool-panel": "^32.2.0",
|
|
98
|
+
"@ag-grid-enterprise/core": "^32.2.0",
|
|
99
|
+
"@ag-grid-enterprise/excel-export": "^32.2.0",
|
|
100
|
+
"@ag-grid-enterprise/master-detail": "^32.2.0",
|
|
101
|
+
"@ag-grid-enterprise/menu": "^32.2.0",
|
|
102
|
+
"@ag-grid-enterprise/range-selection": "^32.2.0",
|
|
103
|
+
"@ag-grid-enterprise/set-filter": "^32.2.0",
|
|
104
|
+
"@ag-grid-enterprise/status-bar": "^32.2.0",
|
|
104
105
|
"@headlessui/vue": "^1.7.22",
|
|
105
106
|
"@vueuse/core": "^10.9.0",
|
|
106
|
-
"ag-grid-vue3": "^32.
|
|
107
|
+
"ag-grid-vue3": "^32.2.0",
|
|
107
108
|
"ant-design-vue": "3.2.16",
|
|
108
109
|
"dayjs": "^1.11.10",
|
|
109
110
|
"lottie-web": "^5.12.2",
|