impaktapps-ui-builder 1.0.131-alpha.4 → 1.0.131-alpha.5
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/impaktapps-ui-builder.es.js +16 -0
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +7 -7
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +16 -0
|
@@ -6277,6 +6277,22 @@ const ComponentSchema = {
|
|
|
6277
6277
|
{ title: "Center Column", const: "action" }
|
|
6278
6278
|
]
|
|
6279
6279
|
},
|
|
6280
|
+
dateFormat: {
|
|
6281
|
+
oneOf: [
|
|
6282
|
+
{ title: "ISO DateTime (UTC)", const: "YYYY-MM-DDTHH:mm:ss.SSSZ" },
|
|
6283
|
+
{ title: "ISO DateTime", const: "YYYY-MM-DDTHH:mm:ssZ" },
|
|
6284
|
+
{ title: "ISO DateTime (Offset)", const: "YYYY-MM-DDTHH:mm:ss.SSSZZ" },
|
|
6285
|
+
{ title: "ISO Date", const: "YYYY-MM-DD" },
|
|
6286
|
+
{ title: "Date (DD-MM-YYYY)", const: "DD-MM-YYYY" },
|
|
6287
|
+
{ title: "Date (MM/DD/YYYY)", const: "MM/DD/YYYY" },
|
|
6288
|
+
{ title: "DateTime (DB)", const: "YYYY-MM-DD HH:mm:ss" },
|
|
6289
|
+
{ title: "DateTime (DB ms)", const: "YYYY-MM-DD HH:mm:ss.SSS" },
|
|
6290
|
+
{ title: "Time (24h)", const: "HH:mm:ss" },
|
|
6291
|
+
{ title: "Time (12h)", const: "hh:mm:ss A" },
|
|
6292
|
+
{ title: "Epoch (Milliseconds)", const: "epoch-ms" },
|
|
6293
|
+
{ title: "Epoch (Seconds)", const: "epoch-sec" }
|
|
6294
|
+
]
|
|
6295
|
+
},
|
|
6280
6296
|
variant: {
|
|
6281
6297
|
oneOf: [
|
|
6282
6298
|
{ title: "Outlined", const: "outlined" },
|