@cruk/chakra-components 1.0.0-dev.1 → 1.0.0-dev.3

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -14,7 +14,7 @@ npm i @cruk/chakra-components
14
14
 
15
15
  Once added to the project, you can use the `ChakraBaseProvider` to wrap your application and provide styled based on the `crukBrand` theme.
16
16
 
17
- ```javascript
17
+ ```typescript
18
18
  import type { AppProps } from "next/app";
19
19
  import { ChakraBaseProvider, crukBrand } from "@cruk/chakra-components";
20
20
 
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@cruk/chakra-components",
3
- "version": "1.0.0-dev.1",
4
- "description": "Chakra UI based components for CRUK applications",
3
+ "version": "1.0.0-dev.3",
4
+ "description": "Chakra UI v2 based components for CRUK applications",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "sideEffects": false,
8
- "main": "./src/index.ts",
9
- "module": "./src/index.ts",
10
- "types": "./src/index.ts",
8
+ "main": "./dist/cjs/index.js",
9
+ "module": "./dist/esm/index.js",
10
+ "types": "./dist/index.d.ts",
11
11
  "src": "./src",
12
12
  "files": [
13
13
  "dist"