@sdata/web-vue 3.9.0 → 3.10.0

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.
@@ -4083,6 +4083,10 @@
4083
4083
  "description": "Whether the node occupies a row",
4084
4084
  "type": "boolean"
4085
4085
  },
4086
+ "sd-tree/switcher": {
4087
+ "description": "Whether to display the expand/collapse switcher of the node. When set to `false`, the switcher node will not be rendered",
4088
+ "type": "boolean"
4089
+ },
4086
4090
  "sd-tree/default-expand-all": {
4087
4091
  "description": "Whether to expand the parent node by default",
4088
4092
  "type": "boolean"
@@ -1639,6 +1639,7 @@
1639
1639
  "node-swipe-start",
1640
1640
  "size",
1641
1641
  "block-node",
1642
+ "switcher",
1642
1643
  "default-expand-all",
1643
1644
  "multiple",
1644
1645
  "checkable",
@@ -2,7 +2,7 @@
2
2
  "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
3
3
  "framework": "vue",
4
4
  "name": "@sdata/web-vue",
5
- "version": "3.8.0",
5
+ "version": "3.9.0",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -9794,6 +9794,14 @@
9794
9794
  "kind": "expression"
9795
9795
  }
9796
9796
  },
9797
+ {
9798
+ "name": "switcher",
9799
+ "description": "Whether to display the expand/collapse switcher of the node. When set to `false`, the switcher node will not be rendered",
9800
+ "value": {
9801
+ "type": "boolean",
9802
+ "kind": "expression"
9803
+ }
9804
+ },
9797
9805
  {
9798
9806
  "name": "default-expand-all",
9799
9807
  "description": "Whether to expand the parent node by default",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sdata/web-vue",
3
- "version": "3.9.0",
3
+ "version": "3.10.0",
4
4
  "description": "SD Design Vue: A Vue.js 3 UI Library",
5
5
  "keywords": [
6
6
  "sd",
@@ -64,6 +64,7 @@
64
64
  "motion-v": "^2.3.0",
65
65
  "number-precision": "^1.6.0",
66
66
  "overlayscrollbars": "^2.16.0",
67
+ "pdfjs-dist": "^6.1.200",
67
68
  "qrcode": "^1.5.4",
68
69
  "resize-observer-polyfill": "^1.5.1",
69
70
  "scroll-into-view-if-needed": "^3.1.0",
@@ -124,6 +125,7 @@
124
125
  "dtsgen": "pnpm run build:dts",
125
126
  "pretypecheck": "pnpm run icongen",
126
127
  "typecheck": "vue-tsc --noEmit -p tsconfig.json",
128
+ "pretest": "pnpm run icongen",
127
129
  "test": "cypress run --component --browser chrome",
128
130
  "test:affected": "node ./scripts/find-affected-cypress-specs.mjs",
129
131
  "test:affected:unit": "node --test ./scripts/find-affected-cypress-specs.test.mjs",