@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.
- package/dist/sd.css +53 -5
- package/dist/sd.min.css +1 -1
- package/es/file-previewer/file-previewer.vue.d.ts +5 -1
- package/es/file-previewer/file-previewer.vue_vue_type_script_setup_true_lang.js +117 -21
- package/es/file-previewer/index.d.ts +33 -3
- package/es/file-previewer/pdfjs-worker-url.d.ts +2 -0
- package/es/file-previewer/pdfjs-worker-url.js +4 -0
- package/es/file-previewer/pdfjs-worker.min.mjs +29 -0
- package/es/file-previewer/style/index.css +53 -5
- package/es/file-previewer/style/index.scss +58 -6
- package/es/file-previewer/style/token.scss +13 -0
- package/es/file-previewer/types.d.ts +55 -1
- package/es/file-previewer/use-pdf-js.d.ts +20 -0
- package/es/file-previewer/use-pdf-js.js +197 -0
- package/es/index.css +53 -5
- package/es/index.d.ts +1 -1
- package/es/tree/base-node.vue_vue_type_script_setup_true_lang.js +17 -10
- package/es/tree/interface.d.ts +1 -0
- package/es/tree/tree.vue.d.ts +9 -0
- package/es/tree/tree.vue_vue_type_script_setup_true_lang.js +8 -0
- package/json/vetur-attributes.json +4 -0
- package/json/vetur-tags.json +1 -0
- package/json/web-types.json +9 -1
- package/package.json +3 -1
|
@@ -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"
|
package/json/vetur-tags.json
CHANGED
package/json/web-types.json
CHANGED
|
@@ -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.
|
|
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.
|
|
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",
|