@tylertech/forge 3.8.0-dev.2 → 3.8.0-dev.4
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 +1725 -928
- package/dist/app-bar/forge-app-bar.css +20 -3
- package/dist/forge.css +2 -2
- package/dist/lib.js +20 -20
- package/dist/lib.js.map +4 -4
- package/dist/table/forge-table.css +2 -2
- package/dist/vscode.css-custom-data.json +94 -84
- package/dist/vscode.html-custom-data.json +190 -65
- package/esm/app-bar/app-bar/app-bar-constants.d.ts +2 -0
- package/esm/app-bar/app-bar/app-bar-constants.js +2 -1
- package/esm/app-bar/app-bar/app-bar-core.d.ts +5 -1
- package/esm/app-bar/app-bar/app-bar-core.js +10 -0
- package/esm/app-bar/app-bar/app-bar.d.ts +9 -1
- package/esm/app-bar/app-bar/app-bar.js +15 -2
- package/esm/app-bar/help-button/app-bar-help-button.js +1 -1
- package/esm/app-bar/menu-button/app-bar-menu-button.js +1 -1
- package/esm/app-bar/notification-button/app-bar-notification-button.js +1 -1
- package/esm/app-bar/profile-button/app-bar-profile-button.js +1 -1
- package/esm/app-bar/search/app-bar-search.js +1 -1
- package/esm/autocomplete/autocomplete-core.js +5 -0
- package/esm/avatar/avatar.d.ts +7 -4
- package/esm/avatar/avatar.js +10 -6
- package/esm/badge/badge.d.ts +7 -3
- package/esm/badge/badge.js +9 -4
- package/esm/button/button-constants.d.ts +1 -1
- package/esm/button/button.js +1 -1
- package/esm/card/card.d.ts +7 -3
- package/esm/card/card.js +8 -3
- package/esm/core/base/base-lit-element.d.ts +9 -0
- package/esm/core/base/base-lit-element.js +12 -0
- package/esm/core/utils/lit-utils.d.ts +11 -0
- package/esm/core/utils/lit-utils.js +31 -0
- package/esm/dialog/dialog-adapter.d.ts +0 -1
- package/esm/dialog/dialog-adapter.js +4 -39
- package/esm/dialog/dialog-constants.d.ts +6 -2
- package/esm/dialog/dialog-constants.js +4 -4
- package/esm/dialog/dialog-core.d.ts +3 -3
- package/esm/dialog/dialog-core.js +8 -7
- package/esm/dialog/dialog.d.ts +3 -3
- package/esm/dialog/dialog.js +3 -3
- package/esm/icon-button/icon-button-constants.d.ts +1 -1
- package/esm/icon-button/icon-button.js +1 -1
- package/esm/key/key/index.js +2 -2
- package/esm/key/key/key.d.ts +7 -2
- package/esm/key/key/key.js +10 -3
- package/esm/key/key-item/index.js +2 -2
- package/esm/key/key-item/key-item.d.ts +7 -2
- package/esm/key/key-item/key-item.js +10 -3
- package/esm/list-dropdown/list-dropdown-aware-core.d.ts +22 -0
- package/esm/list-dropdown/list-dropdown-aware-core.js +30 -0
- package/esm/list-dropdown/list-dropdown-aware.d.ts +35 -0
- package/esm/list-dropdown/list-dropdown-aware.js +35 -16
- package/esm/list-dropdown/list-dropdown-constants.d.ts +22 -3
- package/esm/list-dropdown/list-dropdown-constants.js +9 -1
- package/esm/list-dropdown/list-dropdown-utils.js +6 -0
- package/esm/menu/menu-core.js +2 -0
- package/esm/menu/menu.js +1 -0
- package/esm/meter/meter/meter.d.ts +7 -2
- package/esm/meter/meter/meter.js +10 -3
- package/esm/meter/meter-group/index.js +2 -2
- package/esm/meter/meter-group/meter-group.d.ts +7 -2
- package/esm/meter/meter-group/meter-group.js +10 -4
- package/esm/overlay/base/overlay-aware.d.ts +4 -4
- package/esm/overlay/base/overlay-aware.js +3 -3
- package/esm/select/core/base-select-core.js +5 -0
- package/esm/select/select/select.d.ts +25 -1
- package/esm/select/select/select.js +26 -1
- package/esm/split-view/split-view-panel/split-view-panel.js +1 -1
- package/esm/tabs/tab-bar/tab-bar.js +1 -1
- package/package.json +1 -1
- package/sass/app-bar/app-bar/_core.scss +0 -1
- package/sass/app-bar/app-bar/app-bar.scss +51 -7
- package/sass/app-bar/forge-app-bar.scss +41 -11
- package/sass/app-bar/search/app-bar-search.scss +3 -0
- package/sass/button/button.scss +24 -0
- package/sass/core/styles/scrollbar/index.scss +14 -0
- package/sass/core/styles/tokens/app-bar/app-bar/_tokens.scss +4 -1
- package/sass/icon-button/icon-button.scss +14 -0
- package/sass/table/_core.scss +1 -1
- package/sass/tabs/tab-bar/tab-bar.scss +24 -0
package/custom-elements.json
CHANGED
|
@@ -436,6 +436,79 @@
|
|
|
436
436
|
"name": "ListDropdownAware",
|
|
437
437
|
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
438
438
|
}
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"kind": "field",
|
|
442
|
+
"name": "popoverPlacement",
|
|
443
|
+
"type": {
|
|
444
|
+
"text": "OverlayPlacement"
|
|
445
|
+
},
|
|
446
|
+
"privacy": "public",
|
|
447
|
+
"description": "Gets/sets the placement of the popover.",
|
|
448
|
+
"default": "'bottom'",
|
|
449
|
+
"attribute": "popover-placement",
|
|
450
|
+
"inheritedFrom": {
|
|
451
|
+
"name": "ListDropdownAware",
|
|
452
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
453
|
+
}
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"kind": "field",
|
|
457
|
+
"name": "popoverOffset",
|
|
458
|
+
"type": {
|
|
459
|
+
"text": "IOverlayOffset"
|
|
460
|
+
},
|
|
461
|
+
"privacy": "public",
|
|
462
|
+
"description": "Gets/sets the offset of the popover.",
|
|
463
|
+
"attribute": "popover-offset",
|
|
464
|
+
"inheritedFrom": {
|
|
465
|
+
"name": "ListDropdownAware",
|
|
466
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
467
|
+
}
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
"kind": "field",
|
|
471
|
+
"name": "popoverFlip",
|
|
472
|
+
"type": {
|
|
473
|
+
"text": "OverlayFlipState"
|
|
474
|
+
},
|
|
475
|
+
"privacy": "public",
|
|
476
|
+
"description": "Gets/sets the flip state of the popover.",
|
|
477
|
+
"default": "'auto'",
|
|
478
|
+
"attribute": "popover-flip",
|
|
479
|
+
"inheritedFrom": {
|
|
480
|
+
"name": "ListDropdownAware",
|
|
481
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
482
|
+
}
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"kind": "field",
|
|
486
|
+
"name": "popoverShift",
|
|
487
|
+
"type": {
|
|
488
|
+
"text": "OverlayShiftState"
|
|
489
|
+
},
|
|
490
|
+
"privacy": "public",
|
|
491
|
+
"description": "Gets/sets whether the popover should shift to fit within the viewport.",
|
|
492
|
+
"default": "'auto'",
|
|
493
|
+
"attribute": "popover-shift",
|
|
494
|
+
"inheritedFrom": {
|
|
495
|
+
"name": "ListDropdownAware",
|
|
496
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
497
|
+
}
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"kind": "field",
|
|
501
|
+
"name": "popoverFallbackPlacements",
|
|
502
|
+
"type": {
|
|
503
|
+
"text": "PositionPlacement[] | null"
|
|
504
|
+
},
|
|
505
|
+
"privacy": "public",
|
|
506
|
+
"description": "Gets/sets the fallback placements of the popover.",
|
|
507
|
+
"attribute": "popover-fallback-placements",
|
|
508
|
+
"inheritedFrom": {
|
|
509
|
+
"name": "ListDropdownAware",
|
|
510
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
511
|
+
}
|
|
439
512
|
}
|
|
440
513
|
],
|
|
441
514
|
"events": [
|
|
@@ -630,6 +703,69 @@
|
|
|
630
703
|
"name": "ListDropdownAware",
|
|
631
704
|
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
632
705
|
}
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"name": "popover-placement",
|
|
709
|
+
"type": {
|
|
710
|
+
"text": "OverlayPlacement"
|
|
711
|
+
},
|
|
712
|
+
"description": "Gets/sets the placement of the popover.",
|
|
713
|
+
"default": "'bottom'",
|
|
714
|
+
"fieldName": "popoverPlacement",
|
|
715
|
+
"inheritedFrom": {
|
|
716
|
+
"name": "ListDropdownAware",
|
|
717
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
718
|
+
}
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
"name": "popover-offset",
|
|
722
|
+
"type": {
|
|
723
|
+
"text": "IOverlayOffset"
|
|
724
|
+
},
|
|
725
|
+
"description": "Gets/sets the offset of the popover.",
|
|
726
|
+
"fieldName": "popoverOffset",
|
|
727
|
+
"inheritedFrom": {
|
|
728
|
+
"name": "ListDropdownAware",
|
|
729
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
730
|
+
}
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"name": "popover-flip",
|
|
734
|
+
"type": {
|
|
735
|
+
"text": "OverlayFlipState"
|
|
736
|
+
},
|
|
737
|
+
"description": "Gets/sets the flip state of the popover.",
|
|
738
|
+
"default": "'auto'",
|
|
739
|
+
"fieldName": "popoverFlip",
|
|
740
|
+
"inheritedFrom": {
|
|
741
|
+
"name": "ListDropdownAware",
|
|
742
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
743
|
+
}
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
"name": "popover-shift",
|
|
747
|
+
"type": {
|
|
748
|
+
"text": "OverlayShiftState"
|
|
749
|
+
},
|
|
750
|
+
"description": "Gets/sets whether the popover should shift to fit within the viewport.",
|
|
751
|
+
"default": "'auto'",
|
|
752
|
+
"fieldName": "popoverShift",
|
|
753
|
+
"inheritedFrom": {
|
|
754
|
+
"name": "ListDropdownAware",
|
|
755
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
756
|
+
}
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"name": "popover-fallback-placements",
|
|
760
|
+
"type": {
|
|
761
|
+
"text": "PositionPlacement[] | null"
|
|
762
|
+
},
|
|
763
|
+
"description": "Gets/sets the fallback placements of the popover.",
|
|
764
|
+
"fieldName": "popoverFallbackPlacements",
|
|
765
|
+
"inheritedFrom": {
|
|
766
|
+
"name": "ListDropdownAware",
|
|
767
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
768
|
+
}
|
|
633
769
|
}
|
|
634
770
|
],
|
|
635
771
|
"superclass": {
|
|
@@ -945,8 +1081,8 @@
|
|
|
945
1081
|
"text": "number"
|
|
946
1082
|
},
|
|
947
1083
|
"privacy": "public",
|
|
948
|
-
"description": "Controls the number of letters to display from the text. By default the text is split on spaces and the first character of each word is used.",
|
|
949
1084
|
"default": "2",
|
|
1085
|
+
"description": "Controls the number of letters to display from the text. By default the text is split on spaces and the first character of each word is used.",
|
|
950
1086
|
"attribute": "letter-count"
|
|
951
1087
|
},
|
|
952
1088
|
{
|
|
@@ -994,8 +1130,8 @@
|
|
|
994
1130
|
"type": {
|
|
995
1131
|
"text": "number"
|
|
996
1132
|
},
|
|
997
|
-
"description": "Controls the number of letters to display from the text. By default the text is split on spaces and the first character of each word is used.",
|
|
998
1133
|
"default": "2",
|
|
1134
|
+
"description": "Controls the number of letters to display from the text. By default the text is split on spaces and the first character of each word is used.",
|
|
999
1135
|
"fieldName": "letterCount"
|
|
1000
1136
|
},
|
|
1001
1137
|
{
|
|
@@ -1009,8 +1145,8 @@
|
|
|
1009
1145
|
}
|
|
1010
1146
|
],
|
|
1011
1147
|
"superclass": {
|
|
1012
|
-
"name": "
|
|
1013
|
-
"
|
|
1148
|
+
"name": "BaseLitElement",
|
|
1149
|
+
"module": "/src/lib/core/base/base-lit-element"
|
|
1014
1150
|
},
|
|
1015
1151
|
"tagName": "forge-avatar",
|
|
1016
1152
|
"summary": "Avatars represent an entity via text or image.",
|
|
@@ -1042,179 +1178,6 @@
|
|
|
1042
1178
|
}
|
|
1043
1179
|
]
|
|
1044
1180
|
},
|
|
1045
|
-
{
|
|
1046
|
-
"kind": "javascript-module",
|
|
1047
|
-
"path": "src/lib/badge/badge.ts",
|
|
1048
|
-
"declarations": [
|
|
1049
|
-
{
|
|
1050
|
-
"kind": "variable",
|
|
1051
|
-
"name": "BADGE_TAG_NAME",
|
|
1052
|
-
"type": {
|
|
1053
|
-
"text": "keyof HTMLElementTagNameMap"
|
|
1054
|
-
},
|
|
1055
|
-
"default": "'forge-badge'"
|
|
1056
|
-
},
|
|
1057
|
-
{
|
|
1058
|
-
"kind": "class",
|
|
1059
|
-
"description": "",
|
|
1060
|
-
"name": "BadgeComponent",
|
|
1061
|
-
"cssProperties": [
|
|
1062
|
-
{
|
|
1063
|
-
"description": "The background color.",
|
|
1064
|
-
"name": "--forge-badge-background"
|
|
1065
|
-
},
|
|
1066
|
-
{
|
|
1067
|
-
"description": "The text color.",
|
|
1068
|
-
"name": "--forge-badge-color"
|
|
1069
|
-
},
|
|
1070
|
-
{
|
|
1071
|
-
"description": "The shape radius.",
|
|
1072
|
-
"name": "--forge-badge-shape"
|
|
1073
|
-
},
|
|
1074
|
-
{
|
|
1075
|
-
"description": "The inline padding.",
|
|
1076
|
-
"name": "--forge-badge-padding-inline"
|
|
1077
|
-
},
|
|
1078
|
-
{
|
|
1079
|
-
"description": "The block padding.",
|
|
1080
|
-
"name": "--forge-badge-padding-block"
|
|
1081
|
-
},
|
|
1082
|
-
{
|
|
1083
|
-
"description": "The border width.",
|
|
1084
|
-
"name": "--forge-badge-border-width"
|
|
1085
|
-
},
|
|
1086
|
-
{
|
|
1087
|
-
"description": "The border color.",
|
|
1088
|
-
"name": "--forge-badge-border-color"
|
|
1089
|
-
},
|
|
1090
|
-
{
|
|
1091
|
-
"description": "The border style.",
|
|
1092
|
-
"name": "--forge-badge-border-style"
|
|
1093
|
-
},
|
|
1094
|
-
{
|
|
1095
|
-
"description": "The spacing between the content within the badge.",
|
|
1096
|
-
"name": "--forge-badge-gap"
|
|
1097
|
-
}
|
|
1098
|
-
],
|
|
1099
|
-
"slots": [
|
|
1100
|
-
{
|
|
1101
|
-
"description": "Default content placed inside the badge.",
|
|
1102
|
-
"name": ""
|
|
1103
|
-
},
|
|
1104
|
-
{
|
|
1105
|
-
"description": "Content placed before the default content.",
|
|
1106
|
-
"name": "start"
|
|
1107
|
-
},
|
|
1108
|
-
{
|
|
1109
|
-
"description": "Content placed after the default content.",
|
|
1110
|
-
"name": "end"
|
|
1111
|
-
}
|
|
1112
|
-
],
|
|
1113
|
-
"members": [
|
|
1114
|
-
{
|
|
1115
|
-
"kind": "field",
|
|
1116
|
-
"name": "#internals",
|
|
1117
|
-
"privacy": "private",
|
|
1118
|
-
"type": {
|
|
1119
|
-
"text": "ElementInternals"
|
|
1120
|
-
}
|
|
1121
|
-
},
|
|
1122
|
-
{
|
|
1123
|
-
"kind": "field",
|
|
1124
|
-
"name": "dot",
|
|
1125
|
-
"type": {
|
|
1126
|
-
"text": "boolean"
|
|
1127
|
-
},
|
|
1128
|
-
"privacy": "public",
|
|
1129
|
-
"default": "false",
|
|
1130
|
-
"description": "Controls whether the badge will be a small dot without any content visible."
|
|
1131
|
-
},
|
|
1132
|
-
{
|
|
1133
|
-
"kind": "field",
|
|
1134
|
-
"name": "theme",
|
|
1135
|
-
"type": {
|
|
1136
|
-
"text": "BadgeTheme"
|
|
1137
|
-
},
|
|
1138
|
-
"privacy": "public",
|
|
1139
|
-
"default": "'default'",
|
|
1140
|
-
"description": "The theme of the badge."
|
|
1141
|
-
},
|
|
1142
|
-
{
|
|
1143
|
-
"kind": "field",
|
|
1144
|
-
"name": "strong",
|
|
1145
|
-
"type": {
|
|
1146
|
-
"text": "boolean"
|
|
1147
|
-
},
|
|
1148
|
-
"privacy": "public",
|
|
1149
|
-
"default": "false",
|
|
1150
|
-
"description": "Controls whether the badge will have a stronger visual appearance."
|
|
1151
|
-
},
|
|
1152
|
-
{
|
|
1153
|
-
"kind": "field",
|
|
1154
|
-
"name": "hide",
|
|
1155
|
-
"type": {
|
|
1156
|
-
"text": "boolean"
|
|
1157
|
-
},
|
|
1158
|
-
"privacy": "public",
|
|
1159
|
-
"default": "false",
|
|
1160
|
-
"description": "Controls whether the badge is visible."
|
|
1161
|
-
}
|
|
1162
|
-
],
|
|
1163
|
-
"superclass": {
|
|
1164
|
-
"name": "LitElement",
|
|
1165
|
-
"package": "lit"
|
|
1166
|
-
},
|
|
1167
|
-
"tagName": "forge-badge",
|
|
1168
|
-
"states": [
|
|
1169
|
-
{
|
|
1170
|
-
"name": "dot",
|
|
1171
|
-
"description": "The badge is rendered as a dot."
|
|
1172
|
-
},
|
|
1173
|
-
{
|
|
1174
|
-
"name": "strong",
|
|
1175
|
-
"description": "The badge has a stronger visual appearance."
|
|
1176
|
-
},
|
|
1177
|
-
{
|
|
1178
|
-
"name": "hide",
|
|
1179
|
-
"description": "The badge is hidden."
|
|
1180
|
-
}
|
|
1181
|
-
],
|
|
1182
|
-
"cssClasses": [
|
|
1183
|
-
{
|
|
1184
|
-
"name": "forge-badge",
|
|
1185
|
-
"description": "The badge class _(required)_."
|
|
1186
|
-
},
|
|
1187
|
-
{
|
|
1188
|
-
"name": "forge-badge--dot",
|
|
1189
|
-
"description": "Renders the badge as a dot."
|
|
1190
|
-
},
|
|
1191
|
-
{
|
|
1192
|
-
"name": "forge-badge__icon",
|
|
1193
|
-
"description": "Styles a child element as an icon."
|
|
1194
|
-
}
|
|
1195
|
-
],
|
|
1196
|
-
"customElement": true
|
|
1197
|
-
}
|
|
1198
|
-
],
|
|
1199
|
-
"exports": [
|
|
1200
|
-
{
|
|
1201
|
-
"kind": "js",
|
|
1202
|
-
"name": "BADGE_TAG_NAME",
|
|
1203
|
-
"declaration": {
|
|
1204
|
-
"name": "BADGE_TAG_NAME",
|
|
1205
|
-
"module": "src/lib/badge/badge.ts"
|
|
1206
|
-
}
|
|
1207
|
-
},
|
|
1208
|
-
{
|
|
1209
|
-
"kind": "js",
|
|
1210
|
-
"name": "BadgeComponent",
|
|
1211
|
-
"declaration": {
|
|
1212
|
-
"name": "BadgeComponent",
|
|
1213
|
-
"module": "src/lib/badge/badge.ts"
|
|
1214
|
-
}
|
|
1215
|
-
}
|
|
1216
|
-
]
|
|
1217
|
-
},
|
|
1218
1181
|
{
|
|
1219
1182
|
"kind": "javascript-module",
|
|
1220
1183
|
"path": "src/lib/banner/banner.ts",
|
|
@@ -1592,6 +1555,179 @@
|
|
|
1592
1555
|
}
|
|
1593
1556
|
]
|
|
1594
1557
|
},
|
|
1558
|
+
{
|
|
1559
|
+
"kind": "javascript-module",
|
|
1560
|
+
"path": "src/lib/badge/badge.ts",
|
|
1561
|
+
"declarations": [
|
|
1562
|
+
{
|
|
1563
|
+
"kind": "variable",
|
|
1564
|
+
"name": "BADGE_TAG_NAME",
|
|
1565
|
+
"type": {
|
|
1566
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
1567
|
+
},
|
|
1568
|
+
"default": "'forge-badge'"
|
|
1569
|
+
},
|
|
1570
|
+
{
|
|
1571
|
+
"kind": "class",
|
|
1572
|
+
"description": "",
|
|
1573
|
+
"name": "BadgeComponent",
|
|
1574
|
+
"cssProperties": [
|
|
1575
|
+
{
|
|
1576
|
+
"description": "The background color.",
|
|
1577
|
+
"name": "--forge-badge-background"
|
|
1578
|
+
},
|
|
1579
|
+
{
|
|
1580
|
+
"description": "The text color.",
|
|
1581
|
+
"name": "--forge-badge-color"
|
|
1582
|
+
},
|
|
1583
|
+
{
|
|
1584
|
+
"description": "The shape radius.",
|
|
1585
|
+
"name": "--forge-badge-shape"
|
|
1586
|
+
},
|
|
1587
|
+
{
|
|
1588
|
+
"description": "The inline padding.",
|
|
1589
|
+
"name": "--forge-badge-padding-inline"
|
|
1590
|
+
},
|
|
1591
|
+
{
|
|
1592
|
+
"description": "The block padding.",
|
|
1593
|
+
"name": "--forge-badge-padding-block"
|
|
1594
|
+
},
|
|
1595
|
+
{
|
|
1596
|
+
"description": "The border width.",
|
|
1597
|
+
"name": "--forge-badge-border-width"
|
|
1598
|
+
},
|
|
1599
|
+
{
|
|
1600
|
+
"description": "The border color.",
|
|
1601
|
+
"name": "--forge-badge-border-color"
|
|
1602
|
+
},
|
|
1603
|
+
{
|
|
1604
|
+
"description": "The border style.",
|
|
1605
|
+
"name": "--forge-badge-border-style"
|
|
1606
|
+
},
|
|
1607
|
+
{
|
|
1608
|
+
"description": "The spacing between the content within the badge.",
|
|
1609
|
+
"name": "--forge-badge-gap"
|
|
1610
|
+
}
|
|
1611
|
+
],
|
|
1612
|
+
"slots": [
|
|
1613
|
+
{
|
|
1614
|
+
"description": "Default content placed inside the badge.",
|
|
1615
|
+
"name": ""
|
|
1616
|
+
},
|
|
1617
|
+
{
|
|
1618
|
+
"description": "Content placed before the default content.",
|
|
1619
|
+
"name": "start"
|
|
1620
|
+
},
|
|
1621
|
+
{
|
|
1622
|
+
"description": "Content placed after the default content.",
|
|
1623
|
+
"name": "end"
|
|
1624
|
+
}
|
|
1625
|
+
],
|
|
1626
|
+
"members": [
|
|
1627
|
+
{
|
|
1628
|
+
"kind": "field",
|
|
1629
|
+
"name": "#internals",
|
|
1630
|
+
"privacy": "private",
|
|
1631
|
+
"type": {
|
|
1632
|
+
"text": "ElementInternals"
|
|
1633
|
+
}
|
|
1634
|
+
},
|
|
1635
|
+
{
|
|
1636
|
+
"kind": "field",
|
|
1637
|
+
"name": "dot",
|
|
1638
|
+
"type": {
|
|
1639
|
+
"text": "boolean"
|
|
1640
|
+
},
|
|
1641
|
+
"privacy": "public",
|
|
1642
|
+
"default": "false",
|
|
1643
|
+
"description": "Controls whether the badge will be a small dot without any content visible."
|
|
1644
|
+
},
|
|
1645
|
+
{
|
|
1646
|
+
"kind": "field",
|
|
1647
|
+
"name": "theme",
|
|
1648
|
+
"type": {
|
|
1649
|
+
"text": "BadgeTheme"
|
|
1650
|
+
},
|
|
1651
|
+
"privacy": "public",
|
|
1652
|
+
"default": "'default'",
|
|
1653
|
+
"description": "The theme of the badge."
|
|
1654
|
+
},
|
|
1655
|
+
{
|
|
1656
|
+
"kind": "field",
|
|
1657
|
+
"name": "strong",
|
|
1658
|
+
"type": {
|
|
1659
|
+
"text": "boolean"
|
|
1660
|
+
},
|
|
1661
|
+
"privacy": "public",
|
|
1662
|
+
"default": "false",
|
|
1663
|
+
"description": "Controls whether the badge will have a stronger visual appearance."
|
|
1664
|
+
},
|
|
1665
|
+
{
|
|
1666
|
+
"kind": "field",
|
|
1667
|
+
"name": "hide",
|
|
1668
|
+
"type": {
|
|
1669
|
+
"text": "boolean"
|
|
1670
|
+
},
|
|
1671
|
+
"privacy": "public",
|
|
1672
|
+
"default": "false",
|
|
1673
|
+
"description": "Controls whether the badge is visible."
|
|
1674
|
+
}
|
|
1675
|
+
],
|
|
1676
|
+
"superclass": {
|
|
1677
|
+
"name": "BaseLitElement",
|
|
1678
|
+
"module": "/src/lib/core/base/base-lit-element"
|
|
1679
|
+
},
|
|
1680
|
+
"tagName": "forge-badge",
|
|
1681
|
+
"states": [
|
|
1682
|
+
{
|
|
1683
|
+
"name": "dot",
|
|
1684
|
+
"description": "The badge is rendered as a dot."
|
|
1685
|
+
},
|
|
1686
|
+
{
|
|
1687
|
+
"name": "strong",
|
|
1688
|
+
"description": "The badge has a stronger visual appearance."
|
|
1689
|
+
},
|
|
1690
|
+
{
|
|
1691
|
+
"name": "hide",
|
|
1692
|
+
"description": "The badge is hidden."
|
|
1693
|
+
}
|
|
1694
|
+
],
|
|
1695
|
+
"cssClasses": [
|
|
1696
|
+
{
|
|
1697
|
+
"name": "forge-badge",
|
|
1698
|
+
"description": "The badge class _(required)_."
|
|
1699
|
+
},
|
|
1700
|
+
{
|
|
1701
|
+
"name": "forge-badge--dot",
|
|
1702
|
+
"description": "Renders the badge as a dot."
|
|
1703
|
+
},
|
|
1704
|
+
{
|
|
1705
|
+
"name": "forge-badge__icon",
|
|
1706
|
+
"description": "Styles a child element as an icon."
|
|
1707
|
+
}
|
|
1708
|
+
],
|
|
1709
|
+
"customElement": true
|
|
1710
|
+
}
|
|
1711
|
+
],
|
|
1712
|
+
"exports": [
|
|
1713
|
+
{
|
|
1714
|
+
"kind": "js",
|
|
1715
|
+
"name": "BADGE_TAG_NAME",
|
|
1716
|
+
"declaration": {
|
|
1717
|
+
"name": "BADGE_TAG_NAME",
|
|
1718
|
+
"module": "src/lib/badge/badge.ts"
|
|
1719
|
+
}
|
|
1720
|
+
},
|
|
1721
|
+
{
|
|
1722
|
+
"kind": "js",
|
|
1723
|
+
"name": "BadgeComponent",
|
|
1724
|
+
"declaration": {
|
|
1725
|
+
"name": "BadgeComponent",
|
|
1726
|
+
"module": "src/lib/badge/badge.ts"
|
|
1727
|
+
}
|
|
1728
|
+
}
|
|
1729
|
+
]
|
|
1730
|
+
},
|
|
1595
1731
|
{
|
|
1596
1732
|
"kind": "javascript-module",
|
|
1597
1733
|
"path": "src/lib/button/button.ts",
|
|
@@ -3257,8 +3393,8 @@
|
|
|
3257
3393
|
}
|
|
3258
3394
|
],
|
|
3259
3395
|
"superclass": {
|
|
3260
|
-
"name": "
|
|
3261
|
-
"
|
|
3396
|
+
"name": "BaseLitElement",
|
|
3397
|
+
"module": "/src/lib/core/base/base-lit-element"
|
|
3262
3398
|
},
|
|
3263
3399
|
"tagName": "forge-card",
|
|
3264
3400
|
"states": [
|
|
@@ -7160,7 +7296,7 @@
|
|
|
7160
7296
|
},
|
|
7161
7297
|
{
|
|
7162
7298
|
"type": {
|
|
7163
|
-
"text": "CustomEvent<
|
|
7299
|
+
"text": "CustomEvent<IDialogBeforeCloseEventData>"
|
|
7164
7300
|
},
|
|
7165
7301
|
"description": "Dispatched before the dialog is closed. This event is cancelable.",
|
|
7166
7302
|
"name": "forge-dialog-before-close"
|
|
@@ -10697,206 +10833,6 @@
|
|
|
10697
10833
|
}
|
|
10698
10834
|
]
|
|
10699
10835
|
},
|
|
10700
|
-
{
|
|
10701
|
-
"kind": "javascript-module",
|
|
10702
|
-
"path": "src/lib/label/label-aware.ts",
|
|
10703
|
-
"declarations": [
|
|
10704
|
-
{
|
|
10705
|
-
"kind": "function",
|
|
10706
|
-
"name": "isLabelAware",
|
|
10707
|
-
"return": {
|
|
10708
|
-
"type": {
|
|
10709
|
-
"text": ""
|
|
10710
|
-
}
|
|
10711
|
-
},
|
|
10712
|
-
"parameters": [
|
|
10713
|
-
{
|
|
10714
|
-
"name": "obj",
|
|
10715
|
-
"type": {
|
|
10716
|
-
"text": "any"
|
|
10717
|
-
},
|
|
10718
|
-
"description": "The object to check."
|
|
10719
|
-
}
|
|
10720
|
-
],
|
|
10721
|
-
"description": "Determines if an object is label aware."
|
|
10722
|
-
}
|
|
10723
|
-
],
|
|
10724
|
-
"exports": [
|
|
10725
|
-
{
|
|
10726
|
-
"kind": "js",
|
|
10727
|
-
"name": "isLabelAware",
|
|
10728
|
-
"declaration": {
|
|
10729
|
-
"name": "isLabelAware",
|
|
10730
|
-
"module": "src/lib/label/label-aware.ts"
|
|
10731
|
-
}
|
|
10732
|
-
}
|
|
10733
|
-
]
|
|
10734
|
-
},
|
|
10735
|
-
{
|
|
10736
|
-
"kind": "javascript-module",
|
|
10737
|
-
"path": "src/lib/label/label.ts",
|
|
10738
|
-
"declarations": [
|
|
10739
|
-
{
|
|
10740
|
-
"kind": "class",
|
|
10741
|
-
"description": "",
|
|
10742
|
-
"name": "LabelComponent",
|
|
10743
|
-
"members": [
|
|
10744
|
-
{
|
|
10745
|
-
"kind": "field",
|
|
10746
|
-
"name": "for",
|
|
10747
|
-
"type": {
|
|
10748
|
-
"text": "string | null | undefined"
|
|
10749
|
-
},
|
|
10750
|
-
"privacy": "public",
|
|
10751
|
-
"description": "The id of the associated element.",
|
|
10752
|
-
"default": "null",
|
|
10753
|
-
"attribute": "for"
|
|
10754
|
-
},
|
|
10755
|
-
{
|
|
10756
|
-
"kind": "field",
|
|
10757
|
-
"name": "forElement",
|
|
10758
|
-
"type": {
|
|
10759
|
-
"text": "HTMLElement | null | undefined"
|
|
10760
|
-
},
|
|
10761
|
-
"privacy": "public",
|
|
10762
|
-
"description": "The associated element.",
|
|
10763
|
-
"default": "null"
|
|
10764
|
-
},
|
|
10765
|
-
{
|
|
10766
|
-
"kind": "field",
|
|
10767
|
-
"name": "clickTarget",
|
|
10768
|
-
"type": {
|
|
10769
|
-
"text": "HTMLElement | null | undefined"
|
|
10770
|
-
},
|
|
10771
|
-
"privacy": "public",
|
|
10772
|
-
"description": "The element that a click should be simulated on. If not defined clicks act on the associated element.",
|
|
10773
|
-
"default": "null"
|
|
10774
|
-
},
|
|
10775
|
-
{
|
|
10776
|
-
"kind": "field",
|
|
10777
|
-
"name": "dynamic",
|
|
10778
|
-
"type": {
|
|
10779
|
-
"text": "boolean"
|
|
10780
|
-
},
|
|
10781
|
-
"privacy": "public",
|
|
10782
|
-
"description": "Propagates changes in the label's text content to the associated element.",
|
|
10783
|
-
"default": "false",
|
|
10784
|
-
"attribute": "dynamic"
|
|
10785
|
-
},
|
|
10786
|
-
{
|
|
10787
|
-
"kind": "field",
|
|
10788
|
-
"name": "nonInteractive",
|
|
10789
|
-
"type": {
|
|
10790
|
-
"text": "boolean"
|
|
10791
|
-
},
|
|
10792
|
-
"privacy": "public",
|
|
10793
|
-
"description": "Removes click handling from the label.",
|
|
10794
|
-
"default": "false",
|
|
10795
|
-
"attribute": "non-interactive"
|
|
10796
|
-
},
|
|
10797
|
-
{
|
|
10798
|
-
"kind": "field",
|
|
10799
|
-
"name": "legend",
|
|
10800
|
-
"type": {
|
|
10801
|
-
"text": "boolean"
|
|
10802
|
-
},
|
|
10803
|
-
"privacy": "public",
|
|
10804
|
-
"description": "Whether or not the label should be associated with an ancestor element.",
|
|
10805
|
-
"default": "false",
|
|
10806
|
-
"attribute": "legend"
|
|
10807
|
-
},
|
|
10808
|
-
{
|
|
10809
|
-
"kind": "method",
|
|
10810
|
-
"name": "update",
|
|
10811
|
-
"privacy": "public",
|
|
10812
|
-
"return": {
|
|
10813
|
-
"type": {
|
|
10814
|
-
"text": "void"
|
|
10815
|
-
}
|
|
10816
|
-
},
|
|
10817
|
-
"description": "Updates the targeted element with the label's current text content."
|
|
10818
|
-
}
|
|
10819
|
-
],
|
|
10820
|
-
"attributes": [
|
|
10821
|
-
{
|
|
10822
|
-
"name": "for",
|
|
10823
|
-
"type": {
|
|
10824
|
-
"text": "string | null | undefined"
|
|
10825
|
-
},
|
|
10826
|
-
"description": "The id of the associated element.",
|
|
10827
|
-
"default": "null",
|
|
10828
|
-
"fieldName": "for"
|
|
10829
|
-
},
|
|
10830
|
-
{
|
|
10831
|
-
"name": "dynamic",
|
|
10832
|
-
"type": {
|
|
10833
|
-
"text": "boolean"
|
|
10834
|
-
},
|
|
10835
|
-
"description": "Propagates changes in the label's text content to the associated element.",
|
|
10836
|
-
"default": "false",
|
|
10837
|
-
"fieldName": "dynamic"
|
|
10838
|
-
},
|
|
10839
|
-
{
|
|
10840
|
-
"name": "non-interactive",
|
|
10841
|
-
"type": {
|
|
10842
|
-
"text": "boolean"
|
|
10843
|
-
},
|
|
10844
|
-
"description": "Removes click handling from the label.",
|
|
10845
|
-
"default": "false",
|
|
10846
|
-
"fieldName": "nonInteractive"
|
|
10847
|
-
},
|
|
10848
|
-
{
|
|
10849
|
-
"name": "legend",
|
|
10850
|
-
"type": {
|
|
10851
|
-
"text": "boolean"
|
|
10852
|
-
},
|
|
10853
|
-
"description": "Whether or not the label should be associated with an ancestor element.",
|
|
10854
|
-
"default": "false",
|
|
10855
|
-
"fieldName": "legend"
|
|
10856
|
-
}
|
|
10857
|
-
],
|
|
10858
|
-
"superclass": {
|
|
10859
|
-
"name": "BaseComponent",
|
|
10860
|
-
"module": "/src/lib/core"
|
|
10861
|
-
},
|
|
10862
|
-
"tagName": "forge-label",
|
|
10863
|
-
"summary": "The Forge Label component is used to associate a text label with a compatible Forge component.",
|
|
10864
|
-
"cssClasses": [
|
|
10865
|
-
{
|
|
10866
|
-
"name": "forge-label",
|
|
10867
|
-
"description": "Apply to the root element of the label to align the label and associated element horizontally."
|
|
10868
|
-
},
|
|
10869
|
-
{
|
|
10870
|
-
"name": "forge-label-block",
|
|
10871
|
-
"description": "Apply to the root element instead of `forge-label` to align the label and associated element vertically."
|
|
10872
|
-
},
|
|
10873
|
-
{
|
|
10874
|
-
"name": "forge-label-inline",
|
|
10875
|
-
"description": "Alias for `forge-label`."
|
|
10876
|
-
},
|
|
10877
|
-
{
|
|
10878
|
-
"name": "forge-label--large",
|
|
10879
|
-
"description": "Uses the large typography style typically applied to inset field labels."
|
|
10880
|
-
},
|
|
10881
|
-
{
|
|
10882
|
-
"name": "forge-support-text",
|
|
10883
|
-
"description": "Applies the support text typography style and a top margin."
|
|
10884
|
-
}
|
|
10885
|
-
],
|
|
10886
|
-
"customElement": true
|
|
10887
|
-
}
|
|
10888
|
-
],
|
|
10889
|
-
"exports": [
|
|
10890
|
-
{
|
|
10891
|
-
"kind": "js",
|
|
10892
|
-
"name": "LabelComponent",
|
|
10893
|
-
"declaration": {
|
|
10894
|
-
"name": "LabelComponent",
|
|
10895
|
-
"module": "src/lib/label/label.ts"
|
|
10896
|
-
}
|
|
10897
|
-
}
|
|
10898
|
-
]
|
|
10899
|
-
},
|
|
10900
10836
|
{
|
|
10901
10837
|
"kind": "javascript-module",
|
|
10902
10838
|
"path": "src/lib/keyboard-shortcut/keyboard-shortcut.ts",
|
|
@@ -11120,162 +11056,200 @@
|
|
|
11120
11056
|
},
|
|
11121
11057
|
{
|
|
11122
11058
|
"kind": "javascript-module",
|
|
11123
|
-
"path": "src/lib/
|
|
11059
|
+
"path": "src/lib/label/label-aware.ts",
|
|
11060
|
+
"declarations": [
|
|
11061
|
+
{
|
|
11062
|
+
"kind": "function",
|
|
11063
|
+
"name": "isLabelAware",
|
|
11064
|
+
"return": {
|
|
11065
|
+
"type": {
|
|
11066
|
+
"text": ""
|
|
11067
|
+
}
|
|
11068
|
+
},
|
|
11069
|
+
"parameters": [
|
|
11070
|
+
{
|
|
11071
|
+
"name": "obj",
|
|
11072
|
+
"type": {
|
|
11073
|
+
"text": "any"
|
|
11074
|
+
},
|
|
11075
|
+
"description": "The object to check."
|
|
11076
|
+
}
|
|
11077
|
+
],
|
|
11078
|
+
"description": "Determines if an object is label aware."
|
|
11079
|
+
}
|
|
11080
|
+
],
|
|
11081
|
+
"exports": [
|
|
11082
|
+
{
|
|
11083
|
+
"kind": "js",
|
|
11084
|
+
"name": "isLabelAware",
|
|
11085
|
+
"declaration": {
|
|
11086
|
+
"name": "isLabelAware",
|
|
11087
|
+
"module": "src/lib/label/label-aware.ts"
|
|
11088
|
+
}
|
|
11089
|
+
}
|
|
11090
|
+
]
|
|
11091
|
+
},
|
|
11092
|
+
{
|
|
11093
|
+
"kind": "javascript-module",
|
|
11094
|
+
"path": "src/lib/label/label.ts",
|
|
11124
11095
|
"declarations": [
|
|
11125
11096
|
{
|
|
11126
11097
|
"kind": "class",
|
|
11127
11098
|
"description": "",
|
|
11128
|
-
"name": "
|
|
11129
|
-
"
|
|
11130
|
-
{
|
|
11131
|
-
"description": "The height of the element.",
|
|
11132
|
-
"name": "--forge-linear-progress-height"
|
|
11133
|
-
},
|
|
11134
|
-
{
|
|
11135
|
-
"description": "The background color of the indicator.",
|
|
11136
|
-
"name": "--forge-linear-progress-track-color"
|
|
11137
|
-
},
|
|
11138
|
-
{
|
|
11139
|
-
"description": "The shape of the indicator.",
|
|
11140
|
-
"name": "--forge-linear-progress-track-shape"
|
|
11141
|
-
},
|
|
11142
|
-
{
|
|
11143
|
-
"description": "The color of the indicator.",
|
|
11144
|
-
"name": "--forge-linear-progress-indicator-color"
|
|
11145
|
-
},
|
|
11146
|
-
{
|
|
11147
|
-
"description": "The height of the indicator only.",
|
|
11148
|
-
"name": "--forge-linear-progress-indicator-height"
|
|
11149
|
-
},
|
|
11150
|
-
{
|
|
11151
|
-
"description": "The duration of the determinate animation.",
|
|
11152
|
-
"name": "--forge-linear-progress-determinate-duration"
|
|
11153
|
-
},
|
|
11154
|
-
{
|
|
11155
|
-
"description": "The duration of the indeterminate animation.",
|
|
11156
|
-
"name": "--forge-linear-progress-indeterminate-duration"
|
|
11157
|
-
},
|
|
11099
|
+
"name": "LabelComponent",
|
|
11100
|
+
"members": [
|
|
11158
11101
|
{
|
|
11159
|
-
"
|
|
11160
|
-
"name": "
|
|
11102
|
+
"kind": "field",
|
|
11103
|
+
"name": "for",
|
|
11104
|
+
"type": {
|
|
11105
|
+
"text": "string | null | undefined"
|
|
11106
|
+
},
|
|
11107
|
+
"privacy": "public",
|
|
11108
|
+
"description": "The id of the associated element.",
|
|
11109
|
+
"default": "null",
|
|
11110
|
+
"attribute": "for"
|
|
11161
11111
|
},
|
|
11162
11112
|
{
|
|
11163
|
-
"
|
|
11164
|
-
"name": "
|
|
11113
|
+
"kind": "field",
|
|
11114
|
+
"name": "forElement",
|
|
11115
|
+
"type": {
|
|
11116
|
+
"text": "HTMLElement | null | undefined"
|
|
11117
|
+
},
|
|
11118
|
+
"privacy": "public",
|
|
11119
|
+
"description": "The associated element.",
|
|
11120
|
+
"default": "null"
|
|
11165
11121
|
},
|
|
11166
|
-
{
|
|
11167
|
-
"description": "The easing function to use for the theme transition.",
|
|
11168
|
-
"name": "--forge-linear-progress-theme-transition-timing"
|
|
11169
|
-
}
|
|
11170
|
-
],
|
|
11171
|
-
"cssParts": [
|
|
11172
|
-
{
|
|
11173
|
-
"description": "Styles the progress bar container element",
|
|
11174
|
-
"name": "progressbar"
|
|
11175
|
-
}
|
|
11176
|
-
],
|
|
11177
|
-
"members": [
|
|
11178
11122
|
{
|
|
11179
11123
|
"kind": "field",
|
|
11180
|
-
"name": "
|
|
11124
|
+
"name": "clickTarget",
|
|
11181
11125
|
"type": {
|
|
11182
|
-
"text": "
|
|
11126
|
+
"text": "HTMLElement | null | undefined"
|
|
11183
11127
|
},
|
|
11184
11128
|
"privacy": "public",
|
|
11185
|
-
"description": "
|
|
11186
|
-
"default": "
|
|
11129
|
+
"description": "The element that a click should be simulated on. If not defined clicks act on the associated element.",
|
|
11130
|
+
"default": "null"
|
|
11187
11131
|
},
|
|
11188
11132
|
{
|
|
11189
11133
|
"kind": "field",
|
|
11190
|
-
"name": "
|
|
11134
|
+
"name": "dynamic",
|
|
11191
11135
|
"type": {
|
|
11192
|
-
"text": "
|
|
11136
|
+
"text": "boolean"
|
|
11193
11137
|
},
|
|
11194
11138
|
"privacy": "public",
|
|
11195
|
-
"description": "
|
|
11196
|
-
"default": "
|
|
11139
|
+
"description": "Propagates changes in the label's text content to the associated element.",
|
|
11140
|
+
"default": "false",
|
|
11141
|
+
"attribute": "dynamic"
|
|
11197
11142
|
},
|
|
11198
11143
|
{
|
|
11199
11144
|
"kind": "field",
|
|
11200
|
-
"name": "
|
|
11145
|
+
"name": "nonInteractive",
|
|
11201
11146
|
"type": {
|
|
11202
|
-
"text": "
|
|
11147
|
+
"text": "boolean"
|
|
11203
11148
|
},
|
|
11204
11149
|
"privacy": "public",
|
|
11205
|
-
"description": "
|
|
11206
|
-
"default": "
|
|
11150
|
+
"description": "Removes click handling from the label.",
|
|
11151
|
+
"default": "false",
|
|
11152
|
+
"attribute": "non-interactive"
|
|
11207
11153
|
},
|
|
11208
11154
|
{
|
|
11209
11155
|
"kind": "field",
|
|
11210
|
-
"name": "
|
|
11156
|
+
"name": "legend",
|
|
11211
11157
|
"type": {
|
|
11212
|
-
"text": "
|
|
11158
|
+
"text": "boolean"
|
|
11213
11159
|
},
|
|
11214
11160
|
"privacy": "public",
|
|
11215
|
-
"description": "
|
|
11216
|
-
"default": "
|
|
11161
|
+
"description": "Whether or not the label should be associated with an ancestor element.",
|
|
11162
|
+
"default": "false",
|
|
11163
|
+
"attribute": "legend"
|
|
11164
|
+
},
|
|
11165
|
+
{
|
|
11166
|
+
"kind": "method",
|
|
11167
|
+
"name": "update",
|
|
11168
|
+
"privacy": "public",
|
|
11169
|
+
"return": {
|
|
11170
|
+
"type": {
|
|
11171
|
+
"text": "void"
|
|
11172
|
+
}
|
|
11173
|
+
},
|
|
11174
|
+
"description": "Updates the targeted element with the label's current text content."
|
|
11217
11175
|
}
|
|
11218
11176
|
],
|
|
11219
11177
|
"attributes": [
|
|
11220
11178
|
{
|
|
11179
|
+
"name": "for",
|
|
11221
11180
|
"type": {
|
|
11222
|
-
"text": "
|
|
11181
|
+
"text": "string | null | undefined"
|
|
11223
11182
|
},
|
|
11224
|
-
"description": "
|
|
11225
|
-
"
|
|
11226
|
-
"
|
|
11183
|
+
"description": "The id of the associated element.",
|
|
11184
|
+
"default": "null",
|
|
11185
|
+
"fieldName": "for"
|
|
11227
11186
|
},
|
|
11228
11187
|
{
|
|
11188
|
+
"name": "dynamic",
|
|
11229
11189
|
"type": {
|
|
11230
|
-
"text": "
|
|
11190
|
+
"text": "boolean"
|
|
11231
11191
|
},
|
|
11232
|
-
"description": "
|
|
11233
|
-
"
|
|
11234
|
-
"
|
|
11192
|
+
"description": "Propagates changes in the label's text content to the associated element.",
|
|
11193
|
+
"default": "false",
|
|
11194
|
+
"fieldName": "dynamic"
|
|
11235
11195
|
},
|
|
11236
11196
|
{
|
|
11197
|
+
"name": "non-interactive",
|
|
11237
11198
|
"type": {
|
|
11238
|
-
"text": "
|
|
11199
|
+
"text": "boolean"
|
|
11239
11200
|
},
|
|
11240
|
-
"description": "
|
|
11241
|
-
"
|
|
11242
|
-
"
|
|
11201
|
+
"description": "Removes click handling from the label.",
|
|
11202
|
+
"default": "false",
|
|
11203
|
+
"fieldName": "nonInteractive"
|
|
11243
11204
|
},
|
|
11244
11205
|
{
|
|
11206
|
+
"name": "legend",
|
|
11245
11207
|
"type": {
|
|
11246
|
-
"text": "
|
|
11208
|
+
"text": "boolean"
|
|
11247
11209
|
},
|
|
11248
|
-
"description": "
|
|
11249
|
-
"
|
|
11250
|
-
"
|
|
11210
|
+
"description": "Whether or not the label should be associated with an ancestor element.",
|
|
11211
|
+
"default": "false",
|
|
11212
|
+
"fieldName": "legend"
|
|
11251
11213
|
}
|
|
11252
11214
|
],
|
|
11253
|
-
"
|
|
11215
|
+
"superclass": {
|
|
11216
|
+
"name": "BaseComponent",
|
|
11217
|
+
"module": "/src/lib/core"
|
|
11218
|
+
},
|
|
11219
|
+
"tagName": "forge-label",
|
|
11220
|
+
"summary": "The Forge Label component is used to associate a text label with a compatible Forge component.",
|
|
11221
|
+
"cssClasses": [
|
|
11254
11222
|
{
|
|
11255
|
-
"name": "
|
|
11256
|
-
"
|
|
11223
|
+
"name": "forge-label",
|
|
11224
|
+
"description": "Apply to the root element of the label to align the label and associated element horizontally."
|
|
11257
11225
|
},
|
|
11258
11226
|
{
|
|
11259
|
-
"name": "
|
|
11260
|
-
"
|
|
11227
|
+
"name": "forge-label-block",
|
|
11228
|
+
"description": "Apply to the root element instead of `forge-label` to align the label and associated element vertically."
|
|
11229
|
+
},
|
|
11230
|
+
{
|
|
11231
|
+
"name": "forge-label-inline",
|
|
11232
|
+
"description": "Alias for `forge-label`."
|
|
11233
|
+
},
|
|
11234
|
+
{
|
|
11235
|
+
"name": "forge-label--large",
|
|
11236
|
+
"description": "Uses the large typography style typically applied to inset field labels."
|
|
11237
|
+
},
|
|
11238
|
+
{
|
|
11239
|
+
"name": "forge-support-text",
|
|
11240
|
+
"description": "Applies the support text typography style and a top margin."
|
|
11261
11241
|
}
|
|
11262
11242
|
],
|
|
11263
|
-
"superclass": {
|
|
11264
|
-
"name": "BaseComponent",
|
|
11265
|
-
"module": "/src/lib/core/base/base-component"
|
|
11266
|
-
},
|
|
11267
|
-
"tagName": "forge-linear-progress",
|
|
11268
|
-
"summary": "Linear progress indicators display progress by animating along a linear track in a horizontal direction.",
|
|
11269
11243
|
"customElement": true
|
|
11270
11244
|
}
|
|
11271
11245
|
],
|
|
11272
11246
|
"exports": [
|
|
11273
11247
|
{
|
|
11274
11248
|
"kind": "js",
|
|
11275
|
-
"name": "
|
|
11249
|
+
"name": "LabelComponent",
|
|
11276
11250
|
"declaration": {
|
|
11277
|
-
"name": "
|
|
11278
|
-
"module": "src/lib/
|
|
11251
|
+
"name": "LabelComponent",
|
|
11252
|
+
"module": "src/lib/label/label.ts"
|
|
11279
11253
|
}
|
|
11280
11254
|
}
|
|
11281
11255
|
]
|
|
@@ -11504,6 +11478,168 @@
|
|
|
11504
11478
|
}
|
|
11505
11479
|
]
|
|
11506
11480
|
},
|
|
11481
|
+
{
|
|
11482
|
+
"kind": "javascript-module",
|
|
11483
|
+
"path": "src/lib/linear-progress/linear-progress.ts",
|
|
11484
|
+
"declarations": [
|
|
11485
|
+
{
|
|
11486
|
+
"kind": "class",
|
|
11487
|
+
"description": "",
|
|
11488
|
+
"name": "LinearProgressComponent",
|
|
11489
|
+
"cssProperties": [
|
|
11490
|
+
{
|
|
11491
|
+
"description": "The height of the element.",
|
|
11492
|
+
"name": "--forge-linear-progress-height"
|
|
11493
|
+
},
|
|
11494
|
+
{
|
|
11495
|
+
"description": "The background color of the indicator.",
|
|
11496
|
+
"name": "--forge-linear-progress-track-color"
|
|
11497
|
+
},
|
|
11498
|
+
{
|
|
11499
|
+
"description": "The shape of the indicator.",
|
|
11500
|
+
"name": "--forge-linear-progress-track-shape"
|
|
11501
|
+
},
|
|
11502
|
+
{
|
|
11503
|
+
"description": "The color of the indicator.",
|
|
11504
|
+
"name": "--forge-linear-progress-indicator-color"
|
|
11505
|
+
},
|
|
11506
|
+
{
|
|
11507
|
+
"description": "The height of the indicator only.",
|
|
11508
|
+
"name": "--forge-linear-progress-indicator-height"
|
|
11509
|
+
},
|
|
11510
|
+
{
|
|
11511
|
+
"description": "The duration of the determinate animation.",
|
|
11512
|
+
"name": "--forge-linear-progress-determinate-duration"
|
|
11513
|
+
},
|
|
11514
|
+
{
|
|
11515
|
+
"description": "The duration of the indeterminate animation.",
|
|
11516
|
+
"name": "--forge-linear-progress-indeterminate-duration"
|
|
11517
|
+
},
|
|
11518
|
+
{
|
|
11519
|
+
"description": "The easing function to use for the determinate animation.",
|
|
11520
|
+
"name": "--forge-linear-progress-determinate-easing"
|
|
11521
|
+
},
|
|
11522
|
+
{
|
|
11523
|
+
"description": "The duration of the theme transition.",
|
|
11524
|
+
"name": "--forge-linear-progress-theme-transition-duration"
|
|
11525
|
+
},
|
|
11526
|
+
{
|
|
11527
|
+
"description": "The easing function to use for the theme transition.",
|
|
11528
|
+
"name": "--forge-linear-progress-theme-transition-timing"
|
|
11529
|
+
}
|
|
11530
|
+
],
|
|
11531
|
+
"cssParts": [
|
|
11532
|
+
{
|
|
11533
|
+
"description": "Styles the progress bar container element",
|
|
11534
|
+
"name": "progressbar"
|
|
11535
|
+
}
|
|
11536
|
+
],
|
|
11537
|
+
"members": [
|
|
11538
|
+
{
|
|
11539
|
+
"kind": "field",
|
|
11540
|
+
"name": "determinate",
|
|
11541
|
+
"type": {
|
|
11542
|
+
"text": "boolean"
|
|
11543
|
+
},
|
|
11544
|
+
"privacy": "public",
|
|
11545
|
+
"description": "Controls the determinate state.",
|
|
11546
|
+
"default": "false"
|
|
11547
|
+
},
|
|
11548
|
+
{
|
|
11549
|
+
"kind": "field",
|
|
11550
|
+
"name": "progress",
|
|
11551
|
+
"type": {
|
|
11552
|
+
"text": "number"
|
|
11553
|
+
},
|
|
11554
|
+
"privacy": "public",
|
|
11555
|
+
"description": "Controls the progress while in a determinate state. Accepts values from `0` to `1`.",
|
|
11556
|
+
"default": "0"
|
|
11557
|
+
},
|
|
11558
|
+
{
|
|
11559
|
+
"kind": "field",
|
|
11560
|
+
"name": "buffer",
|
|
11561
|
+
"type": {
|
|
11562
|
+
"text": "number"
|
|
11563
|
+
},
|
|
11564
|
+
"privacy": "public",
|
|
11565
|
+
"description": "Controls the buffer progress while in a determinate state. Accepts values from `0` to `1`.",
|
|
11566
|
+
"default": "1"
|
|
11567
|
+
},
|
|
11568
|
+
{
|
|
11569
|
+
"kind": "field",
|
|
11570
|
+
"name": "theme",
|
|
11571
|
+
"type": {
|
|
11572
|
+
"text": "string"
|
|
11573
|
+
},
|
|
11574
|
+
"privacy": "public",
|
|
11575
|
+
"description": "Sets the theme.",
|
|
11576
|
+
"default": "primary"
|
|
11577
|
+
}
|
|
11578
|
+
],
|
|
11579
|
+
"attributes": [
|
|
11580
|
+
{
|
|
11581
|
+
"type": {
|
|
11582
|
+
"text": "boolean"
|
|
11583
|
+
},
|
|
11584
|
+
"description": "Controls the determinate state.",
|
|
11585
|
+
"name": "determinate",
|
|
11586
|
+
"default": "false"
|
|
11587
|
+
},
|
|
11588
|
+
{
|
|
11589
|
+
"type": {
|
|
11590
|
+
"text": "number"
|
|
11591
|
+
},
|
|
11592
|
+
"description": "Controls the progress while in a determinate state. Accepts values from `0` to `1`.",
|
|
11593
|
+
"name": "progress",
|
|
11594
|
+
"default": "0"
|
|
11595
|
+
},
|
|
11596
|
+
{
|
|
11597
|
+
"type": {
|
|
11598
|
+
"text": "number"
|
|
11599
|
+
},
|
|
11600
|
+
"description": "Controls the buffer progress while in a determinate state. Accepts values from `0` to `1`.",
|
|
11601
|
+
"name": "buffer",
|
|
11602
|
+
"default": "1"
|
|
11603
|
+
},
|
|
11604
|
+
{
|
|
11605
|
+
"type": {
|
|
11606
|
+
"text": "string"
|
|
11607
|
+
},
|
|
11608
|
+
"description": "Sets the theme.",
|
|
11609
|
+
"name": "theme",
|
|
11610
|
+
"default": "primary"
|
|
11611
|
+
}
|
|
11612
|
+
],
|
|
11613
|
+
"mixins": [
|
|
11614
|
+
{
|
|
11615
|
+
"name": "WithElementInternals",
|
|
11616
|
+
"module": "/src/lib/core/mixins/internals/with-element-internals"
|
|
11617
|
+
},
|
|
11618
|
+
{
|
|
11619
|
+
"name": "WithDefaultAria",
|
|
11620
|
+
"module": "/src/lib/core/mixins/internals/with-default-aria"
|
|
11621
|
+
}
|
|
11622
|
+
],
|
|
11623
|
+
"superclass": {
|
|
11624
|
+
"name": "BaseComponent",
|
|
11625
|
+
"module": "/src/lib/core/base/base-component"
|
|
11626
|
+
},
|
|
11627
|
+
"tagName": "forge-linear-progress",
|
|
11628
|
+
"summary": "Linear progress indicators display progress by animating along a linear track in a horizontal direction.",
|
|
11629
|
+
"customElement": true
|
|
11630
|
+
}
|
|
11631
|
+
],
|
|
11632
|
+
"exports": [
|
|
11633
|
+
{
|
|
11634
|
+
"kind": "js",
|
|
11635
|
+
"name": "LinearProgressComponent",
|
|
11636
|
+
"declaration": {
|
|
11637
|
+
"name": "LinearProgressComponent",
|
|
11638
|
+
"module": "src/lib/linear-progress/linear-progress.ts"
|
|
11639
|
+
}
|
|
11640
|
+
}
|
|
11641
|
+
]
|
|
11642
|
+
},
|
|
11507
11643
|
{
|
|
11508
11644
|
"kind": "javascript-module",
|
|
11509
11645
|
"path": "src/lib/list-dropdown/list-dropdown-aware.ts",
|
|
@@ -11606,6 +11742,59 @@
|
|
|
11606
11742
|
"description": "Gets/sets whether the options will wrap their text or not.\nThis only applies if `constrainPopupWidth` is `true`, if there is an explicit width set via CSS.",
|
|
11607
11743
|
"default": "false",
|
|
11608
11744
|
"attribute": "wrap-option-text"
|
|
11745
|
+
},
|
|
11746
|
+
{
|
|
11747
|
+
"kind": "field",
|
|
11748
|
+
"name": "popoverPlacement",
|
|
11749
|
+
"type": {
|
|
11750
|
+
"text": "OverlayPlacement"
|
|
11751
|
+
},
|
|
11752
|
+
"privacy": "public",
|
|
11753
|
+
"description": "Gets/sets the placement of the popover.",
|
|
11754
|
+
"default": "'bottom'",
|
|
11755
|
+
"attribute": "popover-placement"
|
|
11756
|
+
},
|
|
11757
|
+
{
|
|
11758
|
+
"kind": "field",
|
|
11759
|
+
"name": "popoverOffset",
|
|
11760
|
+
"type": {
|
|
11761
|
+
"text": "IOverlayOffset"
|
|
11762
|
+
},
|
|
11763
|
+
"privacy": "public",
|
|
11764
|
+
"description": "Gets/sets the offset of the popover.",
|
|
11765
|
+
"attribute": "popover-offset"
|
|
11766
|
+
},
|
|
11767
|
+
{
|
|
11768
|
+
"kind": "field",
|
|
11769
|
+
"name": "popoverFlip",
|
|
11770
|
+
"type": {
|
|
11771
|
+
"text": "OverlayFlipState"
|
|
11772
|
+
},
|
|
11773
|
+
"privacy": "public",
|
|
11774
|
+
"description": "Gets/sets the flip state of the popover.",
|
|
11775
|
+
"default": "'auto'",
|
|
11776
|
+
"attribute": "popover-flip"
|
|
11777
|
+
},
|
|
11778
|
+
{
|
|
11779
|
+
"kind": "field",
|
|
11780
|
+
"name": "popoverShift",
|
|
11781
|
+
"type": {
|
|
11782
|
+
"text": "OverlayShiftState"
|
|
11783
|
+
},
|
|
11784
|
+
"privacy": "public",
|
|
11785
|
+
"description": "Gets/sets whether the popover should shift to fit within the viewport.",
|
|
11786
|
+
"default": "'auto'",
|
|
11787
|
+
"attribute": "popover-shift"
|
|
11788
|
+
},
|
|
11789
|
+
{
|
|
11790
|
+
"kind": "field",
|
|
11791
|
+
"name": "popoverFallbackPlacements",
|
|
11792
|
+
"type": {
|
|
11793
|
+
"text": "PositionPlacement[] | null"
|
|
11794
|
+
},
|
|
11795
|
+
"privacy": "public",
|
|
11796
|
+
"description": "Gets/sets the fallback placements of the popover.",
|
|
11797
|
+
"attribute": "popover-fallback-placements"
|
|
11609
11798
|
}
|
|
11610
11799
|
],
|
|
11611
11800
|
"attributes": [
|
|
@@ -11670,6 +11859,49 @@
|
|
|
11670
11859
|
"description": "Gets/sets whether the options will wrap their text or not.\nThis only applies if `constrainPopupWidth` is `true`, if there is an explicit width set via CSS.",
|
|
11671
11860
|
"default": "false",
|
|
11672
11861
|
"fieldName": "wrapOptionText"
|
|
11862
|
+
},
|
|
11863
|
+
{
|
|
11864
|
+
"name": "popover-placement",
|
|
11865
|
+
"type": {
|
|
11866
|
+
"text": "OverlayPlacement"
|
|
11867
|
+
},
|
|
11868
|
+
"description": "Gets/sets the placement of the popover.",
|
|
11869
|
+
"default": "'bottom'",
|
|
11870
|
+
"fieldName": "popoverPlacement"
|
|
11871
|
+
},
|
|
11872
|
+
{
|
|
11873
|
+
"name": "popover-offset",
|
|
11874
|
+
"type": {
|
|
11875
|
+
"text": "IOverlayOffset"
|
|
11876
|
+
},
|
|
11877
|
+
"description": "Gets/sets the offset of the popover.",
|
|
11878
|
+
"fieldName": "popoverOffset"
|
|
11879
|
+
},
|
|
11880
|
+
{
|
|
11881
|
+
"name": "popover-flip",
|
|
11882
|
+
"type": {
|
|
11883
|
+
"text": "OverlayFlipState"
|
|
11884
|
+
},
|
|
11885
|
+
"description": "Gets/sets the flip state of the popover.",
|
|
11886
|
+
"default": "'auto'",
|
|
11887
|
+
"fieldName": "popoverFlip"
|
|
11888
|
+
},
|
|
11889
|
+
{
|
|
11890
|
+
"name": "popover-shift",
|
|
11891
|
+
"type": {
|
|
11892
|
+
"text": "OverlayShiftState"
|
|
11893
|
+
},
|
|
11894
|
+
"description": "Gets/sets whether the popover should shift to fit within the viewport.",
|
|
11895
|
+
"default": "'auto'",
|
|
11896
|
+
"fieldName": "popoverShift"
|
|
11897
|
+
},
|
|
11898
|
+
{
|
|
11899
|
+
"name": "popover-fallback-placements",
|
|
11900
|
+
"type": {
|
|
11901
|
+
"text": "PositionPlacement[] | null"
|
|
11902
|
+
},
|
|
11903
|
+
"description": "Gets/sets the fallback placements of the popover.",
|
|
11904
|
+
"fieldName": "popoverFallbackPlacements"
|
|
11673
11905
|
}
|
|
11674
11906
|
],
|
|
11675
11907
|
"superclass": {
|
|
@@ -12309,6 +12541,79 @@
|
|
|
12309
12541
|
"name": "ListDropdownAware",
|
|
12310
12542
|
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
12311
12543
|
}
|
|
12544
|
+
},
|
|
12545
|
+
{
|
|
12546
|
+
"kind": "field",
|
|
12547
|
+
"name": "popoverPlacement",
|
|
12548
|
+
"type": {
|
|
12549
|
+
"text": "OverlayPlacement"
|
|
12550
|
+
},
|
|
12551
|
+
"privacy": "public",
|
|
12552
|
+
"description": "Gets/sets the placement of the popover.",
|
|
12553
|
+
"default": "'bottom'",
|
|
12554
|
+
"attribute": "popover-placement",
|
|
12555
|
+
"inheritedFrom": {
|
|
12556
|
+
"name": "ListDropdownAware",
|
|
12557
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
12558
|
+
}
|
|
12559
|
+
},
|
|
12560
|
+
{
|
|
12561
|
+
"kind": "field",
|
|
12562
|
+
"name": "popoverOffset",
|
|
12563
|
+
"type": {
|
|
12564
|
+
"text": "IOverlayOffset"
|
|
12565
|
+
},
|
|
12566
|
+
"privacy": "public",
|
|
12567
|
+
"description": "Gets/sets the offset of the popover.",
|
|
12568
|
+
"attribute": "popover-offset",
|
|
12569
|
+
"inheritedFrom": {
|
|
12570
|
+
"name": "ListDropdownAware",
|
|
12571
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
12572
|
+
}
|
|
12573
|
+
},
|
|
12574
|
+
{
|
|
12575
|
+
"kind": "field",
|
|
12576
|
+
"name": "popoverFlip",
|
|
12577
|
+
"type": {
|
|
12578
|
+
"text": "OverlayFlipState"
|
|
12579
|
+
},
|
|
12580
|
+
"privacy": "public",
|
|
12581
|
+
"description": "Gets/sets the flip state of the popover.",
|
|
12582
|
+
"default": "'auto'",
|
|
12583
|
+
"attribute": "popover-flip",
|
|
12584
|
+
"inheritedFrom": {
|
|
12585
|
+
"name": "ListDropdownAware",
|
|
12586
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
12587
|
+
}
|
|
12588
|
+
},
|
|
12589
|
+
{
|
|
12590
|
+
"kind": "field",
|
|
12591
|
+
"name": "popoverShift",
|
|
12592
|
+
"type": {
|
|
12593
|
+
"text": "OverlayShiftState"
|
|
12594
|
+
},
|
|
12595
|
+
"privacy": "public",
|
|
12596
|
+
"description": "Gets/sets whether the popover should shift to fit within the viewport.",
|
|
12597
|
+
"default": "'auto'",
|
|
12598
|
+
"attribute": "popover-shift",
|
|
12599
|
+
"inheritedFrom": {
|
|
12600
|
+
"name": "ListDropdownAware",
|
|
12601
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
12602
|
+
}
|
|
12603
|
+
},
|
|
12604
|
+
{
|
|
12605
|
+
"kind": "field",
|
|
12606
|
+
"name": "popoverFallbackPlacements",
|
|
12607
|
+
"type": {
|
|
12608
|
+
"text": "PositionPlacement[] | null"
|
|
12609
|
+
},
|
|
12610
|
+
"privacy": "public",
|
|
12611
|
+
"description": "Gets/sets the fallback placements of the popover.",
|
|
12612
|
+
"attribute": "popover-fallback-placements",
|
|
12613
|
+
"inheritedFrom": {
|
|
12614
|
+
"name": "ListDropdownAware",
|
|
12615
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
12616
|
+
}
|
|
12312
12617
|
}
|
|
12313
12618
|
],
|
|
12314
12619
|
"attributes": [
|
|
@@ -12471,6 +12776,69 @@
|
|
|
12471
12776
|
"name": "ListDropdownAware",
|
|
12472
12777
|
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
12473
12778
|
}
|
|
12779
|
+
},
|
|
12780
|
+
{
|
|
12781
|
+
"name": "popover-placement",
|
|
12782
|
+
"type": {
|
|
12783
|
+
"text": "OverlayPlacement"
|
|
12784
|
+
},
|
|
12785
|
+
"description": "Gets/sets the placement of the popover.",
|
|
12786
|
+
"default": "'bottom'",
|
|
12787
|
+
"fieldName": "popoverPlacement",
|
|
12788
|
+
"inheritedFrom": {
|
|
12789
|
+
"name": "ListDropdownAware",
|
|
12790
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
12791
|
+
}
|
|
12792
|
+
},
|
|
12793
|
+
{
|
|
12794
|
+
"name": "popover-offset",
|
|
12795
|
+
"type": {
|
|
12796
|
+
"text": "IOverlayOffset"
|
|
12797
|
+
},
|
|
12798
|
+
"description": "Gets/sets the offset of the popover.",
|
|
12799
|
+
"fieldName": "popoverOffset",
|
|
12800
|
+
"inheritedFrom": {
|
|
12801
|
+
"name": "ListDropdownAware",
|
|
12802
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
12803
|
+
}
|
|
12804
|
+
},
|
|
12805
|
+
{
|
|
12806
|
+
"name": "popover-flip",
|
|
12807
|
+
"type": {
|
|
12808
|
+
"text": "OverlayFlipState"
|
|
12809
|
+
},
|
|
12810
|
+
"description": "Gets/sets the flip state of the popover.",
|
|
12811
|
+
"default": "'auto'",
|
|
12812
|
+
"fieldName": "popoverFlip",
|
|
12813
|
+
"inheritedFrom": {
|
|
12814
|
+
"name": "ListDropdownAware",
|
|
12815
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
12816
|
+
}
|
|
12817
|
+
},
|
|
12818
|
+
{
|
|
12819
|
+
"name": "popover-shift",
|
|
12820
|
+
"type": {
|
|
12821
|
+
"text": "OverlayShiftState"
|
|
12822
|
+
},
|
|
12823
|
+
"description": "Gets/sets whether the popover should shift to fit within the viewport.",
|
|
12824
|
+
"default": "'auto'",
|
|
12825
|
+
"fieldName": "popoverShift",
|
|
12826
|
+
"inheritedFrom": {
|
|
12827
|
+
"name": "ListDropdownAware",
|
|
12828
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
12829
|
+
}
|
|
12830
|
+
},
|
|
12831
|
+
{
|
|
12832
|
+
"name": "popover-fallback-placements",
|
|
12833
|
+
"type": {
|
|
12834
|
+
"text": "PositionPlacement[] | null"
|
|
12835
|
+
},
|
|
12836
|
+
"description": "Gets/sets the fallback placements of the popover.",
|
|
12837
|
+
"fieldName": "popoverFallbackPlacements",
|
|
12838
|
+
"inheritedFrom": {
|
|
12839
|
+
"name": "ListDropdownAware",
|
|
12840
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
12841
|
+
}
|
|
12474
12842
|
}
|
|
12475
12843
|
],
|
|
12476
12844
|
"superclass": {
|
|
@@ -13933,11 +14301,11 @@
|
|
|
13933
14301
|
"kind": "field",
|
|
13934
14302
|
"name": "shift",
|
|
13935
14303
|
"type": {
|
|
13936
|
-
"text": "
|
|
14304
|
+
"text": "OverlayShiftState"
|
|
13937
14305
|
},
|
|
13938
14306
|
"privacy": "public",
|
|
13939
14307
|
"description": "Whether the overlay should shift to fit within the viewport.",
|
|
13940
|
-
"default": "
|
|
14308
|
+
"default": "\"auto\"",
|
|
13941
14309
|
"inheritedFrom": {
|
|
13942
14310
|
"name": "OverlayAware",
|
|
13943
14311
|
"module": "src/lib/overlay/base/overlay-aware.ts"
|
|
@@ -14190,11 +14558,11 @@
|
|
|
14190
14558
|
},
|
|
14191
14559
|
{
|
|
14192
14560
|
"type": {
|
|
14193
|
-
"text": "
|
|
14561
|
+
"text": "OverlayShiftState"
|
|
14194
14562
|
},
|
|
14195
14563
|
"description": "Whether the overlay should shift to fit within the viewport.",
|
|
14196
14564
|
"name": "shift",
|
|
14197
|
-
"default": "
|
|
14565
|
+
"default": "\"auto\"",
|
|
14198
14566
|
"inheritedFrom": {
|
|
14199
14567
|
"name": "OverlayAware",
|
|
14200
14568
|
"module": "src/lib/overlay/base/overlay-aware.ts"
|
|
@@ -20509,6 +20877,14 @@
|
|
|
20509
20877
|
"description": "The text color of the app bar.",
|
|
20510
20878
|
"name": "--forge-app-bar-foreground"
|
|
20511
20879
|
},
|
|
20880
|
+
{
|
|
20881
|
+
"description": "The text color of the app bar when using the **scoped theme mode**.",
|
|
20882
|
+
"name": "--forge-app-bar-theme-foreground"
|
|
20883
|
+
},
|
|
20884
|
+
{
|
|
20885
|
+
"description": "The muted text color of the app bar when using the **scoped theme mode**.",
|
|
20886
|
+
"name": "--forge-app-bar-theme-foreground-muted"
|
|
20887
|
+
},
|
|
20512
20888
|
{
|
|
20513
20889
|
"description": "The `z-index` of the app bar.",
|
|
20514
20890
|
"name": "--forge-app-bar-z-index"
|
|
@@ -20624,6 +21000,16 @@
|
|
|
20624
21000
|
},
|
|
20625
21001
|
"privacy": "public",
|
|
20626
21002
|
"description": "The `<a>` target of the logo + title area link when `href` is set."
|
|
21003
|
+
},
|
|
21004
|
+
{
|
|
21005
|
+
"kind": "field",
|
|
21006
|
+
"name": "themeMode",
|
|
21007
|
+
"type": {
|
|
21008
|
+
"text": "AppBarThemeMode"
|
|
21009
|
+
},
|
|
21010
|
+
"privacy": "public",
|
|
21011
|
+
"description": "Controls how the theme is applied. `inherit` will apply the global theme to the app bar and all child components. `scoped` will only apply the theme to the app bar and not set any global tokens.",
|
|
21012
|
+
"default": "\"inherit\""
|
|
20627
21013
|
}
|
|
20628
21014
|
],
|
|
20629
21015
|
"events": [
|
|
@@ -20671,6 +21057,14 @@
|
|
|
20671
21057
|
},
|
|
20672
21058
|
"description": "The `<a>` target of the logo + title area link when `href` is set.",
|
|
20673
21059
|
"name": "target"
|
|
21060
|
+
},
|
|
21061
|
+
{
|
|
21062
|
+
"type": {
|
|
21063
|
+
"text": "string"
|
|
21064
|
+
},
|
|
21065
|
+
"description": "Controls how the theme is applied. `inherit` will apply the global theme to the app bar and all child components. `scoped` will only apply the theme to the app bar and not set any global tokens.",
|
|
21066
|
+
"name": "theme-mode",
|
|
21067
|
+
"default": "\"inherit\""
|
|
20674
21068
|
}
|
|
20675
21069
|
],
|
|
20676
21070
|
"superclass": {
|
|
@@ -20683,6 +21077,14 @@
|
|
|
20683
21077
|
"name": "forge-app-bar",
|
|
20684
21078
|
"description": "The app bar container element _(required)_."
|
|
20685
21079
|
},
|
|
21080
|
+
{
|
|
21081
|
+
"name": "forge-app-bar--scoped",
|
|
21082
|
+
"description": "Sets the theme mode to scoped."
|
|
21083
|
+
},
|
|
21084
|
+
{
|
|
21085
|
+
"name": "forge-app-bar-theme",
|
|
21086
|
+
"description": "Applies the scoped theme from the app bar to the element."
|
|
21087
|
+
},
|
|
20686
21088
|
{
|
|
20687
21089
|
"name": "forge-app-bar--raised",
|
|
20688
21090
|
"description": "The app bar container element when raised."
|
|
@@ -23773,13 +24175,49 @@
|
|
|
23773
24175
|
},
|
|
23774
24176
|
{
|
|
23775
24177
|
"kind": "javascript-module",
|
|
23776
|
-
"path": "src/lib/deprecated/button/deprecated-button.ts",
|
|
24178
|
+
"path": "src/lib/deprecated/icon-button/deprecated-icon-button.ts",
|
|
23777
24179
|
"declarations": [
|
|
23778
24180
|
{
|
|
23779
24181
|
"kind": "class",
|
|
23780
24182
|
"description": "",
|
|
23781
|
-
"name": "
|
|
24183
|
+
"name": "DeprecatedIconButtonComponent",
|
|
23782
24184
|
"members": [
|
|
24185
|
+
{
|
|
24186
|
+
"kind": "field",
|
|
24187
|
+
"name": "_disabled",
|
|
24188
|
+
"type": {
|
|
24189
|
+
"text": "boolean"
|
|
24190
|
+
},
|
|
24191
|
+
"privacy": "private",
|
|
24192
|
+
"default": "false"
|
|
24193
|
+
},
|
|
24194
|
+
{
|
|
24195
|
+
"kind": "field",
|
|
24196
|
+
"name": "_toggle",
|
|
24197
|
+
"type": {
|
|
24198
|
+
"text": "boolean"
|
|
24199
|
+
},
|
|
24200
|
+
"privacy": "private",
|
|
24201
|
+
"default": "false"
|
|
24202
|
+
},
|
|
24203
|
+
{
|
|
24204
|
+
"kind": "field",
|
|
24205
|
+
"name": "_isOn",
|
|
24206
|
+
"type": {
|
|
24207
|
+
"text": "boolean"
|
|
24208
|
+
},
|
|
24209
|
+
"privacy": "private",
|
|
24210
|
+
"default": "false"
|
|
24211
|
+
},
|
|
24212
|
+
{
|
|
24213
|
+
"kind": "field",
|
|
24214
|
+
"name": "_densityLevel",
|
|
24215
|
+
"type": {
|
|
24216
|
+
"text": "number"
|
|
24217
|
+
},
|
|
24218
|
+
"privacy": "private",
|
|
24219
|
+
"default": "0"
|
|
24220
|
+
},
|
|
23783
24221
|
{
|
|
23784
24222
|
"kind": "field",
|
|
23785
24223
|
"name": "_slotElement",
|
|
@@ -23818,48 +24256,33 @@
|
|
|
23818
24256
|
},
|
|
23819
24257
|
{
|
|
23820
24258
|
"kind": "field",
|
|
23821
|
-
"name": "
|
|
23822
|
-
"type": {
|
|
23823
|
-
"text": "DeprecatedButtonType"
|
|
23824
|
-
},
|
|
24259
|
+
"name": "_slotChangeListener",
|
|
23825
24260
|
"privacy": "private"
|
|
23826
24261
|
},
|
|
23827
24262
|
{
|
|
23828
24263
|
"kind": "field",
|
|
23829
|
-
"name": "
|
|
24264
|
+
"name": "_buttonAttrMutationObserver",
|
|
23830
24265
|
"type": {
|
|
23831
|
-
"text": "
|
|
24266
|
+
"text": "MutationObserver | undefined"
|
|
23832
24267
|
},
|
|
23833
|
-
"privacy": "private"
|
|
23834
|
-
"default": "false"
|
|
24268
|
+
"privacy": "private"
|
|
23835
24269
|
},
|
|
23836
24270
|
{
|
|
23837
24271
|
"kind": "field",
|
|
23838
|
-
"name": "
|
|
24272
|
+
"name": "_keydownListener",
|
|
23839
24273
|
"type": {
|
|
23840
|
-
"text": "
|
|
24274
|
+
"text": "EventListener"
|
|
23841
24275
|
},
|
|
23842
|
-
"privacy": "private",
|
|
23843
|
-
"default": "false"
|
|
23844
|
-
},
|
|
23845
|
-
{
|
|
23846
|
-
"kind": "field",
|
|
23847
|
-
"name": "_buttonChangeListener",
|
|
23848
24276
|
"privacy": "private"
|
|
23849
24277
|
},
|
|
23850
24278
|
{
|
|
23851
24279
|
"kind": "field",
|
|
23852
|
-
"name": "
|
|
24280
|
+
"name": "_toggleClickListener",
|
|
23853
24281
|
"type": {
|
|
23854
|
-
"text": "
|
|
24282
|
+
"text": "EventListener"
|
|
23855
24283
|
},
|
|
23856
24284
|
"privacy": "private"
|
|
23857
24285
|
},
|
|
23858
|
-
{
|
|
23859
|
-
"kind": "field",
|
|
23860
|
-
"name": "_keydownListener",
|
|
23861
|
-
"privacy": "private"
|
|
23862
|
-
},
|
|
23863
24286
|
{
|
|
23864
24287
|
"kind": "method",
|
|
23865
24288
|
"name": "_onKeydown",
|
|
@@ -23880,7 +24303,17 @@
|
|
|
23880
24303
|
},
|
|
23881
24304
|
{
|
|
23882
24305
|
"kind": "method",
|
|
23883
|
-
"name": "
|
|
24306
|
+
"name": "_onSlotChange",
|
|
24307
|
+
"privacy": "private",
|
|
24308
|
+
"return": {
|
|
24309
|
+
"type": {
|
|
24310
|
+
"text": "void"
|
|
24311
|
+
}
|
|
24312
|
+
}
|
|
24313
|
+
},
|
|
24314
|
+
{
|
|
24315
|
+
"kind": "method",
|
|
24316
|
+
"name": "_onToggle",
|
|
23884
24317
|
"privacy": "private",
|
|
23885
24318
|
"return": {
|
|
23886
24319
|
"type": {
|
|
@@ -23918,17 +24351,47 @@
|
|
|
23918
24351
|
}
|
|
23919
24352
|
}
|
|
23920
24353
|
},
|
|
24354
|
+
{
|
|
24355
|
+
"kind": "method",
|
|
24356
|
+
"name": "_initializeToggle",
|
|
24357
|
+
"privacy": "private",
|
|
24358
|
+
"return": {
|
|
24359
|
+
"type": {
|
|
24360
|
+
"text": "void"
|
|
24361
|
+
}
|
|
24362
|
+
}
|
|
24363
|
+
},
|
|
24364
|
+
{
|
|
24365
|
+
"kind": "method",
|
|
24366
|
+
"name": "_destroyToggle",
|
|
24367
|
+
"privacy": "private",
|
|
24368
|
+
"return": {
|
|
24369
|
+
"type": {
|
|
24370
|
+
"text": "void"
|
|
24371
|
+
}
|
|
24372
|
+
}
|
|
24373
|
+
},
|
|
24374
|
+
{
|
|
24375
|
+
"kind": "method",
|
|
24376
|
+
"name": "_syncToggleState",
|
|
24377
|
+
"privacy": "private",
|
|
24378
|
+
"return": {
|
|
24379
|
+
"type": {
|
|
24380
|
+
"text": "void"
|
|
24381
|
+
}
|
|
24382
|
+
}
|
|
24383
|
+
},
|
|
23921
24384
|
{
|
|
23922
24385
|
"kind": "field",
|
|
23923
|
-
"name": "
|
|
24386
|
+
"name": "disabled",
|
|
23924
24387
|
"type": {
|
|
23925
|
-
"text": "
|
|
24388
|
+
"text": "boolean"
|
|
23926
24389
|
},
|
|
23927
24390
|
"privacy": "public"
|
|
23928
24391
|
},
|
|
23929
24392
|
{
|
|
23930
24393
|
"kind": "field",
|
|
23931
|
-
"name": "
|
|
24394
|
+
"name": "toggle",
|
|
23932
24395
|
"type": {
|
|
23933
24396
|
"text": "boolean"
|
|
23934
24397
|
},
|
|
@@ -23936,12 +24399,20 @@
|
|
|
23936
24399
|
},
|
|
23937
24400
|
{
|
|
23938
24401
|
"kind": "field",
|
|
23939
|
-
"name": "
|
|
24402
|
+
"name": "isOn",
|
|
23940
24403
|
"type": {
|
|
23941
24404
|
"text": "boolean"
|
|
23942
24405
|
},
|
|
23943
24406
|
"privacy": "public"
|
|
23944
24407
|
},
|
|
24408
|
+
{
|
|
24409
|
+
"kind": "field",
|
|
24410
|
+
"name": "densityLevel",
|
|
24411
|
+
"type": {
|
|
24412
|
+
"text": "number"
|
|
24413
|
+
},
|
|
24414
|
+
"privacy": "public"
|
|
24415
|
+
},
|
|
23945
24416
|
{
|
|
23946
24417
|
"kind": "method",
|
|
23947
24418
|
"name": "focus",
|
|
@@ -23962,110 +24433,108 @@
|
|
|
23962
24433
|
]
|
|
23963
24434
|
}
|
|
23964
24435
|
],
|
|
24436
|
+
"events": [
|
|
24437
|
+
{
|
|
24438
|
+
"name": "forge-icon-button-toggle",
|
|
24439
|
+
"type": {
|
|
24440
|
+
"text": "CustomEvent"
|
|
24441
|
+
}
|
|
24442
|
+
}
|
|
24443
|
+
],
|
|
23965
24444
|
"superclass": {
|
|
23966
24445
|
"name": "BaseComponent",
|
|
23967
24446
|
"module": "/src/lib/core/base/base-component"
|
|
23968
24447
|
},
|
|
23969
|
-
"tagName": "forge-deprecated-button",
|
|
23970
|
-
"deprecated": "Use the `<forge-button>` element instead.",
|
|
24448
|
+
"tagName": "forge-deprecated-icon-button",
|
|
24449
|
+
"deprecated": "Use the `<forge-icon-button>` element instead.",
|
|
23971
24450
|
"customElement": true
|
|
23972
24451
|
}
|
|
23973
24452
|
],
|
|
23974
24453
|
"exports": [
|
|
23975
24454
|
{
|
|
23976
24455
|
"kind": "js",
|
|
23977
|
-
"name": "
|
|
24456
|
+
"name": "DeprecatedIconButtonComponent",
|
|
23978
24457
|
"declaration": {
|
|
23979
|
-
"name": "
|
|
23980
|
-
"module": "src/lib/deprecated/button/deprecated-button.ts"
|
|
24458
|
+
"name": "DeprecatedIconButtonComponent",
|
|
24459
|
+
"module": "src/lib/deprecated/icon-button/deprecated-icon-button.ts"
|
|
23981
24460
|
}
|
|
23982
24461
|
}
|
|
23983
24462
|
]
|
|
23984
24463
|
},
|
|
23985
24464
|
{
|
|
23986
24465
|
"kind": "javascript-module",
|
|
23987
|
-
"path": "src/lib/deprecated/
|
|
24466
|
+
"path": "src/lib/deprecated/button/deprecated-button.ts",
|
|
23988
24467
|
"declarations": [
|
|
23989
24468
|
{
|
|
23990
24469
|
"kind": "class",
|
|
23991
24470
|
"description": "",
|
|
23992
|
-
"name": "
|
|
24471
|
+
"name": "DeprecatedButtonComponent",
|
|
23993
24472
|
"members": [
|
|
23994
24473
|
{
|
|
23995
24474
|
"kind": "field",
|
|
23996
|
-
"name": "
|
|
23997
|
-
"type": {
|
|
23998
|
-
"text": "boolean"
|
|
23999
|
-
},
|
|
24000
|
-
"privacy": "private",
|
|
24001
|
-
"default": "false"
|
|
24002
|
-
},
|
|
24003
|
-
{
|
|
24004
|
-
"kind": "field",
|
|
24005
|
-
"name": "_toggle",
|
|
24475
|
+
"name": "_slotElement",
|
|
24006
24476
|
"type": {
|
|
24007
|
-
"text": "
|
|
24477
|
+
"text": "HTMLSlotElement"
|
|
24008
24478
|
},
|
|
24009
24479
|
"privacy": "private",
|
|
24010
|
-
"default": "
|
|
24480
|
+
"default": "getShadowElement(this, 'slot:not([name])')"
|
|
24011
24481
|
},
|
|
24012
24482
|
{
|
|
24013
24483
|
"kind": "field",
|
|
24014
|
-
"name": "
|
|
24484
|
+
"name": "_focusIndicator",
|
|
24015
24485
|
"type": {
|
|
24016
|
-
"text": "
|
|
24486
|
+
"text": "IFocusIndicatorComponent"
|
|
24017
24487
|
},
|
|
24018
24488
|
"privacy": "private",
|
|
24019
|
-
"default": "
|
|
24489
|
+
"default": "getShadowElement(this, FOCUS_INDICATOR_CONSTANTS.elementName)"
|
|
24020
24490
|
},
|
|
24021
24491
|
{
|
|
24022
24492
|
"kind": "field",
|
|
24023
|
-
"name": "
|
|
24493
|
+
"name": "_stateLayer",
|
|
24024
24494
|
"type": {
|
|
24025
|
-
"text": "
|
|
24495
|
+
"text": "IStateLayerComponent"
|
|
24026
24496
|
},
|
|
24027
24497
|
"privacy": "private",
|
|
24028
|
-
"default": "
|
|
24498
|
+
"default": "getShadowElement(this, STATE_LAYER_CONSTANTS.elementName)"
|
|
24029
24499
|
},
|
|
24030
24500
|
{
|
|
24031
24501
|
"kind": "field",
|
|
24032
|
-
"name": "
|
|
24502
|
+
"name": "_buttonOrAnchorElement",
|
|
24033
24503
|
"type": {
|
|
24034
|
-
"text": "
|
|
24504
|
+
"text": "HTMLButtonElement | HTMLAnchorElement | null"
|
|
24035
24505
|
},
|
|
24036
24506
|
"privacy": "private",
|
|
24037
|
-
"default": "
|
|
24507
|
+
"default": "null"
|
|
24038
24508
|
},
|
|
24039
24509
|
{
|
|
24040
24510
|
"kind": "field",
|
|
24041
|
-
"name": "
|
|
24511
|
+
"name": "_type",
|
|
24042
24512
|
"type": {
|
|
24043
|
-
"text": "
|
|
24513
|
+
"text": "DeprecatedButtonType"
|
|
24044
24514
|
},
|
|
24045
|
-
"privacy": "private"
|
|
24046
|
-
"default": "getShadowElement(this, FOCUS_INDICATOR_CONSTANTS.elementName)"
|
|
24515
|
+
"privacy": "private"
|
|
24047
24516
|
},
|
|
24048
24517
|
{
|
|
24049
24518
|
"kind": "field",
|
|
24050
|
-
"name": "
|
|
24519
|
+
"name": "_disabled",
|
|
24051
24520
|
"type": {
|
|
24052
|
-
"text": "
|
|
24521
|
+
"text": "boolean"
|
|
24053
24522
|
},
|
|
24054
24523
|
"privacy": "private",
|
|
24055
|
-
"default": "
|
|
24524
|
+
"default": "false"
|
|
24056
24525
|
},
|
|
24057
24526
|
{
|
|
24058
24527
|
"kind": "field",
|
|
24059
|
-
"name": "
|
|
24528
|
+
"name": "_fullWidth",
|
|
24060
24529
|
"type": {
|
|
24061
|
-
"text": "
|
|
24530
|
+
"text": "boolean"
|
|
24062
24531
|
},
|
|
24063
24532
|
"privacy": "private",
|
|
24064
|
-
"default": "
|
|
24533
|
+
"default": "false"
|
|
24065
24534
|
},
|
|
24066
24535
|
{
|
|
24067
24536
|
"kind": "field",
|
|
24068
|
-
"name": "
|
|
24537
|
+
"name": "_buttonChangeListener",
|
|
24069
24538
|
"privacy": "private"
|
|
24070
24539
|
},
|
|
24071
24540
|
{
|
|
@@ -24079,17 +24548,6 @@
|
|
|
24079
24548
|
{
|
|
24080
24549
|
"kind": "field",
|
|
24081
24550
|
"name": "_keydownListener",
|
|
24082
|
-
"type": {
|
|
24083
|
-
"text": "EventListener"
|
|
24084
|
-
},
|
|
24085
|
-
"privacy": "private"
|
|
24086
|
-
},
|
|
24087
|
-
{
|
|
24088
|
-
"kind": "field",
|
|
24089
|
-
"name": "_toggleClickListener",
|
|
24090
|
-
"type": {
|
|
24091
|
-
"text": "EventListener"
|
|
24092
|
-
},
|
|
24093
24551
|
"privacy": "private"
|
|
24094
24552
|
},
|
|
24095
24553
|
{
|
|
@@ -24112,17 +24570,7 @@
|
|
|
24112
24570
|
},
|
|
24113
24571
|
{
|
|
24114
24572
|
"kind": "method",
|
|
24115
|
-
"name": "
|
|
24116
|
-
"privacy": "private",
|
|
24117
|
-
"return": {
|
|
24118
|
-
"type": {
|
|
24119
|
-
"text": "void"
|
|
24120
|
-
}
|
|
24121
|
-
}
|
|
24122
|
-
},
|
|
24123
|
-
{
|
|
24124
|
-
"kind": "method",
|
|
24125
|
-
"name": "_onToggle",
|
|
24573
|
+
"name": "_onButtonChange",
|
|
24126
24574
|
"privacy": "private",
|
|
24127
24575
|
"return": {
|
|
24128
24576
|
"type": {
|
|
@@ -24160,47 +24608,17 @@
|
|
|
24160
24608
|
}
|
|
24161
24609
|
}
|
|
24162
24610
|
},
|
|
24163
|
-
{
|
|
24164
|
-
"kind": "method",
|
|
24165
|
-
"name": "_initializeToggle",
|
|
24166
|
-
"privacy": "private",
|
|
24167
|
-
"return": {
|
|
24168
|
-
"type": {
|
|
24169
|
-
"text": "void"
|
|
24170
|
-
}
|
|
24171
|
-
}
|
|
24172
|
-
},
|
|
24173
|
-
{
|
|
24174
|
-
"kind": "method",
|
|
24175
|
-
"name": "_destroyToggle",
|
|
24176
|
-
"privacy": "private",
|
|
24177
|
-
"return": {
|
|
24178
|
-
"type": {
|
|
24179
|
-
"text": "void"
|
|
24180
|
-
}
|
|
24181
|
-
}
|
|
24182
|
-
},
|
|
24183
|
-
{
|
|
24184
|
-
"kind": "method",
|
|
24185
|
-
"name": "_syncToggleState",
|
|
24186
|
-
"privacy": "private",
|
|
24187
|
-
"return": {
|
|
24188
|
-
"type": {
|
|
24189
|
-
"text": "void"
|
|
24190
|
-
}
|
|
24191
|
-
}
|
|
24192
|
-
},
|
|
24193
24611
|
{
|
|
24194
24612
|
"kind": "field",
|
|
24195
|
-
"name": "
|
|
24613
|
+
"name": "type",
|
|
24196
24614
|
"type": {
|
|
24197
|
-
"text": "
|
|
24615
|
+
"text": "DeprecatedButtonType"
|
|
24198
24616
|
},
|
|
24199
24617
|
"privacy": "public"
|
|
24200
24618
|
},
|
|
24201
24619
|
{
|
|
24202
24620
|
"kind": "field",
|
|
24203
|
-
"name": "
|
|
24621
|
+
"name": "disabled",
|
|
24204
24622
|
"type": {
|
|
24205
24623
|
"text": "boolean"
|
|
24206
24624
|
},
|
|
@@ -24208,20 +24626,12 @@
|
|
|
24208
24626
|
},
|
|
24209
24627
|
{
|
|
24210
24628
|
"kind": "field",
|
|
24211
|
-
"name": "
|
|
24629
|
+
"name": "fullWidth",
|
|
24212
24630
|
"type": {
|
|
24213
24631
|
"text": "boolean"
|
|
24214
24632
|
},
|
|
24215
24633
|
"privacy": "public"
|
|
24216
24634
|
},
|
|
24217
|
-
{
|
|
24218
|
-
"kind": "field",
|
|
24219
|
-
"name": "densityLevel",
|
|
24220
|
-
"type": {
|
|
24221
|
-
"text": "number"
|
|
24222
|
-
},
|
|
24223
|
-
"privacy": "public"
|
|
24224
|
-
},
|
|
24225
24635
|
{
|
|
24226
24636
|
"kind": "method",
|
|
24227
24637
|
"name": "focus",
|
|
@@ -24242,30 +24652,22 @@
|
|
|
24242
24652
|
]
|
|
24243
24653
|
}
|
|
24244
24654
|
],
|
|
24245
|
-
"events": [
|
|
24246
|
-
{
|
|
24247
|
-
"name": "forge-icon-button-toggle",
|
|
24248
|
-
"type": {
|
|
24249
|
-
"text": "CustomEvent"
|
|
24250
|
-
}
|
|
24251
|
-
}
|
|
24252
|
-
],
|
|
24253
24655
|
"superclass": {
|
|
24254
24656
|
"name": "BaseComponent",
|
|
24255
24657
|
"module": "/src/lib/core/base/base-component"
|
|
24256
24658
|
},
|
|
24257
|
-
"tagName": "forge-deprecated-
|
|
24258
|
-
"deprecated": "Use the `<forge-
|
|
24659
|
+
"tagName": "forge-deprecated-button",
|
|
24660
|
+
"deprecated": "Use the `<forge-button>` element instead.",
|
|
24259
24661
|
"customElement": true
|
|
24260
24662
|
}
|
|
24261
24663
|
],
|
|
24262
24664
|
"exports": [
|
|
24263
24665
|
{
|
|
24264
24666
|
"kind": "js",
|
|
24265
|
-
"name": "
|
|
24667
|
+
"name": "DeprecatedButtonComponent",
|
|
24266
24668
|
"declaration": {
|
|
24267
|
-
"name": "
|
|
24268
|
-
"module": "src/lib/deprecated/
|
|
24669
|
+
"name": "DeprecatedButtonComponent",
|
|
24670
|
+
"module": "src/lib/deprecated/button/deprecated-button.ts"
|
|
24269
24671
|
}
|
|
24270
24672
|
}
|
|
24271
24673
|
]
|
|
@@ -26022,6 +26424,14 @@
|
|
|
26022
26424
|
"kind": "javascript-module",
|
|
26023
26425
|
"path": "src/lib/key/key/key.ts",
|
|
26024
26426
|
"declarations": [
|
|
26427
|
+
{
|
|
26428
|
+
"kind": "variable",
|
|
26429
|
+
"name": "KEY_TAG_NAME",
|
|
26430
|
+
"type": {
|
|
26431
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
26432
|
+
},
|
|
26433
|
+
"default": "'forge-key'"
|
|
26434
|
+
},
|
|
26025
26435
|
{
|
|
26026
26436
|
"kind": "class",
|
|
26027
26437
|
"description": "",
|
|
@@ -26050,8 +26460,8 @@
|
|
|
26050
26460
|
],
|
|
26051
26461
|
"members": [],
|
|
26052
26462
|
"superclass": {
|
|
26053
|
-
"name": "
|
|
26054
|
-
"
|
|
26463
|
+
"name": "BaseLitElement",
|
|
26464
|
+
"module": "/src/lib/core/base/base-lit-element"
|
|
26055
26465
|
},
|
|
26056
26466
|
"tagName": "forge-key",
|
|
26057
26467
|
"summary": "Keys present key items to label a chart or data visualization.",
|
|
@@ -26059,6 +26469,14 @@
|
|
|
26059
26469
|
}
|
|
26060
26470
|
],
|
|
26061
26471
|
"exports": [
|
|
26472
|
+
{
|
|
26473
|
+
"kind": "js",
|
|
26474
|
+
"name": "KEY_TAG_NAME",
|
|
26475
|
+
"declaration": {
|
|
26476
|
+
"name": "KEY_TAG_NAME",
|
|
26477
|
+
"module": "src/lib/key/key/key.ts"
|
|
26478
|
+
}
|
|
26479
|
+
},
|
|
26062
26480
|
{
|
|
26063
26481
|
"kind": "js",
|
|
26064
26482
|
"name": "KeyComponent",
|
|
@@ -26073,6 +26491,14 @@
|
|
|
26073
26491
|
"kind": "javascript-module",
|
|
26074
26492
|
"path": "src/lib/key/key-item/key-item.ts",
|
|
26075
26493
|
"declarations": [
|
|
26494
|
+
{
|
|
26495
|
+
"kind": "variable",
|
|
26496
|
+
"name": "KEY_ITEM_TAG_NAME",
|
|
26497
|
+
"type": {
|
|
26498
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
26499
|
+
},
|
|
26500
|
+
"default": "'forge-key-item'"
|
|
26501
|
+
},
|
|
26076
26502
|
{
|
|
26077
26503
|
"kind": "class",
|
|
26078
26504
|
"description": "",
|
|
@@ -26183,8 +26609,8 @@
|
|
|
26183
26609
|
}
|
|
26184
26610
|
],
|
|
26185
26611
|
"superclass": {
|
|
26186
|
-
"name": "
|
|
26187
|
-
"
|
|
26612
|
+
"name": "BaseLitElement",
|
|
26613
|
+
"module": "/src/lib/core/base/base-lit-element"
|
|
26188
26614
|
},
|
|
26189
26615
|
"tagName": "forge-key-item",
|
|
26190
26616
|
"summary": "Key items label a chart or data visualization.",
|
|
@@ -26192,6 +26618,14 @@
|
|
|
26192
26618
|
}
|
|
26193
26619
|
],
|
|
26194
26620
|
"exports": [
|
|
26621
|
+
{
|
|
26622
|
+
"kind": "js",
|
|
26623
|
+
"name": "KEY_ITEM_TAG_NAME",
|
|
26624
|
+
"declaration": {
|
|
26625
|
+
"name": "KEY_ITEM_TAG_NAME",
|
|
26626
|
+
"module": "src/lib/key/key-item/key-item.ts"
|
|
26627
|
+
}
|
|
26628
|
+
},
|
|
26195
26629
|
{
|
|
26196
26630
|
"kind": "js",
|
|
26197
26631
|
"name": "KeyItemComponent",
|
|
@@ -26886,6 +27320,14 @@
|
|
|
26886
27320
|
"kind": "javascript-module",
|
|
26887
27321
|
"path": "src/lib/meter/meter/meter.ts",
|
|
26888
27322
|
"declarations": [
|
|
27323
|
+
{
|
|
27324
|
+
"kind": "variable",
|
|
27325
|
+
"name": "METER_TAG_NAME",
|
|
27326
|
+
"type": {
|
|
27327
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
27328
|
+
},
|
|
27329
|
+
"default": "'forge-meter'"
|
|
27330
|
+
},
|
|
26889
27331
|
{
|
|
26890
27332
|
"kind": "class",
|
|
26891
27333
|
"description": "",
|
|
@@ -27394,8 +27836,8 @@
|
|
|
27394
27836
|
}
|
|
27395
27837
|
],
|
|
27396
27838
|
"superclass": {
|
|
27397
|
-
"name": "
|
|
27398
|
-
"
|
|
27839
|
+
"name": "BaseLitElement",
|
|
27840
|
+
"module": "/src/lib/core/base/base-lit-element"
|
|
27399
27841
|
},
|
|
27400
27842
|
"tagName": "forge-meter",
|
|
27401
27843
|
"summary": "Meters display a scalar value within a defined range.",
|
|
@@ -27421,6 +27863,14 @@
|
|
|
27421
27863
|
}
|
|
27422
27864
|
],
|
|
27423
27865
|
"exports": [
|
|
27866
|
+
{
|
|
27867
|
+
"kind": "js",
|
|
27868
|
+
"name": "METER_TAG_NAME",
|
|
27869
|
+
"declaration": {
|
|
27870
|
+
"name": "METER_TAG_NAME",
|
|
27871
|
+
"module": "src/lib/meter/meter/meter.ts"
|
|
27872
|
+
}
|
|
27873
|
+
},
|
|
27424
27874
|
{
|
|
27425
27875
|
"kind": "js",
|
|
27426
27876
|
"name": "MeterComponent",
|
|
@@ -27435,6 +27885,14 @@
|
|
|
27435
27885
|
"kind": "javascript-module",
|
|
27436
27886
|
"path": "src/lib/meter/meter-group/meter-group.ts",
|
|
27437
27887
|
"declarations": [
|
|
27888
|
+
{
|
|
27889
|
+
"kind": "variable",
|
|
27890
|
+
"name": "METER_GROUP_TAG_NAME",
|
|
27891
|
+
"type": {
|
|
27892
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
27893
|
+
},
|
|
27894
|
+
"default": "'forge-meter-group'"
|
|
27895
|
+
},
|
|
27438
27896
|
{
|
|
27439
27897
|
"kind": "class",
|
|
27440
27898
|
"description": "",
|
|
@@ -27714,8 +28172,8 @@
|
|
|
27714
28172
|
}
|
|
27715
28173
|
],
|
|
27716
28174
|
"superclass": {
|
|
27717
|
-
"name": "
|
|
27718
|
-
"
|
|
28175
|
+
"name": "BaseLitElement",
|
|
28176
|
+
"module": "/src/lib/core/base/base-lit-element"
|
|
27719
28177
|
},
|
|
27720
28178
|
"tagName": "forge-meter-group",
|
|
27721
28179
|
"summary": "Meter groups display several meters together on one track.",
|
|
@@ -27729,6 +28187,14 @@
|
|
|
27729
28187
|
}
|
|
27730
28188
|
],
|
|
27731
28189
|
"exports": [
|
|
28190
|
+
{
|
|
28191
|
+
"kind": "js",
|
|
28192
|
+
"name": "METER_GROUP_TAG_NAME",
|
|
28193
|
+
"declaration": {
|
|
28194
|
+
"name": "METER_GROUP_TAG_NAME",
|
|
28195
|
+
"module": "src/lib/meter/meter-group/meter-group.ts"
|
|
28196
|
+
}
|
|
28197
|
+
},
|
|
27732
28198
|
{
|
|
27733
28199
|
"kind": "js",
|
|
27734
28200
|
"name": "MeterGroupComponent",
|
|
@@ -28008,11 +28474,11 @@
|
|
|
28008
28474
|
"kind": "field",
|
|
28009
28475
|
"name": "shift",
|
|
28010
28476
|
"type": {
|
|
28011
|
-
"text": "
|
|
28477
|
+
"text": "OverlayShiftState"
|
|
28012
28478
|
},
|
|
28013
28479
|
"privacy": "public",
|
|
28014
28480
|
"description": "Whether the overlay should shift to fit within the viewport.",
|
|
28015
|
-
"default": "
|
|
28481
|
+
"default": "\"auto\""
|
|
28016
28482
|
},
|
|
28017
28483
|
{
|
|
28018
28484
|
"kind": "field",
|
|
@@ -28129,11 +28595,11 @@
|
|
|
28129
28595
|
},
|
|
28130
28596
|
{
|
|
28131
28597
|
"type": {
|
|
28132
|
-
"text": "
|
|
28598
|
+
"text": "OverlayShiftState"
|
|
28133
28599
|
},
|
|
28134
28600
|
"description": "Whether the overlay should shift to fit within the viewport.",
|
|
28135
28601
|
"name": "shift",
|
|
28136
|
-
"default": "
|
|
28602
|
+
"default": "\"auto\""
|
|
28137
28603
|
},
|
|
28138
28604
|
{
|
|
28139
28605
|
"type": {
|
|
@@ -28666,6 +29132,108 @@
|
|
|
28666
29132
|
}
|
|
28667
29133
|
]
|
|
28668
29134
|
},
|
|
29135
|
+
{
|
|
29136
|
+
"kind": "javascript-module",
|
|
29137
|
+
"path": "src/lib/select/option-group/option-group.ts",
|
|
29138
|
+
"declarations": [
|
|
29139
|
+
{
|
|
29140
|
+
"kind": "class",
|
|
29141
|
+
"description": "",
|
|
29142
|
+
"name": "OptionGroupComponent",
|
|
29143
|
+
"members": [
|
|
29144
|
+
{
|
|
29145
|
+
"kind": "field",
|
|
29146
|
+
"name": "_label",
|
|
29147
|
+
"type": {
|
|
29148
|
+
"text": "string"
|
|
29149
|
+
},
|
|
29150
|
+
"privacy": "private"
|
|
29151
|
+
},
|
|
29152
|
+
{
|
|
29153
|
+
"kind": "field",
|
|
29154
|
+
"name": "label",
|
|
29155
|
+
"type": {
|
|
29156
|
+
"text": "string"
|
|
29157
|
+
},
|
|
29158
|
+
"privacy": "public",
|
|
29159
|
+
"description": "Gets/sets the label of this option group."
|
|
29160
|
+
},
|
|
29161
|
+
{
|
|
29162
|
+
"kind": "field",
|
|
29163
|
+
"name": "options",
|
|
29164
|
+
"type": {
|
|
29165
|
+
"text": "ISelectOption[]"
|
|
29166
|
+
},
|
|
29167
|
+
"privacy": "public",
|
|
29168
|
+
"description": "The child options of this group."
|
|
29169
|
+
},
|
|
29170
|
+
{
|
|
29171
|
+
"kind": "field",
|
|
29172
|
+
"name": "builder",
|
|
29173
|
+
"type": {
|
|
29174
|
+
"text": "ListDropdownOptionGroupBuilder"
|
|
29175
|
+
},
|
|
29176
|
+
"privacy": "public",
|
|
29177
|
+
"description": "The builder function for the group content."
|
|
29178
|
+
},
|
|
29179
|
+
{
|
|
29180
|
+
"kind": "field",
|
|
29181
|
+
"name": "value",
|
|
29182
|
+
"type": {
|
|
29183
|
+
"text": "any"
|
|
29184
|
+
},
|
|
29185
|
+
"privacy": "public",
|
|
29186
|
+
"description": "Gets/sets the optional group value.",
|
|
29187
|
+
"attribute": "value"
|
|
29188
|
+
},
|
|
29189
|
+
{
|
|
29190
|
+
"kind": "field",
|
|
29191
|
+
"name": "text",
|
|
29192
|
+
"type": {
|
|
29193
|
+
"text": "string"
|
|
29194
|
+
},
|
|
29195
|
+
"privacy": "public",
|
|
29196
|
+
"description": "The text content for the group.",
|
|
29197
|
+
"attribute": "text"
|
|
29198
|
+
}
|
|
29199
|
+
],
|
|
29200
|
+
"attributes": [
|
|
29201
|
+
{
|
|
29202
|
+
"name": "value",
|
|
29203
|
+
"type": {
|
|
29204
|
+
"text": "any"
|
|
29205
|
+
},
|
|
29206
|
+
"description": "Gets/sets the optional group value.",
|
|
29207
|
+
"fieldName": "value"
|
|
29208
|
+
},
|
|
29209
|
+
{
|
|
29210
|
+
"name": "text",
|
|
29211
|
+
"type": {
|
|
29212
|
+
"text": "string"
|
|
29213
|
+
},
|
|
29214
|
+
"description": "The text content for the group.",
|
|
29215
|
+
"fieldName": "text"
|
|
29216
|
+
}
|
|
29217
|
+
],
|
|
29218
|
+
"superclass": {
|
|
29219
|
+
"name": "BaseComponent",
|
|
29220
|
+
"module": "/src/lib/core/base/base-component"
|
|
29221
|
+
},
|
|
29222
|
+
"tagName": "forge-option-group",
|
|
29223
|
+
"customElement": true
|
|
29224
|
+
}
|
|
29225
|
+
],
|
|
29226
|
+
"exports": [
|
|
29227
|
+
{
|
|
29228
|
+
"kind": "js",
|
|
29229
|
+
"name": "OptionGroupComponent",
|
|
29230
|
+
"declaration": {
|
|
29231
|
+
"name": "OptionGroupComponent",
|
|
29232
|
+
"module": "src/lib/select/option-group/option-group.ts"
|
|
29233
|
+
}
|
|
29234
|
+
}
|
|
29235
|
+
]
|
|
29236
|
+
},
|
|
28669
29237
|
{
|
|
28670
29238
|
"kind": "javascript-module",
|
|
28671
29239
|
"path": "src/lib/select/option/option.ts",
|
|
@@ -28966,108 +29534,6 @@
|
|
|
28966
29534
|
}
|
|
28967
29535
|
]
|
|
28968
29536
|
},
|
|
28969
|
-
{
|
|
28970
|
-
"kind": "javascript-module",
|
|
28971
|
-
"path": "src/lib/select/option-group/option-group.ts",
|
|
28972
|
-
"declarations": [
|
|
28973
|
-
{
|
|
28974
|
-
"kind": "class",
|
|
28975
|
-
"description": "",
|
|
28976
|
-
"name": "OptionGroupComponent",
|
|
28977
|
-
"members": [
|
|
28978
|
-
{
|
|
28979
|
-
"kind": "field",
|
|
28980
|
-
"name": "_label",
|
|
28981
|
-
"type": {
|
|
28982
|
-
"text": "string"
|
|
28983
|
-
},
|
|
28984
|
-
"privacy": "private"
|
|
28985
|
-
},
|
|
28986
|
-
{
|
|
28987
|
-
"kind": "field",
|
|
28988
|
-
"name": "label",
|
|
28989
|
-
"type": {
|
|
28990
|
-
"text": "string"
|
|
28991
|
-
},
|
|
28992
|
-
"privacy": "public",
|
|
28993
|
-
"description": "Gets/sets the label of this option group."
|
|
28994
|
-
},
|
|
28995
|
-
{
|
|
28996
|
-
"kind": "field",
|
|
28997
|
-
"name": "options",
|
|
28998
|
-
"type": {
|
|
28999
|
-
"text": "ISelectOption[]"
|
|
29000
|
-
},
|
|
29001
|
-
"privacy": "public",
|
|
29002
|
-
"description": "The child options of this group."
|
|
29003
|
-
},
|
|
29004
|
-
{
|
|
29005
|
-
"kind": "field",
|
|
29006
|
-
"name": "builder",
|
|
29007
|
-
"type": {
|
|
29008
|
-
"text": "ListDropdownOptionGroupBuilder"
|
|
29009
|
-
},
|
|
29010
|
-
"privacy": "public",
|
|
29011
|
-
"description": "The builder function for the group content."
|
|
29012
|
-
},
|
|
29013
|
-
{
|
|
29014
|
-
"kind": "field",
|
|
29015
|
-
"name": "value",
|
|
29016
|
-
"type": {
|
|
29017
|
-
"text": "any"
|
|
29018
|
-
},
|
|
29019
|
-
"privacy": "public",
|
|
29020
|
-
"description": "Gets/sets the optional group value.",
|
|
29021
|
-
"attribute": "value"
|
|
29022
|
-
},
|
|
29023
|
-
{
|
|
29024
|
-
"kind": "field",
|
|
29025
|
-
"name": "text",
|
|
29026
|
-
"type": {
|
|
29027
|
-
"text": "string"
|
|
29028
|
-
},
|
|
29029
|
-
"privacy": "public",
|
|
29030
|
-
"description": "The text content for the group.",
|
|
29031
|
-
"attribute": "text"
|
|
29032
|
-
}
|
|
29033
|
-
],
|
|
29034
|
-
"attributes": [
|
|
29035
|
-
{
|
|
29036
|
-
"name": "value",
|
|
29037
|
-
"type": {
|
|
29038
|
-
"text": "any"
|
|
29039
|
-
},
|
|
29040
|
-
"description": "Gets/sets the optional group value.",
|
|
29041
|
-
"fieldName": "value"
|
|
29042
|
-
},
|
|
29043
|
-
{
|
|
29044
|
-
"name": "text",
|
|
29045
|
-
"type": {
|
|
29046
|
-
"text": "string"
|
|
29047
|
-
},
|
|
29048
|
-
"description": "The text content for the group.",
|
|
29049
|
-
"fieldName": "text"
|
|
29050
|
-
}
|
|
29051
|
-
],
|
|
29052
|
-
"superclass": {
|
|
29053
|
-
"name": "BaseComponent",
|
|
29054
|
-
"module": "/src/lib/core/base/base-component"
|
|
29055
|
-
},
|
|
29056
|
-
"tagName": "forge-option-group",
|
|
29057
|
-
"customElement": true
|
|
29058
|
-
}
|
|
29059
|
-
],
|
|
29060
|
-
"exports": [
|
|
29061
|
-
{
|
|
29062
|
-
"kind": "js",
|
|
29063
|
-
"name": "OptionGroupComponent",
|
|
29064
|
-
"declaration": {
|
|
29065
|
-
"name": "OptionGroupComponent",
|
|
29066
|
-
"module": "src/lib/select/option-group/option-group.ts"
|
|
29067
|
-
}
|
|
29068
|
-
}
|
|
29069
|
-
]
|
|
29070
|
-
},
|
|
29071
29537
|
{
|
|
29072
29538
|
"kind": "javascript-module",
|
|
29073
29539
|
"path": "src/lib/select/select/select.ts",
|
|
@@ -29327,31 +29793,6 @@
|
|
|
29327
29793
|
}
|
|
29328
29794
|
],
|
|
29329
29795
|
"members": [
|
|
29330
|
-
{
|
|
29331
|
-
"kind": "method",
|
|
29332
|
-
"name": "setFormValue",
|
|
29333
|
-
"privacy": "public",
|
|
29334
|
-
"return": {
|
|
29335
|
-
"type": {
|
|
29336
|
-
"text": "void"
|
|
29337
|
-
}
|
|
29338
|
-
},
|
|
29339
|
-
"parameters": [
|
|
29340
|
-
{
|
|
29341
|
-
"name": "value",
|
|
29342
|
-
"type": {
|
|
29343
|
-
"text": "FormValue | null"
|
|
29344
|
-
}
|
|
29345
|
-
},
|
|
29346
|
-
{
|
|
29347
|
-
"name": "state",
|
|
29348
|
-
"optional": true,
|
|
29349
|
-
"type": {
|
|
29350
|
-
"text": "FormValue | null | undefined"
|
|
29351
|
-
}
|
|
29352
|
-
}
|
|
29353
|
-
]
|
|
29354
|
-
},
|
|
29355
29796
|
{
|
|
29356
29797
|
"kind": "field",
|
|
29357
29798
|
"name": "label",
|
|
@@ -29544,6 +29985,140 @@
|
|
|
29544
29985
|
"kind": "field",
|
|
29545
29986
|
"privacy": "public"
|
|
29546
29987
|
},
|
|
29988
|
+
{
|
|
29989
|
+
"type": {
|
|
29990
|
+
"text": "string | string[]; -"
|
|
29991
|
+
},
|
|
29992
|
+
"description": "Gets/sets the list of classes to apply to the popup element.",
|
|
29993
|
+
"name": "popupClasses",
|
|
29994
|
+
"kind": "field",
|
|
29995
|
+
"privacy": "public"
|
|
29996
|
+
},
|
|
29997
|
+
{
|
|
29998
|
+
"type": {
|
|
29999
|
+
"text": "ListDropdownHeaderBuilder"
|
|
30000
|
+
},
|
|
30001
|
+
"description": "Gets/sets the callback function for generating header content within the popup.",
|
|
30002
|
+
"name": "popupHeaderBuilder",
|
|
30003
|
+
"kind": "field",
|
|
30004
|
+
"privacy": "public"
|
|
30005
|
+
},
|
|
30006
|
+
{
|
|
30007
|
+
"type": {
|
|
30008
|
+
"text": "ListDropdownFooterBuilder"
|
|
30009
|
+
},
|
|
30010
|
+
"description": "Gets/sets the callback function for generating header content within the popup.",
|
|
30011
|
+
"name": "popupFooterBuilder",
|
|
30012
|
+
"kind": "field",
|
|
30013
|
+
"privacy": "public"
|
|
30014
|
+
},
|
|
30015
|
+
{
|
|
30016
|
+
"type": {
|
|
30017
|
+
"text": "boolean"
|
|
30018
|
+
},
|
|
30019
|
+
"description": "Gets/sets whether the popup width is synchronized with the popup target width.",
|
|
30020
|
+
"name": "syncPopupWidth",
|
|
30021
|
+
"default": "false",
|
|
30022
|
+
"kind": "field",
|
|
30023
|
+
"privacy": "public"
|
|
30024
|
+
},
|
|
30025
|
+
{
|
|
30026
|
+
"type": {
|
|
30027
|
+
"text": "number"
|
|
30028
|
+
},
|
|
30029
|
+
"description": "Gets/sets the maximum number of options to display in the dropdown.",
|
|
30030
|
+
"name": "optionLimit",
|
|
30031
|
+
"kind": "field",
|
|
30032
|
+
"privacy": "public"
|
|
30033
|
+
},
|
|
30034
|
+
{
|
|
30035
|
+
"type": {
|
|
30036
|
+
"text": "boolean"
|
|
30037
|
+
},
|
|
30038
|
+
"description": "Controls the observation of scroll events on the dropdown.",
|
|
30039
|
+
"name": "observeScroll",
|
|
30040
|
+
"default": "false",
|
|
30041
|
+
"kind": "field",
|
|
30042
|
+
"privacy": "public"
|
|
30043
|
+
},
|
|
30044
|
+
{
|
|
30045
|
+
"type": {
|
|
30046
|
+
"text": "number"
|
|
30047
|
+
},
|
|
30048
|
+
"description": "The number of pixels from the bottom to trigger the scroll bottom event. Only applicable if `observeScroll` is true.",
|
|
30049
|
+
"name": "observeScrollThreshold",
|
|
30050
|
+
"default": "0",
|
|
30051
|
+
"kind": "field",
|
|
30052
|
+
"privacy": "public"
|
|
30053
|
+
},
|
|
30054
|
+
{
|
|
30055
|
+
"type": {
|
|
30056
|
+
"text": "boolean"
|
|
30057
|
+
},
|
|
30058
|
+
"description": "Gets/sets whether the popup width will be constrained to a max width of the viewport width (default: `100vw`).",
|
|
30059
|
+
"name": "constrainPopupWidth",
|
|
30060
|
+
"default": "true",
|
|
30061
|
+
"kind": "field",
|
|
30062
|
+
"privacy": "public"
|
|
30063
|
+
},
|
|
30064
|
+
{
|
|
30065
|
+
"type": {
|
|
30066
|
+
"text": "boolean"
|
|
30067
|
+
},
|
|
30068
|
+
"description": "Gets/sets whether the options will wrap their text or not. This only applies if `constrainPopupWidth` is `true`, if there is an explicit width set via CSS.",
|
|
30069
|
+
"name": "wrapOptionText",
|
|
30070
|
+
"default": "false",
|
|
30071
|
+
"kind": "field",
|
|
30072
|
+
"privacy": "public"
|
|
30073
|
+
},
|
|
30074
|
+
{
|
|
30075
|
+
"type": {
|
|
30076
|
+
"text": "OverlayPlacement"
|
|
30077
|
+
},
|
|
30078
|
+
"description": "Gets/sets the placement of the popover.",
|
|
30079
|
+
"name": "popoverPlacement",
|
|
30080
|
+
"default": "\"bottom\"",
|
|
30081
|
+
"kind": "field",
|
|
30082
|
+
"privacy": "public"
|
|
30083
|
+
},
|
|
30084
|
+
{
|
|
30085
|
+
"type": {
|
|
30086
|
+
"text": "IOverlayOffset"
|
|
30087
|
+
},
|
|
30088
|
+
"description": "Gets/sets the offset of the popover.",
|
|
30089
|
+
"name": "popoverOffset",
|
|
30090
|
+
"kind": "field",
|
|
30091
|
+
"privacy": "public"
|
|
30092
|
+
},
|
|
30093
|
+
{
|
|
30094
|
+
"type": {
|
|
30095
|
+
"text": "OverlayFlipState"
|
|
30096
|
+
},
|
|
30097
|
+
"description": "Gets/sets the flip state of the popover.",
|
|
30098
|
+
"name": "popoverFlip",
|
|
30099
|
+
"default": "\"auto\"",
|
|
30100
|
+
"kind": "field",
|
|
30101
|
+
"privacy": "public"
|
|
30102
|
+
},
|
|
30103
|
+
{
|
|
30104
|
+
"type": {
|
|
30105
|
+
"text": "OverlayShiftState"
|
|
30106
|
+
},
|
|
30107
|
+
"description": "Gets/sets whether the popover should shift to fit within the viewport.",
|
|
30108
|
+
"name": "popoverShift",
|
|
30109
|
+
"default": "\"auto\"",
|
|
30110
|
+
"kind": "field",
|
|
30111
|
+
"privacy": "public"
|
|
30112
|
+
},
|
|
30113
|
+
{
|
|
30114
|
+
"type": {
|
|
30115
|
+
"text": "PositionPlacement | null"
|
|
30116
|
+
},
|
|
30117
|
+
"description": "Gets/sets the fallback placements of the popover.",
|
|
30118
|
+
"name": "popoverFallbackPlacements",
|
|
30119
|
+
"kind": "field",
|
|
30120
|
+
"privacy": "public"
|
|
30121
|
+
},
|
|
29547
30122
|
{
|
|
29548
30123
|
"kind": "field",
|
|
29549
30124
|
"name": "_inputElement",
|
|
@@ -29771,6 +30346,76 @@
|
|
|
29771
30346
|
"description": "Gets/sets the open state.",
|
|
29772
30347
|
"name": "open"
|
|
29773
30348
|
},
|
|
30349
|
+
{
|
|
30350
|
+
"type": {
|
|
30351
|
+
"text": "boolean"
|
|
30352
|
+
},
|
|
30353
|
+
"description": "Gets/sets whether the popup width is synchronized with the popup target width.",
|
|
30354
|
+
"name": "sync-popup-width",
|
|
30355
|
+
"default": "false"
|
|
30356
|
+
},
|
|
30357
|
+
{
|
|
30358
|
+
"type": {
|
|
30359
|
+
"text": "number"
|
|
30360
|
+
},
|
|
30361
|
+
"description": "Gets/sets the maximum number of options to display in the dropdown.",
|
|
30362
|
+
"name": "option-limit"
|
|
30363
|
+
},
|
|
30364
|
+
{
|
|
30365
|
+
"type": {
|
|
30366
|
+
"text": "boolean"
|
|
30367
|
+
},
|
|
30368
|
+
"description": "Controls the observation of scroll events on the dropdown.",
|
|
30369
|
+
"name": "observe-scroll",
|
|
30370
|
+
"default": "false"
|
|
30371
|
+
},
|
|
30372
|
+
{
|
|
30373
|
+
"type": {
|
|
30374
|
+
"text": "number"
|
|
30375
|
+
},
|
|
30376
|
+
"description": "The number of pixels from the bottom to trigger the scroll bottom event. Only applicable if `observeScroll` is true.",
|
|
30377
|
+
"name": "observe-scroll-threshold",
|
|
30378
|
+
"default": "0"
|
|
30379
|
+
},
|
|
30380
|
+
{
|
|
30381
|
+
"type": {
|
|
30382
|
+
"text": "boolean"
|
|
30383
|
+
},
|
|
30384
|
+
"description": "Gets/sets whether the options will wrap their text or not. This only applies if `constrainPopupWidth` is `true`, if there is an explicit width set via CSS.",
|
|
30385
|
+
"name": "wrap-option-text",
|
|
30386
|
+
"default": "false"
|
|
30387
|
+
},
|
|
30388
|
+
{
|
|
30389
|
+
"type": {
|
|
30390
|
+
"text": "OverlayPlacement"
|
|
30391
|
+
},
|
|
30392
|
+
"description": "Gets/sets the placement of the popover.",
|
|
30393
|
+
"name": "popover-placement",
|
|
30394
|
+
"default": "\"bottom\""
|
|
30395
|
+
},
|
|
30396
|
+
{
|
|
30397
|
+
"type": {
|
|
30398
|
+
"text": "IOverlayOffset"
|
|
30399
|
+
},
|
|
30400
|
+
"description": "Gets/sets the offset of the popover.",
|
|
30401
|
+
"name": "popover-offset"
|
|
30402
|
+
},
|
|
30403
|
+
{
|
|
30404
|
+
"type": {
|
|
30405
|
+
"text": "OverlayFlipState"
|
|
30406
|
+
},
|
|
30407
|
+
"description": "Gets/sets the flip state of the popover.",
|
|
30408
|
+
"name": "popover-flip",
|
|
30409
|
+
"default": "\"auto\""
|
|
30410
|
+
},
|
|
30411
|
+
{
|
|
30412
|
+
"type": {
|
|
30413
|
+
"text": "OverlayShiftState"
|
|
30414
|
+
},
|
|
30415
|
+
"description": "Gets/sets whether the popover should shift to fit within the viewport.",
|
|
30416
|
+
"name": "popover-shift",
|
|
30417
|
+
"default": "\"auto\""
|
|
30418
|
+
},
|
|
29774
30419
|
{
|
|
29775
30420
|
"name": "label-position",
|
|
29776
30421
|
"type": {
|
|
@@ -30394,6 +31039,79 @@
|
|
|
30394
31039
|
"name": "ListDropdownAware",
|
|
30395
31040
|
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
30396
31041
|
}
|
|
31042
|
+
},
|
|
31043
|
+
{
|
|
31044
|
+
"kind": "field",
|
|
31045
|
+
"name": "popoverPlacement",
|
|
31046
|
+
"type": {
|
|
31047
|
+
"text": "OverlayPlacement"
|
|
31048
|
+
},
|
|
31049
|
+
"privacy": "public",
|
|
31050
|
+
"description": "Gets/sets the placement of the popover.",
|
|
31051
|
+
"default": "'bottom'",
|
|
31052
|
+
"attribute": "popover-placement",
|
|
31053
|
+
"inheritedFrom": {
|
|
31054
|
+
"name": "ListDropdownAware",
|
|
31055
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
31056
|
+
}
|
|
31057
|
+
},
|
|
31058
|
+
{
|
|
31059
|
+
"kind": "field",
|
|
31060
|
+
"name": "popoverOffset",
|
|
31061
|
+
"type": {
|
|
31062
|
+
"text": "IOverlayOffset"
|
|
31063
|
+
},
|
|
31064
|
+
"privacy": "public",
|
|
31065
|
+
"description": "Gets/sets the offset of the popover.",
|
|
31066
|
+
"attribute": "popover-offset",
|
|
31067
|
+
"inheritedFrom": {
|
|
31068
|
+
"name": "ListDropdownAware",
|
|
31069
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
31070
|
+
}
|
|
31071
|
+
},
|
|
31072
|
+
{
|
|
31073
|
+
"kind": "field",
|
|
31074
|
+
"name": "popoverFlip",
|
|
31075
|
+
"type": {
|
|
31076
|
+
"text": "OverlayFlipState"
|
|
31077
|
+
},
|
|
31078
|
+
"privacy": "public",
|
|
31079
|
+
"description": "Gets/sets the flip state of the popover.",
|
|
31080
|
+
"default": "'auto'",
|
|
31081
|
+
"attribute": "popover-flip",
|
|
31082
|
+
"inheritedFrom": {
|
|
31083
|
+
"name": "ListDropdownAware",
|
|
31084
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
31085
|
+
}
|
|
31086
|
+
},
|
|
31087
|
+
{
|
|
31088
|
+
"kind": "field",
|
|
31089
|
+
"name": "popoverShift",
|
|
31090
|
+
"type": {
|
|
31091
|
+
"text": "OverlayShiftState"
|
|
31092
|
+
},
|
|
31093
|
+
"privacy": "public",
|
|
31094
|
+
"description": "Gets/sets whether the popover should shift to fit within the viewport.",
|
|
31095
|
+
"default": "'auto'",
|
|
31096
|
+
"attribute": "popover-shift",
|
|
31097
|
+
"inheritedFrom": {
|
|
31098
|
+
"name": "ListDropdownAware",
|
|
31099
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
31100
|
+
}
|
|
31101
|
+
},
|
|
31102
|
+
{
|
|
31103
|
+
"kind": "field",
|
|
31104
|
+
"name": "popoverFallbackPlacements",
|
|
31105
|
+
"type": {
|
|
31106
|
+
"text": "PositionPlacement[] | null"
|
|
31107
|
+
},
|
|
31108
|
+
"privacy": "public",
|
|
31109
|
+
"description": "Gets/sets the fallback placements of the popover.",
|
|
31110
|
+
"attribute": "popover-fallback-placements",
|
|
31111
|
+
"inheritedFrom": {
|
|
31112
|
+
"name": "ListDropdownAware",
|
|
31113
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
31114
|
+
}
|
|
30397
31115
|
}
|
|
30398
31116
|
],
|
|
30399
31117
|
"superclass": {
|
|
@@ -30540,6 +31258,69 @@
|
|
|
30540
31258
|
"name": "ListDropdownAware",
|
|
30541
31259
|
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
30542
31260
|
}
|
|
31261
|
+
},
|
|
31262
|
+
{
|
|
31263
|
+
"name": "popover-placement",
|
|
31264
|
+
"type": {
|
|
31265
|
+
"text": "OverlayPlacement"
|
|
31266
|
+
},
|
|
31267
|
+
"description": "Gets/sets the placement of the popover.",
|
|
31268
|
+
"default": "'bottom'",
|
|
31269
|
+
"fieldName": "popoverPlacement",
|
|
31270
|
+
"inheritedFrom": {
|
|
31271
|
+
"name": "ListDropdownAware",
|
|
31272
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
31273
|
+
}
|
|
31274
|
+
},
|
|
31275
|
+
{
|
|
31276
|
+
"name": "popover-offset",
|
|
31277
|
+
"type": {
|
|
31278
|
+
"text": "IOverlayOffset"
|
|
31279
|
+
},
|
|
31280
|
+
"description": "Gets/sets the offset of the popover.",
|
|
31281
|
+
"fieldName": "popoverOffset",
|
|
31282
|
+
"inheritedFrom": {
|
|
31283
|
+
"name": "ListDropdownAware",
|
|
31284
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
31285
|
+
}
|
|
31286
|
+
},
|
|
31287
|
+
{
|
|
31288
|
+
"name": "popover-flip",
|
|
31289
|
+
"type": {
|
|
31290
|
+
"text": "OverlayFlipState"
|
|
31291
|
+
},
|
|
31292
|
+
"description": "Gets/sets the flip state of the popover.",
|
|
31293
|
+
"default": "'auto'",
|
|
31294
|
+
"fieldName": "popoverFlip",
|
|
31295
|
+
"inheritedFrom": {
|
|
31296
|
+
"name": "ListDropdownAware",
|
|
31297
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
31298
|
+
}
|
|
31299
|
+
},
|
|
31300
|
+
{
|
|
31301
|
+
"name": "popover-shift",
|
|
31302
|
+
"type": {
|
|
31303
|
+
"text": "OverlayShiftState"
|
|
31304
|
+
},
|
|
31305
|
+
"description": "Gets/sets whether the popover should shift to fit within the viewport.",
|
|
31306
|
+
"default": "'auto'",
|
|
31307
|
+
"fieldName": "popoverShift",
|
|
31308
|
+
"inheritedFrom": {
|
|
31309
|
+
"name": "ListDropdownAware",
|
|
31310
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
31311
|
+
}
|
|
31312
|
+
},
|
|
31313
|
+
{
|
|
31314
|
+
"name": "popover-fallback-placements",
|
|
31315
|
+
"type": {
|
|
31316
|
+
"text": "PositionPlacement[] | null"
|
|
31317
|
+
},
|
|
31318
|
+
"description": "Gets/sets the fallback placements of the popover.",
|
|
31319
|
+
"fieldName": "popoverFallbackPlacements",
|
|
31320
|
+
"inheritedFrom": {
|
|
31321
|
+
"name": "ListDropdownAware",
|
|
31322
|
+
"module": "src/lib/list-dropdown/list-dropdown-aware.ts"
|
|
31323
|
+
}
|
|
30543
31324
|
}
|
|
30544
31325
|
]
|
|
30545
31326
|
}
|
|
@@ -32316,7 +33097,7 @@
|
|
|
32316
33097
|
]
|
|
32317
33098
|
}
|
|
32318
33099
|
],
|
|
32319
|
-
"branchName": "
|
|
33100
|
+
"branchName": "adopt-styles-lit-base",
|
|
32320
33101
|
"forgeTypes": {
|
|
32321
33102
|
"Theme": {
|
|
32322
33103
|
"path": "src/lib/constants.ts",
|
|
@@ -32464,39 +33245,11 @@
|
|
|
32464
33245
|
},
|
|
32465
33246
|
"IAvatarComponent": {
|
|
32466
33247
|
"path": "src/lib/avatar/avatar.ts",
|
|
32467
|
-
"lineNumber":
|
|
33248
|
+
"lineNumber": 10
|
|
32468
33249
|
},
|
|
32469
33250
|
"AvatarComponent": {
|
|
32470
33251
|
"path": "src/lib/avatar/avatar.ts",
|
|
32471
|
-
"lineNumber":
|
|
32472
|
-
},
|
|
32473
|
-
"BadgeComponentDelegateProps": {
|
|
32474
|
-
"path": "src/lib/badge/badge-component-delegate.ts",
|
|
32475
|
-
"lineNumber": 4
|
|
32476
|
-
},
|
|
32477
|
-
"IBadgeComponentDelegateOptions": {
|
|
32478
|
-
"path": "src/lib/badge/badge-component-delegate.ts",
|
|
32479
|
-
"lineNumber": 5
|
|
32480
|
-
},
|
|
32481
|
-
"IBadgeComponentDelegateConfig": {
|
|
32482
|
-
"path": "src/lib/badge/badge-component-delegate.ts",
|
|
32483
|
-
"lineNumber": 6
|
|
32484
|
-
},
|
|
32485
|
-
"BadgeComponentDelegate": {
|
|
32486
|
-
"path": "src/lib/badge/badge-component-delegate.ts",
|
|
32487
|
-
"lineNumber": 8
|
|
32488
|
-
},
|
|
32489
|
-
"BadgeTheme": {
|
|
32490
|
-
"path": "src/lib/badge/badge-constants.ts",
|
|
32491
|
-
"lineNumber": 33
|
|
32492
|
-
},
|
|
32493
|
-
"IBadgeComponent": {
|
|
32494
|
-
"path": "src/lib/badge/badge.ts",
|
|
32495
|
-
"lineNumber": 8
|
|
32496
|
-
},
|
|
32497
|
-
"BadgeComponent": {
|
|
32498
|
-
"path": "src/lib/badge/badge.ts",
|
|
32499
|
-
"lineNumber": 48
|
|
33252
|
+
"lineNumber": 54
|
|
32500
33253
|
},
|
|
32501
33254
|
"IBannerAdapter": {
|
|
32502
33255
|
"path": "src/lib/banner/banner-adapter.ts",
|
|
@@ -32566,6 +33319,34 @@
|
|
|
32566
33319
|
"path": "src/lib/bottom-sheet/bottom-sheet.ts",
|
|
32567
33320
|
"lineNumber": 73
|
|
32568
33321
|
},
|
|
33322
|
+
"BadgeComponentDelegateProps": {
|
|
33323
|
+
"path": "src/lib/badge/badge-component-delegate.ts",
|
|
33324
|
+
"lineNumber": 4
|
|
33325
|
+
},
|
|
33326
|
+
"IBadgeComponentDelegateOptions": {
|
|
33327
|
+
"path": "src/lib/badge/badge-component-delegate.ts",
|
|
33328
|
+
"lineNumber": 5
|
|
33329
|
+
},
|
|
33330
|
+
"IBadgeComponentDelegateConfig": {
|
|
33331
|
+
"path": "src/lib/badge/badge-component-delegate.ts",
|
|
33332
|
+
"lineNumber": 6
|
|
33333
|
+
},
|
|
33334
|
+
"BadgeComponentDelegate": {
|
|
33335
|
+
"path": "src/lib/badge/badge-component-delegate.ts",
|
|
33336
|
+
"lineNumber": 8
|
|
33337
|
+
},
|
|
33338
|
+
"BadgeTheme": {
|
|
33339
|
+
"path": "src/lib/badge/badge-constants.ts",
|
|
33340
|
+
"lineNumber": 33
|
|
33341
|
+
},
|
|
33342
|
+
"IBadgeComponent": {
|
|
33343
|
+
"path": "src/lib/badge/badge.ts",
|
|
33344
|
+
"lineNumber": 10
|
|
33345
|
+
},
|
|
33346
|
+
"BadgeComponent": {
|
|
33347
|
+
"path": "src/lib/badge/badge.ts",
|
|
33348
|
+
"lineNumber": 50
|
|
33349
|
+
},
|
|
32569
33350
|
"IButtonAdapter": {
|
|
32570
33351
|
"path": "src/lib/button/button-adapter.ts",
|
|
32571
33352
|
"lineNumber": 4
|
|
@@ -32776,11 +33557,11 @@
|
|
|
32776
33557
|
},
|
|
32777
33558
|
"ICardComponent": {
|
|
32778
33559
|
"path": "src/lib/card/card.ts",
|
|
32779
|
-
"lineNumber":
|
|
33560
|
+
"lineNumber": 9
|
|
32780
33561
|
},
|
|
32781
33562
|
"CardComponent": {
|
|
32782
33563
|
"path": "src/lib/card/card.ts",
|
|
32783
|
-
"lineNumber":
|
|
33564
|
+
"lineNumber": 46
|
|
32784
33565
|
},
|
|
32785
33566
|
"ICheckboxAdapter": {
|
|
32786
33567
|
"path": "src/lib/checkbox/checkbox-adapter.ts",
|
|
@@ -33082,53 +33863,61 @@
|
|
|
33082
33863
|
"path": "src/lib/dialog/dialog-constants.ts",
|
|
33083
33864
|
"lineNumber": 86
|
|
33084
33865
|
},
|
|
33866
|
+
"IDialogBeforeCloseEventData": {
|
|
33867
|
+
"path": "src/lib/dialog/dialog-constants.ts",
|
|
33868
|
+
"lineNumber": 87
|
|
33869
|
+
},
|
|
33085
33870
|
"DialogMode": {
|
|
33086
33871
|
"path": "src/lib/dialog/dialog-constants.ts",
|
|
33087
|
-
"lineNumber":
|
|
33872
|
+
"lineNumber": 91
|
|
33088
33873
|
},
|
|
33089
33874
|
"DialogType": {
|
|
33090
33875
|
"path": "src/lib/dialog/dialog-constants.ts",
|
|
33091
|
-
"lineNumber":
|
|
33876
|
+
"lineNumber": 92
|
|
33092
33877
|
},
|
|
33093
33878
|
"DialogAnimationType": {
|
|
33094
33879
|
"path": "src/lib/dialog/dialog-constants.ts",
|
|
33095
|
-
"lineNumber":
|
|
33880
|
+
"lineNumber": 93
|
|
33096
33881
|
},
|
|
33097
33882
|
"DialogPositionStrategy": {
|
|
33098
33883
|
"path": "src/lib/dialog/dialog-constants.ts",
|
|
33099
|
-
"lineNumber":
|
|
33884
|
+
"lineNumber": 94
|
|
33100
33885
|
},
|
|
33101
33886
|
"DialogPlacement": {
|
|
33102
33887
|
"path": "src/lib/dialog/dialog-constants.ts",
|
|
33103
|
-
"lineNumber":
|
|
33888
|
+
"lineNumber": 95
|
|
33104
33889
|
},
|
|
33105
33890
|
"DialogSizeStrategy": {
|
|
33106
33891
|
"path": "src/lib/dialog/dialog-constants.ts",
|
|
33107
|
-
"lineNumber":
|
|
33892
|
+
"lineNumber": 96
|
|
33108
33893
|
},
|
|
33109
33894
|
"DialogPreset": {
|
|
33110
33895
|
"path": "src/lib/dialog/dialog-constants.ts",
|
|
33111
|
-
"lineNumber":
|
|
33896
|
+
"lineNumber": 97
|
|
33897
|
+
},
|
|
33898
|
+
"DialogCloseReason": {
|
|
33899
|
+
"path": "src/lib/dialog/dialog-constants.ts",
|
|
33900
|
+
"lineNumber": 98
|
|
33112
33901
|
},
|
|
33113
33902
|
"IDialogCore": {
|
|
33114
33903
|
"path": "src/lib/dialog/dialog-core.ts",
|
|
33115
|
-
"lineNumber":
|
|
33904
|
+
"lineNumber": 17
|
|
33116
33905
|
},
|
|
33117
33906
|
"DialogCore": {
|
|
33118
33907
|
"path": "src/lib/dialog/dialog-core.ts",
|
|
33119
|
-
"lineNumber":
|
|
33908
|
+
"lineNumber": 39
|
|
33120
33909
|
},
|
|
33121
33910
|
"IDialogProperties": {
|
|
33122
33911
|
"path": "src/lib/dialog/dialog.ts",
|
|
33123
|
-
"lineNumber":
|
|
33912
|
+
"lineNumber": 29
|
|
33124
33913
|
},
|
|
33125
33914
|
"IDialogComponent": {
|
|
33126
33915
|
"path": "src/lib/dialog/dialog.ts",
|
|
33127
|
-
"lineNumber":
|
|
33916
|
+
"lineNumber": 50
|
|
33128
33917
|
},
|
|
33129
33918
|
"DialogComponent": {
|
|
33130
33919
|
"path": "src/lib/dialog/dialog.ts",
|
|
33131
|
-
"lineNumber":
|
|
33920
|
+
"lineNumber": 170
|
|
33132
33921
|
},
|
|
33133
33922
|
"IDividerComponent": {
|
|
33134
33923
|
"path": "src/lib/divider/divider.ts",
|
|
@@ -33454,34 +34243,6 @@
|
|
|
33454
34243
|
"path": "src/lib/inline-message/inline-message.ts",
|
|
33455
34244
|
"lineNumber": 52
|
|
33456
34245
|
},
|
|
33457
|
-
"ILabelAdapter": {
|
|
33458
|
-
"path": "src/lib/label/label-adapter.ts",
|
|
33459
|
-
"lineNumber": 8
|
|
33460
|
-
},
|
|
33461
|
-
"LabelAdapter": {
|
|
33462
|
-
"path": "src/lib/label/label-adapter.ts",
|
|
33463
|
-
"lineNumber": 22
|
|
33464
|
-
},
|
|
33465
|
-
"ILabelAware": {
|
|
33466
|
-
"path": "src/lib/label/label-aware.ts",
|
|
33467
|
-
"lineNumber": 3
|
|
33468
|
-
},
|
|
33469
|
-
"ILabelCore": {
|
|
33470
|
-
"path": "src/lib/label/label-core.ts",
|
|
33471
|
-
"lineNumber": 6
|
|
33472
|
-
},
|
|
33473
|
-
"LabelCore": {
|
|
33474
|
-
"path": "src/lib/label/label-core.ts",
|
|
33475
|
-
"lineNumber": 17
|
|
33476
|
-
},
|
|
33477
|
-
"ILabelComponent": {
|
|
33478
|
-
"path": "src/lib/label/label.ts",
|
|
33479
|
-
"lineNumber": 12
|
|
33480
|
-
},
|
|
33481
|
-
"LabelComponent": {
|
|
33482
|
-
"path": "src/lib/label/label.ts",
|
|
33483
|
-
"lineNumber": 39
|
|
33484
|
-
},
|
|
33485
34246
|
"IKeyboardShortcutAdapter": {
|
|
33486
34247
|
"path": "src/lib/keyboard-shortcut/keyboard-shortcut-adapter.ts",
|
|
33487
34248
|
"lineNumber": 6
|
|
@@ -33514,29 +34275,33 @@
|
|
|
33514
34275
|
"path": "src/lib/keyboard-shortcut/keyboard-shortcut.ts",
|
|
33515
34276
|
"lineNumber": 36
|
|
33516
34277
|
},
|
|
33517
|
-
"
|
|
33518
|
-
"path": "src/lib/
|
|
33519
|
-
"lineNumber":
|
|
34278
|
+
"ILabelAdapter": {
|
|
34279
|
+
"path": "src/lib/label/label-adapter.ts",
|
|
34280
|
+
"lineNumber": 8
|
|
33520
34281
|
},
|
|
33521
|
-
"
|
|
33522
|
-
"path": "src/lib/
|
|
33523
|
-
"lineNumber":
|
|
34282
|
+
"LabelAdapter": {
|
|
34283
|
+
"path": "src/lib/label/label-adapter.ts",
|
|
34284
|
+
"lineNumber": 22
|
|
33524
34285
|
},
|
|
33525
|
-
"
|
|
33526
|
-
"path": "src/lib/
|
|
33527
|
-
"lineNumber":
|
|
34286
|
+
"ILabelAware": {
|
|
34287
|
+
"path": "src/lib/label/label-aware.ts",
|
|
34288
|
+
"lineNumber": 3
|
|
33528
34289
|
},
|
|
33529
|
-
"
|
|
33530
|
-
"path": "src/lib/
|
|
33531
|
-
"lineNumber":
|
|
34290
|
+
"ILabelCore": {
|
|
34291
|
+
"path": "src/lib/label/label-core.ts",
|
|
34292
|
+
"lineNumber": 6
|
|
33532
34293
|
},
|
|
33533
|
-
"
|
|
33534
|
-
"path": "src/lib/
|
|
34294
|
+
"LabelCore": {
|
|
34295
|
+
"path": "src/lib/label/label-core.ts",
|
|
34296
|
+
"lineNumber": 17
|
|
34297
|
+
},
|
|
34298
|
+
"ILabelComponent": {
|
|
34299
|
+
"path": "src/lib/label/label.ts",
|
|
33535
34300
|
"lineNumber": 12
|
|
33536
34301
|
},
|
|
33537
|
-
"
|
|
33538
|
-
"path": "src/lib/
|
|
33539
|
-
"lineNumber":
|
|
34302
|
+
"LabelComponent": {
|
|
34303
|
+
"path": "src/lib/label/label.ts",
|
|
34304
|
+
"lineNumber": 39
|
|
33540
34305
|
},
|
|
33541
34306
|
"LabelValueComponentDelegateProps": {
|
|
33542
34307
|
"path": "src/lib/label-value/label-value-component-delegate.ts",
|
|
@@ -33562,6 +34327,30 @@
|
|
|
33562
34327
|
"path": "src/lib/label-value/label-value.ts",
|
|
33563
34328
|
"lineNumber": 63
|
|
33564
34329
|
},
|
|
34330
|
+
"ILinearProgressAdapter": {
|
|
34331
|
+
"path": "src/lib/linear-progress/linear-progress-adapter.ts",
|
|
34332
|
+
"lineNumber": 7
|
|
34333
|
+
},
|
|
34334
|
+
"LinearProgressAdapter": {
|
|
34335
|
+
"path": "src/lib/linear-progress/linear-progress-adapter.ts",
|
|
34336
|
+
"lineNumber": 14
|
|
34337
|
+
},
|
|
34338
|
+
"LinearProgressTheme": {
|
|
34339
|
+
"path": "src/lib/linear-progress/linear-progress-constants.ts",
|
|
34340
|
+
"lineNumber": 34
|
|
34341
|
+
},
|
|
34342
|
+
"LinearProgressCore": {
|
|
34343
|
+
"path": "src/lib/linear-progress/linear-progress-core.ts",
|
|
34344
|
+
"lineNumber": 11
|
|
34345
|
+
},
|
|
34346
|
+
"ILinearProgressComponent": {
|
|
34347
|
+
"path": "src/lib/linear-progress/linear-progress.ts",
|
|
34348
|
+
"lineNumber": 12
|
|
34349
|
+
},
|
|
34350
|
+
"LinearProgressComponent": {
|
|
34351
|
+
"path": "src/lib/linear-progress/linear-progress.ts",
|
|
34352
|
+
"lineNumber": 59
|
|
34353
|
+
},
|
|
33565
34354
|
"ICascadingListDropdownAwareCore": {
|
|
33566
34355
|
"path": "src/lib/list-dropdown/cascading-list-dropdown-aware-core.ts",
|
|
33567
34356
|
"lineNumber": 3
|
|
@@ -33584,83 +34373,83 @@
|
|
|
33584
34373
|
},
|
|
33585
34374
|
"IListDropdownAwareCore": {
|
|
33586
34375
|
"path": "src/lib/list-dropdown/list-dropdown-aware-core.ts",
|
|
33587
|
-
"lineNumber":
|
|
34376
|
+
"lineNumber": 5
|
|
33588
34377
|
},
|
|
33589
34378
|
"ListDropdownAwareCore": {
|
|
33590
34379
|
"path": "src/lib/list-dropdown/list-dropdown-aware-core.ts",
|
|
33591
|
-
"lineNumber":
|
|
34380
|
+
"lineNumber": 22
|
|
33592
34381
|
},
|
|
33593
34382
|
"IListDropdownAware": {
|
|
33594
34383
|
"path": "src/lib/list-dropdown/list-dropdown-aware.ts",
|
|
33595
|
-
"lineNumber":
|
|
34384
|
+
"lineNumber": 7
|
|
33596
34385
|
},
|
|
33597
34386
|
"ListDropdownAware": {
|
|
33598
34387
|
"path": "src/lib/list-dropdown/list-dropdown-aware.ts",
|
|
33599
|
-
"lineNumber":
|
|
34388
|
+
"lineNumber": 24
|
|
33600
34389
|
},
|
|
33601
34390
|
"ListDropdownOptionBuilder": {
|
|
33602
34391
|
"path": "src/lib/list-dropdown/list-dropdown-constants.ts",
|
|
33603
|
-
"lineNumber":
|
|
34392
|
+
"lineNumber": 38
|
|
33604
34393
|
},
|
|
33605
34394
|
"ListDropdownHeaderBuilder": {
|
|
33606
34395
|
"path": "src/lib/list-dropdown/list-dropdown-constants.ts",
|
|
33607
|
-
"lineNumber":
|
|
34396
|
+
"lineNumber": 39
|
|
33608
34397
|
},
|
|
33609
34398
|
"ListDropdownFooterBuilder": {
|
|
33610
34399
|
"path": "src/lib/list-dropdown/list-dropdown-constants.ts",
|
|
33611
|
-
"lineNumber":
|
|
34400
|
+
"lineNumber": 40
|
|
33612
34401
|
},
|
|
33613
34402
|
"ListDropdownOptionGroupBuilder": {
|
|
33614
34403
|
"path": "src/lib/list-dropdown/list-dropdown-constants.ts",
|
|
33615
|
-
"lineNumber":
|
|
34404
|
+
"lineNumber": 41
|
|
33616
34405
|
},
|
|
33617
34406
|
"ListDropdownTransformCallback": {
|
|
33618
34407
|
"path": "src/lib/list-dropdown/list-dropdown-constants.ts",
|
|
33619
|
-
"lineNumber":
|
|
34408
|
+
"lineNumber": 42
|
|
33620
34409
|
},
|
|
33621
34410
|
"ListDropdownIconType": {
|
|
33622
34411
|
"path": "src/lib/list-dropdown/list-dropdown-constants.ts",
|
|
33623
|
-
"lineNumber":
|
|
34412
|
+
"lineNumber": 43
|
|
33624
34413
|
},
|
|
33625
34414
|
"IBaseListDropdownOption": {
|
|
33626
34415
|
"path": "src/lib/list-dropdown/list-dropdown-constants.ts",
|
|
33627
|
-
"lineNumber":
|
|
34416
|
+
"lineNumber": 45
|
|
33628
34417
|
},
|
|
33629
34418
|
"IListDropdownOption": {
|
|
33630
34419
|
"path": "src/lib/list-dropdown/list-dropdown-constants.ts",
|
|
33631
|
-
"lineNumber":
|
|
34420
|
+
"lineNumber": 65
|
|
33632
34421
|
},
|
|
33633
34422
|
"IListDropdownOptionGroup": {
|
|
33634
34423
|
"path": "src/lib/list-dropdown/list-dropdown-constants.ts",
|
|
33635
|
-
"lineNumber":
|
|
34424
|
+
"lineNumber": 70
|
|
33636
34425
|
},
|
|
33637
34426
|
"IListDropdownSelectEventData": {
|
|
33638
34427
|
"path": "src/lib/list-dropdown/list-dropdown-constants.ts",
|
|
33639
|
-
"lineNumber":
|
|
34428
|
+
"lineNumber": 77
|
|
33640
34429
|
},
|
|
33641
34430
|
"IListDropdownConfig": {
|
|
33642
34431
|
"path": "src/lib/list-dropdown/list-dropdown-constants.ts",
|
|
33643
|
-
"lineNumber":
|
|
34432
|
+
"lineNumber": 81
|
|
33644
34433
|
},
|
|
33645
34434
|
"IListDropdownCascadingElementFactoryConfig": {
|
|
33646
34435
|
"path": "src/lib/list-dropdown/list-dropdown-constants.ts",
|
|
33647
|
-
"lineNumber":
|
|
34436
|
+
"lineNumber": 122
|
|
33648
34437
|
},
|
|
33649
34438
|
"IListDropdownOpenConfig": {
|
|
33650
34439
|
"path": "src/lib/list-dropdown/list-dropdown-constants.ts",
|
|
33651
|
-
"lineNumber":
|
|
34440
|
+
"lineNumber": 135
|
|
33652
34441
|
},
|
|
33653
34442
|
"ListDropdownType": {
|
|
33654
34443
|
"path": "src/lib/list-dropdown/list-dropdown-constants.ts",
|
|
33655
|
-
"lineNumber":
|
|
34444
|
+
"lineNumber": 137
|
|
33656
34445
|
},
|
|
33657
34446
|
"ListDropdownAsyncStyle": {
|
|
33658
34447
|
"path": "src/lib/list-dropdown/list-dropdown-constants.ts",
|
|
33659
|
-
"lineNumber":
|
|
34448
|
+
"lineNumber": 143
|
|
33660
34449
|
},
|
|
33661
34450
|
"ListDropdownTooltipConfig": {
|
|
33662
34451
|
"path": "src/lib/list-dropdown/list-dropdown-constants.ts",
|
|
33663
|
-
"lineNumber":
|
|
34452
|
+
"lineNumber": 148
|
|
33664
34453
|
},
|
|
33665
34454
|
"IListDropdownCore": {
|
|
33666
34455
|
"path": "src/lib/list-dropdown/list-dropdown-core.ts",
|
|
@@ -33672,7 +34461,7 @@
|
|
|
33672
34461
|
},
|
|
33673
34462
|
"ListDropdownOptionType": {
|
|
33674
34463
|
"path": "src/lib/list-dropdown/list-dropdown-utils.ts",
|
|
33675
|
-
"lineNumber":
|
|
34464
|
+
"lineNumber": 21
|
|
33676
34465
|
},
|
|
33677
34466
|
"IListDropdown": {
|
|
33678
34467
|
"path": "src/lib/list-dropdown/list-dropdown.ts",
|
|
@@ -34612,11 +35401,15 @@
|
|
|
34612
35401
|
},
|
|
34613
35402
|
"AppBarElevation": {
|
|
34614
35403
|
"path": "src/lib/app-bar/app-bar/app-bar-constants.ts",
|
|
34615
|
-
"lineNumber":
|
|
35404
|
+
"lineNumber": 43
|
|
34616
35405
|
},
|
|
34617
35406
|
"AppBarTheme": {
|
|
34618
35407
|
"path": "src/lib/app-bar/app-bar/app-bar-constants.ts",
|
|
34619
|
-
"lineNumber":
|
|
35408
|
+
"lineNumber": 44
|
|
35409
|
+
},
|
|
35410
|
+
"AppBarThemeMode": {
|
|
35411
|
+
"path": "src/lib/app-bar/app-bar/app-bar-constants.ts",
|
|
35412
|
+
"lineNumber": 45
|
|
34620
35413
|
},
|
|
34621
35414
|
"IAppBarCore": {
|
|
34622
35415
|
"path": "src/lib/app-bar/app-bar/app-bar-core.ts",
|
|
@@ -34624,7 +35417,7 @@
|
|
|
34624
35417
|
},
|
|
34625
35418
|
"AppBarCore": {
|
|
34626
35419
|
"path": "src/lib/app-bar/app-bar/app-bar-core.ts",
|
|
34627
|
-
"lineNumber":
|
|
35420
|
+
"lineNumber": 13
|
|
34628
35421
|
},
|
|
34629
35422
|
"IAppBarComponent": {
|
|
34630
35423
|
"path": "src/lib/app-bar/app-bar/app-bar.ts",
|
|
@@ -34632,7 +35425,7 @@
|
|
|
34632
35425
|
},
|
|
34633
35426
|
"AppBarComponent": {
|
|
34634
35427
|
"path": "src/lib/app-bar/app-bar/app-bar.ts",
|
|
34635
|
-
"lineNumber":
|
|
35428
|
+
"lineNumber": 85
|
|
34636
35429
|
},
|
|
34637
35430
|
"IAppBarHelpButtonAdapter": {
|
|
34638
35431
|
"path": "src/lib/app-bar/help-button/app-bar-help-button-adapter.ts",
|
|
@@ -34986,6 +35779,10 @@
|
|
|
34986
35779
|
"path": "src/lib/core/base/base-form-component.ts",
|
|
34987
35780
|
"lineNumber": 22
|
|
34988
35781
|
},
|
|
35782
|
+
"BaseLitElement": {
|
|
35783
|
+
"path": "src/lib/core/base/base-lit-element.ts",
|
|
35784
|
+
"lineNumber": 4
|
|
35785
|
+
},
|
|
34989
35786
|
"IBaseNullableFormComponent": {
|
|
34990
35787
|
"path": "src/lib/core/base/base-nullable-form-component.ts",
|
|
34991
35788
|
"lineNumber": 3
|
|
@@ -35250,6 +36047,30 @@
|
|
|
35250
36047
|
"path": "src/lib/date-picker/base/base-date-picker.ts",
|
|
35251
36048
|
"lineNumber": 83
|
|
35252
36049
|
},
|
|
36050
|
+
"DeprecatedIconButtonComponentDelegateProps": {
|
|
36051
|
+
"path": "src/lib/deprecated/icon-button/deprecated-icon-button-component-delegate.ts",
|
|
36052
|
+
"lineNumber": 9
|
|
36053
|
+
},
|
|
36054
|
+
"IDeprecatedIconButtonComponentDelegateOptions": {
|
|
36055
|
+
"path": "src/lib/deprecated/icon-button/deprecated-icon-button-component-delegate.ts",
|
|
36056
|
+
"lineNumber": 10
|
|
36057
|
+
},
|
|
36058
|
+
"IDeprecatedIconButtonComponentDelegateConfig": {
|
|
36059
|
+
"path": "src/lib/deprecated/icon-button/deprecated-icon-button-component-delegate.ts",
|
|
36060
|
+
"lineNumber": 19
|
|
36061
|
+
},
|
|
36062
|
+
"DeprecatedIconButtonComponentDelegate": {
|
|
36063
|
+
"path": "src/lib/deprecated/icon-button/deprecated-icon-button-component-delegate.ts",
|
|
36064
|
+
"lineNumber": 22
|
|
36065
|
+
},
|
|
36066
|
+
"IDeprecatedIconButtonComponent": {
|
|
36067
|
+
"path": "src/lib/deprecated/icon-button/deprecated-icon-button.ts",
|
|
36068
|
+
"lineNumber": 14
|
|
36069
|
+
},
|
|
36070
|
+
"DeprecatedIconButtonComponent": {
|
|
36071
|
+
"path": "src/lib/deprecated/icon-button/deprecated-icon-button.ts",
|
|
36072
|
+
"lineNumber": 32
|
|
36073
|
+
},
|
|
35253
36074
|
"DeprecatedButtonComponentDelegateProps": {
|
|
35254
36075
|
"path": "src/lib/deprecated/button/deprecated-button-component-delegate.ts",
|
|
35255
36076
|
"lineNumber": 5
|
|
@@ -35278,30 +36099,6 @@
|
|
|
35278
36099
|
"path": "src/lib/deprecated/button/deprecated-button.ts",
|
|
35279
36100
|
"lineNumber": 30
|
|
35280
36101
|
},
|
|
35281
|
-
"DeprecatedIconButtonComponentDelegateProps": {
|
|
35282
|
-
"path": "src/lib/deprecated/icon-button/deprecated-icon-button-component-delegate.ts",
|
|
35283
|
-
"lineNumber": 9
|
|
35284
|
-
},
|
|
35285
|
-
"IDeprecatedIconButtonComponentDelegateOptions": {
|
|
35286
|
-
"path": "src/lib/deprecated/icon-button/deprecated-icon-button-component-delegate.ts",
|
|
35287
|
-
"lineNumber": 10
|
|
35288
|
-
},
|
|
35289
|
-
"IDeprecatedIconButtonComponentDelegateConfig": {
|
|
35290
|
-
"path": "src/lib/deprecated/icon-button/deprecated-icon-button-component-delegate.ts",
|
|
35291
|
-
"lineNumber": 19
|
|
35292
|
-
},
|
|
35293
|
-
"DeprecatedIconButtonComponentDelegate": {
|
|
35294
|
-
"path": "src/lib/deprecated/icon-button/deprecated-icon-button-component-delegate.ts",
|
|
35295
|
-
"lineNumber": 22
|
|
35296
|
-
},
|
|
35297
|
-
"IDeprecatedIconButtonComponent": {
|
|
35298
|
-
"path": "src/lib/deprecated/icon-button/deprecated-icon-button.ts",
|
|
35299
|
-
"lineNumber": 14
|
|
35300
|
-
},
|
|
35301
|
-
"DeprecatedIconButtonComponent": {
|
|
35302
|
-
"path": "src/lib/deprecated/icon-button/deprecated-icon-button.ts",
|
|
35303
|
-
"lineNumber": 32
|
|
35304
|
-
},
|
|
35305
36102
|
"IBaseDrawerAdapter": {
|
|
35306
36103
|
"path": "src/lib/drawer/base/base-drawer-adapter.ts",
|
|
35307
36104
|
"lineNumber": 7
|
|
@@ -35436,11 +36233,11 @@
|
|
|
35436
36233
|
},
|
|
35437
36234
|
"KeyComponent": {
|
|
35438
36235
|
"path": "src/lib/key/key/key.ts",
|
|
35439
|
-
"lineNumber":
|
|
36236
|
+
"lineNumber": 23
|
|
35440
36237
|
},
|
|
35441
36238
|
"KeyItemComponent": {
|
|
35442
36239
|
"path": "src/lib/key/key-item/key-item.ts",
|
|
35443
|
-
"lineNumber":
|
|
36240
|
+
"lineNumber": 32
|
|
35444
36241
|
},
|
|
35445
36242
|
"IListAdapter": {
|
|
35446
36243
|
"path": "src/lib/list/list/list-adapter.ts",
|
|
@@ -35508,39 +36305,39 @@
|
|
|
35508
36305
|
},
|
|
35509
36306
|
"MeterDirection": {
|
|
35510
36307
|
"path": "src/lib/meter/meter/meter.ts",
|
|
35511
|
-
"lineNumber":
|
|
36308
|
+
"lineNumber": 15
|
|
35512
36309
|
},
|
|
35513
36310
|
"MeterDensity": {
|
|
35514
36311
|
"path": "src/lib/meter/meter/meter.ts",
|
|
35515
|
-
"lineNumber":
|
|
36312
|
+
"lineNumber": 16
|
|
35516
36313
|
},
|
|
35517
36314
|
"MeterShape": {
|
|
35518
36315
|
"path": "src/lib/meter/meter/meter.ts",
|
|
35519
|
-
"lineNumber":
|
|
36316
|
+
"lineNumber": 17
|
|
35520
36317
|
},
|
|
35521
36318
|
"MeterInnerShape": {
|
|
35522
36319
|
"path": "src/lib/meter/meter/meter.ts",
|
|
35523
|
-
"lineNumber":
|
|
36320
|
+
"lineNumber": 18
|
|
35524
36321
|
},
|
|
35525
36322
|
"MeterStatus": {
|
|
35526
36323
|
"path": "src/lib/meter/meter/meter.ts",
|
|
35527
|
-
"lineNumber":
|
|
36324
|
+
"lineNumber": 19
|
|
35528
36325
|
},
|
|
35529
36326
|
"MeterTheme": {
|
|
35530
36327
|
"path": "src/lib/meter/meter/meter.ts",
|
|
35531
|
-
"lineNumber":
|
|
36328
|
+
"lineNumber": 20
|
|
35532
36329
|
},
|
|
35533
36330
|
"MeterValueMode": {
|
|
35534
36331
|
"path": "src/lib/meter/meter/meter.ts",
|
|
35535
|
-
"lineNumber":
|
|
36332
|
+
"lineNumber": 21
|
|
35536
36333
|
},
|
|
35537
36334
|
"MeterComponent": {
|
|
35538
36335
|
"path": "src/lib/meter/meter/meter.ts",
|
|
35539
|
-
"lineNumber":
|
|
36336
|
+
"lineNumber": 64
|
|
35540
36337
|
},
|
|
35541
36338
|
"MeterGroupComponent": {
|
|
35542
36339
|
"path": "src/lib/meter/meter-group/meter-group.ts",
|
|
35543
|
-
"lineNumber":
|
|
36340
|
+
"lineNumber": 35
|
|
35544
36341
|
},
|
|
35545
36342
|
"IBaseOverlayCore": {
|
|
35546
36343
|
"path": "src/lib/overlay/base/base-overlay-core.ts",
|
|
@@ -35576,11 +36373,11 @@
|
|
|
35576
36373
|
},
|
|
35577
36374
|
"IOverlayAware": {
|
|
35578
36375
|
"path": "src/lib/overlay/base/overlay-aware.ts",
|
|
35579
|
-
"lineNumber":
|
|
36376
|
+
"lineNumber": 17
|
|
35580
36377
|
},
|
|
35581
36378
|
"OverlayAware": {
|
|
35582
36379
|
"path": "src/lib/overlay/base/overlay-aware.ts",
|
|
35583
|
-
"lineNumber":
|
|
36380
|
+
"lineNumber": 52
|
|
35584
36381
|
},
|
|
35585
36382
|
"RadioGroupManager": {
|
|
35586
36383
|
"path": "src/lib/radio/core/radio-group-manager.ts",
|
|
@@ -35710,6 +36507,14 @@
|
|
|
35710
36507
|
"path": "src/lib/select/core/select-utils.ts",
|
|
35711
36508
|
"lineNumber": 4
|
|
35712
36509
|
},
|
|
36510
|
+
"IOptionGroupComponent": {
|
|
36511
|
+
"path": "src/lib/select/option-group/option-group.ts",
|
|
36512
|
+
"lineNumber": 7
|
|
36513
|
+
},
|
|
36514
|
+
"OptionGroupComponent": {
|
|
36515
|
+
"path": "src/lib/select/option-group/option-group.ts",
|
|
36516
|
+
"lineNumber": 20
|
|
36517
|
+
},
|
|
35713
36518
|
"IOptionAdapter": {
|
|
35714
36519
|
"path": "src/lib/select/option/option-adapter.ts",
|
|
35715
36520
|
"lineNumber": 4
|
|
@@ -35734,14 +36539,6 @@
|
|
|
35734
36539
|
"path": "src/lib/select/option/option.ts",
|
|
35735
36540
|
"lineNumber": 20
|
|
35736
36541
|
},
|
|
35737
|
-
"IOptionGroupComponent": {
|
|
35738
|
-
"path": "src/lib/select/option-group/option-group.ts",
|
|
35739
|
-
"lineNumber": 7
|
|
35740
|
-
},
|
|
35741
|
-
"OptionGroupComponent": {
|
|
35742
|
-
"path": "src/lib/select/option-group/option-group.ts",
|
|
35743
|
-
"lineNumber": 20
|
|
35744
|
-
},
|
|
35745
36542
|
"OptionListenerDestructor": {
|
|
35746
36543
|
"path": "src/lib/select/select/select-adapter.ts",
|
|
35747
36544
|
"lineNumber": 11
|
|
@@ -35764,15 +36561,11 @@
|
|
|
35764
36561
|
},
|
|
35765
36562
|
"ISelectComponent": {
|
|
35766
36563
|
"path": "src/lib/select/select/select.ts",
|
|
35767
|
-
"lineNumber":
|
|
36564
|
+
"lineNumber": 30
|
|
35768
36565
|
},
|
|
35769
36566
|
"SelectComponent": {
|
|
35770
36567
|
"path": "src/lib/select/select/select.ts",
|
|
35771
|
-
"lineNumber":
|
|
35772
|
-
},
|
|
35773
|
-
"ISplitViewBase": {
|
|
35774
|
-
"path": "src/lib/split-view/core/split-view-base.ts",
|
|
35775
|
-
"lineNumber": 4
|
|
36568
|
+
"lineNumber": 182
|
|
35776
36569
|
},
|
|
35777
36570
|
"ISelectDropdownAdapter": {
|
|
35778
36571
|
"path": "src/lib/select/select-dropdown/select-dropdown-adapter.ts",
|
|
@@ -35798,6 +36591,10 @@
|
|
|
35798
36591
|
"path": "src/lib/select/select-dropdown/select-dropdown.ts",
|
|
35799
36592
|
"lineNumber": 39
|
|
35800
36593
|
},
|
|
36594
|
+
"ISplitViewBase": {
|
|
36595
|
+
"path": "src/lib/split-view/core/split-view-base.ts",
|
|
36596
|
+
"lineNumber": 4
|
|
36597
|
+
},
|
|
35801
36598
|
"ISplitViewAdapter": {
|
|
35802
36599
|
"path": "src/lib/split-view/split-view/split-view-adapter.ts",
|
|
35803
36600
|
"lineNumber": 8
|