@tylertech/forge 3.8.0-dev.4 → 3.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/custom-elements.json
CHANGED
|
@@ -787,6 +787,194 @@
|
|
|
787
787
|
}
|
|
788
788
|
]
|
|
789
789
|
},
|
|
790
|
+
{
|
|
791
|
+
"kind": "javascript-module",
|
|
792
|
+
"path": "src/lib/avatar/avatar.ts",
|
|
793
|
+
"declarations": [
|
|
794
|
+
{
|
|
795
|
+
"kind": "variable",
|
|
796
|
+
"name": "AVATAR_TAG_NAME",
|
|
797
|
+
"type": {
|
|
798
|
+
"text": "keyof HTMLElementTagNameMap"
|
|
799
|
+
},
|
|
800
|
+
"default": "'forge-avatar'"
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
"kind": "class",
|
|
804
|
+
"description": "",
|
|
805
|
+
"name": "AvatarComponent",
|
|
806
|
+
"cssProperties": [
|
|
807
|
+
{
|
|
808
|
+
"type": {
|
|
809
|
+
"text": "string"
|
|
810
|
+
},
|
|
811
|
+
"description": "The background color of the avatar.",
|
|
812
|
+
"name": "--forge-avatar-background"
|
|
813
|
+
},
|
|
814
|
+
{
|
|
815
|
+
"type": {
|
|
816
|
+
"text": "number"
|
|
817
|
+
},
|
|
818
|
+
"description": "The border radius of the avatar, defaults to 50%.",
|
|
819
|
+
"name": "--forge-avatar-shape"
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
"type": {
|
|
823
|
+
"text": "color"
|
|
824
|
+
},
|
|
825
|
+
"description": "The text color of the avatar.",
|
|
826
|
+
"name": "--forge-avatar-color"
|
|
827
|
+
},
|
|
828
|
+
{
|
|
829
|
+
"type": {
|
|
830
|
+
"text": "number"
|
|
831
|
+
},
|
|
832
|
+
"description": "The height and width of the avatar.",
|
|
833
|
+
"name": "--forge-avatar-size"
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
"type": {
|
|
837
|
+
"text": "number"
|
|
838
|
+
},
|
|
839
|
+
"description": "The transition duration for animations.",
|
|
840
|
+
"name": "--forge-avatar-transition-duration"
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
"type": {
|
|
844
|
+
"text": "string"
|
|
845
|
+
},
|
|
846
|
+
"description": "The transition timing function for animations.",
|
|
847
|
+
"name": "--forge-avatar-transition-timing"
|
|
848
|
+
}
|
|
849
|
+
],
|
|
850
|
+
"cssParts": [
|
|
851
|
+
{
|
|
852
|
+
"description": "The root container element.",
|
|
853
|
+
"name": "root"
|
|
854
|
+
}
|
|
855
|
+
],
|
|
856
|
+
"slots": [
|
|
857
|
+
{
|
|
858
|
+
"description": "The default slot for avatar content if not provided via text/imageUrl.",
|
|
859
|
+
"name": ""
|
|
860
|
+
}
|
|
861
|
+
],
|
|
862
|
+
"members": [
|
|
863
|
+
{
|
|
864
|
+
"kind": "field",
|
|
865
|
+
"name": "text",
|
|
866
|
+
"type": {
|
|
867
|
+
"text": "string"
|
|
868
|
+
},
|
|
869
|
+
"privacy": "public",
|
|
870
|
+
"default": "''",
|
|
871
|
+
"description": "The text to display in the avatar.",
|
|
872
|
+
"attribute": "text"
|
|
873
|
+
},
|
|
874
|
+
{
|
|
875
|
+
"kind": "field",
|
|
876
|
+
"name": "letterCount",
|
|
877
|
+
"type": {
|
|
878
|
+
"text": "number"
|
|
879
|
+
},
|
|
880
|
+
"privacy": "public",
|
|
881
|
+
"default": "2",
|
|
882
|
+
"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.",
|
|
883
|
+
"attribute": "letter-count"
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
"kind": "field",
|
|
887
|
+
"name": "imageUrl",
|
|
888
|
+
"type": {
|
|
889
|
+
"text": "string"
|
|
890
|
+
},
|
|
891
|
+
"privacy": "public",
|
|
892
|
+
"default": "''",
|
|
893
|
+
"description": "The background image URL to use.",
|
|
894
|
+
"attribute": "image-url"
|
|
895
|
+
},
|
|
896
|
+
{
|
|
897
|
+
"kind": "field",
|
|
898
|
+
"name": "_image",
|
|
899
|
+
"type": {
|
|
900
|
+
"text": "HTMLImageElement | undefined"
|
|
901
|
+
},
|
|
902
|
+
"privacy": "private"
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
"kind": "method",
|
|
906
|
+
"name": "_tryLoadImage",
|
|
907
|
+
"privacy": "private",
|
|
908
|
+
"return": {
|
|
909
|
+
"type": {
|
|
910
|
+
"text": "Promise<void>"
|
|
911
|
+
}
|
|
912
|
+
}
|
|
913
|
+
}
|
|
914
|
+
],
|
|
915
|
+
"attributes": [
|
|
916
|
+
{
|
|
917
|
+
"name": "text",
|
|
918
|
+
"type": {
|
|
919
|
+
"text": "string"
|
|
920
|
+
},
|
|
921
|
+
"default": "''",
|
|
922
|
+
"description": "The text to display in the avatar.",
|
|
923
|
+
"fieldName": "text"
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
"name": "letter-count",
|
|
927
|
+
"type": {
|
|
928
|
+
"text": "number"
|
|
929
|
+
},
|
|
930
|
+
"default": "2",
|
|
931
|
+
"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.",
|
|
932
|
+
"fieldName": "letterCount"
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
"name": "image-url",
|
|
936
|
+
"type": {
|
|
937
|
+
"text": "string"
|
|
938
|
+
},
|
|
939
|
+
"default": "''",
|
|
940
|
+
"description": "The background image URL to use.",
|
|
941
|
+
"fieldName": "imageUrl"
|
|
942
|
+
}
|
|
943
|
+
],
|
|
944
|
+
"superclass": {
|
|
945
|
+
"name": "BaseLitElement",
|
|
946
|
+
"module": "/src/lib/core/base/base-lit-element"
|
|
947
|
+
},
|
|
948
|
+
"tagName": "forge-avatar",
|
|
949
|
+
"summary": "Avatars represent an entity via text or image.",
|
|
950
|
+
"cssClasses": [
|
|
951
|
+
{
|
|
952
|
+
"name": "forge-avatar",
|
|
953
|
+
"description": "The avatar class _(required)_."
|
|
954
|
+
}
|
|
955
|
+
],
|
|
956
|
+
"customElement": true
|
|
957
|
+
}
|
|
958
|
+
],
|
|
959
|
+
"exports": [
|
|
960
|
+
{
|
|
961
|
+
"kind": "js",
|
|
962
|
+
"name": "AVATAR_TAG_NAME",
|
|
963
|
+
"declaration": {
|
|
964
|
+
"name": "AVATAR_TAG_NAME",
|
|
965
|
+
"module": "src/lib/avatar/avatar.ts"
|
|
966
|
+
}
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
"kind": "js",
|
|
970
|
+
"name": "AvatarComponent",
|
|
971
|
+
"declaration": {
|
|
972
|
+
"name": "AvatarComponent",
|
|
973
|
+
"module": "src/lib/avatar/avatar.ts"
|
|
974
|
+
}
|
|
975
|
+
}
|
|
976
|
+
]
|
|
977
|
+
},
|
|
790
978
|
{
|
|
791
979
|
"kind": "javascript-module",
|
|
792
980
|
"path": "src/lib/backdrop/backdrop.ts",
|
|
@@ -992,168 +1180,153 @@
|
|
|
992
1180
|
},
|
|
993
1181
|
{
|
|
994
1182
|
"kind": "javascript-module",
|
|
995
|
-
"path": "src/lib/
|
|
1183
|
+
"path": "src/lib/badge/badge.ts",
|
|
996
1184
|
"declarations": [
|
|
997
1185
|
{
|
|
998
1186
|
"kind": "variable",
|
|
999
|
-
"name": "
|
|
1187
|
+
"name": "BADGE_TAG_NAME",
|
|
1000
1188
|
"type": {
|
|
1001
1189
|
"text": "keyof HTMLElementTagNameMap"
|
|
1002
1190
|
},
|
|
1003
|
-
"default": "'forge-
|
|
1191
|
+
"default": "'forge-badge'"
|
|
1004
1192
|
},
|
|
1005
1193
|
{
|
|
1006
1194
|
"kind": "class",
|
|
1007
1195
|
"description": "",
|
|
1008
|
-
"name": "
|
|
1196
|
+
"name": "BadgeComponent",
|
|
1009
1197
|
"cssProperties": [
|
|
1010
1198
|
{
|
|
1011
|
-
"
|
|
1012
|
-
|
|
1013
|
-
},
|
|
1014
|
-
"description": "The background color of the avatar.",
|
|
1015
|
-
"name": "--forge-avatar-background"
|
|
1199
|
+
"description": "The background color.",
|
|
1200
|
+
"name": "--forge-badge-background"
|
|
1016
1201
|
},
|
|
1017
1202
|
{
|
|
1018
|
-
"
|
|
1019
|
-
|
|
1020
|
-
},
|
|
1021
|
-
"description": "The border radius of the avatar, defaults to 50%.",
|
|
1022
|
-
"name": "--forge-avatar-shape"
|
|
1203
|
+
"description": "The text color.",
|
|
1204
|
+
"name": "--forge-badge-color"
|
|
1023
1205
|
},
|
|
1024
1206
|
{
|
|
1025
|
-
"
|
|
1026
|
-
|
|
1027
|
-
},
|
|
1028
|
-
"description": "The text color of the avatar.",
|
|
1029
|
-
"name": "--forge-avatar-color"
|
|
1207
|
+
"description": "The shape radius.",
|
|
1208
|
+
"name": "--forge-badge-shape"
|
|
1030
1209
|
},
|
|
1031
1210
|
{
|
|
1032
|
-
"
|
|
1033
|
-
|
|
1034
|
-
},
|
|
1035
|
-
"description": "The height and width of the avatar.",
|
|
1036
|
-
"name": "--forge-avatar-size"
|
|
1211
|
+
"description": "The inline padding.",
|
|
1212
|
+
"name": "--forge-badge-padding-inline"
|
|
1037
1213
|
},
|
|
1038
1214
|
{
|
|
1039
|
-
"
|
|
1040
|
-
|
|
1041
|
-
},
|
|
1042
|
-
"description": "The transition duration for animations.",
|
|
1043
|
-
"name": "--forge-avatar-transition-duration"
|
|
1215
|
+
"description": "The block padding.",
|
|
1216
|
+
"name": "--forge-badge-padding-block"
|
|
1044
1217
|
},
|
|
1045
1218
|
{
|
|
1046
|
-
"
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
"description": "The transition timing function for animations.",
|
|
1050
|
-
"name": "--forge-avatar-transition-timing"
|
|
1051
|
-
}
|
|
1052
|
-
],
|
|
1053
|
-
"cssParts": [
|
|
1219
|
+
"description": "The border width.",
|
|
1220
|
+
"name": "--forge-badge-border-width"
|
|
1221
|
+
},
|
|
1054
1222
|
{
|
|
1055
|
-
"description": "The
|
|
1056
|
-
"name": "
|
|
1223
|
+
"description": "The border color.",
|
|
1224
|
+
"name": "--forge-badge-border-color"
|
|
1225
|
+
},
|
|
1226
|
+
{
|
|
1227
|
+
"description": "The border style.",
|
|
1228
|
+
"name": "--forge-badge-border-style"
|
|
1229
|
+
},
|
|
1230
|
+
{
|
|
1231
|
+
"description": "The spacing between the content within the badge.",
|
|
1232
|
+
"name": "--forge-badge-gap"
|
|
1057
1233
|
}
|
|
1058
1234
|
],
|
|
1059
1235
|
"slots": [
|
|
1060
1236
|
{
|
|
1061
|
-
"description": "
|
|
1237
|
+
"description": "Default content placed inside the badge.",
|
|
1062
1238
|
"name": ""
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
"description": "Content placed before the default content.",
|
|
1242
|
+
"name": "start"
|
|
1243
|
+
},
|
|
1244
|
+
{
|
|
1245
|
+
"description": "Content placed after the default content.",
|
|
1246
|
+
"name": "end"
|
|
1063
1247
|
}
|
|
1064
1248
|
],
|
|
1065
1249
|
"members": [
|
|
1066
1250
|
{
|
|
1067
1251
|
"kind": "field",
|
|
1068
|
-
"name": "
|
|
1252
|
+
"name": "#internals",
|
|
1253
|
+
"privacy": "private",
|
|
1069
1254
|
"type": {
|
|
1070
|
-
"text": "
|
|
1071
|
-
}
|
|
1072
|
-
"privacy": "public",
|
|
1073
|
-
"default": "''",
|
|
1074
|
-
"description": "The text to display in the avatar.",
|
|
1075
|
-
"attribute": "text"
|
|
1255
|
+
"text": "ElementInternals"
|
|
1256
|
+
}
|
|
1076
1257
|
},
|
|
1077
1258
|
{
|
|
1078
1259
|
"kind": "field",
|
|
1079
|
-
"name": "
|
|
1260
|
+
"name": "dot",
|
|
1080
1261
|
"type": {
|
|
1081
|
-
"text": "
|
|
1262
|
+
"text": "boolean"
|
|
1082
1263
|
},
|
|
1083
1264
|
"privacy": "public",
|
|
1084
|
-
"default": "
|
|
1085
|
-
"description": "Controls
|
|
1086
|
-
"attribute": "letter-count"
|
|
1265
|
+
"default": "false",
|
|
1266
|
+
"description": "Controls whether the badge will be a small dot without any content visible."
|
|
1087
1267
|
},
|
|
1088
1268
|
{
|
|
1089
1269
|
"kind": "field",
|
|
1090
|
-
"name": "
|
|
1270
|
+
"name": "theme",
|
|
1091
1271
|
"type": {
|
|
1092
|
-
"text": "
|
|
1272
|
+
"text": "BadgeTheme"
|
|
1093
1273
|
},
|
|
1094
1274
|
"privacy": "public",
|
|
1095
|
-
"default": "''",
|
|
1096
|
-
"description": "The
|
|
1097
|
-
"attribute": "image-url"
|
|
1275
|
+
"default": "'default'",
|
|
1276
|
+
"description": "The theme of the badge."
|
|
1098
1277
|
},
|
|
1099
1278
|
{
|
|
1100
1279
|
"kind": "field",
|
|
1101
|
-
"name": "
|
|
1280
|
+
"name": "strong",
|
|
1102
1281
|
"type": {
|
|
1103
|
-
"text": "
|
|
1282
|
+
"text": "boolean"
|
|
1104
1283
|
},
|
|
1105
|
-
"privacy": "
|
|
1284
|
+
"privacy": "public",
|
|
1285
|
+
"default": "false",
|
|
1286
|
+
"description": "Controls whether the badge will have a stronger visual appearance."
|
|
1106
1287
|
},
|
|
1107
1288
|
{
|
|
1108
|
-
"kind": "
|
|
1109
|
-
"name": "
|
|
1110
|
-
"
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1289
|
+
"kind": "field",
|
|
1290
|
+
"name": "hide",
|
|
1291
|
+
"type": {
|
|
1292
|
+
"text": "boolean"
|
|
1293
|
+
},
|
|
1294
|
+
"privacy": "public",
|
|
1295
|
+
"default": "false",
|
|
1296
|
+
"description": "Controls whether the badge is visible."
|
|
1116
1297
|
}
|
|
1117
1298
|
],
|
|
1118
|
-
"
|
|
1299
|
+
"superclass": {
|
|
1300
|
+
"name": "BaseLitElement",
|
|
1301
|
+
"module": "/src/lib/core/base/base-lit-element"
|
|
1302
|
+
},
|
|
1303
|
+
"tagName": "forge-badge",
|
|
1304
|
+
"states": [
|
|
1119
1305
|
{
|
|
1120
|
-
"name": "
|
|
1121
|
-
"
|
|
1122
|
-
"text": "string"
|
|
1123
|
-
},
|
|
1124
|
-
"default": "''",
|
|
1125
|
-
"description": "The text to display in the avatar.",
|
|
1126
|
-
"fieldName": "text"
|
|
1306
|
+
"name": "dot",
|
|
1307
|
+
"description": "The badge is rendered as a dot."
|
|
1127
1308
|
},
|
|
1128
1309
|
{
|
|
1129
|
-
"name": "
|
|
1130
|
-
"
|
|
1131
|
-
"text": "number"
|
|
1132
|
-
},
|
|
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.",
|
|
1135
|
-
"fieldName": "letterCount"
|
|
1310
|
+
"name": "strong",
|
|
1311
|
+
"description": "The badge has a stronger visual appearance."
|
|
1136
1312
|
},
|
|
1137
1313
|
{
|
|
1138
|
-
"name": "
|
|
1139
|
-
"
|
|
1140
|
-
"text": "string"
|
|
1141
|
-
},
|
|
1142
|
-
"default": "''",
|
|
1143
|
-
"description": "The background image URL to use.",
|
|
1144
|
-
"fieldName": "imageUrl"
|
|
1314
|
+
"name": "hide",
|
|
1315
|
+
"description": "The badge is hidden."
|
|
1145
1316
|
}
|
|
1146
1317
|
],
|
|
1147
|
-
"superclass": {
|
|
1148
|
-
"name": "BaseLitElement",
|
|
1149
|
-
"module": "/src/lib/core/base/base-lit-element"
|
|
1150
|
-
},
|
|
1151
|
-
"tagName": "forge-avatar",
|
|
1152
|
-
"summary": "Avatars represent an entity via text or image.",
|
|
1153
1318
|
"cssClasses": [
|
|
1154
1319
|
{
|
|
1155
|
-
"name": "forge-
|
|
1156
|
-
"description": "The
|
|
1320
|
+
"name": "forge-badge",
|
|
1321
|
+
"description": "The badge class _(required)_."
|
|
1322
|
+
},
|
|
1323
|
+
{
|
|
1324
|
+
"name": "forge-badge--dot",
|
|
1325
|
+
"description": "Renders the badge as a dot."
|
|
1326
|
+
},
|
|
1327
|
+
{
|
|
1328
|
+
"name": "forge-badge__icon",
|
|
1329
|
+
"description": "Styles a child element as an icon."
|
|
1157
1330
|
}
|
|
1158
1331
|
],
|
|
1159
1332
|
"customElement": true
|
|
@@ -1162,18 +1335,18 @@
|
|
|
1162
1335
|
"exports": [
|
|
1163
1336
|
{
|
|
1164
1337
|
"kind": "js",
|
|
1165
|
-
"name": "
|
|
1338
|
+
"name": "BADGE_TAG_NAME",
|
|
1166
1339
|
"declaration": {
|
|
1167
|
-
"name": "
|
|
1168
|
-
"module": "src/lib/
|
|
1340
|
+
"name": "BADGE_TAG_NAME",
|
|
1341
|
+
"module": "src/lib/badge/badge.ts"
|
|
1169
1342
|
}
|
|
1170
1343
|
},
|
|
1171
1344
|
{
|
|
1172
1345
|
"kind": "js",
|
|
1173
|
-
"name": "
|
|
1346
|
+
"name": "BadgeComponent",
|
|
1174
1347
|
"declaration": {
|
|
1175
|
-
"name": "
|
|
1176
|
-
"module": "src/lib/
|
|
1348
|
+
"name": "BadgeComponent",
|
|
1349
|
+
"module": "src/lib/badge/badge.ts"
|
|
1177
1350
|
}
|
|
1178
1351
|
}
|
|
1179
1352
|
]
|
|
@@ -1555,179 +1728,6 @@
|
|
|
1555
1728
|
}
|
|
1556
1729
|
]
|
|
1557
1730
|
},
|
|
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
|
-
},
|
|
1731
1731
|
{
|
|
1732
1732
|
"kind": "javascript-module",
|
|
1733
1733
|
"path": "src/lib/button/button.ts",
|
|
@@ -24175,88 +24175,78 @@
|
|
|
24175
24175
|
},
|
|
24176
24176
|
{
|
|
24177
24177
|
"kind": "javascript-module",
|
|
24178
|
-
"path": "src/lib/deprecated/
|
|
24178
|
+
"path": "src/lib/deprecated/button/deprecated-button.ts",
|
|
24179
24179
|
"declarations": [
|
|
24180
24180
|
{
|
|
24181
24181
|
"kind": "class",
|
|
24182
24182
|
"description": "",
|
|
24183
|
-
"name": "
|
|
24183
|
+
"name": "DeprecatedButtonComponent",
|
|
24184
24184
|
"members": [
|
|
24185
24185
|
{
|
|
24186
24186
|
"kind": "field",
|
|
24187
|
-
"name": "
|
|
24188
|
-
"type": {
|
|
24189
|
-
"text": "boolean"
|
|
24190
|
-
},
|
|
24191
|
-
"privacy": "private",
|
|
24192
|
-
"default": "false"
|
|
24193
|
-
},
|
|
24194
|
-
{
|
|
24195
|
-
"kind": "field",
|
|
24196
|
-
"name": "_toggle",
|
|
24187
|
+
"name": "_slotElement",
|
|
24197
24188
|
"type": {
|
|
24198
|
-
"text": "
|
|
24189
|
+
"text": "HTMLSlotElement"
|
|
24199
24190
|
},
|
|
24200
24191
|
"privacy": "private",
|
|
24201
|
-
"default": "
|
|
24192
|
+
"default": "getShadowElement(this, 'slot:not([name])')"
|
|
24202
24193
|
},
|
|
24203
24194
|
{
|
|
24204
24195
|
"kind": "field",
|
|
24205
|
-
"name": "
|
|
24196
|
+
"name": "_focusIndicator",
|
|
24206
24197
|
"type": {
|
|
24207
|
-
"text": "
|
|
24198
|
+
"text": "IFocusIndicatorComponent"
|
|
24208
24199
|
},
|
|
24209
24200
|
"privacy": "private",
|
|
24210
|
-
"default": "
|
|
24201
|
+
"default": "getShadowElement(this, FOCUS_INDICATOR_CONSTANTS.elementName)"
|
|
24211
24202
|
},
|
|
24212
24203
|
{
|
|
24213
24204
|
"kind": "field",
|
|
24214
|
-
"name": "
|
|
24205
|
+
"name": "_stateLayer",
|
|
24215
24206
|
"type": {
|
|
24216
|
-
"text": "
|
|
24207
|
+
"text": "IStateLayerComponent"
|
|
24217
24208
|
},
|
|
24218
24209
|
"privacy": "private",
|
|
24219
|
-
"default": "
|
|
24210
|
+
"default": "getShadowElement(this, STATE_LAYER_CONSTANTS.elementName)"
|
|
24220
24211
|
},
|
|
24221
24212
|
{
|
|
24222
24213
|
"kind": "field",
|
|
24223
|
-
"name": "
|
|
24214
|
+
"name": "_buttonOrAnchorElement",
|
|
24224
24215
|
"type": {
|
|
24225
|
-
"text": "
|
|
24216
|
+
"text": "HTMLButtonElement | HTMLAnchorElement | null"
|
|
24226
24217
|
},
|
|
24227
24218
|
"privacy": "private",
|
|
24228
|
-
"default": "
|
|
24219
|
+
"default": "null"
|
|
24229
24220
|
},
|
|
24230
24221
|
{
|
|
24231
24222
|
"kind": "field",
|
|
24232
|
-
"name": "
|
|
24223
|
+
"name": "_type",
|
|
24233
24224
|
"type": {
|
|
24234
|
-
"text": "
|
|
24225
|
+
"text": "DeprecatedButtonType"
|
|
24235
24226
|
},
|
|
24236
|
-
"privacy": "private"
|
|
24237
|
-
"default": "getShadowElement(this, FOCUS_INDICATOR_CONSTANTS.elementName)"
|
|
24227
|
+
"privacy": "private"
|
|
24238
24228
|
},
|
|
24239
24229
|
{
|
|
24240
24230
|
"kind": "field",
|
|
24241
|
-
"name": "
|
|
24231
|
+
"name": "_disabled",
|
|
24242
24232
|
"type": {
|
|
24243
|
-
"text": "
|
|
24233
|
+
"text": "boolean"
|
|
24244
24234
|
},
|
|
24245
24235
|
"privacy": "private",
|
|
24246
|
-
"default": "
|
|
24236
|
+
"default": "false"
|
|
24247
24237
|
},
|
|
24248
24238
|
{
|
|
24249
24239
|
"kind": "field",
|
|
24250
|
-
"name": "
|
|
24240
|
+
"name": "_fullWidth",
|
|
24251
24241
|
"type": {
|
|
24252
|
-
"text": "
|
|
24242
|
+
"text": "boolean"
|
|
24253
24243
|
},
|
|
24254
24244
|
"privacy": "private",
|
|
24255
|
-
"default": "
|
|
24245
|
+
"default": "false"
|
|
24256
24246
|
},
|
|
24257
24247
|
{
|
|
24258
24248
|
"kind": "field",
|
|
24259
|
-
"name": "
|
|
24249
|
+
"name": "_buttonChangeListener",
|
|
24260
24250
|
"privacy": "private"
|
|
24261
24251
|
},
|
|
24262
24252
|
{
|
|
@@ -24270,17 +24260,6 @@
|
|
|
24270
24260
|
{
|
|
24271
24261
|
"kind": "field",
|
|
24272
24262
|
"name": "_keydownListener",
|
|
24273
|
-
"type": {
|
|
24274
|
-
"text": "EventListener"
|
|
24275
|
-
},
|
|
24276
|
-
"privacy": "private"
|
|
24277
|
-
},
|
|
24278
|
-
{
|
|
24279
|
-
"kind": "field",
|
|
24280
|
-
"name": "_toggleClickListener",
|
|
24281
|
-
"type": {
|
|
24282
|
-
"text": "EventListener"
|
|
24283
|
-
},
|
|
24284
24263
|
"privacy": "private"
|
|
24285
24264
|
},
|
|
24286
24265
|
{
|
|
@@ -24303,17 +24282,7 @@
|
|
|
24303
24282
|
},
|
|
24304
24283
|
{
|
|
24305
24284
|
"kind": "method",
|
|
24306
|
-
"name": "
|
|
24307
|
-
"privacy": "private",
|
|
24308
|
-
"return": {
|
|
24309
|
-
"type": {
|
|
24310
|
-
"text": "void"
|
|
24311
|
-
}
|
|
24312
|
-
}
|
|
24313
|
-
},
|
|
24314
|
-
{
|
|
24315
|
-
"kind": "method",
|
|
24316
|
-
"name": "_onToggle",
|
|
24285
|
+
"name": "_onButtonChange",
|
|
24317
24286
|
"privacy": "private",
|
|
24318
24287
|
"return": {
|
|
24319
24288
|
"type": {
|
|
@@ -24351,47 +24320,17 @@
|
|
|
24351
24320
|
}
|
|
24352
24321
|
}
|
|
24353
24322
|
},
|
|
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
|
-
},
|
|
24384
24323
|
{
|
|
24385
24324
|
"kind": "field",
|
|
24386
|
-
"name": "
|
|
24325
|
+
"name": "type",
|
|
24387
24326
|
"type": {
|
|
24388
|
-
"text": "
|
|
24327
|
+
"text": "DeprecatedButtonType"
|
|
24389
24328
|
},
|
|
24390
24329
|
"privacy": "public"
|
|
24391
24330
|
},
|
|
24392
24331
|
{
|
|
24393
24332
|
"kind": "field",
|
|
24394
|
-
"name": "
|
|
24333
|
+
"name": "disabled",
|
|
24395
24334
|
"type": {
|
|
24396
24335
|
"text": "boolean"
|
|
24397
24336
|
},
|
|
@@ -24399,20 +24338,12 @@
|
|
|
24399
24338
|
},
|
|
24400
24339
|
{
|
|
24401
24340
|
"kind": "field",
|
|
24402
|
-
"name": "
|
|
24341
|
+
"name": "fullWidth",
|
|
24403
24342
|
"type": {
|
|
24404
24343
|
"text": "boolean"
|
|
24405
24344
|
},
|
|
24406
24345
|
"privacy": "public"
|
|
24407
24346
|
},
|
|
24408
|
-
{
|
|
24409
|
-
"kind": "field",
|
|
24410
|
-
"name": "densityLevel",
|
|
24411
|
-
"type": {
|
|
24412
|
-
"text": "number"
|
|
24413
|
-
},
|
|
24414
|
-
"privacy": "public"
|
|
24415
|
-
},
|
|
24416
24347
|
{
|
|
24417
24348
|
"kind": "method",
|
|
24418
24349
|
"name": "focus",
|
|
@@ -24433,108 +24364,110 @@
|
|
|
24433
24364
|
]
|
|
24434
24365
|
}
|
|
24435
24366
|
],
|
|
24436
|
-
"events": [
|
|
24437
|
-
{
|
|
24438
|
-
"name": "forge-icon-button-toggle",
|
|
24439
|
-
"type": {
|
|
24440
|
-
"text": "CustomEvent"
|
|
24441
|
-
}
|
|
24442
|
-
}
|
|
24443
|
-
],
|
|
24444
24367
|
"superclass": {
|
|
24445
24368
|
"name": "BaseComponent",
|
|
24446
24369
|
"module": "/src/lib/core/base/base-component"
|
|
24447
24370
|
},
|
|
24448
|
-
"tagName": "forge-deprecated-
|
|
24449
|
-
"deprecated": "Use the `<forge-
|
|
24371
|
+
"tagName": "forge-deprecated-button",
|
|
24372
|
+
"deprecated": "Use the `<forge-button>` element instead.",
|
|
24450
24373
|
"customElement": true
|
|
24451
24374
|
}
|
|
24452
24375
|
],
|
|
24453
24376
|
"exports": [
|
|
24454
24377
|
{
|
|
24455
24378
|
"kind": "js",
|
|
24456
|
-
"name": "
|
|
24379
|
+
"name": "DeprecatedButtonComponent",
|
|
24457
24380
|
"declaration": {
|
|
24458
|
-
"name": "
|
|
24459
|
-
"module": "src/lib/deprecated/
|
|
24381
|
+
"name": "DeprecatedButtonComponent",
|
|
24382
|
+
"module": "src/lib/deprecated/button/deprecated-button.ts"
|
|
24460
24383
|
}
|
|
24461
24384
|
}
|
|
24462
24385
|
]
|
|
24463
24386
|
},
|
|
24464
24387
|
{
|
|
24465
24388
|
"kind": "javascript-module",
|
|
24466
|
-
"path": "src/lib/deprecated/button/deprecated-button.ts",
|
|
24389
|
+
"path": "src/lib/deprecated/icon-button/deprecated-icon-button.ts",
|
|
24467
24390
|
"declarations": [
|
|
24468
24391
|
{
|
|
24469
24392
|
"kind": "class",
|
|
24470
24393
|
"description": "",
|
|
24471
|
-
"name": "
|
|
24394
|
+
"name": "DeprecatedIconButtonComponent",
|
|
24472
24395
|
"members": [
|
|
24473
24396
|
{
|
|
24474
24397
|
"kind": "field",
|
|
24475
|
-
"name": "
|
|
24398
|
+
"name": "_disabled",
|
|
24476
24399
|
"type": {
|
|
24477
|
-
"text": "
|
|
24400
|
+
"text": "boolean"
|
|
24478
24401
|
},
|
|
24479
24402
|
"privacy": "private",
|
|
24480
|
-
"default": "
|
|
24403
|
+
"default": "false"
|
|
24481
24404
|
},
|
|
24482
24405
|
{
|
|
24483
24406
|
"kind": "field",
|
|
24484
|
-
"name": "
|
|
24407
|
+
"name": "_toggle",
|
|
24485
24408
|
"type": {
|
|
24486
|
-
"text": "
|
|
24409
|
+
"text": "boolean"
|
|
24487
24410
|
},
|
|
24488
24411
|
"privacy": "private",
|
|
24489
|
-
"default": "
|
|
24412
|
+
"default": "false"
|
|
24490
24413
|
},
|
|
24491
24414
|
{
|
|
24492
24415
|
"kind": "field",
|
|
24493
|
-
"name": "
|
|
24416
|
+
"name": "_isOn",
|
|
24494
24417
|
"type": {
|
|
24495
|
-
"text": "
|
|
24418
|
+
"text": "boolean"
|
|
24496
24419
|
},
|
|
24497
24420
|
"privacy": "private",
|
|
24498
|
-
"default": "
|
|
24421
|
+
"default": "false"
|
|
24499
24422
|
},
|
|
24500
24423
|
{
|
|
24501
24424
|
"kind": "field",
|
|
24502
|
-
"name": "
|
|
24425
|
+
"name": "_densityLevel",
|
|
24503
24426
|
"type": {
|
|
24504
|
-
"text": "
|
|
24427
|
+
"text": "number"
|
|
24505
24428
|
},
|
|
24506
24429
|
"privacy": "private",
|
|
24507
|
-
"default": "
|
|
24430
|
+
"default": "0"
|
|
24508
24431
|
},
|
|
24509
24432
|
{
|
|
24510
24433
|
"kind": "field",
|
|
24511
|
-
"name": "
|
|
24434
|
+
"name": "_slotElement",
|
|
24512
24435
|
"type": {
|
|
24513
|
-
"text": "
|
|
24436
|
+
"text": "HTMLSlotElement"
|
|
24514
24437
|
},
|
|
24515
|
-
"privacy": "private"
|
|
24438
|
+
"privacy": "private",
|
|
24439
|
+
"default": "getShadowElement(this, 'slot:not([name])')"
|
|
24516
24440
|
},
|
|
24517
24441
|
{
|
|
24518
24442
|
"kind": "field",
|
|
24519
|
-
"name": "
|
|
24443
|
+
"name": "_focusIndicator",
|
|
24520
24444
|
"type": {
|
|
24521
|
-
"text": "
|
|
24445
|
+
"text": "IFocusIndicatorComponent"
|
|
24522
24446
|
},
|
|
24523
24447
|
"privacy": "private",
|
|
24524
|
-
"default": "
|
|
24448
|
+
"default": "getShadowElement(this, FOCUS_INDICATOR_CONSTANTS.elementName)"
|
|
24525
24449
|
},
|
|
24526
24450
|
{
|
|
24527
24451
|
"kind": "field",
|
|
24528
|
-
"name": "
|
|
24452
|
+
"name": "_stateLayer",
|
|
24529
24453
|
"type": {
|
|
24530
|
-
"text": "
|
|
24454
|
+
"text": "IStateLayerComponent"
|
|
24531
24455
|
},
|
|
24532
24456
|
"privacy": "private",
|
|
24533
|
-
"default": "
|
|
24457
|
+
"default": "getShadowElement(this, STATE_LAYER_CONSTANTS.elementName)"
|
|
24534
24458
|
},
|
|
24535
24459
|
{
|
|
24536
24460
|
"kind": "field",
|
|
24537
|
-
"name": "
|
|
24461
|
+
"name": "_buttonOrAnchorElement",
|
|
24462
|
+
"type": {
|
|
24463
|
+
"text": "HTMLButtonElement | HTMLAnchorElement | null"
|
|
24464
|
+
},
|
|
24465
|
+
"privacy": "private",
|
|
24466
|
+
"default": "null"
|
|
24467
|
+
},
|
|
24468
|
+
{
|
|
24469
|
+
"kind": "field",
|
|
24470
|
+
"name": "_slotChangeListener",
|
|
24538
24471
|
"privacy": "private"
|
|
24539
24472
|
},
|
|
24540
24473
|
{
|
|
@@ -24548,6 +24481,17 @@
|
|
|
24548
24481
|
{
|
|
24549
24482
|
"kind": "field",
|
|
24550
24483
|
"name": "_keydownListener",
|
|
24484
|
+
"type": {
|
|
24485
|
+
"text": "EventListener"
|
|
24486
|
+
},
|
|
24487
|
+
"privacy": "private"
|
|
24488
|
+
},
|
|
24489
|
+
{
|
|
24490
|
+
"kind": "field",
|
|
24491
|
+
"name": "_toggleClickListener",
|
|
24492
|
+
"type": {
|
|
24493
|
+
"text": "EventListener"
|
|
24494
|
+
},
|
|
24551
24495
|
"privacy": "private"
|
|
24552
24496
|
},
|
|
24553
24497
|
{
|
|
@@ -24570,7 +24514,17 @@
|
|
|
24570
24514
|
},
|
|
24571
24515
|
{
|
|
24572
24516
|
"kind": "method",
|
|
24573
|
-
"name": "
|
|
24517
|
+
"name": "_onSlotChange",
|
|
24518
|
+
"privacy": "private",
|
|
24519
|
+
"return": {
|
|
24520
|
+
"type": {
|
|
24521
|
+
"text": "void"
|
|
24522
|
+
}
|
|
24523
|
+
}
|
|
24524
|
+
},
|
|
24525
|
+
{
|
|
24526
|
+
"kind": "method",
|
|
24527
|
+
"name": "_onToggle",
|
|
24574
24528
|
"privacy": "private",
|
|
24575
24529
|
"return": {
|
|
24576
24530
|
"type": {
|
|
@@ -24608,17 +24562,47 @@
|
|
|
24608
24562
|
}
|
|
24609
24563
|
}
|
|
24610
24564
|
},
|
|
24565
|
+
{
|
|
24566
|
+
"kind": "method",
|
|
24567
|
+
"name": "_initializeToggle",
|
|
24568
|
+
"privacy": "private",
|
|
24569
|
+
"return": {
|
|
24570
|
+
"type": {
|
|
24571
|
+
"text": "void"
|
|
24572
|
+
}
|
|
24573
|
+
}
|
|
24574
|
+
},
|
|
24575
|
+
{
|
|
24576
|
+
"kind": "method",
|
|
24577
|
+
"name": "_destroyToggle",
|
|
24578
|
+
"privacy": "private",
|
|
24579
|
+
"return": {
|
|
24580
|
+
"type": {
|
|
24581
|
+
"text": "void"
|
|
24582
|
+
}
|
|
24583
|
+
}
|
|
24584
|
+
},
|
|
24585
|
+
{
|
|
24586
|
+
"kind": "method",
|
|
24587
|
+
"name": "_syncToggleState",
|
|
24588
|
+
"privacy": "private",
|
|
24589
|
+
"return": {
|
|
24590
|
+
"type": {
|
|
24591
|
+
"text": "void"
|
|
24592
|
+
}
|
|
24593
|
+
}
|
|
24594
|
+
},
|
|
24611
24595
|
{
|
|
24612
24596
|
"kind": "field",
|
|
24613
|
-
"name": "
|
|
24597
|
+
"name": "disabled",
|
|
24614
24598
|
"type": {
|
|
24615
|
-
"text": "
|
|
24599
|
+
"text": "boolean"
|
|
24616
24600
|
},
|
|
24617
24601
|
"privacy": "public"
|
|
24618
24602
|
},
|
|
24619
24603
|
{
|
|
24620
24604
|
"kind": "field",
|
|
24621
|
-
"name": "
|
|
24605
|
+
"name": "toggle",
|
|
24622
24606
|
"type": {
|
|
24623
24607
|
"text": "boolean"
|
|
24624
24608
|
},
|
|
@@ -24626,12 +24610,20 @@
|
|
|
24626
24610
|
},
|
|
24627
24611
|
{
|
|
24628
24612
|
"kind": "field",
|
|
24629
|
-
"name": "
|
|
24613
|
+
"name": "isOn",
|
|
24630
24614
|
"type": {
|
|
24631
24615
|
"text": "boolean"
|
|
24632
24616
|
},
|
|
24633
24617
|
"privacy": "public"
|
|
24634
24618
|
},
|
|
24619
|
+
{
|
|
24620
|
+
"kind": "field",
|
|
24621
|
+
"name": "densityLevel",
|
|
24622
|
+
"type": {
|
|
24623
|
+
"text": "number"
|
|
24624
|
+
},
|
|
24625
|
+
"privacy": "public"
|
|
24626
|
+
},
|
|
24635
24627
|
{
|
|
24636
24628
|
"kind": "method",
|
|
24637
24629
|
"name": "focus",
|
|
@@ -24652,22 +24644,30 @@
|
|
|
24652
24644
|
]
|
|
24653
24645
|
}
|
|
24654
24646
|
],
|
|
24647
|
+
"events": [
|
|
24648
|
+
{
|
|
24649
|
+
"name": "forge-icon-button-toggle",
|
|
24650
|
+
"type": {
|
|
24651
|
+
"text": "CustomEvent"
|
|
24652
|
+
}
|
|
24653
|
+
}
|
|
24654
|
+
],
|
|
24655
24655
|
"superclass": {
|
|
24656
24656
|
"name": "BaseComponent",
|
|
24657
24657
|
"module": "/src/lib/core/base/base-component"
|
|
24658
24658
|
},
|
|
24659
|
-
"tagName": "forge-deprecated-button",
|
|
24660
|
-
"deprecated": "Use the `<forge-button>` element instead.",
|
|
24659
|
+
"tagName": "forge-deprecated-icon-button",
|
|
24660
|
+
"deprecated": "Use the `<forge-icon-button>` element instead.",
|
|
24661
24661
|
"customElement": true
|
|
24662
24662
|
}
|
|
24663
24663
|
],
|
|
24664
24664
|
"exports": [
|
|
24665
24665
|
{
|
|
24666
24666
|
"kind": "js",
|
|
24667
|
-
"name": "
|
|
24667
|
+
"name": "DeprecatedIconButtonComponent",
|
|
24668
24668
|
"declaration": {
|
|
24669
|
-
"name": "
|
|
24670
|
-
"module": "src/lib/deprecated/button/deprecated-button.ts"
|
|
24669
|
+
"name": "DeprecatedIconButtonComponent",
|
|
24670
|
+
"module": "src/lib/deprecated/icon-button/deprecated-icon-button.ts"
|
|
24671
24671
|
}
|
|
24672
24672
|
}
|
|
24673
24673
|
]
|
|
@@ -29132,108 +29132,6 @@
|
|
|
29132
29132
|
}
|
|
29133
29133
|
]
|
|
29134
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
|
-
},
|
|
29237
29135
|
{
|
|
29238
29136
|
"kind": "javascript-module",
|
|
29239
29137
|
"path": "src/lib/select/option/option.ts",
|
|
@@ -29534,6 +29432,108 @@
|
|
|
29534
29432
|
}
|
|
29535
29433
|
]
|
|
29536
29434
|
},
|
|
29435
|
+
{
|
|
29436
|
+
"kind": "javascript-module",
|
|
29437
|
+
"path": "src/lib/select/option-group/option-group.ts",
|
|
29438
|
+
"declarations": [
|
|
29439
|
+
{
|
|
29440
|
+
"kind": "class",
|
|
29441
|
+
"description": "",
|
|
29442
|
+
"name": "OptionGroupComponent",
|
|
29443
|
+
"members": [
|
|
29444
|
+
{
|
|
29445
|
+
"kind": "field",
|
|
29446
|
+
"name": "_label",
|
|
29447
|
+
"type": {
|
|
29448
|
+
"text": "string"
|
|
29449
|
+
},
|
|
29450
|
+
"privacy": "private"
|
|
29451
|
+
},
|
|
29452
|
+
{
|
|
29453
|
+
"kind": "field",
|
|
29454
|
+
"name": "label",
|
|
29455
|
+
"type": {
|
|
29456
|
+
"text": "string"
|
|
29457
|
+
},
|
|
29458
|
+
"privacy": "public",
|
|
29459
|
+
"description": "Gets/sets the label of this option group."
|
|
29460
|
+
},
|
|
29461
|
+
{
|
|
29462
|
+
"kind": "field",
|
|
29463
|
+
"name": "options",
|
|
29464
|
+
"type": {
|
|
29465
|
+
"text": "ISelectOption[]"
|
|
29466
|
+
},
|
|
29467
|
+
"privacy": "public",
|
|
29468
|
+
"description": "The child options of this group."
|
|
29469
|
+
},
|
|
29470
|
+
{
|
|
29471
|
+
"kind": "field",
|
|
29472
|
+
"name": "builder",
|
|
29473
|
+
"type": {
|
|
29474
|
+
"text": "ListDropdownOptionGroupBuilder"
|
|
29475
|
+
},
|
|
29476
|
+
"privacy": "public",
|
|
29477
|
+
"description": "The builder function for the group content."
|
|
29478
|
+
},
|
|
29479
|
+
{
|
|
29480
|
+
"kind": "field",
|
|
29481
|
+
"name": "value",
|
|
29482
|
+
"type": {
|
|
29483
|
+
"text": "any"
|
|
29484
|
+
},
|
|
29485
|
+
"privacy": "public",
|
|
29486
|
+
"description": "Gets/sets the optional group value.",
|
|
29487
|
+
"attribute": "value"
|
|
29488
|
+
},
|
|
29489
|
+
{
|
|
29490
|
+
"kind": "field",
|
|
29491
|
+
"name": "text",
|
|
29492
|
+
"type": {
|
|
29493
|
+
"text": "string"
|
|
29494
|
+
},
|
|
29495
|
+
"privacy": "public",
|
|
29496
|
+
"description": "The text content for the group.",
|
|
29497
|
+
"attribute": "text"
|
|
29498
|
+
}
|
|
29499
|
+
],
|
|
29500
|
+
"attributes": [
|
|
29501
|
+
{
|
|
29502
|
+
"name": "value",
|
|
29503
|
+
"type": {
|
|
29504
|
+
"text": "any"
|
|
29505
|
+
},
|
|
29506
|
+
"description": "Gets/sets the optional group value.",
|
|
29507
|
+
"fieldName": "value"
|
|
29508
|
+
},
|
|
29509
|
+
{
|
|
29510
|
+
"name": "text",
|
|
29511
|
+
"type": {
|
|
29512
|
+
"text": "string"
|
|
29513
|
+
},
|
|
29514
|
+
"description": "The text content for the group.",
|
|
29515
|
+
"fieldName": "text"
|
|
29516
|
+
}
|
|
29517
|
+
],
|
|
29518
|
+
"superclass": {
|
|
29519
|
+
"name": "BaseComponent",
|
|
29520
|
+
"module": "/src/lib/core/base/base-component"
|
|
29521
|
+
},
|
|
29522
|
+
"tagName": "forge-option-group",
|
|
29523
|
+
"customElement": true
|
|
29524
|
+
}
|
|
29525
|
+
],
|
|
29526
|
+
"exports": [
|
|
29527
|
+
{
|
|
29528
|
+
"kind": "js",
|
|
29529
|
+
"name": "OptionGroupComponent",
|
|
29530
|
+
"declaration": {
|
|
29531
|
+
"name": "OptionGroupComponent",
|
|
29532
|
+
"module": "src/lib/select/option-group/option-group.ts"
|
|
29533
|
+
}
|
|
29534
|
+
}
|
|
29535
|
+
]
|
|
29536
|
+
},
|
|
29537
29537
|
{
|
|
29538
29538
|
"kind": "javascript-module",
|
|
29539
29539
|
"path": "src/lib/select/select/select.ts",
|
|
@@ -33097,7 +33097,7 @@
|
|
|
33097
33097
|
]
|
|
33098
33098
|
}
|
|
33099
33099
|
],
|
|
33100
|
-
"branchName": "
|
|
33100
|
+
"branchName": "main",
|
|
33101
33101
|
"forgeTypes": {
|
|
33102
33102
|
"Theme": {
|
|
33103
33103
|
"path": "src/lib/constants.ts",
|
|
@@ -33235,6 +33235,14 @@
|
|
|
33235
33235
|
"path": "src/lib/autocomplete/autocomplete.ts",
|
|
33236
33236
|
"lineNumber": 71
|
|
33237
33237
|
},
|
|
33238
|
+
"IAvatarComponent": {
|
|
33239
|
+
"path": "src/lib/avatar/avatar.ts",
|
|
33240
|
+
"lineNumber": 10
|
|
33241
|
+
},
|
|
33242
|
+
"AvatarComponent": {
|
|
33243
|
+
"path": "src/lib/avatar/avatar.ts",
|
|
33244
|
+
"lineNumber": 54
|
|
33245
|
+
},
|
|
33238
33246
|
"IBackdropComponent": {
|
|
33239
33247
|
"path": "src/lib/backdrop/backdrop.ts",
|
|
33240
33248
|
"lineNumber": 8
|
|
@@ -33243,13 +33251,33 @@
|
|
|
33243
33251
|
"path": "src/lib/backdrop/backdrop.ts",
|
|
33244
33252
|
"lineNumber": 42
|
|
33245
33253
|
},
|
|
33246
|
-
"
|
|
33247
|
-
"path": "src/lib/
|
|
33254
|
+
"BadgeComponentDelegateProps": {
|
|
33255
|
+
"path": "src/lib/badge/badge-component-delegate.ts",
|
|
33256
|
+
"lineNumber": 4
|
|
33257
|
+
},
|
|
33258
|
+
"IBadgeComponentDelegateOptions": {
|
|
33259
|
+
"path": "src/lib/badge/badge-component-delegate.ts",
|
|
33260
|
+
"lineNumber": 5
|
|
33261
|
+
},
|
|
33262
|
+
"IBadgeComponentDelegateConfig": {
|
|
33263
|
+
"path": "src/lib/badge/badge-component-delegate.ts",
|
|
33264
|
+
"lineNumber": 6
|
|
33265
|
+
},
|
|
33266
|
+
"BadgeComponentDelegate": {
|
|
33267
|
+
"path": "src/lib/badge/badge-component-delegate.ts",
|
|
33268
|
+
"lineNumber": 8
|
|
33269
|
+
},
|
|
33270
|
+
"BadgeTheme": {
|
|
33271
|
+
"path": "src/lib/badge/badge-constants.ts",
|
|
33272
|
+
"lineNumber": 33
|
|
33273
|
+
},
|
|
33274
|
+
"IBadgeComponent": {
|
|
33275
|
+
"path": "src/lib/badge/badge.ts",
|
|
33248
33276
|
"lineNumber": 10
|
|
33249
33277
|
},
|
|
33250
|
-
"
|
|
33251
|
-
"path": "src/lib/
|
|
33252
|
-
"lineNumber":
|
|
33278
|
+
"BadgeComponent": {
|
|
33279
|
+
"path": "src/lib/badge/badge.ts",
|
|
33280
|
+
"lineNumber": 50
|
|
33253
33281
|
},
|
|
33254
33282
|
"IBannerAdapter": {
|
|
33255
33283
|
"path": "src/lib/banner/banner-adapter.ts",
|
|
@@ -33319,34 +33347,6 @@
|
|
|
33319
33347
|
"path": "src/lib/bottom-sheet/bottom-sheet.ts",
|
|
33320
33348
|
"lineNumber": 73
|
|
33321
33349
|
},
|
|
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
|
-
},
|
|
33350
33350
|
"IButtonAdapter": {
|
|
33351
33351
|
"path": "src/lib/button/button-adapter.ts",
|
|
33352
33352
|
"lineNumber": 4
|
|
@@ -36047,30 +36047,6 @@
|
|
|
36047
36047
|
"path": "src/lib/date-picker/base/base-date-picker.ts",
|
|
36048
36048
|
"lineNumber": 83
|
|
36049
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
|
-
},
|
|
36074
36050
|
"DeprecatedButtonComponentDelegateProps": {
|
|
36075
36051
|
"path": "src/lib/deprecated/button/deprecated-button-component-delegate.ts",
|
|
36076
36052
|
"lineNumber": 5
|
|
@@ -36099,6 +36075,30 @@
|
|
|
36099
36075
|
"path": "src/lib/deprecated/button/deprecated-button.ts",
|
|
36100
36076
|
"lineNumber": 30
|
|
36101
36077
|
},
|
|
36078
|
+
"DeprecatedIconButtonComponentDelegateProps": {
|
|
36079
|
+
"path": "src/lib/deprecated/icon-button/deprecated-icon-button-component-delegate.ts",
|
|
36080
|
+
"lineNumber": 9
|
|
36081
|
+
},
|
|
36082
|
+
"IDeprecatedIconButtonComponentDelegateOptions": {
|
|
36083
|
+
"path": "src/lib/deprecated/icon-button/deprecated-icon-button-component-delegate.ts",
|
|
36084
|
+
"lineNumber": 10
|
|
36085
|
+
},
|
|
36086
|
+
"IDeprecatedIconButtonComponentDelegateConfig": {
|
|
36087
|
+
"path": "src/lib/deprecated/icon-button/deprecated-icon-button-component-delegate.ts",
|
|
36088
|
+
"lineNumber": 19
|
|
36089
|
+
},
|
|
36090
|
+
"DeprecatedIconButtonComponentDelegate": {
|
|
36091
|
+
"path": "src/lib/deprecated/icon-button/deprecated-icon-button-component-delegate.ts",
|
|
36092
|
+
"lineNumber": 22
|
|
36093
|
+
},
|
|
36094
|
+
"IDeprecatedIconButtonComponent": {
|
|
36095
|
+
"path": "src/lib/deprecated/icon-button/deprecated-icon-button.ts",
|
|
36096
|
+
"lineNumber": 14
|
|
36097
|
+
},
|
|
36098
|
+
"DeprecatedIconButtonComponent": {
|
|
36099
|
+
"path": "src/lib/deprecated/icon-button/deprecated-icon-button.ts",
|
|
36100
|
+
"lineNumber": 32
|
|
36101
|
+
},
|
|
36102
36102
|
"IBaseDrawerAdapter": {
|
|
36103
36103
|
"path": "src/lib/drawer/base/base-drawer-adapter.ts",
|
|
36104
36104
|
"lineNumber": 7
|
|
@@ -36507,14 +36507,6 @@
|
|
|
36507
36507
|
"path": "src/lib/select/core/select-utils.ts",
|
|
36508
36508
|
"lineNumber": 4
|
|
36509
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
|
-
},
|
|
36518
36510
|
"IOptionAdapter": {
|
|
36519
36511
|
"path": "src/lib/select/option/option-adapter.ts",
|
|
36520
36512
|
"lineNumber": 4
|
|
@@ -36539,6 +36531,14 @@
|
|
|
36539
36531
|
"path": "src/lib/select/option/option.ts",
|
|
36540
36532
|
"lineNumber": 20
|
|
36541
36533
|
},
|
|
36534
|
+
"IOptionGroupComponent": {
|
|
36535
|
+
"path": "src/lib/select/option-group/option-group.ts",
|
|
36536
|
+
"lineNumber": 7
|
|
36537
|
+
},
|
|
36538
|
+
"OptionGroupComponent": {
|
|
36539
|
+
"path": "src/lib/select/option-group/option-group.ts",
|
|
36540
|
+
"lineNumber": 20
|
|
36541
|
+
},
|
|
36542
36542
|
"OptionListenerDestructor": {
|
|
36543
36543
|
"path": "src/lib/select/select/select-adapter.ts",
|
|
36544
36544
|
"lineNumber": 11
|