@sebgroup/green-react 2.4.0 → 2.5.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,12 +1,12 @@
1
1
  {
2
2
  "name": "@sebgroup/green-react",
3
- "version": "2.4.0",
3
+ "version": "2.5.0",
4
4
  "peerDependencies": {
5
5
  "react": "^17 || ^18",
6
6
  "react-dom": "^17 || ^18"
7
7
  },
8
8
  "dependencies": {
9
- "@sebgroup/green-core": "^1.1.1",
9
+ "@sebgroup/green-core": "^1.2.0",
10
10
  "@sebgroup/chlorophyll": "^2.2.1",
11
11
  "@sebgroup/extract": "^2.1.0",
12
12
  "classnames": "^2.3.2"
@@ -0,0 +1,8 @@
1
+ import { GdsContextMenu, GdsMenuItem } from '@sebgroup/green-core';
2
+ export declare const ContextMenu: import("@lit/react").ReactWebComponent<GdsContextMenu, {
3
+ onMenuItemClick: string;
4
+ onUiStateChange: string;
5
+ }>;
6
+ export declare const MenuItem: import("@lit/react").ReactWebComponent<GdsMenuItem, {
7
+ onMenuItemClick: string;
8
+ }>;
@@ -38,10 +38,10 @@ export interface DropdownOption {
38
38
  selected?: boolean;
39
39
  [key: string]: any;
40
40
  }
41
- export declare const CoreDropdown: import("@lit-labs/react").ReactWebComponent<GdsDropdown<any>, {
41
+ export declare const CoreDropdown: import("@lit/react").ReactWebComponent<GdsDropdown<any>, {
42
42
  onchange: string;
43
43
  }>;
44
- export declare const CoreOption: import("@lit-labs/react").ReactWebComponent<GdsOption, {}>;
44
+ export declare const CoreOption: import("@lit/react").ReactWebComponent<GdsOption, {}>;
45
45
  export interface DropdownProps extends DropdownArgs {
46
46
  onChange?: OnChange;
47
47
  }