@lmvz-ds/components 0.35.2 → 0.36.0
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/CHANGELOG.md +10 -0
- package/assets/icons/calendar.svg +7 -0
- package/cjs/{aria-validation-controller-BC0Eaiv4.js → aria-validation-controller-Do0uEK4t.js} +1 -1
- package/cjs/{directional-focus-controller-DBat-oF7.js → directional-focus-controller-3uDoin45.js} +3 -1
- package/cjs/{element-activation-controller-BHqCUgQv.js → element-activation-controller-BWtUKzu2.js} +1 -1
- package/cjs/{element.util-CRS_YJ59.js → element.util-CctmBvUY.js} +14 -0
- package/cjs/{index-TGsVZNDP.js → index-BgvZ4y-3.js} +12 -0
- package/cjs/lmvz-action-list.cjs.entry.js +4 -4
- package/cjs/lmvz-action.cjs.entry.js +1 -1
- package/cjs/lmvz-button-group.cjs.entry.js +2 -2
- package/cjs/lmvz-button_2.cjs.entry.js +5 -5
- package/cjs/lmvz-card.cjs.entry.js +1 -1
- package/cjs/lmvz-checkbox.cjs.entry.js +2 -2
- package/cjs/lmvz-chip.cjs.entry.js +2 -2
- package/cjs/lmvz-components.cjs.js +2 -2
- package/cjs/lmvz-datepicker.cjs.entry.js +2764 -0
- package/cjs/lmvz-header_2.cjs.entry.js +6 -6
- package/cjs/{lmvz-popover.cjs.entry.js → lmvz-input_2.cjs.entry.js} +230 -11
- package/cjs/lmvz-link.cjs.entry.js +2 -2
- package/cjs/lmvz-menuitem.cjs.entry.js +5 -5
- package/cjs/lmvz-message.cjs.entry.js +2 -2
- package/cjs/lmvz-modal.cjs.entry.js +4 -4
- package/cjs/lmvz-radio.cjs.entry.js +3 -3
- package/cjs/lmvz-select.cjs.entry.js +3 -3
- package/cjs/lmvz-snackbar.cjs.entry.js +2 -2
- package/cjs/lmvz-spinner.cjs.entry.js +2 -2
- package/cjs/lmvz-tab.cjs.entry.js +2 -2
- package/cjs/lmvz-tabs.cjs.entry.js +4 -4
- package/cjs/lmvz-toggle.cjs.entry.js +4 -5
- package/cjs/loader.cjs.js +2 -2
- package/cjs/{async.util-Dnl6c82X.js → stencil.util-TjS8_DoU.js} +13 -1
- package/collection/assets/icons/calendar.svg +7 -0
- package/collection/collection-manifest.json +1 -0
- package/collection/components/lmvz-datepicker/lmvz-datepicker.css +166 -0
- package/collection/components/lmvz-datepicker/lmvz-datepicker.js +988 -0
- package/collection/components/lmvz-datepicker/lmvz-datepicker.utils.js +189 -0
- package/collection/components/lmvz-datepicker/test/lmvz-datepicker.utils.unit.js +300 -0
- package/collection/components/lmvz-header/lmvz-header.js +1 -1
- package/collection/components/lmvz-icon/lmvz-icon.js +1 -1
- package/collection/components/lmvz-input/lmvz-input.js +40 -2
- package/collection/components/lmvz-link/lmvz-link.js +1 -1
- package/collection/components/lmvz-menuitem/lmvz-menuitem.js +1 -1
- package/collection/components/lmvz-message/lmvz-message.js +1 -1
- package/collection/components/lmvz-modal/lmvz-modal.js +1 -1
- package/collection/components/lmvz-popover/lmvz-popover.js +6 -2
- package/collection/components/lmvz-radio/lmvz-radio.js +1 -1
- package/collection/components/lmvz-select/lmvz-select.js +1 -1
- package/collection/components/lmvz-snackbar/lmvz-snackbar.js +1 -1
- package/collection/components/lmvz-spinner/lmvz-spinner.js +1 -1
- package/collection/components/lmvz-tab/lmvz-tab.js +1 -1
- package/collection/components/lmvz-tabs/lmvz-tabs.js +1 -1
- package/collection/components/lmvz-toggle/lmvz-toggle.js +1 -1
- package/collection/integration/header-integration/header-integration.js +1 -1
- package/collection/utils/aria/aria.constants.js +7 -0
- package/collection/utils/aria/directional-focus-controller.js +3 -1
- package/collection/utils/element/element.util.js +5 -0
- package/components/index.d.ts +2 -0
- package/components/index.d.ts.bak +2 -0
- package/components/index.js +1 -1
- package/components/lmvz-action-list.js +1 -1
- package/components/lmvz-action.js +1 -1
- package/components/lmvz-button-group.js +1 -1
- package/components/lmvz-button.js +1 -1
- package/components/lmvz-card.js +1 -1
- package/components/lmvz-checkbox.js +1 -1
- package/components/lmvz-chip.js +1 -1
- package/components/lmvz-datepicker.d.ts +11 -0
- package/components/lmvz-datepicker.d.ts.bak +11 -0
- package/components/lmvz-datepicker.js +1 -0
- package/components/lmvz-header.js +1 -1
- package/components/lmvz-icon.js +1 -1
- package/components/lmvz-input.js +1 -1
- package/components/lmvz-link.js +1 -1
- package/components/lmvz-menuitem.js +1 -1
- package/components/lmvz-message.js +1 -1
- package/components/lmvz-modal.js +1 -1
- package/components/lmvz-popover.js +1 -1
- package/components/lmvz-radio.js +1 -1
- package/components/lmvz-select.js +1 -1
- package/components/lmvz-snackbar.js +1 -1
- package/components/lmvz-spinner.js +1 -1
- package/components/lmvz-tab.js +1 -1
- package/components/lmvz-tabs.js +1 -1
- package/components/lmvz-toggle.js +1 -1
- package/components/{p-Chj7BuUZ.js → p--FDdvoIg.js} +1 -1
- package/components/{p-CFTmV4XZ.js → p-BAj4FkUt.js} +1 -1
- package/components/{p-CxLd309t.js → p-BLMXiDE0.js} +1 -1
- package/components/{p-DGg7OzDl.js → p-BPYBmylI.js} +1 -1
- package/components/p-BhALzK62.js +1 -0
- package/components/{p-B_rnXUwq.js → p-Bnri3fEI.js} +1 -1
- package/components/p-C-pRMuMh.js +1 -0
- package/components/p-CPuI0_r_.js +1 -0
- package/components/p-CWpl0WaZ.js +1 -0
- package/components/{p-D5FL8n1q.js → p-CrQCHVKL.js} +1 -1
- package/components/p-DqdrUt_G.js +1 -0
- package/components/{p-CgK6-SEe.js → p-diOze8wI.js} +1 -1
- package/esm/{aria-validation-controller-BvOU1BO8.js → aria-validation-controller-Cp6pofER.js} +1 -1
- package/esm/{directional-focus-controller-DgAdCZrG.js → directional-focus-controller-Bhu7RqYE.js} +3 -1
- package/esm/{element-activation-controller-7PNSl6io.js → element-activation-controller-BuwyVq4A.js} +1 -1
- package/esm/{element.util-BFcYfHYq.js → element.util-Bd9JyKJZ.js} +13 -1
- package/esm/{index-BPeerEwm.js → index-BOXP1Vx0.js} +12 -1
- package/esm/lmvz-action-list.entry.js +4 -4
- package/esm/lmvz-action.entry.js +1 -1
- package/esm/lmvz-button-group.entry.js +2 -2
- package/esm/lmvz-button_2.entry.js +5 -5
- package/esm/lmvz-card.entry.js +1 -1
- package/esm/lmvz-checkbox.entry.js +2 -2
- package/esm/lmvz-chip.entry.js +2 -2
- package/esm/lmvz-components.js +3 -3
- package/esm/lmvz-datepicker.entry.js +2762 -0
- package/esm/lmvz-header_2.entry.js +6 -6
- package/esm/{lmvz-popover.entry.js → lmvz-input_2.entry.js} +227 -9
- package/esm/lmvz-link.entry.js +2 -2
- package/esm/lmvz-menuitem.entry.js +5 -5
- package/esm/lmvz-message.entry.js +2 -2
- package/esm/lmvz-modal.entry.js +4 -4
- package/esm/lmvz-radio.entry.js +3 -3
- package/esm/lmvz-select.entry.js +3 -3
- package/esm/lmvz-snackbar.entry.js +2 -2
- package/esm/lmvz-spinner.entry.js +2 -2
- package/esm/lmvz-tab.entry.js +2 -2
- package/esm/lmvz-tabs.entry.js +4 -4
- package/esm/lmvz-toggle.entry.js +4 -5
- package/esm/loader.js +3 -3
- package/esm/{async.util-DZj20TV1.js → stencil.util-C3QOYC8E.js} +13 -1
- package/hydrate/index.js +3079 -237
- package/hydrate/index.mjs +3079 -237
- package/lmvz-components/lmvz-components.esm.js +1 -1
- package/lmvz-components/{p-eb62d4af.entry.js → p-0af0211a.entry.js} +1 -1
- package/lmvz-components/{p-0c05f24b.entry.js → p-3d5867df.entry.js} +1 -1
- package/lmvz-components/{p-a887018d.entry.js → p-492adf21.entry.js} +1 -1
- package/lmvz-components/{p-24d13be6.entry.js → p-4fa6e72f.entry.js} +1 -1
- package/lmvz-components/{p-5bbbcfc0.entry.js → p-544e3ccb.entry.js} +1 -1
- package/lmvz-components/{p-eb4c5a6f.entry.js → p-63f6a596.entry.js} +1 -1
- package/lmvz-components/{p-d45164a8.entry.js → p-7a7aa922.entry.js} +1 -1
- package/lmvz-components/{p-b6dd045b.entry.js → p-8022c6dc.entry.js} +1 -1
- package/lmvz-components/{p-BPeerEwm.js → p-BOXP1Vx0.js} +2 -2
- package/lmvz-components/p-Bd9JyKJZ.js +1 -0
- package/lmvz-components/{p-D9PQIBzA.js → p-BeY96W7m.js} +1 -1
- package/lmvz-components/p-C3QOYC8E.js +1 -0
- package/lmvz-components/p-GGkwaiT6.js +1 -0
- package/lmvz-components/{p-wlMjNjuv.js → p-UhNgD4L3.js} +1 -1
- package/lmvz-components/{p-d4154a65.entry.js → p-a611c110.entry.js} +1 -1
- package/lmvz-components/{p-46edf36f.entry.js → p-b1bb4393.entry.js} +1 -1
- package/lmvz-components/p-b50b1cb5.entry.js +1 -0
- package/lmvz-components/{p-f42b16e6.entry.js → p-b932cf91.entry.js} +1 -1
- package/lmvz-components/p-bff115d4.entry.js +1 -0
- package/lmvz-components/p-d280d21a.entry.js +1 -0
- package/lmvz-components/{p-c2544495.entry.js → p-d48203f9.entry.js} +1 -1
- package/lmvz-components/{p-e4ce63b3.entry.js → p-d9aede81.entry.js} +1 -1
- package/lmvz-components/{p-ecbd9e93.entry.js → p-dbfbcb74.entry.js} +1 -1
- package/lmvz-components/{p-fbf066d9.entry.js → p-f0e28f3a.entry.js} +1 -1
- package/lmvz-components/{p-aaa7691c.entry.js → p-f853faae.entry.js} +1 -1
- package/lmvz-components/p-fa2efc42.entry.js +1 -0
- package/lmvz-components/{p-194a3af5.entry.js → p-fe6f5bdc.entry.js} +1 -1
- package/manifest.json +940 -159
- package/package.json +5 -1
- package/types/api/ds.constants.d.ts +0 -1
- package/types/api/ds.types.d.ts +8 -0
- package/types/components/lmvz-action/lmvz-action.d.ts +0 -1
- package/types/components/lmvz-action-list/lmvz-action-list.d.ts +0 -1
- package/types/components/lmvz-button/lmvz-button.d.ts +0 -1
- package/types/components/lmvz-button-group/lmvz-button-group.d.ts +0 -1
- package/types/components/lmvz-card/lmvz-card.d.ts +0 -1
- package/types/components/lmvz-checkbox/lmvz-checkbox.d.ts +0 -1
- package/types/components/lmvz-chip/lmvz-chip.d.ts +0 -1
- package/types/components/lmvz-datepicker/lmvz-datepicker.d.ts +75 -0
- package/types/components/lmvz-datepicker/lmvz-datepicker.utils.d.ts +22 -0
- package/types/components/lmvz-datepicker/test/lmvz-datepicker.utils.unit.d.ts +1 -0
- package/types/components/lmvz-header/lmvz-header.d.ts +0 -1
- package/types/components/lmvz-icon/lmvz-icon.d.ts +0 -1
- package/types/components/lmvz-input/lmvz-input.d.ts +5 -1
- package/types/components/lmvz-link/lmvz-link.d.ts +0 -1
- package/types/components/lmvz-menuitem/lmvz-menuitem.d.ts +0 -1
- package/types/components/lmvz-message/lmvz-message.d.ts +0 -1
- package/types/components/lmvz-message/public.d.ts +0 -1
- package/types/components/lmvz-modal/lmvz-modal.d.ts +0 -1
- package/types/components/lmvz-modal/test/testing.d.ts +0 -1
- package/types/components/lmvz-popover/lmvz-popover.d.ts +0 -1
- package/types/components/lmvz-radio/lmvz-radio.d.ts +0 -1
- package/types/components/lmvz-select/lmvz-select.d.ts +0 -1
- package/types/components/lmvz-snackbar/lmvz-snackbar.d.ts +0 -1
- package/types/components/lmvz-snackbar/public.d.ts +0 -1
- package/types/components/lmvz-snackbar/snackbar-controller.d.ts +0 -1
- package/types/components/lmvz-spinner/lmvz-spinner.d.ts +0 -1
- package/types/components/lmvz-tab/lmvz-tab.d.ts +0 -1
- package/types/components/lmvz-tabs/lmvz-tabs.d.ts +0 -1
- package/types/components/lmvz-toggle/lmvz-toggle.d.ts +0 -1
- package/types/components.d.ts +216 -0
- package/types/index.d.ts +0 -1
- package/types/utils/aria/aria-validation-controller.d.ts +0 -1
- package/types/utils/aria/aria.constants.d.ts +1 -1
- package/types/utils/aria/directional-focus-controller.d.ts +0 -1
- package/types/utils/aria/element-activation-controller.d.ts +0 -1
- package/types/utils/async/async.util.d.ts +1 -2
- package/types/utils/data/event.util.d.ts +0 -1
- package/types/utils/data/number.util.d.ts +0 -1
- package/types/utils/data/object.util.d.ts +0 -1
- package/types/utils/data/time.util.d.ts +0 -1
- package/types/utils/element/element.util.d.ts +1 -1
- package/types/utils/environment.d.ts +0 -1
- package/types/utils/icons/icons-registry.d.ts +0 -1
- package/types/utils/icons/icons.d.ts +0 -1
- package/types/utils/icons/icons.unit.d.ts +0 -1
- package/types/utils/icons/public.d.ts +0 -1
- package/types/utils/public.d.ts +0 -1
- package/types/utils/radio/radio-group-controller.d.ts +0 -1
- package/types/utils/stencil/assets.d.ts +0 -1
- package/types/utils/stencil/reactive-controller-host.d.ts +0 -1
- package/types/utils/stencil/stencil.util.d.ts +0 -1
- package/cjs/lmvz-input.cjs.entry.js +0 -186
- package/cjs/stencil.util-CBrPLd-F.js +0 -17
- package/components/p-DLUsBYJH.js +0 -1
- package/components/p-zMWemcoB.js +0 -1
- package/esm/lmvz-input.entry.js +0 -184
- package/esm/stencil.util-D2-5rsN3.js +0 -15
- package/lmvz-components/p-5ff55ba9.entry.js +0 -1
- package/lmvz-components/p-888e04d7.entry.js +0 -1
- package/lmvz-components/p-9dc420e2.entry.js +0 -1
- package/lmvz-components/p-BFcYfHYq.js +0 -1
- package/lmvz-components/p-BuEA0MWd.js +0 -1
- package/lmvz-components/p-DZj20TV1.js +0 -1
- package/lmvz-components/p-bh9cItsP.js +0 -1
- package/lmvz-components/p-c3e62aba.entry.js +0 -1
package/manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2026-07-
|
|
2
|
+
"timestamp": "2026-07-08T09:00:08",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "@stencil/core",
|
|
5
5
|
"version": "4.43.5",
|
|
@@ -568,12 +568,16 @@
|
|
|
568
568
|
],
|
|
569
569
|
"states": [],
|
|
570
570
|
"dependents": [
|
|
571
|
+
"lmvz-datepicker",
|
|
571
572
|
"lmvz-message",
|
|
572
573
|
"lmvz-modal",
|
|
573
574
|
"lmvz-snackbar"
|
|
574
575
|
],
|
|
575
576
|
"dependencies": [],
|
|
576
577
|
"dependencyGraph": {
|
|
578
|
+
"lmvz-datepicker": [
|
|
579
|
+
"lmvz-button"
|
|
580
|
+
],
|
|
577
581
|
"lmvz-message": [
|
|
578
582
|
"lmvz-button"
|
|
579
583
|
],
|
|
@@ -1185,29 +1189,775 @@
|
|
|
1185
1189
|
},
|
|
1186
1190
|
"signature": "checkValidity() => Promise<boolean>",
|
|
1187
1191
|
"parameters": [],
|
|
1188
|
-
"docs": "Returns whether the checkbox satisfies its validation constraints.",
|
|
1189
|
-
"docsTags": []
|
|
1190
|
-
},
|
|
1191
|
-
{
|
|
1192
|
-
"name": "focusInput",
|
|
1193
|
-
"returns": {
|
|
1194
|
-
"type": "Promise<void>",
|
|
1195
|
-
"docs": ""
|
|
1196
|
-
},
|
|
1197
|
-
"complexType": {
|
|
1198
|
-
"signature": "() => Promise<void>",
|
|
1199
|
-
"parameters": [],
|
|
1200
|
-
"references": {
|
|
1201
|
-
"Promise": {
|
|
1202
|
-
"location": "global",
|
|
1203
|
-
"id": "global::Promise"
|
|
1204
|
-
}
|
|
1205
|
-
},
|
|
1206
|
-
"return": "Promise<void>"
|
|
1207
|
-
},
|
|
1208
|
-
"signature": "focusInput() => Promise<void>",
|
|
1209
|
-
"parameters": [],
|
|
1210
|
-
"docs": "Sets focus on the native checkbox input.",
|
|
1192
|
+
"docs": "Returns whether the checkbox satisfies its validation constraints.",
|
|
1193
|
+
"docsTags": []
|
|
1194
|
+
},
|
|
1195
|
+
{
|
|
1196
|
+
"name": "focusInput",
|
|
1197
|
+
"returns": {
|
|
1198
|
+
"type": "Promise<void>",
|
|
1199
|
+
"docs": ""
|
|
1200
|
+
},
|
|
1201
|
+
"complexType": {
|
|
1202
|
+
"signature": "() => Promise<void>",
|
|
1203
|
+
"parameters": [],
|
|
1204
|
+
"references": {
|
|
1205
|
+
"Promise": {
|
|
1206
|
+
"location": "global",
|
|
1207
|
+
"id": "global::Promise"
|
|
1208
|
+
}
|
|
1209
|
+
},
|
|
1210
|
+
"return": "Promise<void>"
|
|
1211
|
+
},
|
|
1212
|
+
"signature": "focusInput() => Promise<void>",
|
|
1213
|
+
"parameters": [],
|
|
1214
|
+
"docs": "Sets focus on the native checkbox input.",
|
|
1215
|
+
"docsTags": []
|
|
1216
|
+
},
|
|
1217
|
+
{
|
|
1218
|
+
"name": "reportValidity",
|
|
1219
|
+
"returns": {
|
|
1220
|
+
"type": "Promise<boolean>",
|
|
1221
|
+
"docs": ""
|
|
1222
|
+
},
|
|
1223
|
+
"complexType": {
|
|
1224
|
+
"signature": "() => Promise<boolean>",
|
|
1225
|
+
"parameters": [],
|
|
1226
|
+
"references": {
|
|
1227
|
+
"Promise": {
|
|
1228
|
+
"location": "global",
|
|
1229
|
+
"id": "global::Promise"
|
|
1230
|
+
}
|
|
1231
|
+
},
|
|
1232
|
+
"return": "Promise<boolean>"
|
|
1233
|
+
},
|
|
1234
|
+
"signature": "reportValidity() => Promise<boolean>",
|
|
1235
|
+
"parameters": [],
|
|
1236
|
+
"docs": "Reports validation errors to the user.",
|
|
1237
|
+
"docsTags": []
|
|
1238
|
+
}
|
|
1239
|
+
],
|
|
1240
|
+
"events": [
|
|
1241
|
+
{
|
|
1242
|
+
"event": "lmvzChange",
|
|
1243
|
+
"detail": "boolean",
|
|
1244
|
+
"bubbles": true,
|
|
1245
|
+
"complexType": {
|
|
1246
|
+
"original": "boolean",
|
|
1247
|
+
"resolved": "boolean",
|
|
1248
|
+
"references": {}
|
|
1249
|
+
},
|
|
1250
|
+
"cancelable": true,
|
|
1251
|
+
"composed": true,
|
|
1252
|
+
"docs": "Emitted whenever the checkbox checked state changes.\nEvent detail contains the new checked boolean value.",
|
|
1253
|
+
"docsTags": []
|
|
1254
|
+
}
|
|
1255
|
+
],
|
|
1256
|
+
"listeners": [],
|
|
1257
|
+
"styles": [],
|
|
1258
|
+
"slots": [],
|
|
1259
|
+
"parts": [],
|
|
1260
|
+
"states": [],
|
|
1261
|
+
"dependents": [],
|
|
1262
|
+
"dependencies": [],
|
|
1263
|
+
"dependencyGraph": {}
|
|
1264
|
+
},
|
|
1265
|
+
{
|
|
1266
|
+
"filePath": "src/components/lmvz-chip/lmvz-chip.tsx",
|
|
1267
|
+
"encapsulation": "shadow",
|
|
1268
|
+
"tag": "lmvz-chip",
|
|
1269
|
+
"readme": "# lmvz-chip\n\n\n",
|
|
1270
|
+
"docs": "The chip displays a compact semantic status as a non-interactive UI element.",
|
|
1271
|
+
"docsTags": [
|
|
1272
|
+
{
|
|
1273
|
+
"name": "slot",
|
|
1274
|
+
"text": "default - Arbitrary inline content used as the chip label. Icons passed here may not be aligned or spaced with the text content properly."
|
|
1275
|
+
},
|
|
1276
|
+
{
|
|
1277
|
+
"name": "slot",
|
|
1278
|
+
"text": "before-text - Optional slot for content to be placed before the text content. Common use case is an icon."
|
|
1279
|
+
},
|
|
1280
|
+
{
|
|
1281
|
+
"name": "slot",
|
|
1282
|
+
"text": "after-text - Optional slot for content to be placed after the text content. Common use case is an icon.\n\nSlotted `lmvz-icon`s are controlled by the chip's internal sizing."
|
|
1283
|
+
}
|
|
1284
|
+
],
|
|
1285
|
+
"usage": {},
|
|
1286
|
+
"props": [
|
|
1287
|
+
{
|
|
1288
|
+
"name": "size",
|
|
1289
|
+
"type": "\"default\" | \"small\"",
|
|
1290
|
+
"complexType": {
|
|
1291
|
+
"original": "Chip.Size",
|
|
1292
|
+
"resolved": "\"default\" | \"small\"",
|
|
1293
|
+
"references": {
|
|
1294
|
+
"Chip": {
|
|
1295
|
+
"location": "import",
|
|
1296
|
+
"path": "../../api/ds.types.js",
|
|
1297
|
+
"id": "src/api/ds.types.d.ts::Chip",
|
|
1298
|
+
"referenceLocation": "Chip"
|
|
1299
|
+
}
|
|
1300
|
+
}
|
|
1301
|
+
},
|
|
1302
|
+
"mutable": true,
|
|
1303
|
+
"attr": "size",
|
|
1304
|
+
"reflectToAttr": true,
|
|
1305
|
+
"docs": "Size variant of the chip.\nInvalid values are normalized to `default` at runtime.",
|
|
1306
|
+
"docsTags": [
|
|
1307
|
+
{
|
|
1308
|
+
"name": "default",
|
|
1309
|
+
"text": "'default'"
|
|
1310
|
+
}
|
|
1311
|
+
],
|
|
1312
|
+
"default": "'default'",
|
|
1313
|
+
"values": [
|
|
1314
|
+
{
|
|
1315
|
+
"value": "default",
|
|
1316
|
+
"type": "string"
|
|
1317
|
+
},
|
|
1318
|
+
{
|
|
1319
|
+
"value": "small",
|
|
1320
|
+
"type": "string"
|
|
1321
|
+
}
|
|
1322
|
+
],
|
|
1323
|
+
"optional": false,
|
|
1324
|
+
"required": false,
|
|
1325
|
+
"getter": false,
|
|
1326
|
+
"setter": false
|
|
1327
|
+
},
|
|
1328
|
+
{
|
|
1329
|
+
"name": "type",
|
|
1330
|
+
"type": "\"active\" | \"error\" | \"neutral\" | \"success\" | \"warning\"",
|
|
1331
|
+
"complexType": {
|
|
1332
|
+
"original": "Chip.Type",
|
|
1333
|
+
"resolved": "\"active\" | \"error\" | \"neutral\" | \"success\" | \"warning\"",
|
|
1334
|
+
"references": {
|
|
1335
|
+
"Chip": {
|
|
1336
|
+
"location": "import",
|
|
1337
|
+
"path": "../../api/ds.types.js",
|
|
1338
|
+
"id": "src/api/ds.types.d.ts::Chip",
|
|
1339
|
+
"referenceLocation": "Chip"
|
|
1340
|
+
}
|
|
1341
|
+
}
|
|
1342
|
+
},
|
|
1343
|
+
"mutable": true,
|
|
1344
|
+
"attr": "type",
|
|
1345
|
+
"reflectToAttr": true,
|
|
1346
|
+
"docs": "Semantic variant of the chip.\nInvalid values are normalized to `active` at runtime.",
|
|
1347
|
+
"docsTags": [
|
|
1348
|
+
{
|
|
1349
|
+
"name": "default",
|
|
1350
|
+
"text": "'active'"
|
|
1351
|
+
}
|
|
1352
|
+
],
|
|
1353
|
+
"default": "'active'",
|
|
1354
|
+
"values": [
|
|
1355
|
+
{
|
|
1356
|
+
"value": "active",
|
|
1357
|
+
"type": "string"
|
|
1358
|
+
},
|
|
1359
|
+
{
|
|
1360
|
+
"value": "error",
|
|
1361
|
+
"type": "string"
|
|
1362
|
+
},
|
|
1363
|
+
{
|
|
1364
|
+
"value": "neutral",
|
|
1365
|
+
"type": "string"
|
|
1366
|
+
},
|
|
1367
|
+
{
|
|
1368
|
+
"value": "success",
|
|
1369
|
+
"type": "string"
|
|
1370
|
+
},
|
|
1371
|
+
{
|
|
1372
|
+
"value": "warning",
|
|
1373
|
+
"type": "string"
|
|
1374
|
+
}
|
|
1375
|
+
],
|
|
1376
|
+
"optional": false,
|
|
1377
|
+
"required": false,
|
|
1378
|
+
"getter": false,
|
|
1379
|
+
"setter": false
|
|
1380
|
+
}
|
|
1381
|
+
],
|
|
1382
|
+
"methods": [],
|
|
1383
|
+
"events": [],
|
|
1384
|
+
"listeners": [],
|
|
1385
|
+
"styles": [],
|
|
1386
|
+
"slots": [
|
|
1387
|
+
{
|
|
1388
|
+
"name": "after-text",
|
|
1389
|
+
"docs": "Optional slot for content to be placed after the text content. Common use case is an icon.\n\nSlotted `lmvz-icon`s are controlled by the chip's internal sizing."
|
|
1390
|
+
},
|
|
1391
|
+
{
|
|
1392
|
+
"name": "before-text",
|
|
1393
|
+
"docs": "Optional slot for content to be placed before the text content. Common use case is an icon."
|
|
1394
|
+
},
|
|
1395
|
+
{
|
|
1396
|
+
"name": "default",
|
|
1397
|
+
"docs": "Arbitrary inline content used as the chip label. Icons passed here may not be aligned or spaced with the text content properly."
|
|
1398
|
+
}
|
|
1399
|
+
],
|
|
1400
|
+
"parts": [],
|
|
1401
|
+
"states": [],
|
|
1402
|
+
"dependents": [],
|
|
1403
|
+
"dependencies": [],
|
|
1404
|
+
"dependencyGraph": {}
|
|
1405
|
+
},
|
|
1406
|
+
{
|
|
1407
|
+
"filePath": "src/components/lmvz-datepicker/lmvz-datepicker.tsx",
|
|
1408
|
+
"encapsulation": "shadow",
|
|
1409
|
+
"tag": "lmvz-datepicker",
|
|
1410
|
+
"readme": "# lmvz-datepicker\n\n`lmvz-datepicker` composes an `lmvz-input` text field with a decorative calendar icon and an `lmvz-popover` calendar panel into a single, form-associated date-picker control.\n\n## Breaking Change: Event Payload Migration\n\n**If you are upgrading from an earlier version, your integration code must change.**\n\nThe `lmvzChange` event payload changed from `Temporal.PlainDate` to a plain `IsoDateString` (`YYYY-MM-DD`):\n\n| Before | After |\n|--------|-------|\n| `event.detail.value` is a `Temporal.PlainDate` object | `event.detail.value` is a string like `\"2024-06-15\"` |\n| Consumers called `.toString()` or used Temporal APIs on the payload | Consumers now read `event.detail.value` directly as a plain string |\n| Angular: the value accessor invoked `.value.toString()` on the temporal object | Angular: the value accessor reads the string directly (no extraction needed) |\n\nIf your code uses `.value.toString()` or calls Temporal methods on the payload, update it to treat `value` as a plain ISO date string instead. The `temporal-polyfill` used internally is bundled into the component's build output — consumers do not need to import or provide it.\n\n## Form Association\n\nThe component is form-associated (`formAssociated: true`, `ElementInternals`). It participates in native `<form>` submission under the `name` attribute (submitted value is an `IsoDateString`), honors `required`/`min`/`max` constraints via `ElementInternals.setValidity` (`valueMissing`, `badInput`, `rangeUnderflow`/`rangeOverflow`), and supports `formResetCallback`/`formStateRestoreCallback` for form reset and browser autofill/bfcache restoration. \n\nUse `checkValidity()` and `reportValidity()` to validate or show validation UI (the component delegates `ElementInternals` validation to these methods explicitly — native form submission does not call them automatically).\n\n## Localization\n\nThe popover's accessible dialog label and the default fallback validation message are localized per the `locale` prop for de/en/fr/it, with regional variant fallback (e.g., `de-AT` falls back to `de`).\n\n## Accessibility Note\n\nThe composed `lmvz-input` text field correctly exposes and toggles `aria-expanded`, `aria-haspopup`, and `aria-controls` as the calendar opens and closes, ensuring assistive technology receives proper combobox-pattern semantics.\n",
|
|
1411
|
+
"docs": "`lmvz-datepicker` composes an `lmvz-input` text field with a decorative calendar icon and an `lmvz-popover` calendar panel into a single, form-associated date-picker control.",
|
|
1412
|
+
"docsTags": [
|
|
1413
|
+
{
|
|
1414
|
+
"name": "part",
|
|
1415
|
+
"text": "panel - The outer container panel of the datepicker"
|
|
1416
|
+
},
|
|
1417
|
+
{
|
|
1418
|
+
"name": "part",
|
|
1419
|
+
"text": "header - The header row containing navigation buttons and month/year label"
|
|
1420
|
+
},
|
|
1421
|
+
{
|
|
1422
|
+
"name": "part",
|
|
1423
|
+
"text": "nav-prev - The previous-month navigation button"
|
|
1424
|
+
},
|
|
1425
|
+
{
|
|
1426
|
+
"name": "part",
|
|
1427
|
+
"text": "nav-next - The next-month navigation button"
|
|
1428
|
+
},
|
|
1429
|
+
{
|
|
1430
|
+
"name": "part",
|
|
1431
|
+
"text": "month-label - The month and year label in the header"
|
|
1432
|
+
},
|
|
1433
|
+
{
|
|
1434
|
+
"name": "part",
|
|
1435
|
+
"text": "weekday-row - The row of weekday column headers"
|
|
1436
|
+
},
|
|
1437
|
+
{
|
|
1438
|
+
"name": "part",
|
|
1439
|
+
"text": "weekday - An individual weekday column header cell"
|
|
1440
|
+
},
|
|
1441
|
+
{
|
|
1442
|
+
"name": "part",
|
|
1443
|
+
"text": "grid - The calendar day grid"
|
|
1444
|
+
},
|
|
1445
|
+
{
|
|
1446
|
+
"name": "part",
|
|
1447
|
+
"text": "week-row - A week row within the calendar grid"
|
|
1448
|
+
},
|
|
1449
|
+
{
|
|
1450
|
+
"name": "part",
|
|
1451
|
+
"text": "day - A day cell within the calendar grid"
|
|
1452
|
+
},
|
|
1453
|
+
{
|
|
1454
|
+
"name": "part",
|
|
1455
|
+
"text": "day--today - A day cell representing today"
|
|
1456
|
+
},
|
|
1457
|
+
{
|
|
1458
|
+
"name": "part",
|
|
1459
|
+
"text": "day--selected - The currently selected day cell"
|
|
1460
|
+
},
|
|
1461
|
+
{
|
|
1462
|
+
"name": "part",
|
|
1463
|
+
"text": "day--out-of-month - A day cell that belongs to an adjacent month"
|
|
1464
|
+
},
|
|
1465
|
+
{
|
|
1466
|
+
"name": "part",
|
|
1467
|
+
"text": "day--disabled - A day cell that is disabled (out of min/max bounds)"
|
|
1468
|
+
}
|
|
1469
|
+
],
|
|
1470
|
+
"usage": {},
|
|
1471
|
+
"props": [
|
|
1472
|
+
{
|
|
1473
|
+
"name": "disabled",
|
|
1474
|
+
"type": "boolean",
|
|
1475
|
+
"complexType": {
|
|
1476
|
+
"original": "boolean",
|
|
1477
|
+
"resolved": "boolean",
|
|
1478
|
+
"references": {}
|
|
1479
|
+
},
|
|
1480
|
+
"mutable": false,
|
|
1481
|
+
"attr": "disabled",
|
|
1482
|
+
"reflectToAttr": true,
|
|
1483
|
+
"docs": "Whether the entire datepicker (input + panel) is disabled.",
|
|
1484
|
+
"docsTags": [
|
|
1485
|
+
{
|
|
1486
|
+
"name": "default",
|
|
1487
|
+
"text": "false"
|
|
1488
|
+
}
|
|
1489
|
+
],
|
|
1490
|
+
"default": "false",
|
|
1491
|
+
"values": [
|
|
1492
|
+
{
|
|
1493
|
+
"type": "boolean"
|
|
1494
|
+
}
|
|
1495
|
+
],
|
|
1496
|
+
"optional": false,
|
|
1497
|
+
"required": false,
|
|
1498
|
+
"getter": false,
|
|
1499
|
+
"setter": false
|
|
1500
|
+
},
|
|
1501
|
+
{
|
|
1502
|
+
"name": "displayFormat",
|
|
1503
|
+
"type": "string | undefined",
|
|
1504
|
+
"complexType": {
|
|
1505
|
+
"original": "Datepicker.DisplayFormat",
|
|
1506
|
+
"resolved": "string | undefined",
|
|
1507
|
+
"references": {
|
|
1508
|
+
"Datepicker": {
|
|
1509
|
+
"location": "import",
|
|
1510
|
+
"path": "../../api",
|
|
1511
|
+
"id": "src/api/index.d.ts::Datepicker",
|
|
1512
|
+
"referenceLocation": "Datepicker"
|
|
1513
|
+
}
|
|
1514
|
+
}
|
|
1515
|
+
},
|
|
1516
|
+
"mutable": false,
|
|
1517
|
+
"attr": "display-format",
|
|
1518
|
+
"reflectToAttr": false,
|
|
1519
|
+
"docs": "Custom display-format pattern for the text field, using the tokens `yyyy`, `MM`, `dd`\n(e.g. `'dd.MM.yyyy'`). Defaults to a pattern derived from `locale`.",
|
|
1520
|
+
"docsTags": [],
|
|
1521
|
+
"values": [
|
|
1522
|
+
{
|
|
1523
|
+
"type": "string"
|
|
1524
|
+
},
|
|
1525
|
+
{
|
|
1526
|
+
"type": "undefined"
|
|
1527
|
+
}
|
|
1528
|
+
],
|
|
1529
|
+
"optional": true,
|
|
1530
|
+
"required": false,
|
|
1531
|
+
"getter": false,
|
|
1532
|
+
"setter": false
|
|
1533
|
+
},
|
|
1534
|
+
{
|
|
1535
|
+
"name": "errorMessage",
|
|
1536
|
+
"type": "string | undefined",
|
|
1537
|
+
"complexType": {
|
|
1538
|
+
"original": "string",
|
|
1539
|
+
"resolved": "string | undefined",
|
|
1540
|
+
"references": {}
|
|
1541
|
+
},
|
|
1542
|
+
"mutable": false,
|
|
1543
|
+
"attr": "error-message",
|
|
1544
|
+
"reflectToAttr": false,
|
|
1545
|
+
"docs": "Error message displayed below the text field when the value is invalid.",
|
|
1546
|
+
"docsTags": [],
|
|
1547
|
+
"values": [
|
|
1548
|
+
{
|
|
1549
|
+
"type": "string"
|
|
1550
|
+
},
|
|
1551
|
+
{
|
|
1552
|
+
"type": "undefined"
|
|
1553
|
+
}
|
|
1554
|
+
],
|
|
1555
|
+
"optional": true,
|
|
1556
|
+
"required": false,
|
|
1557
|
+
"getter": false,
|
|
1558
|
+
"setter": false
|
|
1559
|
+
},
|
|
1560
|
+
{
|
|
1561
|
+
"name": "firstDayOfWeek",
|
|
1562
|
+
"type": "0 | 1",
|
|
1563
|
+
"complexType": {
|
|
1564
|
+
"original": "0 | 1",
|
|
1565
|
+
"resolved": "0 | 1",
|
|
1566
|
+
"references": {}
|
|
1567
|
+
},
|
|
1568
|
+
"mutable": false,
|
|
1569
|
+
"attr": "first-day-of-week",
|
|
1570
|
+
"reflectToAttr": false,
|
|
1571
|
+
"docs": "First day of the week: `0` = Sunday, `1` = Monday.\nMonday-first is hardcoded for v1; this prop is reserved for future runtime support.",
|
|
1572
|
+
"docsTags": [
|
|
1573
|
+
{
|
|
1574
|
+
"name": "default",
|
|
1575
|
+
"text": "1"
|
|
1576
|
+
}
|
|
1577
|
+
],
|
|
1578
|
+
"default": "1",
|
|
1579
|
+
"values": [
|
|
1580
|
+
{
|
|
1581
|
+
"value": "0",
|
|
1582
|
+
"type": "number"
|
|
1583
|
+
},
|
|
1584
|
+
{
|
|
1585
|
+
"value": "1",
|
|
1586
|
+
"type": "number"
|
|
1587
|
+
}
|
|
1588
|
+
],
|
|
1589
|
+
"optional": false,
|
|
1590
|
+
"required": false,
|
|
1591
|
+
"getter": false,
|
|
1592
|
+
"setter": false
|
|
1593
|
+
},
|
|
1594
|
+
{
|
|
1595
|
+
"name": "helperText",
|
|
1596
|
+
"type": "string | undefined",
|
|
1597
|
+
"complexType": {
|
|
1598
|
+
"original": "string",
|
|
1599
|
+
"resolved": "string | undefined",
|
|
1600
|
+
"references": {}
|
|
1601
|
+
},
|
|
1602
|
+
"mutable": false,
|
|
1603
|
+
"attr": "helper-text",
|
|
1604
|
+
"reflectToAttr": false,
|
|
1605
|
+
"docs": "Helper text displayed below the text field.",
|
|
1606
|
+
"docsTags": [],
|
|
1607
|
+
"values": [
|
|
1608
|
+
{
|
|
1609
|
+
"type": "string"
|
|
1610
|
+
},
|
|
1611
|
+
{
|
|
1612
|
+
"type": "undefined"
|
|
1613
|
+
}
|
|
1614
|
+
],
|
|
1615
|
+
"optional": true,
|
|
1616
|
+
"required": false,
|
|
1617
|
+
"getter": false,
|
|
1618
|
+
"setter": false
|
|
1619
|
+
},
|
|
1620
|
+
{
|
|
1621
|
+
"name": "label",
|
|
1622
|
+
"type": "string | undefined",
|
|
1623
|
+
"complexType": {
|
|
1624
|
+
"original": "string",
|
|
1625
|
+
"resolved": "string | undefined",
|
|
1626
|
+
"references": {}
|
|
1627
|
+
},
|
|
1628
|
+
"mutable": false,
|
|
1629
|
+
"attr": "label",
|
|
1630
|
+
"reflectToAttr": false,
|
|
1631
|
+
"docs": "Label for the composed text field.",
|
|
1632
|
+
"docsTags": [],
|
|
1633
|
+
"values": [
|
|
1634
|
+
{
|
|
1635
|
+
"type": "string"
|
|
1636
|
+
},
|
|
1637
|
+
{
|
|
1638
|
+
"type": "undefined"
|
|
1639
|
+
}
|
|
1640
|
+
],
|
|
1641
|
+
"optional": true,
|
|
1642
|
+
"required": false,
|
|
1643
|
+
"getter": false,
|
|
1644
|
+
"setter": false
|
|
1645
|
+
},
|
|
1646
|
+
{
|
|
1647
|
+
"name": "locale",
|
|
1648
|
+
"type": "string",
|
|
1649
|
+
"complexType": {
|
|
1650
|
+
"original": "string",
|
|
1651
|
+
"resolved": "string",
|
|
1652
|
+
"references": {}
|
|
1653
|
+
},
|
|
1654
|
+
"mutable": false,
|
|
1655
|
+
"attr": "locale",
|
|
1656
|
+
"reflectToAttr": false,
|
|
1657
|
+
"docs": "BCP 47 locale tag used for weekday/month names, ARIA labels, and the default display format.",
|
|
1658
|
+
"docsTags": [
|
|
1659
|
+
{
|
|
1660
|
+
"name": "default",
|
|
1661
|
+
"text": "'de-CH'"
|
|
1662
|
+
}
|
|
1663
|
+
],
|
|
1664
|
+
"default": "'de-CH'",
|
|
1665
|
+
"values": [
|
|
1666
|
+
{
|
|
1667
|
+
"type": "string"
|
|
1668
|
+
}
|
|
1669
|
+
],
|
|
1670
|
+
"optional": false,
|
|
1671
|
+
"required": false,
|
|
1672
|
+
"getter": false,
|
|
1673
|
+
"setter": false
|
|
1674
|
+
},
|
|
1675
|
+
{
|
|
1676
|
+
"name": "max",
|
|
1677
|
+
"type": "`${number}-${number}-${number}` | undefined",
|
|
1678
|
+
"complexType": {
|
|
1679
|
+
"original": "IsoDateString | undefined",
|
|
1680
|
+
"resolved": "`${number}-${number}-${number}` | undefined",
|
|
1681
|
+
"references": {
|
|
1682
|
+
"IsoDateString": {
|
|
1683
|
+
"location": "import",
|
|
1684
|
+
"path": "@lmvz-ds/lib-ts/date/IsoDateString.js",
|
|
1685
|
+
"id": "../../lib/ts/src/date/IsoDateString.d.ts::IsoDateString",
|
|
1686
|
+
"referenceLocation": "IsoDateString"
|
|
1687
|
+
}
|
|
1688
|
+
}
|
|
1689
|
+
},
|
|
1690
|
+
"mutable": false,
|
|
1691
|
+
"attr": "max",
|
|
1692
|
+
"reflectToAttr": false,
|
|
1693
|
+
"docs": "Maximum selectable date in ISO `YYYY-MM-DD` format.\nDays after this date are disabled.",
|
|
1694
|
+
"docsTags": [],
|
|
1695
|
+
"values": [
|
|
1696
|
+
{
|
|
1697
|
+
"type": "`${number}-${number}-${number}`"
|
|
1698
|
+
},
|
|
1699
|
+
{
|
|
1700
|
+
"type": "undefined"
|
|
1701
|
+
}
|
|
1702
|
+
],
|
|
1703
|
+
"optional": false,
|
|
1704
|
+
"required": false,
|
|
1705
|
+
"getter": false,
|
|
1706
|
+
"setter": false
|
|
1707
|
+
},
|
|
1708
|
+
{
|
|
1709
|
+
"name": "min",
|
|
1710
|
+
"type": "`${number}-${number}-${number}` | undefined",
|
|
1711
|
+
"complexType": {
|
|
1712
|
+
"original": "IsoDateString | undefined",
|
|
1713
|
+
"resolved": "`${number}-${number}-${number}` | undefined",
|
|
1714
|
+
"references": {
|
|
1715
|
+
"IsoDateString": {
|
|
1716
|
+
"location": "import",
|
|
1717
|
+
"path": "@lmvz-ds/lib-ts/date/IsoDateString.js",
|
|
1718
|
+
"id": "../../lib/ts/src/date/IsoDateString.d.ts::IsoDateString",
|
|
1719
|
+
"referenceLocation": "IsoDateString"
|
|
1720
|
+
}
|
|
1721
|
+
}
|
|
1722
|
+
},
|
|
1723
|
+
"mutable": false,
|
|
1724
|
+
"attr": "min",
|
|
1725
|
+
"reflectToAttr": false,
|
|
1726
|
+
"docs": "Minimum selectable date in ISO `YYYY-MM-DD` format.\nDays before this date are disabled.",
|
|
1727
|
+
"docsTags": [],
|
|
1728
|
+
"values": [
|
|
1729
|
+
{
|
|
1730
|
+
"type": "`${number}-${number}-${number}`"
|
|
1731
|
+
},
|
|
1732
|
+
{
|
|
1733
|
+
"type": "undefined"
|
|
1734
|
+
}
|
|
1735
|
+
],
|
|
1736
|
+
"optional": false,
|
|
1737
|
+
"required": false,
|
|
1738
|
+
"getter": false,
|
|
1739
|
+
"setter": false
|
|
1740
|
+
},
|
|
1741
|
+
{
|
|
1742
|
+
"name": "name",
|
|
1743
|
+
"type": "string | undefined",
|
|
1744
|
+
"complexType": {
|
|
1745
|
+
"original": "string",
|
|
1746
|
+
"resolved": "string | undefined",
|
|
1747
|
+
"references": {}
|
|
1748
|
+
},
|
|
1749
|
+
"mutable": false,
|
|
1750
|
+
"attr": "name",
|
|
1751
|
+
"reflectToAttr": true,
|
|
1752
|
+
"docs": "Name submitted with the form.",
|
|
1753
|
+
"docsTags": [],
|
|
1754
|
+
"values": [
|
|
1755
|
+
{
|
|
1756
|
+
"type": "string"
|
|
1757
|
+
},
|
|
1758
|
+
{
|
|
1759
|
+
"type": "undefined"
|
|
1760
|
+
}
|
|
1761
|
+
],
|
|
1762
|
+
"optional": true,
|
|
1763
|
+
"required": false,
|
|
1764
|
+
"getter": false,
|
|
1765
|
+
"setter": false
|
|
1766
|
+
},
|
|
1767
|
+
{
|
|
1768
|
+
"name": "open",
|
|
1769
|
+
"type": "boolean",
|
|
1770
|
+
"complexType": {
|
|
1771
|
+
"original": "boolean",
|
|
1772
|
+
"resolved": "boolean",
|
|
1773
|
+
"references": {}
|
|
1774
|
+
},
|
|
1775
|
+
"mutable": true,
|
|
1776
|
+
"attr": "open",
|
|
1777
|
+
"reflectToAttr": true,
|
|
1778
|
+
"docs": "Whether the calendar popover is open. Reflects the actual open state — it is kept\nin sync with focus/keyboard interactions and with light-dismiss/Escape closing.",
|
|
1779
|
+
"docsTags": [
|
|
1780
|
+
{
|
|
1781
|
+
"name": "default",
|
|
1782
|
+
"text": "false"
|
|
1783
|
+
}
|
|
1784
|
+
],
|
|
1785
|
+
"default": "false",
|
|
1786
|
+
"values": [
|
|
1787
|
+
{
|
|
1788
|
+
"type": "boolean"
|
|
1789
|
+
}
|
|
1790
|
+
],
|
|
1791
|
+
"optional": false,
|
|
1792
|
+
"required": false,
|
|
1793
|
+
"getter": false,
|
|
1794
|
+
"setter": false
|
|
1795
|
+
},
|
|
1796
|
+
{
|
|
1797
|
+
"name": "placeholder",
|
|
1798
|
+
"type": "string | undefined",
|
|
1799
|
+
"complexType": {
|
|
1800
|
+
"original": "string",
|
|
1801
|
+
"resolved": "string | undefined",
|
|
1802
|
+
"references": {}
|
|
1803
|
+
},
|
|
1804
|
+
"mutable": false,
|
|
1805
|
+
"attr": "placeholder",
|
|
1806
|
+
"reflectToAttr": false,
|
|
1807
|
+
"docs": "Placeholder for the composed text field. Defaults to the locale-derived display pattern (e.g. `dd.MM.yyyy`).",
|
|
1808
|
+
"docsTags": [],
|
|
1809
|
+
"values": [
|
|
1810
|
+
{
|
|
1811
|
+
"type": "string"
|
|
1812
|
+
},
|
|
1813
|
+
{
|
|
1814
|
+
"type": "undefined"
|
|
1815
|
+
}
|
|
1816
|
+
],
|
|
1817
|
+
"optional": true,
|
|
1818
|
+
"required": false,
|
|
1819
|
+
"getter": false,
|
|
1820
|
+
"setter": false
|
|
1821
|
+
},
|
|
1822
|
+
{
|
|
1823
|
+
"name": "readonly",
|
|
1824
|
+
"type": "boolean",
|
|
1825
|
+
"complexType": {
|
|
1826
|
+
"original": "boolean",
|
|
1827
|
+
"resolved": "boolean",
|
|
1828
|
+
"references": {}
|
|
1829
|
+
},
|
|
1830
|
+
"mutable": false,
|
|
1831
|
+
"attr": "readonly",
|
|
1832
|
+
"reflectToAttr": true,
|
|
1833
|
+
"docs": "Whether the datepicker is readonly. The text field cannot be typed into and the calendar cannot change the value,\nbut the value is still submitted with the form.",
|
|
1834
|
+
"docsTags": [
|
|
1835
|
+
{
|
|
1836
|
+
"name": "default",
|
|
1837
|
+
"text": "false"
|
|
1838
|
+
}
|
|
1839
|
+
],
|
|
1840
|
+
"default": "false",
|
|
1841
|
+
"values": [
|
|
1842
|
+
{
|
|
1843
|
+
"type": "boolean"
|
|
1844
|
+
}
|
|
1845
|
+
],
|
|
1846
|
+
"optional": false,
|
|
1847
|
+
"required": false,
|
|
1848
|
+
"getter": false,
|
|
1849
|
+
"setter": false
|
|
1850
|
+
},
|
|
1851
|
+
{
|
|
1852
|
+
"name": "required",
|
|
1853
|
+
"type": "boolean",
|
|
1854
|
+
"complexType": {
|
|
1855
|
+
"original": "boolean",
|
|
1856
|
+
"resolved": "boolean",
|
|
1857
|
+
"references": {}
|
|
1858
|
+
},
|
|
1859
|
+
"mutable": false,
|
|
1860
|
+
"attr": "required",
|
|
1861
|
+
"reflectToAttr": true,
|
|
1862
|
+
"docs": "Whether a value is required for the form to be valid.",
|
|
1863
|
+
"docsTags": [
|
|
1864
|
+
{
|
|
1865
|
+
"name": "default",
|
|
1866
|
+
"text": "false"
|
|
1867
|
+
}
|
|
1868
|
+
],
|
|
1869
|
+
"default": "false",
|
|
1870
|
+
"values": [
|
|
1871
|
+
{
|
|
1872
|
+
"type": "boolean"
|
|
1873
|
+
}
|
|
1874
|
+
],
|
|
1875
|
+
"optional": false,
|
|
1876
|
+
"required": false,
|
|
1877
|
+
"getter": false,
|
|
1878
|
+
"setter": false
|
|
1879
|
+
},
|
|
1880
|
+
{
|
|
1881
|
+
"name": "value",
|
|
1882
|
+
"type": "`${number}-${number}-${number}` | undefined",
|
|
1883
|
+
"complexType": {
|
|
1884
|
+
"original": "`${number}-${number}-${number}` | undefined",
|
|
1885
|
+
"resolved": "`${number}-${number}-${number}` | undefined",
|
|
1886
|
+
"references": {}
|
|
1887
|
+
},
|
|
1888
|
+
"mutable": false,
|
|
1889
|
+
"attr": "value",
|
|
1890
|
+
"reflectToAttr": false,
|
|
1891
|
+
"docs": "The selected date in ISO `YYYY-MM-DD` format.",
|
|
1892
|
+
"docsTags": [],
|
|
1893
|
+
"values": [
|
|
1894
|
+
{
|
|
1895
|
+
"type": "`${number}-${number}-${number}`"
|
|
1896
|
+
},
|
|
1897
|
+
{
|
|
1898
|
+
"type": "undefined"
|
|
1899
|
+
}
|
|
1900
|
+
],
|
|
1901
|
+
"optional": false,
|
|
1902
|
+
"required": false,
|
|
1903
|
+
"getter": true,
|
|
1904
|
+
"setter": true
|
|
1905
|
+
},
|
|
1906
|
+
{
|
|
1907
|
+
"name": "visibleMonth",
|
|
1908
|
+
"type": "`${number}-${number}` | undefined",
|
|
1909
|
+
"complexType": {
|
|
1910
|
+
"original": "IsoYearMonthString | undefined",
|
|
1911
|
+
"resolved": "`${number}-${number}` | undefined",
|
|
1912
|
+
"references": {
|
|
1913
|
+
"IsoYearMonthString": {
|
|
1914
|
+
"location": "import",
|
|
1915
|
+
"path": "@lmvz-ds/lib-ts/date/IsoDateString.js",
|
|
1916
|
+
"id": "../../lib/ts/src/date/IsoDateString.d.ts::IsoYearMonthString",
|
|
1917
|
+
"referenceLocation": "IsoYearMonthString"
|
|
1918
|
+
}
|
|
1919
|
+
}
|
|
1920
|
+
},
|
|
1921
|
+
"mutable": false,
|
|
1922
|
+
"attr": "visible-month",
|
|
1923
|
+
"reflectToAttr": false,
|
|
1924
|
+
"docs": "ISO year-month string (`YYYY-MM`) whose month is currently displayed.\nDefaults to the current month when unset.",
|
|
1925
|
+
"docsTags": [],
|
|
1926
|
+
"values": [
|
|
1927
|
+
{
|
|
1928
|
+
"type": "`${number}-${number}`"
|
|
1929
|
+
},
|
|
1930
|
+
{
|
|
1931
|
+
"type": "undefined"
|
|
1932
|
+
}
|
|
1933
|
+
],
|
|
1934
|
+
"optional": false,
|
|
1935
|
+
"required": false,
|
|
1936
|
+
"getter": true,
|
|
1937
|
+
"setter": true
|
|
1938
|
+
}
|
|
1939
|
+
],
|
|
1940
|
+
"methods": [
|
|
1941
|
+
{
|
|
1942
|
+
"name": "checkValidity",
|
|
1943
|
+
"returns": {
|
|
1944
|
+
"type": "Promise<boolean>",
|
|
1945
|
+
"docs": ""
|
|
1946
|
+
},
|
|
1947
|
+
"complexType": {
|
|
1948
|
+
"signature": "() => Promise<boolean>",
|
|
1949
|
+
"parameters": [],
|
|
1950
|
+
"references": {
|
|
1951
|
+
"Promise": {
|
|
1952
|
+
"location": "global",
|
|
1953
|
+
"id": "global::Promise"
|
|
1954
|
+
}
|
|
1955
|
+
},
|
|
1956
|
+
"return": "Promise<boolean>"
|
|
1957
|
+
},
|
|
1958
|
+
"signature": "checkValidity() => Promise<boolean>",
|
|
1959
|
+
"parameters": [],
|
|
1960
|
+
"docs": "Returns whether the current value satisfies `required`/`min`/`max` and is a parseable date.\nUnlike a native `<input>`, form-associated custom elements do not forward `ElementInternals`'\nconstraint-validation API to the element automatically — this delegates to it explicitly.",
|
|
1211
1961
|
"docsTags": []
|
|
1212
1962
|
},
|
|
1213
1963
|
{
|
|
@@ -1229,175 +1979,175 @@
|
|
|
1229
1979
|
},
|
|
1230
1980
|
"signature": "reportValidity() => Promise<boolean>",
|
|
1231
1981
|
"parameters": [],
|
|
1232
|
-
"docs": "Reports validation errors to the user.",
|
|
1982
|
+
"docs": "Reports validation errors to the user (e.g. shows the browser's native validation bubble)\nand returns whether the current value is valid.",
|
|
1233
1983
|
"docsTags": []
|
|
1234
1984
|
}
|
|
1235
1985
|
],
|
|
1236
1986
|
"events": [
|
|
1237
1987
|
{
|
|
1238
1988
|
"event": "lmvzChange",
|
|
1239
|
-
"detail": "
|
|
1989
|
+
"detail": "{ value: `${number}-${number}-${number}` | undefined; }",
|
|
1240
1990
|
"bubbles": true,
|
|
1241
1991
|
"complexType": {
|
|
1242
|
-
"original": "
|
|
1243
|
-
"resolved": "
|
|
1244
|
-
"references": {
|
|
1992
|
+
"original": "{ value: IsoDateString | undefined }",
|
|
1993
|
+
"resolved": "{ value: `${number}-${number}-${number}` | undefined; }",
|
|
1994
|
+
"references": {
|
|
1995
|
+
"IsoDateString": {
|
|
1996
|
+
"location": "import",
|
|
1997
|
+
"path": "@lmvz-ds/lib-ts/date/IsoDateString.js",
|
|
1998
|
+
"id": "../../lib/ts/src/date/IsoDateString.d.ts::IsoDateString",
|
|
1999
|
+
"referenceLocation": "IsoDateString"
|
|
2000
|
+
}
|
|
2001
|
+
}
|
|
1245
2002
|
},
|
|
1246
2003
|
"cancelable": true,
|
|
1247
2004
|
"composed": true,
|
|
1248
|
-
"docs": "Emitted
|
|
2005
|
+
"docs": "Emitted when the user selects a date (via the calendar grid or by typing a complete valid date).\nThe `value` field carries an IsoDateString representing the selected date.",
|
|
1249
2006
|
"docsTags": []
|
|
1250
|
-
}
|
|
1251
|
-
],
|
|
1252
|
-
"listeners": [],
|
|
1253
|
-
"styles": [],
|
|
1254
|
-
"slots": [],
|
|
1255
|
-
"parts": [],
|
|
1256
|
-
"states": [],
|
|
1257
|
-
"dependents": [],
|
|
1258
|
-
"dependencies": [],
|
|
1259
|
-
"dependencyGraph": {}
|
|
1260
|
-
},
|
|
1261
|
-
{
|
|
1262
|
-
"filePath": "src/components/lmvz-chip/lmvz-chip.tsx",
|
|
1263
|
-
"encapsulation": "shadow",
|
|
1264
|
-
"tag": "lmvz-chip",
|
|
1265
|
-
"readme": "# lmvz-chip\n\n\n",
|
|
1266
|
-
"docs": "The chip displays a compact semantic status as a non-interactive UI element.",
|
|
1267
|
-
"docsTags": [
|
|
1268
|
-
{
|
|
1269
|
-
"name": "slot",
|
|
1270
|
-
"text": "default - Arbitrary inline content used as the chip label. Icons passed here may not be aligned or spaced with the text content properly."
|
|
1271
2007
|
},
|
|
1272
2008
|
{
|
|
1273
|
-
"
|
|
1274
|
-
"
|
|
2009
|
+
"event": "lmvzClose",
|
|
2010
|
+
"detail": "void",
|
|
2011
|
+
"bubbles": true,
|
|
2012
|
+
"complexType": {
|
|
2013
|
+
"original": "void",
|
|
2014
|
+
"resolved": "void",
|
|
2015
|
+
"references": {}
|
|
2016
|
+
},
|
|
2017
|
+
"cancelable": true,
|
|
2018
|
+
"composed": true,
|
|
2019
|
+
"docs": "Forwarded from the internal popover: fired after the calendar panel closes.",
|
|
2020
|
+
"docsTags": []
|
|
1275
2021
|
},
|
|
1276
2022
|
{
|
|
1277
|
-
"
|
|
1278
|
-
"
|
|
1279
|
-
|
|
1280
|
-
],
|
|
1281
|
-
"usage": {},
|
|
1282
|
-
"props": [
|
|
1283
|
-
{
|
|
1284
|
-
"name": "size",
|
|
1285
|
-
"type": "\"default\" | \"small\"",
|
|
2023
|
+
"event": "lmvzMonthChange",
|
|
2024
|
+
"detail": "{ visibleMonth: `${number}-${number}`; }",
|
|
2025
|
+
"bubbles": true,
|
|
1286
2026
|
"complexType": {
|
|
1287
|
-
"original": "
|
|
1288
|
-
"resolved": "
|
|
2027
|
+
"original": "{ visibleMonth: IsoYearMonthString }",
|
|
2028
|
+
"resolved": "{ visibleMonth: `${number}-${number}`; }",
|
|
1289
2029
|
"references": {
|
|
1290
|
-
"
|
|
2030
|
+
"IsoYearMonthString": {
|
|
1291
2031
|
"location": "import",
|
|
1292
|
-
"path": "
|
|
1293
|
-
"id": "src/
|
|
1294
|
-
"referenceLocation": "
|
|
2032
|
+
"path": "@lmvz-ds/lib-ts/date/IsoDateString.js",
|
|
2033
|
+
"id": "../../lib/ts/src/date/IsoDateString.d.ts::IsoYearMonthString",
|
|
2034
|
+
"referenceLocation": "IsoYearMonthString"
|
|
1295
2035
|
}
|
|
1296
2036
|
}
|
|
1297
2037
|
},
|
|
1298
|
-
"
|
|
1299
|
-
"
|
|
1300
|
-
"
|
|
1301
|
-
"
|
|
1302
|
-
"docsTags": [
|
|
1303
|
-
{
|
|
1304
|
-
"name": "default",
|
|
1305
|
-
"text": "'default'"
|
|
1306
|
-
}
|
|
1307
|
-
],
|
|
1308
|
-
"default": "'default'",
|
|
1309
|
-
"values": [
|
|
1310
|
-
{
|
|
1311
|
-
"value": "default",
|
|
1312
|
-
"type": "string"
|
|
1313
|
-
},
|
|
1314
|
-
{
|
|
1315
|
-
"value": "small",
|
|
1316
|
-
"type": "string"
|
|
1317
|
-
}
|
|
1318
|
-
],
|
|
1319
|
-
"optional": false,
|
|
1320
|
-
"required": false,
|
|
1321
|
-
"getter": false,
|
|
1322
|
-
"setter": false
|
|
2038
|
+
"cancelable": true,
|
|
2039
|
+
"composed": true,
|
|
2040
|
+
"docs": "Emitted when the displayed month changes via prev/next navigation.\nThe `visibleMonth` field carries an IsoYearMonthString representing the new month.",
|
|
2041
|
+
"docsTags": []
|
|
1323
2042
|
},
|
|
1324
2043
|
{
|
|
1325
|
-
"
|
|
1326
|
-
"
|
|
2044
|
+
"event": "lmvzOpen",
|
|
2045
|
+
"detail": "void",
|
|
2046
|
+
"bubbles": true,
|
|
1327
2047
|
"complexType": {
|
|
1328
|
-
"original": "
|
|
1329
|
-
"resolved": "
|
|
1330
|
-
"references": {
|
|
1331
|
-
"Chip": {
|
|
1332
|
-
"location": "import",
|
|
1333
|
-
"path": "../../api/ds.types.js",
|
|
1334
|
-
"id": "src/api/ds.types.d.ts::Chip",
|
|
1335
|
-
"referenceLocation": "Chip"
|
|
1336
|
-
}
|
|
1337
|
-
}
|
|
2048
|
+
"original": "void",
|
|
2049
|
+
"resolved": "void",
|
|
2050
|
+
"references": {}
|
|
1338
2051
|
},
|
|
1339
|
-
"
|
|
1340
|
-
"
|
|
1341
|
-
"
|
|
1342
|
-
"
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
"
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
"value": "neutral",
|
|
1361
|
-
"type": "string"
|
|
1362
|
-
},
|
|
1363
|
-
{
|
|
1364
|
-
"value": "success",
|
|
1365
|
-
"type": "string"
|
|
1366
|
-
},
|
|
1367
|
-
{
|
|
1368
|
-
"value": "warning",
|
|
1369
|
-
"type": "string"
|
|
1370
|
-
}
|
|
1371
|
-
],
|
|
1372
|
-
"optional": false,
|
|
1373
|
-
"required": false,
|
|
1374
|
-
"getter": false,
|
|
1375
|
-
"setter": false
|
|
2052
|
+
"cancelable": true,
|
|
2053
|
+
"composed": true,
|
|
2054
|
+
"docs": "Forwarded from the internal popover: fired after the calendar panel opens.",
|
|
2055
|
+
"docsTags": []
|
|
2056
|
+
}
|
|
2057
|
+
],
|
|
2058
|
+
"listeners": [
|
|
2059
|
+
{
|
|
2060
|
+
"event": "keydown",
|
|
2061
|
+
"capture": false,
|
|
2062
|
+
"passive": false
|
|
2063
|
+
},
|
|
2064
|
+
{
|
|
2065
|
+
"event": "focusin",
|
|
2066
|
+
"capture": false,
|
|
2067
|
+
"passive": false
|
|
2068
|
+
},
|
|
2069
|
+
{
|
|
2070
|
+
"event": "click",
|
|
2071
|
+
"capture": false,
|
|
2072
|
+
"passive": false
|
|
1376
2073
|
}
|
|
1377
2074
|
],
|
|
1378
|
-
"methods": [],
|
|
1379
|
-
"events": [],
|
|
1380
|
-
"listeners": [],
|
|
1381
2075
|
"styles": [],
|
|
1382
|
-
"slots": [
|
|
2076
|
+
"slots": [],
|
|
2077
|
+
"parts": [
|
|
1383
2078
|
{
|
|
1384
|
-
"name": "
|
|
1385
|
-
"docs": "
|
|
2079
|
+
"name": "day",
|
|
2080
|
+
"docs": "A day cell within the calendar grid"
|
|
1386
2081
|
},
|
|
1387
2082
|
{
|
|
1388
|
-
"name": "
|
|
1389
|
-
"docs": "
|
|
2083
|
+
"name": "day--disabled",
|
|
2084
|
+
"docs": "A day cell that is disabled (out of min/max bounds)"
|
|
1390
2085
|
},
|
|
1391
2086
|
{
|
|
1392
|
-
"name": "
|
|
1393
|
-
"docs": "
|
|
2087
|
+
"name": "day--out-of-month",
|
|
2088
|
+
"docs": "A day cell that belongs to an adjacent month"
|
|
2089
|
+
},
|
|
2090
|
+
{
|
|
2091
|
+
"name": "day--selected",
|
|
2092
|
+
"docs": "The currently selected day cell"
|
|
2093
|
+
},
|
|
2094
|
+
{
|
|
2095
|
+
"name": "day--today",
|
|
2096
|
+
"docs": "A day cell representing today"
|
|
2097
|
+
},
|
|
2098
|
+
{
|
|
2099
|
+
"name": "grid",
|
|
2100
|
+
"docs": "The calendar day grid"
|
|
2101
|
+
},
|
|
2102
|
+
{
|
|
2103
|
+
"name": "header",
|
|
2104
|
+
"docs": "The header row containing navigation buttons and month/year label"
|
|
2105
|
+
},
|
|
2106
|
+
{
|
|
2107
|
+
"name": "month-label",
|
|
2108
|
+
"docs": "The month and year label in the header"
|
|
2109
|
+
},
|
|
2110
|
+
{
|
|
2111
|
+
"name": "nav-next",
|
|
2112
|
+
"docs": "The next-month navigation button"
|
|
2113
|
+
},
|
|
2114
|
+
{
|
|
2115
|
+
"name": "nav-prev",
|
|
2116
|
+
"docs": "The previous-month navigation button"
|
|
2117
|
+
},
|
|
2118
|
+
{
|
|
2119
|
+
"name": "panel",
|
|
2120
|
+
"docs": "The outer container panel of the datepicker"
|
|
2121
|
+
},
|
|
2122
|
+
{
|
|
2123
|
+
"name": "week-row",
|
|
2124
|
+
"docs": "A week row within the calendar grid"
|
|
2125
|
+
},
|
|
2126
|
+
{
|
|
2127
|
+
"name": "weekday",
|
|
2128
|
+
"docs": "An individual weekday column header cell"
|
|
2129
|
+
},
|
|
2130
|
+
{
|
|
2131
|
+
"name": "weekday-row",
|
|
2132
|
+
"docs": "The row of weekday column headers"
|
|
1394
2133
|
}
|
|
1395
2134
|
],
|
|
1396
|
-
"parts": [],
|
|
1397
2135
|
"states": [],
|
|
1398
2136
|
"dependents": [],
|
|
1399
|
-
"dependencies": [
|
|
1400
|
-
|
|
2137
|
+
"dependencies": [
|
|
2138
|
+
"lmvz-button",
|
|
2139
|
+
"lmvz-icon",
|
|
2140
|
+
"lmvz-input",
|
|
2141
|
+
"lmvz-popover"
|
|
2142
|
+
],
|
|
2143
|
+
"dependencyGraph": {
|
|
2144
|
+
"lmvz-datepicker": [
|
|
2145
|
+
"lmvz-button",
|
|
2146
|
+
"lmvz-icon",
|
|
2147
|
+
"lmvz-input",
|
|
2148
|
+
"lmvz-popover"
|
|
2149
|
+
]
|
|
2150
|
+
}
|
|
1401
2151
|
},
|
|
1402
2152
|
{
|
|
1403
2153
|
"filePath": "src/components/lmvz-header/lmvz-header.tsx",
|
|
@@ -1754,6 +2504,7 @@
|
|
|
1754
2504
|
"parts": [],
|
|
1755
2505
|
"states": [],
|
|
1756
2506
|
"dependents": [
|
|
2507
|
+
"lmvz-datepicker",
|
|
1757
2508
|
"lmvz-link",
|
|
1758
2509
|
"lmvz-message",
|
|
1759
2510
|
"lmvz-modal",
|
|
@@ -1761,6 +2512,9 @@
|
|
|
1761
2512
|
],
|
|
1762
2513
|
"dependencies": [],
|
|
1763
2514
|
"dependencyGraph": {
|
|
2515
|
+
"lmvz-datepicker": [
|
|
2516
|
+
"lmvz-icon"
|
|
2517
|
+
],
|
|
1764
2518
|
"lmvz-link": [
|
|
1765
2519
|
"lmvz-icon"
|
|
1766
2520
|
],
|
|
@@ -5851,9 +6605,15 @@
|
|
|
5851
6605
|
],
|
|
5852
6606
|
"parts": [],
|
|
5853
6607
|
"states": [],
|
|
5854
|
-
"dependents": [
|
|
6608
|
+
"dependents": [
|
|
6609
|
+
"lmvz-datepicker"
|
|
6610
|
+
],
|
|
5855
6611
|
"dependencies": [],
|
|
5856
|
-
"dependencyGraph": {
|
|
6612
|
+
"dependencyGraph": {
|
|
6613
|
+
"lmvz-datepicker": [
|
|
6614
|
+
"lmvz-input"
|
|
6615
|
+
]
|
|
6616
|
+
}
|
|
5857
6617
|
},
|
|
5858
6618
|
{
|
|
5859
6619
|
"filePath": "src/components/lmvz-link/lmvz-link.tsx",
|
|
@@ -6928,9 +7688,15 @@
|
|
|
6928
7688
|
}
|
|
6929
7689
|
],
|
|
6930
7690
|
"states": [],
|
|
6931
|
-
"dependents": [
|
|
7691
|
+
"dependents": [
|
|
7692
|
+
"lmvz-datepicker"
|
|
7693
|
+
],
|
|
6932
7694
|
"dependencies": [],
|
|
6933
|
-
"dependencyGraph": {
|
|
7695
|
+
"dependencyGraph": {
|
|
7696
|
+
"lmvz-datepicker": [
|
|
7697
|
+
"lmvz-popover"
|
|
7698
|
+
]
|
|
7699
|
+
}
|
|
6934
7700
|
},
|
|
6935
7701
|
{
|
|
6936
7702
|
"filePath": "src/components/lmvz-radio/lmvz-radio.tsx",
|
|
@@ -8762,6 +9528,21 @@
|
|
|
8762
9528
|
"docstring": "",
|
|
8763
9529
|
"path": "src/api/ds.types.d.ts"
|
|
8764
9530
|
},
|
|
9531
|
+
"../../lib/ts/src/date/IsoDateString.d.ts::IsoYearMonthString": {
|
|
9532
|
+
"declaration": "`${number}-${number}`",
|
|
9533
|
+
"docstring": "",
|
|
9534
|
+
"path": "../../lib/ts/src/date/IsoDateString.d.ts"
|
|
9535
|
+
},
|
|
9536
|
+
"../../lib/ts/src/date/IsoDateString.d.ts::IsoDateString": {
|
|
9537
|
+
"declaration": "`${number}-${number}-${number}`",
|
|
9538
|
+
"docstring": "",
|
|
9539
|
+
"path": "../../lib/ts/src/date/IsoDateString.d.ts"
|
|
9540
|
+
},
|
|
9541
|
+
"src/api/index.d.ts::Datepicker": {
|
|
9542
|
+
"declaration": "any",
|
|
9543
|
+
"docstring": "",
|
|
9544
|
+
"path": "src/api/index.d.ts"
|
|
9545
|
+
},
|
|
8765
9546
|
"../../lib/ts/dist/validation/SVGString.d.ts::SVGString": {
|
|
8766
9547
|
"declaration": "export type SVGString = string & Brand.Brand<'SVG'>;",
|
|
8767
9548
|
"docstring": "",
|