@vscode-elements/elements 2.4.1-pre.0 → 2.4.1-pre.1

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.
@@ -180,6 +180,157 @@
180
180
  }
181
181
  ]
182
182
  },
183
+ {
184
+ "kind": "javascript-module",
185
+ "path": "src/includes/sizes.ts",
186
+ "declarations": [
187
+ {
188
+ "kind": "function",
189
+ "name": "px",
190
+ "return": {
191
+ "type": {
192
+ "text": "Px"
193
+ }
194
+ },
195
+ "parameters": [
196
+ {
197
+ "name": "value",
198
+ "type": {
199
+ "text": "number"
200
+ }
201
+ }
202
+ ]
203
+ },
204
+ {
205
+ "kind": "function",
206
+ "name": "percent",
207
+ "return": {
208
+ "type": {
209
+ "text": "Percent"
210
+ }
211
+ },
212
+ "parameters": [
213
+ {
214
+ "name": "value",
215
+ "type": {
216
+ "text": "number"
217
+ }
218
+ }
219
+ ]
220
+ },
221
+ {
222
+ "kind": "function",
223
+ "name": "toPercent",
224
+ "return": {
225
+ "type": {
226
+ "text": "Percent"
227
+ }
228
+ },
229
+ "parameters": [
230
+ {
231
+ "name": "px",
232
+ "type": {
233
+ "text": "Px"
234
+ }
235
+ },
236
+ {
237
+ "name": "container",
238
+ "type": {
239
+ "text": "Px"
240
+ }
241
+ }
242
+ ]
243
+ },
244
+ {
245
+ "kind": "function",
246
+ "name": "toPx",
247
+ "return": {
248
+ "type": {
249
+ "text": "Px"
250
+ }
251
+ },
252
+ "parameters": [
253
+ {
254
+ "name": "p",
255
+ "type": {
256
+ "text": "Percent"
257
+ }
258
+ },
259
+ {
260
+ "name": "container",
261
+ "type": {
262
+ "text": "Px"
263
+ }
264
+ }
265
+ ]
266
+ },
267
+ {
268
+ "kind": "function",
269
+ "name": "parseSizeAttributeToPercent",
270
+ "return": {
271
+ "type": {
272
+ "text": "Percent | null"
273
+ }
274
+ },
275
+ "parameters": [
276
+ {
277
+ "name": "raw",
278
+ "type": {
279
+ "text": "string | number"
280
+ }
281
+ },
282
+ {
283
+ "name": "base",
284
+ "type": {
285
+ "text": "number"
286
+ }
287
+ }
288
+ ]
289
+ }
290
+ ],
291
+ "exports": [
292
+ {
293
+ "kind": "js",
294
+ "name": "px",
295
+ "declaration": {
296
+ "name": "px",
297
+ "module": "src/includes/sizes.ts"
298
+ }
299
+ },
300
+ {
301
+ "kind": "js",
302
+ "name": "percent",
303
+ "declaration": {
304
+ "name": "percent",
305
+ "module": "src/includes/sizes.ts"
306
+ }
307
+ },
308
+ {
309
+ "kind": "js",
310
+ "name": "toPercent",
311
+ "declaration": {
312
+ "name": "toPercent",
313
+ "module": "src/includes/sizes.ts"
314
+ }
315
+ },
316
+ {
317
+ "kind": "js",
318
+ "name": "toPx",
319
+ "declaration": {
320
+ "name": "toPx",
321
+ "module": "src/includes/sizes.ts"
322
+ }
323
+ },
324
+ {
325
+ "kind": "js",
326
+ "name": "parseSizeAttributeToPercent",
327
+ "declaration": {
328
+ "name": "parseSizeAttributeToPercent",
329
+ "module": "src/includes/sizes.ts"
330
+ }
331
+ }
332
+ ]
333
+ },
183
334
  {
184
335
  "kind": "javascript-module",
185
336
  "path": "src/includes/style-property-map.ts",
@@ -636,6 +787,147 @@
636
787
  }
637
788
  ]
638
789
  },
790
+ {
791
+ "kind": "javascript-module",
792
+ "path": "src/vscode-badge/vscode-badge.styles.ts",
793
+ "declarations": [
794
+ {
795
+ "kind": "variable",
796
+ "name": "styles",
797
+ "type": {
798
+ "text": "CSSResultGroup"
799
+ },
800
+ "default": "[ defaultStyles, css` :host { display: inline-block; } .root { background-color: var(--vscode-badge-background, #616161); border: 1px solid var(--vscode-contrastBorder, transparent); border-radius: 2px; box-sizing: border-box; color: var(--vscode-badge-foreground, #f8f8f8); display: block; font-family: var(--vscode-font-family, ${defaultFontStack}); font-size: 11px; font-weight: 400; line-height: 14px; min-width: 18px; padding: 2px 3px; text-align: center; white-space: nowrap; } :host([variant='counter']) .root { border-radius: 11px; line-height: 11px; min-height: 18px; min-width: 18px; padding: 3px 6px; } :host([variant='activity-bar-counter']) .root { background-color: var(--vscode-activityBarBadge-background, #0078d4); border-radius: 20px; color: var(--vscode-activityBarBadge-foreground, #ffffff); font-size: 9px; font-weight: 600; line-height: 16px; padding: 0 4px; } :host([variant='tab-header-counter']) .root { background-color: var(--vscode-activityBarBadge-background, #0078d4); border-radius: 10px; color: var(--vscode-activityBarBadge-foreground, #ffffff); line-height: 10px; min-height: 16px; min-width: 16px; padding: 3px 5px; } `, ]"
801
+ }
802
+ ],
803
+ "exports": [
804
+ {
805
+ "kind": "js",
806
+ "name": "default",
807
+ "declaration": {
808
+ "name": "styles",
809
+ "module": "src/vscode-badge/vscode-badge.styles.ts"
810
+ }
811
+ }
812
+ ]
813
+ },
814
+ {
815
+ "kind": "javascript-module",
816
+ "path": "src/vscode-badge/vscode-badge.ts",
817
+ "declarations": [
818
+ {
819
+ "kind": "class",
820
+ "description": "Show counts or status information. Badges can also be used within [Textfield](https://vscode-elements.github.io/components/textfield) and [TabHeader](https://vscode-elements.github.io/components/tabs) components.",
821
+ "name": "VscodeBadge",
822
+ "cssProperties": [
823
+ {
824
+ "description": "A sans-serif font type depends on the host OS.",
825
+ "name": "--vscode-font-family",
826
+ "default": "sans-serif"
827
+ },
828
+ {
829
+ "name": "--vscode-contrastBorder",
830
+ "default": "transparent"
831
+ },
832
+ {
833
+ "description": "default and counter variant background color",
834
+ "name": "--vscode-badge-background",
835
+ "default": "#616161"
836
+ },
837
+ {
838
+ "description": "default and counter variant foreground color",
839
+ "name": "--vscode-badge-foreground",
840
+ "default": "#f8f8f8"
841
+ },
842
+ {
843
+ "description": "activity bar variant background color",
844
+ "name": "--vscode-activityBarBadge-background",
845
+ "default": "#0078d4"
846
+ },
847
+ {
848
+ "description": "activity bar variant foreground color",
849
+ "name": "--vscode-activityBarBadge-foreground",
850
+ "default": "#ffffff"
851
+ }
852
+ ],
853
+ "members": [
854
+ {
855
+ "kind": "field",
856
+ "name": "variant",
857
+ "type": {
858
+ "text": "| 'default'\n | 'counter'\n | 'activity-bar-counter'\n | 'tab-header-counter'"
859
+ },
860
+ "default": "'default'",
861
+ "attribute": "variant",
862
+ "reflects": true
863
+ },
864
+ {
865
+ "kind": "field",
866
+ "name": "version",
867
+ "type": {
868
+ "text": "string"
869
+ },
870
+ "description": "VSCode Elements version",
871
+ "readonly": true,
872
+ "inheritedFrom": {
873
+ "name": "VscElement",
874
+ "module": "src/includes/VscElement.ts"
875
+ }
876
+ },
877
+ {
878
+ "kind": "method",
879
+ "name": "warn",
880
+ "parameters": [
881
+ {
882
+ "name": "message",
883
+ "type": {
884
+ "text": "string"
885
+ }
886
+ }
887
+ ],
888
+ "inheritedFrom": {
889
+ "name": "VscElement",
890
+ "module": "src/includes/VscElement.ts"
891
+ }
892
+ }
893
+ ],
894
+ "attributes": [
895
+ {
896
+ "name": "variant",
897
+ "type": {
898
+ "text": "| 'default'\n | 'counter'\n | 'activity-bar-counter'\n | 'tab-header-counter'"
899
+ },
900
+ "default": "'default'",
901
+ "fieldName": "variant"
902
+ }
903
+ ],
904
+ "superclass": {
905
+ "name": "VscElement",
906
+ "module": "/src/includes/VscElement.js"
907
+ },
908
+ "tagName": "vscode-badge",
909
+ "customElement": true
910
+ }
911
+ ],
912
+ "exports": [
913
+ {
914
+ "kind": "js",
915
+ "name": "VscodeBadge",
916
+ "declaration": {
917
+ "name": "VscodeBadge",
918
+ "module": "src/vscode-badge/vscode-badge.ts"
919
+ }
920
+ },
921
+ {
922
+ "kind": "custom-element-definition",
923
+ "name": "vscode-badge",
924
+ "declaration": {
925
+ "name": "VscodeBadge",
926
+ "module": "src/vscode-badge/vscode-badge.ts"
927
+ }
928
+ }
929
+ ]
930
+ },
639
931
  {
640
932
  "kind": "javascript-module",
641
933
  "path": "src/vscode-button/vscode-button.styles.ts",
@@ -1100,210 +1392,69 @@
1100
1392
  "fieldName": "iconAfterSpinDuration"
1101
1393
  },
1102
1394
  {
1103
- "name": "focused",
1104
- "type": {
1105
- "text": "boolean"
1106
- },
1107
- "default": "false",
1108
- "fieldName": "focused"
1109
- },
1110
- {
1111
- "name": "name",
1112
- "type": {
1113
- "text": "string | undefined"
1114
- },
1115
- "default": "undefined",
1116
- "fieldName": "name"
1117
- },
1118
- {
1119
- "name": "icon-only",
1120
- "type": {
1121
- "text": "boolean"
1122
- },
1123
- "default": "false",
1124
- "fieldName": "iconOnly"
1125
- },
1126
- {
1127
- "name": "type",
1128
- "type": {
1129
- "text": "'submit' | 'reset' | 'button'"
1130
- },
1131
- "default": "'button'",
1132
- "fieldName": "type"
1133
- },
1134
- {
1135
- "name": "value",
1136
- "type": {
1137
- "text": "string"
1138
- },
1139
- "default": "''",
1140
- "fieldName": "value"
1141
- }
1142
- ],
1143
- "superclass": {
1144
- "name": "VscElement",
1145
- "module": "/src/includes/VscElement.js"
1146
- },
1147
- "tagName": "vscode-button",
1148
- "customElement": true
1149
- }
1150
- ],
1151
- "exports": [
1152
- {
1153
- "kind": "js",
1154
- "name": "VscodeButton",
1155
- "declaration": {
1156
- "name": "VscodeButton",
1157
- "module": "src/vscode-button/vscode-button.ts"
1158
- }
1159
- },
1160
- {
1161
- "kind": "custom-element-definition",
1162
- "name": "vscode-button",
1163
- "declaration": {
1164
- "name": "VscodeButton",
1165
- "module": "src/vscode-button/vscode-button.ts"
1166
- }
1167
- }
1168
- ]
1169
- },
1170
- {
1171
- "kind": "javascript-module",
1172
- "path": "src/vscode-badge/vscode-badge.styles.ts",
1173
- "declarations": [
1174
- {
1175
- "kind": "variable",
1176
- "name": "styles",
1177
- "type": {
1178
- "text": "CSSResultGroup"
1179
- },
1180
- "default": "[ defaultStyles, css` :host { display: inline-block; } .root { background-color: var(--vscode-badge-background, #616161); border: 1px solid var(--vscode-contrastBorder, transparent); border-radius: 2px; box-sizing: border-box; color: var(--vscode-badge-foreground, #f8f8f8); display: block; font-family: var(--vscode-font-family, ${defaultFontStack}); font-size: 11px; font-weight: 400; line-height: 14px; min-width: 18px; padding: 2px 3px; text-align: center; white-space: nowrap; } :host([variant='counter']) .root { border-radius: 11px; line-height: 11px; min-height: 18px; min-width: 18px; padding: 3px 6px; } :host([variant='activity-bar-counter']) .root { background-color: var(--vscode-activityBarBadge-background, #0078d4); border-radius: 20px; color: var(--vscode-activityBarBadge-foreground, #ffffff); font-size: 9px; font-weight: 600; line-height: 16px; padding: 0 4px; } :host([variant='tab-header-counter']) .root { background-color: var(--vscode-activityBarBadge-background, #0078d4); border-radius: 10px; color: var(--vscode-activityBarBadge-foreground, #ffffff); line-height: 10px; min-height: 16px; min-width: 16px; padding: 3px 5px; } `, ]"
1181
- }
1182
- ],
1183
- "exports": [
1184
- {
1185
- "kind": "js",
1186
- "name": "default",
1187
- "declaration": {
1188
- "name": "styles",
1189
- "module": "src/vscode-badge/vscode-badge.styles.ts"
1190
- }
1191
- }
1192
- ]
1193
- },
1194
- {
1195
- "kind": "javascript-module",
1196
- "path": "src/vscode-badge/vscode-badge.ts",
1197
- "declarations": [
1198
- {
1199
- "kind": "class",
1200
- "description": "Show counts or status information. Badges can also be used within [Textfield](https://vscode-elements.github.io/components/textfield) and [TabHeader](https://vscode-elements.github.io/components/tabs) components.",
1201
- "name": "VscodeBadge",
1202
- "cssProperties": [
1203
- {
1204
- "description": "A sans-serif font type depends on the host OS.",
1205
- "name": "--vscode-font-family",
1206
- "default": "sans-serif"
1207
- },
1208
- {
1209
- "name": "--vscode-contrastBorder",
1210
- "default": "transparent"
1211
- },
1212
- {
1213
- "description": "default and counter variant background color",
1214
- "name": "--vscode-badge-background",
1215
- "default": "#616161"
1216
- },
1217
- {
1218
- "description": "default and counter variant foreground color",
1219
- "name": "--vscode-badge-foreground",
1220
- "default": "#f8f8f8"
1221
- },
1222
- {
1223
- "description": "activity bar variant background color",
1224
- "name": "--vscode-activityBarBadge-background",
1225
- "default": "#0078d4"
1226
- },
1227
- {
1228
- "description": "activity bar variant foreground color",
1229
- "name": "--vscode-activityBarBadge-foreground",
1230
- "default": "#ffffff"
1231
- }
1232
- ],
1233
- "members": [
1395
+ "name": "focused",
1396
+ "type": {
1397
+ "text": "boolean"
1398
+ },
1399
+ "default": "false",
1400
+ "fieldName": "focused"
1401
+ },
1234
1402
  {
1235
- "kind": "field",
1236
- "name": "variant",
1403
+ "name": "name",
1237
1404
  "type": {
1238
- "text": "| 'default'\n | 'counter'\n | 'activity-bar-counter'\n | 'tab-header-counter'"
1405
+ "text": "string | undefined"
1239
1406
  },
1240
- "default": "'default'",
1241
- "attribute": "variant",
1242
- "reflects": true
1407
+ "default": "undefined",
1408
+ "fieldName": "name"
1243
1409
  },
1244
1410
  {
1245
- "kind": "field",
1246
- "name": "version",
1411
+ "name": "icon-only",
1247
1412
  "type": {
1248
- "text": "string"
1413
+ "text": "boolean"
1249
1414
  },
1250
- "description": "VSCode Elements version",
1251
- "readonly": true,
1252
- "inheritedFrom": {
1253
- "name": "VscElement",
1254
- "module": "src/includes/VscElement.ts"
1255
- }
1415
+ "default": "false",
1416
+ "fieldName": "iconOnly"
1256
1417
  },
1257
1418
  {
1258
- "kind": "method",
1259
- "name": "warn",
1260
- "parameters": [
1261
- {
1262
- "name": "message",
1263
- "type": {
1264
- "text": "string"
1265
- }
1266
- }
1267
- ],
1268
- "inheritedFrom": {
1269
- "name": "VscElement",
1270
- "module": "src/includes/VscElement.ts"
1271
- }
1272
- }
1273
- ],
1274
- "attributes": [
1419
+ "name": "type",
1420
+ "type": {
1421
+ "text": "'submit' | 'reset' | 'button'"
1422
+ },
1423
+ "default": "'button'",
1424
+ "fieldName": "type"
1425
+ },
1275
1426
  {
1276
- "name": "variant",
1427
+ "name": "value",
1277
1428
  "type": {
1278
- "text": "| 'default'\n | 'counter'\n | 'activity-bar-counter'\n | 'tab-header-counter'"
1429
+ "text": "string"
1279
1430
  },
1280
- "default": "'default'",
1281
- "fieldName": "variant"
1431
+ "default": "''",
1432
+ "fieldName": "value"
1282
1433
  }
1283
1434
  ],
1284
1435
  "superclass": {
1285
1436
  "name": "VscElement",
1286
1437
  "module": "/src/includes/VscElement.js"
1287
1438
  },
1288
- "tagName": "vscode-badge",
1439
+ "tagName": "vscode-button",
1289
1440
  "customElement": true
1290
1441
  }
1291
1442
  ],
1292
1443
  "exports": [
1293
1444
  {
1294
1445
  "kind": "js",
1295
- "name": "VscodeBadge",
1446
+ "name": "VscodeButton",
1296
1447
  "declaration": {
1297
- "name": "VscodeBadge",
1298
- "module": "src/vscode-badge/vscode-badge.ts"
1448
+ "name": "VscodeButton",
1449
+ "module": "src/vscode-button/vscode-button.ts"
1299
1450
  }
1300
1451
  },
1301
1452
  {
1302
1453
  "kind": "custom-element-definition",
1303
- "name": "vscode-badge",
1454
+ "name": "vscode-button",
1304
1455
  "declaration": {
1305
- "name": "VscodeBadge",
1306
- "module": "src/vscode-badge/vscode-badge.ts"
1456
+ "name": "VscodeButton",
1457
+ "module": "src/vscode-button/vscode-button.ts"
1307
1458
  }
1308
1459
  }
1309
1460
  ]
@@ -9757,8 +9908,9 @@
9757
9908
  },
9758
9909
  {
9759
9910
  "kind": "field",
9760
- "name": "_minColumnWidth",
9761
- "privacy": "private"
9911
+ "name": "_columnMinWidths",
9912
+ "privacy": "private",
9913
+ "default": "new Map<number, Percent>()"
9762
9914
  },
9763
9915
  {
9764
9916
  "kind": "field",
@@ -9821,6 +9973,11 @@
9821
9973
  "name": "columnWidths",
9822
9974
  "readonly": true
9823
9975
  },
9976
+ {
9977
+ "kind": "field",
9978
+ "name": "columnMinWidths",
9979
+ "readonly": true
9980
+ },
9824
9981
  {
9825
9982
  "kind": "method",
9826
9983
  "name": "saveHostDimensions"
@@ -9843,10 +10000,16 @@
9843
10000
  },
9844
10001
  {
9845
10002
  "kind": "method",
9846
- "name": "setMinColumnWidth",
10003
+ "name": "setColumnMinWidthAt",
9847
10004
  "parameters": [
9848
10005
  {
9849
- "name": "width",
10006
+ "name": "colIndex",
10007
+ "type": {
10008
+ "text": "number"
10009
+ }
10010
+ },
10011
+ {
10012
+ "name": "value",
9850
10013
  "type": {
9851
10014
  "text": "Percent"
9852
10015
  }
@@ -9957,86 +10120,6 @@
9957
10120
  "kind": "javascript-module",
9958
10121
  "path": "src/vscode-table/calculations.ts",
9959
10122
  "declarations": [
9960
- {
9961
- "kind": "function",
9962
- "name": "px",
9963
- "return": {
9964
- "type": {
9965
- "text": "Px"
9966
- }
9967
- },
9968
- "parameters": [
9969
- {
9970
- "name": "value",
9971
- "type": {
9972
- "text": "number"
9973
- }
9974
- }
9975
- ]
9976
- },
9977
- {
9978
- "kind": "function",
9979
- "name": "percent",
9980
- "return": {
9981
- "type": {
9982
- "text": "Percent"
9983
- }
9984
- },
9985
- "parameters": [
9986
- {
9987
- "name": "value",
9988
- "type": {
9989
- "text": "number"
9990
- }
9991
- }
9992
- ]
9993
- },
9994
- {
9995
- "kind": "function",
9996
- "name": "toPercent",
9997
- "return": {
9998
- "type": {
9999
- "text": "Percent"
10000
- }
10001
- },
10002
- "parameters": [
10003
- {
10004
- "name": "px",
10005
- "type": {
10006
- "text": "Px"
10007
- }
10008
- },
10009
- {
10010
- "name": "container",
10011
- "type": {
10012
- "text": "Px"
10013
- }
10014
- }
10015
- ]
10016
- },
10017
- {
10018
- "kind": "function",
10019
- "name": "toPx",
10020
- "return": {
10021
- "type": {
10022
- "text": "Px"
10023
- }
10024
- },
10025
- "parameters": [
10026
- {
10027
- "name": "p",
10028
- "type": {
10029
- "text": "Percent"
10030
- }
10031
- },
10032
- {
10033
- "name": "container",
10034
- "type": {
10035
- "text": "Px"
10036
- }
10037
- }
10038
- ]
10039
- },
10040
10123
  {
10041
10124
  "kind": "function",
10042
10125
  "name": "calculateColumnWidths",
@@ -10065,70 +10148,15 @@
10065
10148
  }
10066
10149
  },
10067
10150
  {
10068
- "name": "minWidth",
10069
- "type": {
10070
- "text": "Percent"
10071
- }
10072
- }
10073
- ]
10074
- },
10075
- {
10076
- "kind": "function",
10077
- "name": "parseSizeAttributeToPercent",
10078
- "return": {
10079
- "type": {
10080
- "text": "number | null"
10081
- }
10082
- },
10083
- "parameters": [
10084
- {
10085
- "name": "raw",
10086
- "type": {
10087
- "text": "string | number"
10088
- }
10089
- },
10090
- {
10091
- "name": "base",
10151
+ "name": "minWidths",
10092
10152
  "type": {
10093
- "text": "number"
10153
+ "text": "Map<number, Percent>"
10094
10154
  }
10095
10155
  }
10096
10156
  ]
10097
10157
  }
10098
10158
  ],
10099
10159
  "exports": [
10100
- {
10101
- "kind": "js",
10102
- "name": "px",
10103
- "declaration": {
10104
- "name": "px",
10105
- "module": "src/vscode-table/calculations.ts"
10106
- }
10107
- },
10108
- {
10109
- "kind": "js",
10110
- "name": "percent",
10111
- "declaration": {
10112
- "name": "percent",
10113
- "module": "src/vscode-table/calculations.ts"
10114
- }
10115
- },
10116
- {
10117
- "kind": "js",
10118
- "name": "toPercent",
10119
- "declaration": {
10120
- "name": "toPercent",
10121
- "module": "src/vscode-table/calculations.ts"
10122
- }
10123
- },
10124
- {
10125
- "kind": "js",
10126
- "name": "toPx",
10127
- "declaration": {
10128
- "name": "toPx",
10129
- "module": "src/vscode-table/calculations.ts"
10130
- }
10131
- },
10132
10160
  {
10133
10161
  "kind": "js",
10134
10162
  "name": "calculateColumnWidths",
@@ -10136,14 +10164,6 @@
10136
10164
  "name": "calculateColumnWidths",
10137
10165
  "module": "src/vscode-table/calculations.ts"
10138
10166
  }
10139
- },
10140
- {
10141
- "kind": "js",
10142
- "name": "parseSizeAttributeToPercent",
10143
- "declaration": {
10144
- "name": "parseSizeAttributeToPercent",
10145
- "module": "src/vscode-table/calculations.ts"
10146
- }
10147
10167
  }
10148
10168
  ]
10149
10169
  },
@@ -10739,6 +10759,11 @@
10739
10759
  "name": "_handleSplitterPointerCancel",
10740
10760
  "privacy": "private"
10741
10761
  },
10762
+ {
10763
+ "kind": "field",
10764
+ "name": "_handleMinColumnWidthChange",
10765
+ "privacy": "private"
10766
+ },
10742
10767
  {
10743
10768
  "kind": "field",
10744
10769
  "name": "version",
@@ -11275,6 +11300,15 @@
11275
11300
  }
11276
11301
  ],
11277
11302
  "members": [
11303
+ {
11304
+ "kind": "field",
11305
+ "name": "minWidth",
11306
+ "type": {
11307
+ "text": "string"
11308
+ },
11309
+ "default": "'0'",
11310
+ "attribute": "min-width"
11311
+ },
11278
11312
  {
11279
11313
  "kind": "field",
11280
11314
  "name": "version",
@@ -11305,6 +11339,16 @@
11305
11339
  }
11306
11340
  }
11307
11341
  ],
11342
+ "attributes": [
11343
+ {
11344
+ "name": "min-width",
11345
+ "type": {
11346
+ "text": "string"
11347
+ },
11348
+ "default": "'0'",
11349
+ "fieldName": "minWidth"
11350
+ }
11351
+ ],
11308
11352
  "superclass": {
11309
11353
  "name": "VscElement",
11310
11354
  "module": "/src/includes/VscElement.js"