sag_components 2.0.0-beta111 → 2.0.0-beta113
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 -2
- package/dist/index.esm.js +163 -197
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +163 -197
- package/dist/index.js.map +1 -1
- 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 +40 -8
- package/dist/types/components/ItemManagerPanel/ItemManagerPanel.style.d.ts +1 -0
- package/dist/types/components/Table/Table.stories.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1433,7 +1433,7 @@ declare function RangePop(props: any): react_jsx_runtime.JSX.Element;
|
|
|
1433
1433
|
|
|
1434
1434
|
declare function SearchInput(props: any): react_jsx_runtime.JSX.Element;
|
|
1435
1435
|
|
|
1436
|
-
declare function ItemManagerPanel({ width, height, onSendForms, editMode, disabledSendForms, AllFormsSent, itemAndPackage, setItemAndPackage, linkColor, backgroundColor,
|
|
1436
|
+
declare function ItemManagerPanel({ width, height, onSendForms, editMode, disabledSendForms, AllFormsSent, itemAndPackage, setItemAndPackage, linkColor, backgroundColor, buttonTooltipText, }: {
|
|
1437
1437
|
width?: string;
|
|
1438
1438
|
height?: string;
|
|
1439
1439
|
onSendForms?: () => void;
|
|
@@ -1444,7 +1444,7 @@ declare function ItemManagerPanel({ width, height, onSendForms, editMode, disabl
|
|
|
1444
1444
|
setItemAndPackage: any;
|
|
1445
1445
|
linkColor?: string;
|
|
1446
1446
|
backgroundColor?: string;
|
|
1447
|
-
|
|
1447
|
+
buttonTooltipText?: string;
|
|
1448
1448
|
}): react_jsx_runtime.JSX.Element;
|
|
1449
1449
|
|
|
1450
1450
|
/**
|