@univerjs/sheets-data-validation-ui 0.4.2-nightly.202411071606 → 0.4.2-nightly.202411081606

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": "@univerjs/sheets-data-validation-ui",
3
- "version": "0.4.2-nightly.202411071606",
3
+ "version": "0.4.2-nightly.202411081606",
4
4
  "private": false,
5
5
  "description": "Data validation UI for Univer Sheets",
6
6
  "author": "DreamNum <developer@univer.ai>",
@@ -23,17 +23,20 @@
23
23
  "exports": {
24
24
  ".": {
25
25
  "import": "./lib/es/index.js",
26
+ "require": "./lib/cjs/index.js",
26
27
  "types": "./lib/types/index.d.ts"
27
28
  },
28
29
  "./*": {
29
30
  "import": "./lib/es/*",
31
+ "require": "./lib/cjs/*",
30
32
  "types": "./lib/types/index.d.ts"
31
33
  },
32
- "./lib/*": "./lib/*",
33
34
  "./locale/*": {
34
- "import": "./lib/locale/*.js",
35
+ "import": "./lib/es/locale/*.js",
36
+ "require": "./lib/cjs/locale/*.js",
35
37
  "types": "./lib/types/locale/*.d.ts"
36
- }
38
+ },
39
+ "./lib/*": "./lib/*"
37
40
  },
38
41
  "main": "./lib/es/index.js",
39
42
  "types": "./lib/types/index.d.ts",
@@ -52,23 +55,23 @@
52
55
  },
53
56
  "dependencies": {
54
57
  "@flatten-js/interval-tree": "^1.1.3",
55
- "@univerjs/icons": "^0.2.3",
58
+ "@univerjs/icons": "^0.2.5",
56
59
  "@univerjs/protocol": "0.1.39-alpha.38",
57
60
  "clsx": "^2.1.1",
58
61
  "dayjs": "^1.11.13",
59
- "@univerjs/data-validation": "0.4.2-nightly.202411071606",
60
- "@univerjs/design": "0.4.2-nightly.202411071606",
61
- "@univerjs/docs": "0.4.2-nightly.202411071606",
62
- "@univerjs/core": "0.4.2-nightly.202411071606",
63
- "@univerjs/docs-ui": "0.4.2-nightly.202411071606",
64
- "@univerjs/engine-formula": "0.4.2-nightly.202411071606",
65
- "@univerjs/engine-render": "0.4.2-nightly.202411071606",
66
- "@univerjs/sheets-formula-ui": "0.4.2-nightly.202411071606",
67
- "@univerjs/sheets-data-validation": "0.4.2-nightly.202411071606",
68
- "@univerjs/sheets-ui": "0.4.2-nightly.202411071606",
69
- "@univerjs/sheets": "0.4.2-nightly.202411071606",
70
- "@univerjs/sheets-numfmt": "0.4.2-nightly.202411071606",
71
- "@univerjs/ui": "0.4.2-nightly.202411071606"
62
+ "@univerjs/core": "0.4.2-nightly.202411081606",
63
+ "@univerjs/data-validation": "0.4.2-nightly.202411081606",
64
+ "@univerjs/docs": "0.4.2-nightly.202411081606",
65
+ "@univerjs/design": "0.4.2-nightly.202411081606",
66
+ "@univerjs/docs-ui": "0.4.2-nightly.202411081606",
67
+ "@univerjs/engine-formula": "0.4.2-nightly.202411081606",
68
+ "@univerjs/engine-render": "0.4.2-nightly.202411081606",
69
+ "@univerjs/sheets": "0.4.2-nightly.202411081606",
70
+ "@univerjs/sheets-formula-ui": "0.4.2-nightly.202411081606",
71
+ "@univerjs/sheets-data-validation": "0.4.2-nightly.202411081606",
72
+ "@univerjs/sheets-numfmt": "0.4.2-nightly.202411081606",
73
+ "@univerjs/sheets-ui": "0.4.2-nightly.202411081606",
74
+ "@univerjs/ui": "0.4.2-nightly.202411081606"
72
75
  },
73
76
  "devDependencies": {
74
77
  "less": "^4.2.0",
@@ -79,27 +82,30 @@
79
82
  "vitest": "^2.1.4",
80
83
  "@univerjs-infra/shared": "0.4.2"
81
84
  },
82
- "univerSpace": {
85
+ "space": {
83
86
  ".": {
84
87
  "import": "./lib/es/index.js",
88
+ "require": "./lib/cjs/index.js",
85
89
  "types": "./lib/types/index.d.ts"
86
90
  },
87
91
  "./*": {
88
92
  "import": "./lib/es/*",
93
+ "require": "./lib/cjs/*",
89
94
  "types": "./lib/types/index.d.ts"
90
95
  },
91
- "./lib/*": "./lib/*",
92
96
  "./locale/*": {
93
- "import": "./lib/locale/*.js",
97
+ "import": "./lib/es/locale/*.js",
98
+ "require": "./lib/cjs/locale/*.js",
94
99
  "types": "./lib/types/locale/*.d.ts"
95
- }
100
+ },
101
+ "./lib/*": "./lib/*"
96
102
  },
97
103
  "scripts": {
98
104
  "dev": "vite",
99
105
  "test": "vitest run",
100
106
  "test:watch": "vitest",
101
107
  "coverage": "vitest run --coverage",
102
- "build": "tsc && vite build",
108
+ "build": "tsx build.ts",
103
109
  "lint:types": "tsc --noEmit"
104
110
  },
105
111
  "module": "./lib/es/index.js"