@adaptabletools/adaptable-react-aggrid 11.0.9 → 11.1.1-canary.1
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/base.css +19 -11
- package/index.css +23 -11
- package/package.json +4 -4
package/base.css
CHANGED
|
@@ -1539,8 +1539,12 @@
|
|
|
1539
1539
|
overflow: auto;
|
|
1540
1540
|
display: grid;
|
|
1541
1541
|
padding: var(--ab-space-2);
|
|
1542
|
-
|
|
1543
|
-
|
|
1542
|
+
flex: 1 1 0;
|
|
1543
|
+
min-height: 0;
|
|
1544
|
+
grid-template-columns: 28rem 1fr;
|
|
1545
|
+
grid-template-rows: repeat(3, 1fr);
|
|
1546
|
+
grid-column-gap: 0px;
|
|
1547
|
+
grid-row-gap: 0px;
|
|
1544
1548
|
row-gap: var(--ab-space-2);
|
|
1545
1549
|
column-gap: var(--ab-space-2);
|
|
1546
1550
|
grid-gap: var(--ab-space-2); }
|
|
@@ -1550,18 +1554,13 @@
|
|
|
1550
1554
|
.ab-LayoutEditor__ColumnList {
|
|
1551
1555
|
overflow: auto; }
|
|
1552
1556
|
.ab-LayoutEditor__ColumnListPanel {
|
|
1553
|
-
grid-
|
|
1554
|
-
grid-column: 1 /1;
|
|
1555
|
-
max-height: initial; }
|
|
1557
|
+
grid-area: 1 / 1 / 4 / 2; }
|
|
1556
1558
|
.ab-LayoutEditor__ColumnSortListPanel {
|
|
1557
|
-
grid-
|
|
1558
|
-
grid-column: 2 /2; }
|
|
1559
|
+
grid-area: 1 / 2 / 2 / 3; }
|
|
1559
1560
|
.ab-LayoutEditor__RowGroupsListPanel {
|
|
1560
|
-
grid-
|
|
1561
|
-
grid-column: 2 /2; }
|
|
1561
|
+
grid-area: 2 / 2 / 3 / 3; }
|
|
1562
1562
|
.ab-LayoutEditor__PivotListPanel {
|
|
1563
|
-
grid-
|
|
1564
|
-
grid-column: 3 /3; }
|
|
1563
|
+
grid-area: 3 / 2 / 4 / 3; }
|
|
1565
1564
|
.ab-LayoutEditor__PivotList--empty,
|
|
1566
1565
|
.ab-LayoutEditor__RowGroupsList--empty,
|
|
1567
1566
|
.ab-LayoutEditor__ColumnSortList--empty {
|
|
@@ -1654,6 +1653,8 @@
|
|
|
1654
1653
|
--ab-cmp-adaptable-popup-panel__margin-top: var(--ab-space-2);
|
|
1655
1654
|
--ab-cmp-adaptable-popup-panel-title__font-size: var(--ab-font-size-5);
|
|
1656
1655
|
--ab-cmp-adaptable-popup-panel-body__padding: var(--ab-space-2); }
|
|
1656
|
+
:root {
|
|
1657
|
+
--ab-cmp-adaptable-window-popup__box-shadow: var(--ab-cmp-adaptable-popup__box-shadow); }
|
|
1657
1658
|
:root {
|
|
1658
1659
|
--ab-cmp-adaptable-object-list-tag__margin-right: var(--ab-space-2);
|
|
1659
1660
|
--ab-cmp-adaptable-object-list-tag__margin-top: var(--ab-space-2);
|
|
@@ -2745,6 +2746,13 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
|
2745
2746
|
cursor: move; }
|
|
2746
2747
|
.ab-Adaptable-Popup--window.ab-Adaptable-Popup--action-popup .ab-Panel__header {
|
|
2747
2748
|
cursor: move; }
|
|
2749
|
+
.ab-Window-Modal .ab-Panel__header {
|
|
2750
|
+
cursor: move; }
|
|
2751
|
+
.ab-Window-Modal {
|
|
2752
|
+
max-height: 100%;
|
|
2753
|
+
box-shadow: var(--ab-cmp-adaptable-window-popup__box-shadow); }
|
|
2754
|
+
.ab-Window-Modal .ab-Panel {
|
|
2755
|
+
max-height: initial; }
|
|
2748
2756
|
.ab-Adaptable-Object-List {
|
|
2749
2757
|
list-style: none;
|
|
2750
2758
|
padding: 0; }
|
package/index.css
CHANGED
|
@@ -2139,8 +2139,12 @@ template {
|
|
|
2139
2139
|
overflow: auto;
|
|
2140
2140
|
display: grid;
|
|
2141
2141
|
padding: var(--ab-space-2);
|
|
2142
|
-
|
|
2143
|
-
|
|
2142
|
+
flex: 1 1 0;
|
|
2143
|
+
min-height: 0;
|
|
2144
|
+
grid-template-columns: 28rem 1fr;
|
|
2145
|
+
grid-template-rows: repeat(3, 1fr);
|
|
2146
|
+
grid-column-gap: 0px;
|
|
2147
|
+
grid-row-gap: 0px;
|
|
2144
2148
|
row-gap: var(--ab-space-2);
|
|
2145
2149
|
column-gap: var(--ab-space-2);
|
|
2146
2150
|
grid-gap: var(--ab-space-2); }
|
|
@@ -2153,21 +2157,16 @@ template {
|
|
|
2153
2157
|
overflow: auto; }
|
|
2154
2158
|
|
|
2155
2159
|
.ab-LayoutEditor__ColumnListPanel {
|
|
2156
|
-
grid-
|
|
2157
|
-
grid-column: 1 /1;
|
|
2158
|
-
max-height: initial; }
|
|
2160
|
+
grid-area: 1 / 1 / 4 / 2; }
|
|
2159
2161
|
|
|
2160
2162
|
.ab-LayoutEditor__ColumnSortListPanel {
|
|
2161
|
-
grid-
|
|
2162
|
-
grid-column: 2 /2; }
|
|
2163
|
+
grid-area: 1 / 2 / 2 / 3; }
|
|
2163
2164
|
|
|
2164
2165
|
.ab-LayoutEditor__RowGroupsListPanel {
|
|
2165
|
-
grid-
|
|
2166
|
-
grid-column: 2 /2; }
|
|
2166
|
+
grid-area: 2 / 2 / 3 / 3; }
|
|
2167
2167
|
|
|
2168
2168
|
.ab-LayoutEditor__PivotListPanel {
|
|
2169
|
-
grid-
|
|
2170
|
-
grid-column: 3 /3; }
|
|
2169
|
+
grid-area: 3 / 2 / 4 / 3; }
|
|
2171
2170
|
|
|
2172
2171
|
.ab-LayoutEditor__PivotList--empty,
|
|
2173
2172
|
.ab-LayoutEditor__RowGroupsList--empty,
|
|
@@ -2274,6 +2273,9 @@ template {
|
|
|
2274
2273
|
--ab-cmp-adaptable-popup-panel-title__font-size: var(--ab-font-size-5);
|
|
2275
2274
|
--ab-cmp-adaptable-popup-panel-body__padding: var(--ab-space-2); }
|
|
2276
2275
|
|
|
2276
|
+
:root {
|
|
2277
|
+
--ab-cmp-adaptable-window-popup__box-shadow: var(--ab-cmp-adaptable-popup__box-shadow); }
|
|
2278
|
+
|
|
2277
2279
|
:root {
|
|
2278
2280
|
--ab-cmp-adaptable-object-list-tag__margin-right: var(--ab-space-2);
|
|
2279
2281
|
--ab-cmp-adaptable-object-list-tag__margin-top: var(--ab-space-2);
|
|
@@ -3636,6 +3638,16 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
|
3636
3638
|
.ab-Adaptable-Popup--window.ab-Adaptable-Popup--action-popup .ab-Panel__header {
|
|
3637
3639
|
cursor: move; }
|
|
3638
3640
|
|
|
3641
|
+
.ab-Window-Modal .ab-Panel__header {
|
|
3642
|
+
cursor: move; }
|
|
3643
|
+
|
|
3644
|
+
.ab-Window-Modal {
|
|
3645
|
+
max-height: 100%;
|
|
3646
|
+
box-shadow: var(--ab-cmp-adaptable-window-popup__box-shadow); }
|
|
3647
|
+
|
|
3648
|
+
.ab-Window-Modal .ab-Panel {
|
|
3649
|
+
max-height: initial; }
|
|
3650
|
+
|
|
3639
3651
|
.ab-Adaptable-Object-List {
|
|
3640
3652
|
list-style: none;
|
|
3641
3653
|
padding: 0; }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptabletools/adaptable-react-aggrid",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.1.1-canary.1",
|
|
4
4
|
"description": "React version of the powerful data-agnostic HTML5 datagrid add-on that sits on top of the agGrid component and provides all the rich functionality that advanced users expect from their DataGrids and Data Tables",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"tslib": "^2.0.0",
|
|
22
|
-
"@adaptabletools/adaptable": "11.
|
|
22
|
+
"@adaptabletools/adaptable": "11.1.1-canary.1"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@ag-grid-community/all-modules": ">=27.
|
|
26
|
-
"@ag-grid-community/react": ">=27.
|
|
25
|
+
"@ag-grid-community/all-modules": ">=27.1.0",
|
|
26
|
+
"@ag-grid-community/react": ">=27.1.0",
|
|
27
27
|
"react": ">=16.8.0",
|
|
28
28
|
"react-dom": ">=16.8.0"
|
|
29
29
|
},
|