@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arclux/arc-ui-react",
3
- "version": "2.3.1",
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.3.1"
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
+ });
@@ -7,6 +7,7 @@ import { ArcCommandItem } from '@arclux/arc-ui/command-item';
7
7
  export interface CommandItemProps {
8
8
  shortcut?: string;
9
9
  icon?: string;
10
+ keywords?: string;
10
11
  className?: string;
11
12
  children?: React.ReactNode;
12
13
  }
@@ -74,3 +74,6 @@ export type { ProgressProps } from './Progress.js';
74
74
 
75
75
  export { Toast } from './Toast.js';
76
76
  export type { ToastProps } from './Toast.js';
77
+
78
+ export { CommandGroup } from './CommandGroup.js';
79
+ export type { CommandGroupProps } from './CommandGroup.js';
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';