@ohif/ui-next 3.13.0-beta.9 → 3.13.0-beta.93
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/LICENSE +21 -0
- package/dist/ohif-ui-next.css +6 -6
- package/dist/ohif-ui-next.umd.js +1334 -2
- package/package.json +25 -23
- package/dist/ohif-ui-next.umd.js.LICENSE.txt +0 -66
package/package.json
CHANGED
|
@@ -1,30 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ohif/ui-next",
|
|
3
|
-
"version": "3.13.0-beta.
|
|
3
|
+
"version": "3.13.0-beta.93",
|
|
4
4
|
"description": "Next version of OHIF Viewers UI, more customizable using shadcn/ui",
|
|
5
|
+
"author": "OHIF",
|
|
6
|
+
"license": "MIT",
|
|
5
7
|
"main": "dist/ohif-ui-next.umd.js",
|
|
6
8
|
"module": "src/index.ts",
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
+
"exports": {
|
|
10
|
+
"./tailwind.config": "./tailwind.config.js",
|
|
11
|
+
"./lib/*": "./src/lib/*.ts",
|
|
12
|
+
"./components/*": "./src/components/*.tsx",
|
|
13
|
+
".": "./src/index.ts"
|
|
9
14
|
},
|
|
10
15
|
"files": [
|
|
11
16
|
"dist",
|
|
12
17
|
"README.md"
|
|
13
18
|
],
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"clean:deep": "yarn run clean && shx rm -rf node_modules",
|
|
17
|
-
"start": "yarn run build --watch",
|
|
18
|
-
"dev": "cross-env NODE_ENV=development webpack serve --config .webpack/webpack.playground.js",
|
|
19
|
-
"test": "echo \"Error: no test specified\" && exit 1",
|
|
20
|
-
"build": "cross-env NODE_ENV=production webpack --config .webpack/webpack.prod.js",
|
|
21
|
-
"build:package": "yarn run build"
|
|
22
|
-
},
|
|
23
|
-
"exports": {
|
|
24
|
-
"./tailwind.config": "./tailwind.config.ts",
|
|
25
|
-
"./lib/*": "./src/lib/*.ts",
|
|
26
|
-
"./components/*": "./src/components/*.tsx",
|
|
27
|
-
".": "./src/index.ts"
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
28
21
|
},
|
|
29
22
|
"dependencies": {
|
|
30
23
|
"@radix-ui/react-accordion": "1.2.11",
|
|
@@ -46,15 +39,16 @@
|
|
|
46
39
|
"@radix-ui/react-toggle": "1.1.9",
|
|
47
40
|
"@radix-ui/react-toggle-group": "1.1.10",
|
|
48
41
|
"@radix-ui/react-tooltip": "1.2.7",
|
|
42
|
+
"@tanstack/react-table": "8.21.3",
|
|
49
43
|
"class-variance-authority": "0.7.1",
|
|
50
44
|
"clsx": "2.1.1",
|
|
51
45
|
"cmdk": "1.1.1",
|
|
52
|
-
"date-fns": "
|
|
46
|
+
"date-fns": "4.1.0",
|
|
53
47
|
"framer-motion": "6.2.4",
|
|
54
48
|
"lucide-react": "0.379.0",
|
|
55
49
|
"next-themes": "0.3.0",
|
|
56
50
|
"react": "18.3.1",
|
|
57
|
-
"react-day-picker": "
|
|
51
|
+
"react-day-picker": "9.12.0",
|
|
58
52
|
"react-resizable-panels": "2.1.9",
|
|
59
53
|
"react-shepherd": "6.1.1",
|
|
60
54
|
"shepherd.js": "13.0.3",
|
|
@@ -64,9 +58,17 @@
|
|
|
64
58
|
"tailwindcss-animate": "1.0.7"
|
|
65
59
|
},
|
|
66
60
|
"devDependencies": {
|
|
67
|
-
"@babel/plugin-transform-private-property-in-object": "7.
|
|
61
|
+
"@babel/plugin-transform-private-property-in-object": "7.29.7",
|
|
62
|
+
"cross-env": "7.0.3"
|
|
68
63
|
},
|
|
69
64
|
"keywords": [],
|
|
70
|
-
"
|
|
71
|
-
|
|
72
|
-
|
|
65
|
+
"scripts": {
|
|
66
|
+
"clean": "shx rm -rf dist",
|
|
67
|
+
"clean:deep": "pnpm run clean && shx rm -rf node_modules",
|
|
68
|
+
"start": "pnpm run build --watch",
|
|
69
|
+
"dev": "cross-env NODE_ENV=development rspack build --config .webpack/webpack.dev.js --watch",
|
|
70
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
71
|
+
"build": "cross-env NODE_ENV=production rspack build --config .webpack/webpack.prod.js",
|
|
72
|
+
"build:package": "pnpm run build"
|
|
73
|
+
}
|
|
74
|
+
}
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
Copyright (c) 2018 Jed Watson.
|
|
3
|
-
Licensed under the MIT License (MIT), see
|
|
4
|
-
http://jedwatson.github.io/classnames
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
/*!
|
|
8
|
-
* The buffer module from node.js, for the browser.
|
|
9
|
-
*
|
|
10
|
-
* @author Feross Aboukhadijeh <http://feross.org>
|
|
11
|
-
* @license MIT
|
|
12
|
-
*/
|
|
13
|
-
|
|
14
|
-
/*!
|
|
15
|
-
* The buffer module from node.js, for the browser.
|
|
16
|
-
*
|
|
17
|
-
* @author Feross Aboukhadijeh <https://feross.org>
|
|
18
|
-
* @license MIT
|
|
19
|
-
*/
|
|
20
|
-
|
|
21
|
-
/*!
|
|
22
|
-
* validate.js 0.12.0
|
|
23
|
-
*
|
|
24
|
-
* (c) 2013-2017 Nicklas Ansman, 2013 Wrapp
|
|
25
|
-
* Validate.js may be freely distributed under the MIT license.
|
|
26
|
-
* For all details and documentation:
|
|
27
|
-
* http://validatejs.org/
|
|
28
|
-
*/
|
|
29
|
-
|
|
30
|
-
/*! dicom-parser - 1.8.12 - 2023-02-20 | (c) 2017 Chris Hafey | https://github.com/cornerstonejs/dicomParser */
|
|
31
|
-
|
|
32
|
-
/*! https://mths.be/punycode v1.4.1 by @mathias */
|
|
33
|
-
|
|
34
|
-
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
35
|
-
|
|
36
|
-
/*! shepherd.js 13.0.3 */
|
|
37
|
-
|
|
38
|
-
/**
|
|
39
|
-
* @license React
|
|
40
|
-
* react-jsx-runtime.production.min.js
|
|
41
|
-
*
|
|
42
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
43
|
-
*
|
|
44
|
-
* This source code is licensed under the MIT license found in the
|
|
45
|
-
* LICENSE file in the root directory of this source tree.
|
|
46
|
-
*/
|
|
47
|
-
|
|
48
|
-
/**
|
|
49
|
-
* @license lucide-react v0.379.0 - ISC
|
|
50
|
-
*
|
|
51
|
-
* This source code is licensed under the ISC license.
|
|
52
|
-
* See the LICENSE file in the root directory of this source tree.
|
|
53
|
-
*/
|
|
54
|
-
|
|
55
|
-
/** @license React v16.13.1
|
|
56
|
-
* react-is.production.min.js
|
|
57
|
-
*
|
|
58
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
59
|
-
*
|
|
60
|
-
* This source code is licensed under the MIT license found in the
|
|
61
|
-
* LICENSE file in the root directory of this source tree.
|
|
62
|
-
*/
|
|
63
|
-
|
|
64
|
-
//! moment.js
|
|
65
|
-
|
|
66
|
-
//! moment.js locale configuration
|