@tylertech/forge 3.4.0 → 3.4.2
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 +42 -20
- package/dist/avatar/forge-avatar.css +0 -1
- package/dist/dialog/forge-dialog.css +0 -1
- package/dist/divider/forge-divider.css +0 -1
- package/dist/lib.js +1 -1
- package/dist/lib.js.map +3 -3
- package/dist/radio/forge-radio.css +16 -21
- package/dist/vscode.css-custom-data.json +10 -20
- package/dist/vscode.html-custom-data.json +4 -4
- package/esm/avatar/avatar.js +1 -1
- package/esm/backdrop/backdrop.js +1 -1
- package/esm/button-area/button-area.js +1 -1
- package/esm/calendar/calendar.js +1 -1
- package/esm/date-range-picker/date-range-picker.d.ts +5 -0
- package/esm/date-range-picker/date-range-picker.js +5 -0
- package/esm/divider/divider.js +1 -1
- package/esm/drawer/drawer/drawer.js +1 -1
- package/esm/drawer/mini-drawer/mini-drawer.d.ts +1 -0
- package/esm/drawer/mini-drawer/mini-drawer.js +2 -1
- package/esm/field/field.js +1 -1
- package/esm/linear-progress/linear-progress.js +1 -1
- package/esm/radio/radio/radio.d.ts +1 -4
- package/esm/radio/radio/radio.js +2 -5
- package/esm/split-view/split-view/split-view.js +1 -1
- package/esm/split-view/split-view-panel/split-view-panel.js +1 -1
- package/esm/text-field/text-field-core.js +7 -2
- package/esm/text-field/text-field.d.ts +1 -0
- package/esm/text-field/text-field.js +3 -0
- package/esm/toolbar/toolbar.d.ts +2 -2
- package/esm/toolbar/toolbar.js +3 -3
- package/esm/tooltip/tooltip.js +1 -1
- package/package.json +1 -1
- package/sass/avatar/_core.scss +0 -2
- package/sass/backdrop/_core.scss +0 -1
- package/sass/core/styles/tokens/drawer/mini/_tokens.scss +1 -0
- package/sass/core/styles/tokens/field/_tokens.scss +2 -2
- package/sass/core/styles/tokens/radio/_tokens.scss +2 -5
- package/sass/divider/_core.scss +0 -1
- package/sass/drawer/base/_core.scss +1 -2
- package/sass/drawer/drawer/drawer.scss +3 -9
- package/sass/drawer/mini-drawer/_core.scss +1 -0
- package/sass/linear-progress/_core.scss +4 -1
- package/sass/radio/forge-radio.scss +3 -3
- package/sass/radio/radio/_core.scss +14 -20
- package/sass/split-view/split-view/_mixins.scss +0 -1
- package/sass/split-view/split-view-panel/_mixins.scss +2 -2
- package/sass/toolbar/_core.scss +0 -1
- package/sass/utils/_mixins.scss +1 -1
package/custom-elements.json
CHANGED
|
@@ -6443,6 +6443,36 @@
|
|
|
6443
6443
|
}
|
|
6444
6444
|
}
|
|
6445
6445
|
],
|
|
6446
|
+
"events": [
|
|
6447
|
+
{
|
|
6448
|
+
"type": {
|
|
6449
|
+
"text": "CustomEvent<IDateRangePickerChangeEventData>"
|
|
6450
|
+
},
|
|
6451
|
+
"description": "Emits when the value of the date range picker changes.",
|
|
6452
|
+
"name": "forge-date-range-picker-change"
|
|
6453
|
+
},
|
|
6454
|
+
{
|
|
6455
|
+
"type": {
|
|
6456
|
+
"text": "CustomEvent<void>"
|
|
6457
|
+
},
|
|
6458
|
+
"description": "Emits when the date range picker calendar opens.",
|
|
6459
|
+
"name": "forge-date-range-picker-open"
|
|
6460
|
+
},
|
|
6461
|
+
{
|
|
6462
|
+
"type": {
|
|
6463
|
+
"text": "CustomEvent<void>"
|
|
6464
|
+
},
|
|
6465
|
+
"description": "Emits when the date range picker calendar closes.",
|
|
6466
|
+
"name": "forge-date-range-picker-close"
|
|
6467
|
+
},
|
|
6468
|
+
{
|
|
6469
|
+
"type": {
|
|
6470
|
+
"text": "CustomEvent<string>"
|
|
6471
|
+
},
|
|
6472
|
+
"description": "Emits when the user inputs a value into the date range picker.",
|
|
6473
|
+
"name": "forge-date-range-picker-input"
|
|
6474
|
+
}
|
|
6475
|
+
],
|
|
6446
6476
|
"superclass": {
|
|
6447
6477
|
"name": "BaseDatePickerComponent",
|
|
6448
6478
|
"module": "/src/lib/date-picker/base/base-date-picker"
|
|
@@ -19613,11 +19643,11 @@
|
|
|
19613
19643
|
"cssProperties": [
|
|
19614
19644
|
{
|
|
19615
19645
|
"description": "Controls the height.",
|
|
19616
|
-
"name": "--forge-
|
|
19646
|
+
"name": "--forge-toolbar-height"
|
|
19617
19647
|
},
|
|
19618
19648
|
{
|
|
19619
|
-
"description": "Controls the minimum height.",
|
|
19620
|
-
"name": "--forge-
|
|
19649
|
+
"description": "Controls the minimum height. Defaults to the toolbar height.",
|
|
19650
|
+
"name": "--forge-toolbar-min-height"
|
|
19621
19651
|
},
|
|
19622
19652
|
{
|
|
19623
19653
|
"description": "Controls the background-color of the toolbar.",
|
|
@@ -24435,6 +24465,10 @@
|
|
|
24435
24465
|
"description": "The width of the drawer.",
|
|
24436
24466
|
"name": "--forge-mini-drawer-width"
|
|
24437
24467
|
},
|
|
24468
|
+
{
|
|
24469
|
+
"description": "The minimum width of the drawer. Defaults to match the width.",
|
|
24470
|
+
"name": "--forge-mini-drawer-min-width"
|
|
24471
|
+
},
|
|
24438
24472
|
{
|
|
24439
24473
|
"description": "The width of the drawer when hovered.",
|
|
24440
24474
|
"name": "--forge-mini-drawer-hover-width"
|
|
@@ -27077,20 +27111,8 @@
|
|
|
27077
27111
|
"name": "--forge-radio-mark-height"
|
|
27078
27112
|
},
|
|
27079
27113
|
{
|
|
27080
|
-
"description": "The color of the radio button's mark
|
|
27081
|
-
"name": "--forge-radio-mark-
|
|
27082
|
-
},
|
|
27083
|
-
{
|
|
27084
|
-
"description": "The color of the radio button's mark when checked.",
|
|
27085
|
-
"name": "--forge-radio-mark-checked-color"
|
|
27086
|
-
},
|
|
27087
|
-
{
|
|
27088
|
-
"description": "The background of the radio button's mark when unchecked.",
|
|
27089
|
-
"name": "--forge-radio-mark-unchecked-background"
|
|
27090
|
-
},
|
|
27091
|
-
{
|
|
27092
|
-
"description": "The background of the radio button's mark when checked.",
|
|
27093
|
-
"name": "--forge-radio-mark-checked-background"
|
|
27114
|
+
"description": "The color of the radio button's mark.",
|
|
27115
|
+
"name": "--forge-radio-mark-color"
|
|
27094
27116
|
},
|
|
27095
27117
|
{
|
|
27096
27118
|
"description": "The gap between the radio button and its label.",
|
|
@@ -31899,7 +31921,7 @@
|
|
|
31899
31921
|
},
|
|
31900
31922
|
"DateRangePickerComponent": {
|
|
31901
31923
|
"path": "src/lib/date-range-picker/date-range-picker.ts",
|
|
31902
|
-
"lineNumber":
|
|
31924
|
+
"lineNumber": 67
|
|
31903
31925
|
},
|
|
31904
31926
|
"IDialogAdapter": {
|
|
31905
31927
|
"path": "src/lib/dialog/dialog-adapter.ts",
|
|
@@ -34167,7 +34189,7 @@
|
|
|
34167
34189
|
},
|
|
34168
34190
|
"MiniDrawerComponent": {
|
|
34169
34191
|
"path": "src/lib/drawer/mini-drawer/mini-drawer.ts",
|
|
34170
|
-
"lineNumber":
|
|
34192
|
+
"lineNumber": 50
|
|
34171
34193
|
},
|
|
34172
34194
|
"IModalDrawerAdapter": {
|
|
34173
34195
|
"path": "src/lib/drawer/modal-drawer/modal-drawer-adapter.ts",
|
|
@@ -34411,7 +34433,7 @@
|
|
|
34411
34433
|
},
|
|
34412
34434
|
"RadioComponent": {
|
|
34413
34435
|
"path": "src/lib/radio/radio/radio.ts",
|
|
34414
|
-
"lineNumber":
|
|
34436
|
+
"lineNumber": 82
|
|
34415
34437
|
},
|
|
34416
34438
|
"IRadioGroupAdapter": {
|
|
34417
34439
|
"path": "src/lib/radio/radio-group/radio-group-adapter.ts",
|