@arclux/arc-ui-react 1.7.1 → 1.8.0
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 +2 -2
- package/src/content/IconLibrary.ts +16 -0
- package/src/content/index.ts +3 -0
- package/src/index.ts +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arclux/arc-ui-react",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0",
|
|
4
4
|
"description": "React wrappers for ARC UI Web Components.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.ts",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@lit/react": "^1.0.8",
|
|
49
|
-
"@arclux/arc-ui": "1.
|
|
49
|
+
"@arclux/arc-ui": "1.8.0"
|
|
50
50
|
},
|
|
51
51
|
"license": "MIT",
|
|
52
52
|
"keywords": [
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
|
+
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { createComponent, type EventName } from '@lit/react';
|
|
5
|
+
import { ArcIconLibrary } from '@arclux/arc-ui';
|
|
6
|
+
|
|
7
|
+
export interface IconLibraryProps {
|
|
8
|
+
className?: string;
|
|
9
|
+
children?: React.ReactNode;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export const IconLibrary = createComponent({
|
|
13
|
+
tagName: 'arc-icon-library',
|
|
14
|
+
elementClass: ArcIconLibrary,
|
|
15
|
+
react: React,
|
|
16
|
+
});
|
package/src/content/index.ts
CHANGED
|
@@ -120,3 +120,6 @@ export type { ValueCardProps } from './ValueCard.js';
|
|
|
120
120
|
|
|
121
121
|
export { CtaBanner } from './CtaBanner.js';
|
|
122
122
|
export type { CtaBannerProps } from './CtaBanner.js';
|
|
123
|
+
|
|
124
|
+
export { IconLibrary } from './IconLibrary.js';
|
|
125
|
+
export type { IconLibraryProps } from './IconLibrary.js';
|
package/src/index.ts
CHANGED
|
@@ -355,3 +355,6 @@ export type { OptionProps } from './shared/Option.js';
|
|
|
355
355
|
|
|
356
356
|
export { CtaBanner } from './content/CtaBanner.js';
|
|
357
357
|
export type { CtaBannerProps } from './content/CtaBanner.js';
|
|
358
|
+
|
|
359
|
+
export { IconLibrary } from './content/IconLibrary.js';
|
|
360
|
+
export type { IconLibraryProps } from './content/IconLibrary.js';
|