@bitrix24/b24ui-nuxt 0.2.1 → 0.2.2
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/.nuxt/b24ui/dropdown-menu.ts +235 -0
- package/.nuxt/b24ui/index.ts +1 -0
- package/.nuxt/b24ui.css +2 -0
- package/dist/meta.cjs +6800 -121
- package/dist/meta.d.cts +6800 -121
- package/dist/meta.d.mts +6800 -121
- package/dist/meta.d.ts +6800 -121
- package/dist/meta.mjs +6800 -121
- package/dist/module.cjs +1 -1
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/components/DropdownMenu.vue +135 -0
- package/dist/runtime/components/DropdownMenuContent.vue +182 -0
- package/dist/runtime/index.css +1 -1
- package/dist/runtime/types/index.d.ts +1 -0
- package/dist/runtime/types/index.js +1 -0
- package/dist/runtime/vue/components/Link.vue +1 -0
- package/dist/shared/{b24ui-nuxt.CrjojW8t.mjs → b24ui-nuxt.CYvh5VlN.mjs} +361 -0
- package/dist/shared/{b24ui-nuxt.D5cXbZSx.cjs → b24ui-nuxt.DgnM0VWe.cjs} +361 -0
- package/dist/unplugin.cjs +1 -1
- package/dist/unplugin.mjs +1 -1
- package/dist/vite.cjs +1 -1
- package/dist/vite.mjs +1 -1
- package/package.json +7 -5
|
@@ -1597,6 +1597,359 @@ const countdown = {
|
|
|
1597
1597
|
}
|
|
1598
1598
|
};
|
|
1599
1599
|
|
|
1600
|
+
const dropdownMenu = {
|
|
1601
|
+
slots: {
|
|
1602
|
+
content: [
|
|
1603
|
+
"min-w-32",
|
|
1604
|
+
"bg-white dark:bg-base-dark",
|
|
1605
|
+
"shadow-lg rounded-2xs ring ring-base-300 dark:ring-base-800",
|
|
1606
|
+
"overflow-y-auto",
|
|
1607
|
+
"data-[state=open]:animate-[scale-in_100ms_ease-out] data-[state=closed]:animate-[scale-out_100ms_ease-in]",
|
|
1608
|
+
"divide-y divide-base-master/10 dark:divide-base-100/20 scroll-py-1",
|
|
1609
|
+
"pointer-events-auto"
|
|
1610
|
+
].join(" "),
|
|
1611
|
+
arrow: "fill-base-master/10 dark:fill-base-100/20",
|
|
1612
|
+
group: "p-1 isolate",
|
|
1613
|
+
label: [
|
|
1614
|
+
"w-full flex items-center",
|
|
1615
|
+
"font-semibold text-base-900 dark:text-base-200"
|
|
1616
|
+
].join(" "),
|
|
1617
|
+
separator: "-mx-1 my-1 h-px bg-base-master/10 dark:bg-base-100/20",
|
|
1618
|
+
item: [
|
|
1619
|
+
"group relative w-full flex items-center select-none outline-none",
|
|
1620
|
+
"before:absolute before:z-[-1] before:inset-px before:rounded-2xs",
|
|
1621
|
+
"cursor-pointer",
|
|
1622
|
+
"data-disabled:cursor-not-allowed data-disabled:opacity-75",
|
|
1623
|
+
"text-base-master dark:text-base-150",
|
|
1624
|
+
"data-highlighted:text-base-900 dark:data-highlighted:text-base-200 data-highlighted:before:bg-base-100/50 dark:data-highlighted:before:bg-base-900",
|
|
1625
|
+
// 'data-[state=checked]:text-base-900 dark:data-[state=checked]:text-base-200 data-[state=checked]:before:bg-base-100/50 dark:data-[state=checked]:before:bg-base-900',
|
|
1626
|
+
"transition-colors before:transition-colors"
|
|
1627
|
+
].join(" "),
|
|
1628
|
+
itemLeadingIcon: [
|
|
1629
|
+
"shrink-0 text-base-500 dark:text-base-700",
|
|
1630
|
+
"group-data-highlighted:text-base-master dark:group-data-highlighted:text-base-150",
|
|
1631
|
+
"group-data-[state=checked]:text-base-master dark:group-data-[state=checked]:text-base-150",
|
|
1632
|
+
"transition-colors"
|
|
1633
|
+
].join(" "),
|
|
1634
|
+
itemLeadingAvatar: "shrink-0",
|
|
1635
|
+
itemLeadingAvatarSize: "",
|
|
1636
|
+
itemTrailing: "ms-auto inline-flex gap-1.5 items-center",
|
|
1637
|
+
itemTrailingIcon: "shrink-0",
|
|
1638
|
+
itemTrailingKbds: "hidden lg:inline-flex items-center shrink-0",
|
|
1639
|
+
itemTrailingKbdsSize: "",
|
|
1640
|
+
itemLabel: "truncate",
|
|
1641
|
+
itemLabelExternalIcon: "inline-block size-3 align-top text-base-500 dark:text-base-700"
|
|
1642
|
+
},
|
|
1643
|
+
variants: {
|
|
1644
|
+
color: {
|
|
1645
|
+
default: "",
|
|
1646
|
+
danger: "",
|
|
1647
|
+
success: "",
|
|
1648
|
+
warning: "",
|
|
1649
|
+
primary: "",
|
|
1650
|
+
secondary: "",
|
|
1651
|
+
collab: "",
|
|
1652
|
+
ai: ""
|
|
1653
|
+
},
|
|
1654
|
+
active: {
|
|
1655
|
+
false: {
|
|
1656
|
+
item: [
|
|
1657
|
+
"text-base-master data-highlighted:text-base-900 data-highlighted:before:bg-base-100/50 data-[state=open]:text-base-900 data-[state=open]:before:bg-base-100/50",
|
|
1658
|
+
"dark:text-base-150 dark:data-highlighted:text-base-200 dark:data-highlighted:before:bg-base-900 dark:data-[state=open]:text-base-200 dark:data-[state=open]:before:bg-base-900",
|
|
1659
|
+
"transition-colors before:transition-colors"
|
|
1660
|
+
].join(" "),
|
|
1661
|
+
itemLeadingIcon: [
|
|
1662
|
+
"text-base-500 group-data-highlighted:text-base-master group-data-[state=open]:text-base-master",
|
|
1663
|
+
"dark:text-base-700 dark:group-data-highlighted:text-base-150 dark:group-data-[state=open]:text-base-150",
|
|
1664
|
+
"transition-colors"
|
|
1665
|
+
].join(" ")
|
|
1666
|
+
},
|
|
1667
|
+
true: {
|
|
1668
|
+
item: [
|
|
1669
|
+
"text-base-900 before:bg-base-100/50",
|
|
1670
|
+
"dark:text-base-200 dark:before:bg-base-900"
|
|
1671
|
+
].join(" "),
|
|
1672
|
+
itemLeadingIcon: [
|
|
1673
|
+
"text-base-master group-data-[state=open]:text-base-master",
|
|
1674
|
+
"dark:text-base-700"
|
|
1675
|
+
].join(" ")
|
|
1676
|
+
}
|
|
1677
|
+
},
|
|
1678
|
+
loading: {
|
|
1679
|
+
true: {
|
|
1680
|
+
itemLeadingIcon: "animate-spin"
|
|
1681
|
+
}
|
|
1682
|
+
},
|
|
1683
|
+
size: {
|
|
1684
|
+
xs: {
|
|
1685
|
+
label: "p-1 text-xs gap-1",
|
|
1686
|
+
item: "p-1 text-xs gap-1",
|
|
1687
|
+
itemLeadingIcon: "size-4",
|
|
1688
|
+
itemLeadingAvatarSize: "3xs",
|
|
1689
|
+
itemTrailingIcon: "size-4",
|
|
1690
|
+
itemTrailingKbds: "gap-0.5",
|
|
1691
|
+
itemTrailingKbdsSize: "sm"
|
|
1692
|
+
},
|
|
1693
|
+
sm: {
|
|
1694
|
+
label: "p-1.5 text-xs gap-1.5",
|
|
1695
|
+
item: "p-1.5 text-xs gap-1.5",
|
|
1696
|
+
itemLeadingIcon: "size-4",
|
|
1697
|
+
itemLeadingAvatarSize: "3xs",
|
|
1698
|
+
itemTrailingIcon: "size-4",
|
|
1699
|
+
itemTrailingKbds: "gap-0.5",
|
|
1700
|
+
itemTrailingKbdsSize: "sm"
|
|
1701
|
+
},
|
|
1702
|
+
md: {
|
|
1703
|
+
label: "h-9 ps-2 pe-3 text-sm gap-2",
|
|
1704
|
+
item: "h-9 ps-3 pe-3 text-sm gap-2",
|
|
1705
|
+
itemLeadingIcon: "size-5",
|
|
1706
|
+
itemLeadingAvatarSize: "2xs",
|
|
1707
|
+
itemTrailingIcon: "size-3",
|
|
1708
|
+
itemTrailingKbds: "gap-0.5",
|
|
1709
|
+
itemTrailingKbdsSize: "md"
|
|
1710
|
+
},
|
|
1711
|
+
lg: {
|
|
1712
|
+
label: "p-2 text-sm gap-2",
|
|
1713
|
+
item: "p-2 text-sm gap-2",
|
|
1714
|
+
itemLeadingIcon: "size-5",
|
|
1715
|
+
itemLeadingAvatarSize: "2xs",
|
|
1716
|
+
itemTrailingIcon: "size-5",
|
|
1717
|
+
itemTrailingKbds: "gap-1",
|
|
1718
|
+
itemTrailingKbdsSize: "md"
|
|
1719
|
+
}
|
|
1720
|
+
}
|
|
1721
|
+
},
|
|
1722
|
+
compoundVariants: [
|
|
1723
|
+
{
|
|
1724
|
+
color: "default",
|
|
1725
|
+
active: false,
|
|
1726
|
+
class: {
|
|
1727
|
+
item: [
|
|
1728
|
+
"text-base-master data-highlighted:text-base-900 data-highlighted:before:bg-base-100/50 data-[state=open]:text-base-900 data-[state=open]:before:bg-base-100/50",
|
|
1729
|
+
"dark:text-base-150 dark:data-highlighted:text-base-200 dark:data-highlighted:before:bg-base-900 dark:data-[state=open]:text-base-200 dark:data-[state=open]:before:bg-base-900"
|
|
1730
|
+
].join(" "),
|
|
1731
|
+
itemLeadingIcon: [
|
|
1732
|
+
"text-base-500 group-data-highlighted:text-base-master group-data-[state=open]:text-base-master",
|
|
1733
|
+
"dark:text-base-700 dark:group-data-highlighted:text-base-150 dark:group-data-[state=open]:text-base-150"
|
|
1734
|
+
].join(" ")
|
|
1735
|
+
}
|
|
1736
|
+
},
|
|
1737
|
+
{
|
|
1738
|
+
color: "default",
|
|
1739
|
+
active: true,
|
|
1740
|
+
class: {
|
|
1741
|
+
item: [
|
|
1742
|
+
"text-base-900 before:bg-base-100/50",
|
|
1743
|
+
"dark:text-base-200 dark:before:bg-base-900"
|
|
1744
|
+
].join(" "),
|
|
1745
|
+
itemLeadingIcon: [
|
|
1746
|
+
"text-base-master group-data-[state=open]:text-base-master",
|
|
1747
|
+
"dark:text-base-700"
|
|
1748
|
+
].join(" ")
|
|
1749
|
+
}
|
|
1750
|
+
},
|
|
1751
|
+
{
|
|
1752
|
+
color: "danger",
|
|
1753
|
+
active: false,
|
|
1754
|
+
class: {
|
|
1755
|
+
item: [
|
|
1756
|
+
"text-red-950 data-highlighted:text-red-900 data-highlighted:before:bg-red-100 data-[state=open]:text-red-900 data-[state=open]:before:bg-red-100",
|
|
1757
|
+
"dark:text-red-150 dark:data-highlighted:text-red-200 dark:data-highlighted:before:bg-red-900 dark:data-[state=open]:text-red-200 dark:data-[state=open]:before:bg-red-900"
|
|
1758
|
+
].join(" "),
|
|
1759
|
+
itemLeadingIcon: [
|
|
1760
|
+
"text-red-500 group-data-highlighted:text-red-950 group-data-[state=open]:text-red-950",
|
|
1761
|
+
"dark:text-red-700 dark:group-data-highlighted:text-red-150 dark:group-data-[state=open]:text-red-150"
|
|
1762
|
+
].join(" ")
|
|
1763
|
+
}
|
|
1764
|
+
},
|
|
1765
|
+
{
|
|
1766
|
+
color: "danger",
|
|
1767
|
+
active: true,
|
|
1768
|
+
class: {
|
|
1769
|
+
item: [
|
|
1770
|
+
"text-red-900 before:bg-red-100",
|
|
1771
|
+
"dark:text-red-200 dark:before:bg-red-900"
|
|
1772
|
+
].join(" "),
|
|
1773
|
+
itemLeadingIcon: [
|
|
1774
|
+
"text-red-950 group-data-[state=open]:text-red-950",
|
|
1775
|
+
"dark:text-red-700"
|
|
1776
|
+
].join(" ")
|
|
1777
|
+
}
|
|
1778
|
+
},
|
|
1779
|
+
{
|
|
1780
|
+
color: "success",
|
|
1781
|
+
active: false,
|
|
1782
|
+
class: {
|
|
1783
|
+
item: [
|
|
1784
|
+
"text-green-950 data-highlighted:text-green-900 data-highlighted:before:bg-green-100 data-[state=open]:text-green-900 data-[state=open]:before:bg-green-100",
|
|
1785
|
+
"dark:text-green-150 dark:data-highlighted:text-green-200 dark:data-highlighted:before:bg-green-900 dark:data-[state=open]:text-green-200 dark:data-[state=open]:before:bg-green-900"
|
|
1786
|
+
].join(" "),
|
|
1787
|
+
itemLeadingIcon: [
|
|
1788
|
+
"text-green-500 group-data-highlighted:text-green-950 group-data-[state=open]:text-green-950",
|
|
1789
|
+
"dark:text-green-700 dark:group-data-highlighted:text-green-150 dark:group-data-[state=open]:text-green-150"
|
|
1790
|
+
].join(" ")
|
|
1791
|
+
}
|
|
1792
|
+
},
|
|
1793
|
+
{
|
|
1794
|
+
color: "success",
|
|
1795
|
+
active: true,
|
|
1796
|
+
class: {
|
|
1797
|
+
item: [
|
|
1798
|
+
"text-green-900 before:bg-green-100",
|
|
1799
|
+
"dark:text-green-200 dark:before:bg-green-900"
|
|
1800
|
+
].join(" "),
|
|
1801
|
+
itemLeadingIcon: [
|
|
1802
|
+
"text-green-950 group-data-[state=open]:text-green-950",
|
|
1803
|
+
"dark:text-green-700"
|
|
1804
|
+
].join(" ")
|
|
1805
|
+
}
|
|
1806
|
+
},
|
|
1807
|
+
{
|
|
1808
|
+
color: "warning",
|
|
1809
|
+
active: false,
|
|
1810
|
+
class: {
|
|
1811
|
+
item: [
|
|
1812
|
+
"text-orange-950 data-highlighted:text-orange-900 data-highlighted:before:bg-orange-100 data-[state=open]:text-orange-900 data-[state=open]:before:bg-orange-100",
|
|
1813
|
+
"dark:text-orange-150 dark:data-highlighted:text-orange-200 dark:data-highlighted:before:bg-orange-900 dark:data-[state=open]:text-orange-200 dark:data-[state=open]:before:bg-orange-900"
|
|
1814
|
+
].join(" "),
|
|
1815
|
+
itemLeadingIcon: [
|
|
1816
|
+
"text-orange-500 group-data-highlighted:text-orange-950 group-data-[state=open]:text-orange-950",
|
|
1817
|
+
"dark:text-orange-700 dark:group-data-highlighted:text-orange-150 dark:group-data-[state=open]:text-orange-150"
|
|
1818
|
+
].join(" ")
|
|
1819
|
+
}
|
|
1820
|
+
},
|
|
1821
|
+
{
|
|
1822
|
+
color: "warning",
|
|
1823
|
+
active: true,
|
|
1824
|
+
class: {
|
|
1825
|
+
item: [
|
|
1826
|
+
"text-orange-900 before:bg-orange-100",
|
|
1827
|
+
"dark:text-orange-200 dark:before:bg-orange-900"
|
|
1828
|
+
].join(" "),
|
|
1829
|
+
itemLeadingIcon: [
|
|
1830
|
+
"text-orange-950 group-data-[state=open]:text-orange-950",
|
|
1831
|
+
"dark:text-orange-700"
|
|
1832
|
+
].join(" ")
|
|
1833
|
+
}
|
|
1834
|
+
},
|
|
1835
|
+
{
|
|
1836
|
+
color: "primary",
|
|
1837
|
+
active: false,
|
|
1838
|
+
class: {
|
|
1839
|
+
item: [
|
|
1840
|
+
"text-blue-950 data-highlighted:text-blue-900 data-highlighted:before:bg-blue-100 data-[state=open]:text-blue-900 data-[state=open]:before:bg-blue-100",
|
|
1841
|
+
"dark:text-blue-150 dark:data-highlighted:text-blue-200 dark:data-highlighted:before:bg-blue-900 dark:data-[state=open]:text-blue-200 dark:data-[state=open]:before:bg-blue-900"
|
|
1842
|
+
].join(" "),
|
|
1843
|
+
itemLeadingIcon: [
|
|
1844
|
+
"text-blue-500 group-data-highlighted:text-blue-950 group-data-[state=open]:text-blue-950",
|
|
1845
|
+
"dark:text-blue-700 dark:group-data-highlighted:text-blue-150 dark:group-data-[state=open]:text-blue-150"
|
|
1846
|
+
].join(" ")
|
|
1847
|
+
}
|
|
1848
|
+
},
|
|
1849
|
+
{
|
|
1850
|
+
color: "primary",
|
|
1851
|
+
active: true,
|
|
1852
|
+
class: {
|
|
1853
|
+
item: [
|
|
1854
|
+
"text-blue-900 before:bg-blue-100",
|
|
1855
|
+
"dark:text-blue-200 dark:before:bg-blue-900"
|
|
1856
|
+
].join(" "),
|
|
1857
|
+
itemLeadingIcon: [
|
|
1858
|
+
"text-blue-950 group-data-[state=open]:text-blue-950",
|
|
1859
|
+
"dark:text-blue-700"
|
|
1860
|
+
].join(" ")
|
|
1861
|
+
}
|
|
1862
|
+
},
|
|
1863
|
+
{
|
|
1864
|
+
color: "secondary",
|
|
1865
|
+
active: false,
|
|
1866
|
+
class: {
|
|
1867
|
+
item: [
|
|
1868
|
+
"text-cyan-950 data-highlighted:text-cyan-900 data-highlighted:before:bg-cyan-100/50 data-[state=open]:text-cyan-900 data-[state=open]:before:bg-cyan-100/50",
|
|
1869
|
+
"dark:text-cyan-150 dark:data-highlighted:text-cyan-200 dark:data-highlighted:before:bg-cyan-900 dark:data-[state=open]:text-cyan-200 dark:data-[state=open]:before:bg-cyan-900"
|
|
1870
|
+
].join(" "),
|
|
1871
|
+
itemLeadingIcon: [
|
|
1872
|
+
"text-cyan-500 group-data-highlighted:text-cyan-950 group-data-[state=open]:text-cyan-950",
|
|
1873
|
+
"dark:text-cyan-700 dark:group-data-highlighted:text-cyan-150 dark:group-data-[state=open]:text-cyan-150"
|
|
1874
|
+
].join(" ")
|
|
1875
|
+
}
|
|
1876
|
+
},
|
|
1877
|
+
{
|
|
1878
|
+
color: "secondary",
|
|
1879
|
+
active: true,
|
|
1880
|
+
class: {
|
|
1881
|
+
item: [
|
|
1882
|
+
"text-cyan-900 before:bg-cyan-100/50",
|
|
1883
|
+
"dark:text-cyan-200 dark:before:bg-cyan-900"
|
|
1884
|
+
].join(" "),
|
|
1885
|
+
itemLeadingIcon: [
|
|
1886
|
+
"text-cyan-950 group-data-[state=open]:text-cyan-950",
|
|
1887
|
+
"dark:text-cyan-700"
|
|
1888
|
+
].join(" ")
|
|
1889
|
+
}
|
|
1890
|
+
},
|
|
1891
|
+
{
|
|
1892
|
+
color: "collab",
|
|
1893
|
+
active: false,
|
|
1894
|
+
class: {
|
|
1895
|
+
item: [
|
|
1896
|
+
"text-collab-950 data-highlighted:text-collab-900 data-highlighted:before:bg-collab-100 data-[state=open]:text-collab-900 data-[state=open]:before:bg-collab-100",
|
|
1897
|
+
"dark:text-collab-150 dark:data-highlighted:text-collab-200 dark:data-highlighted:before:bg-collab-900 dark:data-[state=open]:text-collab-200 dark:data-[state=open]:before:bg-collab-900"
|
|
1898
|
+
].join(" "),
|
|
1899
|
+
itemLeadingIcon: [
|
|
1900
|
+
"text-collab-500 group-data-highlighted:text-collab-950 group-data-[state=open]:text-collab-950",
|
|
1901
|
+
"dark:text-collab-700 dark:group-data-highlighted:text-collab-150 dark:group-data-[state=open]:text-collab-150"
|
|
1902
|
+
].join(" ")
|
|
1903
|
+
}
|
|
1904
|
+
},
|
|
1905
|
+
{
|
|
1906
|
+
color: "collab",
|
|
1907
|
+
active: true,
|
|
1908
|
+
class: {
|
|
1909
|
+
item: [
|
|
1910
|
+
"text-collab-900 before:bg-collab-100",
|
|
1911
|
+
"dark:text-collab-200 dark:before:bg-collab-900"
|
|
1912
|
+
].join(" "),
|
|
1913
|
+
itemLeadingIcon: [
|
|
1914
|
+
"text-collab-950 group-data-[state=open]:text-collab-950",
|
|
1915
|
+
"dark:text-collab-700"
|
|
1916
|
+
].join(" ")
|
|
1917
|
+
}
|
|
1918
|
+
},
|
|
1919
|
+
{
|
|
1920
|
+
color: "ai",
|
|
1921
|
+
active: false,
|
|
1922
|
+
class: {
|
|
1923
|
+
item: [
|
|
1924
|
+
"text-ai-950 data-highlighted:text-ai-900 data-highlighted:before:bg-ai-100/50 data-[state=open]:text-ai-900 data-[state=open]:before:bg-ai-100/50",
|
|
1925
|
+
"dark:text-ai-150 dark:data-highlighted:text-ai-200 dark:data-highlighted:before:bg-ai-900 dark:data-[state=open]:text-ai-200 dark:data-[state=open]:before:bg-ai-900"
|
|
1926
|
+
].join(" "),
|
|
1927
|
+
itemLeadingIcon: [
|
|
1928
|
+
"text-ai-500 group-data-highlighted:text-ai-950 group-data-[state=open]:text-ai-950",
|
|
1929
|
+
"dark:text-ai-700 dark:group-data-highlighted:text-ai-150 dark:group-data-[state=open]:text-ai-150"
|
|
1930
|
+
].join(" ")
|
|
1931
|
+
}
|
|
1932
|
+
},
|
|
1933
|
+
{
|
|
1934
|
+
color: "ai",
|
|
1935
|
+
active: true,
|
|
1936
|
+
class: {
|
|
1937
|
+
item: [
|
|
1938
|
+
"text-ai-900 before:bg-ai-100/50",
|
|
1939
|
+
"dark:text-ai-200 dark:before:bg-ai-900"
|
|
1940
|
+
].join(" "),
|
|
1941
|
+
itemLeadingIcon: [
|
|
1942
|
+
"text-ai-950 group-data-[state=open]:text-ai-950",
|
|
1943
|
+
"dark:text-ai-700"
|
|
1944
|
+
].join(" ")
|
|
1945
|
+
}
|
|
1946
|
+
}
|
|
1947
|
+
],
|
|
1948
|
+
defaultVariants: {
|
|
1949
|
+
size: "md"
|
|
1950
|
+
}
|
|
1951
|
+
};
|
|
1952
|
+
|
|
1600
1953
|
const form = {
|
|
1601
1954
|
base: ""
|
|
1602
1955
|
};
|
|
@@ -4145,6 +4498,7 @@ const theme = {
|
|
|
4145
4498
|
chip: chip,
|
|
4146
4499
|
container: container,
|
|
4147
4500
|
countdown: countdown,
|
|
4501
|
+
dropdownMenu: dropdownMenu,
|
|
4148
4502
|
form: form,
|
|
4149
4503
|
formField: formField,
|
|
4150
4504
|
input: input,
|
|
@@ -4332,6 +4686,13 @@ function getTemplates(options) {
|
|
|
4332
4686
|
}
|
|
4333
4687
|
});
|
|
4334
4688
|
}
|
|
4689
|
+
templates.push({
|
|
4690
|
+
filename: "b24ui.css",
|
|
4691
|
+
write: true,
|
|
4692
|
+
getContents: () => `@theme default {
|
|
4693
|
+
}
|
|
4694
|
+
`
|
|
4695
|
+
});
|
|
4335
4696
|
templates.push({
|
|
4336
4697
|
filename: "b24ui/index.ts",
|
|
4337
4698
|
write: true,
|