@tylertech/forge 3.8.1 → 3.9.0-dev.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.
Files changed (40) hide show
  1. package/README.md +23 -0
  2. package/custom-elements.json +1263 -876
  3. package/dist/lib.js +18 -18
  4. package/dist/lib.js.map +3 -3
  5. package/dist/toolbar/forge-toolbar.css +1 -0
  6. package/dist/vscode.css-custom-data.json +37 -37
  7. package/dist/vscode.html-custom-data.json +138 -78
  8. package/esm/calendar/calendar-adapter.d.ts +24 -0
  9. package/esm/calendar/calendar-adapter.js +67 -1
  10. package/esm/calendar/calendar-constants.d.ts +34 -0
  11. package/esm/calendar/calendar-constants.js +33 -0
  12. package/esm/calendar/calendar-core.d.ts +60 -0
  13. package/esm/calendar/calendar-core.js +220 -2
  14. package/esm/calendar/calendar-dom-utils.d.ts +6 -0
  15. package/esm/calendar/calendar-dom-utils.js +36 -0
  16. package/esm/calendar/calendar.d.ts +40 -1
  17. package/esm/calendar/calendar.js +80 -2
  18. package/esm/calendar/core/calendar-base.d.ts +3 -0
  19. package/esm/calendar/core/date-range.d.ts +2 -0
  20. package/esm/calendar/core/date-range.js +1 -0
  21. package/esm/date-picker/base/base-date-picker-constants.d.ts +3 -0
  22. package/esm/date-picker/base/base-date-picker-constants.js +3 -0
  23. package/esm/date-picker/base/base-date-picker-core.d.ts +15 -0
  24. package/esm/date-picker/base/base-date-picker-core.js +30 -0
  25. package/esm/date-picker/base/base-date-picker.d.ts +12 -0
  26. package/esm/date-picker/base/base-date-picker.js +24 -0
  27. package/esm/date-picker/date-picker-core.d.ts +3 -0
  28. package/esm/date-picker/date-picker-core.js +20 -0
  29. package/esm/date-range-picker/date-range-picker-constants.d.ts +3 -0
  30. package/esm/date-range-picker/date-range-picker-constants.js +1 -0
  31. package/esm/date-range-picker/date-range-picker-core.d.ts +3 -0
  32. package/esm/date-range-picker/date-range-picker-core.js +62 -2
  33. package/esm/date-range-picker/date-range-picker.d.ts +3 -0
  34. package/esm/date-range-picker/date-range-picker.js +3 -0
  35. package/esm/split-view/split-view-panel/split-view-panel.js +1 -1
  36. package/esm/toolbar/toolbar.js +1 -1
  37. package/package.json +2 -2
  38. package/sass/calendar/_mixins.scss +3 -2
  39. package/sass/toolbar/_core.scss +5 -0
  40. package/sass/toolbar/toolbar.scss +4 -0
@@ -66,6 +66,382 @@
66
66
  }
67
67
  ]
68
68
  },
69
+ {
70
+ "kind": "javascript-module",
71
+ "path": "src/lib/backdrop/backdrop.ts",
72
+ "declarations": [
73
+ {
74
+ "kind": "class",
75
+ "description": "",
76
+ "name": "BackdropComponent",
77
+ "cssProperties": [
78
+ {
79
+ "description": "The backdrop background color.",
80
+ "name": "--forge-backdrop-background"
81
+ },
82
+ {
83
+ "description": "The backdrop opacity.",
84
+ "name": "--forge-backdrop-opacity"
85
+ },
86
+ {
87
+ "description": "The backdrop z-index.",
88
+ "name": "--forge-backdrop-z-index"
89
+ },
90
+ {
91
+ "description": "The animation duration for the enter animation.",
92
+ "name": "--forge-backdrop-enter-animation-duration"
93
+ },
94
+ {
95
+ "description": "The animation easing for the enter animation.",
96
+ "name": "--forge-backdrop-enter-animation-easing"
97
+ },
98
+ {
99
+ "description": "The animation duration for the exit animation.",
100
+ "name": "--forge-backdrop-exit-animation-duration"
101
+ },
102
+ {
103
+ "description": "The animation easing for the exit animation.",
104
+ "name": "--forge-backdrop-exit-animation-easing"
105
+ }
106
+ ],
107
+ "cssParts": [
108
+ {
109
+ "description": "The root element of the backdrop.",
110
+ "name": "root"
111
+ }
112
+ ],
113
+ "members": [
114
+ {
115
+ "kind": "field",
116
+ "name": "_visible",
117
+ "type": {
118
+ "text": "boolean"
119
+ },
120
+ "privacy": "private",
121
+ "default": "false"
122
+ },
123
+ {
124
+ "kind": "field",
125
+ "name": "_fixed",
126
+ "type": {
127
+ "text": "boolean"
128
+ },
129
+ "privacy": "private",
130
+ "default": "false"
131
+ },
132
+ {
133
+ "kind": "field",
134
+ "name": "_rootElement",
135
+ "type": {
136
+ "text": "HTMLElement"
137
+ },
138
+ "privacy": "private"
139
+ },
140
+ {
141
+ "kind": "field",
142
+ "name": "_animationController",
143
+ "type": {
144
+ "text": "AbortController | undefined"
145
+ },
146
+ "privacy": "private"
147
+ },
148
+ {
149
+ "kind": "method",
150
+ "name": "_applyVisibility",
151
+ "privacy": "private",
152
+ "return": {
153
+ "type": {
154
+ "text": "Promise<void>"
155
+ }
156
+ },
157
+ "parameters": [
158
+ {
159
+ "name": "visible",
160
+ "type": {
161
+ "text": "boolean"
162
+ }
163
+ },
164
+ {
165
+ "name": "{ animate }",
166
+ "default": "{ animate: true }"
167
+ }
168
+ ]
169
+ },
170
+ {
171
+ "kind": "method",
172
+ "name": "show",
173
+ "privacy": "public",
174
+ "return": {
175
+ "type": {
176
+ "text": "void"
177
+ }
178
+ },
179
+ "description": "Immediately shows the backdrop by setting the `visibility` to `true` without animations."
180
+ },
181
+ {
182
+ "kind": "method",
183
+ "name": "hide",
184
+ "privacy": "public",
185
+ "return": {
186
+ "type": {
187
+ "text": "void"
188
+ }
189
+ },
190
+ "description": "Immediately hides the backdrop by setting the `visibility` to `false` without animations."
191
+ },
192
+ {
193
+ "kind": "method",
194
+ "name": "fadeIn",
195
+ "privacy": "public",
196
+ "return": {
197
+ "type": {
198
+ "text": "Promise<void>"
199
+ }
200
+ },
201
+ "description": "Sets the `visibility` to `true` and animates in."
202
+ },
203
+ {
204
+ "kind": "method",
205
+ "name": "fadeOut",
206
+ "privacy": "public",
207
+ "return": {
208
+ "type": {
209
+ "text": "Promise<void>"
210
+ }
211
+ },
212
+ "description": "Sets the `visibility` to `false` and animates out."
213
+ },
214
+ {
215
+ "kind": "field",
216
+ "name": "visible",
217
+ "type": {
218
+ "text": "boolean"
219
+ },
220
+ "privacy": "public",
221
+ "description": "Whether the backdrop is visible.",
222
+ "default": "false"
223
+ },
224
+ {
225
+ "kind": "field",
226
+ "name": "fixed",
227
+ "type": {
228
+ "text": "boolean"
229
+ },
230
+ "privacy": "public",
231
+ "description": "Whether the backdrop uses \"fixed\" or \"relative\" positioning.",
232
+ "default": "false"
233
+ }
234
+ ],
235
+ "attributes": [
236
+ {
237
+ "type": {
238
+ "text": "boolean"
239
+ },
240
+ "description": "Whether the backdrop is visible.",
241
+ "name": "visible",
242
+ "default": "false"
243
+ },
244
+ {
245
+ "type": {
246
+ "text": "boolean"
247
+ },
248
+ "description": "Whether the backdrop uses \"fixed\" or \"relative\" positioning.",
249
+ "name": "fixed",
250
+ "default": "false"
251
+ }
252
+ ],
253
+ "superclass": {
254
+ "name": "BaseComponent",
255
+ "module": "/src/lib/core/base/base-component"
256
+ },
257
+ "tagName": "forge-backdrop",
258
+ "customElement": true
259
+ }
260
+ ],
261
+ "exports": [
262
+ {
263
+ "kind": "js",
264
+ "name": "BackdropComponent",
265
+ "declaration": {
266
+ "name": "BackdropComponent",
267
+ "module": "src/lib/backdrop/backdrop.ts"
268
+ }
269
+ }
270
+ ]
271
+ },
272
+ {
273
+ "kind": "javascript-module",
274
+ "path": "src/lib/badge/badge.ts",
275
+ "declarations": [
276
+ {
277
+ "kind": "variable",
278
+ "name": "BADGE_TAG_NAME",
279
+ "type": {
280
+ "text": "keyof HTMLElementTagNameMap"
281
+ },
282
+ "default": "'forge-badge'"
283
+ },
284
+ {
285
+ "kind": "class",
286
+ "description": "",
287
+ "name": "BadgeComponent",
288
+ "cssProperties": [
289
+ {
290
+ "description": "The background color.",
291
+ "name": "--forge-badge-background"
292
+ },
293
+ {
294
+ "description": "The text color.",
295
+ "name": "--forge-badge-color"
296
+ },
297
+ {
298
+ "description": "The shape radius.",
299
+ "name": "--forge-badge-shape"
300
+ },
301
+ {
302
+ "description": "The inline padding.",
303
+ "name": "--forge-badge-padding-inline"
304
+ },
305
+ {
306
+ "description": "The block padding.",
307
+ "name": "--forge-badge-padding-block"
308
+ },
309
+ {
310
+ "description": "The border width.",
311
+ "name": "--forge-badge-border-width"
312
+ },
313
+ {
314
+ "description": "The border color.",
315
+ "name": "--forge-badge-border-color"
316
+ },
317
+ {
318
+ "description": "The border style.",
319
+ "name": "--forge-badge-border-style"
320
+ },
321
+ {
322
+ "description": "The spacing between the content within the badge.",
323
+ "name": "--forge-badge-gap"
324
+ }
325
+ ],
326
+ "slots": [
327
+ {
328
+ "description": "Default content placed inside the badge.",
329
+ "name": ""
330
+ },
331
+ {
332
+ "description": "Content placed before the default content.",
333
+ "name": "start"
334
+ },
335
+ {
336
+ "description": "Content placed after the default content.",
337
+ "name": "end"
338
+ }
339
+ ],
340
+ "members": [
341
+ {
342
+ "kind": "field",
343
+ "name": "#internals",
344
+ "privacy": "private",
345
+ "type": {
346
+ "text": "ElementInternals"
347
+ }
348
+ },
349
+ {
350
+ "kind": "field",
351
+ "name": "dot",
352
+ "type": {
353
+ "text": "boolean"
354
+ },
355
+ "privacy": "public",
356
+ "default": "false",
357
+ "description": "Controls whether the badge will be a small dot without any content visible."
358
+ },
359
+ {
360
+ "kind": "field",
361
+ "name": "theme",
362
+ "type": {
363
+ "text": "BadgeTheme"
364
+ },
365
+ "privacy": "public",
366
+ "default": "'default'",
367
+ "description": "The theme of the badge."
368
+ },
369
+ {
370
+ "kind": "field",
371
+ "name": "strong",
372
+ "type": {
373
+ "text": "boolean"
374
+ },
375
+ "privacy": "public",
376
+ "default": "false",
377
+ "description": "Controls whether the badge will have a stronger visual appearance."
378
+ },
379
+ {
380
+ "kind": "field",
381
+ "name": "hide",
382
+ "type": {
383
+ "text": "boolean"
384
+ },
385
+ "privacy": "public",
386
+ "default": "false",
387
+ "description": "Controls whether the badge is visible."
388
+ }
389
+ ],
390
+ "superclass": {
391
+ "name": "BaseLitElement",
392
+ "module": "/src/lib/core/base/base-lit-element"
393
+ },
394
+ "tagName": "forge-badge",
395
+ "states": [
396
+ {
397
+ "name": "dot",
398
+ "description": "The badge is rendered as a dot."
399
+ },
400
+ {
401
+ "name": "strong",
402
+ "description": "The badge has a stronger visual appearance."
403
+ },
404
+ {
405
+ "name": "hide",
406
+ "description": "The badge is hidden."
407
+ }
408
+ ],
409
+ "cssClasses": [
410
+ {
411
+ "name": "forge-badge",
412
+ "description": "The badge class _(required)_."
413
+ },
414
+ {
415
+ "name": "forge-badge--dot",
416
+ "description": "Renders the badge as a dot."
417
+ },
418
+ {
419
+ "name": "forge-badge__icon",
420
+ "description": "Styles a child element as an icon."
421
+ }
422
+ ],
423
+ "customElement": true
424
+ }
425
+ ],
426
+ "exports": [
427
+ {
428
+ "kind": "js",
429
+ "name": "BADGE_TAG_NAME",
430
+ "declaration": {
431
+ "name": "BADGE_TAG_NAME",
432
+ "module": "src/lib/badge/badge.ts"
433
+ }
434
+ },
435
+ {
436
+ "kind": "js",
437
+ "name": "BadgeComponent",
438
+ "declaration": {
439
+ "name": "BadgeComponent",
440
+ "module": "src/lib/badge/badge.ts"
441
+ }
442
+ }
443
+ ]
444
+ },
69
445
  {
70
446
  "kind": "javascript-module",
71
447
  "path": "src/lib/autocomplete/autocomplete.ts",
@@ -975,382 +1351,6 @@
975
1351
  }
976
1352
  ]
977
1353
  },
978
- {
979
- "kind": "javascript-module",
980
- "path": "src/lib/backdrop/backdrop.ts",
981
- "declarations": [
982
- {
983
- "kind": "class",
984
- "description": "",
985
- "name": "BackdropComponent",
986
- "cssProperties": [
987
- {
988
- "description": "The backdrop background color.",
989
- "name": "--forge-backdrop-background"
990
- },
991
- {
992
- "description": "The backdrop opacity.",
993
- "name": "--forge-backdrop-opacity"
994
- },
995
- {
996
- "description": "The backdrop z-index.",
997
- "name": "--forge-backdrop-z-index"
998
- },
999
- {
1000
- "description": "The animation duration for the enter animation.",
1001
- "name": "--forge-backdrop-enter-animation-duration"
1002
- },
1003
- {
1004
- "description": "The animation easing for the enter animation.",
1005
- "name": "--forge-backdrop-enter-animation-easing"
1006
- },
1007
- {
1008
- "description": "The animation duration for the exit animation.",
1009
- "name": "--forge-backdrop-exit-animation-duration"
1010
- },
1011
- {
1012
- "description": "The animation easing for the exit animation.",
1013
- "name": "--forge-backdrop-exit-animation-easing"
1014
- }
1015
- ],
1016
- "cssParts": [
1017
- {
1018
- "description": "The root element of the backdrop.",
1019
- "name": "root"
1020
- }
1021
- ],
1022
- "members": [
1023
- {
1024
- "kind": "field",
1025
- "name": "_visible",
1026
- "type": {
1027
- "text": "boolean"
1028
- },
1029
- "privacy": "private",
1030
- "default": "false"
1031
- },
1032
- {
1033
- "kind": "field",
1034
- "name": "_fixed",
1035
- "type": {
1036
- "text": "boolean"
1037
- },
1038
- "privacy": "private",
1039
- "default": "false"
1040
- },
1041
- {
1042
- "kind": "field",
1043
- "name": "_rootElement",
1044
- "type": {
1045
- "text": "HTMLElement"
1046
- },
1047
- "privacy": "private"
1048
- },
1049
- {
1050
- "kind": "field",
1051
- "name": "_animationController",
1052
- "type": {
1053
- "text": "AbortController | undefined"
1054
- },
1055
- "privacy": "private"
1056
- },
1057
- {
1058
- "kind": "method",
1059
- "name": "_applyVisibility",
1060
- "privacy": "private",
1061
- "return": {
1062
- "type": {
1063
- "text": "Promise<void>"
1064
- }
1065
- },
1066
- "parameters": [
1067
- {
1068
- "name": "visible",
1069
- "type": {
1070
- "text": "boolean"
1071
- }
1072
- },
1073
- {
1074
- "name": "{ animate }",
1075
- "default": "{ animate: true }"
1076
- }
1077
- ]
1078
- },
1079
- {
1080
- "kind": "method",
1081
- "name": "show",
1082
- "privacy": "public",
1083
- "return": {
1084
- "type": {
1085
- "text": "void"
1086
- }
1087
- },
1088
- "description": "Immediately shows the backdrop by setting the `visibility` to `true` without animations."
1089
- },
1090
- {
1091
- "kind": "method",
1092
- "name": "hide",
1093
- "privacy": "public",
1094
- "return": {
1095
- "type": {
1096
- "text": "void"
1097
- }
1098
- },
1099
- "description": "Immediately hides the backdrop by setting the `visibility` to `false` without animations."
1100
- },
1101
- {
1102
- "kind": "method",
1103
- "name": "fadeIn",
1104
- "privacy": "public",
1105
- "return": {
1106
- "type": {
1107
- "text": "Promise<void>"
1108
- }
1109
- },
1110
- "description": "Sets the `visibility` to `true` and animates in."
1111
- },
1112
- {
1113
- "kind": "method",
1114
- "name": "fadeOut",
1115
- "privacy": "public",
1116
- "return": {
1117
- "type": {
1118
- "text": "Promise<void>"
1119
- }
1120
- },
1121
- "description": "Sets the `visibility` to `false` and animates out."
1122
- },
1123
- {
1124
- "kind": "field",
1125
- "name": "visible",
1126
- "type": {
1127
- "text": "boolean"
1128
- },
1129
- "privacy": "public",
1130
- "description": "Whether the backdrop is visible.",
1131
- "default": "false"
1132
- },
1133
- {
1134
- "kind": "field",
1135
- "name": "fixed",
1136
- "type": {
1137
- "text": "boolean"
1138
- },
1139
- "privacy": "public",
1140
- "description": "Whether the backdrop uses \"fixed\" or \"relative\" positioning.",
1141
- "default": "false"
1142
- }
1143
- ],
1144
- "attributes": [
1145
- {
1146
- "type": {
1147
- "text": "boolean"
1148
- },
1149
- "description": "Whether the backdrop is visible.",
1150
- "name": "visible",
1151
- "default": "false"
1152
- },
1153
- {
1154
- "type": {
1155
- "text": "boolean"
1156
- },
1157
- "description": "Whether the backdrop uses \"fixed\" or \"relative\" positioning.",
1158
- "name": "fixed",
1159
- "default": "false"
1160
- }
1161
- ],
1162
- "superclass": {
1163
- "name": "BaseComponent",
1164
- "module": "/src/lib/core/base/base-component"
1165
- },
1166
- "tagName": "forge-backdrop",
1167
- "customElement": true
1168
- }
1169
- ],
1170
- "exports": [
1171
- {
1172
- "kind": "js",
1173
- "name": "BackdropComponent",
1174
- "declaration": {
1175
- "name": "BackdropComponent",
1176
- "module": "src/lib/backdrop/backdrop.ts"
1177
- }
1178
- }
1179
- ]
1180
- },
1181
- {
1182
- "kind": "javascript-module",
1183
- "path": "src/lib/badge/badge.ts",
1184
- "declarations": [
1185
- {
1186
- "kind": "variable",
1187
- "name": "BADGE_TAG_NAME",
1188
- "type": {
1189
- "text": "keyof HTMLElementTagNameMap"
1190
- },
1191
- "default": "'forge-badge'"
1192
- },
1193
- {
1194
- "kind": "class",
1195
- "description": "",
1196
- "name": "BadgeComponent",
1197
- "cssProperties": [
1198
- {
1199
- "description": "The background color.",
1200
- "name": "--forge-badge-background"
1201
- },
1202
- {
1203
- "description": "The text color.",
1204
- "name": "--forge-badge-color"
1205
- },
1206
- {
1207
- "description": "The shape radius.",
1208
- "name": "--forge-badge-shape"
1209
- },
1210
- {
1211
- "description": "The inline padding.",
1212
- "name": "--forge-badge-padding-inline"
1213
- },
1214
- {
1215
- "description": "The block padding.",
1216
- "name": "--forge-badge-padding-block"
1217
- },
1218
- {
1219
- "description": "The border width.",
1220
- "name": "--forge-badge-border-width"
1221
- },
1222
- {
1223
- "description": "The border color.",
1224
- "name": "--forge-badge-border-color"
1225
- },
1226
- {
1227
- "description": "The border style.",
1228
- "name": "--forge-badge-border-style"
1229
- },
1230
- {
1231
- "description": "The spacing between the content within the badge.",
1232
- "name": "--forge-badge-gap"
1233
- }
1234
- ],
1235
- "slots": [
1236
- {
1237
- "description": "Default content placed inside the badge.",
1238
- "name": ""
1239
- },
1240
- {
1241
- "description": "Content placed before the default content.",
1242
- "name": "start"
1243
- },
1244
- {
1245
- "description": "Content placed after the default content.",
1246
- "name": "end"
1247
- }
1248
- ],
1249
- "members": [
1250
- {
1251
- "kind": "field",
1252
- "name": "#internals",
1253
- "privacy": "private",
1254
- "type": {
1255
- "text": "ElementInternals"
1256
- }
1257
- },
1258
- {
1259
- "kind": "field",
1260
- "name": "dot",
1261
- "type": {
1262
- "text": "boolean"
1263
- },
1264
- "privacy": "public",
1265
- "default": "false",
1266
- "description": "Controls whether the badge will be a small dot without any content visible."
1267
- },
1268
- {
1269
- "kind": "field",
1270
- "name": "theme",
1271
- "type": {
1272
- "text": "BadgeTheme"
1273
- },
1274
- "privacy": "public",
1275
- "default": "'default'",
1276
- "description": "The theme of the badge."
1277
- },
1278
- {
1279
- "kind": "field",
1280
- "name": "strong",
1281
- "type": {
1282
- "text": "boolean"
1283
- },
1284
- "privacy": "public",
1285
- "default": "false",
1286
- "description": "Controls whether the badge will have a stronger visual appearance."
1287
- },
1288
- {
1289
- "kind": "field",
1290
- "name": "hide",
1291
- "type": {
1292
- "text": "boolean"
1293
- },
1294
- "privacy": "public",
1295
- "default": "false",
1296
- "description": "Controls whether the badge is visible."
1297
- }
1298
- ],
1299
- "superclass": {
1300
- "name": "BaseLitElement",
1301
- "module": "/src/lib/core/base/base-lit-element"
1302
- },
1303
- "tagName": "forge-badge",
1304
- "states": [
1305
- {
1306
- "name": "dot",
1307
- "description": "The badge is rendered as a dot."
1308
- },
1309
- {
1310
- "name": "strong",
1311
- "description": "The badge has a stronger visual appearance."
1312
- },
1313
- {
1314
- "name": "hide",
1315
- "description": "The badge is hidden."
1316
- }
1317
- ],
1318
- "cssClasses": [
1319
- {
1320
- "name": "forge-badge",
1321
- "description": "The badge class _(required)_."
1322
- },
1323
- {
1324
- "name": "forge-badge--dot",
1325
- "description": "Renders the badge as a dot."
1326
- },
1327
- {
1328
- "name": "forge-badge__icon",
1329
- "description": "Styles a child element as an icon."
1330
- }
1331
- ],
1332
- "customElement": true
1333
- }
1334
- ],
1335
- "exports": [
1336
- {
1337
- "kind": "js",
1338
- "name": "BADGE_TAG_NAME",
1339
- "declaration": {
1340
- "name": "BADGE_TAG_NAME",
1341
- "module": "src/lib/badge/badge.ts"
1342
- }
1343
- },
1344
- {
1345
- "kind": "js",
1346
- "name": "BadgeComponent",
1347
- "declaration": {
1348
- "name": "BadgeComponent",
1349
- "module": "src/lib/badge/badge.ts"
1350
- }
1351
- }
1352
- ]
1353
- },
1354
1354
  {
1355
1355
  "kind": "javascript-module",
1356
1356
  "path": "src/lib/banner/banner.ts",
@@ -2521,6 +2521,18 @@
2521
2521
  "description": "Text to display in the today button.",
2522
2522
  "name": "today-button-text"
2523
2523
  },
2524
+ {
2525
+ "description": "Text to display in the yesterday button.",
2526
+ "name": "yesterday-button-text"
2527
+ },
2528
+ {
2529
+ "description": "Text to display in the last seven days button.",
2530
+ "name": "last-seven-days-button-text"
2531
+ },
2532
+ {
2533
+ "description": "Text to display in the last thirty days button.",
2534
+ "name": "last-thirty-days-button-text"
2535
+ },
2524
2536
  {
2525
2537
  "description": "Text to display in the clear button.",
2526
2538
  "name": "clear-button-text"
@@ -2840,6 +2852,93 @@
2840
2852
  "privacy": "public",
2841
2853
  "description": "Callback function to call when the today button is clicked."
2842
2854
  },
2855
+ {
2856
+ "kind": "field",
2857
+ "name": "showYesterday",
2858
+ "type": {
2859
+ "text": "boolean"
2860
+ },
2861
+ "privacy": "public",
2862
+ "description": "Whether to show the yesterday button.",
2863
+ "default": "true"
2864
+ },
2865
+ {
2866
+ "kind": "field",
2867
+ "name": "yesterdayButton",
2868
+ "type": {
2869
+ "text": "boolean"
2870
+ },
2871
+ "privacy": "public",
2872
+ "description": "Whether to show a button to select yesterday.",
2873
+ "default": "false"
2874
+ },
2875
+ {
2876
+ "kind": "field",
2877
+ "name": "yesterdayCallback",
2878
+ "type": {
2879
+ "text": "() => void | undefined"
2880
+ },
2881
+ "privacy": "public",
2882
+ "description": "Callback function to call when the yesterday button is clicked."
2883
+ },
2884
+ {
2885
+ "kind": "field",
2886
+ "name": "showLastSevenDays",
2887
+ "type": {
2888
+ "text": "boolean"
2889
+ },
2890
+ "privacy": "public",
2891
+ "description": "Whether to show the last seven days button.",
2892
+ "default": "true"
2893
+ },
2894
+ {
2895
+ "kind": "field",
2896
+ "name": "lastSevenDaysButton",
2897
+ "type": {
2898
+ "text": "boolean"
2899
+ },
2900
+ "privacy": "public",
2901
+ "description": "Whether to show a button to select last seven days.",
2902
+ "default": "false"
2903
+ },
2904
+ {
2905
+ "kind": "field",
2906
+ "name": "lastSevenDaysCallback",
2907
+ "type": {
2908
+ "text": "() => void | undefined"
2909
+ },
2910
+ "privacy": "public",
2911
+ "description": "Callback function to call when the last seven days button is clicked."
2912
+ },
2913
+ {
2914
+ "kind": "field",
2915
+ "name": "showLastThirtyDays",
2916
+ "type": {
2917
+ "text": "boolean"
2918
+ },
2919
+ "privacy": "public",
2920
+ "description": "Whether to show the last thirty days button.",
2921
+ "default": "true"
2922
+ },
2923
+ {
2924
+ "kind": "field",
2925
+ "name": "lastThirtyDaysButton",
2926
+ "type": {
2927
+ "text": "boolean"
2928
+ },
2929
+ "privacy": "public",
2930
+ "description": "Whether to show a button to select last thirty days.",
2931
+ "default": "false"
2932
+ },
2933
+ {
2934
+ "kind": "field",
2935
+ "name": "lastThirtyDaysCallback",
2936
+ "type": {
2937
+ "text": "() => void | undefined"
2938
+ },
2939
+ "privacy": "public",
2940
+ "description": "Callback function to call when the last thirty days button is clicked."
2941
+ },
2843
2942
  {
2844
2943
  "kind": "field",
2845
2944
  "name": "tooltipBuilder",
@@ -3040,6 +3139,36 @@
3040
3139
  },
3041
3140
  "description": "Sets the calendar to today."
3042
3141
  },
3142
+ {
3143
+ "kind": "method",
3144
+ "name": "yesterday",
3145
+ "privacy": "public",
3146
+ "return": {
3147
+ "type": {
3148
+ "text": "void"
3149
+ }
3150
+ }
3151
+ },
3152
+ {
3153
+ "kind": "method",
3154
+ "name": "lastSevenDays",
3155
+ "privacy": "public",
3156
+ "return": {
3157
+ "type": {
3158
+ "text": "void"
3159
+ }
3160
+ }
3161
+ },
3162
+ {
3163
+ "kind": "method",
3164
+ "name": "lastThirtyDays",
3165
+ "privacy": "public",
3166
+ "return": {
3167
+ "type": {
3168
+ "text": "void"
3169
+ }
3170
+ }
3171
+ },
3043
3172
  {
3044
3173
  "kind": "method",
3045
3174
  "name": "toggleDate",
@@ -3244,7 +3373,55 @@
3244
3373
  },
3245
3374
  "description": "Whether to show a button to select today.",
3246
3375
  "name": "today-button",
3247
- "default": "fakse"
3376
+ "default": "false"
3377
+ },
3378
+ {
3379
+ "type": {
3380
+ "text": "boolean"
3381
+ },
3382
+ "description": "Whether to show the yesterday button.",
3383
+ "name": "show-yesterday",
3384
+ "default": "true"
3385
+ },
3386
+ {
3387
+ "type": {
3388
+ "text": "boolean"
3389
+ },
3390
+ "description": "Whether to show a button to select yesterday.",
3391
+ "name": "yesterday-button",
3392
+ "default": "false"
3393
+ },
3394
+ {
3395
+ "type": {
3396
+ "text": "boolean"
3397
+ },
3398
+ "description": "Whether to show the last seven days button.",
3399
+ "name": "show-last-seven-days",
3400
+ "default": "true"
3401
+ },
3402
+ {
3403
+ "type": {
3404
+ "text": "boolean"
3405
+ },
3406
+ "description": "Whether to show a button to select last seven days.",
3407
+ "name": "last-seven-days-button",
3408
+ "default": "false"
3409
+ },
3410
+ {
3411
+ "type": {
3412
+ "text": "boolean"
3413
+ },
3414
+ "description": "Whether to show the last thirty days button.",
3415
+ "name": "show-last-thirty-days",
3416
+ "default": "true"
3417
+ },
3418
+ {
3419
+ "type": {
3420
+ "text": "boolean"
3421
+ },
3422
+ "description": "Whether to show a button to select last thirty days.",
3423
+ "name": "last-thirty-days-button",
3424
+ "default": "false"
3248
3425
  },
3249
3426
  {
3250
3427
  "type": {
@@ -5921,6 +6098,48 @@
5921
6098
  "module": "src/lib/date-picker/base/base-date-picker.ts"
5922
6099
  }
5923
6100
  },
6101
+ {
6102
+ "kind": "field",
6103
+ "name": "showYesterday",
6104
+ "type": {
6105
+ "text": "boolean"
6106
+ },
6107
+ "privacy": "public",
6108
+ "description": "Whether the yesterday button is visible in the popup.",
6109
+ "default": "false",
6110
+ "inheritedFrom": {
6111
+ "name": "BaseDatePickerComponent",
6112
+ "module": "src/lib/date-picker/base/base-date-picker.ts"
6113
+ }
6114
+ },
6115
+ {
6116
+ "kind": "field",
6117
+ "name": "showLastSevenDays",
6118
+ "type": {
6119
+ "text": "boolean"
6120
+ },
6121
+ "privacy": "public",
6122
+ "description": "Whether the last seven days button is visible in the popup.",
6123
+ "default": "false",
6124
+ "inheritedFrom": {
6125
+ "name": "BaseDatePickerComponent",
6126
+ "module": "src/lib/date-picker/base/base-date-picker.ts"
6127
+ }
6128
+ },
6129
+ {
6130
+ "kind": "field",
6131
+ "name": "showLastThirtyDays",
6132
+ "type": {
6133
+ "text": "boolean"
6134
+ },
6135
+ "privacy": "public",
6136
+ "description": "Whether the last thirty days button is visible in the popup.",
6137
+ "default": "false",
6138
+ "inheritedFrom": {
6139
+ "name": "BaseDatePickerComponent",
6140
+ "module": "src/lib/date-picker/base/base-date-picker.ts"
6141
+ }
6142
+ },
5924
6143
  {
5925
6144
  "kind": "field",
5926
6145
  "name": "showClear",
@@ -6240,6 +6459,42 @@
6240
6459
  "module": "src/lib/date-picker/base/base-date-picker.ts"
6241
6460
  }
6242
6461
  },
6462
+ {
6463
+ "type": {
6464
+ "text": "boolean"
6465
+ },
6466
+ "description": "Whether the yesterday button is visible in the popup.",
6467
+ "name": "show-yesterday",
6468
+ "default": "false",
6469
+ "inheritedFrom": {
6470
+ "name": "BaseDatePickerComponent",
6471
+ "module": "src/lib/date-picker/base/base-date-picker.ts"
6472
+ }
6473
+ },
6474
+ {
6475
+ "type": {
6476
+ "text": "boolean"
6477
+ },
6478
+ "description": "Whether the last seven days button is visible in the popup.",
6479
+ "name": "show-last-seven-days",
6480
+ "default": "false",
6481
+ "inheritedFrom": {
6482
+ "name": "BaseDatePickerComponent",
6483
+ "module": "src/lib/date-picker/base/base-date-picker.ts"
6484
+ }
6485
+ },
6486
+ {
6487
+ "type": {
6488
+ "text": "boolean"
6489
+ },
6490
+ "description": "Whether the last thirty days button is visible in the popup.",
6491
+ "name": "show-last-thirty-days",
6492
+ "default": "false",
6493
+ "inheritedFrom": {
6494
+ "name": "BaseDatePickerComponent",
6495
+ "module": "src/lib/date-picker/base/base-date-picker.ts"
6496
+ }
6497
+ },
6243
6498
  {
6244
6499
  "type": {
6245
6500
  "text": "DatePickerValueMode"
@@ -6564,6 +6819,48 @@
6564
6819
  "module": "src/lib/date-picker/base/base-date-picker.ts"
6565
6820
  }
6566
6821
  },
6822
+ {
6823
+ "kind": "field",
6824
+ "name": "showYesterday",
6825
+ "type": {
6826
+ "text": "boolean"
6827
+ },
6828
+ "privacy": "public",
6829
+ "description": "Gets/sets the state of whether to show the \"Yesterday\" button.",
6830
+ "default": "true",
6831
+ "inheritedFrom": {
6832
+ "name": "BaseDatePickerComponent",
6833
+ "module": "src/lib/date-picker/base/base-date-picker.ts"
6834
+ }
6835
+ },
6836
+ {
6837
+ "kind": "field",
6838
+ "name": "showLastSevenDays",
6839
+ "type": {
6840
+ "text": "boolean"
6841
+ },
6842
+ "privacy": "public",
6843
+ "description": "Gets/sets the state of whether to show the \"Last 7 days\" button.",
6844
+ "default": "true",
6845
+ "inheritedFrom": {
6846
+ "name": "BaseDatePickerComponent",
6847
+ "module": "src/lib/date-picker/base/base-date-picker.ts"
6848
+ }
6849
+ },
6850
+ {
6851
+ "kind": "field",
6852
+ "name": "showLastThirtyDays",
6853
+ "type": {
6854
+ "text": "boolean"
6855
+ },
6856
+ "privacy": "public",
6857
+ "description": "Gets/sets the state of whether to show the \"Last 30 days\" button.",
6858
+ "default": "true",
6859
+ "inheritedFrom": {
6860
+ "name": "BaseDatePickerComponent",
6861
+ "module": "src/lib/date-picker/base/base-date-picker.ts"
6862
+ }
6863
+ },
6567
6864
  {
6568
6865
  "kind": "field",
6569
6866
  "name": "showClear",
@@ -6833,6 +7130,42 @@
6833
7130
  "module": "src/lib/date-picker/base/base-date-picker.ts"
6834
7131
  }
6835
7132
  },
7133
+ {
7134
+ "type": {
7135
+ "text": "boolean"
7136
+ },
7137
+ "description": "Whether the yesterday button is visible in the popup.",
7138
+ "name": "show-yesterday",
7139
+ "default": "false",
7140
+ "inheritedFrom": {
7141
+ "name": "BaseDatePickerComponent",
7142
+ "module": "src/lib/date-picker/base/base-date-picker.ts"
7143
+ }
7144
+ },
7145
+ {
7146
+ "type": {
7147
+ "text": "boolean"
7148
+ },
7149
+ "description": "Whether the last seven days button is visible in the popup.",
7150
+ "name": "show-last-seven-days",
7151
+ "default": "false",
7152
+ "inheritedFrom": {
7153
+ "name": "BaseDatePickerComponent",
7154
+ "module": "src/lib/date-picker/base/base-date-picker.ts"
7155
+ }
7156
+ },
7157
+ {
7158
+ "type": {
7159
+ "text": "boolean"
7160
+ },
7161
+ "description": "Whether the last thirty days button is visible in the popup.",
7162
+ "name": "show-last-thirty-days",
7163
+ "default": "false",
7164
+ "inheritedFrom": {
7165
+ "name": "BaseDatePickerComponent",
7166
+ "module": "src/lib/date-picker/base/base-date-picker.ts"
7167
+ }
7168
+ },
6836
7169
  {
6837
7170
  "type": {
6838
7171
  "text": "DatePickerValueMode"
@@ -23064,6 +23397,270 @@
23064
23397
  "declarations": [],
23065
23398
  "exports": []
23066
23399
  },
23400
+ {
23401
+ "kind": "javascript-module",
23402
+ "path": "src/lib/chips/chip-set/chip-set.ts",
23403
+ "declarations": [
23404
+ {
23405
+ "kind": "class",
23406
+ "description": "",
23407
+ "name": "ChipSetComponent",
23408
+ "cssProperties": [
23409
+ {
23410
+ "description": "The spacing between chips.",
23411
+ "name": "--forge-chip-set-spacing"
23412
+ }
23413
+ ],
23414
+ "cssParts": [
23415
+ {
23416
+ "description": "The component's root element.",
23417
+ "name": "root"
23418
+ }
23419
+ ],
23420
+ "slots": [
23421
+ {
23422
+ "description": "The chips to display in the chip set.",
23423
+ "name": ""
23424
+ }
23425
+ ],
23426
+ "members": [
23427
+ {
23428
+ "kind": "field",
23429
+ "name": "_vertical",
23430
+ "type": {
23431
+ "text": "boolean"
23432
+ },
23433
+ "privacy": "private",
23434
+ "default": "false"
23435
+ },
23436
+ {
23437
+ "kind": "field",
23438
+ "name": "_type",
23439
+ "privacy": "private"
23440
+ },
23441
+ {
23442
+ "kind": "field",
23443
+ "name": "_dense",
23444
+ "type": {
23445
+ "text": "boolean"
23446
+ },
23447
+ "privacy": "private",
23448
+ "default": "false"
23449
+ },
23450
+ {
23451
+ "kind": "field",
23452
+ "name": "_disabled",
23453
+ "type": {
23454
+ "text": "boolean"
23455
+ },
23456
+ "privacy": "private",
23457
+ "default": "false"
23458
+ },
23459
+ {
23460
+ "kind": "field",
23461
+ "name": "_invalid",
23462
+ "type": {
23463
+ "text": "boolean"
23464
+ },
23465
+ "privacy": "private",
23466
+ "default": "false"
23467
+ },
23468
+ {
23469
+ "kind": "field",
23470
+ "name": "_theme",
23471
+ "privacy": "private"
23472
+ },
23473
+ {
23474
+ "kind": "method",
23475
+ "name": "_onChipNavigate",
23476
+ "privacy": "private",
23477
+ "return": {
23478
+ "type": {
23479
+ "text": "void"
23480
+ }
23481
+ },
23482
+ "parameters": [
23483
+ {
23484
+ "name": "evt",
23485
+ "type": {
23486
+ "text": "CustomEvent<IChipNavigateEventData>"
23487
+ }
23488
+ }
23489
+ ]
23490
+ },
23491
+ {
23492
+ "kind": "method",
23493
+ "name": "_findChipDescendants",
23494
+ "privacy": "private",
23495
+ "return": {
23496
+ "type": {
23497
+ "text": "IChipComponent[]"
23498
+ }
23499
+ }
23500
+ },
23501
+ {
23502
+ "kind": "method",
23503
+ "name": "_syncChipsProperty",
23504
+ "privacy": "private",
23505
+ "return": {
23506
+ "type": {
23507
+ "text": "void"
23508
+ }
23509
+ },
23510
+ "parameters": [
23511
+ {
23512
+ "name": "property",
23513
+ "type": {
23514
+ "text": "T"
23515
+ }
23516
+ },
23517
+ {
23518
+ "name": "value",
23519
+ "type": {
23520
+ "text": "IChipComponent[T]"
23521
+ }
23522
+ }
23523
+ ]
23524
+ },
23525
+ {
23526
+ "kind": "field",
23527
+ "name": "vertical",
23528
+ "type": {
23529
+ "text": "boolean"
23530
+ },
23531
+ "privacy": "public",
23532
+ "description": "Whether the chip set is vertical.",
23533
+ "default": "false"
23534
+ },
23535
+ {
23536
+ "kind": "field",
23537
+ "name": "type",
23538
+ "type": {
23539
+ "text": "ChipType"
23540
+ },
23541
+ "privacy": "public",
23542
+ "description": "The type of chip.",
23543
+ "default": "'action'"
23544
+ },
23545
+ {
23546
+ "kind": "field",
23547
+ "name": "dense",
23548
+ "type": {
23549
+ "text": "boolean"
23550
+ },
23551
+ "privacy": "public",
23552
+ "description": "Whether the chip set is dense.",
23553
+ "default": "false"
23554
+ },
23555
+ {
23556
+ "kind": "field",
23557
+ "name": "disabled",
23558
+ "type": {
23559
+ "text": "boolean"
23560
+ },
23561
+ "privacy": "public",
23562
+ "description": "Whether the chip set is disabled.",
23563
+ "default": "false"
23564
+ },
23565
+ {
23566
+ "kind": "field",
23567
+ "name": "invalid",
23568
+ "type": {
23569
+ "text": "boolean"
23570
+ },
23571
+ "privacy": "public",
23572
+ "description": "Whether the chip set is invalid.",
23573
+ "default": "false"
23574
+ },
23575
+ {
23576
+ "kind": "field",
23577
+ "name": "theme",
23578
+ "type": {
23579
+ "text": "ChipTheme"
23580
+ },
23581
+ "privacy": "public",
23582
+ "description": "The theme of the chip set.",
23583
+ "default": "'primary'"
23584
+ }
23585
+ ],
23586
+ "attributes": [
23587
+ {
23588
+ "type": {
23589
+ "text": "boolean"
23590
+ },
23591
+ "description": "Whether the chip set is vertically oriented.",
23592
+ "name": "vertical"
23593
+ },
23594
+ {
23595
+ "type": {
23596
+ "text": "ChipType"
23597
+ },
23598
+ "description": "The type of chips.",
23599
+ "name": "type"
23600
+ },
23601
+ {
23602
+ "type": {
23603
+ "text": "boolean"
23604
+ },
23605
+ "description": "Whether all chips in the chip set are dense.",
23606
+ "name": "dense"
23607
+ },
23608
+ {
23609
+ "type": {
23610
+ "text": "boolean"
23611
+ },
23612
+ "description": "Whether all chips in the chip set are disabled.",
23613
+ "name": "disabled"
23614
+ },
23615
+ {
23616
+ "type": {
23617
+ "text": "boolean"
23618
+ },
23619
+ "description": "Whether all chips in the chip set are invalid.",
23620
+ "name": "invalid"
23621
+ },
23622
+ {
23623
+ "type": {
23624
+ "text": "ChipTheme"
23625
+ },
23626
+ "description": "The theme of the chips.",
23627
+ "name": "theme"
23628
+ }
23629
+ ],
23630
+ "superclass": {
23631
+ "name": "BaseComponent",
23632
+ "module": "/src/lib/core/base/base-component"
23633
+ },
23634
+ "tagName": "forge-chip-set",
23635
+ "summary": "Chips sets are used to group multiple chips together and orchestrate their behavior.",
23636
+ "cssFilePath": {
23637
+ "name": "chips/forge-chips.css",
23638
+ "description": ""
23639
+ },
23640
+ "cssClasses": [
23641
+ {
23642
+ "name": "forge-chip-set",
23643
+ "description": "The chip container element."
23644
+ },
23645
+ {
23646
+ "name": "forge-chip-set--vertical",
23647
+ "description": "Renders the chips vertically."
23648
+ }
23649
+ ],
23650
+ "customElement": true
23651
+ }
23652
+ ],
23653
+ "exports": [
23654
+ {
23655
+ "kind": "js",
23656
+ "name": "ChipSetComponent",
23657
+ "declaration": {
23658
+ "name": "ChipSetComponent",
23659
+ "module": "src/lib/chips/chip-set/chip-set.ts"
23660
+ }
23661
+ }
23662
+ ]
23663
+ },
23067
23664
  {
23068
23665
  "kind": "javascript-module",
23069
23666
  "path": "src/lib/chips/chip/chip.ts",
@@ -23574,270 +24171,6 @@
23574
24171
  }
23575
24172
  ]
23576
24173
  },
23577
- {
23578
- "kind": "javascript-module",
23579
- "path": "src/lib/chips/chip-set/chip-set.ts",
23580
- "declarations": [
23581
- {
23582
- "kind": "class",
23583
- "description": "",
23584
- "name": "ChipSetComponent",
23585
- "cssProperties": [
23586
- {
23587
- "description": "The spacing between chips.",
23588
- "name": "--forge-chip-set-spacing"
23589
- }
23590
- ],
23591
- "cssParts": [
23592
- {
23593
- "description": "The component's root element.",
23594
- "name": "root"
23595
- }
23596
- ],
23597
- "slots": [
23598
- {
23599
- "description": "The chips to display in the chip set.",
23600
- "name": ""
23601
- }
23602
- ],
23603
- "members": [
23604
- {
23605
- "kind": "field",
23606
- "name": "_vertical",
23607
- "type": {
23608
- "text": "boolean"
23609
- },
23610
- "privacy": "private",
23611
- "default": "false"
23612
- },
23613
- {
23614
- "kind": "field",
23615
- "name": "_type",
23616
- "privacy": "private"
23617
- },
23618
- {
23619
- "kind": "field",
23620
- "name": "_dense",
23621
- "type": {
23622
- "text": "boolean"
23623
- },
23624
- "privacy": "private",
23625
- "default": "false"
23626
- },
23627
- {
23628
- "kind": "field",
23629
- "name": "_disabled",
23630
- "type": {
23631
- "text": "boolean"
23632
- },
23633
- "privacy": "private",
23634
- "default": "false"
23635
- },
23636
- {
23637
- "kind": "field",
23638
- "name": "_invalid",
23639
- "type": {
23640
- "text": "boolean"
23641
- },
23642
- "privacy": "private",
23643
- "default": "false"
23644
- },
23645
- {
23646
- "kind": "field",
23647
- "name": "_theme",
23648
- "privacy": "private"
23649
- },
23650
- {
23651
- "kind": "method",
23652
- "name": "_onChipNavigate",
23653
- "privacy": "private",
23654
- "return": {
23655
- "type": {
23656
- "text": "void"
23657
- }
23658
- },
23659
- "parameters": [
23660
- {
23661
- "name": "evt",
23662
- "type": {
23663
- "text": "CustomEvent<IChipNavigateEventData>"
23664
- }
23665
- }
23666
- ]
23667
- },
23668
- {
23669
- "kind": "method",
23670
- "name": "_findChipDescendants",
23671
- "privacy": "private",
23672
- "return": {
23673
- "type": {
23674
- "text": "IChipComponent[]"
23675
- }
23676
- }
23677
- },
23678
- {
23679
- "kind": "method",
23680
- "name": "_syncChipsProperty",
23681
- "privacy": "private",
23682
- "return": {
23683
- "type": {
23684
- "text": "void"
23685
- }
23686
- },
23687
- "parameters": [
23688
- {
23689
- "name": "property",
23690
- "type": {
23691
- "text": "T"
23692
- }
23693
- },
23694
- {
23695
- "name": "value",
23696
- "type": {
23697
- "text": "IChipComponent[T]"
23698
- }
23699
- }
23700
- ]
23701
- },
23702
- {
23703
- "kind": "field",
23704
- "name": "vertical",
23705
- "type": {
23706
- "text": "boolean"
23707
- },
23708
- "privacy": "public",
23709
- "description": "Whether the chip set is vertical.",
23710
- "default": "false"
23711
- },
23712
- {
23713
- "kind": "field",
23714
- "name": "type",
23715
- "type": {
23716
- "text": "ChipType"
23717
- },
23718
- "privacy": "public",
23719
- "description": "The type of chip.",
23720
- "default": "'action'"
23721
- },
23722
- {
23723
- "kind": "field",
23724
- "name": "dense",
23725
- "type": {
23726
- "text": "boolean"
23727
- },
23728
- "privacy": "public",
23729
- "description": "Whether the chip set is dense.",
23730
- "default": "false"
23731
- },
23732
- {
23733
- "kind": "field",
23734
- "name": "disabled",
23735
- "type": {
23736
- "text": "boolean"
23737
- },
23738
- "privacy": "public",
23739
- "description": "Whether the chip set is disabled.",
23740
- "default": "false"
23741
- },
23742
- {
23743
- "kind": "field",
23744
- "name": "invalid",
23745
- "type": {
23746
- "text": "boolean"
23747
- },
23748
- "privacy": "public",
23749
- "description": "Whether the chip set is invalid.",
23750
- "default": "false"
23751
- },
23752
- {
23753
- "kind": "field",
23754
- "name": "theme",
23755
- "type": {
23756
- "text": "ChipTheme"
23757
- },
23758
- "privacy": "public",
23759
- "description": "The theme of the chip set.",
23760
- "default": "'primary'"
23761
- }
23762
- ],
23763
- "attributes": [
23764
- {
23765
- "type": {
23766
- "text": "boolean"
23767
- },
23768
- "description": "Whether the chip set is vertically oriented.",
23769
- "name": "vertical"
23770
- },
23771
- {
23772
- "type": {
23773
- "text": "ChipType"
23774
- },
23775
- "description": "The type of chips.",
23776
- "name": "type"
23777
- },
23778
- {
23779
- "type": {
23780
- "text": "boolean"
23781
- },
23782
- "description": "Whether all chips in the chip set are dense.",
23783
- "name": "dense"
23784
- },
23785
- {
23786
- "type": {
23787
- "text": "boolean"
23788
- },
23789
- "description": "Whether all chips in the chip set are disabled.",
23790
- "name": "disabled"
23791
- },
23792
- {
23793
- "type": {
23794
- "text": "boolean"
23795
- },
23796
- "description": "Whether all chips in the chip set are invalid.",
23797
- "name": "invalid"
23798
- },
23799
- {
23800
- "type": {
23801
- "text": "ChipTheme"
23802
- },
23803
- "description": "The theme of the chips.",
23804
- "name": "theme"
23805
- }
23806
- ],
23807
- "superclass": {
23808
- "name": "BaseComponent",
23809
- "module": "/src/lib/core/base/base-component"
23810
- },
23811
- "tagName": "forge-chip-set",
23812
- "summary": "Chips sets are used to group multiple chips together and orchestrate their behavior.",
23813
- "cssFilePath": {
23814
- "name": "chips/forge-chips.css",
23815
- "description": ""
23816
- },
23817
- "cssClasses": [
23818
- {
23819
- "name": "forge-chip-set",
23820
- "description": "The chip container element."
23821
- },
23822
- {
23823
- "name": "forge-chip-set--vertical",
23824
- "description": "Renders the chips vertically."
23825
- }
23826
- ],
23827
- "customElement": true
23828
- }
23829
- ],
23830
- "exports": [
23831
- {
23832
- "kind": "js",
23833
- "name": "ChipSetComponent",
23834
- "declaration": {
23835
- "name": "ChipSetComponent",
23836
- "module": "src/lib/chips/chip-set/chip-set.ts"
23837
- }
23838
- }
23839
- ]
23840
- },
23841
24174
  {
23842
24175
  "kind": "javascript-module",
23843
24176
  "path": "src/lib/date-picker/base/base-date-picker.ts",
@@ -23980,6 +24313,36 @@
23980
24313
  "description": "Whether the today button is visible in the popup.",
23981
24314
  "default": "false"
23982
24315
  },
24316
+ {
24317
+ "kind": "field",
24318
+ "name": "showYesterday",
24319
+ "type": {
24320
+ "text": "boolean"
24321
+ },
24322
+ "privacy": "public",
24323
+ "description": "Whether the yesterday button is visible in the popup.",
24324
+ "default": "false"
24325
+ },
24326
+ {
24327
+ "kind": "field",
24328
+ "name": "showLastSevenDays",
24329
+ "type": {
24330
+ "text": "boolean"
24331
+ },
24332
+ "privacy": "public",
24333
+ "description": "Whether the last seven days button is visible in the popup.",
24334
+ "default": "false"
24335
+ },
24336
+ {
24337
+ "kind": "field",
24338
+ "name": "showLastThirtyDays",
24339
+ "type": {
24340
+ "text": "boolean"
24341
+ },
24342
+ "privacy": "public",
24343
+ "description": "Whether the last thirty days button is visible in the popup.",
24344
+ "default": "false"
24345
+ },
23983
24346
  {
23984
24347
  "kind": "field",
23985
24348
  "name": "showClear",
@@ -24170,6 +24533,30 @@
24170
24533
  "name": "show-today",
24171
24534
  "default": "false"
24172
24535
  },
24536
+ {
24537
+ "type": {
24538
+ "text": "boolean"
24539
+ },
24540
+ "description": "Whether the yesterday button is visible in the popup.",
24541
+ "name": "show-yesterday",
24542
+ "default": "false"
24543
+ },
24544
+ {
24545
+ "type": {
24546
+ "text": "boolean"
24547
+ },
24548
+ "description": "Whether the last seven days button is visible in the popup.",
24549
+ "name": "show-last-seven-days",
24550
+ "default": "false"
24551
+ },
24552
+ {
24553
+ "type": {
24554
+ "text": "boolean"
24555
+ },
24556
+ "description": "Whether the last thirty days button is visible in the popup.",
24557
+ "name": "show-last-thirty-days",
24558
+ "default": "false"
24559
+ },
24173
24560
  {
24174
24561
  "type": {
24175
24562
  "text": "DatePickerValueMode"
@@ -29462,108 +29849,6 @@
29462
29849
  }
29463
29850
  ]
29464
29851
  },
29465
- {
29466
- "kind": "javascript-module",
29467
- "path": "src/lib/select/option-group/option-group.ts",
29468
- "declarations": [
29469
- {
29470
- "kind": "class",
29471
- "description": "",
29472
- "name": "OptionGroupComponent",
29473
- "members": [
29474
- {
29475
- "kind": "field",
29476
- "name": "_label",
29477
- "type": {
29478
- "text": "string"
29479
- },
29480
- "privacy": "private"
29481
- },
29482
- {
29483
- "kind": "field",
29484
- "name": "label",
29485
- "type": {
29486
- "text": "string"
29487
- },
29488
- "privacy": "public",
29489
- "description": "Gets/sets the label of this option group."
29490
- },
29491
- {
29492
- "kind": "field",
29493
- "name": "options",
29494
- "type": {
29495
- "text": "ISelectOption[]"
29496
- },
29497
- "privacy": "public",
29498
- "description": "The child options of this group."
29499
- },
29500
- {
29501
- "kind": "field",
29502
- "name": "builder",
29503
- "type": {
29504
- "text": "ListDropdownOptionGroupBuilder"
29505
- },
29506
- "privacy": "public",
29507
- "description": "The builder function for the group content."
29508
- },
29509
- {
29510
- "kind": "field",
29511
- "name": "value",
29512
- "type": {
29513
- "text": "any"
29514
- },
29515
- "privacy": "public",
29516
- "description": "Gets/sets the optional group value.",
29517
- "attribute": "value"
29518
- },
29519
- {
29520
- "kind": "field",
29521
- "name": "text",
29522
- "type": {
29523
- "text": "string"
29524
- },
29525
- "privacy": "public",
29526
- "description": "The text content for the group.",
29527
- "attribute": "text"
29528
- }
29529
- ],
29530
- "attributes": [
29531
- {
29532
- "name": "value",
29533
- "type": {
29534
- "text": "any"
29535
- },
29536
- "description": "Gets/sets the optional group value.",
29537
- "fieldName": "value"
29538
- },
29539
- {
29540
- "name": "text",
29541
- "type": {
29542
- "text": "string"
29543
- },
29544
- "description": "The text content for the group.",
29545
- "fieldName": "text"
29546
- }
29547
- ],
29548
- "superclass": {
29549
- "name": "BaseComponent",
29550
- "module": "/src/lib/core/base/base-component"
29551
- },
29552
- "tagName": "forge-option-group",
29553
- "customElement": true
29554
- }
29555
- ],
29556
- "exports": [
29557
- {
29558
- "kind": "js",
29559
- "name": "OptionGroupComponent",
29560
- "declaration": {
29561
- "name": "OptionGroupComponent",
29562
- "module": "src/lib/select/option-group/option-group.ts"
29563
- }
29564
- }
29565
- ]
29566
- },
29567
29852
  {
29568
29853
  "kind": "javascript-module",
29569
29854
  "path": "src/lib/select/select/select.ts",
@@ -30729,6 +31014,108 @@
30729
31014
  }
30730
31015
  ]
30731
31016
  },
31017
+ {
31018
+ "kind": "javascript-module",
31019
+ "path": "src/lib/select/option-group/option-group.ts",
31020
+ "declarations": [
31021
+ {
31022
+ "kind": "class",
31023
+ "description": "",
31024
+ "name": "OptionGroupComponent",
31025
+ "members": [
31026
+ {
31027
+ "kind": "field",
31028
+ "name": "_label",
31029
+ "type": {
31030
+ "text": "string"
31031
+ },
31032
+ "privacy": "private"
31033
+ },
31034
+ {
31035
+ "kind": "field",
31036
+ "name": "label",
31037
+ "type": {
31038
+ "text": "string"
31039
+ },
31040
+ "privacy": "public",
31041
+ "description": "Gets/sets the label of this option group."
31042
+ },
31043
+ {
31044
+ "kind": "field",
31045
+ "name": "options",
31046
+ "type": {
31047
+ "text": "ISelectOption[]"
31048
+ },
31049
+ "privacy": "public",
31050
+ "description": "The child options of this group."
31051
+ },
31052
+ {
31053
+ "kind": "field",
31054
+ "name": "builder",
31055
+ "type": {
31056
+ "text": "ListDropdownOptionGroupBuilder"
31057
+ },
31058
+ "privacy": "public",
31059
+ "description": "The builder function for the group content."
31060
+ },
31061
+ {
31062
+ "kind": "field",
31063
+ "name": "value",
31064
+ "type": {
31065
+ "text": "any"
31066
+ },
31067
+ "privacy": "public",
31068
+ "description": "Gets/sets the optional group value.",
31069
+ "attribute": "value"
31070
+ },
31071
+ {
31072
+ "kind": "field",
31073
+ "name": "text",
31074
+ "type": {
31075
+ "text": "string"
31076
+ },
31077
+ "privacy": "public",
31078
+ "description": "The text content for the group.",
31079
+ "attribute": "text"
31080
+ }
31081
+ ],
31082
+ "attributes": [
31083
+ {
31084
+ "name": "value",
31085
+ "type": {
31086
+ "text": "any"
31087
+ },
31088
+ "description": "Gets/sets the optional group value.",
31089
+ "fieldName": "value"
31090
+ },
31091
+ {
31092
+ "name": "text",
31093
+ "type": {
31094
+ "text": "string"
31095
+ },
31096
+ "description": "The text content for the group.",
31097
+ "fieldName": "text"
31098
+ }
31099
+ ],
31100
+ "superclass": {
31101
+ "name": "BaseComponent",
31102
+ "module": "/src/lib/core/base/base-component"
31103
+ },
31104
+ "tagName": "forge-option-group",
31105
+ "customElement": true
31106
+ }
31107
+ ],
31108
+ "exports": [
31109
+ {
31110
+ "kind": "js",
31111
+ "name": "OptionGroupComponent",
31112
+ "declaration": {
31113
+ "name": "OptionGroupComponent",
31114
+ "module": "src/lib/select/option-group/option-group.ts"
31115
+ }
31116
+ }
31117
+ ]
31118
+ },
30732
31119
  {
30733
31120
  "kind": "javascript-module",
30734
31121
  "path": "src/lib/select/select-dropdown/select-dropdown.ts",
@@ -33127,7 +33514,7 @@
33127
33514
  ]
33128
33515
  }
33129
33516
  ],
33130
- "branchName": "main",
33517
+ "branchName": "ppr-275-predefined-date-ranges",
33131
33518
  "forgeTypes": {
33132
33519
  "Theme": {
33133
33520
  "path": "src/lib/constants.ts",
@@ -33177,6 +33564,42 @@
33177
33564
  "path": "src/lib/accordion/accordion.ts",
33178
33565
  "lineNumber": 25
33179
33566
  },
33567
+ "IBackdropComponent": {
33568
+ "path": "src/lib/backdrop/backdrop.ts",
33569
+ "lineNumber": 8
33570
+ },
33571
+ "BackdropComponent": {
33572
+ "path": "src/lib/backdrop/backdrop.ts",
33573
+ "lineNumber": 42
33574
+ },
33575
+ "BadgeComponentDelegateProps": {
33576
+ "path": "src/lib/badge/badge-component-delegate.ts",
33577
+ "lineNumber": 4
33578
+ },
33579
+ "IBadgeComponentDelegateOptions": {
33580
+ "path": "src/lib/badge/badge-component-delegate.ts",
33581
+ "lineNumber": 5
33582
+ },
33583
+ "IBadgeComponentDelegateConfig": {
33584
+ "path": "src/lib/badge/badge-component-delegate.ts",
33585
+ "lineNumber": 6
33586
+ },
33587
+ "BadgeComponentDelegate": {
33588
+ "path": "src/lib/badge/badge-component-delegate.ts",
33589
+ "lineNumber": 8
33590
+ },
33591
+ "BadgeTheme": {
33592
+ "path": "src/lib/badge/badge-constants.ts",
33593
+ "lineNumber": 33
33594
+ },
33595
+ "IBadgeComponent": {
33596
+ "path": "src/lib/badge/badge.ts",
33597
+ "lineNumber": 10
33598
+ },
33599
+ "BadgeComponent": {
33600
+ "path": "src/lib/badge/badge.ts",
33601
+ "lineNumber": 50
33602
+ },
33180
33603
  "IAutocompleteAdapter": {
33181
33604
  "path": "src/lib/autocomplete/autocomplete-adapter.ts",
33182
33605
  "lineNumber": 14
@@ -33273,42 +33696,6 @@
33273
33696
  "path": "src/lib/avatar/avatar.ts",
33274
33697
  "lineNumber": 54
33275
33698
  },
33276
- "IBackdropComponent": {
33277
- "path": "src/lib/backdrop/backdrop.ts",
33278
- "lineNumber": 8
33279
- },
33280
- "BackdropComponent": {
33281
- "path": "src/lib/backdrop/backdrop.ts",
33282
- "lineNumber": 42
33283
- },
33284
- "BadgeComponentDelegateProps": {
33285
- "path": "src/lib/badge/badge-component-delegate.ts",
33286
- "lineNumber": 4
33287
- },
33288
- "IBadgeComponentDelegateOptions": {
33289
- "path": "src/lib/badge/badge-component-delegate.ts",
33290
- "lineNumber": 5
33291
- },
33292
- "IBadgeComponentDelegateConfig": {
33293
- "path": "src/lib/badge/badge-component-delegate.ts",
33294
- "lineNumber": 6
33295
- },
33296
- "BadgeComponentDelegate": {
33297
- "path": "src/lib/badge/badge-component-delegate.ts",
33298
- "lineNumber": 8
33299
- },
33300
- "BadgeTheme": {
33301
- "path": "src/lib/badge/badge-constants.ts",
33302
- "lineNumber": 33
33303
- },
33304
- "IBadgeComponent": {
33305
- "path": "src/lib/badge/badge.ts",
33306
- "lineNumber": 10
33307
- },
33308
- "BadgeComponent": {
33309
- "path": "src/lib/badge/badge.ts",
33310
- "lineNumber": 50
33311
- },
33312
33699
  "IBannerAdapter": {
33313
33700
  "path": "src/lib/banner/banner-adapter.ts",
33314
33701
  "lineNumber": 6
@@ -33451,11 +33838,11 @@
33451
33838
  },
33452
33839
  "ICalendarAdapter": {
33453
33840
  "path": "src/lib/calendar/calendar-adapter.ts",
33454
- "lineNumber": 37
33841
+ "lineNumber": 40
33455
33842
  },
33456
33843
  "CalendarAdapter": {
33457
33844
  "path": "src/lib/calendar/calendar-adapter.ts",
33458
- "lineNumber": 110
33845
+ "lineNumber": 125
33459
33846
  },
33460
33847
  "CalendarComponentDelegateProps": {
33461
33848
  "path": "src/lib/calendar/calendar-component-delegate.ts",
@@ -33475,99 +33862,99 @@
33475
33862
  },
33476
33863
  "CalendarDateBuilder": {
33477
33864
  "path": "src/lib/calendar/calendar-constants.ts",
33478
- "lineNumber": 215
33865
+ "lineNumber": 248
33479
33866
  },
33480
33867
  "CalendarDateSelectCallback": {
33481
33868
  "path": "src/lib/calendar/calendar-constants.ts",
33482
- "lineNumber": 216
33869
+ "lineNumber": 249
33483
33870
  },
33484
33871
  "CalendarDayBuilder": {
33485
33872
  "path": "src/lib/calendar/calendar-constants.ts",
33486
- "lineNumber": 217
33873
+ "lineNumber": 250
33487
33874
  },
33488
33875
  "CalendarDisabledDateBuilder": {
33489
33876
  "path": "src/lib/calendar/calendar-constants.ts",
33490
- "lineNumber": 218
33877
+ "lineNumber": 251
33491
33878
  },
33492
33879
  "CalendarEventBuilder": {
33493
33880
  "path": "src/lib/calendar/calendar-constants.ts",
33494
- "lineNumber": 219
33881
+ "lineNumber": 252
33495
33882
  },
33496
33883
  "CalendarTooltipBuilder": {
33497
33884
  "path": "src/lib/calendar/calendar-constants.ts",
33498
- "lineNumber": 220
33885
+ "lineNumber": 253
33499
33886
  },
33500
33887
  "CalendarMode": {
33501
33888
  "path": "src/lib/calendar/calendar-constants.ts",
33502
- "lineNumber": 222
33889
+ "lineNumber": 255
33503
33890
  },
33504
33891
  "CalendarView": {
33505
33892
  "path": "src/lib/calendar/calendar-constants.ts",
33506
- "lineNumber": 223
33893
+ "lineNumber": 256
33507
33894
  },
33508
33895
  "RangeSelectionState": {
33509
33896
  "path": "src/lib/calendar/calendar-constants.ts",
33510
- "lineNumber": 224
33897
+ "lineNumber": 257
33511
33898
  },
33512
33899
  "CalendarEventColor": {
33513
33900
  "path": "src/lib/calendar/calendar-constants.ts",
33514
- "lineNumber": 225
33901
+ "lineNumber": 258
33515
33902
  },
33516
33903
  "ICalendarDate": {
33517
33904
  "path": "src/lib/calendar/calendar-constants.ts",
33518
- "lineNumber": 246
33905
+ "lineNumber": 279
33519
33906
  },
33520
33907
  "ICalendarDateConfig": {
33521
33908
  "path": "src/lib/calendar/calendar-constants.ts",
33522
- "lineNumber": 252
33909
+ "lineNumber": 285
33523
33910
  },
33524
33911
  "ICalendarDateOptions": {
33525
33912
  "path": "src/lib/calendar/calendar-constants.ts",
33526
- "lineNumber": 260
33913
+ "lineNumber": 293
33527
33914
  },
33528
33915
  "ICalendarDayOptions": {
33529
33916
  "path": "src/lib/calendar/calendar-constants.ts",
33530
- "lineNumber": 266
33917
+ "lineNumber": 299
33531
33918
  },
33532
33919
  "ICalendarEvent": {
33533
33920
  "path": "src/lib/calendar/calendar-constants.ts",
33534
- "lineNumber": 271
33921
+ "lineNumber": 304
33535
33922
  },
33536
33923
  "ICalendarDateSelectEventData": {
33537
33924
  "path": "src/lib/calendar/calendar-constants.ts",
33538
- "lineNumber": 277
33925
+ "lineNumber": 310
33539
33926
  },
33540
33927
  "ICalendarMonthChangeEventData": {
33541
33928
  "path": "src/lib/calendar/calendar-constants.ts",
33542
- "lineNumber": 285
33929
+ "lineNumber": 319
33543
33930
  },
33544
33931
  "ICalendarFocusChangeEventData": {
33545
33932
  "path": "src/lib/calendar/calendar-constants.ts",
33546
- "lineNumber": 291
33933
+ "lineNumber": 325
33547
33934
  },
33548
33935
  "ICalendarNumberRange": {
33549
33936
  "path": "src/lib/calendar/calendar-constants.ts",
33550
- "lineNumber": 298
33937
+ "lineNumber": 332
33551
33938
  },
33552
33939
  "ICalendarDisabledDateParams": {
33553
33940
  "path": "src/lib/calendar/calendar-constants.ts",
33554
- "lineNumber": 303
33941
+ "lineNumber": 337
33555
33942
  },
33556
33943
  "ICalendarMenuMonthConfig": {
33557
33944
  "path": "src/lib/calendar/calendar-constants.ts",
33558
- "lineNumber": 312
33945
+ "lineNumber": 346
33559
33946
  },
33560
33947
  "ICalendarMenuYearConfig": {
33561
33948
  "path": "src/lib/calendar/calendar-constants.ts",
33562
- "lineNumber": 320
33949
+ "lineNumber": 354
33563
33950
  },
33564
33951
  "DayOfWeek": {
33565
33952
  "path": "src/lib/calendar/calendar-constants.ts",
33566
- "lineNumber": 328
33953
+ "lineNumber": 362
33567
33954
  },
33568
33955
  "CalendarMonthFocus": {
33569
33956
  "path": "src/lib/calendar/calendar-constants.ts",
33570
- "lineNumber": 338
33957
+ "lineNumber": 372
33571
33958
  },
33572
33959
  "ICalendarCore": {
33573
33960
  "path": "src/lib/calendar/calendar-core.ts",
@@ -33575,7 +33962,7 @@
33575
33962
  },
33576
33963
  "CalendarCore": {
33577
33964
  "path": "src/lib/calendar/calendar-core.ts",
33578
- "lineNumber": 82
33965
+ "lineNumber": 91
33579
33966
  },
33580
33967
  "ICalendarComponent": {
33581
33968
  "path": "src/lib/calendar/calendar.ts",
@@ -33583,7 +33970,7 @@
33583
33970
  },
33584
33971
  "CalendarComponent": {
33585
33972
  "path": "src/lib/calendar/calendar.ts",
33586
- "lineNumber": 148
33973
+ "lineNumber": 175
33587
33974
  },
33588
33975
  "ICardComponent": {
33589
33976
  "path": "src/lib/card/card.ts",
@@ -33851,11 +34238,11 @@
33851
34238
  },
33852
34239
  "IDatePickerRange": {
33853
34240
  "path": "src/lib/date-range-picker/date-range-picker-constants.ts",
33854
- "lineNumber": 20
34241
+ "lineNumber": 22
33855
34242
  },
33856
34243
  "IDateRangePickerChangeEventData": {
33857
34244
  "path": "src/lib/date-range-picker/date-range-picker-constants.ts",
33858
- "lineNumber": 49
34245
+ "lineNumber": 52
33859
34246
  },
33860
34247
  "IDateRangePickerCore": {
33861
34248
  "path": "src/lib/date-range-picker/date-range-picker-core.ts",
@@ -33871,7 +34258,7 @@
33871
34258
  },
33872
34259
  "DateRangePickerComponent": {
33873
34260
  "path": "src/lib/date-range-picker/date-range-picker.ts",
33874
- "lineNumber": 67
34261
+ "lineNumber": 70
33875
34262
  },
33876
34263
  "IDialogAdapter": {
33877
34264
  "path": "src/lib/dialog/dialog-adapter.ts",
@@ -35727,7 +36114,15 @@
35727
36114
  },
35728
36115
  "DateRange": {
35729
36116
  "path": "src/lib/calendar/core/date-range.ts",
35730
- "lineNumber": 6
36117
+ "lineNumber": 7
36118
+ },
36119
+ "IChipSetComponent": {
36120
+ "path": "src/lib/chips/chip-set/chip-set.ts",
36121
+ "lineNumber": 10
36122
+ },
36123
+ "ChipSetComponent": {
36124
+ "path": "src/lib/chips/chip-set/chip-set.ts",
36125
+ "lineNumber": 54
35731
36126
  },
35732
36127
  "IChipAdapter": {
35733
36128
  "path": "src/lib/chips/chip/chip-adapter.ts",
@@ -35777,14 +36172,6 @@
35777
36172
  "path": "src/lib/chips/chip/chip.ts",
35778
36173
  "lineNumber": 135
35779
36174
  },
35780
- "IChipSetComponent": {
35781
- "path": "src/lib/chips/chip-set/chip-set.ts",
35782
- "lineNumber": 10
35783
- },
35784
- "ChipSetComponent": {
35785
- "path": "src/lib/chips/chip-set/chip-set.ts",
35786
- "lineNumber": 54
35787
- },
35788
36175
  "IBaseAdapter": {
35789
36176
  "path": "src/lib/core/base/base-adapter.ts",
35790
36177
  "lineNumber": 5
@@ -35917,6 +36304,54 @@
35917
36304
  "path": "src/lib/core/mask/time-segment-parser.ts",
35918
36305
  "lineNumber": 15
35919
36306
  },
36307
+ "IBaseDatePickerAdapter": {
36308
+ "path": "src/lib/date-picker/base/base-date-picker-adapter.ts",
36309
+ "lineNumber": 11
36310
+ },
36311
+ "BaseDatePickerAdapter": {
36312
+ "path": "src/lib/date-picker/base/base-date-picker-adapter.ts",
36313
+ "lineNumber": 60
36314
+ },
36315
+ "DatePickerParseCallback": {
36316
+ "path": "src/lib/date-picker/base/base-date-picker-constants.ts",
36317
+ "lineNumber": 4
36318
+ },
36319
+ "DatePickerFormatCallback": {
36320
+ "path": "src/lib/date-picker/base/base-date-picker-constants.ts",
36321
+ "lineNumber": 5
36322
+ },
36323
+ "DatePickerPrepareMaskCallback": {
36324
+ "path": "src/lib/date-picker/base/base-date-picker-constants.ts",
36325
+ "lineNumber": 6
36326
+ },
36327
+ "DatePickerValueMode": {
36328
+ "path": "src/lib/date-picker/base/base-date-picker-constants.ts",
36329
+ "lineNumber": 7
36330
+ },
36331
+ "IDatePickerCalendarDropdownConfig": {
36332
+ "path": "src/lib/date-picker/base/base-date-picker-constants.ts",
36333
+ "lineNumber": 9
36334
+ },
36335
+ "IDatePickerCalendarDropdownText": {
36336
+ "path": "src/lib/date-picker/base/base-date-picker-constants.ts",
36337
+ "lineNumber": 26
36338
+ },
36339
+ "IBaseDatePickerCore": {
36340
+ "path": "src/lib/date-picker/base/base-date-picker-core.ts",
36341
+ "lineNumber": 17
36342
+ },
36343
+ "BaseDatePickerCore": {
36344
+ "path": "src/lib/date-picker/base/base-date-picker-core.ts",
36345
+ "lineNumber": 40
36346
+ },
36347
+ "IBaseDatePickerComponent": {
36348
+ "path": "src/lib/date-picker/base/base-date-picker.ts",
36349
+ "lineNumber": 15
36350
+ },
36351
+ "BaseDatePickerComponent": {
36352
+ "path": "src/lib/date-picker/base/base-date-picker.ts",
36353
+ "lineNumber": 92
36354
+ },
35920
36355
  "CustomStateSet": {
35921
36356
  "path": "src/lib/core/utils/a11y-utils.ts",
35922
36357
  "lineNumber": 17
@@ -36029,54 +36464,6 @@
36029
36464
  "path": "src/lib/core/utils/reflect-utils.ts",
36030
36465
  "lineNumber": 158
36031
36466
  },
36032
- "IBaseDatePickerAdapter": {
36033
- "path": "src/lib/date-picker/base/base-date-picker-adapter.ts",
36034
- "lineNumber": 11
36035
- },
36036
- "BaseDatePickerAdapter": {
36037
- "path": "src/lib/date-picker/base/base-date-picker-adapter.ts",
36038
- "lineNumber": 60
36039
- },
36040
- "DatePickerParseCallback": {
36041
- "path": "src/lib/date-picker/base/base-date-picker-constants.ts",
36042
- "lineNumber": 4
36043
- },
36044
- "DatePickerFormatCallback": {
36045
- "path": "src/lib/date-picker/base/base-date-picker-constants.ts",
36046
- "lineNumber": 5
36047
- },
36048
- "DatePickerPrepareMaskCallback": {
36049
- "path": "src/lib/date-picker/base/base-date-picker-constants.ts",
36050
- "lineNumber": 6
36051
- },
36052
- "DatePickerValueMode": {
36053
- "path": "src/lib/date-picker/base/base-date-picker-constants.ts",
36054
- "lineNumber": 7
36055
- },
36056
- "IDatePickerCalendarDropdownConfig": {
36057
- "path": "src/lib/date-picker/base/base-date-picker-constants.ts",
36058
- "lineNumber": 9
36059
- },
36060
- "IDatePickerCalendarDropdownText": {
36061
- "path": "src/lib/date-picker/base/base-date-picker-constants.ts",
36062
- "lineNumber": 26
36063
- },
36064
- "IBaseDatePickerCore": {
36065
- "path": "src/lib/date-picker/base/base-date-picker-core.ts",
36066
- "lineNumber": 17
36067
- },
36068
- "BaseDatePickerCore": {
36069
- "path": "src/lib/date-picker/base/base-date-picker-core.ts",
36070
- "lineNumber": 40
36071
- },
36072
- "IBaseDatePickerComponent": {
36073
- "path": "src/lib/date-picker/base/base-date-picker.ts",
36074
- "lineNumber": 15
36075
- },
36076
- "BaseDatePickerComponent": {
36077
- "path": "src/lib/date-picker/base/base-date-picker.ts",
36078
- "lineNumber": 83
36079
- },
36080
36467
  "DeprecatedButtonComponentDelegateProps": {
36081
36468
  "path": "src/lib/deprecated/button/deprecated-button-component-delegate.ts",
36082
36469
  "lineNumber": 5
@@ -36561,14 +36948,6 @@
36561
36948
  "path": "src/lib/select/option/option.ts",
36562
36949
  "lineNumber": 20
36563
36950
  },
36564
- "IOptionGroupComponent": {
36565
- "path": "src/lib/select/option-group/option-group.ts",
36566
- "lineNumber": 7
36567
- },
36568
- "OptionGroupComponent": {
36569
- "path": "src/lib/select/option-group/option-group.ts",
36570
- "lineNumber": 20
36571
- },
36572
36951
  "OptionListenerDestructor": {
36573
36952
  "path": "src/lib/select/select/select-adapter.ts",
36574
36953
  "lineNumber": 11
@@ -36597,6 +36976,14 @@
36597
36976
  "path": "src/lib/select/select/select.ts",
36598
36977
  "lineNumber": 182
36599
36978
  },
36979
+ "IOptionGroupComponent": {
36980
+ "path": "src/lib/select/option-group/option-group.ts",
36981
+ "lineNumber": 7
36982
+ },
36983
+ "OptionGroupComponent": {
36984
+ "path": "src/lib/select/option-group/option-group.ts",
36985
+ "lineNumber": 20
36986
+ },
36600
36987
  "ISelectDropdownAdapter": {
36601
36988
  "path": "src/lib/select/select-dropdown/select-dropdown-adapter.ts",
36602
36989
  "lineNumber": 7