@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 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 VueJS app in this
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
- > docker compose up (starts up an elastic search container for datapack lookups)
57
- > npm run develop
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 main.js where we import
82
- the plugin and wire it into Vue as well as an App.vue file where we load the component.
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
@@ -1,3 +1,4 @@
1
1
  import { DescriboCrateBuilder } from './crate-builder/Shell';
2
2
  export type { JSONObject } from './types';
3
+ export type { DescriboCrateBuilderProps } from './crate-builder/Shell';
3
4
  export { DescriboCrateBuilder };