cloudmr-ux 4.0.2 → 4.0.4
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/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +11 -6
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -24,4 +24,4 @@ export { Slider } from "./CmrComponents/gui-slider/Slider";
|
|
|
24
24
|
export { InvertibleDualSlider } from "./CmrComponents/double-slider/InvertibleDualSlider";
|
|
25
25
|
import CmrTableComponent from "./CmrTable/CmrTable";
|
|
26
26
|
export var CmrTable = CmrTableComponent;
|
|
27
|
-
|
|
27
|
+
export * from "./core";
|
package/package.json
CHANGED
|
@@ -1,18 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudmr-ux",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.4",
|
|
4
4
|
"author": "erosmontin@gmail.com",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": "erosmontin/cloudmr-ux",
|
|
7
|
-
"main": "dist/index.js",
|
|
8
|
-
"types": "dist/index.d.ts",
|
|
7
|
+
"main": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
9
|
"exports": {
|
|
10
10
|
".": {
|
|
11
11
|
"types": "./dist/index.d.ts",
|
|
12
|
-
"
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"default": "./dist/index.js",
|
|
14
|
+
"require": "./dist/index.js"
|
|
13
15
|
},
|
|
14
16
|
"./core": {
|
|
15
17
|
"types": "./dist/core/index.d.ts",
|
|
18
|
+
"import": "./dist/core/index.js",
|
|
19
|
+
"require": "./dist/core/index.js",
|
|
16
20
|
"default": "./dist/core/index.js"
|
|
17
21
|
},
|
|
18
22
|
"./core/features/authenticate/authenticateSlice": {
|
|
@@ -305,5 +309,6 @@
|
|
|
305
309
|
"sass": "^1.81.0",
|
|
306
310
|
"sass-loader": "^16.0.3",
|
|
307
311
|
"style-loader": "^4.0.0"
|
|
308
|
-
}
|
|
309
|
-
|
|
312
|
+
},
|
|
313
|
+
"module": "./dist/index.js"
|
|
314
|
+
}
|