@crystaldesign/widget-library 25.2.0-rc.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.
@@ -0,0 +1,11 @@
1
+ (function() {
2
+ const env = {"STAGE":"production"};
3
+ try {
4
+ if (process) {
5
+ process.env = Object.assign({}, process.env);
6
+ Object.assign(process.env, env);
7
+ return;
8
+ }
9
+ } catch (e) {} // avoid ReferenceError: process is not defined
10
+ globalThis.process = { env:env };
11
+ })();
@@ -0,0 +1,4 @@
1
+
2
+
3
+ //# sourceMappingURL=index.d.ts.map
4
+
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/index.tsx"],"names":[],"mappings":""}
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@crystaldesign/widget-library",
3
+ "version": "25.2.0-rc.1",
4
+ "license": "MIT",
5
+ "scripts": {
6
+ "storybook": "storybook dev -p 6006",
7
+ "build-storybook": "storybook build"
8
+ },
9
+ "devDependencies": {
10
+ "@storybook/addon-essentials": "7.0.2",
11
+ "@storybook/addon-interactions": "7.0.2",
12
+ "@storybook/addon-links": "7.0.2",
13
+ "@storybook/addon-styling-webpack": "^1.0.0",
14
+ "@storybook/blocks": "7.0.2",
15
+ "@storybook/react": "7.0.2",
16
+ "@storybook/react-webpack5": "7.0.2",
17
+ "@storybook/testing-library": "0.2.2",
18
+ "@testing-library/jest-dom": "^6.5.0",
19
+ "@testing-library/react": "^16.0.1",
20
+ "react": "^18.3.1",
21
+ "react-dom": "^18.3.1",
22
+ "storybook": "^7.0.2"
23
+ },
24
+ "peerDependencies": {
25
+ "react": "^18.3.1",
26
+ "react-dom": "^18.3.1"
27
+ },
28
+ "dependencies": {
29
+ "@mui/icons-material": "^6.1.5",
30
+ "@mui/material": "^6.1.5",
31
+ "@mui/styles": "^6.1.5"
32
+ },
33
+ "module": "build/esm/index.js",
34
+ "types": "./build/types/widget-library/src/index.d.ts",
35
+ "gitHead": "2646a0ab8be54edee7a6a37b3e09a93b57beb71d"
36
+ }