@tylertech/forge 3.1.3 → 3.3.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 +239 -60
- package/dist/chips/forge-chips.css +1 -0
- package/dist/field/forge-field.css +2 -0
- package/dist/inline-message/forge-inline-message.css +2 -0
- package/dist/lib.js +1 -1
- package/dist/lib.js.map +4 -4
- package/dist/vscode.css-custom-data.json +5 -0
- package/dist/vscode.html-custom-data.json +22 -2
- package/esm/app-bar/app-bar/app-bar.d.ts +2 -0
- package/esm/app-bar/app-bar/app-bar.js +2 -0
- package/esm/autocomplete/autocomplete-adapter.js +1 -7
- package/esm/button/base/base-button-adapter.js +1 -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/chip-field/chip-field.js +1 -1
- package/esm/chips/chip/chip-core.js +0 -1
- package/esm/chips/chip/chip.d.ts +1 -0
- package/esm/chips/chip/chip.js +2 -1
- package/esm/circular-progress/circular-progress.js +1 -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/esm/field/field-adapter.d.ts +2 -0
- package/esm/field/field-adapter.js +4 -0
- package/esm/field/field-core.js +1 -0
- package/esm/field/field.js +1 -1
- package/esm/inline-message/inline-message.js +1 -1
- package/esm/paginator/paginator.js +1 -1
- package/esm/select/select/select.js +1 -1
- package/esm/skip-link/skip-link-constants.d.ts +2 -0
- package/esm/skip-link/skip-link-constants.js +2 -1
- package/esm/skip-link/skip-link.d.ts +36 -12
- package/esm/skip-link/skip-link.js +55 -12
- package/esm/tabs/tab/tab-constants.d.ts +1 -3
- package/esm/tabs/tab/tab-constants.js +1 -3
- package/esm/tabs/tab/tab.d.ts +1 -1
- package/esm/tabs/tab/tab.js +1 -1
- package/esm/tabs/tab-bar/tab-bar-core.js +2 -1
- package/esm/tabs/tab-bar/tab-bar.d.ts +1 -1
- package/esm/tabs/tab-bar/tab-bar.js +1 -1
- package/esm/text-field/text-field-adapter.d.ts +8 -4
- package/esm/text-field/text-field-adapter.js +9 -4
- package/esm/text-field/text-field-constants.d.ts +2 -0
- package/esm/text-field/text-field-constants.js +2 -0
- package/esm/text-field/text-field-core.d.ts +2 -0
- package/esm/text-field/text-field-core.js +10 -3
- package/package.json +1 -1
- package/sass/chip-field/chip-field.scss +2 -1
- package/sass/chips/chip/chip.scss +1 -1
- package/sass/circular-progress/_core.scss +2 -2
- package/sass/core/styles/tokens/chips/chip/_tokens.scss +1 -0
- package/sass/field/_core.scss +1 -0
- package/sass/field/field.scss +1 -1
- package/sass/field/forge-field.scss +3 -1
- package/sass/inline-message/_core.scss +2 -0
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"
|
|
@@ -14686,6 +14768,15 @@
|
|
|
14686
14768
|
"privacy": "private",
|
|
14687
14769
|
"default": "false"
|
|
14688
14770
|
},
|
|
14771
|
+
{
|
|
14772
|
+
"kind": "field",
|
|
14773
|
+
"name": "_skipUrlChange",
|
|
14774
|
+
"type": {
|
|
14775
|
+
"text": "boolean"
|
|
14776
|
+
},
|
|
14777
|
+
"privacy": "private",
|
|
14778
|
+
"default": "false"
|
|
14779
|
+
},
|
|
14689
14780
|
{
|
|
14690
14781
|
"kind": "field",
|
|
14691
14782
|
"name": "_anchorElement",
|
|
@@ -14695,6 +14786,14 @@
|
|
|
14695
14786
|
"privacy": "private",
|
|
14696
14787
|
"default": "getShadowElement(this, SKIP_LINK_CONSTANTS.selectors.ANCHOR)"
|
|
14697
14788
|
},
|
|
14789
|
+
{
|
|
14790
|
+
"kind": "field",
|
|
14791
|
+
"name": "_clickListener",
|
|
14792
|
+
"type": {
|
|
14793
|
+
"text": "EventListener"
|
|
14794
|
+
},
|
|
14795
|
+
"privacy": "private"
|
|
14796
|
+
},
|
|
14698
14797
|
{
|
|
14699
14798
|
"kind": "field",
|
|
14700
14799
|
"name": "target",
|
|
@@ -14703,7 +14802,8 @@
|
|
|
14703
14802
|
},
|
|
14704
14803
|
"privacy": "public",
|
|
14705
14804
|
"description": "The IDREF of the element to which the skip link should navigate.",
|
|
14706
|
-
"default": "''"
|
|
14805
|
+
"default": "''",
|
|
14806
|
+
"attribute": "target"
|
|
14707
14807
|
},
|
|
14708
14808
|
{
|
|
14709
14809
|
"kind": "field",
|
|
@@ -14713,7 +14813,8 @@
|
|
|
14713
14813
|
},
|
|
14714
14814
|
"privacy": "public",
|
|
14715
14815
|
"description": "The theme applied to the skip link.",
|
|
14716
|
-
"default": "'default'"
|
|
14816
|
+
"default": "'default'",
|
|
14817
|
+
"attribute": "theme"
|
|
14717
14818
|
},
|
|
14718
14819
|
{
|
|
14719
14820
|
"kind": "field",
|
|
@@ -14723,7 +14824,8 @@
|
|
|
14723
14824
|
},
|
|
14724
14825
|
"privacy": "public",
|
|
14725
14826
|
"description": "Whether or not the skip link uses a muted color scheme.",
|
|
14726
|
-
"default": "false"
|
|
14827
|
+
"default": "false",
|
|
14828
|
+
"attribute": "muted"
|
|
14727
14829
|
},
|
|
14728
14830
|
{
|
|
14729
14831
|
"kind": "field",
|
|
@@ -14733,7 +14835,8 @@
|
|
|
14733
14835
|
},
|
|
14734
14836
|
"privacy": "public",
|
|
14735
14837
|
"description": "Whether or not the skip link should remain visible when not focused.",
|
|
14736
|
-
"default": "false"
|
|
14838
|
+
"default": "false",
|
|
14839
|
+
"attribute": "persistent"
|
|
14737
14840
|
},
|
|
14738
14841
|
{
|
|
14739
14842
|
"kind": "field",
|
|
@@ -14743,49 +14846,93 @@
|
|
|
14743
14846
|
},
|
|
14744
14847
|
"privacy": "public",
|
|
14745
14848
|
"description": "Whether or not the skip link renders within its container.",
|
|
14746
|
-
"default": "false"
|
|
14849
|
+
"default": "false",
|
|
14850
|
+
"attribute": "inline"
|
|
14851
|
+
},
|
|
14852
|
+
{
|
|
14853
|
+
"kind": "field",
|
|
14854
|
+
"name": "skipUrlChange",
|
|
14855
|
+
"type": {
|
|
14856
|
+
"text": "boolean"
|
|
14857
|
+
},
|
|
14858
|
+
"privacy": "public",
|
|
14859
|
+
"description": "Sets the skip link to skip browser navigation and scroll to the target element.",
|
|
14860
|
+
"default": "false",
|
|
14861
|
+
"attribute": "skipUrlChange"
|
|
14862
|
+
},
|
|
14863
|
+
{
|
|
14864
|
+
"kind": "method",
|
|
14865
|
+
"name": "_handleClick",
|
|
14866
|
+
"privacy": "private",
|
|
14867
|
+
"return": {
|
|
14868
|
+
"type": {
|
|
14869
|
+
"text": "void"
|
|
14870
|
+
}
|
|
14871
|
+
},
|
|
14872
|
+
"parameters": [
|
|
14873
|
+
{
|
|
14874
|
+
"name": "evt",
|
|
14875
|
+
"type": {
|
|
14876
|
+
"text": "Event"
|
|
14877
|
+
}
|
|
14878
|
+
}
|
|
14879
|
+
]
|
|
14747
14880
|
}
|
|
14748
14881
|
],
|
|
14749
14882
|
"attributes": [
|
|
14750
14883
|
{
|
|
14884
|
+
"name": "target",
|
|
14751
14885
|
"type": {
|
|
14752
14886
|
"text": "string"
|
|
14753
14887
|
},
|
|
14754
14888
|
"description": "The IDREF of the element to which the skip link should navigate.",
|
|
14755
|
-
"
|
|
14756
|
-
"
|
|
14889
|
+
"default": "''",
|
|
14890
|
+
"fieldName": "target"
|
|
14757
14891
|
},
|
|
14758
14892
|
{
|
|
14893
|
+
"name": "theme",
|
|
14759
14894
|
"type": {
|
|
14760
14895
|
"text": "SkipLinkTheme"
|
|
14761
14896
|
},
|
|
14762
14897
|
"description": "The theme applied to the skip link.",
|
|
14763
|
-
"
|
|
14764
|
-
"
|
|
14898
|
+
"default": "'default'",
|
|
14899
|
+
"fieldName": "theme"
|
|
14765
14900
|
},
|
|
14766
14901
|
{
|
|
14902
|
+
"name": "muted",
|
|
14767
14903
|
"type": {
|
|
14768
14904
|
"text": "boolean"
|
|
14769
14905
|
},
|
|
14770
14906
|
"description": "Whether or not the skip link uses a muted color scheme.",
|
|
14771
|
-
"
|
|
14772
|
-
"
|
|
14907
|
+
"default": "false",
|
|
14908
|
+
"fieldName": "muted"
|
|
14773
14909
|
},
|
|
14774
14910
|
{
|
|
14911
|
+
"name": "persistent",
|
|
14775
14912
|
"type": {
|
|
14776
14913
|
"text": "boolean"
|
|
14777
14914
|
},
|
|
14778
14915
|
"description": "Whether or not the skip link should remain visible when not focused.",
|
|
14779
|
-
"
|
|
14780
|
-
"
|
|
14916
|
+
"default": "false",
|
|
14917
|
+
"fieldName": "persistent"
|
|
14781
14918
|
},
|
|
14782
14919
|
{
|
|
14920
|
+
"name": "inline",
|
|
14783
14921
|
"type": {
|
|
14784
14922
|
"text": "boolean"
|
|
14785
14923
|
},
|
|
14786
14924
|
"description": "Whether or not the skip link renders within its container.",
|
|
14787
|
-
"
|
|
14788
|
-
"
|
|
14925
|
+
"default": "false",
|
|
14926
|
+
"fieldName": "inline"
|
|
14927
|
+
},
|
|
14928
|
+
{
|
|
14929
|
+
"name": "skipUrlChange",
|
|
14930
|
+
"type": {
|
|
14931
|
+
"text": "boolean"
|
|
14932
|
+
},
|
|
14933
|
+
"description": "Sets the skip link to skip browser navigation and scroll to the target element.",
|
|
14934
|
+
"default": "false",
|
|
14935
|
+
"fieldName": "skipUrlChange"
|
|
14789
14936
|
}
|
|
14790
14937
|
],
|
|
14791
14938
|
"superclass": {
|
|
@@ -20044,7 +20191,8 @@
|
|
|
20044
20191
|
"type": {
|
|
20045
20192
|
"text": "string"
|
|
20046
20193
|
},
|
|
20047
|
-
"privacy": "public"
|
|
20194
|
+
"privacy": "public",
|
|
20195
|
+
"description": "The `<a>` target of the logo + title area link when `href` is set."
|
|
20048
20196
|
}
|
|
20049
20197
|
],
|
|
20050
20198
|
"events": [
|
|
@@ -20085,6 +20233,13 @@
|
|
|
20085
20233
|
},
|
|
20086
20234
|
"description": "The href that will be used to make the logo and title area a clickable link",
|
|
20087
20235
|
"name": "href"
|
|
20236
|
+
},
|
|
20237
|
+
{
|
|
20238
|
+
"type": {
|
|
20239
|
+
"text": "string"
|
|
20240
|
+
},
|
|
20241
|
+
"description": "The `<a>` target of the logo + title area link when `href` is set.",
|
|
20242
|
+
"name": "target"
|
|
20088
20243
|
}
|
|
20089
20244
|
],
|
|
20090
20245
|
"superclass": {
|
|
@@ -22100,6 +22255,10 @@
|
|
|
22100
22255
|
"description": "The font size of the chip icon.",
|
|
22101
22256
|
"name": "--forge-chip-icon-font-size"
|
|
22102
22257
|
},
|
|
22258
|
+
{
|
|
22259
|
+
"description": "The color of the focus indicator.",
|
|
22260
|
+
"name": "--forge-chip-focus-indicator-color"
|
|
22261
|
+
},
|
|
22103
22262
|
{
|
|
22104
22263
|
"description": "The opacity of the disabled chip.",
|
|
22105
22264
|
"name": "--forge-chip-disabled-opacity"
|
|
@@ -23039,6 +23198,15 @@
|
|
|
23039
23198
|
},
|
|
23040
23199
|
"privacy": "public",
|
|
23041
23200
|
"description": "The locale to use."
|
|
23201
|
+
},
|
|
23202
|
+
{
|
|
23203
|
+
"kind": "field",
|
|
23204
|
+
"name": "calendarText",
|
|
23205
|
+
"type": {
|
|
23206
|
+
"text": "DatePickerCalendarDropdownText"
|
|
23207
|
+
},
|
|
23208
|
+
"privacy": "public",
|
|
23209
|
+
"description": "Customized strings to display in the calendar dropdown UI."
|
|
23042
23210
|
}
|
|
23043
23211
|
],
|
|
23044
23212
|
"attributes": [
|
|
@@ -23050,6 +23218,13 @@
|
|
|
23050
23218
|
"name": "allow-invalid-date",
|
|
23051
23219
|
"default": "false"
|
|
23052
23220
|
},
|
|
23221
|
+
{
|
|
23222
|
+
"type": {
|
|
23223
|
+
"text": "DatePickerCalendarDropdownText"
|
|
23224
|
+
},
|
|
23225
|
+
"description": "Customized strings to display in the calendar dropdown UI.",
|
|
23226
|
+
"name": "calendar-text"
|
|
23227
|
+
},
|
|
23053
23228
|
{
|
|
23054
23229
|
"type": {
|
|
23055
23230
|
"text": "boolean"
|
|
@@ -30257,7 +30432,7 @@
|
|
|
30257
30432
|
"text": "boolean"
|
|
30258
30433
|
},
|
|
30259
30434
|
"privacy": "public",
|
|
30260
|
-
"description": "The disabled state of the tab.",
|
|
30435
|
+
"description": "The disabled state of the tab. Should not be set if using the disabled property on `forge-tab-bar`.",
|
|
30261
30436
|
"default": "false"
|
|
30262
30437
|
},
|
|
30263
30438
|
{
|
|
@@ -30425,7 +30600,7 @@
|
|
|
30425
30600
|
"text": "boolean"
|
|
30426
30601
|
},
|
|
30427
30602
|
"privacy": "public",
|
|
30428
|
-
"description": "
|
|
30603
|
+
"description": "Sets the disabled state of all child tabs. If true, any new tabs added to the DOM will be disabled by default. This can be used instead of setting individual tab disabled properties, mixing the two methods of disabling is not supported.",
|
|
30429
30604
|
"default": "false"
|
|
30430
30605
|
},
|
|
30431
30606
|
{
|
|
@@ -30993,11 +31168,11 @@
|
|
|
30993
31168
|
},
|
|
30994
31169
|
"ICalendarAdapter": {
|
|
30995
31170
|
"path": "src/lib/calendar/calendar-adapter.ts",
|
|
30996
|
-
"lineNumber":
|
|
31171
|
+
"lineNumber": 37
|
|
30997
31172
|
},
|
|
30998
31173
|
"CalendarAdapter": {
|
|
30999
31174
|
"path": "src/lib/calendar/calendar-adapter.ts",
|
|
31000
|
-
"lineNumber":
|
|
31175
|
+
"lineNumber": 110
|
|
31001
31176
|
},
|
|
31002
31177
|
"CalendarComponentDelegateProps": {
|
|
31003
31178
|
"path": "src/lib/calendar/calendar-component-delegate.ts",
|
|
@@ -31017,99 +31192,99 @@
|
|
|
31017
31192
|
},
|
|
31018
31193
|
"CalendarDateBuilder": {
|
|
31019
31194
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31020
|
-
"lineNumber":
|
|
31195
|
+
"lineNumber": 215
|
|
31021
31196
|
},
|
|
31022
31197
|
"CalendarDateSelectCallback": {
|
|
31023
31198
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31024
|
-
"lineNumber":
|
|
31199
|
+
"lineNumber": 216
|
|
31025
31200
|
},
|
|
31026
31201
|
"CalendarDayBuilder": {
|
|
31027
31202
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31028
|
-
"lineNumber":
|
|
31203
|
+
"lineNumber": 217
|
|
31029
31204
|
},
|
|
31030
31205
|
"CalendarDisabledDateBuilder": {
|
|
31031
31206
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31032
|
-
"lineNumber":
|
|
31207
|
+
"lineNumber": 218
|
|
31033
31208
|
},
|
|
31034
31209
|
"CalendarEventBuilder": {
|
|
31035
31210
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31036
|
-
"lineNumber":
|
|
31211
|
+
"lineNumber": 219
|
|
31037
31212
|
},
|
|
31038
31213
|
"CalendarTooltipBuilder": {
|
|
31039
31214
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31040
|
-
"lineNumber":
|
|
31215
|
+
"lineNumber": 220
|
|
31041
31216
|
},
|
|
31042
31217
|
"CalendarMode": {
|
|
31043
31218
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31044
|
-
"lineNumber":
|
|
31219
|
+
"lineNumber": 222
|
|
31045
31220
|
},
|
|
31046
31221
|
"CalendarView": {
|
|
31047
31222
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31048
|
-
"lineNumber":
|
|
31223
|
+
"lineNumber": 223
|
|
31049
31224
|
},
|
|
31050
31225
|
"RangeSelectionState": {
|
|
31051
31226
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31052
|
-
"lineNumber":
|
|
31227
|
+
"lineNumber": 224
|
|
31053
31228
|
},
|
|
31054
31229
|
"CalendarEventColor": {
|
|
31055
31230
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31056
|
-
"lineNumber":
|
|
31231
|
+
"lineNumber": 225
|
|
31057
31232
|
},
|
|
31058
31233
|
"ICalendarDate": {
|
|
31059
31234
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31060
|
-
"lineNumber":
|
|
31235
|
+
"lineNumber": 246
|
|
31061
31236
|
},
|
|
31062
31237
|
"ICalendarDateConfig": {
|
|
31063
31238
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31064
|
-
"lineNumber":
|
|
31239
|
+
"lineNumber": 252
|
|
31065
31240
|
},
|
|
31066
31241
|
"ICalendarDateOptions": {
|
|
31067
31242
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31068
|
-
"lineNumber":
|
|
31243
|
+
"lineNumber": 260
|
|
31069
31244
|
},
|
|
31070
31245
|
"ICalendarDayOptions": {
|
|
31071
31246
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31072
|
-
"lineNumber":
|
|
31247
|
+
"lineNumber": 266
|
|
31073
31248
|
},
|
|
31074
31249
|
"ICalendarEvent": {
|
|
31075
31250
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31076
|
-
"lineNumber":
|
|
31251
|
+
"lineNumber": 271
|
|
31077
31252
|
},
|
|
31078
31253
|
"ICalendarDateSelectEventData": {
|
|
31079
31254
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31080
|
-
"lineNumber":
|
|
31255
|
+
"lineNumber": 277
|
|
31081
31256
|
},
|
|
31082
31257
|
"ICalendarMonthChangeEventData": {
|
|
31083
31258
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31084
|
-
"lineNumber":
|
|
31259
|
+
"lineNumber": 285
|
|
31085
31260
|
},
|
|
31086
31261
|
"ICalendarFocusChangeEventData": {
|
|
31087
31262
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31088
|
-
"lineNumber":
|
|
31263
|
+
"lineNumber": 291
|
|
31089
31264
|
},
|
|
31090
31265
|
"ICalendarNumberRange": {
|
|
31091
31266
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31092
|
-
"lineNumber":
|
|
31267
|
+
"lineNumber": 298
|
|
31093
31268
|
},
|
|
31094
31269
|
"ICalendarDisabledDateParams": {
|
|
31095
31270
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31096
|
-
"lineNumber":
|
|
31271
|
+
"lineNumber": 303
|
|
31097
31272
|
},
|
|
31098
31273
|
"ICalendarMenuMonthConfig": {
|
|
31099
31274
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31100
|
-
"lineNumber":
|
|
31275
|
+
"lineNumber": 312
|
|
31101
31276
|
},
|
|
31102
31277
|
"ICalendarMenuYearConfig": {
|
|
31103
31278
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31104
|
-
"lineNumber":
|
|
31279
|
+
"lineNumber": 320
|
|
31105
31280
|
},
|
|
31106
31281
|
"DayOfWeek": {
|
|
31107
31282
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31108
|
-
"lineNumber":
|
|
31283
|
+
"lineNumber": 328
|
|
31109
31284
|
},
|
|
31110
31285
|
"CalendarMonthFocus": {
|
|
31111
31286
|
"path": "src/lib/calendar/calendar-constants.ts",
|
|
31112
|
-
"lineNumber":
|
|
31287
|
+
"lineNumber": 338
|
|
31113
31288
|
},
|
|
31114
31289
|
"ICalendarCore": {
|
|
31115
31290
|
"path": "src/lib/calendar/calendar-core.ts",
|
|
@@ -31125,7 +31300,7 @@
|
|
|
31125
31300
|
},
|
|
31126
31301
|
"CalendarComponent": {
|
|
31127
31302
|
"path": "src/lib/calendar/calendar.ts",
|
|
31128
|
-
"lineNumber":
|
|
31303
|
+
"lineNumber": 148
|
|
31129
31304
|
},
|
|
31130
31305
|
"ICardComponent": {
|
|
31131
31306
|
"path": "src/lib/card/card.ts",
|
|
@@ -31529,7 +31704,7 @@
|
|
|
31529
31704
|
},
|
|
31530
31705
|
"FieldAdapter": {
|
|
31531
31706
|
"path": "src/lib/field/field-adapter.ts",
|
|
31532
|
-
"lineNumber":
|
|
31707
|
+
"lineNumber": 19
|
|
31533
31708
|
},
|
|
31534
31709
|
"IFieldCore": {
|
|
31535
31710
|
"path": "src/lib/field/field-core.ts",
|
|
@@ -32317,7 +32492,7 @@
|
|
|
32317
32492
|
},
|
|
32318
32493
|
"SkipLinkTheme": {
|
|
32319
32494
|
"path": "src/lib/skip-link/skip-link-constants.ts",
|
|
32320
|
-
"lineNumber":
|
|
32495
|
+
"lineNumber": 29
|
|
32321
32496
|
},
|
|
32322
32497
|
"ISkipLinkComponent": {
|
|
32323
32498
|
"path": "src/lib/skip-link/skip-link.ts",
|
|
@@ -32325,7 +32500,7 @@
|
|
|
32325
32500
|
},
|
|
32326
32501
|
"SkipLinkComponent": {
|
|
32327
32502
|
"path": "src/lib/skip-link/skip-link.ts",
|
|
32328
|
-
"lineNumber":
|
|
32503
|
+
"lineNumber": 51
|
|
32329
32504
|
},
|
|
32330
32505
|
"ISliderState": {
|
|
32331
32506
|
"path": "src/lib/slider/slider-adapter.ts",
|
|
@@ -32701,7 +32876,7 @@
|
|
|
32701
32876
|
},
|
|
32702
32877
|
"TextFieldAdapter": {
|
|
32703
32878
|
"path": "src/lib/text-field/text-field-adapter.ts",
|
|
32704
|
-
"lineNumber":
|
|
32879
|
+
"lineNumber": 25
|
|
32705
32880
|
},
|
|
32706
32881
|
"TextFieldComponentDelegateProps": {
|
|
32707
32882
|
"path": "src/lib/text-field/text-field-component-delegate.ts",
|
|
@@ -32721,15 +32896,15 @@
|
|
|
32721
32896
|
},
|
|
32722
32897
|
"TextFieldObservedInputAttributes": {
|
|
32723
32898
|
"path": "src/lib/text-field/text-field-constants.ts",
|
|
32724
|
-
"lineNumber":
|
|
32899
|
+
"lineNumber": 45
|
|
32725
32900
|
},
|
|
32726
32901
|
"TextFieldInputAttributeObserver": {
|
|
32727
32902
|
"path": "src/lib/text-field/text-field-constants.ts",
|
|
32728
|
-
"lineNumber":
|
|
32903
|
+
"lineNumber": 46
|
|
32729
32904
|
},
|
|
32730
32905
|
"TextFieldValueChangeListener": {
|
|
32731
32906
|
"path": "src/lib/text-field/text-field-constants.ts",
|
|
32732
|
-
"lineNumber":
|
|
32907
|
+
"lineNumber": 47
|
|
32733
32908
|
},
|
|
32734
32909
|
"ITextFieldCore": {
|
|
32735
32910
|
"path": "src/lib/text-field/text-field-core.ts",
|
|
@@ -32973,7 +33148,7 @@
|
|
|
32973
33148
|
},
|
|
32974
33149
|
"AppBarComponent": {
|
|
32975
33150
|
"path": "src/lib/app-bar/app-bar/app-bar.ts",
|
|
32976
|
-
"lineNumber":
|
|
33151
|
+
"lineNumber": 77
|
|
32977
33152
|
},
|
|
32978
33153
|
"IAppBarHelpButtonAdapter": {
|
|
32979
33154
|
"path": "src/lib/app-bar/help-button/app-bar-help-button-adapter.ts",
|
|
@@ -33189,7 +33364,7 @@
|
|
|
33189
33364
|
},
|
|
33190
33365
|
"ICalendarDropdownPopupConfig": {
|
|
33191
33366
|
"path": "src/lib/calendar/calendar-dropdown/calendar-dropdown-constants.ts",
|
|
33192
|
-
"lineNumber":
|
|
33367
|
+
"lineNumber": 3
|
|
33193
33368
|
},
|
|
33194
33369
|
"ICalendarDropdown": {
|
|
33195
33370
|
"path": "src/lib/calendar/calendar-dropdown/calendar-dropdown.ts",
|
|
@@ -33293,7 +33468,7 @@
|
|
|
33293
33468
|
},
|
|
33294
33469
|
"ChipComponent": {
|
|
33295
33470
|
"path": "src/lib/chips/chip/chip.ts",
|
|
33296
|
-
"lineNumber":
|
|
33471
|
+
"lineNumber": 135
|
|
33297
33472
|
},
|
|
33298
33473
|
"IChipSetComponent": {
|
|
33299
33474
|
"path": "src/lib/chips/chip-set/chip-set.ts",
|
|
@@ -33545,7 +33720,7 @@
|
|
|
33545
33720
|
},
|
|
33546
33721
|
"BaseDatePickerAdapter": {
|
|
33547
33722
|
"path": "src/lib/date-picker/base/base-date-picker-adapter.ts",
|
|
33548
|
-
"lineNumber":
|
|
33723
|
+
"lineNumber": 60
|
|
33549
33724
|
},
|
|
33550
33725
|
"DatePickerParseCallback": {
|
|
33551
33726
|
"path": "src/lib/date-picker/base/base-date-picker-constants.ts",
|
|
@@ -33567,21 +33742,25 @@
|
|
|
33567
33742
|
"path": "src/lib/date-picker/base/base-date-picker-constants.ts",
|
|
33568
33743
|
"lineNumber": 14
|
|
33569
33744
|
},
|
|
33745
|
+
"IDatePickerCalendarDropdownText": {
|
|
33746
|
+
"path": "src/lib/date-picker/base/base-date-picker-constants.ts",
|
|
33747
|
+
"lineNumber": 31
|
|
33748
|
+
},
|
|
33570
33749
|
"IBaseDatePickerCore": {
|
|
33571
33750
|
"path": "src/lib/date-picker/base/base-date-picker-core.ts",
|
|
33572
|
-
"lineNumber":
|
|
33751
|
+
"lineNumber": 17
|
|
33573
33752
|
},
|
|
33574
33753
|
"BaseDatePickerCore": {
|
|
33575
33754
|
"path": "src/lib/date-picker/base/base-date-picker-core.ts",
|
|
33576
|
-
"lineNumber":
|
|
33755
|
+
"lineNumber": 40
|
|
33577
33756
|
},
|
|
33578
33757
|
"IBaseDatePickerComponent": {
|
|
33579
33758
|
"path": "src/lib/date-picker/base/base-date-picker.ts",
|
|
33580
|
-
"lineNumber":
|
|
33759
|
+
"lineNumber": 15
|
|
33581
33760
|
},
|
|
33582
33761
|
"BaseDatePickerComponent": {
|
|
33583
33762
|
"path": "src/lib/date-picker/base/base-date-picker.ts",
|
|
33584
|
-
"lineNumber":
|
|
33763
|
+
"lineNumber": 83
|
|
33585
33764
|
},
|
|
33586
33765
|
"DeprecatedButtonComponentDelegateProps": {
|
|
33587
33766
|
"path": "src/lib/deprecated/button/deprecated-button-component-delegate.ts",
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
--_chip-padding-block: var(--forge-chip-padding-block, 0);
|
|
28
28
|
--_chip-cursor: var(--forge-chip-cursor, pointer);
|
|
29
29
|
--_chip-icon-font-size: var(--forge-chip-icon-font-size, 1.5rem);
|
|
30
|
+
--_chip-focus-indicator-color: var(--forge-chip-focus-indicator-color, var(--_chip-color));
|
|
30
31
|
--_chip-disabled-opacity: var(--forge-chip-disabled-opacity, 0.38);
|
|
31
32
|
--_chip-disabled-cursor: var(--forge-chip-disabled-cursor, not-allowed);
|
|
32
33
|
--_chip-dense-height: var(--forge-chip-dense-height, 24px);
|
|
@@ -73,6 +73,7 @@
|
|
|
73
73
|
outline-style: var(--_field-outline-style);
|
|
74
74
|
outline-width: var(--_field-outline-width);
|
|
75
75
|
outline-color: var(--forge-theme-outline-low, #9e9e9e);
|
|
76
|
+
outline-offset: calc(var(--_field-outline-width) * -1);
|
|
76
77
|
background: var(--_field-background);
|
|
77
78
|
opacity: var(--_field-disableable-opacity);
|
|
78
79
|
cursor: var(--_field-disableable-cursor);
|
|
@@ -356,6 +357,7 @@
|
|
|
356
357
|
}
|
|
357
358
|
.forge-field--invalid.forge-field:has(:where(input, textarea, select, .forge-field__input):focus), .forge-field:has(:where(input, textarea, select, .forge-field__input):invalid).forge-field:has(:where(input, textarea, select, .forge-field__input):focus) {
|
|
358
359
|
--forge-focus-indicator-color: var(--forge-theme-error, #b00020);
|
|
360
|
+
--forge-focus-indicator-outward-offset: calc(var(--_field-outline-width) * -1);
|
|
359
361
|
}
|
|
360
362
|
.forge-field--invalid label, .forge-field:has(:where(input, textarea, select, .forge-field__input):invalid) label {
|
|
361
363
|
color: var(--forge-theme-error, #b00020);
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
border-style: var(--_inline-message-border-style);
|
|
39
39
|
border-color: var(--_inline-message-border-color);
|
|
40
40
|
display: flex;
|
|
41
|
+
align-items: center;
|
|
41
42
|
gap: var(--_inline-message-icon-gap);
|
|
42
43
|
box-sizing: border-box;
|
|
43
44
|
padding-inline: var(--_inline-message-padding-inline);
|
|
@@ -62,5 +63,6 @@
|
|
|
62
63
|
}
|
|
63
64
|
.forge-inline-message__icon {
|
|
64
65
|
color: var(--_inline-message-icon-color);
|
|
66
|
+
align-self: start;
|
|
65
67
|
grid-row: 1/span 2;
|
|
66
68
|
}
|