wx-svelte-grid 2.1.3 → 2.1.4

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": "wx-svelte-grid",
3
- "version": "2.1.3",
3
+ "version": "2.1.4",
4
4
  "description": "A powerful and flexible DataGrid component written in Svelte",
5
5
  "productTag": "grid",
6
6
  "productTrial": false,
@@ -37,9 +37,9 @@
37
37
  "wx-lib-svelte": "0.5.1",
38
38
  "wx-svelte-menu": "2.1.1",
39
39
  "wx-svelte-core": "2.1.1",
40
- "wx-grid-data-provider": "2.1.3",
41
- "wx-grid-locales": "2.1.3",
42
- "wx-grid-store": "2.1.3"
40
+ "wx-grid-data-provider": "2.1.4",
41
+ "wx-grid-locales": "2.1.4",
42
+ "wx-grid-store": "2.1.4"
43
43
  },
44
44
  "devDependencies": {
45
45
  "wx-svelte-editor": "2.1.2",
@@ -172,7 +172,7 @@
172
172
  .wx-table-tree-toggle {
173
173
  font-size: 20px;
174
174
  cursor: pointer;
175
- margin: 0 8px 0 0;
175
+ margin: 0 4px 0 0;
176
176
  display: inline-block;
177
177
  }
178
178
 
@@ -26,7 +26,6 @@
26
26
  header = true,
27
27
  footer = false,
28
28
  dynamic = null,
29
- editor = null,
30
29
  filter = null,
31
30
  overlay = null,
32
31
  reorder = false,
@@ -127,7 +126,6 @@
127
126
  const reinitStore = () => {
128
127
  dataStore.init({
129
128
  data,
130
- editor,
131
129
  columns: finalColumns,
132
130
  split,
133
131
  sizes,
@@ -362,6 +362,9 @@
362
362
  .wx-collapsed {
363
363
  position: relative;
364
364
  }
365
+ .wx-collapse i {
366
+ margin-right: 4px;
367
+ }
365
368
 
366
369
  :global(.wx-h-row:not(:last-child)) .wx-cell:not(.wx-rowspan) {
367
370
  border-bottom: var(--wx-table-header-cell-border);
package/whatsnew.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## 2.1.4
2
+
3
+ ### Fixes
4
+
5
+ - Filters are cleared when other properties change
6
+ - Regression in paddings of collapsible columns
7
+
1
8
  ## 2.1.3
2
9
 
3
10
  ### Fixes