@tetrascience-npm/tetrascience-react-ui 0.4.0-beta.8.1 → 0.4.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/README.md +58 -4
- package/dist/athena.d.ts +167 -0
- package/dist/databricks.d.ts +129 -0
- package/dist/exceptions-DN25pCDi.cjs +2 -0
- package/dist/exceptions-DN25pCDi.cjs.map +1 -0
- package/dist/exceptions-jCQ6h5C8.js +33 -0
- package/dist/exceptions-jCQ6h5C8.js.map +1 -0
- package/dist/index.cjs +2021 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +2165 -1733
- package/dist/index.js +9461 -2
- package/dist/index.js.map +1 -0
- package/dist/logo.png +0 -0
- package/dist/providers/athena.cjs +2 -0
- package/dist/providers/athena.cjs.map +1 -0
- package/dist/providers/athena.d.ts +7 -77
- package/dist/providers/athena.js +160 -0
- package/dist/providers/athena.js.map +1 -0
- package/dist/providers/databricks.cjs +2 -0
- package/dist/providers/databricks.cjs.map +1 -0
- package/dist/providers/databricks.d.ts +7 -41
- package/dist/providers/databricks.js +85 -0
- package/dist/providers/databricks.js.map +1 -0
- package/dist/providers/snowflake.cjs +2 -0
- package/dist/providers/snowflake.cjs.map +1 -0
- package/dist/providers/snowflake.d.ts +7 -38
- package/dist/providers/snowflake.js +122 -0
- package/dist/providers/snowflake.js.map +1 -0
- package/dist/server.cjs +2 -0
- package/dist/server.cjs.map +1 -0
- package/dist/server.d.ts +537 -522
- package/dist/server.js +266 -0
- package/dist/server.js.map +1 -0
- package/dist/{providers/types-Ck4uFaGp.d.ts → snowflake.d.ts} +125 -82
- package/dist/vite.svg +1 -0
- package/package.json +32 -52
- package/dist/cjs/index.js +0 -2001
- package/dist/cjs/index.js.map +0 -1
- package/dist/cjs/providers/athena.js +0 -2
- package/dist/cjs/providers/athena.js.map +0 -1
- package/dist/cjs/providers/databricks.js +0 -2
- package/dist/cjs/providers/databricks.js.map +0 -1
- package/dist/cjs/providers/exceptions-CYktpdqW.js +0 -2
- package/dist/cjs/providers/exceptions-CYktpdqW.js.map +0 -1
- package/dist/cjs/providers/snowflake.js +0 -2
- package/dist/cjs/providers/snowflake.js.map +0 -1
- package/dist/cjs/server.js +0 -2
- package/dist/cjs/server.js.map +0 -1
- package/dist/esm/index.js +0 -2001
- package/dist/esm/index.js.map +0 -1
- package/dist/esm/providers/athena.js +0 -2
- package/dist/esm/providers/athena.js.map +0 -1
- package/dist/esm/providers/databricks.js +0 -2
- package/dist/esm/providers/databricks.js.map +0 -1
- package/dist/esm/providers/exceptions-C3uFWZB2.js +0 -2
- package/dist/esm/providers/exceptions-C3uFWZB2.js.map +0 -1
- package/dist/esm/providers/snowflake.js +0 -2
- package/dist/esm/providers/snowflake.js.map +0 -1
- package/dist/esm/server.js +0 -2
- package/dist/esm/server.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tetrascience-npm/tetrascience-react-ui",
|
|
3
|
-
"version": "0.4.0
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "TetraScience React UI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "TetraScience",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
|
-
"main": "dist/
|
|
9
|
-
"module": "dist/
|
|
10
|
-
"types": "dist/index.d.ts",
|
|
8
|
+
"main": "./dist/index.cjs",
|
|
9
|
+
"module": "./dist/index.js",
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
11
|
"files": [
|
|
12
12
|
"dist",
|
|
13
13
|
"LICENSE",
|
|
@@ -17,51 +17,51 @@
|
|
|
17
17
|
".": {
|
|
18
18
|
"import": {
|
|
19
19
|
"types": "./dist/index.d.ts",
|
|
20
|
-
"default": "./dist/
|
|
20
|
+
"default": "./dist/index.js"
|
|
21
21
|
},
|
|
22
22
|
"require": {
|
|
23
23
|
"types": "./dist/index.d.ts",
|
|
24
|
-
"default": "./dist/
|
|
24
|
+
"default": "./dist/index.cjs"
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
27
|
"./server": {
|
|
28
28
|
"import": {
|
|
29
29
|
"types": "./dist/server.d.ts",
|
|
30
|
-
"default": "./dist/
|
|
30
|
+
"default": "./dist/server.js"
|
|
31
31
|
},
|
|
32
32
|
"require": {
|
|
33
33
|
"types": "./dist/server.d.ts",
|
|
34
|
-
"default": "./dist/
|
|
34
|
+
"default": "./dist/server.cjs"
|
|
35
35
|
}
|
|
36
36
|
},
|
|
37
37
|
"./server/providers/athena": {
|
|
38
38
|
"import": {
|
|
39
39
|
"types": "./dist/providers/athena.d.ts",
|
|
40
|
-
"default": "./dist/
|
|
40
|
+
"default": "./dist/providers/athena.js"
|
|
41
41
|
},
|
|
42
42
|
"require": {
|
|
43
43
|
"types": "./dist/providers/athena.d.ts",
|
|
44
|
-
"default": "./dist/
|
|
44
|
+
"default": "./dist/providers/athena.cjs"
|
|
45
45
|
}
|
|
46
46
|
},
|
|
47
47
|
"./server/providers/snowflake": {
|
|
48
48
|
"import": {
|
|
49
49
|
"types": "./dist/providers/snowflake.d.ts",
|
|
50
|
-
"default": "./dist/
|
|
50
|
+
"default": "./dist/providers/snowflake.js"
|
|
51
51
|
},
|
|
52
52
|
"require": {
|
|
53
53
|
"types": "./dist/providers/snowflake.d.ts",
|
|
54
|
-
"default": "./dist/
|
|
54
|
+
"default": "./dist/providers/snowflake.cjs"
|
|
55
55
|
}
|
|
56
56
|
},
|
|
57
57
|
"./server/providers/databricks": {
|
|
58
58
|
"import": {
|
|
59
59
|
"types": "./dist/providers/databricks.d.ts",
|
|
60
|
-
"default": "./dist/
|
|
60
|
+
"default": "./dist/providers/databricks.js"
|
|
61
61
|
},
|
|
62
62
|
"require": {
|
|
63
63
|
"types": "./dist/providers/databricks.d.ts",
|
|
64
|
-
"default": "./dist/
|
|
64
|
+
"default": "./dist/providers/databricks.cjs"
|
|
65
65
|
}
|
|
66
66
|
},
|
|
67
67
|
"./index.css": "./dist/index.css",
|
|
@@ -77,11 +77,12 @@
|
|
|
77
77
|
"test:storybook:ci": "vitest run --project=storybook --reporter=junit --outputFile=test-results/storybook-junit.xml",
|
|
78
78
|
"test:all": "vitest run",
|
|
79
79
|
"test:all:coverage": "vitest run --coverage",
|
|
80
|
-
"build": "
|
|
81
|
-
"
|
|
82
|
-
"
|
|
80
|
+
"build": "vite build",
|
|
81
|
+
"dev": "yarn storybook",
|
|
82
|
+
"storybook": "storybook dev -p 6006",
|
|
83
|
+
"build-storybook": "storybook build",
|
|
83
84
|
"prepare": "husky",
|
|
84
|
-
"prepublishOnly": "
|
|
85
|
+
"prepublishOnly": "yarn run build",
|
|
85
86
|
"lint": "eslint . --max-warnings 0",
|
|
86
87
|
"lint:fix": "eslint . --fix --max-warnings 0",
|
|
87
88
|
"typecheck": "tsc --noEmit",
|
|
@@ -99,10 +100,7 @@
|
|
|
99
100
|
"@types/plotly.js": "^3.0.0",
|
|
100
101
|
"@types/react-plotly.js": "^2.6.3",
|
|
101
102
|
"@xyflow/react": "^12.6.4",
|
|
102
|
-
"apache-arrow": "^21.1.0",
|
|
103
103
|
"axios": "^1.9.0",
|
|
104
|
-
"elkjs": "^0.10.0",
|
|
105
|
-
"immer": "^10.1.1",
|
|
106
104
|
"monaco-editor": "^0.52.2",
|
|
107
105
|
"monaco-themes": "0.4.7",
|
|
108
106
|
"plotly.js": "^3.0.1",
|
|
@@ -112,8 +110,7 @@
|
|
|
112
110
|
"react-syntax-highlighter": "^15.6.1",
|
|
113
111
|
"rehype-raw": "^7.0.0",
|
|
114
112
|
"remark-gfm": "^4.0.1",
|
|
115
|
-
"styled-components": "^6.1.18"
|
|
116
|
-
"use-immer": "^0.11.0"
|
|
113
|
+
"styled-components": "^6.1.18"
|
|
117
114
|
},
|
|
118
115
|
"peerDependencies": {
|
|
119
116
|
"@aws-sdk/client-athena": "^3.0.0",
|
|
@@ -139,21 +136,17 @@
|
|
|
139
136
|
"@aws-sdk/s3-request-presigner": "^3.985.0",
|
|
140
137
|
"@databricks/sql": "^1.12.0",
|
|
141
138
|
"@eslint/js": "^9.9.0",
|
|
142
|
-
"@
|
|
143
|
-
"@
|
|
144
|
-
"@
|
|
145
|
-
"@storybook/addon-
|
|
146
|
-
"@storybook/
|
|
147
|
-
"@storybook/
|
|
148
|
-
"@storybook/react": "^10.2.10",
|
|
149
|
-
"@storybook/react-vite": "^10.2.10",
|
|
150
|
-
"@types/cookie-parser": "^1",
|
|
139
|
+
"@storybook/addon-a11y": "^10.2.15",
|
|
140
|
+
"@storybook/addon-docs": "^10.2.15",
|
|
141
|
+
"@storybook/addon-links": "^10.2.15",
|
|
142
|
+
"@storybook/addon-vitest": "^10.2.15",
|
|
143
|
+
"@storybook/builder-vite": "^10.2.15",
|
|
144
|
+
"@storybook/react-vite": "^10.2.15",
|
|
151
145
|
"@types/eslint-plugin-jsx-a11y": "^6",
|
|
152
146
|
"@types/jsdom": "^27",
|
|
153
147
|
"@types/react": "^19.0.0",
|
|
154
148
|
"@types/react-dom": "^19.0.0",
|
|
155
149
|
"@types/react-syntax-highlighter": "^15",
|
|
156
|
-
"@types/rollup-plugin-peer-deps-external": "^2",
|
|
157
150
|
"@vitejs/plugin-react": "^4.3.1",
|
|
158
151
|
"@vitest/browser": "^3",
|
|
159
152
|
"@vitest/coverage-v8": "^3",
|
|
@@ -165,32 +158,25 @@
|
|
|
165
158
|
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
|
|
166
159
|
"eslint-plugin-react-refresh": "^0.4.9",
|
|
167
160
|
"eslint-plugin-sonarjs": "^3.0.7",
|
|
168
|
-
"eslint-plugin-storybook": "^10.2.
|
|
161
|
+
"eslint-plugin-storybook": "^10.2.15",
|
|
169
162
|
"eslint-plugin-unicorn": "^63.0.0",
|
|
170
163
|
"fast-xml-parser": "^5.3.4",
|
|
171
164
|
"globals": "^15.9.0",
|
|
172
165
|
"husky": "^9.1.7",
|
|
173
|
-
"jsdom": "^
|
|
166
|
+
"jsdom": "^28.1.0",
|
|
174
167
|
"lint-staged": "^15.2.0",
|
|
175
|
-
"playwright": "^1.58.
|
|
176
|
-
"pmswitch": "^1.0.8",
|
|
168
|
+
"playwright": "^1.58.2",
|
|
177
169
|
"prettier": "^3.8.1",
|
|
178
170
|
"react": "^19.0.0",
|
|
179
171
|
"react-dom": "^19.0.0",
|
|
180
|
-
"rollup": "^4.41.0",
|
|
181
|
-
"rollup-plugin-dts": "^6.2.1",
|
|
182
|
-
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
183
|
-
"rollup-plugin-postcss": "^4.0.2",
|
|
184
|
-
"rollup-plugin-terser": "^7.0.2",
|
|
185
|
-
"rollup-plugin-typescript2": "^0.36.0",
|
|
186
172
|
"sass": "^1.89.0",
|
|
187
173
|
"snowflake-sdk": "^2.3.3",
|
|
188
|
-
"storybook": "^10.2.
|
|
174
|
+
"storybook": "^10.2.15",
|
|
189
175
|
"ts-morph": "^27.0.2",
|
|
190
|
-
"tsx": "^4.21.0",
|
|
191
176
|
"typescript": "^5.5.3",
|
|
192
177
|
"typescript-eslint": "^8.0.1",
|
|
193
|
-
"vite": "^
|
|
178
|
+
"vite": "^7.3.1",
|
|
179
|
+
"vite-plugin-dts": "^4.5.4",
|
|
194
180
|
"vitest": "^3"
|
|
195
181
|
},
|
|
196
182
|
"resolutions": {
|
|
@@ -206,12 +192,6 @@
|
|
|
206
192
|
"*.{js,jsx,ts,tsx}": "eslint --fix"
|
|
207
193
|
},
|
|
208
194
|
"packageManager": "yarn@4.12.0",
|
|
209
|
-
"workspaces": [
|
|
210
|
-
"examples/*"
|
|
211
|
-
],
|
|
212
|
-
"directories": {
|
|
213
|
-
"example": "examples"
|
|
214
|
-
},
|
|
215
195
|
"repository": {
|
|
216
196
|
"type": "git",
|
|
217
197
|
"url": "git+https://github.com/tetrascience/ts-lib-ui-kit.git"
|