le-kit 0.2.6 → 0.3.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.
@@ -105,6 +105,15 @@
105
105
  "default": "false",
106
106
  "description": "Show scroll arrows when overflow is \"scroll\"."
107
107
  },
108
+ {
109
+ "kind": "field",
110
+ "name": "disablePopover",
111
+ "type": {
112
+ "text": "boolean"
113
+ },
114
+ "default": "false",
115
+ "description": "Disable the internal overflow popover.\nWhen true, the bar still detects overflow and hides items,\nbut doesn't render its own popover. Use this when providing\ncustom overflow handling via the leBarOverflowChange event."
116
+ },
108
117
  {
109
118
  "kind": "field",
110
119
  "name": "showAllMenu",
@@ -449,6 +458,15 @@
449
458
  "text": "boolean"
450
459
  }
451
460
  },
461
+ {
462
+ "name": "disable-popover",
463
+ "fieldName": "disablePopover",
464
+ "default": "false",
465
+ "description": "Disable the internal overflow popover.\nWhen true, the bar still detects overflow and hides items,\nbut doesn't render its own popover. Use this when providing\ncustom overflow handling via the leBarOverflowChange event.",
466
+ "type": {
467
+ "text": "boolean"
468
+ }
469
+ },
452
470
  {
453
471
  "name": "show-all-menu",
454
472
  "fieldName": "showAllMenu",
@@ -841,6 +859,139 @@
841
859
  }
842
860
  ]
843
861
  },
862
+ {
863
+ "kind": "javascript-module",
864
+ "path": "src/components/le-card/le-card.tsx",
865
+ "declarations": [
866
+ {
867
+ "kind": "class",
868
+ "description": "A flexible card component with header, content, and footer slots.\n\nThe card uses le-slot wrappers for each slot area. In admin mode,\nle-slot shows placeholders for CMS editing. In default mode,\nle-slot acts as a transparent passthrough.",
869
+ "name": "LeCard",
870
+ "cssProperties": [
871
+ {
872
+ "description": "Card background color",
873
+ "name": "--le-card-bg"
874
+ },
875
+ {
876
+ "description": "Card border radius",
877
+ "name": "--le-card-border-radius"
878
+ },
879
+ {
880
+ "description": "Card box shadow",
881
+ "name": "--le-card-shadow"
882
+ },
883
+ {
884
+ "description": "Card content padding",
885
+ "name": "--le-card-padding"
886
+ }
887
+ ],
888
+ "cssParts": [
889
+ {
890
+ "description": "The main card container",
891
+ "name": "card"
892
+ },
893
+ {
894
+ "description": "The card header section",
895
+ "name": "header"
896
+ },
897
+ {
898
+ "description": "The card content section",
899
+ "name": "content"
900
+ },
901
+ {
902
+ "description": "The card footer section",
903
+ "name": "footer"
904
+ }
905
+ ],
906
+ "slots": [
907
+ {
908
+ "description": "Card header content (title, actions)",
909
+ "name": "header"
910
+ },
911
+ {
912
+ "description": "Default slot for main card content",
913
+ "name": ""
914
+ },
915
+ {
916
+ "description": "Card footer content (buttons, links)",
917
+ "name": "footer"
918
+ }
919
+ ],
920
+ "members": [
921
+ {
922
+ "kind": "field",
923
+ "name": "el",
924
+ "type": {
925
+ "text": "HTMLElement"
926
+ }
927
+ },
928
+ {
929
+ "kind": "field",
930
+ "name": "variant",
931
+ "type": {
932
+ "text": "'default' | 'outlined' | 'elevated'"
933
+ },
934
+ "default": "'default'",
935
+ "description": "Card variant style"
936
+ },
937
+ {
938
+ "kind": "field",
939
+ "name": "interactive",
940
+ "type": {
941
+ "text": "boolean"
942
+ },
943
+ "default": "false",
944
+ "description": "Whether the card is interactive (clickable)"
945
+ },
946
+ {
947
+ "kind": "method",
948
+ "name": "render"
949
+ }
950
+ ],
951
+ "attributes": [
952
+ {
953
+ "name": "variant",
954
+ "fieldName": "variant",
955
+ "default": "'default'",
956
+ "description": "Card variant style",
957
+ "type": {
958
+ "text": "'default' | 'outlined' | 'elevated'"
959
+ }
960
+ },
961
+ {
962
+ "name": "interactive",
963
+ "fieldName": "interactive",
964
+ "default": "false",
965
+ "description": "Whether the card is interactive (clickable)",
966
+ "type": {
967
+ "text": "boolean"
968
+ }
969
+ }
970
+ ],
971
+ "tagName": "le-card",
972
+ "events": [],
973
+ "customElement": true
974
+ }
975
+ ],
976
+ "exports": [
977
+ {
978
+ "kind": "js",
979
+ "name": "LeCard",
980
+ "declaration": {
981
+ "name": "LeCard",
982
+ "module": "src/components/le-card/le-card.tsx"
983
+ }
984
+ },
985
+ {
986
+ "kind": "custom-element-definition",
987
+ "name": "le-card",
988
+ "declaration": {
989
+ "name": "LeCard",
990
+ "module": "src/components/le-card/le-card.tsx"
991
+ }
992
+ }
993
+ ]
994
+ },
844
995
  {
845
996
  "kind": "javascript-module",
846
997
  "path": "src/components/le-box/le-box.tsx",
@@ -1286,38 +1437,32 @@
1286
1437
  },
1287
1438
  {
1288
1439
  "kind": "javascript-module",
1289
- "path": "src/components/le-checkbox/le-checkbox.tsx",
1440
+ "path": "src/components/le-collapse/le-collapse.tsx",
1290
1441
  "declarations": [
1291
1442
  {
1292
1443
  "kind": "class",
1293
- "description": "A checkbox component with support for labels, descriptions, and external IDs.",
1294
- "name": "LeCheckbox",
1444
+ "description": "Animated show/hide wrapper.\n\nSupports height collapse (auto->0) and/or fading.\nCan optionally listen to the nearest `le-header` shrink events.",
1445
+ "name": "LeCollapse",
1295
1446
  "cssProperties": [
1296
1447
  {
1297
- "description": "Size of the checkbox input",
1298
- "name": "--le-checkbox-size"
1299
- },
1300
- {
1301
- "description": "Color of the checkbox when checked",
1302
- "name": "--le-checkbox-color"
1303
- },
1448
+ "description": "Transition duration",
1449
+ "name": "--le-collapse-duration"
1450
+ }
1451
+ ],
1452
+ "cssParts": [
1304
1453
  {
1305
- "description": "Color of the label text",
1306
- "name": "--le-checkbox-label-color"
1454
+ "description": "Collapsible region",
1455
+ "name": "region"
1307
1456
  },
1308
1457
  {
1309
- "description": "Color of the description text",
1310
- "name": "--le-checkbox-desc-color"
1458
+ "description": "Inner content",
1459
+ "name": "content"
1311
1460
  }
1312
1461
  ],
1313
1462
  "slots": [
1314
1463
  {
1315
- "description": "The label text for the checkbox",
1464
+ "description": "Content to animate",
1316
1465
  "name": ""
1317
- },
1318
- {
1319
- "description": "Additional description text displayed below the label",
1320
- "name": "description"
1321
1466
  }
1322
1467
  ],
1323
1468
  "members": [
@@ -1330,49 +1475,80 @@
1330
1475
  },
1331
1476
  {
1332
1477
  "kind": "field",
1333
- "name": "checked",
1478
+ "name": "closed",
1334
1479
  "type": {
1335
1480
  "text": "boolean"
1336
1481
  },
1337
1482
  "default": "false",
1338
- "description": "Whether the checkbox is checked"
1483
+ "description": "Since Stencil boolean props default to `false` when the attribute is missing.\ninstead of `open` defaulting to `true`, using a `closed` prop."
1339
1484
  },
1340
1485
  {
1341
1486
  "kind": "field",
1342
- "name": "disabled",
1487
+ "name": "scrollDown",
1343
1488
  "type": {
1344
1489
  "text": "boolean"
1345
1490
  },
1346
1491
  "default": "false",
1347
- "description": "Whether the checkbox is disabled"
1492
+ "description": "Whether the content should scroll down from the top when open."
1348
1493
  },
1349
1494
  {
1350
1495
  "kind": "field",
1351
- "name": "name",
1496
+ "name": "noFading",
1352
1497
  "type": {
1353
- "text": "string"
1498
+ "text": "boolean"
1354
1499
  },
1355
- "description": "The name of the checkbox input"
1500
+ "default": "false",
1501
+ "description": "Stop fading the content when collapsing/expanding."
1356
1502
  },
1357
1503
  {
1358
1504
  "kind": "field",
1359
- "name": "value",
1505
+ "name": "collapseOnHeaderShrink",
1360
1506
  "type": {
1361
- "text": "string"
1507
+ "text": "boolean"
1362
1508
  },
1363
- "description": "The value of the checkbox input"
1509
+ "default": "false",
1510
+ "description": "If true, collapse/expand based on the nearest header shrink event."
1511
+ },
1512
+ {
1513
+ "kind": "method",
1514
+ "name": "handleHeaderShrink",
1515
+ "parameters": [
1516
+ {
1517
+ "name": "ev",
1518
+ "type": {
1519
+ "text": "Event"
1520
+ }
1521
+ }
1522
+ ],
1523
+ "description": "Handles `leHeaderShrinkChange` events from the `le-header`.\nIn case multiple headers are present, only the nearest one in the DOM tree is used."
1364
1524
  },
1365
1525
  {
1366
1526
  "kind": "field",
1367
- "name": "externalId",
1527
+ "name": "headerShrunk",
1368
1528
  "type": {
1369
- "text": "string"
1529
+ "text": "boolean"
1370
1530
  },
1371
- "description": "External ID for linking with external systems (e.g. database ID, PDF form field ID)"
1531
+ "privacy": "private",
1532
+ "default": "false"
1372
1533
  },
1373
1534
  {
1374
- "kind": "field",
1375
- "name": "handleChange",
1535
+ "kind": "method",
1536
+ "name": "onOpenChange",
1537
+ "privacy": "protected"
1538
+ },
1539
+ {
1540
+ "kind": "method",
1541
+ "name": "onDrivenStateChange",
1542
+ "privacy": "protected"
1543
+ },
1544
+ {
1545
+ "kind": "method",
1546
+ "name": "shouldBeOpen",
1547
+ "privacy": "private"
1548
+ },
1549
+ {
1550
+ "kind": "method",
1551
+ "name": "applyOpenState",
1376
1552
  "privacy": "private"
1377
1553
  },
1378
1554
  {
@@ -1382,136 +1558,100 @@
1382
1558
  ],
1383
1559
  "attributes": [
1384
1560
  {
1385
- "name": "checked",
1386
- "fieldName": "checked",
1561
+ "name": "closed",
1562
+ "fieldName": "closed",
1387
1563
  "default": "false",
1388
- "description": "Whether the checkbox is checked",
1564
+ "description": "Since Stencil boolean props default to `false` when the attribute is missing.\ninstead of `open` defaulting to `true`, using a `closed` prop.",
1389
1565
  "type": {
1390
1566
  "text": "boolean"
1391
1567
  }
1392
1568
  },
1393
1569
  {
1394
- "name": "disabled",
1395
- "fieldName": "disabled",
1570
+ "name": "scroll-down",
1571
+ "fieldName": "scrollDown",
1396
1572
  "default": "false",
1397
- "description": "Whether the checkbox is disabled",
1573
+ "description": "Whether the content should scroll down from the top when open.",
1398
1574
  "type": {
1399
1575
  "text": "boolean"
1400
1576
  }
1401
1577
  },
1402
1578
  {
1403
- "name": "name",
1404
- "fieldName": "name",
1405
- "description": "The name of the checkbox input",
1406
- "type": {
1407
- "text": "string"
1408
- }
1409
- },
1410
- {
1411
- "name": "value",
1412
- "fieldName": "value",
1413
- "description": "The value of the checkbox input",
1579
+ "name": "no-fading",
1580
+ "fieldName": "noFading",
1581
+ "default": "false",
1582
+ "description": "Stop fading the content when collapsing/expanding.",
1414
1583
  "type": {
1415
- "text": "string"
1584
+ "text": "boolean"
1416
1585
  }
1417
1586
  },
1418
1587
  {
1419
- "name": "external-id",
1420
- "fieldName": "externalId",
1421
- "description": "External ID for linking with external systems (e.g. database ID, PDF form field ID)",
1588
+ "name": "collapse-on-header-shrink",
1589
+ "fieldName": "collapseOnHeaderShrink",
1590
+ "default": "false",
1591
+ "description": "If true, collapse/expand based on the nearest header shrink event.",
1422
1592
  "type": {
1423
- "text": "string"
1593
+ "text": "boolean"
1424
1594
  }
1425
1595
  }
1426
1596
  ],
1427
- "tagName": "le-checkbox",
1428
- "events": [
1429
- {
1430
- "name": "change",
1431
- "type": {
1432
- "text": "EventEmitter<{ checked: boolean; value: string; name: string; externalId: string }>"
1433
- },
1434
- "description": "Emitted when the checked state changes"
1435
- }
1436
- ],
1597
+ "tagName": "le-collapse",
1598
+ "events": [],
1437
1599
  "customElement": true
1438
1600
  }
1439
1601
  ],
1440
1602
  "exports": [
1441
1603
  {
1442
1604
  "kind": "js",
1443
- "name": "LeCheckbox",
1605
+ "name": "LeCollapse",
1444
1606
  "declaration": {
1445
- "name": "LeCheckbox",
1446
- "module": "src/components/le-checkbox/le-checkbox.tsx"
1607
+ "name": "LeCollapse",
1608
+ "module": "src/components/le-collapse/le-collapse.tsx"
1447
1609
  }
1448
1610
  },
1449
1611
  {
1450
1612
  "kind": "custom-element-definition",
1451
- "name": "le-checkbox",
1613
+ "name": "le-collapse",
1452
1614
  "declaration": {
1453
- "name": "LeCheckbox",
1454
- "module": "src/components/le-checkbox/le-checkbox.tsx"
1615
+ "name": "LeCollapse",
1616
+ "module": "src/components/le-collapse/le-collapse.tsx"
1455
1617
  }
1456
1618
  }
1457
1619
  ]
1458
1620
  },
1459
1621
  {
1460
1622
  "kind": "javascript-module",
1461
- "path": "src/components/le-card/le-card.tsx",
1623
+ "path": "src/components/le-checkbox/le-checkbox.tsx",
1462
1624
  "declarations": [
1463
1625
  {
1464
1626
  "kind": "class",
1465
- "description": "A flexible card component with header, content, and footer slots.\n\nThe card uses le-slot wrappers for each slot area. In admin mode,\nle-slot shows placeholders for CMS editing. In default mode,\nle-slot acts as a transparent passthrough.",
1466
- "name": "LeCard",
1627
+ "description": "A checkbox component with support for labels, descriptions, and external IDs.",
1628
+ "name": "LeCheckbox",
1467
1629
  "cssProperties": [
1468
1630
  {
1469
- "description": "Card background color",
1470
- "name": "--le-card-bg"
1471
- },
1472
- {
1473
- "description": "Card border radius",
1474
- "name": "--le-card-border-radius"
1475
- },
1476
- {
1477
- "description": "Card box shadow",
1478
- "name": "--le-card-shadow"
1479
- },
1480
- {
1481
- "description": "Card content padding",
1482
- "name": "--le-card-padding"
1483
- }
1484
- ],
1485
- "cssParts": [
1486
- {
1487
- "description": "The main card container",
1488
- "name": "card"
1631
+ "description": "Size of the checkbox input",
1632
+ "name": "--le-checkbox-size"
1489
1633
  },
1490
1634
  {
1491
- "description": "The card header section",
1492
- "name": "header"
1635
+ "description": "Color of the checkbox when checked",
1636
+ "name": "--le-checkbox-color"
1493
1637
  },
1494
1638
  {
1495
- "description": "The card content section",
1496
- "name": "content"
1639
+ "description": "Color of the label text",
1640
+ "name": "--le-checkbox-label-color"
1497
1641
  },
1498
1642
  {
1499
- "description": "The card footer section",
1500
- "name": "footer"
1643
+ "description": "Color of the description text",
1644
+ "name": "--le-checkbox-desc-color"
1501
1645
  }
1502
1646
  ],
1503
1647
  "slots": [
1504
1648
  {
1505
- "description": "Card header content (title, actions)",
1506
- "name": "header"
1507
- },
1508
- {
1509
- "description": "Default slot for main card content",
1649
+ "description": "The label text for the checkbox",
1510
1650
  "name": ""
1511
1651
  },
1512
1652
  {
1513
- "description": "Card footer content (buttons, links)",
1514
- "name": "footer"
1653
+ "description": "Additional description text displayed below the label",
1654
+ "name": "description"
1515
1655
  }
1516
1656
  ],
1517
1657
  "members": [
@@ -1524,21 +1664,50 @@
1524
1664
  },
1525
1665
  {
1526
1666
  "kind": "field",
1527
- "name": "variant",
1667
+ "name": "checked",
1528
1668
  "type": {
1529
- "text": "'default' | 'outlined' | 'elevated'"
1669
+ "text": "boolean"
1530
1670
  },
1531
- "default": "'default'",
1532
- "description": "Card variant style"
1671
+ "default": "false",
1672
+ "description": "Whether the checkbox is checked"
1533
1673
  },
1534
1674
  {
1535
1675
  "kind": "field",
1536
- "name": "interactive",
1676
+ "name": "disabled",
1537
1677
  "type": {
1538
1678
  "text": "boolean"
1539
1679
  },
1540
1680
  "default": "false",
1541
- "description": "Whether the card is interactive (clickable)"
1681
+ "description": "Whether the checkbox is disabled"
1682
+ },
1683
+ {
1684
+ "kind": "field",
1685
+ "name": "name",
1686
+ "type": {
1687
+ "text": "string"
1688
+ },
1689
+ "description": "The name of the checkbox input"
1690
+ },
1691
+ {
1692
+ "kind": "field",
1693
+ "name": "value",
1694
+ "type": {
1695
+ "text": "string"
1696
+ },
1697
+ "description": "The value of the checkbox input"
1698
+ },
1699
+ {
1700
+ "kind": "field",
1701
+ "name": "externalId",
1702
+ "type": {
1703
+ "text": "string"
1704
+ },
1705
+ "description": "External ID for linking with external systems (e.g. database ID, PDF form field ID)"
1706
+ },
1707
+ {
1708
+ "kind": "field",
1709
+ "name": "handleChange",
1710
+ "privacy": "private"
1542
1711
  },
1543
1712
  {
1544
1713
  "kind": "method",
@@ -1547,44 +1716,76 @@
1547
1716
  ],
1548
1717
  "attributes": [
1549
1718
  {
1550
- "name": "variant",
1551
- "fieldName": "variant",
1552
- "default": "'default'",
1553
- "description": "Card variant style",
1719
+ "name": "checked",
1720
+ "fieldName": "checked",
1721
+ "default": "false",
1722
+ "description": "Whether the checkbox is checked",
1554
1723
  "type": {
1555
- "text": "'default' | 'outlined' | 'elevated'"
1724
+ "text": "boolean"
1556
1725
  }
1557
1726
  },
1558
1727
  {
1559
- "name": "interactive",
1560
- "fieldName": "interactive",
1728
+ "name": "disabled",
1729
+ "fieldName": "disabled",
1561
1730
  "default": "false",
1562
- "description": "Whether the card is interactive (clickable)",
1731
+ "description": "Whether the checkbox is disabled",
1563
1732
  "type": {
1564
1733
  "text": "boolean"
1565
1734
  }
1735
+ },
1736
+ {
1737
+ "name": "name",
1738
+ "fieldName": "name",
1739
+ "description": "The name of the checkbox input",
1740
+ "type": {
1741
+ "text": "string"
1742
+ }
1743
+ },
1744
+ {
1745
+ "name": "value",
1746
+ "fieldName": "value",
1747
+ "description": "The value of the checkbox input",
1748
+ "type": {
1749
+ "text": "string"
1750
+ }
1751
+ },
1752
+ {
1753
+ "name": "external-id",
1754
+ "fieldName": "externalId",
1755
+ "description": "External ID for linking with external systems (e.g. database ID, PDF form field ID)",
1756
+ "type": {
1757
+ "text": "string"
1758
+ }
1759
+ }
1760
+ ],
1761
+ "tagName": "le-checkbox",
1762
+ "events": [
1763
+ {
1764
+ "name": "change",
1765
+ "type": {
1766
+ "text": "EventEmitter<{ checked: boolean; value: string; name: string; externalId: string }>"
1767
+ },
1768
+ "description": "Emitted when the checked state changes"
1566
1769
  }
1567
1770
  ],
1568
- "tagName": "le-card",
1569
- "events": [],
1570
1771
  "customElement": true
1571
1772
  }
1572
1773
  ],
1573
1774
  "exports": [
1574
1775
  {
1575
1776
  "kind": "js",
1576
- "name": "LeCard",
1777
+ "name": "LeCheckbox",
1577
1778
  "declaration": {
1578
- "name": "LeCard",
1579
- "module": "src/components/le-card/le-card.tsx"
1779
+ "name": "LeCheckbox",
1780
+ "module": "src/components/le-checkbox/le-checkbox.tsx"
1580
1781
  }
1581
1782
  },
1582
1783
  {
1583
1784
  "kind": "custom-element-definition",
1584
- "name": "le-card",
1785
+ "name": "le-checkbox",
1585
1786
  "declaration": {
1586
- "name": "LeCard",
1587
- "module": "src/components/le-card/le-card.tsx"
1787
+ "name": "LeCheckbox",
1788
+ "module": "src/components/le-checkbox/le-checkbox.tsx"
1588
1789
  }
1589
1790
  }
1590
1791
  ]
@@ -2298,189 +2499,6 @@
2298
2499
  }
2299
2500
  ]
2300
2501
  },
2301
- {
2302
- "kind": "javascript-module",
2303
- "path": "src/components/le-collapse/le-collapse.tsx",
2304
- "declarations": [
2305
- {
2306
- "kind": "class",
2307
- "description": "Animated show/hide wrapper.\n\nSupports height collapse (auto->0) and/or fading.\nCan optionally listen to the nearest `le-header` shrink events.",
2308
- "name": "LeCollapse",
2309
- "cssProperties": [
2310
- {
2311
- "description": "Transition duration",
2312
- "name": "--le-collapse-duration"
2313
- }
2314
- ],
2315
- "cssParts": [
2316
- {
2317
- "description": "Collapsible region",
2318
- "name": "region"
2319
- },
2320
- {
2321
- "description": "Inner content",
2322
- "name": "content"
2323
- }
2324
- ],
2325
- "slots": [
2326
- {
2327
- "description": "Content to animate",
2328
- "name": ""
2329
- }
2330
- ],
2331
- "members": [
2332
- {
2333
- "kind": "field",
2334
- "name": "el",
2335
- "type": {
2336
- "text": "HTMLElement"
2337
- }
2338
- },
2339
- {
2340
- "kind": "field",
2341
- "name": "closed",
2342
- "type": {
2343
- "text": "boolean"
2344
- },
2345
- "default": "false",
2346
- "description": "Since Stencil boolean props default to `false` when the attribute is missing.\ninstead of `open` defaulting to `true`, using a `closed` prop."
2347
- },
2348
- {
2349
- "kind": "field",
2350
- "name": "scrollDown",
2351
- "type": {
2352
- "text": "boolean"
2353
- },
2354
- "default": "false",
2355
- "description": "Whether the content should scroll down from the top when open."
2356
- },
2357
- {
2358
- "kind": "field",
2359
- "name": "noFading",
2360
- "type": {
2361
- "text": "boolean"
2362
- },
2363
- "default": "false",
2364
- "description": "Stop fading the content when collapsing/expanding."
2365
- },
2366
- {
2367
- "kind": "field",
2368
- "name": "collapseOnHeaderShrink",
2369
- "type": {
2370
- "text": "boolean"
2371
- },
2372
- "default": "false",
2373
- "description": "If true, collapse/expand based on the nearest header shrink event."
2374
- },
2375
- {
2376
- "kind": "method",
2377
- "name": "handleHeaderShrink",
2378
- "parameters": [
2379
- {
2380
- "name": "ev",
2381
- "type": {
2382
- "text": "Event"
2383
- }
2384
- }
2385
- ],
2386
- "description": "Handles `leHeaderShrinkChange` events from the `le-header`.\nIn case multiple headers are present, only the nearest one in the DOM tree is used."
2387
- },
2388
- {
2389
- "kind": "field",
2390
- "name": "headerShrunk",
2391
- "type": {
2392
- "text": "boolean"
2393
- },
2394
- "privacy": "private",
2395
- "default": "false"
2396
- },
2397
- {
2398
- "kind": "method",
2399
- "name": "onOpenChange",
2400
- "privacy": "protected"
2401
- },
2402
- {
2403
- "kind": "method",
2404
- "name": "onDrivenStateChange",
2405
- "privacy": "protected"
2406
- },
2407
- {
2408
- "kind": "method",
2409
- "name": "shouldBeOpen",
2410
- "privacy": "private"
2411
- },
2412
- {
2413
- "kind": "method",
2414
- "name": "applyOpenState",
2415
- "privacy": "private"
2416
- },
2417
- {
2418
- "kind": "method",
2419
- "name": "render"
2420
- }
2421
- ],
2422
- "attributes": [
2423
- {
2424
- "name": "closed",
2425
- "fieldName": "closed",
2426
- "default": "false",
2427
- "description": "Since Stencil boolean props default to `false` when the attribute is missing.\ninstead of `open` defaulting to `true`, using a `closed` prop.",
2428
- "type": {
2429
- "text": "boolean"
2430
- }
2431
- },
2432
- {
2433
- "name": "scroll-down",
2434
- "fieldName": "scrollDown",
2435
- "default": "false",
2436
- "description": "Whether the content should scroll down from the top when open.",
2437
- "type": {
2438
- "text": "boolean"
2439
- }
2440
- },
2441
- {
2442
- "name": "no-fading",
2443
- "fieldName": "noFading",
2444
- "default": "false",
2445
- "description": "Stop fading the content when collapsing/expanding.",
2446
- "type": {
2447
- "text": "boolean"
2448
- }
2449
- },
2450
- {
2451
- "name": "collapse-on-header-shrink",
2452
- "fieldName": "collapseOnHeaderShrink",
2453
- "default": "false",
2454
- "description": "If true, collapse/expand based on the nearest header shrink event.",
2455
- "type": {
2456
- "text": "boolean"
2457
- }
2458
- }
2459
- ],
2460
- "tagName": "le-collapse",
2461
- "events": [],
2462
- "customElement": true
2463
- }
2464
- ],
2465
- "exports": [
2466
- {
2467
- "kind": "js",
2468
- "name": "LeCollapse",
2469
- "declaration": {
2470
- "name": "LeCollapse",
2471
- "module": "src/components/le-collapse/le-collapse.tsx"
2472
- }
2473
- },
2474
- {
2475
- "kind": "custom-element-definition",
2476
- "name": "le-collapse",
2477
- "declaration": {
2478
- "name": "LeCollapse",
2479
- "module": "src/components/le-collapse/le-collapse.tsx"
2480
- }
2481
- }
2482
- ]
2483
- },
2484
2502
  {
2485
2503
  "kind": "javascript-module",
2486
2504
  "path": "src/components/le-current-heading/le-current-heading.tsx",