sag_components 2.0.0-beta112 → 2.0.0-beta114
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 +4 -3
- package/dist/index.esm.js +192 -159
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +192 -159
- package/dist/index.js.map +1 -1
- package/dist/types/components/Input/Input.d.ts +2 -1
- package/dist/types/components/Input/Input.stories.d.ts +53 -32
- package/dist/types/components/ItemManagerPanel/ConfirmationDialog/ConfirmationDialog.style.d.ts +2 -3
- package/dist/types/components/ItemManagerPanel/ItemManagerPanel.d.ts +2 -2
- package/dist/types/components/ItemManagerPanel/ItemManagerPanel.stories.d.ts +22 -10
- package/dist/types/components/ItemManagerPanel/ItemManagerPanel.style.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1300,7 +1300,7 @@ declare function WeeksPicker({ label, disabled, borderColor, borderColorFocus, t
|
|
|
1300
1300
|
selectedValue: any;
|
|
1301
1301
|
}): react_jsx_runtime.JSX.Element;
|
|
1302
1302
|
|
|
1303
|
-
declare function Input({ label, labelEmptyValue, size, selectedValue, placeHolder, onChange, onBlur, required, disabled, width, error, errorMessage, labelColor, leftIcon, rightIcon, password, leftIconOnClick, rightIconOnClick, }: {
|
|
1303
|
+
declare function Input({ label, labelEmptyValue, size, selectedValue, placeHolder, onChange, onBlur, required, disabled, isDarkerBackground, width, error, errorMessage, labelColor, leftIcon, rightIcon, password, leftIconOnClick, rightIconOnClick, }: {
|
|
1304
1304
|
label: any;
|
|
1305
1305
|
labelEmptyValue: any;
|
|
1306
1306
|
size: any;
|
|
@@ -1310,6 +1310,7 @@ declare function Input({ label, labelEmptyValue, size, selectedValue, placeHolde
|
|
|
1310
1310
|
onBlur: any;
|
|
1311
1311
|
required: any;
|
|
1312
1312
|
disabled: any;
|
|
1313
|
+
isDarkerBackground?: boolean;
|
|
1313
1314
|
width: any;
|
|
1314
1315
|
error: any;
|
|
1315
1316
|
errorMessage: any;
|
|
@@ -1433,7 +1434,7 @@ declare function RangePop(props: any): react_jsx_runtime.JSX.Element;
|
|
|
1433
1434
|
|
|
1434
1435
|
declare function SearchInput(props: any): react_jsx_runtime.JSX.Element;
|
|
1435
1436
|
|
|
1436
|
-
declare function ItemManagerPanel({ width, height, onSendForms, editMode, disabledSendForms, AllFormsSent, itemAndPackage, setItemAndPackage, linkColor, backgroundColor,
|
|
1437
|
+
declare function ItemManagerPanel({ width, height, onSendForms, editMode, disabledSendForms, AllFormsSent, itemAndPackage, setItemAndPackage, linkColor, backgroundColor, buttonTooltipText, }: {
|
|
1437
1438
|
width?: string;
|
|
1438
1439
|
height?: string;
|
|
1439
1440
|
onSendForms?: () => void;
|
|
@@ -1444,7 +1445,7 @@ declare function ItemManagerPanel({ width, height, onSendForms, editMode, disabl
|
|
|
1444
1445
|
setItemAndPackage: any;
|
|
1445
1446
|
linkColor?: string;
|
|
1446
1447
|
backgroundColor?: string;
|
|
1447
|
-
|
|
1448
|
+
buttonTooltipText?: string;
|
|
1448
1449
|
}): react_jsx_runtime.JSX.Element;
|
|
1449
1450
|
|
|
1450
1451
|
/**
|