@natoora-libs/core 0.2.5 → 0.2.7
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.
|
@@ -1683,7 +1683,7 @@ var FilledButton = ({
|
|
|
1683
1683
|
color = "primary",
|
|
1684
1684
|
copy,
|
|
1685
1685
|
disabled = false,
|
|
1686
|
-
href
|
|
1686
|
+
href,
|
|
1687
1687
|
isLoading = false,
|
|
1688
1688
|
onClick,
|
|
1689
1689
|
type = "button",
|
|
@@ -1699,7 +1699,7 @@ var FilledButton = ({
|
|
|
1699
1699
|
}),
|
|
1700
1700
|
disabled: disabled || isLoading,
|
|
1701
1701
|
focusRipple: autoFocus,
|
|
1702
|
-
href,
|
|
1702
|
+
href: href || void 0,
|
|
1703
1703
|
onClick,
|
|
1704
1704
|
type,
|
|
1705
1705
|
variant,
|
|
@@ -2058,7 +2058,7 @@ var OutlinedButton = ({
|
|
|
2058
2058
|
color,
|
|
2059
2059
|
copy,
|
|
2060
2060
|
disabled,
|
|
2061
|
-
href
|
|
2061
|
+
href,
|
|
2062
2062
|
isLoading,
|
|
2063
2063
|
onClick,
|
|
2064
2064
|
startIcon,
|
|
@@ -2074,7 +2074,7 @@ var OutlinedButton = ({
|
|
|
2074
2074
|
[classes.loading]: isLoading
|
|
2075
2075
|
}),
|
|
2076
2076
|
disabled: disabled || isLoading,
|
|
2077
|
-
href,
|
|
2077
|
+
href: href || void 0,
|
|
2078
2078
|
onClick,
|
|
2079
2079
|
startIcon,
|
|
2080
2080
|
style,
|
|
@@ -8987,30 +8987,24 @@ var TableDesktopFooter = ({
|
|
|
8987
8987
|
borderTop: `1px solid ${colors.neutral300}`
|
|
8988
8988
|
},
|
|
8989
8989
|
children: [
|
|
8990
|
-
refetchData ? /* @__PURE__ */ (0, import_jsx_runtime134.
|
|
8990
|
+
refetchData ? /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
|
|
8991
8991
|
import_material77.Button,
|
|
8992
8992
|
{
|
|
8993
8993
|
disableRipple: true,
|
|
8994
|
-
variant: "
|
|
8994
|
+
variant: "text",
|
|
8995
8995
|
onClick: () => refetchData(),
|
|
8996
8996
|
disabled: isFetching,
|
|
8997
8997
|
sx: {
|
|
8998
8998
|
ml: 1,
|
|
8999
|
-
gap: 1
|
|
9000
|
-
borderRadius: 25,
|
|
9001
|
-
color: colors.neutral800,
|
|
9002
|
-
borderColor: colors.neutral600
|
|
8999
|
+
gap: 1
|
|
9003
9000
|
},
|
|
9004
|
-
children:
|
|
9005
|
-
|
|
9006
|
-
|
|
9007
|
-
|
|
9008
|
-
|
|
9009
|
-
|
|
9010
|
-
|
|
9011
|
-
),
|
|
9012
|
-
"REFRESH"
|
|
9013
|
-
]
|
|
9001
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
|
|
9002
|
+
import_Refresh.default,
|
|
9003
|
+
{
|
|
9004
|
+
fontSize: "small",
|
|
9005
|
+
color: isFetching ? "disabled" : "info"
|
|
9006
|
+
}
|
|
9007
|
+
)
|
|
9014
9008
|
}
|
|
9015
9009
|
) : null,
|
|
9016
9010
|
/* @__PURE__ */ (0, import_jsx_runtime134.jsxs)(import_material77.Box, { sx: { display: "flex", ml: "auto", py: 1 }, children: [
|