@tetrascience-npm/tetrascience-react-ui 0.4.0-beta.1.1 → 0.4.0-beta.11.1
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 +90 -5
- 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 -1411
- 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 -514
- 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 +44 -58
- package/dist/cjs/index.js +0 -1986
- 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 -1986
- 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/src/styles/README.md +0 -56
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tetrascience-npm/tetrascience-react-ui",
|
|
3
|
-
"version": "0.4.0-beta.
|
|
3
|
+
"version": "0.4.0-beta.11.1",
|
|
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",
|
|
@@ -89,35 +90,33 @@
|
|
|
89
90
|
"format:check": "prettier --check ."
|
|
90
91
|
},
|
|
91
92
|
"dependencies": {
|
|
93
|
+
"@aws-sdk/client-cloudwatch-logs": ">=3.0.0 <4.0.0",
|
|
94
|
+
"@aws-sdk/client-sqs": ">=3.0.0 <4.0.0",
|
|
95
|
+
"@aws-sdk/client-ssm": ">=3.0.0 <4.0.0",
|
|
96
|
+
"@aws-sdk/lib-storage": ">=3.0.0 <4.0.0",
|
|
92
97
|
"@dagrejs/dagre": "^1.1.4",
|
|
93
98
|
"@monaco-editor/react": "^4.7.0",
|
|
94
99
|
"@tetrascience-npm/ts-connectors-sdk": "^3.2.0",
|
|
95
100
|
"@types/plotly.js": "^3.0.0",
|
|
96
101
|
"@types/react-plotly.js": "^2.6.3",
|
|
97
102
|
"@xyflow/react": "^12.6.4",
|
|
98
|
-
"apache-arrow": "^21.1.0",
|
|
99
103
|
"axios": "^1.9.0",
|
|
100
|
-
"elkjs": "^0.10.0",
|
|
101
|
-
"immer": "^10.1.1",
|
|
102
104
|
"monaco-editor": "^0.52.2",
|
|
103
105
|
"monaco-themes": "0.4.7",
|
|
104
106
|
"plotly.js": "^3.0.1",
|
|
105
107
|
"plotly.js-dist": "^2.35.2",
|
|
106
|
-
"react": "^18.3.0",
|
|
107
|
-
"react-dom": "^18.3.0",
|
|
108
108
|
"react-markdown": "^10.1.0",
|
|
109
109
|
"react-plotly.js": "^2.6.0",
|
|
110
110
|
"react-syntax-highlighter": "^15.6.1",
|
|
111
111
|
"rehype-raw": "^7.0.0",
|
|
112
112
|
"remark-gfm": "^4.0.1",
|
|
113
|
-
"styled-components": "^6.1.18"
|
|
114
|
-
"use-immer": "^0.11.0"
|
|
113
|
+
"styled-components": "^6.1.18"
|
|
115
114
|
},
|
|
116
115
|
"peerDependencies": {
|
|
117
116
|
"@aws-sdk/client-athena": "^3.0.0",
|
|
118
117
|
"@databricks/sql": "^1.0.0",
|
|
119
|
-
"react": "^
|
|
120
|
-
"react-dom": "^
|
|
118
|
+
"react": "^19.0.0",
|
|
119
|
+
"react-dom": "^19.0.0",
|
|
121
120
|
"snowflake-sdk": "^2.0.0"
|
|
122
121
|
},
|
|
123
122
|
"peerDependenciesMeta": {
|
|
@@ -137,23 +136,21 @@
|
|
|
137
136
|
"@aws-sdk/s3-request-presigner": "^3.985.0",
|
|
138
137
|
"@databricks/sql": "^1.12.0",
|
|
139
138
|
"@eslint/js": "^9.9.0",
|
|
140
|
-
"@
|
|
141
|
-
"@
|
|
142
|
-
"@
|
|
143
|
-
"@storybook/addon-
|
|
144
|
-
"@storybook/
|
|
145
|
-
"@storybook/
|
|
146
|
-
"@storybook/react": "^10.2.8",
|
|
147
|
-
"@storybook/react-vite": "^10.2.8",
|
|
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",
|
|
148
145
|
"@types/eslint-plugin-jsx-a11y": "^6",
|
|
149
146
|
"@types/jsdom": "^27",
|
|
150
|
-
"@types/react": "^
|
|
151
|
-
"@types/react-dom": "^
|
|
147
|
+
"@types/react": "^19.0.0",
|
|
148
|
+
"@types/react-dom": "^19.0.0",
|
|
152
149
|
"@types/react-syntax-highlighter": "^15",
|
|
153
|
-
"@types/rollup-plugin-peer-deps-external": "^2",
|
|
154
150
|
"@vitejs/plugin-react": "^4.3.1",
|
|
155
151
|
"@vitest/browser": "^3",
|
|
156
152
|
"@vitest/coverage-v8": "^3",
|
|
153
|
+
"cookie-parser": "^1.4.7",
|
|
157
154
|
"eslint": "^9.9.0",
|
|
158
155
|
"eslint-plugin-import": "^2.31.0",
|
|
159
156
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
@@ -161,30 +158,25 @@
|
|
|
161
158
|
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
|
|
162
159
|
"eslint-plugin-react-refresh": "^0.4.9",
|
|
163
160
|
"eslint-plugin-sonarjs": "^3.0.7",
|
|
164
|
-
"eslint-plugin-storybook": "^10.2.
|
|
161
|
+
"eslint-plugin-storybook": "^10.2.15",
|
|
165
162
|
"eslint-plugin-unicorn": "^63.0.0",
|
|
166
163
|
"fast-xml-parser": "^5.3.4",
|
|
167
164
|
"globals": "^15.9.0",
|
|
168
165
|
"husky": "^9.1.7",
|
|
169
|
-
"jsdom": "^
|
|
166
|
+
"jsdom": "^28.1.0",
|
|
170
167
|
"lint-staged": "^15.2.0",
|
|
171
|
-
"playwright": "^1.58.
|
|
172
|
-
"pmswitch": "^1.0.8",
|
|
168
|
+
"playwright": "^1.58.2",
|
|
173
169
|
"prettier": "^3.8.1",
|
|
174
|
-
"
|
|
175
|
-
"
|
|
176
|
-
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
177
|
-
"rollup-plugin-postcss": "^4.0.2",
|
|
178
|
-
"rollup-plugin-terser": "^7.0.2",
|
|
179
|
-
"rollup-plugin-typescript2": "^0.36.0",
|
|
170
|
+
"react": "^19.0.0",
|
|
171
|
+
"react-dom": "^19.0.0",
|
|
180
172
|
"sass": "^1.89.0",
|
|
181
173
|
"snowflake-sdk": "^2.3.3",
|
|
182
|
-
"storybook": "^10.2.
|
|
174
|
+
"storybook": "^10.2.15",
|
|
183
175
|
"ts-morph": "^27.0.2",
|
|
184
|
-
"tsx": "^4.21.0",
|
|
185
176
|
"typescript": "^5.5.3",
|
|
186
177
|
"typescript-eslint": "^8.0.1",
|
|
187
|
-
"vite": "^
|
|
178
|
+
"vite": "^7.3.1",
|
|
179
|
+
"vite-plugin-dts": "^4.5.4",
|
|
188
180
|
"vitest": "^3"
|
|
189
181
|
},
|
|
190
182
|
"resolutions": {
|
|
@@ -200,12 +192,6 @@
|
|
|
200
192
|
"*.{js,jsx,ts,tsx}": "eslint --fix"
|
|
201
193
|
},
|
|
202
194
|
"packageManager": "yarn@4.12.0",
|
|
203
|
-
"workspaces": [
|
|
204
|
-
"examples/*"
|
|
205
|
-
],
|
|
206
|
-
"directories": {
|
|
207
|
-
"example": "examples"
|
|
208
|
-
},
|
|
209
195
|
"repository": {
|
|
210
196
|
"type": "git",
|
|
211
197
|
"url": "git+https://github.com/tetrascience/ts-lib-ui-kit.git"
|
|
@@ -219,4 +205,4 @@
|
|
|
219
205
|
"url": "https://github.com/tetrascience/ts-lib-ui-kit/issues"
|
|
220
206
|
},
|
|
221
207
|
"homepage": "https://github.com/tetrascience/ts-lib-ui-kit#readme"
|
|
222
|
-
}
|
|
208
|
+
}
|