@cnc-ti/layout-basic 8.0.0 → 8.1.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.
@@ -1,6 +1,6 @@
1
1
 
2
2
  
3
- > @cnc-ti/layout-basic@8.0.0 build
3
+ > @cnc-ti/layout-basic@8.1.1 build
4
4
  > tsup src/index.ts --format esm,cjs --dts --external react --minify
5
5
 
6
6
  CLI Building entry: src/index.ts
@@ -12,11 +12,11 @@
12
12
  DTS Build start
13
13
  CJS dist/index.css 19.17 KB
14
14
  CJS dist/index.js 554.76 KB
15
- CJS ⚡️ Build success in 1207ms
15
+ CJS ⚡️ Build success in 938ms
16
16
  ESM dist/index.css 19.17 KB
17
17
  ESM dist/index.mjs 552.94 KB
18
- ESM ⚡️ Build success in 1207ms
19
- DTS ⚡️ Build success in 1781ms
18
+ ESM ⚡️ Build success in 939ms
19
+ DTS ⚡️ Build success in 1549ms
20
20
  DTS dist/index.d.mts 7.92 KB
21
21
  DTS dist/index.d.ts 7.92 KB
22
22
  ⠙
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @cnc-ti/layout-basic
2
2
 
3
+ ## 8.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - update do update
8
+
9
+ ## 8.1.0
10
+
11
+ ### Minor Changes
12
+
13
+ - update do update do update do update
14
+
15
+ ## 8.1.0
16
+
17
+ ### Minor Changes
18
+
19
+ - Udpate do update do update
20
+
3
21
  ## 8.0.0
4
22
 
5
23
  ### Major Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cnc-ti/layout-basic",
3
- "version": "8.0.0",
3
+ "version": "8.1.1",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -20,7 +20,7 @@
20
20
  "class-variance-authority": "^0.7.0",
21
21
  "lucide-react": "^0.453.0",
22
22
  "postcss": "^8.4.47",
23
- "react": "^18.3.1",
23
+ "react": "^18.0.0",
24
24
  "tailwind-merge": "^2.5.4",
25
25
  "tailwindcss": "^3.4.14",
26
26
  "tsup": "^8.3.0",
@@ -29,5 +29,8 @@
29
29
  "dependencies": {
30
30
  "@radix-ui/react-accordion": "^1.2.1",
31
31
  "@radix-ui/react-slot": "^1.1.0"
32
+ },
33
+ "peerDependencies": {
34
+ "react": ">=18.0.0"
32
35
  }
33
36
  }
package/tsconfig.json CHANGED
@@ -1,4 +1,22 @@
1
1
  {
2
- "extends": "@cnc-ti/ts-config/react.json",
3
- "include": ["src"]
4
- }
2
+ "compilerOptions": {
3
+ "composite": false,
4
+ "declaration": true,
5
+ "declarationMap": true,
6
+ "esModuleInterop": true,
7
+ "forceConsistentCasingInFileNames": true,
8
+ "inlineSources": false,
9
+ "isolatedModules": true,
10
+ "moduleResolution": "node",
11
+ "noUnusedLocals": false,
12
+ "noUnusedParameters": false,
13
+ "preserveWatchOutput": true,
14
+ "skipLibCheck": true,
15
+ "strict": true,
16
+ "jsx": "react-jsx",
17
+ "jsxImportSource": "react",
18
+ "lib": ["dom", "ES2015"],
19
+ "module": "ESNext",
20
+ "target": "es6"
21
+ },
22
+ }