@wix/ditto-codegen-public 1.0.133 → 1.0.134
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/out.js +8 -0
- package/package.json +2 -2
package/dist/out.js
CHANGED
|
@@ -118818,6 +118818,14 @@ var require_data2 = __commonJS({
|
|
|
118818
118818
|
);
|
|
118819
118819
|
}
|
|
118820
118820
|
}
|
|
118821
|
+
|
|
118822
|
+
<date_time_handling>
|
|
118823
|
+
- Date (date-only): Store as a string in "YYYY-MM-DD" format (as returned by <input type="date" />).
|
|
118824
|
+
- DateTime (date + time): Store as a Date object. Accept the YYYY-MM-DDTHH:mm format returned by <input type="datetime-local" /> and convert to a Date object using new Date().
|
|
118825
|
+
- Time (time-only): Store as a string in HH:mm or HH:mm:ss 24-hour format (as returned by <input type="time" />).
|
|
118826
|
+
- Use native JavaScript Date methods for parsing, formatting, and manipulating dates/times (e.g., new Date(), toISOString(), toLocaleString(), toLocaleDateString()).
|
|
118827
|
+
- Always validate incoming date/time values and provide graceful fallback or explicit error handling when values are invalid.
|
|
118828
|
+
</date_time_handling>
|
|
118821
118829
|
</wix_data_docs>`;
|
|
118822
118830
|
}
|
|
118823
118831
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/ditto-codegen-public",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.134",
|
|
4
4
|
"description": "AI-powered Wix CLI app generator - standalone executable",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "node build.mjs",
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"@wix/ditto-codegen": "1.0.0",
|
|
25
25
|
"esbuild": "^0.25.9"
|
|
26
26
|
},
|
|
27
|
-
"falconPackageHash": "
|
|
27
|
+
"falconPackageHash": "c08037c2ea822fc061a14fb04f0ae2359e7a007c0aa11f0b17cc8544"
|
|
28
28
|
}
|