@genesislcap/foundation-ui 14.430.2-FUI-2528.4 → 14.430.2-FUI-2528.5
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/dist/custom-elements.json +966 -966
- package/dist/dts/react.d.ts +9 -9
- package/dist/react.cjs +6 -6
- package/dist/react.mjs +5 -5
- package/package.json +19 -19
|
@@ -932,472 +932,6 @@
|
|
|
932
932
|
}
|
|
933
933
|
]
|
|
934
934
|
},
|
|
935
|
-
{
|
|
936
|
-
"kind": "javascript-module",
|
|
937
|
-
"path": "src/_common/affix-mixin.ts",
|
|
938
|
-
"declarations": [
|
|
939
|
-
{
|
|
940
|
-
"kind": "mixin",
|
|
941
|
-
"description": "Mixin that adds prefix/suffix affix support with screen-reader handling to an input field component.\nShared between TextField and NumberField to keep the behaviour consistent and avoid duplication.",
|
|
942
|
-
"name": "AffixMixin",
|
|
943
|
-
"members": [
|
|
944
|
-
{
|
|
945
|
-
"kind": "field",
|
|
946
|
-
"name": "prefix",
|
|
947
|
-
"type": {
|
|
948
|
-
"text": "string"
|
|
949
|
-
},
|
|
950
|
-
"description": "Optional non-editable label shown on the left inside the field, before the input."
|
|
951
|
-
},
|
|
952
|
-
{
|
|
953
|
-
"kind": "field",
|
|
954
|
-
"name": "suffix",
|
|
955
|
-
"type": {
|
|
956
|
-
"text": "string"
|
|
957
|
-
},
|
|
958
|
-
"description": "Optional non-editable suffix (e.g. unit label) shown on the right inside the field."
|
|
959
|
-
},
|
|
960
|
-
{
|
|
961
|
-
"kind": "field",
|
|
962
|
-
"name": "hideAffixFromScreenReader",
|
|
963
|
-
"type": {
|
|
964
|
-
"text": "boolean"
|
|
965
|
-
},
|
|
966
|
-
"default": "false",
|
|
967
|
-
"description": "When true, prefix/suffix are not exposed to assistive technology (`aria-hidden` on affixes,\nand their ids are omitted from the control's `aria-describedby`).\nUse only when the unit or symbol is redundant with the visible label or other text."
|
|
968
|
-
}
|
|
969
|
-
],
|
|
970
|
-
"parameters": [
|
|
971
|
-
{
|
|
972
|
-
"name": "Base",
|
|
973
|
-
"type": {
|
|
974
|
-
"text": "TBase"
|
|
975
|
-
}
|
|
976
|
-
}
|
|
977
|
-
]
|
|
978
|
-
}
|
|
979
|
-
],
|
|
980
|
-
"exports": [
|
|
981
|
-
{
|
|
982
|
-
"kind": "js",
|
|
983
|
-
"name": "AffixMixin",
|
|
984
|
-
"declaration": {
|
|
985
|
-
"name": "AffixMixin",
|
|
986
|
-
"module": "src/_common/affix-mixin.ts"
|
|
987
|
-
}
|
|
988
|
-
}
|
|
989
|
-
]
|
|
990
|
-
},
|
|
991
|
-
{
|
|
992
|
-
"kind": "javascript-module",
|
|
993
|
-
"path": "src/_common/base-file-component.ts",
|
|
994
|
-
"declarations": [
|
|
995
|
-
{
|
|
996
|
-
"kind": "class",
|
|
997
|
-
"description": "Abstract base class for file handling components\nProvides common functionality for file selection, validation, and UI state management",
|
|
998
|
-
"name": "BaseFileComponent",
|
|
999
|
-
"members": [
|
|
1000
|
-
{
|
|
1001
|
-
"kind": "field",
|
|
1002
|
-
"name": "fileInput",
|
|
1003
|
-
"type": {
|
|
1004
|
-
"text": "HTMLInputElement"
|
|
1005
|
-
},
|
|
1006
|
-
"privacy": "public"
|
|
1007
|
-
},
|
|
1008
|
-
{
|
|
1009
|
-
"kind": "field",
|
|
1010
|
-
"name": "selectedFile",
|
|
1011
|
-
"type": {
|
|
1012
|
-
"text": "File | null"
|
|
1013
|
-
},
|
|
1014
|
-
"privacy": "protected",
|
|
1015
|
-
"default": "null"
|
|
1016
|
-
},
|
|
1017
|
-
{
|
|
1018
|
-
"kind": "field",
|
|
1019
|
-
"name": "label",
|
|
1020
|
-
"type": {
|
|
1021
|
-
"text": "string"
|
|
1022
|
-
}
|
|
1023
|
-
},
|
|
1024
|
-
{
|
|
1025
|
-
"kind": "field",
|
|
1026
|
-
"name": "accept",
|
|
1027
|
-
"type": {
|
|
1028
|
-
"text": "string"
|
|
1029
|
-
},
|
|
1030
|
-
"default": "''"
|
|
1031
|
-
},
|
|
1032
|
-
{
|
|
1033
|
-
"kind": "field",
|
|
1034
|
-
"name": "fileSizeLimitBytes",
|
|
1035
|
-
"default": "10_485_760",
|
|
1036
|
-
"type": {
|
|
1037
|
-
"text": "number"
|
|
1038
|
-
}
|
|
1039
|
-
},
|
|
1040
|
-
{
|
|
1041
|
-
"kind": "field",
|
|
1042
|
-
"name": "fileName",
|
|
1043
|
-
"type": {
|
|
1044
|
-
"text": "string"
|
|
1045
|
-
},
|
|
1046
|
-
"default": "''"
|
|
1047
|
-
},
|
|
1048
|
-
{
|
|
1049
|
-
"kind": "field",
|
|
1050
|
-
"name": "isProcessing",
|
|
1051
|
-
"type": {
|
|
1052
|
-
"text": "boolean"
|
|
1053
|
-
},
|
|
1054
|
-
"default": "false"
|
|
1055
|
-
},
|
|
1056
|
-
{
|
|
1057
|
-
"kind": "method",
|
|
1058
|
-
"name": "handleClick",
|
|
1059
|
-
"privacy": "public",
|
|
1060
|
-
"description": "Opens the file picker dialog\nClears any previous file selection before opening"
|
|
1061
|
-
},
|
|
1062
|
-
{
|
|
1063
|
-
"kind": "method",
|
|
1064
|
-
"name": "onInputChange",
|
|
1065
|
-
"privacy": "public",
|
|
1066
|
-
"parameters": [
|
|
1067
|
-
{
|
|
1068
|
-
"name": "e",
|
|
1069
|
-
"type": {
|
|
1070
|
-
"text": "Event"
|
|
1071
|
-
},
|
|
1072
|
-
"description": "The change event from the file input"
|
|
1073
|
-
}
|
|
1074
|
-
],
|
|
1075
|
-
"description": "Handles file selection from the file input\nValidates file size and sets up for processing"
|
|
1076
|
-
},
|
|
1077
|
-
{
|
|
1078
|
-
"kind": "method",
|
|
1079
|
-
"name": "clearSelection",
|
|
1080
|
-
"privacy": "public",
|
|
1081
|
-
"description": "Clears all file selection and processing state\nResets the component to its initial state"
|
|
1082
|
-
},
|
|
1083
|
-
{
|
|
1084
|
-
"kind": "method",
|
|
1085
|
-
"name": "getSelectedFile",
|
|
1086
|
-
"privacy": "public",
|
|
1087
|
-
"description": "Gets the currently selected file object",
|
|
1088
|
-
"return": {
|
|
1089
|
-
"type": {
|
|
1090
|
-
"text": ""
|
|
1091
|
-
}
|
|
1092
|
-
}
|
|
1093
|
-
},
|
|
1094
|
-
{
|
|
1095
|
-
"kind": "method",
|
|
1096
|
-
"name": "showError",
|
|
1097
|
-
"privacy": "protected",
|
|
1098
|
-
"parameters": [
|
|
1099
|
-
{
|
|
1100
|
-
"name": "title",
|
|
1101
|
-
"type": {
|
|
1102
|
-
"text": "string"
|
|
1103
|
-
},
|
|
1104
|
-
"description": "The error title"
|
|
1105
|
-
},
|
|
1106
|
-
{
|
|
1107
|
-
"name": "message",
|
|
1108
|
-
"type": {
|
|
1109
|
-
"text": "string"
|
|
1110
|
-
},
|
|
1111
|
-
"description": "The error message"
|
|
1112
|
-
}
|
|
1113
|
-
],
|
|
1114
|
-
"description": "Shows an error notification using the unified error handling system"
|
|
1115
|
-
},
|
|
1116
|
-
{
|
|
1117
|
-
"kind": "method",
|
|
1118
|
-
"name": "onFileSelected",
|
|
1119
|
-
"privacy": "protected",
|
|
1120
|
-
"return": {
|
|
1121
|
-
"type": {
|
|
1122
|
-
"text": "void"
|
|
1123
|
-
}
|
|
1124
|
-
},
|
|
1125
|
-
"parameters": [
|
|
1126
|
-
{
|
|
1127
|
-
"name": "files",
|
|
1128
|
-
"type": {
|
|
1129
|
-
"text": "File[]"
|
|
1130
|
-
},
|
|
1131
|
-
"description": "The selected file"
|
|
1132
|
-
}
|
|
1133
|
-
],
|
|
1134
|
-
"description": "Abstract method called when a file is selected"
|
|
1135
|
-
},
|
|
1136
|
-
{
|
|
1137
|
-
"kind": "method",
|
|
1138
|
-
"name": "onFileCleared",
|
|
1139
|
-
"privacy": "protected",
|
|
1140
|
-
"return": {
|
|
1141
|
-
"type": {
|
|
1142
|
-
"text": "void"
|
|
1143
|
-
}
|
|
1144
|
-
},
|
|
1145
|
-
"description": "Abstract method called when file selection is cleared"
|
|
1146
|
-
},
|
|
1147
|
-
{
|
|
1148
|
-
"kind": "field",
|
|
1149
|
-
"name": "_presentation",
|
|
1150
|
-
"type": {
|
|
1151
|
-
"text": "ComponentPresentation | null | undefined"
|
|
1152
|
-
},
|
|
1153
|
-
"privacy": "private",
|
|
1154
|
-
"default": "void 0",
|
|
1155
|
-
"inheritedFrom": {
|
|
1156
|
-
"name": "FoundationElement",
|
|
1157
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
1158
|
-
}
|
|
1159
|
-
},
|
|
1160
|
-
{
|
|
1161
|
-
"kind": "field",
|
|
1162
|
-
"name": "$presentation",
|
|
1163
|
-
"type": {
|
|
1164
|
-
"text": "ComponentPresentation | null"
|
|
1165
|
-
},
|
|
1166
|
-
"privacy": "public",
|
|
1167
|
-
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
1168
|
-
"inheritedFrom": {
|
|
1169
|
-
"name": "FoundationElement",
|
|
1170
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
1171
|
-
}
|
|
1172
|
-
},
|
|
1173
|
-
{
|
|
1174
|
-
"kind": "field",
|
|
1175
|
-
"name": "template",
|
|
1176
|
-
"type": {
|
|
1177
|
-
"text": "ElementViewTemplate | void | null"
|
|
1178
|
-
},
|
|
1179
|
-
"privacy": "public",
|
|
1180
|
-
"description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
|
|
1181
|
-
"inheritedFrom": {
|
|
1182
|
-
"name": "FoundationElement",
|
|
1183
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
1184
|
-
}
|
|
1185
|
-
},
|
|
1186
|
-
{
|
|
1187
|
-
"kind": "method",
|
|
1188
|
-
"name": "templateChanged",
|
|
1189
|
-
"privacy": "protected",
|
|
1190
|
-
"return": {
|
|
1191
|
-
"type": {
|
|
1192
|
-
"text": "void"
|
|
1193
|
-
}
|
|
1194
|
-
},
|
|
1195
|
-
"inheritedFrom": {
|
|
1196
|
-
"name": "FoundationElement",
|
|
1197
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
1198
|
-
}
|
|
1199
|
-
},
|
|
1200
|
-
{
|
|
1201
|
-
"kind": "field",
|
|
1202
|
-
"name": "styles",
|
|
1203
|
-
"type": {
|
|
1204
|
-
"text": "ElementStyles | void | null"
|
|
1205
|
-
},
|
|
1206
|
-
"privacy": "public",
|
|
1207
|
-
"description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
|
|
1208
|
-
"inheritedFrom": {
|
|
1209
|
-
"name": "FoundationElement",
|
|
1210
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
1211
|
-
}
|
|
1212
|
-
},
|
|
1213
|
-
{
|
|
1214
|
-
"kind": "method",
|
|
1215
|
-
"name": "stylesChanged",
|
|
1216
|
-
"privacy": "protected",
|
|
1217
|
-
"return": {
|
|
1218
|
-
"type": {
|
|
1219
|
-
"text": "void"
|
|
1220
|
-
}
|
|
1221
|
-
},
|
|
1222
|
-
"inheritedFrom": {
|
|
1223
|
-
"name": "FoundationElement",
|
|
1224
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
1225
|
-
}
|
|
1226
|
-
},
|
|
1227
|
-
{
|
|
1228
|
-
"kind": "method",
|
|
1229
|
-
"name": "compose",
|
|
1230
|
-
"privacy": "public",
|
|
1231
|
-
"static": true,
|
|
1232
|
-
"return": {
|
|
1233
|
-
"type": {
|
|
1234
|
-
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
1235
|
-
}
|
|
1236
|
-
},
|
|
1237
|
-
"parameters": [
|
|
1238
|
-
{
|
|
1239
|
-
"name": "this",
|
|
1240
|
-
"type": {
|
|
1241
|
-
"text": "K"
|
|
1242
|
-
}
|
|
1243
|
-
},
|
|
1244
|
-
{
|
|
1245
|
-
"name": "elementDefinition",
|
|
1246
|
-
"type": {
|
|
1247
|
-
"text": "T"
|
|
1248
|
-
},
|
|
1249
|
-
"description": "The definition of the element to create the registry\nfunction for."
|
|
1250
|
-
}
|
|
1251
|
-
],
|
|
1252
|
-
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
1253
|
-
"inheritedFrom": {
|
|
1254
|
-
"name": "FoundationElement",
|
|
1255
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
1256
|
-
}
|
|
1257
|
-
}
|
|
1258
|
-
],
|
|
1259
|
-
"events": [
|
|
1260
|
-
{
|
|
1261
|
-
"description": "Fired when file size validation fails",
|
|
1262
|
-
"name": "error"
|
|
1263
|
-
},
|
|
1264
|
-
{
|
|
1265
|
-
"description": "Fired when selection is cleared",
|
|
1266
|
-
"name": "clear"
|
|
1267
|
-
}
|
|
1268
|
-
],
|
|
1269
|
-
"attributes": [
|
|
1270
|
-
{
|
|
1271
|
-
"name": "label",
|
|
1272
|
-
"type": {
|
|
1273
|
-
"text": "string"
|
|
1274
|
-
},
|
|
1275
|
-
"fieldName": "label"
|
|
1276
|
-
},
|
|
1277
|
-
{
|
|
1278
|
-
"name": "accept",
|
|
1279
|
-
"type": {
|
|
1280
|
-
"text": "string"
|
|
1281
|
-
},
|
|
1282
|
-
"default": "''",
|
|
1283
|
-
"fieldName": "accept"
|
|
1284
|
-
},
|
|
1285
|
-
{
|
|
1286
|
-
"name": "file-size-limit-bytes",
|
|
1287
|
-
"default": "DEFAULT_FILE_SIZE_LIMIT",
|
|
1288
|
-
"resolveInitializer": {
|
|
1289
|
-
"module": "src/_common/base-file-component.ts"
|
|
1290
|
-
},
|
|
1291
|
-
"fieldName": "fileSizeLimitBytes"
|
|
1292
|
-
}
|
|
1293
|
-
],
|
|
1294
|
-
"superclass": {
|
|
1295
|
-
"name": "FoundationElement",
|
|
1296
|
-
"package": "@microsoft/fast-foundation"
|
|
1297
|
-
}
|
|
1298
|
-
}
|
|
1299
|
-
],
|
|
1300
|
-
"exports": [
|
|
1301
|
-
{
|
|
1302
|
-
"kind": "js",
|
|
1303
|
-
"name": "BaseFileComponent",
|
|
1304
|
-
"declaration": {
|
|
1305
|
-
"name": "BaseFileComponent",
|
|
1306
|
-
"module": "src/_common/base-file-component.ts"
|
|
1307
|
-
}
|
|
1308
|
-
}
|
|
1309
|
-
]
|
|
1310
|
-
},
|
|
1311
|
-
{
|
|
1312
|
-
"kind": "javascript-module",
|
|
1313
|
-
"path": "src/_common/field-styles.ts",
|
|
1314
|
-
"declarations": [
|
|
1315
|
-
{
|
|
1316
|
-
"kind": "variable",
|
|
1317
|
-
"name": "sharedFieldStyles",
|
|
1318
|
-
"default": "css`\n .label-hidden {\n margin: 0;\n }\n\n .control-field {\n display: flex;\n flex: 1 1 0%;\n min-width: 0;\n align-self: stretch;\n align-items: stretch;\n }\n\n .control-field .control {\n flex: 1 1 auto;\n min-width: 0;\n width: auto;\n }\n\n .prefix,\n .suffix {\n display: flex;\n align-items: center;\n flex-shrink: 0;\n box-sizing: border-box;\n padding: 0 calc(var(--design-unit) * 2px);\n user-select: none;\n white-space: nowrap;\n background-color: var(--neutral-fill-rest);\n color: var(--neutral-foreground-hint);\n font-size: var(--type-ramp-base-font-size);\n font-family: inherit;\n line-height: 1;\n }\n\n .prefix {\n border-right: 1px solid var(--neutral-stroke-divider-rest);\n border-radius: calc(var(--control-corner-radius) * 1px) 0 0\n calc(var(--control-corner-radius) * 1px);\n }\n\n .suffix {\n border-left: 1px solid var(--neutral-stroke-divider-rest);\n border-radius: 0 calc(var(--control-corner-radius) * 1px)\n calc(var(--control-corner-radius) * 1px) 0;\n }\n\n :host(.has-prefix:not(.has-suffix)) .control-field .control {\n border-radius: 0 calc(var(--control-corner-radius) * 1px)\n calc(var(--control-corner-radius) * 1px) 0;\n }\n\n :host(.has-suffix:not(.has-prefix)) .control-field .control {\n border-radius: calc(var(--control-corner-radius) * 1px) 0 0\n calc(var(--control-corner-radius) * 1px);\n }\n\n :host(.has-prefix.has-suffix) .control-field .control {\n border-radius: 0;\n }\n`"
|
|
1319
|
-
}
|
|
1320
|
-
],
|
|
1321
|
-
"exports": [
|
|
1322
|
-
{
|
|
1323
|
-
"kind": "js",
|
|
1324
|
-
"name": "sharedFieldStyles",
|
|
1325
|
-
"declaration": {
|
|
1326
|
-
"name": "sharedFieldStyles",
|
|
1327
|
-
"module": "src/_common/field-styles.ts"
|
|
1328
|
-
}
|
|
1329
|
-
}
|
|
1330
|
-
]
|
|
1331
|
-
},
|
|
1332
|
-
{
|
|
1333
|
-
"kind": "javascript-module",
|
|
1334
|
-
"path": "src/_common/icons.ts",
|
|
1335
|
-
"declarations": [
|
|
1336
|
-
{
|
|
1337
|
-
"kind": "function",
|
|
1338
|
-
"name": "closeIcon",
|
|
1339
|
-
"parameters": [
|
|
1340
|
-
{
|
|
1341
|
-
"name": "slot",
|
|
1342
|
-
"default": "'start'"
|
|
1343
|
-
},
|
|
1344
|
-
{
|
|
1345
|
-
"name": "fill",
|
|
1346
|
-
"default": "'#879ba6'"
|
|
1347
|
-
}
|
|
1348
|
-
]
|
|
1349
|
-
}
|
|
1350
|
-
],
|
|
1351
|
-
"exports": [
|
|
1352
|
-
{
|
|
1353
|
-
"kind": "js",
|
|
1354
|
-
"name": "closeIcon",
|
|
1355
|
-
"declaration": {
|
|
1356
|
-
"name": "closeIcon",
|
|
1357
|
-
"module": "src/_common/icons.ts"
|
|
1358
|
-
}
|
|
1359
|
-
}
|
|
1360
|
-
]
|
|
1361
|
-
},
|
|
1362
|
-
{
|
|
1363
|
-
"kind": "javascript-module",
|
|
1364
|
-
"path": "src/_common/index.ts",
|
|
1365
|
-
"declarations": [],
|
|
1366
|
-
"exports": [
|
|
1367
|
-
{
|
|
1368
|
-
"kind": "js",
|
|
1369
|
-
"name": "*",
|
|
1370
|
-
"declaration": {
|
|
1371
|
-
"name": "*",
|
|
1372
|
-
"package": "./affix-mixin"
|
|
1373
|
-
}
|
|
1374
|
-
},
|
|
1375
|
-
{
|
|
1376
|
-
"kind": "js",
|
|
1377
|
-
"name": "*",
|
|
1378
|
-
"declaration": {
|
|
1379
|
-
"name": "*",
|
|
1380
|
-
"package": "./base-file-component"
|
|
1381
|
-
}
|
|
1382
|
-
},
|
|
1383
|
-
{
|
|
1384
|
-
"kind": "js",
|
|
1385
|
-
"name": "*",
|
|
1386
|
-
"declaration": {
|
|
1387
|
-
"name": "*",
|
|
1388
|
-
"package": "./field-styles"
|
|
1389
|
-
}
|
|
1390
|
-
},
|
|
1391
|
-
{
|
|
1392
|
-
"kind": "js",
|
|
1393
|
-
"name": "*",
|
|
1394
|
-
"declaration": {
|
|
1395
|
-
"name": "*",
|
|
1396
|
-
"package": "./icons"
|
|
1397
|
-
}
|
|
1398
|
-
}
|
|
1399
|
-
]
|
|
1400
|
-
},
|
|
1401
935
|
{
|
|
1402
936
|
"kind": "javascript-module",
|
|
1403
937
|
"path": "src/accordion-item/accordion-item.styles.ts",
|
|
@@ -3399,6 +2933,503 @@
|
|
|
3399
2933
|
}
|
|
3400
2934
|
]
|
|
3401
2935
|
},
|
|
2936
|
+
{
|
|
2937
|
+
"kind": "javascript-module",
|
|
2938
|
+
"path": "src/_common/affix-mixin.ts",
|
|
2939
|
+
"declarations": [
|
|
2940
|
+
{
|
|
2941
|
+
"kind": "mixin",
|
|
2942
|
+
"description": "Mixin that adds prefix/suffix affix support with screen-reader handling to an input field component.\nShared between TextField and NumberField to keep the behaviour consistent and avoid duplication.",
|
|
2943
|
+
"name": "AffixMixin",
|
|
2944
|
+
"members": [
|
|
2945
|
+
{
|
|
2946
|
+
"kind": "field",
|
|
2947
|
+
"name": "prefix",
|
|
2948
|
+
"type": {
|
|
2949
|
+
"text": "string"
|
|
2950
|
+
},
|
|
2951
|
+
"description": "Optional non-editable label shown on the left inside the field, before the input."
|
|
2952
|
+
},
|
|
2953
|
+
{
|
|
2954
|
+
"kind": "field",
|
|
2955
|
+
"name": "suffix",
|
|
2956
|
+
"type": {
|
|
2957
|
+
"text": "string"
|
|
2958
|
+
},
|
|
2959
|
+
"description": "Optional non-editable suffix (e.g. unit label) shown on the right inside the field."
|
|
2960
|
+
},
|
|
2961
|
+
{
|
|
2962
|
+
"kind": "field",
|
|
2963
|
+
"name": "hideAffixFromScreenReader",
|
|
2964
|
+
"type": {
|
|
2965
|
+
"text": "boolean"
|
|
2966
|
+
},
|
|
2967
|
+
"default": "false",
|
|
2968
|
+
"description": "When true, prefix/suffix are not exposed to assistive technology (`aria-hidden` on affixes,\nand their ids are omitted from the control's `aria-describedby`).\nUse only when the unit or symbol is redundant with the visible label or other text."
|
|
2969
|
+
}
|
|
2970
|
+
],
|
|
2971
|
+
"parameters": [
|
|
2972
|
+
{
|
|
2973
|
+
"name": "Base",
|
|
2974
|
+
"type": {
|
|
2975
|
+
"text": "TBase"
|
|
2976
|
+
}
|
|
2977
|
+
}
|
|
2978
|
+
]
|
|
2979
|
+
}
|
|
2980
|
+
],
|
|
2981
|
+
"exports": [
|
|
2982
|
+
{
|
|
2983
|
+
"kind": "js",
|
|
2984
|
+
"name": "AffixMixin",
|
|
2985
|
+
"declaration": {
|
|
2986
|
+
"name": "AffixMixin",
|
|
2987
|
+
"module": "src/_common/affix-mixin.ts"
|
|
2988
|
+
}
|
|
2989
|
+
}
|
|
2990
|
+
]
|
|
2991
|
+
},
|
|
2992
|
+
{
|
|
2993
|
+
"kind": "javascript-module",
|
|
2994
|
+
"path": "src/_common/base-file-component.ts",
|
|
2995
|
+
"declarations": [
|
|
2996
|
+
{
|
|
2997
|
+
"kind": "class",
|
|
2998
|
+
"description": "Abstract base class for file handling components\nProvides common functionality for file selection, validation, and UI state management",
|
|
2999
|
+
"name": "BaseFileComponent",
|
|
3000
|
+
"members": [
|
|
3001
|
+
{
|
|
3002
|
+
"kind": "field",
|
|
3003
|
+
"name": "fileInput",
|
|
3004
|
+
"type": {
|
|
3005
|
+
"text": "HTMLInputElement"
|
|
3006
|
+
},
|
|
3007
|
+
"privacy": "public"
|
|
3008
|
+
},
|
|
3009
|
+
{
|
|
3010
|
+
"kind": "field",
|
|
3011
|
+
"name": "selectedFile",
|
|
3012
|
+
"type": {
|
|
3013
|
+
"text": "File | null"
|
|
3014
|
+
},
|
|
3015
|
+
"privacy": "protected",
|
|
3016
|
+
"default": "null"
|
|
3017
|
+
},
|
|
3018
|
+
{
|
|
3019
|
+
"kind": "field",
|
|
3020
|
+
"name": "label",
|
|
3021
|
+
"type": {
|
|
3022
|
+
"text": "string"
|
|
3023
|
+
}
|
|
3024
|
+
},
|
|
3025
|
+
{
|
|
3026
|
+
"kind": "field",
|
|
3027
|
+
"name": "accept",
|
|
3028
|
+
"type": {
|
|
3029
|
+
"text": "string"
|
|
3030
|
+
},
|
|
3031
|
+
"default": "''"
|
|
3032
|
+
},
|
|
3033
|
+
{
|
|
3034
|
+
"kind": "field",
|
|
3035
|
+
"name": "fileSizeLimitBytes",
|
|
3036
|
+
"default": "10_485_760",
|
|
3037
|
+
"type": {
|
|
3038
|
+
"text": "number"
|
|
3039
|
+
}
|
|
3040
|
+
},
|
|
3041
|
+
{
|
|
3042
|
+
"kind": "field",
|
|
3043
|
+
"name": "fileName",
|
|
3044
|
+
"type": {
|
|
3045
|
+
"text": "string"
|
|
3046
|
+
},
|
|
3047
|
+
"default": "''"
|
|
3048
|
+
},
|
|
3049
|
+
{
|
|
3050
|
+
"kind": "field",
|
|
3051
|
+
"name": "isProcessing",
|
|
3052
|
+
"type": {
|
|
3053
|
+
"text": "boolean"
|
|
3054
|
+
},
|
|
3055
|
+
"default": "false"
|
|
3056
|
+
},
|
|
3057
|
+
{
|
|
3058
|
+
"kind": "method",
|
|
3059
|
+
"name": "handleClick",
|
|
3060
|
+
"privacy": "public",
|
|
3061
|
+
"description": "Opens the file picker dialog\nClears any previous file selection before opening"
|
|
3062
|
+
},
|
|
3063
|
+
{
|
|
3064
|
+
"kind": "method",
|
|
3065
|
+
"name": "onInputChange",
|
|
3066
|
+
"privacy": "public",
|
|
3067
|
+
"parameters": [
|
|
3068
|
+
{
|
|
3069
|
+
"name": "e",
|
|
3070
|
+
"type": {
|
|
3071
|
+
"text": "Event"
|
|
3072
|
+
},
|
|
3073
|
+
"description": "The change event from the file input"
|
|
3074
|
+
}
|
|
3075
|
+
],
|
|
3076
|
+
"description": "Handles file selection from the file input\nValidates file size and sets up for processing"
|
|
3077
|
+
},
|
|
3078
|
+
{
|
|
3079
|
+
"kind": "method",
|
|
3080
|
+
"name": "clearSelection",
|
|
3081
|
+
"privacy": "public",
|
|
3082
|
+
"description": "Clears all file selection and processing state\nResets the component to its initial state"
|
|
3083
|
+
},
|
|
3084
|
+
{
|
|
3085
|
+
"kind": "method",
|
|
3086
|
+
"name": "getSelectedFile",
|
|
3087
|
+
"privacy": "public",
|
|
3088
|
+
"description": "Gets the currently selected file object",
|
|
3089
|
+
"return": {
|
|
3090
|
+
"type": {
|
|
3091
|
+
"text": ""
|
|
3092
|
+
}
|
|
3093
|
+
}
|
|
3094
|
+
},
|
|
3095
|
+
{
|
|
3096
|
+
"kind": "method",
|
|
3097
|
+
"name": "showError",
|
|
3098
|
+
"privacy": "protected",
|
|
3099
|
+
"parameters": [
|
|
3100
|
+
{
|
|
3101
|
+
"name": "title",
|
|
3102
|
+
"type": {
|
|
3103
|
+
"text": "string"
|
|
3104
|
+
},
|
|
3105
|
+
"description": "The error title"
|
|
3106
|
+
},
|
|
3107
|
+
{
|
|
3108
|
+
"name": "message",
|
|
3109
|
+
"type": {
|
|
3110
|
+
"text": "string"
|
|
3111
|
+
},
|
|
3112
|
+
"description": "The error message"
|
|
3113
|
+
}
|
|
3114
|
+
],
|
|
3115
|
+
"description": "Shows an error notification using the unified error handling system"
|
|
3116
|
+
},
|
|
3117
|
+
{
|
|
3118
|
+
"kind": "method",
|
|
3119
|
+
"name": "onFileSelected",
|
|
3120
|
+
"privacy": "protected",
|
|
3121
|
+
"return": {
|
|
3122
|
+
"type": {
|
|
3123
|
+
"text": "void"
|
|
3124
|
+
}
|
|
3125
|
+
},
|
|
3126
|
+
"parameters": [
|
|
3127
|
+
{
|
|
3128
|
+
"name": "files",
|
|
3129
|
+
"type": {
|
|
3130
|
+
"text": "File[]"
|
|
3131
|
+
},
|
|
3132
|
+
"description": "The selected file"
|
|
3133
|
+
}
|
|
3134
|
+
],
|
|
3135
|
+
"description": "Abstract method called when a file is selected"
|
|
3136
|
+
},
|
|
3137
|
+
{
|
|
3138
|
+
"kind": "method",
|
|
3139
|
+
"name": "onFileCleared",
|
|
3140
|
+
"privacy": "protected",
|
|
3141
|
+
"return": {
|
|
3142
|
+
"type": {
|
|
3143
|
+
"text": "void"
|
|
3144
|
+
}
|
|
3145
|
+
},
|
|
3146
|
+
"description": "Abstract method called when file selection is cleared"
|
|
3147
|
+
},
|
|
3148
|
+
{
|
|
3149
|
+
"kind": "field",
|
|
3150
|
+
"name": "_presentation",
|
|
3151
|
+
"type": {
|
|
3152
|
+
"text": "ComponentPresentation | null | undefined"
|
|
3153
|
+
},
|
|
3154
|
+
"privacy": "private",
|
|
3155
|
+
"default": "void 0",
|
|
3156
|
+
"inheritedFrom": {
|
|
3157
|
+
"name": "FoundationElement",
|
|
3158
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
3159
|
+
}
|
|
3160
|
+
},
|
|
3161
|
+
{
|
|
3162
|
+
"kind": "field",
|
|
3163
|
+
"name": "$presentation",
|
|
3164
|
+
"type": {
|
|
3165
|
+
"text": "ComponentPresentation | null"
|
|
3166
|
+
},
|
|
3167
|
+
"privacy": "public",
|
|
3168
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
3169
|
+
"inheritedFrom": {
|
|
3170
|
+
"name": "FoundationElement",
|
|
3171
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
3172
|
+
}
|
|
3173
|
+
},
|
|
3174
|
+
{
|
|
3175
|
+
"kind": "field",
|
|
3176
|
+
"name": "template",
|
|
3177
|
+
"type": {
|
|
3178
|
+
"text": "ElementViewTemplate | void | null"
|
|
3179
|
+
},
|
|
3180
|
+
"privacy": "public",
|
|
3181
|
+
"description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
|
|
3182
|
+
"inheritedFrom": {
|
|
3183
|
+
"name": "FoundationElement",
|
|
3184
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
3185
|
+
}
|
|
3186
|
+
},
|
|
3187
|
+
{
|
|
3188
|
+
"kind": "method",
|
|
3189
|
+
"name": "templateChanged",
|
|
3190
|
+
"privacy": "protected",
|
|
3191
|
+
"return": {
|
|
3192
|
+
"type": {
|
|
3193
|
+
"text": "void"
|
|
3194
|
+
}
|
|
3195
|
+
},
|
|
3196
|
+
"inheritedFrom": {
|
|
3197
|
+
"name": "FoundationElement",
|
|
3198
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
3199
|
+
}
|
|
3200
|
+
},
|
|
3201
|
+
{
|
|
3202
|
+
"kind": "field",
|
|
3203
|
+
"name": "styles",
|
|
3204
|
+
"type": {
|
|
3205
|
+
"text": "ElementStyles | void | null"
|
|
3206
|
+
},
|
|
3207
|
+
"privacy": "public",
|
|
3208
|
+
"description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
|
|
3209
|
+
"inheritedFrom": {
|
|
3210
|
+
"name": "FoundationElement",
|
|
3211
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
3212
|
+
}
|
|
3213
|
+
},
|
|
3214
|
+
{
|
|
3215
|
+
"kind": "method",
|
|
3216
|
+
"name": "stylesChanged",
|
|
3217
|
+
"privacy": "protected",
|
|
3218
|
+
"return": {
|
|
3219
|
+
"type": {
|
|
3220
|
+
"text": "void"
|
|
3221
|
+
}
|
|
3222
|
+
},
|
|
3223
|
+
"inheritedFrom": {
|
|
3224
|
+
"name": "FoundationElement",
|
|
3225
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
3226
|
+
}
|
|
3227
|
+
},
|
|
3228
|
+
{
|
|
3229
|
+
"kind": "method",
|
|
3230
|
+
"name": "compose",
|
|
3231
|
+
"privacy": "public",
|
|
3232
|
+
"static": true,
|
|
3233
|
+
"return": {
|
|
3234
|
+
"type": {
|
|
3235
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
3236
|
+
}
|
|
3237
|
+
},
|
|
3238
|
+
"parameters": [
|
|
3239
|
+
{
|
|
3240
|
+
"name": "this",
|
|
3241
|
+
"type": {
|
|
3242
|
+
"text": "K"
|
|
3243
|
+
}
|
|
3244
|
+
},
|
|
3245
|
+
{
|
|
3246
|
+
"name": "elementDefinition",
|
|
3247
|
+
"type": {
|
|
3248
|
+
"text": "T"
|
|
3249
|
+
},
|
|
3250
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
3251
|
+
}
|
|
3252
|
+
],
|
|
3253
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
3254
|
+
"inheritedFrom": {
|
|
3255
|
+
"name": "FoundationElement",
|
|
3256
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
3257
|
+
}
|
|
3258
|
+
}
|
|
3259
|
+
],
|
|
3260
|
+
"events": [
|
|
3261
|
+
{
|
|
3262
|
+
"description": "Fired when file size validation fails",
|
|
3263
|
+
"name": "error"
|
|
3264
|
+
},
|
|
3265
|
+
{
|
|
3266
|
+
"description": "Fired when selection is cleared",
|
|
3267
|
+
"name": "clear"
|
|
3268
|
+
}
|
|
3269
|
+
],
|
|
3270
|
+
"attributes": [
|
|
3271
|
+
{
|
|
3272
|
+
"name": "label",
|
|
3273
|
+
"type": {
|
|
3274
|
+
"text": "string"
|
|
3275
|
+
},
|
|
3276
|
+
"fieldName": "label"
|
|
3277
|
+
},
|
|
3278
|
+
{
|
|
3279
|
+
"name": "accept",
|
|
3280
|
+
"type": {
|
|
3281
|
+
"text": "string"
|
|
3282
|
+
},
|
|
3283
|
+
"default": "''",
|
|
3284
|
+
"fieldName": "accept"
|
|
3285
|
+
},
|
|
3286
|
+
{
|
|
3287
|
+
"name": "file-size-limit-bytes",
|
|
3288
|
+
"default": "DEFAULT_FILE_SIZE_LIMIT",
|
|
3289
|
+
"resolveInitializer": {
|
|
3290
|
+
"module": "src/_common/base-file-component.ts"
|
|
3291
|
+
},
|
|
3292
|
+
"fieldName": "fileSizeLimitBytes"
|
|
3293
|
+
}
|
|
3294
|
+
],
|
|
3295
|
+
"superclass": {
|
|
3296
|
+
"name": "FoundationElement",
|
|
3297
|
+
"package": "@microsoft/fast-foundation"
|
|
3298
|
+
}
|
|
3299
|
+
}
|
|
3300
|
+
],
|
|
3301
|
+
"exports": [
|
|
3302
|
+
{
|
|
3303
|
+
"kind": "js",
|
|
3304
|
+
"name": "BaseFileComponent",
|
|
3305
|
+
"declaration": {
|
|
3306
|
+
"name": "BaseFileComponent",
|
|
3307
|
+
"module": "src/_common/base-file-component.ts"
|
|
3308
|
+
}
|
|
3309
|
+
}
|
|
3310
|
+
]
|
|
3311
|
+
},
|
|
3312
|
+
{
|
|
3313
|
+
"kind": "javascript-module",
|
|
3314
|
+
"path": "src/_common/field-styles.ts",
|
|
3315
|
+
"declarations": [
|
|
3316
|
+
{
|
|
3317
|
+
"kind": "variable",
|
|
3318
|
+
"name": "sharedFieldStyles",
|
|
3319
|
+
"default": "css`\n .label-hidden {\n margin: 0;\n }\n\n .control-field {\n display: flex;\n flex: 1 1 0%;\n min-width: 0;\n align-self: stretch;\n align-items: stretch;\n }\n\n .control-field .control {\n flex: 1 1 auto;\n min-width: 0;\n width: auto;\n }\n\n .prefix,\n .suffix {\n display: flex;\n align-items: center;\n flex-shrink: 0;\n box-sizing: border-box;\n padding: 0 calc(var(--design-unit) * 2px);\n user-select: none;\n white-space: nowrap;\n background-color: var(--neutral-fill-rest);\n color: var(--neutral-foreground-hint);\n font-size: var(--type-ramp-base-font-size);\n font-family: inherit;\n line-height: 1;\n }\n\n .prefix {\n border-right: 1px solid var(--neutral-stroke-divider-rest);\n border-radius: calc(var(--control-corner-radius) * 1px) 0 0\n calc(var(--control-corner-radius) * 1px);\n }\n\n .suffix {\n border-left: 1px solid var(--neutral-stroke-divider-rest);\n border-radius: 0 calc(var(--control-corner-radius) * 1px)\n calc(var(--control-corner-radius) * 1px) 0;\n }\n\n :host(.has-prefix:not(.has-suffix)) .control-field .control {\n border-radius: 0 calc(var(--control-corner-radius) * 1px)\n calc(var(--control-corner-radius) * 1px) 0;\n }\n\n :host(.has-suffix:not(.has-prefix)) .control-field .control {\n border-radius: calc(var(--control-corner-radius) * 1px) 0 0\n calc(var(--control-corner-radius) * 1px);\n }\n\n :host(.has-prefix.has-suffix) .control-field .control {\n border-radius: 0;\n }\n`"
|
|
3320
|
+
}
|
|
3321
|
+
],
|
|
3322
|
+
"exports": [
|
|
3323
|
+
{
|
|
3324
|
+
"kind": "js",
|
|
3325
|
+
"name": "sharedFieldStyles",
|
|
3326
|
+
"declaration": {
|
|
3327
|
+
"name": "sharedFieldStyles",
|
|
3328
|
+
"module": "src/_common/field-styles.ts"
|
|
3329
|
+
}
|
|
3330
|
+
}
|
|
3331
|
+
]
|
|
3332
|
+
},
|
|
3333
|
+
{
|
|
3334
|
+
"kind": "javascript-module",
|
|
3335
|
+
"path": "src/_common/icons.ts",
|
|
3336
|
+
"declarations": [
|
|
3337
|
+
{
|
|
3338
|
+
"kind": "function",
|
|
3339
|
+
"name": "closeIcon",
|
|
3340
|
+
"parameters": [
|
|
3341
|
+
{
|
|
3342
|
+
"name": "slot",
|
|
3343
|
+
"default": "'start'"
|
|
3344
|
+
},
|
|
3345
|
+
{
|
|
3346
|
+
"name": "fill",
|
|
3347
|
+
"default": "'#879ba6'"
|
|
3348
|
+
}
|
|
3349
|
+
]
|
|
3350
|
+
}
|
|
3351
|
+
],
|
|
3352
|
+
"exports": [
|
|
3353
|
+
{
|
|
3354
|
+
"kind": "js",
|
|
3355
|
+
"name": "closeIcon",
|
|
3356
|
+
"declaration": {
|
|
3357
|
+
"name": "closeIcon",
|
|
3358
|
+
"module": "src/_common/icons.ts"
|
|
3359
|
+
}
|
|
3360
|
+
}
|
|
3361
|
+
]
|
|
3362
|
+
},
|
|
3363
|
+
{
|
|
3364
|
+
"kind": "javascript-module",
|
|
3365
|
+
"path": "src/_common/index.ts",
|
|
3366
|
+
"declarations": [],
|
|
3367
|
+
"exports": [
|
|
3368
|
+
{
|
|
3369
|
+
"kind": "js",
|
|
3370
|
+
"name": "*",
|
|
3371
|
+
"declaration": {
|
|
3372
|
+
"name": "*",
|
|
3373
|
+
"package": "./affix-mixin"
|
|
3374
|
+
}
|
|
3375
|
+
},
|
|
3376
|
+
{
|
|
3377
|
+
"kind": "js",
|
|
3378
|
+
"name": "*",
|
|
3379
|
+
"declaration": {
|
|
3380
|
+
"name": "*",
|
|
3381
|
+
"package": "./base-file-component"
|
|
3382
|
+
}
|
|
3383
|
+
},
|
|
3384
|
+
{
|
|
3385
|
+
"kind": "js",
|
|
3386
|
+
"name": "*",
|
|
3387
|
+
"declaration": {
|
|
3388
|
+
"name": "*",
|
|
3389
|
+
"package": "./field-styles"
|
|
3390
|
+
}
|
|
3391
|
+
},
|
|
3392
|
+
{
|
|
3393
|
+
"kind": "js",
|
|
3394
|
+
"name": "*",
|
|
3395
|
+
"declaration": {
|
|
3396
|
+
"name": "*",
|
|
3397
|
+
"package": "./icons"
|
|
3398
|
+
}
|
|
3399
|
+
}
|
|
3400
|
+
]
|
|
3401
|
+
},
|
|
3402
|
+
{
|
|
3403
|
+
"kind": "javascript-module",
|
|
3404
|
+
"path": "src/_config/index.ts",
|
|
3405
|
+
"declarations": [],
|
|
3406
|
+
"exports": [
|
|
3407
|
+
{
|
|
3408
|
+
"kind": "js",
|
|
3409
|
+
"name": "*",
|
|
3410
|
+
"declaration": {
|
|
3411
|
+
"name": "*",
|
|
3412
|
+
"package": "./styles"
|
|
3413
|
+
}
|
|
3414
|
+
},
|
|
3415
|
+
{
|
|
3416
|
+
"kind": "js",
|
|
3417
|
+
"name": "*",
|
|
3418
|
+
"declaration": {
|
|
3419
|
+
"name": "*",
|
|
3420
|
+
"package": "./tokens"
|
|
3421
|
+
}
|
|
3422
|
+
},
|
|
3423
|
+
{
|
|
3424
|
+
"kind": "js",
|
|
3425
|
+
"name": "*",
|
|
3426
|
+
"declaration": {
|
|
3427
|
+
"name": "*",
|
|
3428
|
+
"package": "./values"
|
|
3429
|
+
}
|
|
3430
|
+
}
|
|
3431
|
+
]
|
|
3432
|
+
},
|
|
3402
3433
|
{
|
|
3403
3434
|
"kind": "javascript-module",
|
|
3404
3435
|
"path": "src/accordion/accordion.styles.ts",
|
|
@@ -3914,37 +3945,6 @@
|
|
|
3914
3945
|
}
|
|
3915
3946
|
]
|
|
3916
3947
|
},
|
|
3917
|
-
{
|
|
3918
|
-
"kind": "javascript-module",
|
|
3919
|
-
"path": "src/_config/index.ts",
|
|
3920
|
-
"declarations": [],
|
|
3921
|
-
"exports": [
|
|
3922
|
-
{
|
|
3923
|
-
"kind": "js",
|
|
3924
|
-
"name": "*",
|
|
3925
|
-
"declaration": {
|
|
3926
|
-
"name": "*",
|
|
3927
|
-
"package": "./styles"
|
|
3928
|
-
}
|
|
3929
|
-
},
|
|
3930
|
-
{
|
|
3931
|
-
"kind": "js",
|
|
3932
|
-
"name": "*",
|
|
3933
|
-
"declaration": {
|
|
3934
|
-
"name": "*",
|
|
3935
|
-
"package": "./tokens"
|
|
3936
|
-
}
|
|
3937
|
-
},
|
|
3938
|
-
{
|
|
3939
|
-
"kind": "js",
|
|
3940
|
-
"name": "*",
|
|
3941
|
-
"declaration": {
|
|
3942
|
-
"name": "*",
|
|
3943
|
-
"package": "./values"
|
|
3944
|
-
}
|
|
3945
|
-
}
|
|
3946
|
-
]
|
|
3947
|
-
},
|
|
3948
3948
|
{
|
|
3949
3949
|
"kind": "javascript-module",
|
|
3950
3950
|
"path": "src/anchor/anchor.styles.ts",
|
|
@@ -45972,460 +45972,170 @@
|
|
|
45972
45972
|
"name": "foundationSliderLabelTemplate",
|
|
45973
45973
|
"declaration": {
|
|
45974
45974
|
"name": "foundationSliderLabelTemplate",
|
|
45975
|
-
"module": "src/slider-label/slider-label.template.ts"
|
|
45976
|
-
}
|
|
45977
|
-
}
|
|
45978
|
-
]
|
|
45979
|
-
},
|
|
45980
|
-
{
|
|
45981
|
-
"kind": "javascript-module",
|
|
45982
|
-
"path": "src/slider-label/slider-label.ts",
|
|
45983
|
-
"declarations": [
|
|
45984
|
-
{
|
|
45985
|
-
"kind": "class",
|
|
45986
|
-
"description": "",
|
|
45987
|
-
"name": "SliderLabel",
|
|
45988
|
-
"superclass": {
|
|
45989
|
-
"name": "FASTSliderLabel",
|
|
45990
|
-
"package": "@microsoft/fast-components"
|
|
45991
|
-
},
|
|
45992
|
-
"tagName": "%%prefix%%-slider-label",
|
|
45993
|
-
"customElement": true,
|
|
45994
|
-
"attributes": [
|
|
45995
|
-
{
|
|
45996
|
-
"name": "position",
|
|
45997
|
-
"type": {
|
|
45998
|
-
"text": "string"
|
|
45999
|
-
},
|
|
46000
|
-
"description": "The position of the label relative to the min and max value of the parent @microsoft/fast-foundation#(Slider:class).",
|
|
46001
|
-
"fieldName": "position",
|
|
46002
|
-
"inheritedFrom": {
|
|
46003
|
-
"name": "SliderLabel",
|
|
46004
|
-
"module": "src/slider-label/slider-label.ts"
|
|
46005
|
-
}
|
|
46006
|
-
},
|
|
46007
|
-
{
|
|
46008
|
-
"name": "hide-mark",
|
|
46009
|
-
"type": {
|
|
46010
|
-
"text": "boolean"
|
|
46011
|
-
},
|
|
46012
|
-
"default": "false",
|
|
46013
|
-
"description": "Hides the tick mark.",
|
|
46014
|
-
"fieldName": "hideMark",
|
|
46015
|
-
"inheritedFrom": {
|
|
46016
|
-
"name": "SliderLabel",
|
|
46017
|
-
"module": "src/slider-label/slider-label.ts"
|
|
46018
|
-
}
|
|
46019
|
-
},
|
|
46020
|
-
{
|
|
46021
|
-
"name": "disabled",
|
|
46022
|
-
"type": {
|
|
46023
|
-
"text": "boolean"
|
|
46024
|
-
},
|
|
46025
|
-
"description": "The disabled state of the label. This is generally controlled by the parent @microsoft/fast-foundation#(Slider:class).",
|
|
46026
|
-
"fieldName": "disabled",
|
|
46027
|
-
"inheritedFrom": {
|
|
46028
|
-
"name": "SliderLabel",
|
|
46029
|
-
"module": "src/slider-label/slider-label.ts"
|
|
46030
|
-
}
|
|
46031
|
-
}
|
|
46032
|
-
],
|
|
46033
|
-
"members": [
|
|
46034
|
-
{
|
|
46035
|
-
"kind": "field",
|
|
46036
|
-
"name": "position",
|
|
46037
|
-
"type": {
|
|
46038
|
-
"text": "string"
|
|
46039
|
-
},
|
|
46040
|
-
"privacy": "public",
|
|
46041
|
-
"description": "The position of the label relative to the min and max value of the parent {@link @microsoft/fast-foundation#(Slider:class)}.",
|
|
46042
|
-
"inheritedFrom": {
|
|
46043
|
-
"name": "SliderLabel",
|
|
46044
|
-
"module": "src/slider-label/slider-label.ts"
|
|
46045
|
-
}
|
|
46046
|
-
},
|
|
46047
|
-
{
|
|
46048
|
-
"kind": "method",
|
|
46049
|
-
"name": "positionChanged",
|
|
46050
|
-
"privacy": "private",
|
|
46051
|
-
"return": {
|
|
46052
|
-
"type": {
|
|
46053
|
-
"text": "void"
|
|
46054
|
-
}
|
|
46055
|
-
},
|
|
46056
|
-
"inheritedFrom": {
|
|
46057
|
-
"name": "SliderLabel",
|
|
46058
|
-
"module": "src/slider-label/slider-label.ts"
|
|
46059
|
-
}
|
|
46060
|
-
},
|
|
46061
|
-
{
|
|
46062
|
-
"kind": "field",
|
|
46063
|
-
"name": "hideMark",
|
|
46064
|
-
"type": {
|
|
46065
|
-
"text": "boolean"
|
|
46066
|
-
},
|
|
46067
|
-
"privacy": "public",
|
|
46068
|
-
"default": "false",
|
|
46069
|
-
"description": "Hides the tick mark.",
|
|
46070
|
-
"inheritedFrom": {
|
|
46071
|
-
"name": "SliderLabel",
|
|
46072
|
-
"module": "src/slider-label/slider-label.ts"
|
|
46073
|
-
}
|
|
46074
|
-
},
|
|
46075
|
-
{
|
|
46076
|
-
"kind": "field",
|
|
46077
|
-
"name": "disabled",
|
|
46078
|
-
"type": {
|
|
46079
|
-
"text": "boolean"
|
|
46080
|
-
},
|
|
46081
|
-
"privacy": "public",
|
|
46082
|
-
"description": "The disabled state of the label. This is generally controlled by the parent {@link @microsoft/fast-foundation#(Slider:class)}.",
|
|
46083
|
-
"inheritedFrom": {
|
|
46084
|
-
"name": "SliderLabel",
|
|
46085
|
-
"module": "src/slider-label/slider-label.ts"
|
|
46086
|
-
}
|
|
46087
|
-
},
|
|
46088
|
-
{
|
|
46089
|
-
"kind": "field",
|
|
46090
|
-
"name": "notifier",
|
|
46091
|
-
"type": {
|
|
46092
|
-
"text": "Notifier"
|
|
46093
|
-
},
|
|
46094
|
-
"privacy": "private",
|
|
46095
|
-
"inheritedFrom": {
|
|
46096
|
-
"name": "SliderLabel",
|
|
46097
|
-
"module": "src/slider-label/slider-label.ts"
|
|
46098
|
-
}
|
|
46099
|
-
},
|
|
46100
|
-
{
|
|
46101
|
-
"kind": "method",
|
|
46102
|
-
"name": "isSliderConfig",
|
|
46103
|
-
"privacy": "private",
|
|
46104
|
-
"return": {
|
|
46105
|
-
"type": {
|
|
46106
|
-
"text": "node is SliderConfiguration"
|
|
46107
|
-
}
|
|
46108
|
-
},
|
|
46109
|
-
"parameters": [
|
|
46110
|
-
{
|
|
46111
|
-
"name": "node",
|
|
46112
|
-
"type": {
|
|
46113
|
-
"text": "any"
|
|
46114
|
-
}
|
|
46115
|
-
}
|
|
46116
|
-
],
|
|
46117
|
-
"inheritedFrom": {
|
|
46118
|
-
"name": "SliderLabel",
|
|
46119
|
-
"module": "src/slider-label/slider-label.ts"
|
|
46120
|
-
}
|
|
46121
|
-
},
|
|
46122
|
-
{
|
|
46123
|
-
"kind": "field",
|
|
46124
|
-
"name": "getSliderConfiguration",
|
|
46125
|
-
"privacy": "private",
|
|
46126
|
-
"inheritedFrom": {
|
|
46127
|
-
"name": "SliderLabel",
|
|
46128
|
-
"module": "src/slider-label/slider-label.ts"
|
|
46129
|
-
}
|
|
46130
|
-
},
|
|
46131
|
-
{
|
|
46132
|
-
"kind": "field",
|
|
46133
|
-
"name": "positionAsStyle",
|
|
46134
|
-
"privacy": "private",
|
|
46135
|
-
"inheritedFrom": {
|
|
46136
|
-
"name": "SliderLabel",
|
|
46137
|
-
"module": "src/slider-label/slider-label.ts"
|
|
46138
|
-
}
|
|
46139
|
-
},
|
|
46140
|
-
{
|
|
46141
|
-
"kind": "field",
|
|
46142
|
-
"name": "_presentation",
|
|
46143
|
-
"type": {
|
|
46144
|
-
"text": "ComponentPresentation | null | undefined"
|
|
46145
|
-
},
|
|
46146
|
-
"privacy": "private",
|
|
46147
|
-
"default": "void 0",
|
|
46148
|
-
"inheritedFrom": {
|
|
46149
|
-
"name": "FoundationElement",
|
|
46150
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
46151
|
-
}
|
|
46152
|
-
},
|
|
46153
|
-
{
|
|
46154
|
-
"kind": "field",
|
|
46155
|
-
"name": "$presentation",
|
|
46156
|
-
"type": {
|
|
46157
|
-
"text": "ComponentPresentation | null"
|
|
46158
|
-
},
|
|
46159
|
-
"privacy": "public",
|
|
46160
|
-
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
46161
|
-
"inheritedFrom": {
|
|
46162
|
-
"name": "FoundationElement",
|
|
46163
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
46164
|
-
}
|
|
46165
|
-
},
|
|
46166
|
-
{
|
|
46167
|
-
"kind": "field",
|
|
46168
|
-
"name": "template",
|
|
46169
|
-
"type": {
|
|
46170
|
-
"text": "ElementViewTemplate | void | null"
|
|
46171
|
-
},
|
|
46172
|
-
"privacy": "public",
|
|
46173
|
-
"description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
|
|
46174
|
-
"inheritedFrom": {
|
|
46175
|
-
"name": "FoundationElement",
|
|
46176
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
46177
|
-
}
|
|
46178
|
-
},
|
|
46179
|
-
{
|
|
46180
|
-
"kind": "method",
|
|
46181
|
-
"name": "templateChanged",
|
|
46182
|
-
"privacy": "protected",
|
|
46183
|
-
"return": {
|
|
46184
|
-
"type": {
|
|
46185
|
-
"text": "void"
|
|
46186
|
-
}
|
|
46187
|
-
},
|
|
46188
|
-
"inheritedFrom": {
|
|
46189
|
-
"name": "FoundationElement",
|
|
46190
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
46191
|
-
}
|
|
46192
|
-
},
|
|
46193
|
-
{
|
|
46194
|
-
"kind": "field",
|
|
46195
|
-
"name": "styles",
|
|
46196
|
-
"type": {
|
|
46197
|
-
"text": "ElementStyles | void | null"
|
|
46198
|
-
},
|
|
46199
|
-
"privacy": "public",
|
|
46200
|
-
"description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
|
|
46201
|
-
"inheritedFrom": {
|
|
46202
|
-
"name": "FoundationElement",
|
|
46203
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
46204
|
-
}
|
|
46205
|
-
},
|
|
46206
|
-
{
|
|
46207
|
-
"kind": "method",
|
|
46208
|
-
"name": "stylesChanged",
|
|
46209
|
-
"privacy": "protected",
|
|
46210
|
-
"return": {
|
|
46211
|
-
"type": {
|
|
46212
|
-
"text": "void"
|
|
46213
|
-
}
|
|
46214
|
-
},
|
|
46215
|
-
"inheritedFrom": {
|
|
46216
|
-
"name": "FoundationElement",
|
|
46217
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
46218
|
-
}
|
|
46219
|
-
},
|
|
46220
|
-
{
|
|
46221
|
-
"kind": "method",
|
|
46222
|
-
"name": "compose",
|
|
46223
|
-
"privacy": "public",
|
|
46224
|
-
"static": true,
|
|
46225
|
-
"return": {
|
|
46226
|
-
"type": {
|
|
46227
|
-
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
46228
|
-
}
|
|
46229
|
-
},
|
|
46230
|
-
"parameters": [
|
|
46231
|
-
{
|
|
46232
|
-
"name": "this",
|
|
46233
|
-
"type": {
|
|
46234
|
-
"text": "K"
|
|
46235
|
-
}
|
|
46236
|
-
},
|
|
46237
|
-
{
|
|
46238
|
-
"name": "elementDefinition",
|
|
46239
|
-
"type": {
|
|
46240
|
-
"text": "T"
|
|
46241
|
-
},
|
|
46242
|
-
"description": "The definition of the element to create the registry\nfunction for."
|
|
46243
|
-
}
|
|
46244
|
-
],
|
|
46245
|
-
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
46246
|
-
"inheritedFrom": {
|
|
46247
|
-
"name": "FoundationElement",
|
|
46248
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
46249
|
-
}
|
|
46250
|
-
}
|
|
46251
|
-
]
|
|
46252
|
-
},
|
|
46253
|
-
{
|
|
46254
|
-
"kind": "variable",
|
|
46255
|
-
"name": "foundationSliderLabelShadowOptions",
|
|
46256
|
-
"type": {
|
|
46257
|
-
"text": "ShadowRootInit"
|
|
46258
|
-
},
|
|
46259
|
-
"default": "undefined"
|
|
46260
|
-
},
|
|
46261
|
-
{
|
|
46262
|
-
"kind": "variable",
|
|
46263
|
-
"name": "defaultSliderLabelConfig",
|
|
46264
|
-
"type": {
|
|
46265
|
-
"text": "object"
|
|
46266
|
-
},
|
|
46267
|
-
"default": "{}"
|
|
46268
|
-
},
|
|
46269
|
-
{
|
|
46270
|
-
"kind": "variable",
|
|
46271
|
-
"name": "foundationSliderLabel",
|
|
46272
|
-
"description": "The Foundation Slider Label",
|
|
46273
|
-
"privacy": "public"
|
|
46274
|
-
}
|
|
46275
|
-
],
|
|
46276
|
-
"exports": [
|
|
46277
|
-
{
|
|
46278
|
-
"kind": "js",
|
|
46279
|
-
"name": "SliderLabel",
|
|
46280
|
-
"declaration": {
|
|
46281
|
-
"name": "SliderLabel",
|
|
46282
|
-
"module": "src/slider-label/slider-label.ts"
|
|
46283
|
-
}
|
|
46284
|
-
},
|
|
46285
|
-
{
|
|
46286
|
-
"kind": "js",
|
|
46287
|
-
"name": "foundationSliderLabelShadowOptions",
|
|
46288
|
-
"declaration": {
|
|
46289
|
-
"name": "foundationSliderLabelShadowOptions",
|
|
46290
|
-
"module": "src/slider-label/slider-label.ts"
|
|
46291
|
-
}
|
|
46292
|
-
},
|
|
46293
|
-
{
|
|
46294
|
-
"kind": "js",
|
|
46295
|
-
"name": "defaultSliderLabelConfig",
|
|
46296
|
-
"declaration": {
|
|
46297
|
-
"name": "defaultSliderLabelConfig",
|
|
46298
|
-
"module": "src/slider-label/slider-label.ts"
|
|
46299
|
-
}
|
|
46300
|
-
},
|
|
46301
|
-
{
|
|
46302
|
-
"kind": "js",
|
|
46303
|
-
"name": "foundationSliderLabel",
|
|
46304
|
-
"declaration": {
|
|
46305
|
-
"name": "foundationSliderLabel",
|
|
46306
|
-
"module": "src/slider-label/slider-label.ts"
|
|
46307
|
-
}
|
|
46308
|
-
}
|
|
46309
|
-
]
|
|
46310
|
-
},
|
|
46311
|
-
{
|
|
46312
|
-
"kind": "javascript-module",
|
|
46313
|
-
"path": "src/stacking-icons/index.ts",
|
|
46314
|
-
"declarations": [],
|
|
46315
|
-
"exports": [
|
|
46316
|
-
{
|
|
46317
|
-
"kind": "js",
|
|
46318
|
-
"name": "*",
|
|
46319
|
-
"declaration": {
|
|
46320
|
-
"name": "*",
|
|
46321
|
-
"package": "./stacking-icons.styles"
|
|
46322
|
-
}
|
|
46323
|
-
},
|
|
46324
|
-
{
|
|
46325
|
-
"kind": "js",
|
|
46326
|
-
"name": "*",
|
|
46327
|
-
"declaration": {
|
|
46328
|
-
"name": "*",
|
|
46329
|
-
"package": "./stacking-icons.template"
|
|
46330
|
-
}
|
|
46331
|
-
},
|
|
46332
|
-
{
|
|
46333
|
-
"kind": "js",
|
|
46334
|
-
"name": "*",
|
|
46335
|
-
"declaration": {
|
|
46336
|
-
"name": "*",
|
|
46337
|
-
"package": "./stacking-icons"
|
|
46338
|
-
}
|
|
46339
|
-
}
|
|
46340
|
-
]
|
|
46341
|
-
},
|
|
46342
|
-
{
|
|
46343
|
-
"kind": "javascript-module",
|
|
46344
|
-
"path": "src/stacking-icons/stacking-icons.styles.ts",
|
|
46345
|
-
"declarations": [
|
|
46346
|
-
{
|
|
46347
|
-
"kind": "function",
|
|
46348
|
-
"name": "foundationStackingIconsStyles",
|
|
46349
|
-
"return": {
|
|
46350
|
-
"type": {
|
|
46351
|
-
"text": "ElementStyles"
|
|
46352
|
-
}
|
|
46353
|
-
},
|
|
46354
|
-
"parameters": [
|
|
46355
|
-
{
|
|
46356
|
-
"name": "context",
|
|
46357
|
-
"type": {
|
|
46358
|
-
"text": "ElementDefinitionContext"
|
|
46359
|
-
}
|
|
46360
|
-
},
|
|
46361
|
-
{
|
|
46362
|
-
"name": "definition",
|
|
46363
|
-
"type": {
|
|
46364
|
-
"text": "FoundationElementDefinition"
|
|
46365
|
-
}
|
|
46366
|
-
}
|
|
46367
|
-
]
|
|
46368
|
-
}
|
|
46369
|
-
],
|
|
46370
|
-
"exports": [
|
|
46371
|
-
{
|
|
46372
|
-
"kind": "js",
|
|
46373
|
-
"name": "foundationStackingIconsStyles",
|
|
46374
|
-
"declaration": {
|
|
46375
|
-
"name": "foundationStackingIconsStyles",
|
|
46376
|
-
"module": "src/stacking-icons/stacking-icons.styles.ts"
|
|
46377
|
-
}
|
|
46378
|
-
}
|
|
46379
|
-
]
|
|
46380
|
-
},
|
|
46381
|
-
{
|
|
46382
|
-
"kind": "javascript-module",
|
|
46383
|
-
"path": "src/stacking-icons/stacking-icons.template.ts",
|
|
46384
|
-
"declarations": [
|
|
46385
|
-
{
|
|
46386
|
-
"kind": "variable",
|
|
46387
|
-
"name": "foundationStackingIconsTemplate",
|
|
46388
|
-
"type": {
|
|
46389
|
-
"text": "ViewTemplate"
|
|
46390
|
-
},
|
|
46391
|
-
"default": "html<StackingIcons>`\n <span\n class=${(x) => `fa-stack fa-${x.size}`}\n style=${(x) => `vertical-align: ${x['vertical-align']};`}\n >\n <slot></slot>\n </span>\n`"
|
|
46392
|
-
}
|
|
46393
|
-
],
|
|
46394
|
-
"exports": [
|
|
46395
|
-
{
|
|
46396
|
-
"kind": "js",
|
|
46397
|
-
"name": "foundationStackingIconsTemplate",
|
|
46398
|
-
"declaration": {
|
|
46399
|
-
"name": "foundationStackingIconsTemplate",
|
|
46400
|
-
"module": "src/stacking-icons/stacking-icons.template.ts"
|
|
45975
|
+
"module": "src/slider-label/slider-label.template.ts"
|
|
46401
45976
|
}
|
|
46402
45977
|
}
|
|
46403
45978
|
]
|
|
46404
45979
|
},
|
|
46405
45980
|
{
|
|
46406
45981
|
"kind": "javascript-module",
|
|
46407
|
-
"path": "src/
|
|
45982
|
+
"path": "src/slider-label/slider-label.ts",
|
|
46408
45983
|
"declarations": [
|
|
46409
45984
|
{
|
|
46410
45985
|
"kind": "class",
|
|
46411
45986
|
"description": "",
|
|
46412
|
-
"name": "
|
|
45987
|
+
"name": "SliderLabel",
|
|
45988
|
+
"superclass": {
|
|
45989
|
+
"name": "FASTSliderLabel",
|
|
45990
|
+
"package": "@microsoft/fast-components"
|
|
45991
|
+
},
|
|
45992
|
+
"tagName": "%%prefix%%-slider-label",
|
|
45993
|
+
"customElement": true,
|
|
45994
|
+
"attributes": [
|
|
45995
|
+
{
|
|
45996
|
+
"name": "position",
|
|
45997
|
+
"type": {
|
|
45998
|
+
"text": "string"
|
|
45999
|
+
},
|
|
46000
|
+
"description": "The position of the label relative to the min and max value of the parent @microsoft/fast-foundation#(Slider:class).",
|
|
46001
|
+
"fieldName": "position",
|
|
46002
|
+
"inheritedFrom": {
|
|
46003
|
+
"name": "SliderLabel",
|
|
46004
|
+
"module": "src/slider-label/slider-label.ts"
|
|
46005
|
+
}
|
|
46006
|
+
},
|
|
46007
|
+
{
|
|
46008
|
+
"name": "hide-mark",
|
|
46009
|
+
"type": {
|
|
46010
|
+
"text": "boolean"
|
|
46011
|
+
},
|
|
46012
|
+
"default": "false",
|
|
46013
|
+
"description": "Hides the tick mark.",
|
|
46014
|
+
"fieldName": "hideMark",
|
|
46015
|
+
"inheritedFrom": {
|
|
46016
|
+
"name": "SliderLabel",
|
|
46017
|
+
"module": "src/slider-label/slider-label.ts"
|
|
46018
|
+
}
|
|
46019
|
+
},
|
|
46020
|
+
{
|
|
46021
|
+
"name": "disabled",
|
|
46022
|
+
"type": {
|
|
46023
|
+
"text": "boolean"
|
|
46024
|
+
},
|
|
46025
|
+
"description": "The disabled state of the label. This is generally controlled by the parent @microsoft/fast-foundation#(Slider:class).",
|
|
46026
|
+
"fieldName": "disabled",
|
|
46027
|
+
"inheritedFrom": {
|
|
46028
|
+
"name": "SliderLabel",
|
|
46029
|
+
"module": "src/slider-label/slider-label.ts"
|
|
46030
|
+
}
|
|
46031
|
+
}
|
|
46032
|
+
],
|
|
46413
46033
|
"members": [
|
|
46414
46034
|
{
|
|
46415
46035
|
"kind": "field",
|
|
46416
|
-
"name": "
|
|
46036
|
+
"name": "position",
|
|
46417
46037
|
"type": {
|
|
46418
|
-
"text": "
|
|
46038
|
+
"text": "string"
|
|
46419
46039
|
},
|
|
46420
|
-
"
|
|
46040
|
+
"privacy": "public",
|
|
46041
|
+
"description": "The position of the label relative to the min and max value of the parent {@link @microsoft/fast-foundation#(Slider:class)}.",
|
|
46042
|
+
"inheritedFrom": {
|
|
46043
|
+
"name": "SliderLabel",
|
|
46044
|
+
"module": "src/slider-label/slider-label.ts"
|
|
46045
|
+
}
|
|
46046
|
+
},
|
|
46047
|
+
{
|
|
46048
|
+
"kind": "method",
|
|
46049
|
+
"name": "positionChanged",
|
|
46050
|
+
"privacy": "private",
|
|
46051
|
+
"return": {
|
|
46052
|
+
"type": {
|
|
46053
|
+
"text": "void"
|
|
46054
|
+
}
|
|
46055
|
+
},
|
|
46056
|
+
"inheritedFrom": {
|
|
46057
|
+
"name": "SliderLabel",
|
|
46058
|
+
"module": "src/slider-label/slider-label.ts"
|
|
46059
|
+
}
|
|
46421
46060
|
},
|
|
46422
46061
|
{
|
|
46423
46062
|
"kind": "field",
|
|
46424
|
-
"name": "
|
|
46063
|
+
"name": "hideMark",
|
|
46425
46064
|
"type": {
|
|
46426
|
-
"text": "
|
|
46065
|
+
"text": "boolean"
|
|
46427
46066
|
},
|
|
46428
|
-
"
|
|
46067
|
+
"privacy": "public",
|
|
46068
|
+
"default": "false",
|
|
46069
|
+
"description": "Hides the tick mark.",
|
|
46070
|
+
"inheritedFrom": {
|
|
46071
|
+
"name": "SliderLabel",
|
|
46072
|
+
"module": "src/slider-label/slider-label.ts"
|
|
46073
|
+
}
|
|
46074
|
+
},
|
|
46075
|
+
{
|
|
46076
|
+
"kind": "field",
|
|
46077
|
+
"name": "disabled",
|
|
46078
|
+
"type": {
|
|
46079
|
+
"text": "boolean"
|
|
46080
|
+
},
|
|
46081
|
+
"privacy": "public",
|
|
46082
|
+
"description": "The disabled state of the label. This is generally controlled by the parent {@link @microsoft/fast-foundation#(Slider:class)}.",
|
|
46083
|
+
"inheritedFrom": {
|
|
46084
|
+
"name": "SliderLabel",
|
|
46085
|
+
"module": "src/slider-label/slider-label.ts"
|
|
46086
|
+
}
|
|
46087
|
+
},
|
|
46088
|
+
{
|
|
46089
|
+
"kind": "field",
|
|
46090
|
+
"name": "notifier",
|
|
46091
|
+
"type": {
|
|
46092
|
+
"text": "Notifier"
|
|
46093
|
+
},
|
|
46094
|
+
"privacy": "private",
|
|
46095
|
+
"inheritedFrom": {
|
|
46096
|
+
"name": "SliderLabel",
|
|
46097
|
+
"module": "src/slider-label/slider-label.ts"
|
|
46098
|
+
}
|
|
46099
|
+
},
|
|
46100
|
+
{
|
|
46101
|
+
"kind": "method",
|
|
46102
|
+
"name": "isSliderConfig",
|
|
46103
|
+
"privacy": "private",
|
|
46104
|
+
"return": {
|
|
46105
|
+
"type": {
|
|
46106
|
+
"text": "node is SliderConfiguration"
|
|
46107
|
+
}
|
|
46108
|
+
},
|
|
46109
|
+
"parameters": [
|
|
46110
|
+
{
|
|
46111
|
+
"name": "node",
|
|
46112
|
+
"type": {
|
|
46113
|
+
"text": "any"
|
|
46114
|
+
}
|
|
46115
|
+
}
|
|
46116
|
+
],
|
|
46117
|
+
"inheritedFrom": {
|
|
46118
|
+
"name": "SliderLabel",
|
|
46119
|
+
"module": "src/slider-label/slider-label.ts"
|
|
46120
|
+
}
|
|
46121
|
+
},
|
|
46122
|
+
{
|
|
46123
|
+
"kind": "field",
|
|
46124
|
+
"name": "getSliderConfiguration",
|
|
46125
|
+
"privacy": "private",
|
|
46126
|
+
"inheritedFrom": {
|
|
46127
|
+
"name": "SliderLabel",
|
|
46128
|
+
"module": "src/slider-label/slider-label.ts"
|
|
46129
|
+
}
|
|
46130
|
+
},
|
|
46131
|
+
{
|
|
46132
|
+
"kind": "field",
|
|
46133
|
+
"name": "positionAsStyle",
|
|
46134
|
+
"privacy": "private",
|
|
46135
|
+
"inheritedFrom": {
|
|
46136
|
+
"name": "SliderLabel",
|
|
46137
|
+
"module": "src/slider-label/slider-label.ts"
|
|
46138
|
+
}
|
|
46429
46139
|
},
|
|
46430
46140
|
{
|
|
46431
46141
|
"kind": "field",
|
|
@@ -46538,57 +46248,62 @@
|
|
|
46538
46248
|
"module": "src/foundation-element/foundation-element.ts"
|
|
46539
46249
|
}
|
|
46540
46250
|
}
|
|
46541
|
-
]
|
|
46542
|
-
|
|
46543
|
-
|
|
46544
|
-
|
|
46545
|
-
|
|
46546
|
-
|
|
46547
|
-
|
|
46548
|
-
"default": "faSizeValueDefault",
|
|
46549
|
-
"resolveInitializer": {
|
|
46550
|
-
"module": "/src/icon"
|
|
46551
|
-
},
|
|
46552
|
-
"fieldName": "size"
|
|
46553
|
-
},
|
|
46554
|
-
{
|
|
46555
|
-
"name": "['vertical-align']",
|
|
46556
|
-
"type": {
|
|
46557
|
-
"text": "VerticalAlign"
|
|
46558
|
-
},
|
|
46559
|
-
"default": "'baseline'",
|
|
46560
|
-
"fieldName": "['vertical-align']"
|
|
46561
|
-
}
|
|
46562
|
-
],
|
|
46563
|
-
"superclass": {
|
|
46564
|
-
"name": "FoundationElement",
|
|
46565
|
-
"package": "@microsoft/fast-foundation"
|
|
46251
|
+
]
|
|
46252
|
+
},
|
|
46253
|
+
{
|
|
46254
|
+
"kind": "variable",
|
|
46255
|
+
"name": "foundationSliderLabelShadowOptions",
|
|
46256
|
+
"type": {
|
|
46257
|
+
"text": "ShadowRootInit"
|
|
46566
46258
|
},
|
|
46567
|
-
"
|
|
46568
|
-
"customElement": true
|
|
46259
|
+
"default": "undefined"
|
|
46569
46260
|
},
|
|
46570
46261
|
{
|
|
46571
46262
|
"kind": "variable",
|
|
46572
|
-
"name": "
|
|
46573
|
-
"
|
|
46263
|
+
"name": "defaultSliderLabelConfig",
|
|
46264
|
+
"type": {
|
|
46265
|
+
"text": "object"
|
|
46266
|
+
},
|
|
46267
|
+
"default": "{}"
|
|
46268
|
+
},
|
|
46269
|
+
{
|
|
46270
|
+
"kind": "variable",
|
|
46271
|
+
"name": "foundationSliderLabel",
|
|
46272
|
+
"description": "The Foundation Slider Label",
|
|
46574
46273
|
"privacy": "public"
|
|
46575
46274
|
}
|
|
46576
46275
|
],
|
|
46577
46276
|
"exports": [
|
|
46578
46277
|
{
|
|
46579
46278
|
"kind": "js",
|
|
46580
|
-
"name": "
|
|
46279
|
+
"name": "SliderLabel",
|
|
46581
46280
|
"declaration": {
|
|
46582
|
-
"name": "
|
|
46583
|
-
"module": "src/
|
|
46281
|
+
"name": "SliderLabel",
|
|
46282
|
+
"module": "src/slider-label/slider-label.ts"
|
|
46584
46283
|
}
|
|
46585
46284
|
},
|
|
46586
46285
|
{
|
|
46587
46286
|
"kind": "js",
|
|
46588
|
-
"name": "
|
|
46287
|
+
"name": "foundationSliderLabelShadowOptions",
|
|
46589
46288
|
"declaration": {
|
|
46590
|
-
"name": "
|
|
46591
|
-
"module": "src/
|
|
46289
|
+
"name": "foundationSliderLabelShadowOptions",
|
|
46290
|
+
"module": "src/slider-label/slider-label.ts"
|
|
46291
|
+
}
|
|
46292
|
+
},
|
|
46293
|
+
{
|
|
46294
|
+
"kind": "js",
|
|
46295
|
+
"name": "defaultSliderLabelConfig",
|
|
46296
|
+
"declaration": {
|
|
46297
|
+
"name": "defaultSliderLabelConfig",
|
|
46298
|
+
"module": "src/slider-label/slider-label.ts"
|
|
46299
|
+
}
|
|
46300
|
+
},
|
|
46301
|
+
{
|
|
46302
|
+
"kind": "js",
|
|
46303
|
+
"name": "foundationSliderLabel",
|
|
46304
|
+
"declaration": {
|
|
46305
|
+
"name": "foundationSliderLabel",
|
|
46306
|
+
"module": "src/slider-label/slider-label.ts"
|
|
46592
46307
|
}
|
|
46593
46308
|
}
|
|
46594
46309
|
]
|
|
@@ -47066,6 +46781,291 @@
|
|
|
47066
46781
|
"declarations": [],
|
|
47067
46782
|
"exports": []
|
|
47068
46783
|
},
|
|
46784
|
+
{
|
|
46785
|
+
"kind": "javascript-module",
|
|
46786
|
+
"path": "src/stacking-icons/index.ts",
|
|
46787
|
+
"declarations": [],
|
|
46788
|
+
"exports": [
|
|
46789
|
+
{
|
|
46790
|
+
"kind": "js",
|
|
46791
|
+
"name": "*",
|
|
46792
|
+
"declaration": {
|
|
46793
|
+
"name": "*",
|
|
46794
|
+
"package": "./stacking-icons.styles"
|
|
46795
|
+
}
|
|
46796
|
+
},
|
|
46797
|
+
{
|
|
46798
|
+
"kind": "js",
|
|
46799
|
+
"name": "*",
|
|
46800
|
+
"declaration": {
|
|
46801
|
+
"name": "*",
|
|
46802
|
+
"package": "./stacking-icons.template"
|
|
46803
|
+
}
|
|
46804
|
+
},
|
|
46805
|
+
{
|
|
46806
|
+
"kind": "js",
|
|
46807
|
+
"name": "*",
|
|
46808
|
+
"declaration": {
|
|
46809
|
+
"name": "*",
|
|
46810
|
+
"package": "./stacking-icons"
|
|
46811
|
+
}
|
|
46812
|
+
}
|
|
46813
|
+
]
|
|
46814
|
+
},
|
|
46815
|
+
{
|
|
46816
|
+
"kind": "javascript-module",
|
|
46817
|
+
"path": "src/stacking-icons/stacking-icons.styles.ts",
|
|
46818
|
+
"declarations": [
|
|
46819
|
+
{
|
|
46820
|
+
"kind": "function",
|
|
46821
|
+
"name": "foundationStackingIconsStyles",
|
|
46822
|
+
"return": {
|
|
46823
|
+
"type": {
|
|
46824
|
+
"text": "ElementStyles"
|
|
46825
|
+
}
|
|
46826
|
+
},
|
|
46827
|
+
"parameters": [
|
|
46828
|
+
{
|
|
46829
|
+
"name": "context",
|
|
46830
|
+
"type": {
|
|
46831
|
+
"text": "ElementDefinitionContext"
|
|
46832
|
+
}
|
|
46833
|
+
},
|
|
46834
|
+
{
|
|
46835
|
+
"name": "definition",
|
|
46836
|
+
"type": {
|
|
46837
|
+
"text": "FoundationElementDefinition"
|
|
46838
|
+
}
|
|
46839
|
+
}
|
|
46840
|
+
]
|
|
46841
|
+
}
|
|
46842
|
+
],
|
|
46843
|
+
"exports": [
|
|
46844
|
+
{
|
|
46845
|
+
"kind": "js",
|
|
46846
|
+
"name": "foundationStackingIconsStyles",
|
|
46847
|
+
"declaration": {
|
|
46848
|
+
"name": "foundationStackingIconsStyles",
|
|
46849
|
+
"module": "src/stacking-icons/stacking-icons.styles.ts"
|
|
46850
|
+
}
|
|
46851
|
+
}
|
|
46852
|
+
]
|
|
46853
|
+
},
|
|
46854
|
+
{
|
|
46855
|
+
"kind": "javascript-module",
|
|
46856
|
+
"path": "src/stacking-icons/stacking-icons.template.ts",
|
|
46857
|
+
"declarations": [
|
|
46858
|
+
{
|
|
46859
|
+
"kind": "variable",
|
|
46860
|
+
"name": "foundationStackingIconsTemplate",
|
|
46861
|
+
"type": {
|
|
46862
|
+
"text": "ViewTemplate"
|
|
46863
|
+
},
|
|
46864
|
+
"default": "html<StackingIcons>`\n <span\n class=${(x) => `fa-stack fa-${x.size}`}\n style=${(x) => `vertical-align: ${x['vertical-align']};`}\n >\n <slot></slot>\n </span>\n`"
|
|
46865
|
+
}
|
|
46866
|
+
],
|
|
46867
|
+
"exports": [
|
|
46868
|
+
{
|
|
46869
|
+
"kind": "js",
|
|
46870
|
+
"name": "foundationStackingIconsTemplate",
|
|
46871
|
+
"declaration": {
|
|
46872
|
+
"name": "foundationStackingIconsTemplate",
|
|
46873
|
+
"module": "src/stacking-icons/stacking-icons.template.ts"
|
|
46874
|
+
}
|
|
46875
|
+
}
|
|
46876
|
+
]
|
|
46877
|
+
},
|
|
46878
|
+
{
|
|
46879
|
+
"kind": "javascript-module",
|
|
46880
|
+
"path": "src/stacking-icons/stacking-icons.ts",
|
|
46881
|
+
"declarations": [
|
|
46882
|
+
{
|
|
46883
|
+
"kind": "class",
|
|
46884
|
+
"description": "",
|
|
46885
|
+
"name": "StackingIcons",
|
|
46886
|
+
"members": [
|
|
46887
|
+
{
|
|
46888
|
+
"kind": "field",
|
|
46889
|
+
"name": "size",
|
|
46890
|
+
"type": {
|
|
46891
|
+
"text": "StackingIconsSize"
|
|
46892
|
+
},
|
|
46893
|
+
"default": "faSizeValueDefault"
|
|
46894
|
+
},
|
|
46895
|
+
{
|
|
46896
|
+
"kind": "field",
|
|
46897
|
+
"name": "['vertical-align']",
|
|
46898
|
+
"type": {
|
|
46899
|
+
"text": "VerticalAlign"
|
|
46900
|
+
},
|
|
46901
|
+
"default": "'baseline'"
|
|
46902
|
+
},
|
|
46903
|
+
{
|
|
46904
|
+
"kind": "field",
|
|
46905
|
+
"name": "_presentation",
|
|
46906
|
+
"type": {
|
|
46907
|
+
"text": "ComponentPresentation | null | undefined"
|
|
46908
|
+
},
|
|
46909
|
+
"privacy": "private",
|
|
46910
|
+
"default": "void 0",
|
|
46911
|
+
"inheritedFrom": {
|
|
46912
|
+
"name": "FoundationElement",
|
|
46913
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
46914
|
+
}
|
|
46915
|
+
},
|
|
46916
|
+
{
|
|
46917
|
+
"kind": "field",
|
|
46918
|
+
"name": "$presentation",
|
|
46919
|
+
"type": {
|
|
46920
|
+
"text": "ComponentPresentation | null"
|
|
46921
|
+
},
|
|
46922
|
+
"privacy": "public",
|
|
46923
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
46924
|
+
"inheritedFrom": {
|
|
46925
|
+
"name": "FoundationElement",
|
|
46926
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
46927
|
+
}
|
|
46928
|
+
},
|
|
46929
|
+
{
|
|
46930
|
+
"kind": "field",
|
|
46931
|
+
"name": "template",
|
|
46932
|
+
"type": {
|
|
46933
|
+
"text": "ElementViewTemplate | void | null"
|
|
46934
|
+
},
|
|
46935
|
+
"privacy": "public",
|
|
46936
|
+
"description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
|
|
46937
|
+
"inheritedFrom": {
|
|
46938
|
+
"name": "FoundationElement",
|
|
46939
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
46940
|
+
}
|
|
46941
|
+
},
|
|
46942
|
+
{
|
|
46943
|
+
"kind": "method",
|
|
46944
|
+
"name": "templateChanged",
|
|
46945
|
+
"privacy": "protected",
|
|
46946
|
+
"return": {
|
|
46947
|
+
"type": {
|
|
46948
|
+
"text": "void"
|
|
46949
|
+
}
|
|
46950
|
+
},
|
|
46951
|
+
"inheritedFrom": {
|
|
46952
|
+
"name": "FoundationElement",
|
|
46953
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
46954
|
+
}
|
|
46955
|
+
},
|
|
46956
|
+
{
|
|
46957
|
+
"kind": "field",
|
|
46958
|
+
"name": "styles",
|
|
46959
|
+
"type": {
|
|
46960
|
+
"text": "ElementStyles | void | null"
|
|
46961
|
+
},
|
|
46962
|
+
"privacy": "public",
|
|
46963
|
+
"description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
|
|
46964
|
+
"inheritedFrom": {
|
|
46965
|
+
"name": "FoundationElement",
|
|
46966
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
46967
|
+
}
|
|
46968
|
+
},
|
|
46969
|
+
{
|
|
46970
|
+
"kind": "method",
|
|
46971
|
+
"name": "stylesChanged",
|
|
46972
|
+
"privacy": "protected",
|
|
46973
|
+
"return": {
|
|
46974
|
+
"type": {
|
|
46975
|
+
"text": "void"
|
|
46976
|
+
}
|
|
46977
|
+
},
|
|
46978
|
+
"inheritedFrom": {
|
|
46979
|
+
"name": "FoundationElement",
|
|
46980
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
46981
|
+
}
|
|
46982
|
+
},
|
|
46983
|
+
{
|
|
46984
|
+
"kind": "method",
|
|
46985
|
+
"name": "compose",
|
|
46986
|
+
"privacy": "public",
|
|
46987
|
+
"static": true,
|
|
46988
|
+
"return": {
|
|
46989
|
+
"type": {
|
|
46990
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
46991
|
+
}
|
|
46992
|
+
},
|
|
46993
|
+
"parameters": [
|
|
46994
|
+
{
|
|
46995
|
+
"name": "this",
|
|
46996
|
+
"type": {
|
|
46997
|
+
"text": "K"
|
|
46998
|
+
}
|
|
46999
|
+
},
|
|
47000
|
+
{
|
|
47001
|
+
"name": "elementDefinition",
|
|
47002
|
+
"type": {
|
|
47003
|
+
"text": "T"
|
|
47004
|
+
},
|
|
47005
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
47006
|
+
}
|
|
47007
|
+
],
|
|
47008
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
47009
|
+
"inheritedFrom": {
|
|
47010
|
+
"name": "FoundationElement",
|
|
47011
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
47012
|
+
}
|
|
47013
|
+
}
|
|
47014
|
+
],
|
|
47015
|
+
"attributes": [
|
|
47016
|
+
{
|
|
47017
|
+
"name": "size",
|
|
47018
|
+
"type": {
|
|
47019
|
+
"text": "StackingIconsSize"
|
|
47020
|
+
},
|
|
47021
|
+
"default": "faSizeValueDefault",
|
|
47022
|
+
"resolveInitializer": {
|
|
47023
|
+
"module": "/src/icon"
|
|
47024
|
+
},
|
|
47025
|
+
"fieldName": "size"
|
|
47026
|
+
},
|
|
47027
|
+
{
|
|
47028
|
+
"name": "['vertical-align']",
|
|
47029
|
+
"type": {
|
|
47030
|
+
"text": "VerticalAlign"
|
|
47031
|
+
},
|
|
47032
|
+
"default": "'baseline'",
|
|
47033
|
+
"fieldName": "['vertical-align']"
|
|
47034
|
+
}
|
|
47035
|
+
],
|
|
47036
|
+
"superclass": {
|
|
47037
|
+
"name": "FoundationElement",
|
|
47038
|
+
"package": "@microsoft/fast-foundation"
|
|
47039
|
+
},
|
|
47040
|
+
"tagName": "%%prefix%%-stacking-icons",
|
|
47041
|
+
"customElement": true
|
|
47042
|
+
},
|
|
47043
|
+
{
|
|
47044
|
+
"kind": "variable",
|
|
47045
|
+
"name": "foundationStackingIcons",
|
|
47046
|
+
"description": "The Foundation Stacking Icon",
|
|
47047
|
+
"privacy": "public"
|
|
47048
|
+
}
|
|
47049
|
+
],
|
|
47050
|
+
"exports": [
|
|
47051
|
+
{
|
|
47052
|
+
"kind": "js",
|
|
47053
|
+
"name": "StackingIcons",
|
|
47054
|
+
"declaration": {
|
|
47055
|
+
"name": "StackingIcons",
|
|
47056
|
+
"module": "src/stacking-icons/stacking-icons.ts"
|
|
47057
|
+
}
|
|
47058
|
+
},
|
|
47059
|
+
{
|
|
47060
|
+
"kind": "js",
|
|
47061
|
+
"name": "foundationStackingIcons",
|
|
47062
|
+
"declaration": {
|
|
47063
|
+
"name": "foundationStackingIcons",
|
|
47064
|
+
"module": "src/stacking-icons/stacking-icons.ts"
|
|
47065
|
+
}
|
|
47066
|
+
}
|
|
47067
|
+
]
|
|
47068
|
+
},
|
|
47069
47069
|
{
|
|
47070
47070
|
"kind": "javascript-module",
|
|
47071
47071
|
"path": "src/status-pill/index.ts",
|