@sikka/hawa 0.1.88 → 0.1.90
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +3581 -2569
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +20 -9
- package/dist/index.mjs.map +1 -0
- package/package.json +1 -1
- package/src/blocks/AuthForms/ResetPasswordForm.tsx +9 -9
- package/src/elements/DropdownMenu.tsx +12 -2
- package/src/elements/HawaTable.tsx +4 -1
- package/tsup.config.js +7 -0
package/dist/index.d.mts
CHANGED
|
@@ -196,6 +196,7 @@ interface DropdownMenuProps {
|
|
|
196
196
|
align?: ExtendedDropdownMenuContentProps["align"];
|
|
197
197
|
alignOffset?: ExtendedDropdownMenuContentProps["alignOffset"];
|
|
198
198
|
width?: "default" | "sm" | "lg" | "parent";
|
|
199
|
+
selectCallback?: any;
|
|
199
200
|
}
|
|
200
201
|
declare const DropdownMenu: React$1.FC<DropdownMenuProps>;
|
|
201
202
|
|
|
@@ -230,7 +231,6 @@ type TableTypes = {
|
|
|
230
231
|
filter?: string;
|
|
231
232
|
};
|
|
232
233
|
bordersWidth?: string;
|
|
233
|
-
onActionClicked?: any;
|
|
234
234
|
headerTools?: boolean;
|
|
235
235
|
borders?: "all" | "cols" | "rows" | "outer" | "inner";
|
|
236
236
|
};
|
|
@@ -1283,7 +1283,7 @@ type ResetPasswordType = {
|
|
|
1283
1283
|
handleResetPassword: () => void;
|
|
1284
1284
|
handleRouteToSignUp: () => void;
|
|
1285
1285
|
sent: any;
|
|
1286
|
-
texts
|
|
1286
|
+
texts?: {
|
|
1287
1287
|
emailLabel: string;
|
|
1288
1288
|
emailPlaceholder: string;
|
|
1289
1289
|
emailRequiredText: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -196,6 +196,7 @@ interface DropdownMenuProps {
|
|
|
196
196
|
align?: ExtendedDropdownMenuContentProps["align"];
|
|
197
197
|
alignOffset?: ExtendedDropdownMenuContentProps["alignOffset"];
|
|
198
198
|
width?: "default" | "sm" | "lg" | "parent";
|
|
199
|
+
selectCallback?: any;
|
|
199
200
|
}
|
|
200
201
|
declare const DropdownMenu: React$1.FC<DropdownMenuProps>;
|
|
201
202
|
|
|
@@ -230,7 +231,6 @@ type TableTypes = {
|
|
|
230
231
|
filter?: string;
|
|
231
232
|
};
|
|
232
233
|
bordersWidth?: string;
|
|
233
|
-
onActionClicked?: any;
|
|
234
234
|
headerTools?: boolean;
|
|
235
235
|
borders?: "all" | "cols" | "rows" | "outer" | "inner";
|
|
236
236
|
};
|
|
@@ -1283,7 +1283,7 @@ type ResetPasswordType = {
|
|
|
1283
1283
|
handleResetPassword: () => void;
|
|
1284
1284
|
handleRouteToSignUp: () => void;
|
|
1285
1285
|
sent: any;
|
|
1286
|
-
texts
|
|
1286
|
+
texts?: {
|
|
1287
1287
|
emailLabel: string;
|
|
1288
1288
|
emailPlaceholder: string;
|
|
1289
1289
|
emailRequiredText: string;
|