react-better-html 1.1.169 → 1.1.171
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.mts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +2165 -2152
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2165 -2152
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -602,6 +602,11 @@ type FormProps = {
|
|
|
602
602
|
/** @default false */
|
|
603
603
|
submitButtonIsDisabled?: boolean;
|
|
604
604
|
cancelButtonText?: string;
|
|
605
|
+
cancelButtonLoaderName?: LoaderName | AnyOtherString;
|
|
606
|
+
cancelButtonIsLoading?: boolean;
|
|
607
|
+
cancelButtonId?: string;
|
|
608
|
+
/** @default false */
|
|
609
|
+
cancelButtonIsDisabled?: boolean;
|
|
605
610
|
/** @default "right" */
|
|
606
611
|
actionButtonsLocation?: "left" | "center" | "right";
|
|
607
612
|
gap?: React.CSSProperties["gap"];
|
package/dist/index.d.ts
CHANGED
|
@@ -602,6 +602,11 @@ type FormProps = {
|
|
|
602
602
|
/** @default false */
|
|
603
603
|
submitButtonIsDisabled?: boolean;
|
|
604
604
|
cancelButtonText?: string;
|
|
605
|
+
cancelButtonLoaderName?: LoaderName | AnyOtherString;
|
|
606
|
+
cancelButtonIsLoading?: boolean;
|
|
607
|
+
cancelButtonId?: string;
|
|
608
|
+
/** @default false */
|
|
609
|
+
cancelButtonIsDisabled?: boolean;
|
|
605
610
|
/** @default "right" */
|
|
606
611
|
actionButtonsLocation?: "left" | "center" | "right";
|
|
607
612
|
gap?: React.CSSProperties["gap"];
|