@tylertech/forge 3.1.3 → 3.2.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/custom-elements.json +135 -33
- package/dist/lib.js +1 -1
- package/dist/lib.js.map +4 -4
- package/dist/vscode.html-custom-data.json +11 -1
- package/esm/calendar/calendar-adapter.d.ts +6 -6
- package/esm/calendar/calendar-adapter.js +45 -11
- package/esm/calendar/calendar-constants.d.ts +20 -0
- package/esm/calendar/calendar-constants.js +22 -0
- package/esm/calendar/calendar-core.d.ts +3 -3
- package/esm/calendar/calendar-core.js +5 -17
- package/esm/calendar/calendar-dom-utils.js +10 -4
- package/esm/calendar/calendar-dropdown/calendar-dropdown-constants.d.ts +2 -0
- package/esm/calendar/calendar.d.ts +9 -0
- package/esm/calendar/calendar.js +9 -0
- package/esm/chips/chip/chip-core.js +0 -1
- package/esm/date-picker/base/base-date-picker-adapter.d.ts +3 -0
- package/esm/date-picker/base/base-date-picker-adapter.js +56 -0
- package/esm/date-picker/base/base-date-picker-constants.d.ts +11 -0
- package/esm/date-picker/base/base-date-picker-constants.js +2 -1
- package/esm/date-picker/base/base-date-picker-core.d.ts +4 -1
- package/esm/date-picker/base/base-date-picker-core.js +12 -1
- package/esm/date-picker/base/base-date-picker.d.ts +5 -1
- package/esm/date-picker/base/base-date-picker.js +8 -0
- package/package.json +1 -1
package/custom-elements.json
CHANGED
|
@@ -2328,6 +2328,40 @@
|
|
|
2328
2328
|
"kind": "class",
|
|
2329
2329
|
"description": "",
|
|
2330
2330
|
"name": "CalendarComponent",
|
|
2331
|
+
"slots": [
|
|
2332
|
+
{
|
|
2333
|
+
"description": "Text to display in the today button.",
|
|
2334
|
+
"name": "today-button-text"
|
|
2335
|
+
},
|
|
2336
|
+
{
|
|
2337
|
+
"description": "Text to display in the clear button.",
|
|
2338
|
+
"name": "clear-button-text"
|
|
2339
|
+
},
|
|
2340
|
+
{
|
|
2341
|
+
"description": "Text to display in the next month button's tooltip.",
|
|
2342
|
+
"name": "next-month-button-text"
|
|
2343
|
+
},
|
|
2344
|
+
{
|
|
2345
|
+
"description": "Text to display in the previous month button's tooltip.",
|
|
2346
|
+
"name": "previous-month-button-text"
|
|
2347
|
+
},
|
|
2348
|
+
{
|
|
2349
|
+
"description": "Text to display in the next year button's tooltip.",
|
|
2350
|
+
"name": "next-year-button-text"
|
|
2351
|
+
},
|
|
2352
|
+
{
|
|
2353
|
+
"description": "Text to display in the previous year button's tooltip.",
|
|
2354
|
+
"name": "previous-year-button-text"
|
|
2355
|
+
},
|
|
2356
|
+
{
|
|
2357
|
+
"description": "Text to display in the next years button's tooltip.",
|
|
2358
|
+
"name": "next-years-button-text"
|
|
2359
|
+
},
|
|
2360
|
+
{
|
|
2361
|
+
"description": "Text to display in the previous years button's tooltip.",
|
|
2362
|
+
"name": "previous-years-button-text"
|
|
2363
|
+
}
|
|
2364
|
+
],
|
|
2331
2365
|
"members": [
|
|
2332
2366
|
{
|
|
2333
2367
|
"kind": "field",
|
|
@@ -5779,6 +5813,19 @@
|
|
|
5779
5813
|
"name": "BaseDatePickerComponent",
|
|
5780
5814
|
"module": "src/lib/date-picker/base/base-date-picker.ts"
|
|
5781
5815
|
}
|
|
5816
|
+
},
|
|
5817
|
+
{
|
|
5818
|
+
"kind": "field",
|
|
5819
|
+
"name": "calendarText",
|
|
5820
|
+
"type": {
|
|
5821
|
+
"text": "DatePickerCalendarDropdownText"
|
|
5822
|
+
},
|
|
5823
|
+
"privacy": "public",
|
|
5824
|
+
"description": "Customized strings to display in the calendar dropdown UI.",
|
|
5825
|
+
"inheritedFrom": {
|
|
5826
|
+
"name": "BaseDatePickerComponent",
|
|
5827
|
+
"module": "src/lib/date-picker/base/base-date-picker.ts"
|
|
5828
|
+
}
|
|
5782
5829
|
}
|
|
5783
5830
|
],
|
|
5784
5831
|
"events": [
|
|
@@ -5831,6 +5878,17 @@
|
|
|
5831
5878
|
"module": "src/lib/date-picker/base/base-date-picker.ts"
|
|
5832
5879
|
}
|
|
5833
5880
|
},
|
|
5881
|
+
{
|
|
5882
|
+
"type": {
|
|
5883
|
+
"text": "DatePickerCalendarDropdownText"
|
|
5884
|
+
},
|
|
5885
|
+
"description": "Customized strings to display in the calendar dropdown UI.",
|
|
5886
|
+
"name": "calendar-text",
|
|
5887
|
+
"inheritedFrom": {
|
|
5888
|
+
"name": "BaseDatePickerComponent",
|
|
5889
|
+
"module": "src/lib/date-picker/base/base-date-picker.ts"
|
|
5890
|
+
}
|
|
5891
|
+
},
|
|
5834
5892
|
{
|
|
5835
5893
|
"type": {
|
|
5836
5894
|
"text": "boolean"
|
|
@@ -6349,6 +6407,19 @@
|
|
|
6349
6407
|
"name": "BaseDatePickerComponent",
|
|
6350
6408
|
"module": "src/lib/date-picker/base/base-date-picker.ts"
|
|
6351
6409
|
}
|
|
6410
|
+
},
|
|
6411
|
+
{
|
|
6412
|
+
"kind": "field",
|
|
6413
|
+
"name": "calendarText",
|
|
6414
|
+
"type": {
|
|
6415
|
+
"text": "DatePickerCalendarDropdownText"
|
|
6416
|
+
},
|
|
6417
|
+
"privacy": "public",
|
|
6418
|
+
"description": "Customized strings to display in the calendar dropdown UI.",
|
|
6419
|
+
"inheritedFrom": {
|
|
6420
|
+
"name": "BaseDatePickerComponent",
|
|
6421
|
+
"module": "src/lib/date-picker/base/base-date-picker.ts"
|
|
6422
|
+
}
|
|
6352
6423
|
}
|
|
6353
6424
|
],
|
|
6354
6425
|
"superclass": {
|
|
@@ -6370,6 +6441,17 @@
|
|
|
6370
6441
|
"module": "src/lib/date-picker/base/base-date-picker.ts"
|
|
6371
6442
|
}
|
|
6372
6443
|
},
|
|
6444
|
+
{
|
|
6445
|
+
"type": {
|
|
6446
|
+
"text": "DatePickerCalendarDropdownText"
|
|
6447
|
+
},
|
|
6448
|
+
"description": "Customized strings to display in the calendar dropdown UI.",
|
|
6449
|
+
"name": "calendar-text",
|
|
6450
|
+
"inheritedFrom": {
|
|
6451
|
+
"name": "BaseDatePickerComponent",
|
|
6452
|
+
"module": "src/lib/date-picker/base/base-date-picker.ts"
|
|
6453
|
+
}
|
|
6454
|
+
},
|
|
6373
6455
|
{
|
|
6374
6456
|
"type": {
|
|
6375
6457
|
"text": "boolean"
|
|
@@ -23039,6 +23121,15 @@
|
|
|
23039
23121
|
},
|
|
23040
23122
|
"privacy": "public",
|
|
23041
23123
|
"description": "The locale to use."
|
|
23124
|
+
},
|
|
23125
|
+
{
|
|
23126
|
+
"kind": "field",
|
|
23127
|
+
"name": "calendarText",
|
|
23128
|
+
"type": {
|
|
23129
|
+
"text": "DatePickerCalendarDropdownText"
|
|
23130
|
+
},
|
|
23131
|
+
"privacy": "public",
|
|
23132
|
+
"description": "Customized strings to display in the calendar dropdown UI."
|
|
23042
23133
|
}
|
|
23043
23134
|
],
|
|
23044
23135
|
"attributes": [
|
|
@@ -23050,6 +23141,13 @@
|
|
|
23050
23141
|
"name": "allow-invalid-date",
|
|
23051
23142
|
"default": "false"
|
|
23052
23143
|
},
|
|
23144
|
+
{
|
|
23145
|
+
"type": {
|
|
23146
|
+
"text": "DatePickerCalendarDropdownText"
|
|
23147
|
+
},
|
|
23148
|
+
"description": "Customized strings to display in the calendar dropdown UI.",
|
|
23149
|
+
"name": "calendar-text"
|
|
23150
|
+
},
|
|
23053
23151
|
{
|
|
23054
23152
|
"type": {
|
|
23055
23153
|
"text": "boolean"
|
|
@@ -30993,11 +31091,11 @@
|
|
|
30993
31091
|
},
|
|
30994
31092
|
"ICalendarAdapter": {
|
|
30995
31093
|
"path": "src/lib/calendar/calendar-adapter.ts",
|
|
30996
|
-
"lineNumber":
|
|
31094
|
+
"lineNumber": 37
|
|
30997
31095
|
},
|
|
30998
31096
|
"CalendarAdapter": {
|
|
30999
31097
|
"path": "src/lib/calendar/calendar-adapter.ts",
|
|
31000
|
-
"lineNumber":
|
|
31098
|
+
"lineNumber": 110
|
|
31001
31099
|
},
|
|
31002
31100
|
"CalendarComponentDelegateProps": {
|
|
31003
31101
|
"path": "src/lib/calendar/calendar-component-delegate.ts",
|
|
@@ -31017,99 +31115,99 @@
|
|
|
31017
31115
|
},
|
|
31018
31116
|
"CalendarDateBuilder": {
|
|
31019
31117
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31020
|
-
"lineNumber":
|
|
31118
|
+
"lineNumber": 215
|
|
31021
31119
|
},
|
|
31022
31120
|
"CalendarDateSelectCallback": {
|
|
31023
31121
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31024
|
-
"lineNumber":
|
|
31122
|
+
"lineNumber": 216
|
|
31025
31123
|
},
|
|
31026
31124
|
"CalendarDayBuilder": {
|
|
31027
31125
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31028
|
-
"lineNumber":
|
|
31126
|
+
"lineNumber": 217
|
|
31029
31127
|
},
|
|
31030
31128
|
"CalendarDisabledDateBuilder": {
|
|
31031
31129
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31032
|
-
"lineNumber":
|
|
31130
|
+
"lineNumber": 218
|
|
31033
31131
|
},
|
|
31034
31132
|
"CalendarEventBuilder": {
|
|
31035
31133
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31036
|
-
"lineNumber":
|
|
31134
|
+
"lineNumber": 219
|
|
31037
31135
|
},
|
|
31038
31136
|
"CalendarTooltipBuilder": {
|
|
31039
31137
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31040
|
-
"lineNumber":
|
|
31138
|
+
"lineNumber": 220
|
|
31041
31139
|
},
|
|
31042
31140
|
"CalendarMode": {
|
|
31043
31141
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31044
|
-
"lineNumber":
|
|
31142
|
+
"lineNumber": 222
|
|
31045
31143
|
},
|
|
31046
31144
|
"CalendarView": {
|
|
31047
31145
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31048
|
-
"lineNumber":
|
|
31146
|
+
"lineNumber": 223
|
|
31049
31147
|
},
|
|
31050
31148
|
"RangeSelectionState": {
|
|
31051
31149
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31052
|
-
"lineNumber":
|
|
31150
|
+
"lineNumber": 224
|
|
31053
31151
|
},
|
|
31054
31152
|
"CalendarEventColor": {
|
|
31055
31153
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31056
|
-
"lineNumber":
|
|
31154
|
+
"lineNumber": 225
|
|
31057
31155
|
},
|
|
31058
31156
|
"ICalendarDate": {
|
|
31059
31157
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31060
|
-
"lineNumber":
|
|
31158
|
+
"lineNumber": 246
|
|
31061
31159
|
},
|
|
31062
31160
|
"ICalendarDateConfig": {
|
|
31063
31161
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31064
|
-
"lineNumber":
|
|
31162
|
+
"lineNumber": 252
|
|
31065
31163
|
},
|
|
31066
31164
|
"ICalendarDateOptions": {
|
|
31067
31165
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31068
|
-
"lineNumber":
|
|
31166
|
+
"lineNumber": 260
|
|
31069
31167
|
},
|
|
31070
31168
|
"ICalendarDayOptions": {
|
|
31071
31169
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31072
|
-
"lineNumber":
|
|
31170
|
+
"lineNumber": 266
|
|
31073
31171
|
},
|
|
31074
31172
|
"ICalendarEvent": {
|
|
31075
31173
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31076
|
-
"lineNumber":
|
|
31174
|
+
"lineNumber": 271
|
|
31077
31175
|
},
|
|
31078
31176
|
"ICalendarDateSelectEventData": {
|
|
31079
31177
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31080
|
-
"lineNumber":
|
|
31178
|
+
"lineNumber": 277
|
|
31081
31179
|
},
|
|
31082
31180
|
"ICalendarMonthChangeEventData": {
|
|
31083
31181
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31084
|
-
"lineNumber":
|
|
31182
|
+
"lineNumber": 285
|
|
31085
31183
|
},
|
|
31086
31184
|
"ICalendarFocusChangeEventData": {
|
|
31087
31185
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31088
|
-
"lineNumber":
|
|
31186
|
+
"lineNumber": 291
|
|
31089
31187
|
},
|
|
31090
31188
|
"ICalendarNumberRange": {
|
|
31091
31189
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31092
|
-
"lineNumber":
|
|
31190
|
+
"lineNumber": 298
|
|
31093
31191
|
},
|
|
31094
31192
|
"ICalendarDisabledDateParams": {
|
|
31095
31193
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31096
|
-
"lineNumber":
|
|
31194
|
+
"lineNumber": 303
|
|
31097
31195
|
},
|
|
31098
31196
|
"ICalendarMenuMonthConfig": {
|
|
31099
31197
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31100
|
-
"lineNumber":
|
|
31198
|
+
"lineNumber": 312
|
|
31101
31199
|
},
|
|
31102
31200
|
"ICalendarMenuYearConfig": {
|
|
31103
31201
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31104
|
-
"lineNumber":
|
|
31202
|
+
"lineNumber": 320
|
|
31105
31203
|
},
|
|
31106
31204
|
"DayOfWeek": {
|
|
31107
31205
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31108
|
-
"lineNumber":
|
|
31206
|
+
"lineNumber": 328
|
|
31109
31207
|
},
|
|
31110
31208
|
"CalendarMonthFocus": {
|
|
31111
31209
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31112
|
-
"lineNumber":
|
|
31210
|
+
"lineNumber": 338
|
|
31113
31211
|
},
|
|
31114
31212
|
"ICalendarCore": {
|
|
31115
31213
|
"path": "src/lib/calendar/calendar-core.ts",
|
|
@@ -31125,7 +31223,7 @@
|
|
|
31125
31223
|
},
|
|
31126
31224
|
"CalendarComponent": {
|
|
31127
31225
|
"path": "src/lib/calendar/calendar.ts",
|
|
31128
|
-
"lineNumber":
|
|
31226
|
+
"lineNumber": 148
|
|
31129
31227
|
},
|
|
31130
31228
|
"ICardComponent": {
|
|
31131
31229
|
"path": "src/lib/card/card.ts",
|
|
@@ -33189,7 +33287,7 @@
|
|
|
33189
33287
|
},
|
|
33190
33288
|
"ICalendarDropdownPopupConfig": {
|
|
33191
33289
|
"path": "src/lib/calendar/calendar-dropdown/calendar-dropdown-constants.ts",
|
|
33192
|
-
"lineNumber":
|
|
33290
|
+
"lineNumber": 3
|
|
33193
33291
|
},
|
|
33194
33292
|
"ICalendarDropdown": {
|
|
33195
33293
|
"path": "src/lib/calendar/calendar-dropdown/calendar-dropdown.ts",
|
|
@@ -33545,7 +33643,7 @@
|
|
|
33545
33643
|
},
|
|
33546
33644
|
"BaseDatePickerAdapter": {
|
|
33547
33645
|
"path": "src/lib/date-picker/base/base-date-picker-adapter.ts",
|
|
33548
|
-
"lineNumber":
|
|
33646
|
+
"lineNumber": 60
|
|
33549
33647
|
},
|
|
33550
33648
|
"DatePickerParseCallback": {
|
|
33551
33649
|
"path": "src/lib/date-picker/base/base-date-picker-constants.ts",
|
|
@@ -33567,21 +33665,25 @@
|
|
|
33567
33665
|
"path": "src/lib/date-picker/base/base-date-picker-constants.ts",
|
|
33568
33666
|
"lineNumber": 14
|
|
33569
33667
|
},
|
|
33668
|
+
"IDatePickerCalendarDropdownText": {
|
|
33669
|
+
"path": "src/lib/date-picker/base/base-date-picker-constants.ts",
|
|
33670
|
+
"lineNumber": 31
|
|
33671
|
+
},
|
|
33570
33672
|
"IBaseDatePickerCore": {
|
|
33571
33673
|
"path": "src/lib/date-picker/base/base-date-picker-core.ts",
|
|
33572
|
-
"lineNumber":
|
|
33674
|
+
"lineNumber": 17
|
|
33573
33675
|
},
|
|
33574
33676
|
"BaseDatePickerCore": {
|
|
33575
33677
|
"path": "src/lib/date-picker/base/base-date-picker-core.ts",
|
|
33576
|
-
"lineNumber":
|
|
33678
|
+
"lineNumber": 40
|
|
33577
33679
|
},
|
|
33578
33680
|
"IBaseDatePickerComponent": {
|
|
33579
33681
|
"path": "src/lib/date-picker/base/base-date-picker.ts",
|
|
33580
|
-
"lineNumber":
|
|
33682
|
+
"lineNumber": 15
|
|
33581
33683
|
},
|
|
33582
33684
|
"BaseDatePickerComponent": {
|
|
33583
33685
|
"path": "src/lib/date-picker/base/base-date-picker.ts",
|
|
33584
|
-
"lineNumber":
|
|
33686
|
+
"lineNumber": 83
|
|
33585
33687
|
},
|
|
33586
33688
|
"DeprecatedButtonComponentDelegateProps": {
|
|
33587
33689
|
"path": "src/lib/deprecated/button/deprecated-button-component-delegate.ts",
|