aq-fe-framework 0.1.414 → 0.1.415
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.
|
@@ -262,7 +262,7 @@ function MyButtonCreateUpdate({
|
|
|
262
262
|
onClick: disclosure[1].open,
|
|
263
263
|
leftSection: /* @__PURE__ */ jsx4(IconPlus3, {})
|
|
264
264
|
}, buttonProps), {
|
|
265
|
-
children: "Th\xEAm"
|
|
265
|
+
children: (buttonProps == null ? void 0 : buttonProps.children) || "Th\xEAm"
|
|
266
266
|
})
|
|
267
267
|
),
|
|
268
268
|
/* @__PURE__ */ jsx4(
|
package/dist/core/index.d.mts
CHANGED
|
@@ -16,11 +16,11 @@ interface CoreActionIconProps extends Omit<React.ButtonHTMLAttributes<HTMLButton
|
|
|
16
16
|
}
|
|
17
17
|
declare function MyActionIcon({ children, actionType, ...rest }: CoreActionIconProps): react_jsx_runtime.JSX.Element;
|
|
18
18
|
|
|
19
|
-
interface
|
|
19
|
+
interface MyButtonProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "color" | "style">, ButtonProps {
|
|
20
20
|
actionType?: type_action;
|
|
21
21
|
children?: ReactNode;
|
|
22
22
|
}
|
|
23
|
-
declare function MyButton({ children, actionType, ...rest }:
|
|
23
|
+
declare function MyButton({ children, actionType, ...rest }: MyButtonProps): react_jsx_runtime.JSX.Element;
|
|
24
24
|
|
|
25
25
|
interface CoreButtonCreateUpdateProps<IReq, IRes> {
|
|
26
26
|
modalProps?: Omit<ModalProps, "opened" | "onClose">;
|
package/dist/core/index.mjs
CHANGED