wx-svelte-grid 2.1.2 → 2.1.3

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.2",
3
+ "version": "2.1.3",
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.2",
41
- "wx-grid-locales": "2.1.2",
42
- "wx-grid-store": "2.1.2"
40
+ "wx-grid-data-provider": "2.1.3",
41
+ "wx-grid-locales": "2.1.3",
42
+ "wx-grid-store": "2.1.3"
43
43
  },
44
44
  "devDependencies": {
45
45
  "wx-svelte-editor": "2.1.2",
@@ -639,9 +639,7 @@
639
639
  <div
640
640
  class="wx-grid"
641
641
  style="--header-height:{headerHeight}px; --footer-height:{footerHeight}px;--split-left-width:{leftColumns.width}px;
642
- --split-right-width:{rightColumns.width}px;width:{hasAny
643
- ? '100%'
644
- : 'fit-content'}"
642
+ --split-right-width:{rightColumns.width}px;"
645
643
  >
646
644
  <!-- svelte-ignore a11y_no_noninteractive_tabindex -->
647
645
  <!-- svelte-ignore a11y_click_events_have_key_events -->
@@ -769,8 +767,6 @@
769
767
  <style>
770
768
  .wx-grid {
771
769
  height: 100%;
772
- border: var(--wx-table-cell-border);
773
- max-width: 100%;
774
770
  }
775
771
  .wx-table-box {
776
772
  outline: none;
@@ -778,6 +774,7 @@
778
774
  display: flex;
779
775
  flex-direction: column;
780
776
  height: 100%;
777
+ border: var(--wx-table-cell-border);
781
778
  overflow: hidden;
782
779
  box-sizing: content-box;
783
780
  }
package/whatsnew.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 2.1.3
2
+
3
+ ### Fixes
4
+
5
+ - Regression with table borders
6
+
1
7
  ## 2.1.2
2
8
 
3
9
  ### Fixes