@affinda/react 0.0.4 → 0.0.6
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/dist/index.d.ts +1 -0
- package/dist/index.js +2 -0
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export * from './generated/components.js';
|
|
2
2
|
export * from '@affinda/wc/loader/index.js';
|
|
3
3
|
export { AfAspectRatio as AspectRatio, AfColorSwatch as ColorSwatch, AfContainer as Container, AfHeading as Heading, AfNavItem as NavItem, AfText as Text } from './generated/components.js';
|
|
4
|
+
export * from '@affinda/icons/react';
|
package/dist/index.js
CHANGED
|
@@ -3,3 +3,5 @@ export * from './generated/components.js';
|
|
|
3
3
|
export * from '@affinda/wc/loader/index.js';
|
|
4
4
|
// Re-export components without the 'Af' prefix for cleaner React usage
|
|
5
5
|
export { AfAspectRatio as AspectRatio, AfColorSwatch as ColorSwatch, AfContainer as Container, AfHeading as Heading, AfNavItem as NavItem, AfText as Text } from './generated/components.js';
|
|
6
|
+
// Re-export React icon components from icons package
|
|
7
|
+
export * from '@affinda/icons/react';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@affinda/react",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@affinda/wc": "^0.0.2",
|
|
18
|
-
"@stencil/react-output-target": "^1.2.0"
|
|
18
|
+
"@stencil/react-output-target": "^1.2.0",
|
|
19
|
+
"@affinda/icons": "0.0.2"
|
|
19
20
|
},
|
|
20
21
|
"scripts": {
|
|
21
22
|
"build": "pnpm run clean && tsc -p tsconfig.json",
|