@arclux/arc-ui-react 2.3.1 → 2.4.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/feedback/CommandGroup.ts +17 -0
- package/src/feedback/CommandItem.ts +1 -0
- package/src/feedback/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": "2.
|
|
3
|
+
"version": "2.4.0",
|
|
4
4
|
"description": "React wrappers for ARC UI Web Components.",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@lit/react": "^1.0.8",
|
|
57
|
-
"@arclux/arc-ui": "2.
|
|
57
|
+
"@arclux/arc-ui": "2.4.0"
|
|
58
58
|
},
|
|
59
59
|
"license": "MIT",
|
|
60
60
|
"keywords": [
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// Auto-generated by @arclux/prism — do not edit manually
|
|
2
|
+
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { createComponent } from '@lit/react';
|
|
5
|
+
import { ArcCommandGroup } from '@arclux/arc-ui/command-group';
|
|
6
|
+
|
|
7
|
+
export interface CommandGroupProps {
|
|
8
|
+
heading?: string;
|
|
9
|
+
className?: string;
|
|
10
|
+
children?: React.ReactNode;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export const CommandGroup = createComponent({
|
|
14
|
+
tagName: 'arc-command-group',
|
|
15
|
+
elementClass: ArcCommandGroup,
|
|
16
|
+
react: React,
|
|
17
|
+
});
|
package/src/feedback/index.ts
CHANGED
package/src/index.ts
CHANGED
|
@@ -554,3 +554,6 @@ export type { MenubarProps } from './navigation/Menubar.js';
|
|
|
554
554
|
|
|
555
555
|
export { ToastManager } from './feedback/ToastManager.js';
|
|
556
556
|
export type { ToastManagerProps } from './feedback/ToastManager.js';
|
|
557
|
+
|
|
558
|
+
export { CommandGroup } from './feedback/CommandGroup.js';
|
|
559
|
+
export type { CommandGroupProps } from './feedback/CommandGroup.js';
|