@globalbrain/sefirot 4.35.1 → 4.35.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/config/vite.js +6 -33
- package/lib/components/STable.vue +1 -1
- package/package.json +54 -79
package/config/vite.js
CHANGED
|
@@ -41,37 +41,7 @@ export const baseConfig = {
|
|
|
41
41
|
resolve: {
|
|
42
42
|
alias: {
|
|
43
43
|
'sefirot/': lib
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
// list the client-side direct dependencies/peerDependencies which get bundled
|
|
47
|
-
dedupe: [
|
|
48
|
-
'@popperjs/core',
|
|
49
|
-
'@sentry/browser',
|
|
50
|
-
'@sentry/vue',
|
|
51
|
-
'@tanstack/vue-virtual',
|
|
52
|
-
'@tinyhttp/content-disposition',
|
|
53
|
-
'@tinyhttp/cookie',
|
|
54
|
-
'@vue/reactivity',
|
|
55
|
-
'@vuelidate/core',
|
|
56
|
-
'@vuelidate/validators',
|
|
57
|
-
'@vueuse/core',
|
|
58
|
-
'body-scroll-lock',
|
|
59
|
-
'd3',
|
|
60
|
-
'dayjs',
|
|
61
|
-
'dompurify',
|
|
62
|
-
'file-saver',
|
|
63
|
-
'fuse.js',
|
|
64
|
-
'html2canvas',
|
|
65
|
-
'lodash-es',
|
|
66
|
-
'markdown-it',
|
|
67
|
-
'normalize.css',
|
|
68
|
-
'ofetch',
|
|
69
|
-
'pinia',
|
|
70
|
-
'qs',
|
|
71
|
-
'v-calendar',
|
|
72
|
-
'vue',
|
|
73
|
-
'vue-router'
|
|
74
|
-
]
|
|
44
|
+
}
|
|
75
45
|
},
|
|
76
46
|
|
|
77
47
|
ssr: {
|
|
@@ -102,6 +72,7 @@ export const baseConfig = {
|
|
|
102
72
|
},
|
|
103
73
|
|
|
104
74
|
optimizeDeps: {
|
|
75
|
+
// @keep-sorted
|
|
105
76
|
include: [
|
|
106
77
|
...files,
|
|
107
78
|
'@globalbrain/sefirot/dompurify',
|
|
@@ -115,11 +86,13 @@ export const baseConfig = {
|
|
|
115
86
|
'markdown-it > entities',
|
|
116
87
|
'qs'
|
|
117
88
|
],
|
|
89
|
+
// @keep-sorted
|
|
118
90
|
exclude: [
|
|
119
91
|
'@vueuse/core',
|
|
120
92
|
'fuse.js',
|
|
121
93
|
'lodash-es',
|
|
122
|
-
'markdown-it'
|
|
94
|
+
'markdown-it',
|
|
95
|
+
'vue-draggable-plus'
|
|
123
96
|
]
|
|
124
97
|
}
|
|
125
98
|
}
|
|
@@ -128,6 +101,6 @@ export const baseConfig = {
|
|
|
128
101
|
* @param {import('vite').UserConfigExport} config
|
|
129
102
|
*/
|
|
130
103
|
export function defineConfig(config = {}) {
|
|
131
|
-
return async (/** @type {import(
|
|
104
|
+
return async (/** @type {import('vite').ConfigEnv} */ configEnv) =>
|
|
132
105
|
vite.mergeConfig(baseConfig, await (typeof config === 'function' ? config(configEnv) : config))
|
|
133
106
|
}
|
|
@@ -599,7 +599,6 @@ function onResizeEnd(data: { columnName: string; finalWidth: string }) {
|
|
|
599
599
|
:cell="getCell(key, item.index)"
|
|
600
600
|
:value="recordsWithSummary[item.index][key]"
|
|
601
601
|
:record="recordsWithSummary[item.index]"
|
|
602
|
-
:records="unref(options.records)!"
|
|
603
602
|
>
|
|
604
603
|
<template v-if="key === '__select' && !isSummary(item.index)">
|
|
605
604
|
<SInputCheckbox
|
|
@@ -695,6 +694,7 @@ function onResizeEnd(data: { columnName: string; finalWidth: string }) {
|
|
|
695
694
|
width: 100%;
|
|
696
695
|
min-width: 100%;
|
|
697
696
|
overflow-x: auto;
|
|
697
|
+
overscroll-behavior: none;
|
|
698
698
|
}
|
|
699
699
|
|
|
700
700
|
.container.head {
|
package/package.json
CHANGED
|
@@ -1,22 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@globalbrain/sefirot",
|
|
3
|
-
"version": "4.35.
|
|
3
|
+
"version": "4.35.3",
|
|
4
4
|
"description": "Vue Components for Global Brain Design System.",
|
|
5
5
|
"keywords": [
|
|
6
|
-
"vue",
|
|
7
|
-
"vue3",
|
|
8
6
|
"components",
|
|
9
7
|
"design-system",
|
|
8
|
+
"globalbrain",
|
|
10
9
|
"ui-library",
|
|
11
|
-
"
|
|
10
|
+
"vue",
|
|
11
|
+
"vue3"
|
|
12
12
|
],
|
|
13
13
|
"homepage": "https://sefirot.globalbrains.com/",
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"author": "Kia Ishii <ka.ishii@globalbrains.com>",
|
|
14
16
|
"repository": {
|
|
15
17
|
"type": "git",
|
|
16
18
|
"url": "git+https://github.com/globalbrain/sefirot.git"
|
|
17
19
|
},
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
+
"files": [
|
|
21
|
+
"lib",
|
|
22
|
+
"config",
|
|
23
|
+
"client.d.ts",
|
|
24
|
+
"shared.d.ts"
|
|
25
|
+
],
|
|
20
26
|
"type": "module",
|
|
21
27
|
"exports": {
|
|
22
28
|
"./client": "./client.d.ts",
|
|
@@ -30,12 +36,6 @@
|
|
|
30
36
|
},
|
|
31
37
|
"./*": "./*"
|
|
32
38
|
},
|
|
33
|
-
"files": [
|
|
34
|
-
"lib",
|
|
35
|
-
"config",
|
|
36
|
-
"client.d.ts",
|
|
37
|
-
"shared.d.ts"
|
|
38
|
-
],
|
|
39
39
|
"scripts": {
|
|
40
40
|
"docs": "pnpm docs:dev",
|
|
41
41
|
"docs:dev": "vitepress dev docs --port 4011",
|
|
@@ -55,93 +55,68 @@
|
|
|
55
55
|
"test:fail": "pnpm run type && pnpm run lint:fail && pnpm run coverage",
|
|
56
56
|
"release": "release-it"
|
|
57
57
|
},
|
|
58
|
-
"
|
|
58
|
+
"dependencies": {
|
|
59
59
|
"@iconify-json/ph": "^1.2.2",
|
|
60
|
-
"@iconify-json/ri": "^1.2.
|
|
60
|
+
"@iconify-json/ri": "^1.2.10",
|
|
61
61
|
"@popperjs/core": "^2.11.8",
|
|
62
|
+
"@sentry/browser": "^10.39.0",
|
|
63
|
+
"@sentry/vue": "^10.39.0",
|
|
64
|
+
"@tanstack/vue-virtual": "3.0.0-beta.62",
|
|
65
|
+
"@tinyhttp/content-disposition": "^2.2.4",
|
|
66
|
+
"@tinyhttp/cookie": "^2.1.1",
|
|
67
|
+
"@total-typescript/ts-reset": "^0.6.1",
|
|
62
68
|
"@types/body-scroll-lock": "^3.1.2",
|
|
69
|
+
"@types/d3": "^7.4.3",
|
|
70
|
+
"@types/file-saver": "^2.0.7",
|
|
63
71
|
"@types/lodash-es": "^4.17.12",
|
|
64
72
|
"@types/markdown-it": "^14.1.2",
|
|
65
|
-
"@
|
|
73
|
+
"@types/qs": "^6.14.0",
|
|
74
|
+
"@vitejs/plugin-vue": "^6.0.4",
|
|
75
|
+
"@vue/reactivity": "^3.5.28",
|
|
66
76
|
"@vuelidate/core": "^2.0.3",
|
|
67
77
|
"@vuelidate/validators": "^2.0.4",
|
|
68
|
-
"@vueuse/core": "^
|
|
78
|
+
"@vueuse/core": "^14.2.1",
|
|
69
79
|
"body-scroll-lock": "4.0.0-beta.0",
|
|
80
|
+
"d3": "^7.9.0",
|
|
70
81
|
"dayjs": "^1.11.19",
|
|
82
|
+
"dompurify": "^3.3.1",
|
|
83
|
+
"file-saver": "^2.0.5",
|
|
71
84
|
"fuse.js": "^7.1.0",
|
|
72
|
-
"
|
|
73
|
-
"
|
|
85
|
+
"html2canvas": "^1.4.1",
|
|
86
|
+
"jsdom": "^28.1.0",
|
|
87
|
+
"lodash-es": "^4.17.23",
|
|
88
|
+
"magic-string": "^0.30.21",
|
|
89
|
+
"markdown-it": "^14.1.1",
|
|
74
90
|
"normalize.css": "^8.0.1",
|
|
91
|
+
"ofetch": "^1.5.1",
|
|
75
92
|
"pinia": "^3.0.4",
|
|
76
93
|
"postcss": "^8.5.6",
|
|
77
94
|
"postcss-nested": "^7.0.2",
|
|
95
|
+
"punycode": "^2.3.1",
|
|
96
|
+
"qs": "^6.15.0",
|
|
97
|
+
"unplugin-icons": "^23.0.1",
|
|
78
98
|
"v-calendar": "3.0.1",
|
|
79
|
-
"
|
|
80
|
-
"vue
|
|
99
|
+
"vite": "^7.3.1",
|
|
100
|
+
"vue": "^3.5.28",
|
|
101
|
+
"vue-draggable-plus": "^0.6.1",
|
|
81
102
|
"vue-router": "^4.6.4"
|
|
82
103
|
},
|
|
83
|
-
"dependencies": {
|
|
84
|
-
"@sentry/browser": "^10.35.0",
|
|
85
|
-
"@sentry/vue": "^10.35.0",
|
|
86
|
-
"@tanstack/vue-virtual": "3.0.0-beta.62",
|
|
87
|
-
"@tinyhttp/content-disposition": "^2.2.2",
|
|
88
|
-
"@tinyhttp/cookie": "^2.1.1",
|
|
89
|
-
"@total-typescript/ts-reset": "^0.6.1",
|
|
90
|
-
"@types/d3": "^7.4.3",
|
|
91
|
-
"@types/file-saver": "^2.0.7",
|
|
92
|
-
"@types/qs": "^6.14.0",
|
|
93
|
-
"d3": "^7.9.0",
|
|
94
|
-
"dompurify": "^3.3.1",
|
|
95
|
-
"file-saver": "^2.0.5",
|
|
96
|
-
"html2canvas": "^1.4.1",
|
|
97
|
-
"jsdom": "^27.4.0",
|
|
98
|
-
"magic-string": "^0.30.21",
|
|
99
|
-
"ofetch": "^1.5.1",
|
|
100
|
-
"qs": "^6.14.1",
|
|
101
|
-
"unplugin-icons": "^23.0.1"
|
|
102
|
-
},
|
|
103
104
|
"devDependencies": {
|
|
104
|
-
"@globalbrain/eslint-config": "^
|
|
105
|
-
"@histoire/plugin-vue": "0.
|
|
106
|
-
"@
|
|
107
|
-
"@iconify-json/ri": "^1.2.7",
|
|
108
|
-
"@popperjs/core": "^2.11.8",
|
|
109
|
-
"@release-it/conventional-changelog": "^10.0.4",
|
|
110
|
-
"@types/body-scroll-lock": "^3.1.2",
|
|
105
|
+
"@globalbrain/eslint-config": "^3.0.1",
|
|
106
|
+
"@histoire/plugin-vue": "1.0.0-beta.1",
|
|
107
|
+
"@release-it/conventional-changelog": "^10.0.5",
|
|
111
108
|
"@types/jsdom": "^27.0.0",
|
|
112
|
-
"@types/
|
|
113
|
-
"@
|
|
114
|
-
"@types/node": "^25.0.9",
|
|
115
|
-
"@vitejs/plugin-vue": "^6.0.3",
|
|
116
|
-
"@vitest/coverage-v8": "^3.2.4",
|
|
117
|
-
"@vue/reactivity": "^3.5.27",
|
|
109
|
+
"@types/node": "^25.3.0",
|
|
110
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
118
111
|
"@vue/test-utils": "^2.4.6",
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
-
"dayjs": "^1.11.19",
|
|
124
|
-
"eslint": "^9.39.2",
|
|
125
|
-
"fuse.js": "^7.1.0",
|
|
126
|
-
"happy-dom": "^20.3.3",
|
|
127
|
-
"histoire": "0.16.5",
|
|
128
|
-
"lodash-es": "^4.17.22",
|
|
129
|
-
"markdown-it": "^14.1.0",
|
|
130
|
-
"normalize.css": "^8.0.1",
|
|
131
|
-
"pinia": "^3.0.4",
|
|
132
|
-
"postcss": "^8.5.6",
|
|
133
|
-
"postcss-nested": "^7.0.2",
|
|
134
|
-
"punycode": "^2.3.1",
|
|
135
|
-
"release-it": "^19.2.3",
|
|
112
|
+
"eslint": "^9.39.3",
|
|
113
|
+
"happy-dom": "^20.7.0",
|
|
114
|
+
"histoire": "1.0.0-beta.1",
|
|
115
|
+
"release-it": "^19.2.4",
|
|
136
116
|
"typescript": "~5.9.3",
|
|
137
|
-
"
|
|
138
|
-
"
|
|
139
|
-
"
|
|
140
|
-
"vitest": "^3.2.4",
|
|
141
|
-
"vue": "^3.5.27",
|
|
142
|
-
"vue-draggable-plus": "^0.6.0",
|
|
143
|
-
"vue-router": "^4.6.4",
|
|
144
|
-
"vue-tsc": "^3.2.2"
|
|
117
|
+
"vitepress": "^2.0.0-alpha.16",
|
|
118
|
+
"vitest": "^4.0.18",
|
|
119
|
+
"vue-tsc": "^3.2.5"
|
|
145
120
|
},
|
|
146
|
-
"packageManager": "pnpm@10.
|
|
121
|
+
"packageManager": "pnpm@10.30.1"
|
|
147
122
|
}
|