@natoora-libs/core 0.1.20-dev-doug-1 → 0.1.20-dev-doug-2
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.
|
@@ -1409,24 +1409,25 @@ var AutocompleteFilterMenuContent = ({
|
|
|
1409
1409
|
alignItems: "center"
|
|
1410
1410
|
},
|
|
1411
1411
|
children: [
|
|
1412
|
-
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
1412
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
1413
1413
|
import_material10.Button,
|
|
1414
1414
|
{
|
|
1415
|
-
onClick: () => onApplyFiltersClick(
|
|
1415
|
+
onClick: () => onApplyFiltersClick(false),
|
|
1416
1416
|
sx: {
|
|
1417
1417
|
px: 1,
|
|
1418
1418
|
minWidth: "min-content"
|
|
1419
1419
|
},
|
|
1420
|
-
children: "
|
|
1420
|
+
children: "APPLY"
|
|
1421
1421
|
}
|
|
1422
|
-
)
|
|
1422
|
+
),
|
|
1423
1423
|
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
1424
1424
|
ExtendedButton_default,
|
|
1425
1425
|
{
|
|
1426
|
-
copy: "
|
|
1426
|
+
copy: "SAVE AS DEFAULT",
|
|
1427
1427
|
color: "primary",
|
|
1428
1428
|
buttonType: "submit",
|
|
1429
|
-
onClick: () => onApplyFiltersClick(
|
|
1429
|
+
onClick: () => onApplyFiltersClick(true),
|
|
1430
|
+
tooltip: "Persists those filters for future visits"
|
|
1430
1431
|
}
|
|
1431
1432
|
)
|
|
1432
1433
|
]
|
|
@@ -3739,24 +3740,25 @@ var CheckboxFilterMenuContent = ({
|
|
|
3739
3740
|
alignItems: "center"
|
|
3740
3741
|
},
|
|
3741
3742
|
children: [
|
|
3742
|
-
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
3743
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
3743
3744
|
import_material23.Button,
|
|
3744
3745
|
{
|
|
3745
|
-
onClick: () => onApplyFiltersClick(
|
|
3746
|
+
onClick: () => onApplyFiltersClick(false),
|
|
3746
3747
|
sx: {
|
|
3747
3748
|
px: 1,
|
|
3748
3749
|
minWidth: "min-content"
|
|
3749
3750
|
},
|
|
3750
|
-
children: "
|
|
3751
|
+
children: "APPLY"
|
|
3751
3752
|
}
|
|
3752
|
-
)
|
|
3753
|
+
),
|
|
3753
3754
|
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
3754
3755
|
ExtendedButton_default,
|
|
3755
3756
|
{
|
|
3756
|
-
copy: "
|
|
3757
|
+
copy: "SAVE AS DEFAULT",
|
|
3757
3758
|
color: "primary",
|
|
3758
3759
|
buttonType: "submit",
|
|
3759
|
-
onClick: () => onApplyFiltersClick(
|
|
3760
|
+
onClick: () => onApplyFiltersClick(true),
|
|
3761
|
+
tooltip: "Persists those filters for future visits"
|
|
3760
3762
|
}
|
|
3761
3763
|
)
|
|
3762
3764
|
]
|