@tylertech/forge 3.8.0-dev.0 → 3.8.0-dev.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.
- package/custom-elements.json +193 -193
- package/dist/lib.js +1 -1
- package/dist/lib.js.map +2 -2
- package/dist/vscode.css-custom-data.json +20 -20
- package/dist/vscode.html-custom-data.json +21 -21
- package/esm/split-view/split-view-panel/split-view-panel.js +1 -1
- package/esm/stepper/stepper/stepper-constants.d.ts +1 -17
- package/package.json +1 -1
package/custom-elements.json
CHANGED
|
@@ -1215,6 +1215,171 @@
|
|
|
1215
1215
|
}
|
|
1216
1216
|
]
|
|
1217
1217
|
},
|
|
1218
|
+
{
|
|
1219
|
+
"kind": "javascript-module",
|
|
1220
|
+
"path": "src/lib/banner/banner.ts",
|
|
1221
|
+
"declarations": [
|
|
1222
|
+
{
|
|
1223
|
+
"kind": "class",
|
|
1224
|
+
"description": "",
|
|
1225
|
+
"name": "BannerComponent",
|
|
1226
|
+
"cssProperties": [
|
|
1227
|
+
{
|
|
1228
|
+
"description": "The background color of the banner.",
|
|
1229
|
+
"name": "--forge-banner-background"
|
|
1230
|
+
},
|
|
1231
|
+
{
|
|
1232
|
+
"description": "The text color of the banner.",
|
|
1233
|
+
"name": "--forge-banner-color"
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
"description": "The color of the icon.",
|
|
1237
|
+
"name": "--forge-banner-icon-color"
|
|
1238
|
+
},
|
|
1239
|
+
{
|
|
1240
|
+
"description": "The gap between the contents.",
|
|
1241
|
+
"name": "--forge-banner-gap"
|
|
1242
|
+
},
|
|
1243
|
+
{
|
|
1244
|
+
"description": "The inline padding.",
|
|
1245
|
+
"name": "--forge-banner-padding-inline"
|
|
1246
|
+
},
|
|
1247
|
+
{
|
|
1248
|
+
"description": "The block padding.",
|
|
1249
|
+
"name": "--forge-banner-padding-block"
|
|
1250
|
+
},
|
|
1251
|
+
{
|
|
1252
|
+
"description": "The transition duration.",
|
|
1253
|
+
"name": "--forge-banner-transition-duration"
|
|
1254
|
+
},
|
|
1255
|
+
{
|
|
1256
|
+
"description": "The transition easing function.",
|
|
1257
|
+
"name": "--forge-banner-transition-easing"
|
|
1258
|
+
}
|
|
1259
|
+
],
|
|
1260
|
+
"slots": [
|
|
1261
|
+
{
|
|
1262
|
+
"description": "The content of the banner.",
|
|
1263
|
+
"name": ""
|
|
1264
|
+
},
|
|
1265
|
+
{
|
|
1266
|
+
"description": "The icon to display.",
|
|
1267
|
+
"name": "icon"
|
|
1268
|
+
},
|
|
1269
|
+
{
|
|
1270
|
+
"description": "The optional button to display.",
|
|
1271
|
+
"name": "button"
|
|
1272
|
+
}
|
|
1273
|
+
],
|
|
1274
|
+
"members": [
|
|
1275
|
+
{
|
|
1276
|
+
"kind": "field",
|
|
1277
|
+
"name": "dismissed",
|
|
1278
|
+
"type": {
|
|
1279
|
+
"text": "boolean"
|
|
1280
|
+
},
|
|
1281
|
+
"privacy": "public",
|
|
1282
|
+
"description": "Controls the visibility of the banner.",
|
|
1283
|
+
"default": "false"
|
|
1284
|
+
},
|
|
1285
|
+
{
|
|
1286
|
+
"kind": "field",
|
|
1287
|
+
"name": "persistent",
|
|
1288
|
+
"type": {
|
|
1289
|
+
"text": "boolean"
|
|
1290
|
+
},
|
|
1291
|
+
"privacy": "public",
|
|
1292
|
+
"description": "Controls the visibility of the built-in dismiss button.",
|
|
1293
|
+
"default": "false"
|
|
1294
|
+
},
|
|
1295
|
+
{
|
|
1296
|
+
"kind": "field",
|
|
1297
|
+
"name": "theme",
|
|
1298
|
+
"type": {
|
|
1299
|
+
"text": "BannerTheme"
|
|
1300
|
+
},
|
|
1301
|
+
"privacy": "public",
|
|
1302
|
+
"description": "The theme of the banner.",
|
|
1303
|
+
"default": "\"info\""
|
|
1304
|
+
},
|
|
1305
|
+
{
|
|
1306
|
+
"kind": "field",
|
|
1307
|
+
"name": "canDismiss",
|
|
1308
|
+
"type": {
|
|
1309
|
+
"text": "boolean"
|
|
1310
|
+
},
|
|
1311
|
+
"privacy": "public",
|
|
1312
|
+
"deprecated": "Use `persistent` instead."
|
|
1313
|
+
}
|
|
1314
|
+
],
|
|
1315
|
+
"events": [
|
|
1316
|
+
{
|
|
1317
|
+
"type": {
|
|
1318
|
+
"text": "CustomEvent<void>"
|
|
1319
|
+
},
|
|
1320
|
+
"description": "Dispatched before the banner is dismissed. Cancelable to prevent dismissal.",
|
|
1321
|
+
"name": "forge-banner-before-dismiss"
|
|
1322
|
+
},
|
|
1323
|
+
{
|
|
1324
|
+
"type": {
|
|
1325
|
+
"text": "CustomEvent<void>"
|
|
1326
|
+
},
|
|
1327
|
+
"description": "Dispatched when the banner is dismissed.",
|
|
1328
|
+
"name": "forge-banner-dismissed"
|
|
1329
|
+
}
|
|
1330
|
+
],
|
|
1331
|
+
"attributes": [
|
|
1332
|
+
{
|
|
1333
|
+
"type": {
|
|
1334
|
+
"text": "boolean"
|
|
1335
|
+
},
|
|
1336
|
+
"description": "Controls the visibility of the banner.",
|
|
1337
|
+
"name": "dismissed",
|
|
1338
|
+
"default": "false"
|
|
1339
|
+
},
|
|
1340
|
+
{
|
|
1341
|
+
"type": {
|
|
1342
|
+
"text": "boolean"
|
|
1343
|
+
},
|
|
1344
|
+
"description": "Controls the visibility of the built-in dismiss button.",
|
|
1345
|
+
"name": "persistent",
|
|
1346
|
+
"default": "false"
|
|
1347
|
+
},
|
|
1348
|
+
{
|
|
1349
|
+
"type": {
|
|
1350
|
+
"text": "BannerTheme"
|
|
1351
|
+
},
|
|
1352
|
+
"description": "The theme of the banner.",
|
|
1353
|
+
"name": "theme",
|
|
1354
|
+
"default": "\"info\""
|
|
1355
|
+
}
|
|
1356
|
+
],
|
|
1357
|
+
"superclass": {
|
|
1358
|
+
"name": "BaseComponent",
|
|
1359
|
+
"module": "/src/lib/core/base/base-component"
|
|
1360
|
+
},
|
|
1361
|
+
"tagName": "forge-banner",
|
|
1362
|
+
"summary": "Banners are used to inform users of important information, such as errors, warnings, or success messages.",
|
|
1363
|
+
"cssClasses": [
|
|
1364
|
+
{
|
|
1365
|
+
"name": "forge-banner",
|
|
1366
|
+
"description": "The banner class _(required)_."
|
|
1367
|
+
}
|
|
1368
|
+
],
|
|
1369
|
+
"customElement": true
|
|
1370
|
+
}
|
|
1371
|
+
],
|
|
1372
|
+
"exports": [
|
|
1373
|
+
{
|
|
1374
|
+
"kind": "js",
|
|
1375
|
+
"name": "BannerComponent",
|
|
1376
|
+
"declaration": {
|
|
1377
|
+
"name": "BannerComponent",
|
|
1378
|
+
"module": "src/lib/banner/banner.ts"
|
|
1379
|
+
}
|
|
1380
|
+
}
|
|
1381
|
+
]
|
|
1382
|
+
},
|
|
1218
1383
|
{
|
|
1219
1384
|
"kind": "javascript-module",
|
|
1220
1385
|
"path": "src/lib/bottom-sheet/bottom-sheet.ts",
|
|
@@ -1427,171 +1592,6 @@
|
|
|
1427
1592
|
}
|
|
1428
1593
|
]
|
|
1429
1594
|
},
|
|
1430
|
-
{
|
|
1431
|
-
"kind": "javascript-module",
|
|
1432
|
-
"path": "src/lib/banner/banner.ts",
|
|
1433
|
-
"declarations": [
|
|
1434
|
-
{
|
|
1435
|
-
"kind": "class",
|
|
1436
|
-
"description": "",
|
|
1437
|
-
"name": "BannerComponent",
|
|
1438
|
-
"cssProperties": [
|
|
1439
|
-
{
|
|
1440
|
-
"description": "The background color of the banner.",
|
|
1441
|
-
"name": "--forge-banner-background"
|
|
1442
|
-
},
|
|
1443
|
-
{
|
|
1444
|
-
"description": "The text color of the banner.",
|
|
1445
|
-
"name": "--forge-banner-color"
|
|
1446
|
-
},
|
|
1447
|
-
{
|
|
1448
|
-
"description": "The color of the icon.",
|
|
1449
|
-
"name": "--forge-banner-icon-color"
|
|
1450
|
-
},
|
|
1451
|
-
{
|
|
1452
|
-
"description": "The gap between the contents.",
|
|
1453
|
-
"name": "--forge-banner-gap"
|
|
1454
|
-
},
|
|
1455
|
-
{
|
|
1456
|
-
"description": "The inline padding.",
|
|
1457
|
-
"name": "--forge-banner-padding-inline"
|
|
1458
|
-
},
|
|
1459
|
-
{
|
|
1460
|
-
"description": "The block padding.",
|
|
1461
|
-
"name": "--forge-banner-padding-block"
|
|
1462
|
-
},
|
|
1463
|
-
{
|
|
1464
|
-
"description": "The transition duration.",
|
|
1465
|
-
"name": "--forge-banner-transition-duration"
|
|
1466
|
-
},
|
|
1467
|
-
{
|
|
1468
|
-
"description": "The transition easing function.",
|
|
1469
|
-
"name": "--forge-banner-transition-easing"
|
|
1470
|
-
}
|
|
1471
|
-
],
|
|
1472
|
-
"slots": [
|
|
1473
|
-
{
|
|
1474
|
-
"description": "The content of the banner.",
|
|
1475
|
-
"name": ""
|
|
1476
|
-
},
|
|
1477
|
-
{
|
|
1478
|
-
"description": "The icon to display.",
|
|
1479
|
-
"name": "icon"
|
|
1480
|
-
},
|
|
1481
|
-
{
|
|
1482
|
-
"description": "The optional button to display.",
|
|
1483
|
-
"name": "button"
|
|
1484
|
-
}
|
|
1485
|
-
],
|
|
1486
|
-
"members": [
|
|
1487
|
-
{
|
|
1488
|
-
"kind": "field",
|
|
1489
|
-
"name": "dismissed",
|
|
1490
|
-
"type": {
|
|
1491
|
-
"text": "boolean"
|
|
1492
|
-
},
|
|
1493
|
-
"privacy": "public",
|
|
1494
|
-
"description": "Controls the visibility of the banner.",
|
|
1495
|
-
"default": "false"
|
|
1496
|
-
},
|
|
1497
|
-
{
|
|
1498
|
-
"kind": "field",
|
|
1499
|
-
"name": "persistent",
|
|
1500
|
-
"type": {
|
|
1501
|
-
"text": "boolean"
|
|
1502
|
-
},
|
|
1503
|
-
"privacy": "public",
|
|
1504
|
-
"description": "Controls the visibility of the built-in dismiss button.",
|
|
1505
|
-
"default": "false"
|
|
1506
|
-
},
|
|
1507
|
-
{
|
|
1508
|
-
"kind": "field",
|
|
1509
|
-
"name": "theme",
|
|
1510
|
-
"type": {
|
|
1511
|
-
"text": "BannerTheme"
|
|
1512
|
-
},
|
|
1513
|
-
"privacy": "public",
|
|
1514
|
-
"description": "The theme of the banner.",
|
|
1515
|
-
"default": "\"info\""
|
|
1516
|
-
},
|
|
1517
|
-
{
|
|
1518
|
-
"kind": "field",
|
|
1519
|
-
"name": "canDismiss",
|
|
1520
|
-
"type": {
|
|
1521
|
-
"text": "boolean"
|
|
1522
|
-
},
|
|
1523
|
-
"privacy": "public",
|
|
1524
|
-
"deprecated": "Use `persistent` instead."
|
|
1525
|
-
}
|
|
1526
|
-
],
|
|
1527
|
-
"events": [
|
|
1528
|
-
{
|
|
1529
|
-
"type": {
|
|
1530
|
-
"text": "CustomEvent<void>"
|
|
1531
|
-
},
|
|
1532
|
-
"description": "Dispatched before the banner is dismissed. Cancelable to prevent dismissal.",
|
|
1533
|
-
"name": "forge-banner-before-dismiss"
|
|
1534
|
-
},
|
|
1535
|
-
{
|
|
1536
|
-
"type": {
|
|
1537
|
-
"text": "CustomEvent<void>"
|
|
1538
|
-
},
|
|
1539
|
-
"description": "Dispatched when the banner is dismissed.",
|
|
1540
|
-
"name": "forge-banner-dismissed"
|
|
1541
|
-
}
|
|
1542
|
-
],
|
|
1543
|
-
"attributes": [
|
|
1544
|
-
{
|
|
1545
|
-
"type": {
|
|
1546
|
-
"text": "boolean"
|
|
1547
|
-
},
|
|
1548
|
-
"description": "Controls the visibility of the banner.",
|
|
1549
|
-
"name": "dismissed",
|
|
1550
|
-
"default": "false"
|
|
1551
|
-
},
|
|
1552
|
-
{
|
|
1553
|
-
"type": {
|
|
1554
|
-
"text": "boolean"
|
|
1555
|
-
},
|
|
1556
|
-
"description": "Controls the visibility of the built-in dismiss button.",
|
|
1557
|
-
"name": "persistent",
|
|
1558
|
-
"default": "false"
|
|
1559
|
-
},
|
|
1560
|
-
{
|
|
1561
|
-
"type": {
|
|
1562
|
-
"text": "BannerTheme"
|
|
1563
|
-
},
|
|
1564
|
-
"description": "The theme of the banner.",
|
|
1565
|
-
"name": "theme",
|
|
1566
|
-
"default": "\"info\""
|
|
1567
|
-
}
|
|
1568
|
-
],
|
|
1569
|
-
"superclass": {
|
|
1570
|
-
"name": "BaseComponent",
|
|
1571
|
-
"module": "/src/lib/core/base/base-component"
|
|
1572
|
-
},
|
|
1573
|
-
"tagName": "forge-banner",
|
|
1574
|
-
"summary": "Banners are used to inform users of important information, such as errors, warnings, or success messages.",
|
|
1575
|
-
"cssClasses": [
|
|
1576
|
-
{
|
|
1577
|
-
"name": "forge-banner",
|
|
1578
|
-
"description": "The banner class _(required)_."
|
|
1579
|
-
}
|
|
1580
|
-
],
|
|
1581
|
-
"customElement": true
|
|
1582
|
-
}
|
|
1583
|
-
],
|
|
1584
|
-
"exports": [
|
|
1585
|
-
{
|
|
1586
|
-
"kind": "js",
|
|
1587
|
-
"name": "BannerComponent",
|
|
1588
|
-
"declaration": {
|
|
1589
|
-
"name": "BannerComponent",
|
|
1590
|
-
"module": "src/lib/banner/banner.ts"
|
|
1591
|
-
}
|
|
1592
|
-
}
|
|
1593
|
-
]
|
|
1594
|
-
},
|
|
1595
1595
|
{
|
|
1596
1596
|
"kind": "javascript-module",
|
|
1597
1597
|
"path": "src/lib/button/button.ts",
|
|
@@ -32498,6 +32498,34 @@
|
|
|
32498
32498
|
"path": "src/lib/badge/badge.ts",
|
|
32499
32499
|
"lineNumber": 48
|
|
32500
32500
|
},
|
|
32501
|
+
"IBannerAdapter": {
|
|
32502
|
+
"path": "src/lib/banner/banner-adapter.ts",
|
|
32503
|
+
"lineNumber": 6
|
|
32504
|
+
},
|
|
32505
|
+
"BannerAdapter": {
|
|
32506
|
+
"path": "src/lib/banner/banner-adapter.ts",
|
|
32507
|
+
"lineNumber": 15
|
|
32508
|
+
},
|
|
32509
|
+
"BannerTheme": {
|
|
32510
|
+
"path": "src/lib/banner/banner-constants.ts",
|
|
32511
|
+
"lineNumber": 46
|
|
32512
|
+
},
|
|
32513
|
+
"IBannerCore": {
|
|
32514
|
+
"path": "src/lib/banner/banner-core.ts",
|
|
32515
|
+
"lineNumber": 4
|
|
32516
|
+
},
|
|
32517
|
+
"BannerCore": {
|
|
32518
|
+
"path": "src/lib/banner/banner-core.ts",
|
|
32519
|
+
"lineNumber": 10
|
|
32520
|
+
},
|
|
32521
|
+
"IBannerComponent": {
|
|
32522
|
+
"path": "src/lib/banner/banner.ts",
|
|
32523
|
+
"lineNumber": 14
|
|
32524
|
+
},
|
|
32525
|
+
"BannerComponent": {
|
|
32526
|
+
"path": "src/lib/banner/banner.ts",
|
|
32527
|
+
"lineNumber": 64
|
|
32528
|
+
},
|
|
32501
32529
|
"IBottomSheetAdapter": {
|
|
32502
32530
|
"path": "src/lib/bottom-sheet/bottom-sheet-adapter.ts",
|
|
32503
32531
|
"lineNumber": 8
|
|
@@ -32538,34 +32566,6 @@
|
|
|
32538
32566
|
"path": "src/lib/bottom-sheet/bottom-sheet.ts",
|
|
32539
32567
|
"lineNumber": 73
|
|
32540
32568
|
},
|
|
32541
|
-
"IBannerAdapter": {
|
|
32542
|
-
"path": "src/lib/banner/banner-adapter.ts",
|
|
32543
|
-
"lineNumber": 6
|
|
32544
|
-
},
|
|
32545
|
-
"BannerAdapter": {
|
|
32546
|
-
"path": "src/lib/banner/banner-adapter.ts",
|
|
32547
|
-
"lineNumber": 15
|
|
32548
|
-
},
|
|
32549
|
-
"BannerTheme": {
|
|
32550
|
-
"path": "src/lib/banner/banner-constants.ts",
|
|
32551
|
-
"lineNumber": 46
|
|
32552
|
-
},
|
|
32553
|
-
"IBannerCore": {
|
|
32554
|
-
"path": "src/lib/banner/banner-core.ts",
|
|
32555
|
-
"lineNumber": 4
|
|
32556
|
-
},
|
|
32557
|
-
"BannerCore": {
|
|
32558
|
-
"path": "src/lib/banner/banner-core.ts",
|
|
32559
|
-
"lineNumber": 10
|
|
32560
|
-
},
|
|
32561
|
-
"IBannerComponent": {
|
|
32562
|
-
"path": "src/lib/banner/banner.ts",
|
|
32563
|
-
"lineNumber": 14
|
|
32564
|
-
},
|
|
32565
|
-
"BannerComponent": {
|
|
32566
|
-
"path": "src/lib/banner/banner.ts",
|
|
32567
|
-
"lineNumber": 64
|
|
32568
|
-
},
|
|
32569
32569
|
"IButtonAdapter": {
|
|
32570
32570
|
"path": "src/lib/button/button-adapter.ts",
|
|
32571
32571
|
"lineNumber": 4
|