@tylertech/forge 3.3.5 → 3.4.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 +388 -98
- package/dist/app-bar/forge-app-bar.css +2 -17
- package/dist/field/forge-field.css +4 -17
- package/dist/forge.css +12 -0
- package/dist/icon-button/forge-icon-button.css +1 -0
- package/dist/lib.js +1 -1
- package/dist/lib.js.map +3 -3
- package/dist/toolbar/forge-toolbar.css +2 -1
- package/dist/typography/forge-typography.css +12 -0
- package/dist/vscode.css-custom-data.json +15 -15
- package/dist/vscode.html-custom-data.json +159 -28
- package/esm/app-bar/app-bar/app-bar.d.ts +1 -0
- package/esm/app-bar/app-bar/app-bar.js +2 -1
- package/esm/autocomplete/autocomplete-adapter.js +2 -1
- package/esm/calendar/calendar-core.d.ts +1 -1
- package/esm/calendar/calendar-core.js +1 -1
- package/esm/calendar/calendar-dropdown/calendar-dropdown.js +1 -1
- package/esm/checkbox/checkbox.d.ts +3 -3
- package/esm/checkbox/checkbox.js +1 -1
- package/esm/chip-field/chip-field.js +1 -1
- package/esm/deprecated/icon-button/deprecated-icon-button.js +1 -1
- package/esm/dialog/dialog-core.d.ts +1 -0
- package/esm/dialog/dialog-core.js +10 -6
- package/esm/dialog/dialog.d.ts +4 -4
- package/esm/field/base/with-base-field.js +2 -2
- package/esm/field/field-adapter.d.ts +4 -4
- package/esm/field/field-adapter.js +4 -12
- package/esm/field/field-constants.d.ts +1 -0
- package/esm/field/field-constants.js +2 -1
- package/esm/field/field-core.d.ts +2 -0
- package/esm/field/field-core.js +13 -3
- package/esm/field/field.d.ts +1 -0
- package/esm/field/field.js +3 -2
- package/esm/icon/icon.d.ts +26 -9
- package/esm/icon/icon.js +3 -2
- package/esm/icon-button/icon-button.d.ts +1 -0
- package/esm/icon-button/icon-button.js +2 -1
- package/esm/label/label.d.ts +1 -1
- package/esm/popover/popover-adapter.js +8 -1
- package/esm/radio/radio/radio.d.ts +2 -2
- package/esm/radio/radio/radio.js +1 -1
- package/esm/select/core/base-select-adapter.js +5 -0
- package/esm/skip-link/skip-link.d.ts +1 -1
- package/esm/skip-link/skip-link.js +1 -1
- package/esm/switch/switch.d.ts +2 -2
- package/esm/switch/switch.js +1 -1
- package/esm/tabs/tab/tab-adapter.d.ts +3 -0
- package/esm/tabs/tab/tab-adapter.js +5 -0
- package/esm/tabs/tab/tab-core.d.ts +3 -0
- package/esm/tabs/tab/tab-core.js +5 -0
- package/esm/tabs/tab/tab.d.ts +6 -4
- package/esm/tabs/tab/tab.js +6 -5
- package/esm/tabs/tab-bar/tab-bar-core.js +1 -1
- package/esm/tabs/tab-bar/tab-bar.d.ts +4 -2
- package/esm/tabs/tab-bar/tab-bar.js +3 -3
- package/esm/time-picker/time-picker-adapter.d.ts +2 -2
- package/esm/time-picker/time-picker-adapter.js +44 -30
- package/esm/time-picker/time-picker-core.js +1 -1
- package/esm/time-picker/time-picker.d.ts +125 -28
- package/esm/time-picker/time-picker.js +0 -27
- package/esm/toolbar/toolbar.d.ts +1 -0
- package/esm/toolbar/toolbar.js +2 -1
- package/esm/view-switcher/view-switcher.d.ts +1 -1
- package/package.json +4 -4
- package/sass/app-bar/app-bar/_core.scss +1 -1
- package/sass/checkbox/_core.scss +1 -1
- package/sass/core/styles/_utils.scss +1 -1
- package/sass/core/styles/theme/_utils.scss +1 -1
- package/sass/core/styles/tokens/app-bar/app-bar/_tokens.scss +1 -0
- package/sass/core/styles/tokens/icon-button/_tokens.scss +1 -0
- package/sass/core/styles/tokens/list/list/_tokens.scss +2 -1
- package/sass/core/styles/tokens/tabs/tab/_tokens.scss +6 -6
- package/sass/core/styles/tokens/toolbar/_tokens.scss +2 -1
- package/sass/core/styles/tokens/typography/_tokens.label.scss +10 -0
- package/sass/field/_core.animation.scss +0 -20
- package/sass/field/_core.layout.scss +3 -8
- package/sass/field/_core.scss +1 -0
- package/sass/field/_core.slotted.scss +4 -8
- package/sass/field/field.scss +8 -8
- package/sass/icon-button/_core.scss +1 -0
- package/sass/radio/index.scss +1 -1
- package/sass/radio/radio/_core.scss +1 -1
- package/sass/switch/_core.scss +1 -1
- package/sass/tabs/tab/_core.scss +4 -19
- package/sass/tabs/tab/tab.scss +1 -25
- package/sass/tabs/tab-bar/_core.scss +1 -0
- package/sass/toolbar/_core.scss +1 -1
package/custom-elements.json
CHANGED
|
@@ -3425,7 +3425,7 @@
|
|
|
3425
3425
|
"privacy": "public",
|
|
3426
3426
|
"description": "Gets/sets whether the checkbox is checked by default.",
|
|
3427
3427
|
"default": "false",
|
|
3428
|
-
"attribute": "
|
|
3428
|
+
"attribute": "default-checked"
|
|
3429
3429
|
},
|
|
3430
3430
|
{
|
|
3431
3431
|
"kind": "field",
|
|
@@ -3510,7 +3510,7 @@
|
|
|
3510
3510
|
"privacy": "public",
|
|
3511
3511
|
"description": "Controls whether the label appears before or after the checkbox.",
|
|
3512
3512
|
"default": "'end'",
|
|
3513
|
-
"attribute": "
|
|
3513
|
+
"attribute": "label-position"
|
|
3514
3514
|
},
|
|
3515
3515
|
{
|
|
3516
3516
|
"kind": "method",
|
|
@@ -3566,7 +3566,7 @@
|
|
|
3566
3566
|
"fieldName": "checked"
|
|
3567
3567
|
},
|
|
3568
3568
|
{
|
|
3569
|
-
"name": "
|
|
3569
|
+
"name": "default-checked",
|
|
3570
3570
|
"type": {
|
|
3571
3571
|
"text": "boolean"
|
|
3572
3572
|
},
|
|
@@ -3629,7 +3629,7 @@
|
|
|
3629
3629
|
"fieldName": "readonly"
|
|
3630
3630
|
},
|
|
3631
3631
|
{
|
|
3632
|
-
"name": "
|
|
3632
|
+
"name": "label-position",
|
|
3633
3633
|
"type": {
|
|
3634
3634
|
"text": "CheckboxLabelPosition"
|
|
3635
3635
|
},
|
|
@@ -6902,7 +6902,7 @@
|
|
|
6902
6902
|
"privacy": "public",
|
|
6903
6903
|
"description": "The animation type of the dialog.",
|
|
6904
6904
|
"default": "'zoom'",
|
|
6905
|
-
"attribute": "
|
|
6905
|
+
"attribute": "animation-type"
|
|
6906
6906
|
},
|
|
6907
6907
|
{
|
|
6908
6908
|
"kind": "field",
|
|
@@ -6946,7 +6946,7 @@
|
|
|
6946
6946
|
"privacy": "public",
|
|
6947
6947
|
"description": "The screen width at which the dialog will switch to fullscreen.",
|
|
6948
6948
|
"default": "599",
|
|
6949
|
-
"attribute": "
|
|
6949
|
+
"attribute": "fullscreen-threshold"
|
|
6950
6950
|
},
|
|
6951
6951
|
{
|
|
6952
6952
|
"kind": "field",
|
|
@@ -6989,7 +6989,7 @@
|
|
|
6989
6989
|
"privacy": "public",
|
|
6990
6990
|
"description": "Controls whether the dialog is rendered relative to the viewport or its nearest containing block.",
|
|
6991
6991
|
"default": "'viewport'",
|
|
6992
|
-
"attribute": "
|
|
6992
|
+
"attribute": "position-strategy"
|
|
6993
6993
|
},
|
|
6994
6994
|
{
|
|
6995
6995
|
"kind": "field",
|
|
@@ -7000,7 +7000,7 @@
|
|
|
7000
7000
|
"privacy": "public",
|
|
7001
7001
|
"description": "Controls the block and/or inline size of the dialog. Defaults to the size of the content it contains.",
|
|
7002
7002
|
"default": "'content'",
|
|
7003
|
-
"attribute": "
|
|
7003
|
+
"attribute": "size-strategy"
|
|
7004
7004
|
},
|
|
7005
7005
|
{
|
|
7006
7006
|
"kind": "field",
|
|
@@ -7116,7 +7116,7 @@
|
|
|
7116
7116
|
"fieldName": "type"
|
|
7117
7117
|
},
|
|
7118
7118
|
{
|
|
7119
|
-
"name": "
|
|
7119
|
+
"name": "animation-type",
|
|
7120
7120
|
"type": {
|
|
7121
7121
|
"text": "DialogAnimationType"
|
|
7122
7122
|
},
|
|
@@ -7152,7 +7152,7 @@
|
|
|
7152
7152
|
"fieldName": "fullscreen"
|
|
7153
7153
|
},
|
|
7154
7154
|
{
|
|
7155
|
-
"name": "
|
|
7155
|
+
"name": "fullscreen-threshold",
|
|
7156
7156
|
"type": {
|
|
7157
7157
|
"text": "number"
|
|
7158
7158
|
},
|
|
@@ -7179,7 +7179,7 @@
|
|
|
7179
7179
|
"fieldName": "moveable"
|
|
7180
7180
|
},
|
|
7181
7181
|
{
|
|
7182
|
-
"name": "
|
|
7182
|
+
"name": "position-strategy",
|
|
7183
7183
|
"type": {
|
|
7184
7184
|
"text": "DialogPositionStrategy"
|
|
7185
7185
|
},
|
|
@@ -7188,7 +7188,7 @@
|
|
|
7188
7188
|
"fieldName": "positionStrategy"
|
|
7189
7189
|
},
|
|
7190
7190
|
{
|
|
7191
|
-
"name": "
|
|
7191
|
+
"name": "size-strategy",
|
|
7192
7192
|
"type": {
|
|
7193
7193
|
"text": "DialogSizeStrategy"
|
|
7194
7194
|
},
|
|
@@ -8058,6 +8058,13 @@
|
|
|
8058
8058
|
},
|
|
8059
8059
|
"description": "Dispatches when the user clicks the popover icon.",
|
|
8060
8060
|
"name": "forge-field-popover-icon-click"
|
|
8061
|
+
},
|
|
8062
|
+
{
|
|
8063
|
+
"type": {
|
|
8064
|
+
"text": "CustomEvent<void>"
|
|
8065
|
+
},
|
|
8066
|
+
"description": "Dispatches when the user presses the mouse button over the popover icon. Cancelable to prevent focus loss.",
|
|
8067
|
+
"name": "forge-field-popover-icon-mousedown"
|
|
8061
8068
|
}
|
|
8062
8069
|
],
|
|
8063
8070
|
"attributes": [
|
|
@@ -9670,6 +9677,7 @@
|
|
|
9670
9677
|
},
|
|
9671
9678
|
"privacy": "public",
|
|
9672
9679
|
"description": "The type of icon to load externally. Possible values: \"standard\" (default), \"extended\", \"custom\".",
|
|
9680
|
+
"attribute": "external-type",
|
|
9673
9681
|
"default": "\"standard\""
|
|
9674
9682
|
},
|
|
9675
9683
|
{
|
|
@@ -9679,7 +9687,8 @@
|
|
|
9679
9687
|
"text": "IconUrlBuilder"
|
|
9680
9688
|
},
|
|
9681
9689
|
"privacy": "public",
|
|
9682
|
-
"description": "A callback that can be provided to generate a URL that will be used to fetch an SVG icon."
|
|
9690
|
+
"description": "A callback that can be provided to generate a URL that will be used to fetch an SVG icon.",
|
|
9691
|
+
"attribute": "external-url-builder"
|
|
9683
9692
|
},
|
|
9684
9693
|
{
|
|
9685
9694
|
"kind": "field",
|
|
@@ -9712,6 +9721,22 @@
|
|
|
9712
9721
|
}
|
|
9713
9722
|
],
|
|
9714
9723
|
"attributes": [
|
|
9724
|
+
{
|
|
9725
|
+
"name": "external-type",
|
|
9726
|
+
"type": {
|
|
9727
|
+
"text": "IconExternalType"
|
|
9728
|
+
},
|
|
9729
|
+
"description": "The type of icon to load externally. Possible values: \"standard\", \"extended\", \"custom\".",
|
|
9730
|
+
"fieldName": "externalType"
|
|
9731
|
+
},
|
|
9732
|
+
{
|
|
9733
|
+
"name": "external-url-builder",
|
|
9734
|
+
"type": {
|
|
9735
|
+
"text": "IconUrlBuilder"
|
|
9736
|
+
},
|
|
9737
|
+
"description": "A callback that can be provided to generate a URL that will be used to fetch an SVG icon.",
|
|
9738
|
+
"fieldName": "externalUrlBuilder"
|
|
9739
|
+
},
|
|
9715
9740
|
{
|
|
9716
9741
|
"type": {
|
|
9717
9742
|
"text": "string"
|
|
@@ -9742,14 +9767,6 @@
|
|
|
9742
9767
|
"name": "external",
|
|
9743
9768
|
"default": "false"
|
|
9744
9769
|
},
|
|
9745
|
-
{
|
|
9746
|
-
"type": {
|
|
9747
|
-
"text": "IconExternalType"
|
|
9748
|
-
},
|
|
9749
|
-
"description": "The type of icon to load externally. Possible values: \"standard\" (default), \"extended\", \"custom\".",
|
|
9750
|
-
"name": "externalType",
|
|
9751
|
-
"default": "\"standard\""
|
|
9752
|
-
},
|
|
9753
9770
|
{
|
|
9754
9771
|
"type": {
|
|
9755
9772
|
"text": "string"
|
|
@@ -9940,6 +9957,10 @@
|
|
|
9940
9957
|
"description": "The size of the button when in the large density.",
|
|
9941
9958
|
"name": "--forge-icon-button-density-large-size"
|
|
9942
9959
|
},
|
|
9960
|
+
{
|
|
9961
|
+
"description": "The background color of the when in toggle mode and toggled on.",
|
|
9962
|
+
"name": "--forge-icon-button-toggle-on-background-color"
|
|
9963
|
+
},
|
|
9943
9964
|
{
|
|
9944
9965
|
"description": "The color of the icon when in toggle mode and toggled on.",
|
|
9945
9966
|
"name": "--forge-icon-button-toggle-on-icon-color"
|
|
@@ -10899,7 +10920,7 @@
|
|
|
10899
10920
|
"privacy": "public",
|
|
10900
10921
|
"description": "Removes click handling from the label.",
|
|
10901
10922
|
"default": "false",
|
|
10902
|
-
"attribute": "
|
|
10923
|
+
"attribute": "non-interactive"
|
|
10903
10924
|
},
|
|
10904
10925
|
{
|
|
10905
10926
|
"kind": "field",
|
|
@@ -10944,7 +10965,7 @@
|
|
|
10944
10965
|
"fieldName": "dynamic"
|
|
10945
10966
|
},
|
|
10946
10967
|
{
|
|
10947
|
-
"name": "
|
|
10968
|
+
"name": "non-interactive",
|
|
10948
10969
|
"type": {
|
|
10949
10970
|
"text": "boolean"
|
|
10950
10971
|
},
|
|
@@ -14879,7 +14900,7 @@
|
|
|
14879
14900
|
"privacy": "public",
|
|
14880
14901
|
"description": "Sets the skip link to skip browser navigation and scroll to the target element.",
|
|
14881
14902
|
"default": "false",
|
|
14882
|
-
"attribute": "
|
|
14903
|
+
"attribute": "skip-url-change"
|
|
14883
14904
|
},
|
|
14884
14905
|
{
|
|
14885
14906
|
"kind": "method",
|
|
@@ -14947,7 +14968,7 @@
|
|
|
14947
14968
|
"fieldName": "inline"
|
|
14948
14969
|
},
|
|
14949
14970
|
{
|
|
14950
|
-
"name": "
|
|
14971
|
+
"name": "skip-url-change",
|
|
14951
14972
|
"type": {
|
|
14952
14973
|
"text": "boolean"
|
|
14953
14974
|
},
|
|
@@ -16451,7 +16472,7 @@
|
|
|
16451
16472
|
"privacy": "public",
|
|
16452
16473
|
"description": "Gets/sets whether the switch is on or off by default.",
|
|
16453
16474
|
"default": "false",
|
|
16454
|
-
"attribute": "
|
|
16475
|
+
"attribute": "default-on"
|
|
16455
16476
|
},
|
|
16456
16477
|
{
|
|
16457
16478
|
"kind": "field",
|
|
@@ -16536,7 +16557,7 @@
|
|
|
16536
16557
|
"privacy": "public",
|
|
16537
16558
|
"description": "Controls whether the label appears before or after the switch.",
|
|
16538
16559
|
"default": "'end'",
|
|
16539
|
-
"attribute": "
|
|
16560
|
+
"attribute": "label-position"
|
|
16540
16561
|
},
|
|
16541
16562
|
{
|
|
16542
16563
|
"kind": "method",
|
|
@@ -16609,7 +16630,7 @@
|
|
|
16609
16630
|
"fieldName": "selected"
|
|
16610
16631
|
},
|
|
16611
16632
|
{
|
|
16612
|
-
"name": "
|
|
16633
|
+
"name": "default-on",
|
|
16613
16634
|
"type": {
|
|
16614
16635
|
"text": "boolean"
|
|
16615
16636
|
},
|
|
@@ -16672,7 +16693,7 @@
|
|
|
16672
16693
|
"fieldName": "icon"
|
|
16673
16694
|
},
|
|
16674
16695
|
{
|
|
16675
|
-
"name": "
|
|
16696
|
+
"name": "label-position",
|
|
16676
16697
|
"type": {
|
|
16677
16698
|
"text": "SwitchLabelPosition"
|
|
16678
16699
|
},
|
|
@@ -18742,7 +18763,8 @@
|
|
|
18742
18763
|
},
|
|
18743
18764
|
"privacy": "public",
|
|
18744
18765
|
"description": "The current value of the time picker.",
|
|
18745
|
-
"default": "undefined"
|
|
18766
|
+
"default": "undefined",
|
|
18767
|
+
"attribute": "value"
|
|
18746
18768
|
},
|
|
18747
18769
|
{
|
|
18748
18770
|
"kind": "field",
|
|
@@ -18752,7 +18774,8 @@
|
|
|
18752
18774
|
},
|
|
18753
18775
|
"privacy": "public",
|
|
18754
18776
|
"description": "Whether or not the time picker is open.",
|
|
18755
|
-
"default": "false"
|
|
18777
|
+
"default": "false",
|
|
18778
|
+
"attribute": "open"
|
|
18756
18779
|
},
|
|
18757
18780
|
{
|
|
18758
18781
|
"kind": "field",
|
|
@@ -18762,7 +18785,8 @@
|
|
|
18762
18785
|
},
|
|
18763
18786
|
"privacy": "public",
|
|
18764
18787
|
"description": "Whether or not to allow seconds in the time picker.",
|
|
18765
|
-
"default": "false"
|
|
18788
|
+
"default": "false",
|
|
18789
|
+
"attribute": "allow-seconds"
|
|
18766
18790
|
},
|
|
18767
18791
|
{
|
|
18768
18792
|
"kind": "field",
|
|
@@ -18772,7 +18796,8 @@
|
|
|
18772
18796
|
},
|
|
18773
18797
|
"privacy": "public",
|
|
18774
18798
|
"description": "Whether or not the time picker input should be masked.",
|
|
18775
|
-
"default": "false"
|
|
18799
|
+
"default": "false",
|
|
18800
|
+
"attribute": "masked"
|
|
18776
18801
|
},
|
|
18777
18802
|
{
|
|
18778
18803
|
"kind": "field",
|
|
@@ -18782,7 +18807,8 @@
|
|
|
18782
18807
|
},
|
|
18783
18808
|
"privacy": "public",
|
|
18784
18809
|
"description": "Whether or not to show the mask format in the input.",
|
|
18785
|
-
"default": "false"
|
|
18810
|
+
"default": "false",
|
|
18811
|
+
"attribute": "show-mask-format"
|
|
18786
18812
|
},
|
|
18787
18813
|
{
|
|
18788
18814
|
"kind": "field",
|
|
@@ -18792,7 +18818,8 @@
|
|
|
18792
18818
|
},
|
|
18793
18819
|
"privacy": "public",
|
|
18794
18820
|
"description": "Whether or not to use 24-hour time.",
|
|
18795
|
-
"default": "false"
|
|
18821
|
+
"default": "false",
|
|
18822
|
+
"attribute": "use-24-hour-time"
|
|
18796
18823
|
},
|
|
18797
18824
|
{
|
|
18798
18825
|
"kind": "field",
|
|
@@ -18802,7 +18829,8 @@
|
|
|
18802
18829
|
},
|
|
18803
18830
|
"privacy": "public",
|
|
18804
18831
|
"description": "Whether or not to allow invalid times.",
|
|
18805
|
-
"default": "false"
|
|
18832
|
+
"default": "false",
|
|
18833
|
+
"attribute": "allow-invalid-time"
|
|
18806
18834
|
},
|
|
18807
18835
|
{
|
|
18808
18836
|
"kind": "field",
|
|
@@ -18812,7 +18840,8 @@
|
|
|
18812
18840
|
},
|
|
18813
18841
|
"privacy": "public",
|
|
18814
18842
|
"description": "The minimum time that can be selected.",
|
|
18815
|
-
"default": "undefined"
|
|
18843
|
+
"default": "undefined",
|
|
18844
|
+
"attribute": "min"
|
|
18816
18845
|
},
|
|
18817
18846
|
{
|
|
18818
18847
|
"kind": "field",
|
|
@@ -18822,7 +18851,8 @@
|
|
|
18822
18851
|
},
|
|
18823
18852
|
"privacy": "public",
|
|
18824
18853
|
"description": "The maximum time that can be selected.",
|
|
18825
|
-
"default": "undefined"
|
|
18854
|
+
"default": "undefined",
|
|
18855
|
+
"attribute": "max"
|
|
18826
18856
|
},
|
|
18827
18857
|
{
|
|
18828
18858
|
"kind": "field",
|
|
@@ -18832,7 +18862,8 @@
|
|
|
18832
18862
|
},
|
|
18833
18863
|
"privacy": "public",
|
|
18834
18864
|
"description": "An array of times that cannot be selected.",
|
|
18835
|
-
"default": "[]"
|
|
18865
|
+
"default": "[]",
|
|
18866
|
+
"attribute": "restricted-times"
|
|
18836
18867
|
},
|
|
18837
18868
|
{
|
|
18838
18869
|
"kind": "field",
|
|
@@ -18842,7 +18873,8 @@
|
|
|
18842
18873
|
},
|
|
18843
18874
|
"privacy": "public",
|
|
18844
18875
|
"description": "The time to start the time picker at.",
|
|
18845
|
-
"default": "undefined"
|
|
18876
|
+
"default": "undefined",
|
|
18877
|
+
"attribute": "start-time"
|
|
18846
18878
|
},
|
|
18847
18879
|
{
|
|
18848
18880
|
"kind": "field",
|
|
@@ -18852,7 +18884,8 @@
|
|
|
18852
18884
|
},
|
|
18853
18885
|
"privacy": "public",
|
|
18854
18886
|
"description": "The step interval for the time picker.",
|
|
18855
|
-
"default": "undefined"
|
|
18887
|
+
"default": "undefined",
|
|
18888
|
+
"attribute": "step"
|
|
18856
18889
|
},
|
|
18857
18890
|
{
|
|
18858
18891
|
"kind": "field",
|
|
@@ -18862,7 +18895,8 @@
|
|
|
18862
18895
|
},
|
|
18863
18896
|
"privacy": "public",
|
|
18864
18897
|
"description": "Whether or not to allow manual input of the time.",
|
|
18865
|
-
"default": "false"
|
|
18898
|
+
"default": "false",
|
|
18899
|
+
"attribute": "allow-input"
|
|
18866
18900
|
},
|
|
18867
18901
|
{
|
|
18868
18902
|
"kind": "field",
|
|
@@ -18872,7 +18906,8 @@
|
|
|
18872
18906
|
},
|
|
18873
18907
|
"privacy": "public",
|
|
18874
18908
|
"description": "Whether or not to show a \"Now\" button.",
|
|
18875
|
-
"default": "false"
|
|
18909
|
+
"default": "false",
|
|
18910
|
+
"attribute": "show-now"
|
|
18876
18911
|
},
|
|
18877
18912
|
{
|
|
18878
18913
|
"kind": "field",
|
|
@@ -18882,7 +18917,8 @@
|
|
|
18882
18917
|
},
|
|
18883
18918
|
"privacy": "public",
|
|
18884
18919
|
"description": "Whether or not to display hour options in dropdown.",
|
|
18885
|
-
"default": "false"
|
|
18920
|
+
"default": "false",
|
|
18921
|
+
"attribute": "show-hour-options"
|
|
18886
18922
|
},
|
|
18887
18923
|
{
|
|
18888
18924
|
"kind": "field",
|
|
@@ -18892,7 +18928,8 @@
|
|
|
18892
18928
|
},
|
|
18893
18929
|
"privacy": "public",
|
|
18894
18930
|
"description": "An array of custom time picker options.",
|
|
18895
|
-
"default": "[]"
|
|
18931
|
+
"default": "[]",
|
|
18932
|
+
"attribute": "custom-options"
|
|
18896
18933
|
},
|
|
18897
18934
|
{
|
|
18898
18935
|
"kind": "field",
|
|
@@ -18902,7 +18939,8 @@
|
|
|
18902
18939
|
},
|
|
18903
18940
|
"privacy": "public",
|
|
18904
18941
|
"description": "A callback function to validate the time.",
|
|
18905
|
-
"default": "undefined"
|
|
18942
|
+
"default": "undefined",
|
|
18943
|
+
"attribute": "validation-callback"
|
|
18906
18944
|
},
|
|
18907
18945
|
{
|
|
18908
18946
|
"kind": "field",
|
|
@@ -18912,7 +18950,8 @@
|
|
|
18912
18950
|
},
|
|
18913
18951
|
"privacy": "public",
|
|
18914
18952
|
"description": "A callback function to parse the time.",
|
|
18915
|
-
"default": "undefined"
|
|
18953
|
+
"default": "undefined",
|
|
18954
|
+
"attribute": "parse-callback"
|
|
18916
18955
|
},
|
|
18917
18956
|
{
|
|
18918
18957
|
"kind": "field",
|
|
@@ -18922,7 +18961,8 @@
|
|
|
18922
18961
|
},
|
|
18923
18962
|
"privacy": "public",
|
|
18924
18963
|
"description": "A callback function to format the time.",
|
|
18925
|
-
"default": "undefined"
|
|
18964
|
+
"default": "undefined",
|
|
18965
|
+
"attribute": "format-callback"
|
|
18926
18966
|
},
|
|
18927
18967
|
{
|
|
18928
18968
|
"kind": "field",
|
|
@@ -18932,7 +18972,8 @@
|
|
|
18932
18972
|
},
|
|
18933
18973
|
"privacy": "public",
|
|
18934
18974
|
"description": "A callback function to coerce the time.",
|
|
18935
|
-
"default": "undefined"
|
|
18975
|
+
"default": "undefined",
|
|
18976
|
+
"attribute": "coercion-callback"
|
|
18936
18977
|
},
|
|
18937
18978
|
{
|
|
18938
18979
|
"kind": "field",
|
|
@@ -18942,7 +18983,8 @@
|
|
|
18942
18983
|
},
|
|
18943
18984
|
"privacy": "public",
|
|
18944
18985
|
"description": "A callback function to prepare the mask.",
|
|
18945
|
-
"default": "undefined"
|
|
18986
|
+
"default": "undefined",
|
|
18987
|
+
"attribute": "prepare-mask-callback"
|
|
18946
18988
|
},
|
|
18947
18989
|
{
|
|
18948
18990
|
"kind": "field",
|
|
@@ -18952,7 +18994,8 @@
|
|
|
18952
18994
|
},
|
|
18953
18995
|
"privacy": "public",
|
|
18954
18996
|
"description": "Whether or not the time picker is disabled.",
|
|
18955
|
-
"default": "false"
|
|
18997
|
+
"default": "false",
|
|
18998
|
+
"attribute": "disabled"
|
|
18956
18999
|
},
|
|
18957
19000
|
{
|
|
18958
19001
|
"kind": "field",
|
|
@@ -18962,7 +19005,8 @@
|
|
|
18962
19005
|
},
|
|
18963
19006
|
"privacy": "public",
|
|
18964
19007
|
"description": "The classes to apply to the time picker popup.",
|
|
18965
|
-
"default": "undefined"
|
|
19008
|
+
"default": "undefined",
|
|
19009
|
+
"attribute": "popup-classes"
|
|
18966
19010
|
},
|
|
18967
19011
|
{
|
|
18968
19012
|
"kind": "field",
|
|
@@ -18972,7 +19016,8 @@
|
|
|
18972
19016
|
},
|
|
18973
19017
|
"privacy": "public",
|
|
18974
19018
|
"description": "Whether or not to allow the time picker to be a dropdown.",
|
|
18975
|
-
"default": "false"
|
|
19019
|
+
"default": "false",
|
|
19020
|
+
"attribute": "allow-dropdown"
|
|
18976
19021
|
},
|
|
18977
19022
|
{
|
|
18978
19023
|
"kind": "field",
|
|
@@ -18982,7 +19027,235 @@
|
|
|
18982
19027
|
},
|
|
18983
19028
|
"privacy": "public",
|
|
18984
19029
|
"description": "The target element to attach the popup to.",
|
|
18985
|
-
"default": "undefined"
|
|
19030
|
+
"default": "undefined",
|
|
19031
|
+
"attribute": "popup-target"
|
|
19032
|
+
}
|
|
19033
|
+
],
|
|
19034
|
+
"attributes": [
|
|
19035
|
+
{
|
|
19036
|
+
"name": "value",
|
|
19037
|
+
"type": {
|
|
19038
|
+
"text": "string | null | undefined"
|
|
19039
|
+
},
|
|
19040
|
+
"description": "The current value of the time picker.",
|
|
19041
|
+
"default": "undefined",
|
|
19042
|
+
"fieldName": "value"
|
|
19043
|
+
},
|
|
19044
|
+
{
|
|
19045
|
+
"name": "open",
|
|
19046
|
+
"type": {
|
|
19047
|
+
"text": "boolean"
|
|
19048
|
+
},
|
|
19049
|
+
"description": "Whether or not the time picker is open.",
|
|
19050
|
+
"default": "false",
|
|
19051
|
+
"fieldName": "open"
|
|
19052
|
+
},
|
|
19053
|
+
{
|
|
19054
|
+
"name": "allow-seconds",
|
|
19055
|
+
"type": {
|
|
19056
|
+
"text": "boolean"
|
|
19057
|
+
},
|
|
19058
|
+
"description": "Whether or not to allow seconds in the time picker.",
|
|
19059
|
+
"default": "false",
|
|
19060
|
+
"fieldName": "allowSeconds"
|
|
19061
|
+
},
|
|
19062
|
+
{
|
|
19063
|
+
"name": "masked",
|
|
19064
|
+
"type": {
|
|
19065
|
+
"text": "boolean"
|
|
19066
|
+
},
|
|
19067
|
+
"description": "Whether or not the time picker input should be masked.",
|
|
19068
|
+
"default": "false",
|
|
19069
|
+
"fieldName": "masked"
|
|
19070
|
+
},
|
|
19071
|
+
{
|
|
19072
|
+
"name": "show-mask-format",
|
|
19073
|
+
"type": {
|
|
19074
|
+
"text": "boolean"
|
|
19075
|
+
},
|
|
19076
|
+
"description": "Whether or not to show the mask format in the input.",
|
|
19077
|
+
"default": "false",
|
|
19078
|
+
"fieldName": "showMaskFormat"
|
|
19079
|
+
},
|
|
19080
|
+
{
|
|
19081
|
+
"name": "use-24-hour-time",
|
|
19082
|
+
"type": {
|
|
19083
|
+
"text": "boolean"
|
|
19084
|
+
},
|
|
19085
|
+
"description": "Whether or not to use 24-hour time.",
|
|
19086
|
+
"default": "false",
|
|
19087
|
+
"fieldName": "use24HourTime"
|
|
19088
|
+
},
|
|
19089
|
+
{
|
|
19090
|
+
"name": "allow-invalid-time",
|
|
19091
|
+
"type": {
|
|
19092
|
+
"text": "boolean"
|
|
19093
|
+
},
|
|
19094
|
+
"description": "Whether or not to allow invalid times.",
|
|
19095
|
+
"default": "false",
|
|
19096
|
+
"fieldName": "allowInvalidTime"
|
|
19097
|
+
},
|
|
19098
|
+
{
|
|
19099
|
+
"name": "min",
|
|
19100
|
+
"type": {
|
|
19101
|
+
"text": "string | null | undefined"
|
|
19102
|
+
},
|
|
19103
|
+
"description": "The minimum time that can be selected.",
|
|
19104
|
+
"default": "undefined",
|
|
19105
|
+
"fieldName": "min"
|
|
19106
|
+
},
|
|
19107
|
+
{
|
|
19108
|
+
"name": "max",
|
|
19109
|
+
"type": {
|
|
19110
|
+
"text": "string | null | undefined"
|
|
19111
|
+
},
|
|
19112
|
+
"description": "The maximum time that can be selected.",
|
|
19113
|
+
"default": "undefined",
|
|
19114
|
+
"fieldName": "max"
|
|
19115
|
+
},
|
|
19116
|
+
{
|
|
19117
|
+
"name": "restricted-times",
|
|
19118
|
+
"type": {
|
|
19119
|
+
"text": "string[]"
|
|
19120
|
+
},
|
|
19121
|
+
"description": "An array of times that cannot be selected.",
|
|
19122
|
+
"default": "[]",
|
|
19123
|
+
"fieldName": "restrictedTimes"
|
|
19124
|
+
},
|
|
19125
|
+
{
|
|
19126
|
+
"name": "start-time",
|
|
19127
|
+
"type": {
|
|
19128
|
+
"text": "string | null | undefined"
|
|
19129
|
+
},
|
|
19130
|
+
"description": "The time to start the time picker at.",
|
|
19131
|
+
"default": "undefined",
|
|
19132
|
+
"fieldName": "startTime"
|
|
19133
|
+
},
|
|
19134
|
+
{
|
|
19135
|
+
"name": "step",
|
|
19136
|
+
"type": {
|
|
19137
|
+
"text": "number"
|
|
19138
|
+
},
|
|
19139
|
+
"description": "The step interval for the time picker.",
|
|
19140
|
+
"default": "undefined",
|
|
19141
|
+
"fieldName": "step"
|
|
19142
|
+
},
|
|
19143
|
+
{
|
|
19144
|
+
"name": "allow-input",
|
|
19145
|
+
"type": {
|
|
19146
|
+
"text": "boolean"
|
|
19147
|
+
},
|
|
19148
|
+
"description": "Whether or not to allow manual input of the time.",
|
|
19149
|
+
"default": "false",
|
|
19150
|
+
"fieldName": "allowInput"
|
|
19151
|
+
},
|
|
19152
|
+
{
|
|
19153
|
+
"name": "show-now",
|
|
19154
|
+
"type": {
|
|
19155
|
+
"text": "boolean"
|
|
19156
|
+
},
|
|
19157
|
+
"description": "Whether or not to show a \"Now\" button.",
|
|
19158
|
+
"default": "false",
|
|
19159
|
+
"fieldName": "showNow"
|
|
19160
|
+
},
|
|
19161
|
+
{
|
|
19162
|
+
"name": "show-hour-options",
|
|
19163
|
+
"type": {
|
|
19164
|
+
"text": "boolean"
|
|
19165
|
+
},
|
|
19166
|
+
"description": "Whether or not to display hour options in dropdown.",
|
|
19167
|
+
"default": "false",
|
|
19168
|
+
"fieldName": "showHourOptions"
|
|
19169
|
+
},
|
|
19170
|
+
{
|
|
19171
|
+
"name": "custom-options",
|
|
19172
|
+
"type": {
|
|
19173
|
+
"text": "ITimePickerOption[]"
|
|
19174
|
+
},
|
|
19175
|
+
"description": "An array of custom time picker options.",
|
|
19176
|
+
"default": "[]",
|
|
19177
|
+
"fieldName": "customOptions"
|
|
19178
|
+
},
|
|
19179
|
+
{
|
|
19180
|
+
"name": "validation-callback",
|
|
19181
|
+
"type": {
|
|
19182
|
+
"text": "TimePickerValidationCallback"
|
|
19183
|
+
},
|
|
19184
|
+
"description": "A callback function to validate the time.",
|
|
19185
|
+
"default": "undefined",
|
|
19186
|
+
"fieldName": "validationCallback"
|
|
19187
|
+
},
|
|
19188
|
+
{
|
|
19189
|
+
"name": "parse-callback",
|
|
19190
|
+
"type": {
|
|
19191
|
+
"text": "TimePickerParseCallback"
|
|
19192
|
+
},
|
|
19193
|
+
"description": "A callback function to parse the time.",
|
|
19194
|
+
"default": "undefined",
|
|
19195
|
+
"fieldName": "parseCallback"
|
|
19196
|
+
},
|
|
19197
|
+
{
|
|
19198
|
+
"name": "format-callback",
|
|
19199
|
+
"type": {
|
|
19200
|
+
"text": "TimePickerFormatCallback"
|
|
19201
|
+
},
|
|
19202
|
+
"description": "A callback function to format the time.",
|
|
19203
|
+
"default": "undefined",
|
|
19204
|
+
"fieldName": "formatCallback"
|
|
19205
|
+
},
|
|
19206
|
+
{
|
|
19207
|
+
"name": "coercion-callback",
|
|
19208
|
+
"type": {
|
|
19209
|
+
"text": "TimePickerCoercionCallback"
|
|
19210
|
+
},
|
|
19211
|
+
"description": "A callback function to coerce the time.",
|
|
19212
|
+
"default": "undefined",
|
|
19213
|
+
"fieldName": "coercionCallback"
|
|
19214
|
+
},
|
|
19215
|
+
{
|
|
19216
|
+
"name": "prepare-mask-callback",
|
|
19217
|
+
"type": {
|
|
19218
|
+
"text": "TimePickerPrepareMaskCallback"
|
|
19219
|
+
},
|
|
19220
|
+
"description": "A callback function to prepare the mask.",
|
|
19221
|
+
"default": "undefined",
|
|
19222
|
+
"fieldName": "prepareMaskCallback"
|
|
19223
|
+
},
|
|
19224
|
+
{
|
|
19225
|
+
"name": "disabled",
|
|
19226
|
+
"type": {
|
|
19227
|
+
"text": "boolean"
|
|
19228
|
+
},
|
|
19229
|
+
"description": "Whether or not the time picker is disabled.",
|
|
19230
|
+
"default": "false",
|
|
19231
|
+
"fieldName": "disabled"
|
|
19232
|
+
},
|
|
19233
|
+
{
|
|
19234
|
+
"name": "popup-classes",
|
|
19235
|
+
"type": {
|
|
19236
|
+
"text": "string | string[]"
|
|
19237
|
+
},
|
|
19238
|
+
"description": "The classes to apply to the time picker popup.",
|
|
19239
|
+
"default": "undefined",
|
|
19240
|
+
"fieldName": "popupClasses"
|
|
19241
|
+
},
|
|
19242
|
+
{
|
|
19243
|
+
"name": "allow-dropdown",
|
|
19244
|
+
"type": {
|
|
19245
|
+
"text": "boolean"
|
|
19246
|
+
},
|
|
19247
|
+
"description": "Whether or not to allow the time picker to be a dropdown.",
|
|
19248
|
+
"default": "false",
|
|
19249
|
+
"fieldName": "allowDropdown"
|
|
19250
|
+
},
|
|
19251
|
+
{
|
|
19252
|
+
"name": "popup-target",
|
|
19253
|
+
"type": {
|
|
19254
|
+
"text": "string"
|
|
19255
|
+
},
|
|
19256
|
+
"description": "The target element to attach the popup to.",
|
|
19257
|
+
"default": "undefined",
|
|
19258
|
+
"fieldName": "popupTarget"
|
|
18986
19259
|
}
|
|
18987
19260
|
],
|
|
18988
19261
|
"superclass": {
|
|
@@ -19393,6 +19666,10 @@
|
|
|
19393
19666
|
{
|
|
19394
19667
|
"description": "Controls the left and right padding using the padding-block style.",
|
|
19395
19668
|
"name": "--forge-toolbar-padding-inline"
|
|
19669
|
+
},
|
|
19670
|
+
{
|
|
19671
|
+
"description": "The grid column track sizes.",
|
|
19672
|
+
"name": "--forge-toolbar-columns"
|
|
19396
19673
|
}
|
|
19397
19674
|
],
|
|
19398
19675
|
"cssParts": [
|
|
@@ -19994,7 +20271,7 @@
|
|
|
19994
20271
|
"privacy": "public",
|
|
19995
20272
|
"description": "Gets/sets the animation type.",
|
|
19996
20273
|
"default": "\"none\"",
|
|
19997
|
-
"attribute": "
|
|
20274
|
+
"attribute": "animation-type"
|
|
19998
20275
|
},
|
|
19999
20276
|
{
|
|
20000
20277
|
"kind": "method",
|
|
@@ -20052,7 +20329,7 @@
|
|
|
20052
20329
|
"fieldName": "index"
|
|
20053
20330
|
},
|
|
20054
20331
|
{
|
|
20055
|
-
"name": "
|
|
20332
|
+
"name": "animation-type",
|
|
20056
20333
|
"type": {
|
|
20057
20334
|
"text": "`${ViewSwitcherAnimationType}` | ViewSwitcherAnimation"
|
|
20058
20335
|
},
|
|
@@ -20127,6 +20404,10 @@
|
|
|
20127
20404
|
"description": "The padding around the title element.",
|
|
20128
20405
|
"name": "--forge-app-bar-title-padding"
|
|
20129
20406
|
},
|
|
20407
|
+
{
|
|
20408
|
+
"description": "The grid column track sizes.",
|
|
20409
|
+
"name": "--forge-app-bar-columns"
|
|
20410
|
+
},
|
|
20130
20411
|
{
|
|
20131
20412
|
"description": "The transition duration for animations.",
|
|
20132
20413
|
"name": "--forge-app-bar-transition-duration"
|
|
@@ -25352,7 +25633,7 @@
|
|
|
25352
25633
|
"privacy": "public",
|
|
25353
25634
|
"description": "Whether the label floats above the field.",
|
|
25354
25635
|
"default": "false",
|
|
25355
|
-
"attribute": "
|
|
25636
|
+
"attribute": "float-label"
|
|
25356
25637
|
},
|
|
25357
25638
|
{
|
|
25358
25639
|
"kind": "field",
|
|
@@ -25418,7 +25699,7 @@
|
|
|
25418
25699
|
"privacy": "public",
|
|
25419
25700
|
"description": "Whether the popover icon is displayed.",
|
|
25420
25701
|
"default": "false",
|
|
25421
|
-
"attribute": "
|
|
25702
|
+
"attribute": "popover-icon"
|
|
25422
25703
|
},
|
|
25423
25704
|
{
|
|
25424
25705
|
"kind": "field",
|
|
@@ -25507,7 +25788,7 @@
|
|
|
25507
25788
|
"fieldName": "disabled"
|
|
25508
25789
|
},
|
|
25509
25790
|
{
|
|
25510
|
-
"name": "
|
|
25791
|
+
"name": "float-label",
|
|
25511
25792
|
"type": {
|
|
25512
25793
|
"text": "boolean"
|
|
25513
25794
|
},
|
|
@@ -25561,7 +25842,7 @@
|
|
|
25561
25842
|
"fieldName": "dense"
|
|
25562
25843
|
},
|
|
25563
25844
|
{
|
|
25564
|
-
"name": "
|
|
25845
|
+
"name": "popover-icon",
|
|
25565
25846
|
"type": {
|
|
25566
25847
|
"text": "boolean"
|
|
25567
25848
|
},
|
|
@@ -26937,7 +27218,7 @@
|
|
|
26937
27218
|
"privacy": "public",
|
|
26938
27219
|
"description": "Gets/sets whether the radio is checked by default.",
|
|
26939
27220
|
"default": "false",
|
|
26940
|
-
"attribute": "
|
|
27221
|
+
"attribute": "default-checked"
|
|
26941
27222
|
},
|
|
26942
27223
|
{
|
|
26943
27224
|
"kind": "field",
|
|
@@ -27011,7 +27292,7 @@
|
|
|
27011
27292
|
"privacy": "public",
|
|
27012
27293
|
"description": "Controls whether the label appears before or after the radio.",
|
|
27013
27294
|
"default": "'end'",
|
|
27014
|
-
"attribute": "
|
|
27295
|
+
"attribute": "label-position"
|
|
27015
27296
|
},
|
|
27016
27297
|
{
|
|
27017
27298
|
"kind": "field",
|
|
@@ -27037,7 +27318,7 @@
|
|
|
27037
27318
|
"fieldName": "checked"
|
|
27038
27319
|
},
|
|
27039
27320
|
{
|
|
27040
|
-
"name": "
|
|
27321
|
+
"name": "default-checked",
|
|
27041
27322
|
"type": {
|
|
27042
27323
|
"text": "boolean"
|
|
27043
27324
|
},
|
|
@@ -27091,7 +27372,7 @@
|
|
|
27091
27372
|
"fieldName": "readonly"
|
|
27092
27373
|
},
|
|
27093
27374
|
{
|
|
27094
|
-
"name": "
|
|
27375
|
+
"name": "label-position",
|
|
27095
27376
|
"type": {
|
|
27096
27377
|
"text": "RadioLabelPosition"
|
|
27097
27378
|
},
|
|
@@ -27936,7 +28217,7 @@
|
|
|
27936
28217
|
"privacy": "public",
|
|
27937
28218
|
"description": "Whether the label floats above the field.",
|
|
27938
28219
|
"default": "false",
|
|
27939
|
-
"attribute": "
|
|
28220
|
+
"attribute": "float-label",
|
|
27940
28221
|
"inheritedFrom": {
|
|
27941
28222
|
"name": "WithBaseField",
|
|
27942
28223
|
"module": "src/lib/field/base/with-base-field.ts"
|
|
@@ -28212,7 +28493,7 @@
|
|
|
28212
28493
|
"privacy": "public",
|
|
28213
28494
|
"description": "Whether the popover icon is displayed.",
|
|
28214
28495
|
"default": "false",
|
|
28215
|
-
"attribute": "
|
|
28496
|
+
"attribute": "popover-icon",
|
|
28216
28497
|
"inheritedFrom": {
|
|
28217
28498
|
"name": "WithBaseField",
|
|
28218
28499
|
"module": "src/lib/field/base/with-base-field.ts"
|
|
@@ -28395,7 +28676,7 @@
|
|
|
28395
28676
|
}
|
|
28396
28677
|
},
|
|
28397
28678
|
{
|
|
28398
|
-
"name": "
|
|
28679
|
+
"name": "float-label",
|
|
28399
28680
|
"type": {
|
|
28400
28681
|
"text": "boolean"
|
|
28401
28682
|
},
|
|
@@ -28473,7 +28754,7 @@
|
|
|
28473
28754
|
}
|
|
28474
28755
|
},
|
|
28475
28756
|
{
|
|
28476
|
-
"name": "
|
|
28757
|
+
"name": "popover-icon",
|
|
28477
28758
|
"type": {
|
|
28478
28759
|
"text": "boolean"
|
|
28479
28760
|
},
|
|
@@ -30292,14 +30573,6 @@
|
|
|
30292
30573
|
"description": "The shape of the active tab indicator when vertical.",
|
|
30293
30574
|
"name": "--forge-tab-vertical-indicator-shape"
|
|
30294
30575
|
},
|
|
30295
|
-
{
|
|
30296
|
-
"description": "The height of the secondary tab indicator.",
|
|
30297
|
-
"name": "--forge-tab-secondary-indicator-height"
|
|
30298
|
-
},
|
|
30299
|
-
{
|
|
30300
|
-
"description": "The shape of the secondary tab indicator.",
|
|
30301
|
-
"name": "--forge-tab-secondary-indicator-shape"
|
|
30302
|
-
},
|
|
30303
30576
|
{
|
|
30304
30577
|
"description": "The shape of the active tab indicator when inverted.",
|
|
30305
30578
|
"name": "--forge-tab-inverted-indicator-shape"
|
|
@@ -30340,10 +30613,6 @@
|
|
|
30340
30613
|
"description": "The inline padding of the tab content.",
|
|
30341
30614
|
"name": "--forge-tab-content-padding-inline"
|
|
30342
30615
|
},
|
|
30343
|
-
{
|
|
30344
|
-
"description": "The inline padding of the tab content when secondary.",
|
|
30345
|
-
"name": "--forge-tab-content-padding-inline-secondary"
|
|
30346
|
-
},
|
|
30347
30616
|
{
|
|
30348
30617
|
"description": "The color of the icon when the tab is active and focused.",
|
|
30349
30618
|
"name": "--forge-tab-active-focus-icon-color"
|
|
@@ -30493,6 +30762,7 @@
|
|
|
30493
30762
|
"text": "boolean"
|
|
30494
30763
|
},
|
|
30495
30764
|
"privacy": "public",
|
|
30765
|
+
"deprecated": "This will be removed in a future version",
|
|
30496
30766
|
"description": "Controls whether the tab is styled as secondary tab navigation.",
|
|
30497
30767
|
"default": "false"
|
|
30498
30768
|
},
|
|
@@ -30505,6 +30775,25 @@
|
|
|
30505
30775
|
"privacy": "public",
|
|
30506
30776
|
"description": "Controls whether the tab indicator is rendered on the opposite side of the tab.",
|
|
30507
30777
|
"default": "false"
|
|
30778
|
+
},
|
|
30779
|
+
{
|
|
30780
|
+
"kind": "method",
|
|
30781
|
+
"name": "focus",
|
|
30782
|
+
"privacy": "public",
|
|
30783
|
+
"return": {
|
|
30784
|
+
"type": {
|
|
30785
|
+
"text": "void"
|
|
30786
|
+
}
|
|
30787
|
+
},
|
|
30788
|
+
"parameters": [
|
|
30789
|
+
{
|
|
30790
|
+
"name": "options",
|
|
30791
|
+
"optional": true,
|
|
30792
|
+
"type": {
|
|
30793
|
+
"text": "ExperimentalFocusOptions"
|
|
30794
|
+
}
|
|
30795
|
+
}
|
|
30796
|
+
]
|
|
30508
30797
|
}
|
|
30509
30798
|
],
|
|
30510
30799
|
"events": [
|
|
@@ -30538,7 +30827,7 @@
|
|
|
30538
30827
|
"default": "false"
|
|
30539
30828
|
},
|
|
30540
30829
|
{
|
|
30541
|
-
"description": "Controls whether the tab is styled as secondary tab navigation.",
|
|
30830
|
+
"description": "Deprecated. Controls whether the tab is styled as secondary tab navigation.",
|
|
30542
30831
|
"name": "secondary",
|
|
30543
30832
|
"default": "false"
|
|
30544
30833
|
},
|
|
@@ -30671,7 +30960,8 @@
|
|
|
30671
30960
|
"text": "boolean"
|
|
30672
30961
|
},
|
|
30673
30962
|
"privacy": "public",
|
|
30674
|
-
"
|
|
30963
|
+
"deprecated": "This will be removed in a future version",
|
|
30964
|
+
"description": "Deprecated. Controls whether the tabs are styled as secondary tab navigation.",
|
|
30675
30965
|
"default": "false"
|
|
30676
30966
|
},
|
|
30677
30967
|
{
|
|
@@ -30759,7 +31049,7 @@
|
|
|
30759
31049
|
"type": {
|
|
30760
31050
|
"text": "boolean"
|
|
30761
31051
|
},
|
|
30762
|
-
"description": "Controls whether the tabs are styled as secondary tab navigation.",
|
|
31052
|
+
"description": "Deprecated. Controls whether the tabs are styled as secondary tab navigation.",
|
|
30763
31053
|
"name": "secondary",
|
|
30764
31054
|
"default": "false"
|
|
30765
31055
|
},
|
|
@@ -30981,7 +31271,7 @@
|
|
|
30981
31271
|
},
|
|
30982
31272
|
"HTMLElementEventMap": {
|
|
30983
31273
|
"path": "src/lib/tabs/tab-bar/tab-bar.ts",
|
|
30984
|
-
"lineNumber":
|
|
31274
|
+
"lineNumber": 32
|
|
30985
31275
|
},
|
|
30986
31276
|
"AutocompleteComponent": {
|
|
30987
31277
|
"path": "src/lib/autocomplete/autocomplete.ts",
|
|
@@ -31741,7 +32031,7 @@
|
|
|
31741
32031
|
},
|
|
31742
32032
|
"FieldComponent": {
|
|
31743
32033
|
"path": "src/lib/field/field.ts",
|
|
31744
|
-
"lineNumber":
|
|
32034
|
+
"lineNumber": 180
|
|
31745
32035
|
},
|
|
31746
32036
|
"IFilePickerAdapter": {
|
|
31747
32037
|
"path": "src/lib/file-picker/file-picker-adapter.ts",
|
|
@@ -31925,7 +32215,7 @@
|
|
|
31925
32215
|
},
|
|
31926
32216
|
"IconComponent": {
|
|
31927
32217
|
"path": "src/lib/icon/icon.ts",
|
|
31928
|
-
"lineNumber":
|
|
32218
|
+
"lineNumber": 62
|
|
31929
32219
|
},
|
|
31930
32220
|
"IIconButtonAdapter": {
|
|
31931
32221
|
"path": "src/lib/icon-button/icon-button-adapter.ts",
|
|
@@ -31981,7 +32271,7 @@
|
|
|
31981
32271
|
},
|
|
31982
32272
|
"IconButtonComponent": {
|
|
31983
32273
|
"path": "src/lib/icon-button/icon-button.ts",
|
|
31984
|
-
"lineNumber":
|
|
32274
|
+
"lineNumber": 142
|
|
31985
32275
|
},
|
|
31986
32276
|
"LegacyInlineMessageThemes": {
|
|
31987
32277
|
"path": "src/lib/inline-message/inline-message-constants.ts",
|
|
@@ -32401,11 +32691,11 @@
|
|
|
32401
32691
|
},
|
|
32402
32692
|
"IPopoverAdapter": {
|
|
32403
32693
|
"path": "src/lib/popover/popover-adapter.ts",
|
|
32404
|
-
"lineNumber":
|
|
32694
|
+
"lineNumber": 10
|
|
32405
32695
|
},
|
|
32406
32696
|
"PopoverAdapter": {
|
|
32407
32697
|
"path": "src/lib/popover/popover-adapter.ts",
|
|
32408
|
-
"lineNumber":
|
|
32698
|
+
"lineNumber": 29
|
|
32409
32699
|
},
|
|
32410
32700
|
"PopoverAnimationType": {
|
|
32411
32701
|
"path": "src/lib/popover/popover-constants.ts",
|
|
@@ -33013,7 +33303,7 @@
|
|
|
33013
33303
|
},
|
|
33014
33304
|
"TimePickerComponent": {
|
|
33015
33305
|
"path": "src/lib/time-picker/time-picker.ts",
|
|
33016
|
-
"lineNumber":
|
|
33306
|
+
"lineNumber": 69
|
|
33017
33307
|
},
|
|
33018
33308
|
"IToastAdapter": {
|
|
33019
33309
|
"path": "src/lib/toast/toast-adapter.ts",
|
|
@@ -33061,7 +33351,7 @@
|
|
|
33061
33351
|
},
|
|
33062
33352
|
"ToolbarComponent": {
|
|
33063
33353
|
"path": "src/lib/toolbar/toolbar.ts",
|
|
33064
|
-
"lineNumber":
|
|
33354
|
+
"lineNumber": 72
|
|
33065
33355
|
},
|
|
33066
33356
|
"ITooltipAdapter": {
|
|
33067
33357
|
"path": "src/lib/tooltip/tooltip-adapter.ts",
|
|
@@ -33169,7 +33459,7 @@
|
|
|
33169
33459
|
},
|
|
33170
33460
|
"AppBarComponent": {
|
|
33171
33461
|
"path": "src/lib/app-bar/app-bar/app-bar.ts",
|
|
33172
|
-
"lineNumber":
|
|
33462
|
+
"lineNumber": 78
|
|
33173
33463
|
},
|
|
33174
33464
|
"IAppBarHelpButtonAdapter": {
|
|
33175
33465
|
"path": "src/lib/app-bar/help-button/app-bar-help-button-adapter.ts",
|
|
@@ -34445,23 +34735,23 @@
|
|
|
34445
34735
|
},
|
|
34446
34736
|
"ITabAdapter": {
|
|
34447
34737
|
"path": "src/lib/tabs/tab/tab-adapter.ts",
|
|
34448
|
-
"lineNumber":
|
|
34738
|
+
"lineNumber": 9
|
|
34449
34739
|
},
|
|
34450
34740
|
"TabAdapter": {
|
|
34451
34741
|
"path": "src/lib/tabs/tab/tab-adapter.ts",
|
|
34452
|
-
"lineNumber":
|
|
34742
|
+
"lineNumber": 19
|
|
34453
34743
|
},
|
|
34454
34744
|
"ITabCore": {
|
|
34455
34745
|
"path": "src/lib/tabs/tab/tab-core.ts",
|
|
34456
|
-
"lineNumber":
|
|
34746
|
+
"lineNumber": 5
|
|
34457
34747
|
},
|
|
34458
34748
|
"TabCore": {
|
|
34459
34749
|
"path": "src/lib/tabs/tab/tab-core.ts",
|
|
34460
|
-
"lineNumber":
|
|
34750
|
+
"lineNumber": 15
|
|
34461
34751
|
},
|
|
34462
34752
|
"ITabComponent": {
|
|
34463
34753
|
"path": "src/lib/tabs/tab/tab.ts",
|
|
34464
|
-
"lineNumber":
|
|
34754
|
+
"lineNumber": 14
|
|
34465
34755
|
},
|
|
34466
34756
|
"TabComponent": {
|
|
34467
34757
|
"path": "src/lib/tabs/tab/tab.ts",
|
|
@@ -34501,7 +34791,7 @@
|
|
|
34501
34791
|
},
|
|
34502
34792
|
"TabBarComponent": {
|
|
34503
34793
|
"path": "src/lib/tabs/tab-bar/tab-bar.ts",
|
|
34504
|
-
"lineNumber":
|
|
34794
|
+
"lineNumber": 81
|
|
34505
34795
|
},
|
|
34506
34796
|
"IViewComponent": {
|
|
34507
34797
|
"path": "src/lib/view-switcher/view/view.ts",
|