@loadsmart/miranda-react 1.110.0-alpha.2 → 1.110.0-alpha.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/tokens.d.ts +8 -1
- package/dist/tokens.js +1 -1
- package/package.json +3 -4
package/dist/tokens.d.ts
CHANGED
|
@@ -1 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Ideally, we should be fowarding the export from miranda-wc package here, like so:
|
|
3
|
+
* export * from '@loadsmart/miranda-wc/tokens'
|
|
4
|
+
* However, during build time, the entry point `/tokens` does not exist, so the
|
|
5
|
+
* typecheck and lint fails, that's why we have kep miranda-tokens as a dep, and
|
|
6
|
+
* added its export here.
|
|
7
|
+
*/
|
|
8
|
+
export * from '@loadsmart/miranda-tokens';
|
package/dist/tokens.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from '@loadsmart/miranda-
|
|
1
|
+
export * from '@loadsmart/miranda-tokens';
|
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loadsmart/miranda-react",
|
|
3
|
-
"version": "1.110.0-alpha.
|
|
3
|
+
"version": "1.110.0-alpha.4",
|
|
4
4
|
"description": "React component library based on Miranda Web Components",
|
|
5
|
-
"type": "module",
|
|
6
5
|
"main": "dist/index.js",
|
|
7
6
|
"types": "dist/index.d.ts",
|
|
8
7
|
"files": [
|
|
@@ -13,7 +12,7 @@
|
|
|
13
12
|
"types": "./dist/index.d.ts",
|
|
14
13
|
"default": "./dist/index.js"
|
|
15
14
|
},
|
|
16
|
-
"./tokens
|
|
15
|
+
"./tokens": {
|
|
17
16
|
"types": "./dist/tokens.d.ts",
|
|
18
17
|
"default": "./dist/tokens.js"
|
|
19
18
|
},
|
|
@@ -32,7 +31,6 @@
|
|
|
32
31
|
"author": "Loadsmart",
|
|
33
32
|
"license": "UNLICENSED",
|
|
34
33
|
"devDependencies": {
|
|
35
|
-
"@loadsmart/miranda-tokens": "*",
|
|
36
34
|
"@loadsmart/miranda-utils": "*",
|
|
37
35
|
"@storybook/react": "^7.4.6",
|
|
38
36
|
"@storybook/react-webpack5": "^7.4.6",
|
|
@@ -53,6 +51,7 @@
|
|
|
53
51
|
"access": "public"
|
|
54
52
|
},
|
|
55
53
|
"dependencies": {
|
|
54
|
+
"@loadsmart/miranda-tokens": "*",
|
|
56
55
|
"@loadsmart/miranda-wc": "*",
|
|
57
56
|
"@lit/react": "^1.0.5"
|
|
58
57
|
},
|