@arpproject/recrate 0.1.3 → 0.1.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/README.md +5 -5
- package/dist/crate-builder/emotionCache.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/recrate.css +1896 -0
- package/dist/recrate.es.js +63295 -104099
- package/dist/recrate.umd.js +35999 -76803
- package/package.json +6 -5
- package/src/crate-builder/Shell.tsx +31 -17
- package/src/crate-builder/emotionCache.ts +8 -0
- package/src/crate-builder/recrate.css +3 -0
- package/src/index.ts +2 -0
- package/tailwind.config.js +1 -0
- package/vite.config.ts +4 -1
- package/dist/style.css +0 -1721
package/README.md
CHANGED
|
@@ -49,12 +49,12 @@ npm run storybook
|
|
|
49
49
|
|
|
50
50
|
## Development application
|
|
51
51
|
|
|
52
|
-
When you want to see the component in action as a whole, there is a small
|
|
52
|
+
When you want to see the component in action as a whole, there is a small React app in this
|
|
53
53
|
codebase. To start up the dev environment:
|
|
54
54
|
|
|
55
55
|
```
|
|
56
|
-
>
|
|
57
|
-
> npm run
|
|
56
|
+
> npm install
|
|
57
|
+
> npm run start
|
|
58
58
|
|
|
59
59
|
--> browse to localhost:9000
|
|
60
60
|
```
|
|
@@ -78,6 +78,6 @@ codebase. To start up the dev environment:
|
|
|
78
78
|
|
|
79
79
|
# Repository structure
|
|
80
80
|
|
|
81
|
-
- The development app is at `./src/app`. In there you will find the file
|
|
82
|
-
the plugin and wire it into
|
|
81
|
+
- The development app is at `./src/app`. In there you will find the file index.tsx where we import
|
|
82
|
+
the plugin and wire it into React as well as an App.tsx file where we load the component.
|
|
83
83
|
- The component is at `./src/crate-builder`.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function createScopedCache(scope: string): import('@emotion/cache').EmotionCache;
|
package/dist/index.d.ts
CHANGED