@netlisian/softconfig 0.0.1 → 0.0.2

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.
@@ -1905,10 +1905,6 @@ var SoftConfigProvider = ({
1905
1905
  hardConfig,
1906
1906
  softComponents,
1907
1907
  overrides,
1908
- // optional externally created store instance. When provided, use that
1909
- // instead of creating one internally. This enables:
1910
- // const store = useMemo(() => createSoftConfigStore(), []);
1911
- // <SoftConfigProvider value={store}>{children}</SoftConfigProvider>
1912
1908
  value
1913
1909
  }) => {
1914
1910
  const store = value != null ? value : (0, import_react5.useMemo)(
@@ -1856,10 +1856,6 @@ var SoftConfigProvider = ({
1856
1856
  hardConfig,
1857
1857
  softComponents,
1858
1858
  overrides,
1859
- // optional externally created store instance. When provided, use that
1860
- // instead of creating one internally. This enables:
1861
- // const store = useMemo(() => createSoftConfigStore(), []);
1862
- // <SoftConfigProvider value={store}>{children}</SoftConfigProvider>
1863
1859
  value
1864
1860
  }) => {
1865
1861
  const store = value != null ? value : useMemo2(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netlisian/softconfig",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -19,7 +19,8 @@
19
19
  "require": "./dist/puck/index.js"
20
20
  },
21
21
  "./styles.css": "./dist/index.css",
22
- "./dist/index.css": "./dist/index.css"
22
+ "./dist/index.css": "./dist/index.css",
23
+ "./puck/index.css": "./dist/puck/index.css"
23
24
  },
24
25
  "devDependencies": {
25
26
  "@size-limit/esbuild": "^11.1.6",
@@ -36,16 +37,16 @@
36
37
  "@netlisian/eslint-config": "0.0.0",
37
38
  "@netlisian/tsconfig": "0.0.0"
38
39
  },
39
- "peerDependencies": {
40
- "@measured/puck": "0.20.x",
41
- "react": ">=18.0.0 <20.3.0"
42
- },
43
40
  "dependencies": {
44
41
  "classnames": "^2.5.1",
45
42
  "lucide-react": "^0.475.0",
46
43
  "uuid": "^11.0.0",
47
44
  "zustand": "^5.0.3"
48
45
  },
46
+ "peerDependencies": {
47
+ "@measured/puck": "0.20.x",
48
+ "react": ">=18.0.0 <20.3.0"
49
+ },
49
50
  "publishConfig": {
50
51
  "access": "public"
51
52
  },