pixel-react 1.11.5 → 1.11.6
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/lib/ComponentProps/TreeNodeProps.d.ts +3 -0
- package/lib/components/PopUpModal/PopUpModal.js +2 -2
- package/lib/components/PopUpModal/PopUpModal.js.map +1 -1
- package/lib/components/PopUpModal/types.d.ts +2 -0
- package/lib/index.cjs +1 -1
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +5 -0
- package/lib/index.esm.js +1 -1
- package/lib/index.esm.js.br +0 -0
- package/lib/index.esm.js.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
@@ -1950,6 +1950,9 @@ type TreeNodeProps = {
|
|
1950
1950
|
localCopyId?: string;
|
1951
1951
|
localAutomationId?: string;
|
1952
1952
|
localManualId?: string;
|
1953
|
+
cascaded?: string;
|
1954
|
+
automationId?: string;
|
1955
|
+
manualId?: string;
|
1953
1956
|
};
|
1954
1957
|
|
1955
1958
|
interface NewNode {
|
@@ -4009,6 +4012,8 @@ interface PopUpModalProps {
|
|
4009
4012
|
popupHeight?: string;
|
4010
4013
|
colorForTitleMessage?: string;
|
4011
4014
|
footerContent?: React.ReactNode;
|
4015
|
+
firstButtonDisabled?: boolean;
|
4016
|
+
secondButtonDisabled?: boolean;
|
4012
4017
|
}
|
4013
4018
|
|
4014
4019
|
declare const PopUpModal: FC<PopUpModalProps>;
|