dce-reactkit 4.3.3 → 4.3.4
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/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -423,7 +423,7 @@ function requireReactDom_production () {
|
|
|
423
423
|
reactDom_production.useFormStatus = function () {
|
|
424
424
|
return ReactSharedInternals.H.useHostTransitionStatus();
|
|
425
425
|
};
|
|
426
|
-
reactDom_production.version = "19.
|
|
426
|
+
reactDom_production.version = "19.2.1";
|
|
427
427
|
return reactDom_production;
|
|
428
428
|
}
|
|
429
429
|
|
|
@@ -851,7 +851,7 @@ function requireReactDom_development () {
|
|
|
851
851
|
reactDom_development.useFormStatus = function () {
|
|
852
852
|
return resolveDispatcher().useHostTransitionStatus();
|
|
853
853
|
};
|
|
854
|
-
reactDom_development.version = "19.
|
|
854
|
+
reactDom_development.version = "19.2.1";
|
|
855
855
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
|
856
856
|
"function" ===
|
|
857
857
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
|
@@ -2851,7 +2851,7 @@ const SimpleDateChooser = (props) => {
|
|
|
2851
2851
|
*/
|
|
2852
2852
|
const askToEditInvalidDate = () => __awaiter(void 0, void 0, void 0, function* () {
|
|
2853
2853
|
// Ask the user if they want to edit the date
|
|
2854
|
-
const confirmed = yield confirm('Are you sure?',
|
|
2854
|
+
const confirmed = yield confirm('Are you sure?', `The current date is outside the ${numMonthsToShow} month range. If you edit it, you'll need to choose a new date in the normal range.`, {
|
|
2855
2855
|
confirmButtonText: 'Edit Date',
|
|
2856
2856
|
});
|
|
2857
2857
|
// Check if user confirmed
|