fe-center-react 0.0.1 → 0.0.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.
package/package.json
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fe-center-react",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"main": "src/components.ts",
|
|
5
|
+
"module": "src/components.ts",
|
|
6
|
+
"types": "src/components.ts",
|
|
7
|
+
"dependencies": {
|
|
8
|
+
"fe-center-core": "0.0.3"
|
|
9
|
+
},
|
|
5
10
|
"peerDependencies": {
|
|
6
|
-
"react": "^
|
|
7
|
-
"fe-center-core": "0.0.1"
|
|
11
|
+
"react": "^19.0.0"
|
|
8
12
|
}
|
|
9
13
|
}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
import type { StencilReactComponent } from '@stencil/react-output-target/runtime';
|
|
11
11
|
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
12
|
-
import { MyComponent as MyComponentElement, defineCustomElement as defineMyComponent } from "fe-center
|
|
12
|
+
import { MyComponent as MyComponentElement, defineCustomElement as defineMyComponent } from "fe-center-core/dist/components/my-component.js";
|
|
13
13
|
import React from 'react';
|
|
14
14
|
|
|
15
15
|
export type MyComponentEvents = NonNullable<unknown>;
|