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/esm/index.js
CHANGED
|
@@ -396,7 +396,7 @@ function requireReactDom_production () {
|
|
|
396
396
|
reactDom_production.useFormStatus = function () {
|
|
397
397
|
return ReactSharedInternals.H.useHostTransitionStatus();
|
|
398
398
|
};
|
|
399
|
-
reactDom_production.version = "19.
|
|
399
|
+
reactDom_production.version = "19.2.1";
|
|
400
400
|
return reactDom_production;
|
|
401
401
|
}
|
|
402
402
|
|
|
@@ -824,7 +824,7 @@ function requireReactDom_development () {
|
|
|
824
824
|
reactDom_development.useFormStatus = function () {
|
|
825
825
|
return resolveDispatcher().useHostTransitionStatus();
|
|
826
826
|
};
|
|
827
|
-
reactDom_development.version = "19.
|
|
827
|
+
reactDom_development.version = "19.2.1";
|
|
828
828
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
|
829
829
|
"function" ===
|
|
830
830
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
|
@@ -2824,7 +2824,7 @@ const SimpleDateChooser = (props) => {
|
|
|
2824
2824
|
*/
|
|
2825
2825
|
const askToEditInvalidDate = () => __awaiter(void 0, void 0, void 0, function* () {
|
|
2826
2826
|
// Ask the user if they want to edit the date
|
|
2827
|
-
const confirmed = yield confirm('Are you sure?',
|
|
2827
|
+
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.`, {
|
|
2828
2828
|
confirmButtonText: 'Edit Date',
|
|
2829
2829
|
});
|
|
2830
2830
|
// Check if user confirmed
|