sag_components 2.0.0-beta194 → 2.0.0-beta196
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 +3 -1
- package/dist/index.esm.js +452 -180
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +452 -180
- package/dist/index.js.map +1 -1
- package/dist/types/components/Table/DropMenus/FilterPop.style.d.ts +2 -0
- package/dist/types/components/WeeksPicker/WeeksCalendar.d.ts +16 -6
- package/dist/types/components/WeeksPicker/WeeksPicker.d.ts +3 -1
- package/dist/types/components/WeeksPicker/WeeksPicker.stories.d.ts +33 -13
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1282,7 +1282,7 @@ declare function ModalWithOverlay(props: any): react_jsx_runtime.JSX.Element;
|
|
|
1282
1282
|
|
|
1283
1283
|
declare function DropdownNew(props: any): react_jsx_runtime.JSX.Element;
|
|
1284
1284
|
|
|
1285
|
-
declare function WeeksPicker({ label, disabled, borderColor, borderColorFocus, textColor, hoverColor, required, placeholder, borderRadius, year, width, height, withMarginBottom, onChange, selectedValue, }: {
|
|
1285
|
+
declare function WeeksPicker({ label, disabled, borderColor, borderColorFocus, textColor, hoverColor, required, placeholder, borderRadius, year, width, height, withMarginBottom, onChange, selectedValue, allowedWeekRange, restrictToRange, }: {
|
|
1286
1286
|
label: any;
|
|
1287
1287
|
disabled: any;
|
|
1288
1288
|
borderColor: any;
|
|
@@ -1298,6 +1298,8 @@ declare function WeeksPicker({ label, disabled, borderColor, borderColorFocus, t
|
|
|
1298
1298
|
withMarginBottom?: boolean;
|
|
1299
1299
|
onChange: any;
|
|
1300
1300
|
selectedValue: any;
|
|
1301
|
+
allowedWeekRange?: any;
|
|
1302
|
+
restrictToRange?: boolean;
|
|
1301
1303
|
}): react_jsx_runtime.JSX.Element;
|
|
1302
1304
|
|
|
1303
1305
|
declare function Input({ label, labelEmptyValue, size, selectedValue, placeHolder, onChange, onClick, onBlur, required, disabled, isDarkerBackground, width, height, error, errorMessage, labelColor, leftIcon, rightIcon, password, leftIconOnClick, rightIconOnClick, multiline, rows, maxLength, }: {
|