@umbraco-ui/uui 1.1.0 → 1.2.0-rc.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 +899 -54
- package/dist/uui.min.js +73 -36
- package/dist/uui.min.js.map +1 -1
- package/lib/index.d.ts +6 -0
- package/lib/index.js +6 -0
- package/package.json +81 -75
package/custom-elements.json
CHANGED
|
@@ -218,7 +218,7 @@
|
|
|
218
218
|
"description": "header area, use this for things that is not the headline but located in the header."
|
|
219
219
|
},
|
|
220
220
|
{
|
|
221
|
-
"name": "
|
|
221
|
+
"name": "",
|
|
222
222
|
"description": "area for the content of the box"
|
|
223
223
|
}
|
|
224
224
|
],
|
|
@@ -1257,53 +1257,693 @@
|
|
|
1257
1257
|
"default": "\"''\""
|
|
1258
1258
|
},
|
|
1259
1259
|
{
|
|
1260
|
-
"name": "value",
|
|
1261
|
-
"attribute": "value",
|
|
1262
|
-
"description": "intentional overwrite of FormControlMixins value getter and setter method.",
|
|
1263
|
-
"type": "string",
|
|
1264
|
-
"default": "\"''\""
|
|
1260
|
+
"name": "value",
|
|
1261
|
+
"attribute": "value",
|
|
1262
|
+
"description": "intentional overwrite of FormControlMixins value getter and setter method.",
|
|
1263
|
+
"type": "string",
|
|
1264
|
+
"default": "\"''\""
|
|
1265
|
+
},
|
|
1266
|
+
{
|
|
1267
|
+
"name": "pristine",
|
|
1268
|
+
"attribute": "pristine",
|
|
1269
|
+
"description": "Determines wether the form control has been touched or interacted with, this determines wether the validation-status of this form control should be made visible.",
|
|
1270
|
+
"type": "boolean",
|
|
1271
|
+
"default": "\"false\""
|
|
1272
|
+
},
|
|
1273
|
+
{
|
|
1274
|
+
"name": "required",
|
|
1275
|
+
"attribute": "required",
|
|
1276
|
+
"description": "Apply validation rule for requiring a value of this form control.",
|
|
1277
|
+
"type": "boolean",
|
|
1278
|
+
"default": "\"false\""
|
|
1279
|
+
},
|
|
1280
|
+
{
|
|
1281
|
+
"name": "requiredMessage",
|
|
1282
|
+
"attribute": "required-message",
|
|
1283
|
+
"description": "Required validation message.",
|
|
1284
|
+
"type": "string",
|
|
1285
|
+
"default": "\"This field is required\""
|
|
1286
|
+
},
|
|
1287
|
+
{
|
|
1288
|
+
"name": "error",
|
|
1289
|
+
"attribute": "error",
|
|
1290
|
+
"description": "Apply custom error on this input.",
|
|
1291
|
+
"type": "boolean",
|
|
1292
|
+
"default": "false"
|
|
1293
|
+
},
|
|
1294
|
+
{
|
|
1295
|
+
"name": "errorMessage",
|
|
1296
|
+
"attribute": "error-message",
|
|
1297
|
+
"description": "Custom error message.",
|
|
1298
|
+
"type": "string",
|
|
1299
|
+
"default": "\"This field is invalid\""
|
|
1300
|
+
},
|
|
1301
|
+
{
|
|
1302
|
+
"name": "validity",
|
|
1303
|
+
"type": "ValidityState"
|
|
1304
|
+
},
|
|
1305
|
+
{
|
|
1306
|
+
"name": "validationMessage"
|
|
1307
|
+
},
|
|
1308
|
+
{
|
|
1309
|
+
"name": "label",
|
|
1310
|
+
"attribute": "label",
|
|
1311
|
+
"description": "Label to be used for aria-label and potentially as visual label for some components",
|
|
1312
|
+
"type": "string"
|
|
1313
|
+
}
|
|
1314
|
+
],
|
|
1315
|
+
"events": [
|
|
1316
|
+
{
|
|
1317
|
+
"name": "change",
|
|
1318
|
+
"description": "fires when the element is begin checked by a user action"
|
|
1319
|
+
}
|
|
1320
|
+
],
|
|
1321
|
+
"slots": [
|
|
1322
|
+
{
|
|
1323
|
+
"name": "",
|
|
1324
|
+
"description": "Override the default label"
|
|
1325
|
+
}
|
|
1326
|
+
],
|
|
1327
|
+
"cssProperties": [
|
|
1328
|
+
{
|
|
1329
|
+
"name": "--uui-checkbox-size",
|
|
1330
|
+
"description": "To set the size of the checkbox."
|
|
1331
|
+
}
|
|
1332
|
+
]
|
|
1333
|
+
},
|
|
1334
|
+
{
|
|
1335
|
+
"name": "uui-color-area",
|
|
1336
|
+
"path": "./../uui-color-area/lib/uui-color-area.element.ts",
|
|
1337
|
+
"attributes": [
|
|
1338
|
+
{
|
|
1339
|
+
"name": "hue",
|
|
1340
|
+
"description": "The current hue.",
|
|
1341
|
+
"type": "number",
|
|
1342
|
+
"default": "\"0\""
|
|
1343
|
+
},
|
|
1344
|
+
{
|
|
1345
|
+
"name": "saturation",
|
|
1346
|
+
"description": "The current saturation.",
|
|
1347
|
+
"type": "number",
|
|
1348
|
+
"default": "\"0\""
|
|
1349
|
+
},
|
|
1350
|
+
{
|
|
1351
|
+
"name": "lightness",
|
|
1352
|
+
"description": "The current lightness.",
|
|
1353
|
+
"type": "number",
|
|
1354
|
+
"default": "\"0\""
|
|
1355
|
+
},
|
|
1356
|
+
{
|
|
1357
|
+
"name": "brightness",
|
|
1358
|
+
"description": "The current brightness.",
|
|
1359
|
+
"type": "number",
|
|
1360
|
+
"default": "\"0\""
|
|
1361
|
+
},
|
|
1362
|
+
{
|
|
1363
|
+
"name": "alpha",
|
|
1364
|
+
"description": "The current alpha.",
|
|
1365
|
+
"type": "number",
|
|
1366
|
+
"default": "\"100\""
|
|
1367
|
+
},
|
|
1368
|
+
{
|
|
1369
|
+
"name": "value",
|
|
1370
|
+
"description": "The current value.",
|
|
1371
|
+
"type": "string"
|
|
1372
|
+
},
|
|
1373
|
+
{
|
|
1374
|
+
"name": "disabled",
|
|
1375
|
+
"description": "Disables the color area.",
|
|
1376
|
+
"type": "boolean",
|
|
1377
|
+
"default": "false"
|
|
1378
|
+
}
|
|
1379
|
+
],
|
|
1380
|
+
"properties": [
|
|
1381
|
+
{
|
|
1382
|
+
"name": "styles",
|
|
1383
|
+
"type": "CSSResult[]",
|
|
1384
|
+
"default": "[null]"
|
|
1385
|
+
},
|
|
1386
|
+
{
|
|
1387
|
+
"name": "hue",
|
|
1388
|
+
"attribute": "hue",
|
|
1389
|
+
"description": "The current hue.",
|
|
1390
|
+
"type": "number",
|
|
1391
|
+
"default": "\"0\""
|
|
1392
|
+
},
|
|
1393
|
+
{
|
|
1394
|
+
"name": "saturation",
|
|
1395
|
+
"attribute": "saturation",
|
|
1396
|
+
"description": "The current saturation.",
|
|
1397
|
+
"type": "number",
|
|
1398
|
+
"default": "\"0\""
|
|
1399
|
+
},
|
|
1400
|
+
{
|
|
1401
|
+
"name": "lightness",
|
|
1402
|
+
"attribute": "lightness",
|
|
1403
|
+
"description": "The current lightness.",
|
|
1404
|
+
"type": "number",
|
|
1405
|
+
"default": "\"0\""
|
|
1406
|
+
},
|
|
1407
|
+
{
|
|
1408
|
+
"name": "brightness",
|
|
1409
|
+
"attribute": "brightness",
|
|
1410
|
+
"description": "The current brightness.",
|
|
1411
|
+
"type": "number",
|
|
1412
|
+
"default": "\"0\""
|
|
1413
|
+
},
|
|
1414
|
+
{
|
|
1415
|
+
"name": "alpha",
|
|
1416
|
+
"attribute": "alpha",
|
|
1417
|
+
"description": "The current alpha.",
|
|
1418
|
+
"type": "number",
|
|
1419
|
+
"default": "\"100\""
|
|
1420
|
+
},
|
|
1421
|
+
{
|
|
1422
|
+
"name": "value",
|
|
1423
|
+
"attribute": "value",
|
|
1424
|
+
"description": "The current value.",
|
|
1425
|
+
"type": "string"
|
|
1426
|
+
},
|
|
1427
|
+
{
|
|
1428
|
+
"name": "disabled",
|
|
1429
|
+
"attribute": "disabled",
|
|
1430
|
+
"description": "Disables the color area.",
|
|
1431
|
+
"type": "boolean",
|
|
1432
|
+
"default": "false"
|
|
1433
|
+
}
|
|
1434
|
+
],
|
|
1435
|
+
"cssProperties": [
|
|
1436
|
+
{
|
|
1437
|
+
"name": "--uui-color-area-grid-handle-size",
|
|
1438
|
+
"description": "The size of the handle in the grid"
|
|
1439
|
+
}
|
|
1440
|
+
]
|
|
1441
|
+
},
|
|
1442
|
+
{
|
|
1443
|
+
"name": "uui-color-picker",
|
|
1444
|
+
"path": "./../uui-color-picker/lib/uui-color-picker.element.ts",
|
|
1445
|
+
"attributes": [
|
|
1446
|
+
{
|
|
1447
|
+
"name": "value",
|
|
1448
|
+
"description": "The current color.",
|
|
1449
|
+
"type": "string",
|
|
1450
|
+
"default": "\"''\""
|
|
1451
|
+
},
|
|
1452
|
+
{
|
|
1453
|
+
"name": "format",
|
|
1454
|
+
"description": "The format to use for the display value. If opacity is enabled, these will translate to HEXA, RGBA, and HSLA\nrespectively. The color picker will always accept user input in any format (including CSS color names) and convert\nit to the desired format.",
|
|
1455
|
+
"type": "UUIColorPickerFormat",
|
|
1456
|
+
"default": "\"'hex'\""
|
|
1457
|
+
},
|
|
1458
|
+
{
|
|
1459
|
+
"name": "name",
|
|
1460
|
+
"description": "The input's name attribute.",
|
|
1461
|
+
"type": "string",
|
|
1462
|
+
"default": "\"''\""
|
|
1463
|
+
},
|
|
1464
|
+
{
|
|
1465
|
+
"name": "size",
|
|
1466
|
+
"description": "Determines the size of the color picker's trigger. This has no effect on inline color pickers.",
|
|
1467
|
+
"type": "UUIColorPickerSize",
|
|
1468
|
+
"default": "\"'medium'\""
|
|
1469
|
+
},
|
|
1470
|
+
{
|
|
1471
|
+
"name": "no-format-toggle",
|
|
1472
|
+
"description": "Removes the format toggle.",
|
|
1473
|
+
"type": "boolean",
|
|
1474
|
+
"default": "\"false\""
|
|
1475
|
+
},
|
|
1476
|
+
{
|
|
1477
|
+
"name": "inline",
|
|
1478
|
+
"description": "Renders the color picker inline rather than inside a dropdown.",
|
|
1479
|
+
"type": "boolean",
|
|
1480
|
+
"default": "\"false\""
|
|
1481
|
+
},
|
|
1482
|
+
{
|
|
1483
|
+
"name": "disabled",
|
|
1484
|
+
"description": "Disables the color picker.",
|
|
1485
|
+
"type": "boolean",
|
|
1486
|
+
"default": "\"false\""
|
|
1487
|
+
},
|
|
1488
|
+
{
|
|
1489
|
+
"name": "opacity",
|
|
1490
|
+
"description": "Whether to show the opacity slider.",
|
|
1491
|
+
"type": "boolean",
|
|
1492
|
+
"default": "\"false\""
|
|
1493
|
+
},
|
|
1494
|
+
{
|
|
1495
|
+
"name": "uppercase",
|
|
1496
|
+
"description": "By default, the value will be set in lowercase. Set this to true to set it in uppercase instead.",
|
|
1497
|
+
"type": "boolean",
|
|
1498
|
+
"default": "\"false\""
|
|
1499
|
+
},
|
|
1500
|
+
{
|
|
1501
|
+
"name": "label",
|
|
1502
|
+
"description": "Label to be used for aria-label and potentially as visual label for some components",
|
|
1503
|
+
"type": "string"
|
|
1504
|
+
}
|
|
1505
|
+
],
|
|
1506
|
+
"properties": [
|
|
1507
|
+
{
|
|
1508
|
+
"name": "styles",
|
|
1509
|
+
"type": "CSSResult[]",
|
|
1510
|
+
"default": "[null]"
|
|
1511
|
+
},
|
|
1512
|
+
{
|
|
1513
|
+
"name": "value",
|
|
1514
|
+
"attribute": "value",
|
|
1515
|
+
"description": "The current color.",
|
|
1516
|
+
"type": "string",
|
|
1517
|
+
"default": "\"''\""
|
|
1518
|
+
},
|
|
1519
|
+
{
|
|
1520
|
+
"name": "format",
|
|
1521
|
+
"attribute": "format",
|
|
1522
|
+
"description": "The format to use for the display value. If opacity is enabled, these will translate to HEXA, RGBA, and HSLA\nrespectively. The color picker will always accept user input in any format (including CSS color names) and convert\nit to the desired format.",
|
|
1523
|
+
"type": "UUIColorPickerFormat",
|
|
1524
|
+
"default": "\"'hex'\""
|
|
1525
|
+
},
|
|
1526
|
+
{
|
|
1527
|
+
"name": "name",
|
|
1528
|
+
"attribute": "name",
|
|
1529
|
+
"description": "The input's name attribute.",
|
|
1530
|
+
"type": "string",
|
|
1531
|
+
"default": "\"''\""
|
|
1532
|
+
},
|
|
1533
|
+
{
|
|
1534
|
+
"name": "size",
|
|
1535
|
+
"attribute": "size",
|
|
1536
|
+
"description": "Determines the size of the color picker's trigger. This has no effect on inline color pickers.",
|
|
1537
|
+
"type": "UUIColorPickerSize",
|
|
1538
|
+
"default": "\"'medium'\""
|
|
1539
|
+
},
|
|
1540
|
+
{
|
|
1541
|
+
"name": "noFormatToggle",
|
|
1542
|
+
"attribute": "no-format-toggle",
|
|
1543
|
+
"description": "Removes the format toggle.",
|
|
1544
|
+
"type": "boolean",
|
|
1545
|
+
"default": "\"false\""
|
|
1546
|
+
},
|
|
1547
|
+
{
|
|
1548
|
+
"name": "inline",
|
|
1549
|
+
"attribute": "inline",
|
|
1550
|
+
"description": "Renders the color picker inline rather than inside a dropdown.",
|
|
1551
|
+
"type": "boolean",
|
|
1552
|
+
"default": "\"false\""
|
|
1553
|
+
},
|
|
1554
|
+
{
|
|
1555
|
+
"name": "disabled",
|
|
1556
|
+
"attribute": "disabled",
|
|
1557
|
+
"description": "Disables the color picker.",
|
|
1558
|
+
"type": "boolean",
|
|
1559
|
+
"default": "\"false\""
|
|
1560
|
+
},
|
|
1561
|
+
{
|
|
1562
|
+
"name": "opacity",
|
|
1563
|
+
"attribute": "opacity",
|
|
1564
|
+
"description": "Whether to show the opacity slider.",
|
|
1565
|
+
"type": "boolean",
|
|
1566
|
+
"default": "\"false\""
|
|
1567
|
+
},
|
|
1568
|
+
{
|
|
1569
|
+
"name": "uppercase",
|
|
1570
|
+
"attribute": "uppercase",
|
|
1571
|
+
"description": "By default, the value will be set in lowercase. Set this to true to set it in uppercase instead.",
|
|
1572
|
+
"type": "boolean",
|
|
1573
|
+
"default": "\"false\""
|
|
1574
|
+
},
|
|
1575
|
+
{
|
|
1576
|
+
"name": "swatches",
|
|
1577
|
+
"description": "An array of predefined color swatches to display. Can include any format the color picker can parse, including\nHEX(A), RGB(A), HSL(A), and CSS color names.",
|
|
1578
|
+
"type": "string[]",
|
|
1579
|
+
"default": "[\"#d0021b\",\"#f5a623\",\"#f8e71c\",\"#8b572a\",\"#7ed321\",\"#417505\",\"#bd10e0\",\"#9013fe\",\"#4a90e2\",\"#50e3c2\",\"#b8e986\",\"#000\",\"#444\",\"#888\",\"#ccc\",\"#fff\"]"
|
|
1580
|
+
},
|
|
1581
|
+
{
|
|
1582
|
+
"name": "label",
|
|
1583
|
+
"attribute": "label",
|
|
1584
|
+
"description": "Label to be used for aria-label and potentially as visual label for some components",
|
|
1585
|
+
"type": "string"
|
|
1586
|
+
}
|
|
1587
|
+
],
|
|
1588
|
+
"events": [
|
|
1589
|
+
{
|
|
1590
|
+
"name": "change",
|
|
1591
|
+
"description": "Fired when the color changes"
|
|
1592
|
+
}
|
|
1593
|
+
],
|
|
1594
|
+
"slots": [
|
|
1595
|
+
{
|
|
1596
|
+
"name": "",
|
|
1597
|
+
"description": "Override the default label"
|
|
1598
|
+
}
|
|
1599
|
+
],
|
|
1600
|
+
"cssProperties": [
|
|
1601
|
+
{
|
|
1602
|
+
"name": "--uui-color-picker-width",
|
|
1603
|
+
"description": "The width of the color picker"
|
|
1604
|
+
}
|
|
1605
|
+
]
|
|
1606
|
+
},
|
|
1607
|
+
{
|
|
1608
|
+
"name": "uui-color-slider",
|
|
1609
|
+
"path": "./../uui-color-slider/lib/uui-color-slider.element.ts",
|
|
1610
|
+
"attributes": [
|
|
1611
|
+
{
|
|
1612
|
+
"name": "type",
|
|
1613
|
+
"description": "The type of the slider.",
|
|
1614
|
+
"type": "UUIColorSliderType",
|
|
1615
|
+
"default": "\"'hue'\""
|
|
1616
|
+
},
|
|
1617
|
+
{
|
|
1618
|
+
"name": "color",
|
|
1619
|
+
"description": "The color value.",
|
|
1620
|
+
"type": "string",
|
|
1621
|
+
"default": "\"''\""
|
|
1622
|
+
},
|
|
1623
|
+
{
|
|
1624
|
+
"name": "min",
|
|
1625
|
+
"description": "This is a minimum value of the slider.",
|
|
1626
|
+
"type": "number",
|
|
1627
|
+
"default": "\"0\""
|
|
1628
|
+
},
|
|
1629
|
+
{
|
|
1630
|
+
"name": "max",
|
|
1631
|
+
"description": "This is a maximum value of the slider.",
|
|
1632
|
+
"type": "number",
|
|
1633
|
+
"default": "\"100\""
|
|
1634
|
+
},
|
|
1635
|
+
{
|
|
1636
|
+
"name": "precision",
|
|
1637
|
+
"description": "The minimum increment value allowed by the slider.",
|
|
1638
|
+
"type": "number",
|
|
1639
|
+
"default": "1"
|
|
1640
|
+
},
|
|
1641
|
+
{
|
|
1642
|
+
"name": "vertical",
|
|
1643
|
+
"description": "Draws the slider in a vertical orientation.",
|
|
1644
|
+
"type": "boolean",
|
|
1645
|
+
"default": "\"false\""
|
|
1646
|
+
},
|
|
1647
|
+
{
|
|
1648
|
+
"name": "value",
|
|
1649
|
+
"description": "The current value of the slider.",
|
|
1650
|
+
"type": "number",
|
|
1651
|
+
"default": "\"0\""
|
|
1652
|
+
},
|
|
1653
|
+
{
|
|
1654
|
+
"name": "disabled",
|
|
1655
|
+
"description": "Disables the color slider.",
|
|
1656
|
+
"type": "boolean",
|
|
1657
|
+
"default": "\"false\""
|
|
1658
|
+
},
|
|
1659
|
+
{
|
|
1660
|
+
"name": "label",
|
|
1661
|
+
"description": "Label to be used for aria-label and potentially as visual label for some components",
|
|
1662
|
+
"type": "string"
|
|
1663
|
+
}
|
|
1664
|
+
],
|
|
1665
|
+
"properties": [
|
|
1666
|
+
{
|
|
1667
|
+
"name": "styles",
|
|
1668
|
+
"type": "CSSResult[]",
|
|
1669
|
+
"default": "[null]"
|
|
1670
|
+
},
|
|
1671
|
+
{
|
|
1672
|
+
"name": "type",
|
|
1673
|
+
"attribute": "type",
|
|
1674
|
+
"description": "The type of the slider.",
|
|
1675
|
+
"type": "UUIColorSliderType",
|
|
1676
|
+
"default": "\"'hue'\""
|
|
1677
|
+
},
|
|
1678
|
+
{
|
|
1679
|
+
"name": "color",
|
|
1680
|
+
"attribute": "color",
|
|
1681
|
+
"description": "The color value.",
|
|
1682
|
+
"type": "string",
|
|
1683
|
+
"default": "\"''\""
|
|
1684
|
+
},
|
|
1685
|
+
{
|
|
1686
|
+
"name": "min",
|
|
1687
|
+
"attribute": "min",
|
|
1688
|
+
"description": "This is a minimum value of the slider.",
|
|
1689
|
+
"type": "number",
|
|
1690
|
+
"default": "\"0\""
|
|
1691
|
+
},
|
|
1692
|
+
{
|
|
1693
|
+
"name": "max",
|
|
1694
|
+
"attribute": "max",
|
|
1695
|
+
"description": "This is a maximum value of the slider.",
|
|
1696
|
+
"type": "number",
|
|
1697
|
+
"default": "\"100\""
|
|
1698
|
+
},
|
|
1699
|
+
{
|
|
1700
|
+
"name": "precision",
|
|
1701
|
+
"attribute": "precision",
|
|
1702
|
+
"description": "The minimum increment value allowed by the slider.",
|
|
1703
|
+
"type": "number",
|
|
1704
|
+
"default": "1"
|
|
1705
|
+
},
|
|
1706
|
+
{
|
|
1707
|
+
"name": "vertical",
|
|
1708
|
+
"attribute": "vertical",
|
|
1709
|
+
"description": "Draws the slider in a vertical orientation.",
|
|
1710
|
+
"type": "boolean",
|
|
1711
|
+
"default": "\"false\""
|
|
1712
|
+
},
|
|
1713
|
+
{
|
|
1714
|
+
"name": "value",
|
|
1715
|
+
"attribute": "value",
|
|
1716
|
+
"description": "The current value of the slider.",
|
|
1717
|
+
"type": "number",
|
|
1718
|
+
"default": "\"0\""
|
|
1719
|
+
},
|
|
1720
|
+
{
|
|
1721
|
+
"name": "disabled",
|
|
1722
|
+
"attribute": "disabled",
|
|
1723
|
+
"description": "Disables the color slider.",
|
|
1724
|
+
"type": "boolean",
|
|
1725
|
+
"default": "\"false\""
|
|
1726
|
+
},
|
|
1727
|
+
{
|
|
1728
|
+
"name": "ccsPropCurrentValue",
|
|
1729
|
+
"type": "number"
|
|
1730
|
+
},
|
|
1731
|
+
{
|
|
1732
|
+
"name": "label",
|
|
1733
|
+
"attribute": "label",
|
|
1734
|
+
"description": "Label to be used for aria-label and potentially as visual label for some components",
|
|
1735
|
+
"type": "string"
|
|
1736
|
+
}
|
|
1737
|
+
],
|
|
1738
|
+
"events": [
|
|
1739
|
+
{
|
|
1740
|
+
"name": "change",
|
|
1741
|
+
"description": "Fires when the value of the slider changes."
|
|
1742
|
+
}
|
|
1743
|
+
],
|
|
1744
|
+
"slots": [
|
|
1745
|
+
{
|
|
1746
|
+
"name": "",
|
|
1747
|
+
"description": "Override the default label"
|
|
1748
|
+
}
|
|
1749
|
+
],
|
|
1750
|
+
"cssProperties": [
|
|
1751
|
+
{
|
|
1752
|
+
"name": "--uui-slider-height",
|
|
1753
|
+
"description": "The height of the slider."
|
|
1754
|
+
},
|
|
1755
|
+
{
|
|
1756
|
+
"name": "--uui-slider-handle-size",
|
|
1757
|
+
"description": "The size of the slider handle."
|
|
1758
|
+
},
|
|
1759
|
+
{
|
|
1760
|
+
"name": "--uui-slider-background-image",
|
|
1761
|
+
"description": "The background image of the slider."
|
|
1762
|
+
},
|
|
1763
|
+
{
|
|
1764
|
+
"name": "--uui-slider-background-size",
|
|
1765
|
+
"description": "The background size of the slider."
|
|
1766
|
+
},
|
|
1767
|
+
{
|
|
1768
|
+
"name": "--uui-slider-background-position",
|
|
1769
|
+
"description": "The background position of the slider."
|
|
1770
|
+
}
|
|
1771
|
+
]
|
|
1772
|
+
},
|
|
1773
|
+
{
|
|
1774
|
+
"name": "uui-color-swatch",
|
|
1775
|
+
"path": "./../uui-color-swatch/lib/uui-color-swatch.element.ts",
|
|
1776
|
+
"description": "Color swatch, can have label and be selectable. Depends on colord library and exposes it's utility functions under color property.",
|
|
1777
|
+
"attributes": [
|
|
1778
|
+
{
|
|
1779
|
+
"name": "value",
|
|
1780
|
+
"description": "Value of the swatch. Should be a valid hex, hexa, rgb, rgba, hsl or hsla string. Should fulfill this [css spec](https://www.w3.org/TR/css-color-4/#color-type). If not provided element will look at its text content.",
|
|
1781
|
+
"type": " string ",
|
|
1782
|
+
"default": "\"\\\"\\\"\""
|
|
1783
|
+
},
|
|
1784
|
+
{
|
|
1785
|
+
"name": "disabled",
|
|
1786
|
+
"description": "Determines if the options is disabled. If true the option can't be selected",
|
|
1787
|
+
"type": " boolean ",
|
|
1788
|
+
"default": "\"false\""
|
|
1789
|
+
},
|
|
1790
|
+
{
|
|
1791
|
+
"name": "show-label",
|
|
1792
|
+
"description": "When true shows element label below the color checkbox",
|
|
1793
|
+
"type": "boolean",
|
|
1794
|
+
"default": "false"
|
|
1795
|
+
},
|
|
1796
|
+
{
|
|
1797
|
+
"name": "label",
|
|
1798
|
+
"description": "Label to be used for aria-label and potentially as visual label for some components",
|
|
1799
|
+
"type": "string"
|
|
1800
|
+
},
|
|
1801
|
+
{
|
|
1802
|
+
"name": "selectable",
|
|
1803
|
+
"description": "Enable the ability to select this element.",
|
|
1804
|
+
"type": "boolean"
|
|
1805
|
+
},
|
|
1806
|
+
{
|
|
1807
|
+
"name": "selected",
|
|
1808
|
+
"description": "Attribute applied when the element is selected.",
|
|
1809
|
+
"type": "boolean",
|
|
1810
|
+
"default": "false"
|
|
1811
|
+
},
|
|
1812
|
+
{
|
|
1813
|
+
"name": "active",
|
|
1814
|
+
"description": "Set this boolean to true for then the related composition is sorted.",
|
|
1815
|
+
"type": "boolean",
|
|
1816
|
+
"default": "false"
|
|
1817
|
+
}
|
|
1818
|
+
],
|
|
1819
|
+
"properties": [
|
|
1820
|
+
{
|
|
1821
|
+
"name": "styles",
|
|
1822
|
+
"type": "CSSResult[]",
|
|
1823
|
+
"default": "[null]"
|
|
1824
|
+
},
|
|
1825
|
+
{
|
|
1826
|
+
"name": "value",
|
|
1827
|
+
"attribute": "value",
|
|
1828
|
+
"description": "Value of the swatch. Should be a valid hex, hexa, rgb, rgba, hsl or hsla string. Should fulfill this [css spec](https://www.w3.org/TR/css-color-4/#color-type). If not provided element will look at its text content.",
|
|
1829
|
+
"type": " string ",
|
|
1830
|
+
"default": "\"\\\"\\\"\""
|
|
1831
|
+
},
|
|
1832
|
+
{
|
|
1833
|
+
"name": "disabled",
|
|
1834
|
+
"attribute": "disabled",
|
|
1835
|
+
"description": "Determines if the options is disabled. If true the option can't be selected",
|
|
1836
|
+
"type": " boolean ",
|
|
1837
|
+
"default": "\"false\""
|
|
1838
|
+
},
|
|
1839
|
+
{
|
|
1840
|
+
"name": "showLabel",
|
|
1841
|
+
"attribute": "show-label",
|
|
1842
|
+
"description": "When true shows element label below the color checkbox",
|
|
1843
|
+
"type": "boolean",
|
|
1844
|
+
"default": "false"
|
|
1845
|
+
},
|
|
1846
|
+
{
|
|
1847
|
+
"name": "color",
|
|
1848
|
+
"description": "Colord object instance based on the value provided to the element. If the value is not a valid color, it falls back to black (like Amy Winehouse). For more information about Colord, see [Colord](https://omgovich.github.io/colord/)",
|
|
1849
|
+
"type": "(Colord | null)"
|
|
1850
|
+
},
|
|
1851
|
+
{
|
|
1852
|
+
"name": "isLight",
|
|
1853
|
+
"description": "Returns true if the color brightness is >= 0.5",
|
|
1854
|
+
"type": "boolean"
|
|
1855
|
+
},
|
|
1856
|
+
{
|
|
1857
|
+
"name": "label",
|
|
1858
|
+
"attribute": "label",
|
|
1859
|
+
"description": "Label to be used for aria-label and potentially as visual label for some components",
|
|
1860
|
+
"type": "string"
|
|
1861
|
+
},
|
|
1862
|
+
{
|
|
1863
|
+
"name": "selectable",
|
|
1864
|
+
"attribute": "selectable",
|
|
1865
|
+
"description": "Enable the ability to select this element.",
|
|
1866
|
+
"type": "boolean"
|
|
1867
|
+
},
|
|
1868
|
+
{
|
|
1869
|
+
"name": "selected",
|
|
1870
|
+
"attribute": "selected",
|
|
1871
|
+
"description": "Attribute applied when the element is selected.",
|
|
1872
|
+
"type": "boolean",
|
|
1873
|
+
"default": "false"
|
|
1265
1874
|
},
|
|
1266
1875
|
{
|
|
1267
|
-
"name": "
|
|
1268
|
-
"attribute": "
|
|
1269
|
-
"description": "
|
|
1876
|
+
"name": "active",
|
|
1877
|
+
"attribute": "active",
|
|
1878
|
+
"description": "Set this boolean to true for then the related composition is sorted.",
|
|
1270
1879
|
"type": "boolean",
|
|
1271
|
-
"default": "
|
|
1880
|
+
"default": "false"
|
|
1881
|
+
}
|
|
1882
|
+
],
|
|
1883
|
+
"events": [
|
|
1884
|
+
{
|
|
1885
|
+
"name": "selected",
|
|
1886
|
+
"description": "fires when the media card is selected"
|
|
1272
1887
|
},
|
|
1273
1888
|
{
|
|
1274
|
-
"name": "
|
|
1275
|
-
"
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1889
|
+
"name": "unselected",
|
|
1890
|
+
"description": "fires when the media card is unselected"
|
|
1891
|
+
}
|
|
1892
|
+
],
|
|
1893
|
+
"slots": [
|
|
1894
|
+
{
|
|
1895
|
+
"name": "label",
|
|
1896
|
+
"description": "Default slot for the label."
|
|
1279
1897
|
},
|
|
1280
1898
|
{
|
|
1281
|
-
"name": "
|
|
1282
|
-
"
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1899
|
+
"name": "",
|
|
1900
|
+
"description": "Override the default label"
|
|
1901
|
+
}
|
|
1902
|
+
],
|
|
1903
|
+
"cssProperties": [
|
|
1904
|
+
{
|
|
1905
|
+
"name": "--uui-swatch-size",
|
|
1906
|
+
"description": "The size of the swatch."
|
|
1286
1907
|
},
|
|
1287
1908
|
{
|
|
1288
|
-
"name": "
|
|
1289
|
-
"
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1909
|
+
"name": "--uui-swatch-border-width",
|
|
1910
|
+
"description": "The width of the border."
|
|
1911
|
+
}
|
|
1912
|
+
]
|
|
1913
|
+
},
|
|
1914
|
+
{
|
|
1915
|
+
"name": "uui-color-swatches",
|
|
1916
|
+
"path": "./../uui-color-swatches/lib/uui-color-swatches.element.ts",
|
|
1917
|
+
"description": "Put uui-stacked-color-swatch elements inside this element to create a color swatch selector.",
|
|
1918
|
+
"attributes": [
|
|
1919
|
+
{
|
|
1920
|
+
"name": "value",
|
|
1921
|
+
"description": "Value of selected option.",
|
|
1922
|
+
"type": " string ",
|
|
1923
|
+
"default": "\"\\\"\\\"\""
|
|
1293
1924
|
},
|
|
1294
1925
|
{
|
|
1295
|
-
"name": "
|
|
1296
|
-
"
|
|
1297
|
-
"
|
|
1298
|
-
|
|
1299
|
-
|
|
1926
|
+
"name": "label",
|
|
1927
|
+
"description": "Label to be used for aria-label and potentially as visual label for some components",
|
|
1928
|
+
"type": "string"
|
|
1929
|
+
}
|
|
1930
|
+
],
|
|
1931
|
+
"properties": [
|
|
1932
|
+
{
|
|
1933
|
+
"name": "styles",
|
|
1934
|
+
"type": "CSSResult[]",
|
|
1935
|
+
"default": "[null]"
|
|
1300
1936
|
},
|
|
1301
1937
|
{
|
|
1302
|
-
"name": "
|
|
1303
|
-
"
|
|
1938
|
+
"name": "value",
|
|
1939
|
+
"attribute": "value",
|
|
1940
|
+
"description": "Value of selected option.",
|
|
1941
|
+
"type": " string ",
|
|
1942
|
+
"default": "\"\\\"\\\"\""
|
|
1304
1943
|
},
|
|
1305
1944
|
{
|
|
1306
|
-
"name": "
|
|
1945
|
+
"name": "swatches",
|
|
1946
|
+
"type": "UUIColorSwatchElement[]"
|
|
1307
1947
|
},
|
|
1308
1948
|
{
|
|
1309
1949
|
"name": "label",
|
|
@@ -1315,19 +1955,13 @@
|
|
|
1315
1955
|
"events": [
|
|
1316
1956
|
{
|
|
1317
1957
|
"name": "change",
|
|
1318
|
-
"description": "
|
|
1958
|
+
"description": "Fires when a color swatch is selected."
|
|
1319
1959
|
}
|
|
1320
1960
|
],
|
|
1321
1961
|
"slots": [
|
|
1322
1962
|
{
|
|
1323
1963
|
"name": "",
|
|
1324
|
-
"description": "
|
|
1325
|
-
}
|
|
1326
|
-
],
|
|
1327
|
-
"cssProperties": [
|
|
1328
|
-
{
|
|
1329
|
-
"name": "--uui-checkbox-size",
|
|
1330
|
-
"description": "To set the size of the checkbox."
|
|
1964
|
+
"description": "Default slot for content."
|
|
1331
1965
|
}
|
|
1332
1966
|
]
|
|
1333
1967
|
},
|
|
@@ -1433,7 +2067,7 @@
|
|
|
1433
2067
|
],
|
|
1434
2068
|
"slots": [
|
|
1435
2069
|
{
|
|
1436
|
-
"name": "
|
|
2070
|
+
"name": "",
|
|
1437
2071
|
"description": "For option content"
|
|
1438
2072
|
}
|
|
1439
2073
|
]
|
|
@@ -1497,7 +2131,7 @@
|
|
|
1497
2131
|
],
|
|
1498
2132
|
"slots": [
|
|
1499
2133
|
{
|
|
1500
|
-
"name": "
|
|
2134
|
+
"name": "",
|
|
1501
2135
|
"description": "for uui-combobox-list-options"
|
|
1502
2136
|
}
|
|
1503
2137
|
]
|
|
@@ -1524,6 +2158,12 @@
|
|
|
1524
2158
|
"type": " string ",
|
|
1525
2159
|
"default": "\"\\\"Close\\\"\""
|
|
1526
2160
|
},
|
|
2161
|
+
{
|
|
2162
|
+
"name": "disabled",
|
|
2163
|
+
"description": "Disables the uui-combobox.",
|
|
2164
|
+
"type": "boolean",
|
|
2165
|
+
"default": "\"false\""
|
|
2166
|
+
},
|
|
1527
2167
|
{
|
|
1528
2168
|
"name": "name",
|
|
1529
2169
|
"description": "This is a name property of the component.",
|
|
@@ -1594,6 +2234,13 @@
|
|
|
1594
2234
|
"type": " string ",
|
|
1595
2235
|
"default": "\"\\\"Close\\\"\""
|
|
1596
2236
|
},
|
|
2237
|
+
{
|
|
2238
|
+
"name": "disabled",
|
|
2239
|
+
"attribute": "disabled",
|
|
2240
|
+
"description": "Disables the uui-combobox.",
|
|
2241
|
+
"type": "boolean",
|
|
2242
|
+
"default": "\"false\""
|
|
2243
|
+
},
|
|
1597
2244
|
{
|
|
1598
2245
|
"name": "formAssociated",
|
|
1599
2246
|
"description": "This is a static class field indicating that the element is can be used inside a native form and participate in its events.\nIt may require a polyfill, check support here https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/attachInternals.\nRead more about form controls here https://web.dev/more-capable-form-controls/",
|
|
@@ -1669,7 +2316,7 @@
|
|
|
1669
2316
|
],
|
|
1670
2317
|
"slots": [
|
|
1671
2318
|
{
|
|
1672
|
-
"name": "
|
|
2319
|
+
"name": "",
|
|
1673
2320
|
"description": "for uui-combobox-list-options"
|
|
1674
2321
|
},
|
|
1675
2322
|
{
|
|
@@ -3338,6 +3985,185 @@
|
|
|
3338
3985
|
}
|
|
3339
3986
|
]
|
|
3340
3987
|
},
|
|
3988
|
+
{
|
|
3989
|
+
"name": "modal-example",
|
|
3990
|
+
"path": "./../uui-modal/lib/modal-example.element.ts",
|
|
3991
|
+
"properties": [
|
|
3992
|
+
{
|
|
3993
|
+
"name": "styles",
|
|
3994
|
+
"type": "CSSResult",
|
|
3995
|
+
"default": "\"css`\\n .sidebar-buttons {\\n margin-top: auto;\\n display: flex;\\n align-items: center;\\n justify-content: end;\\n padding: 16px;\\n background: var(--uui-color-surface);\\n box-shadow: var(--uui-shadow-depth-4);\\n }\\n `\""
|
|
3996
|
+
}
|
|
3997
|
+
]
|
|
3998
|
+
},
|
|
3999
|
+
{
|
|
4000
|
+
"name": "uui-modal-dialog",
|
|
4001
|
+
"path": "./../uui-modal/lib/uui-modal-dialog.element.ts",
|
|
4002
|
+
"attributes": [
|
|
4003
|
+
{
|
|
4004
|
+
"name": "is-open",
|
|
4005
|
+
"type": "boolean",
|
|
4006
|
+
"default": "false"
|
|
4007
|
+
},
|
|
4008
|
+
{
|
|
4009
|
+
"name": "is-closing",
|
|
4010
|
+
"type": "boolean",
|
|
4011
|
+
"default": "false"
|
|
4012
|
+
},
|
|
4013
|
+
{
|
|
4014
|
+
"name": "index",
|
|
4015
|
+
"type": "number",
|
|
4016
|
+
"default": "0"
|
|
4017
|
+
},
|
|
4018
|
+
{
|
|
4019
|
+
"name": "unique-index",
|
|
4020
|
+
"type": "number",
|
|
4021
|
+
"default": "0"
|
|
4022
|
+
},
|
|
4023
|
+
{
|
|
4024
|
+
"name": "transitionDuration",
|
|
4025
|
+
"type": "number"
|
|
4026
|
+
}
|
|
4027
|
+
],
|
|
4028
|
+
"properties": [
|
|
4029
|
+
{
|
|
4030
|
+
"name": "isOpen",
|
|
4031
|
+
"attribute": "is-open",
|
|
4032
|
+
"type": "boolean",
|
|
4033
|
+
"default": "false"
|
|
4034
|
+
},
|
|
4035
|
+
{
|
|
4036
|
+
"name": "isClosing",
|
|
4037
|
+
"attribute": "is-closing",
|
|
4038
|
+
"type": "boolean",
|
|
4039
|
+
"default": "false"
|
|
4040
|
+
},
|
|
4041
|
+
{
|
|
4042
|
+
"name": "index",
|
|
4043
|
+
"attribute": "index",
|
|
4044
|
+
"type": "number",
|
|
4045
|
+
"default": "0"
|
|
4046
|
+
},
|
|
4047
|
+
{
|
|
4048
|
+
"name": "uniqueIndex",
|
|
4049
|
+
"attribute": "unique-index",
|
|
4050
|
+
"type": "number",
|
|
4051
|
+
"default": "0"
|
|
4052
|
+
},
|
|
4053
|
+
{
|
|
4054
|
+
"name": "transitionDuration",
|
|
4055
|
+
"attribute": "transitionDuration",
|
|
4056
|
+
"type": "number"
|
|
4057
|
+
},
|
|
4058
|
+
{
|
|
4059
|
+
"name": "open",
|
|
4060
|
+
"type": "(event?: Event | undefined) => void",
|
|
4061
|
+
"default": "\"(event?: Event) => {\\n event?.preventDefault();\\n event?.stopImmediatePropagation();\\n\\n const openEvent = new CustomEvent('open', {\\n bubbles: true,\\n cancelable: true,\\n });\\n\\n this.dispatchEvent(openEvent);\\n if (openEvent.defaultPrevented) return;\\n\\n this._openModal();\\n }\""
|
|
4062
|
+
},
|
|
4063
|
+
{
|
|
4064
|
+
"name": "close",
|
|
4065
|
+
"type": "(event?: Event | undefined) => void",
|
|
4066
|
+
"default": "\"(event?: Event) => {\\n event?.preventDefault();\\n event?.stopImmediatePropagation();\\n\\n const closeEvent = new CustomEvent('close', {\\n bubbles: true,\\n cancelable: true,\\n });\\n this.dispatchEvent(closeEvent);\\n\\n if (closeEvent.defaultPrevented) return;\\n\\n this._closeModal();\\n }\""
|
|
4067
|
+
},
|
|
4068
|
+
{
|
|
4069
|
+
"name": "styles",
|
|
4070
|
+
"type": "CSSResult[]",
|
|
4071
|
+
"default": "[null,null]"
|
|
4072
|
+
}
|
|
4073
|
+
],
|
|
4074
|
+
"events": [
|
|
4075
|
+
{
|
|
4076
|
+
"name": "open"
|
|
4077
|
+
},
|
|
4078
|
+
{
|
|
4079
|
+
"name": "close"
|
|
4080
|
+
}
|
|
4081
|
+
]
|
|
4082
|
+
},
|
|
4083
|
+
{
|
|
4084
|
+
"name": "uui-modal-sidebar",
|
|
4085
|
+
"path": "./../uui-modal/lib/uui-modal-sidebar.element.ts",
|
|
4086
|
+
"attributes": [
|
|
4087
|
+
{
|
|
4088
|
+
"name": "is-open",
|
|
4089
|
+
"type": "boolean",
|
|
4090
|
+
"default": "false"
|
|
4091
|
+
},
|
|
4092
|
+
{
|
|
4093
|
+
"name": "is-closing",
|
|
4094
|
+
"type": "boolean",
|
|
4095
|
+
"default": "false"
|
|
4096
|
+
},
|
|
4097
|
+
{
|
|
4098
|
+
"name": "index",
|
|
4099
|
+
"type": "number",
|
|
4100
|
+
"default": "0"
|
|
4101
|
+
},
|
|
4102
|
+
{
|
|
4103
|
+
"name": "unique-index",
|
|
4104
|
+
"type": "number",
|
|
4105
|
+
"default": "0"
|
|
4106
|
+
},
|
|
4107
|
+
{
|
|
4108
|
+
"name": "transitionDuration",
|
|
4109
|
+
"type": "number"
|
|
4110
|
+
}
|
|
4111
|
+
],
|
|
4112
|
+
"properties": [
|
|
4113
|
+
{
|
|
4114
|
+
"name": "isOpen",
|
|
4115
|
+
"attribute": "is-open",
|
|
4116
|
+
"type": "boolean",
|
|
4117
|
+
"default": "false"
|
|
4118
|
+
},
|
|
4119
|
+
{
|
|
4120
|
+
"name": "isClosing",
|
|
4121
|
+
"attribute": "is-closing",
|
|
4122
|
+
"type": "boolean",
|
|
4123
|
+
"default": "false"
|
|
4124
|
+
},
|
|
4125
|
+
{
|
|
4126
|
+
"name": "index",
|
|
4127
|
+
"attribute": "index",
|
|
4128
|
+
"type": "number",
|
|
4129
|
+
"default": "0"
|
|
4130
|
+
},
|
|
4131
|
+
{
|
|
4132
|
+
"name": "uniqueIndex",
|
|
4133
|
+
"attribute": "unique-index",
|
|
4134
|
+
"type": "number",
|
|
4135
|
+
"default": "0"
|
|
4136
|
+
},
|
|
4137
|
+
{
|
|
4138
|
+
"name": "transitionDuration",
|
|
4139
|
+
"attribute": "transitionDuration",
|
|
4140
|
+
"type": "number"
|
|
4141
|
+
},
|
|
4142
|
+
{
|
|
4143
|
+
"name": "open",
|
|
4144
|
+
"type": "(event?: Event | undefined) => void",
|
|
4145
|
+
"default": "\"(event?: Event) => {\\n event?.preventDefault();\\n event?.stopImmediatePropagation();\\n\\n const openEvent = new CustomEvent('open', {\\n bubbles: true,\\n cancelable: true,\\n });\\n\\n this.dispatchEvent(openEvent);\\n if (openEvent.defaultPrevented) return;\\n\\n this._openModal();\\n }\""
|
|
4146
|
+
},
|
|
4147
|
+
{
|
|
4148
|
+
"name": "close",
|
|
4149
|
+
"type": "(event?: Event | undefined) => void",
|
|
4150
|
+
"default": "\"(event?: Event) => {\\n event?.preventDefault();\\n event?.stopImmediatePropagation();\\n\\n const closeEvent = new CustomEvent('close', {\\n bubbles: true,\\n cancelable: true,\\n });\\n this.dispatchEvent(closeEvent);\\n\\n if (closeEvent.defaultPrevented) return;\\n\\n this._closeModal();\\n }\""
|
|
4151
|
+
},
|
|
4152
|
+
{
|
|
4153
|
+
"name": "styles",
|
|
4154
|
+
"type": "CSSResult[]",
|
|
4155
|
+
"default": "[null,null]"
|
|
4156
|
+
}
|
|
4157
|
+
],
|
|
4158
|
+
"events": [
|
|
4159
|
+
{
|
|
4160
|
+
"name": "open"
|
|
4161
|
+
},
|
|
4162
|
+
{
|
|
4163
|
+
"name": "close"
|
|
4164
|
+
}
|
|
4165
|
+
]
|
|
4166
|
+
},
|
|
3341
4167
|
{
|
|
3342
4168
|
"name": "uui-pagination",
|
|
3343
4169
|
"path": "./../uui-pagination/lib/uui-pagination.element.ts",
|
|
@@ -3468,6 +4294,16 @@
|
|
|
3468
4294
|
{
|
|
3469
4295
|
"name": "trigger",
|
|
3470
4296
|
"description": "The element that triggers the popover."
|
|
4297
|
+
},
|
|
4298
|
+
{
|
|
4299
|
+
"name": "popover",
|
|
4300
|
+
"description": "The content of the popover."
|
|
4301
|
+
}
|
|
4302
|
+
],
|
|
4303
|
+
"cssProperties": [
|
|
4304
|
+
{
|
|
4305
|
+
"name": "--uui-popover-z-index",
|
|
4306
|
+
"description": "overwrite the z-index of the popover container."
|
|
3471
4307
|
}
|
|
3472
4308
|
]
|
|
3473
4309
|
},
|
|
@@ -6057,7 +6893,7 @@
|
|
|
6057
6893
|
],
|
|
6058
6894
|
"slots": [
|
|
6059
6895
|
{
|
|
6060
|
-
"name": "
|
|
6896
|
+
"name": "",
|
|
6061
6897
|
"description": "for label"
|
|
6062
6898
|
},
|
|
6063
6899
|
{
|
|
@@ -6067,10 +6903,6 @@
|
|
|
6067
6903
|
{
|
|
6068
6904
|
"name": "extra",
|
|
6069
6905
|
"description": "for extra"
|
|
6070
|
-
},
|
|
6071
|
-
{
|
|
6072
|
-
"name": "",
|
|
6073
|
-
"description": "Override the default label"
|
|
6074
6906
|
}
|
|
6075
6907
|
],
|
|
6076
6908
|
"cssProperties": [
|
|
@@ -6174,7 +7006,7 @@
|
|
|
6174
7006
|
],
|
|
6175
7007
|
"slots": [
|
|
6176
7008
|
{
|
|
6177
|
-
"name": "
|
|
7009
|
+
"name": "",
|
|
6178
7010
|
"description": "for label"
|
|
6179
7011
|
},
|
|
6180
7012
|
{
|
|
@@ -6184,10 +7016,6 @@
|
|
|
6184
7016
|
{
|
|
6185
7017
|
"name": "extra",
|
|
6186
7018
|
"description": "for extra"
|
|
6187
|
-
},
|
|
6188
|
-
{
|
|
6189
|
-
"name": "",
|
|
6190
|
-
"description": "Override the default label"
|
|
6191
7019
|
}
|
|
6192
7020
|
],
|
|
6193
7021
|
"cssProperties": [
|
|
@@ -6513,12 +7341,29 @@
|
|
|
6513
7341
|
{
|
|
6514
7342
|
"name": "--uui-textarea-max-height",
|
|
6515
7343
|
"description": "Sets the maximum height of the textarea"
|
|
7344
|
+
},
|
|
7345
|
+
{
|
|
7346
|
+
"name": "--uui-textarea-background-color",
|
|
7347
|
+
"description": "Sets the background color of the textarea",
|
|
7348
|
+
"type": "color"
|
|
6516
7349
|
}
|
|
6517
7350
|
]
|
|
6518
7351
|
},
|
|
6519
7352
|
{
|
|
6520
7353
|
"name": "uui-toast-notification-container",
|
|
6521
7354
|
"path": "./../uui-toast-notification-container/lib/uui-toast-notification-container.element.ts",
|
|
7355
|
+
"attributes": [
|
|
7356
|
+
{
|
|
7357
|
+
"name": "bottom-up",
|
|
7358
|
+
"description": "set the toast container to grow from bottom to top.",
|
|
7359
|
+
"type": "boolean"
|
|
7360
|
+
},
|
|
7361
|
+
{
|
|
7362
|
+
"name": "left-align",
|
|
7363
|
+
"description": "set the toast container to align to the left.",
|
|
7364
|
+
"type": "boolean"
|
|
7365
|
+
}
|
|
7366
|
+
],
|
|
6522
7367
|
"properties": [
|
|
6523
7368
|
{
|
|
6524
7369
|
"name": "styles",
|