@sebgroup/green-react 3.5.6 → 3.6.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/index.esm.js
CHANGED
|
@@ -8,7 +8,7 @@ import { registerTransitionalStyles } from '@sebgroup/green-core/transitional-st
|
|
|
8
8
|
import { GdsDropdown, GdsOption } from '@sebgroup/green-core/components/dropdown/index.js';
|
|
9
9
|
import { GdsContextMenu, GdsMenuItem, GdsMenuHeading } from '@sebgroup/green-core/components/context-menu/index.js';
|
|
10
10
|
import classNames from 'classnames';
|
|
11
|
-
import { GdsGroupedList } from '@sebgroup/green-core/components/grouped-list/index.js';
|
|
11
|
+
import { GdsGroupedList, GdsListItem } from '@sebgroup/green-core/components/grouped-list/index.js';
|
|
12
12
|
|
|
13
13
|
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
14
14
|
|
|
@@ -4648,7 +4648,7 @@ const GroupedList = createComponent({
|
|
|
4648
4648
|
});
|
|
4649
4649
|
const ListItem = createComponent({
|
|
4650
4650
|
tagName: getScopedTagName('gds-list-item'),
|
|
4651
|
-
elementClass:
|
|
4651
|
+
elementClass: GdsListItem,
|
|
4652
4652
|
react: React
|
|
4653
4653
|
});
|
|
4654
4654
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sebgroup/green-react",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.6.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.
|
|
10
|
-
"@sebgroup/chlorophyll": "^3.3.
|
|
9
|
+
"@sebgroup/green-core": "^1.20.0",
|
|
10
|
+
"@sebgroup/chlorophyll": "^3.3.6",
|
|
11
11
|
"@sebgroup/extract": "^3.0.1",
|
|
12
12
|
"@lit/react": "^1.0.2",
|
|
13
13
|
"classnames": "^2.3.2"
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { GdsFilterChips, GdsFilterChip } from '@sebgroup/green-core/components/filter-chips/index.js';
|
|
2
|
+
export declare const FilterChips: import("@lit/react").ReactWebComponent<GdsFilterChips<any>, {}>;
|
|
3
|
+
export declare const FilterChip: import("@lit/react").ReactWebComponent<GdsFilterChip<any>, {}>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { GdsGroupedList } from '@sebgroup/green-core/components/grouped-list/index.js';
|
|
1
|
+
import { GdsGroupedList, GdsListItem } from '@sebgroup/green-core/components/grouped-list/index.js';
|
|
2
2
|
export declare const GroupedList: import("@lit/react").ReactWebComponent<GdsGroupedList, {}>;
|
|
3
|
-
export declare const ListItem: import("@lit/react").ReactWebComponent<
|
|
3
|
+
export declare const ListItem: import("@lit/react").ReactWebComponent<GdsListItem, {}>;
|