@sebgroup/green-react 3.4.1 → 3.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/index.esm.js
CHANGED
|
@@ -2342,7 +2342,8 @@ const Dropdown = _a => {
|
|
|
2342
2342
|
searchFilter: searchFilterAdapter,
|
|
2343
2343
|
syncPopoverWidth: syncPopoverWidth,
|
|
2344
2344
|
size: props.size,
|
|
2345
|
-
hideLabel: props.hideLabel
|
|
2345
|
+
hideLabel: props.hideLabel,
|
|
2346
|
+
maxHeight: props.maxHeight
|
|
2346
2347
|
}, {
|
|
2347
2348
|
children: [informationLabel && jsx("span", Object.assign({
|
|
2348
2349
|
slot: "sub-label"
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sebgroup/green-react",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.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.
|
|
9
|
+
"@sebgroup/green-core": "^1.9.0",
|
|
10
10
|
"@sebgroup/chlorophyll": "^3.1.1",
|
|
11
11
|
"@sebgroup/extract": "^3.0.1",
|
|
12
12
|
"@lit/react": "^1.0.2",
|
|
@@ -12,6 +12,8 @@ export interface DatepickerOptions {
|
|
|
12
12
|
testId?: string;
|
|
13
13
|
size?: 'small' | 'medium';
|
|
14
14
|
hideLabel?: boolean;
|
|
15
|
+
disabledWeekends?: boolean;
|
|
16
|
+
disabledDates?: Date[];
|
|
15
17
|
/** @deprecated Use `value` instead */
|
|
16
18
|
selectedDate?: Date;
|
|
17
19
|
/** @deprecated Use `value` instead */
|