sag_components 2.0.0-beta236 → 2.0.0-beta238
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/dist/index.d.ts +2 -1
- package/dist/index.esm.js +2601 -193
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2601 -193
- package/dist/index.js.map +1 -1
- package/dist/types/components/OverlayDropdown/OverlayDropdown.stories.d.ts +8 -0
- package/dist/types/components/Table/DropMenus/RangePop.style.d.ts +1 -0
- package/dist/types/components/WeeksPicker/WeeksPicker.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1284,7 +1284,7 @@ declare function ModalWithOverlay(props: any): react_jsx_runtime.JSX.Element;
|
|
|
1284
1284
|
|
|
1285
1285
|
declare function DropdownNew(props: any): react_jsx_runtime.JSX.Element;
|
|
1286
1286
|
|
|
1287
|
-
declare function WeeksPicker({ label, disabled, borderColor, borderColorFocus, textColor, hoverColor, required, placeholder, borderRadius, year, width, height, withMarginBottom, onChange, selectedValue, allowedWeekRange, restrictToRange, }: {
|
|
1287
|
+
declare function WeeksPicker({ label, disabled, borderColor, borderColorFocus, textColor, hoverColor, required, placeholder, borderRadius, year, width, height, withMarginBottom, onChange, selectedValue, isDarkerBackground, allowedWeekRange, restrictToRange, }: {
|
|
1288
1288
|
label: any;
|
|
1289
1289
|
disabled: any;
|
|
1290
1290
|
borderColor: any;
|
|
@@ -1300,6 +1300,7 @@ declare function WeeksPicker({ label, disabled, borderColor, borderColorFocus, t
|
|
|
1300
1300
|
withMarginBottom?: boolean;
|
|
1301
1301
|
onChange: any;
|
|
1302
1302
|
selectedValue: any;
|
|
1303
|
+
isDarkerBackground?: boolean;
|
|
1303
1304
|
allowedWeekRange?: any;
|
|
1304
1305
|
restrictToRange?: boolean;
|
|
1305
1306
|
}): react_jsx_runtime.JSX.Element;
|