@bcc-code/component-library-vue 0.0.0-dev.c2cb2dd → 0.0.0-dev.cc69d8e
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/dist/component-library.js +40443 -37512
- package/dist/component-library.umd.cjs +982 -969
- package/dist/index.css +1 -1
- package/dist/theme.css +377 -288
- package/dist-types/components/custom/BccAppNavigation/BccAppNavigation.vue.d.ts +32 -0
- package/dist-types/components/custom/BccBadge/BccBadge.vue.d.ts +2 -0
- package/dist-types/components/custom/BccCapacityIndicator/BccCapacityIndicator.vue.d.ts +3 -0
- package/dist-types/components/custom/BccCircleLoader/BccCircleLoader.vue.d.ts +9 -1
- package/dist-types/components/custom/BccDialKnob/BccDialKnob.vue.d.ts +1 -1
- package/dist-types/components/custom/BccReact/BccReact.vue.d.ts +3 -2
- package/dist-types/components/custom/BccStepIndicator/BccStepIndicator.vue.d.ts +3 -3
- package/dist-types/components/custom/BccTag/BccTag.vue.d.ts +1 -0
- package/dist-types/components/custom/BccTopNavigation/BccTopNavigation.vue.d.ts +57 -0
- package/dist-types/components/custom/index.d.ts +4 -0
- package/dist-types/components/wrapped/BccAvatar/BccAvatar.vue.d.ts +1 -1
- package/dist-types/components/wrapped/BccImage.vue.d.ts +17 -0
- package/dist-types/components/wrapped/BccMenu/BccMenu.vue.d.ts +20 -6
- package/dist-types/components/wrapped/BccMessage.vue.d.ts +4 -2
- package/dist-types/components/wrapped/BccRadioButton.vue.d.ts +19 -0
- package/dist-types/components/wrapped/BccSelectButton.vue.d.ts +20 -0
- package/dist-types/components/wrapped/BccTabs/BccTabs.vue.d.ts +2 -0
- package/dist-types/components/wrapped/BccToggle/BccToggle.vue.d.ts +9 -4
- package/dist-types/components/wrapped/index.d.ts +8 -1
- package/dist-types/index.d.ts +0 -3
- package/package.json +2 -2
package/dist/theme.css
CHANGED
|
@@ -590,78 +590,83 @@
|
|
|
590
590
|
|
|
591
591
|
/* === ./styles/utilities.css === */
|
|
592
592
|
@utility center {
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
&.top {
|
|
596
|
-
@apply items-start;
|
|
597
|
-
}
|
|
593
|
+
@apply flex items-center justify-center;
|
|
598
594
|
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
595
|
+
&.top {
|
|
596
|
+
@apply items-start;
|
|
597
|
+
}
|
|
602
598
|
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
599
|
+
&.bottom {
|
|
600
|
+
@apply items-end;
|
|
601
|
+
}
|
|
606
602
|
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
603
|
+
&.left {
|
|
604
|
+
@apply justify-start;
|
|
605
|
+
}
|
|
610
606
|
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
607
|
+
&.right {
|
|
608
|
+
@apply justify-end;
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
&.stretch {
|
|
612
|
+
@apply items-stretch;
|
|
613
|
+
}
|
|
614
614
|
}
|
|
615
615
|
|
|
616
616
|
@utility col {
|
|
617
|
-
|
|
617
|
+
@apply flex flex-col items-center justify-center;
|
|
618
618
|
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
619
|
+
&.left {
|
|
620
|
+
@apply items-start;
|
|
621
|
+
}
|
|
622
622
|
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
623
|
+
&.right {
|
|
624
|
+
@apply items-end;
|
|
625
|
+
}
|
|
626
626
|
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
627
|
+
&.top {
|
|
628
|
+
@apply justify-start;
|
|
629
|
+
}
|
|
630
630
|
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
631
|
+
&.bottom {
|
|
632
|
+
@apply justify-end;
|
|
633
|
+
}
|
|
634
634
|
}
|
|
635
635
|
|
|
636
636
|
@utility between {
|
|
637
|
-
|
|
637
|
+
@apply justify-between;
|
|
638
638
|
}
|
|
639
639
|
|
|
640
640
|
@utility hide-scrollbar {
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
641
|
+
-ms-overflow-style: none; /* for Internet Explorer, Edge */
|
|
642
|
+
scrollbar-width: none; /* for Firefox */
|
|
643
|
+
overflow-y: scroll;
|
|
644
644
|
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
645
|
+
&::-webkit-scrollbar {
|
|
646
|
+
display: none; /* for Chrome, Safari, and Opera */
|
|
647
|
+
}
|
|
648
648
|
}
|
|
649
649
|
|
|
650
650
|
/* Capitalize first letter */
|
|
651
651
|
@utility capital {
|
|
652
|
-
|
|
652
|
+
@apply inline-block;
|
|
653
653
|
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
654
|
+
&::first-letter {
|
|
655
|
+
text-transform: uppercase;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
&.bcc-badge {
|
|
659
|
+
@apply inline-flex;
|
|
660
|
+
}
|
|
657
661
|
}
|
|
658
662
|
|
|
659
663
|
/* Inset 0 */
|
|
660
664
|
@utility inset-0 {
|
|
661
|
-
@apply
|
|
665
|
+
@apply top-0 right-0 bottom-0 left-0;
|
|
662
666
|
}
|
|
663
667
|
|
|
664
668
|
|
|
669
|
+
|
|
665
670
|
/* === ./styles/contexts.css === */
|
|
666
671
|
/* Auto-generated from src/figma-modes. Do not edit by hand. */
|
|
667
672
|
/* Run: pnpm run generate:context-css */
|
|
@@ -769,18 +774,18 @@
|
|
|
769
774
|
}
|
|
770
775
|
|
|
771
776
|
@utility ctx-brand-bolder {
|
|
772
|
-
--ctx-text: var(--color-default-
|
|
777
|
+
--ctx-text: var(--color-default-neutral-0);
|
|
773
778
|
--ctx-text-bold: var(--color-default-neutral-0);
|
|
774
|
-
--ctx-background: var(--color-default-bcc-
|
|
775
|
-
--ctx-gradient: var(--color-default-bcc-
|
|
779
|
+
--ctx-background: var(--color-default-bcc-800);
|
|
780
|
+
--ctx-gradient: var(--color-default-bcc-900);
|
|
776
781
|
--ctx-border: var(--color-default-bcc-700);
|
|
777
782
|
--ctx-shadow: var(--color-neutral-alpha-500A);
|
|
778
|
-
--ctx-text-hover: var(--color-default-
|
|
779
|
-
--ctx-text-pressed: var(--color-default-
|
|
780
|
-
--ctx-background-hover: var(--color-default-bcc-
|
|
781
|
-
--ctx-background-pressed: var(--color-default-bcc-
|
|
782
|
-
--ctx-gradient-hover: var(--color-default-bcc-
|
|
783
|
-
--ctx-gradient-pressed: var(--color-default-bcc-
|
|
783
|
+
--ctx-text-hover: var(--color-default-neutral-0);
|
|
784
|
+
--ctx-text-pressed: var(--color-default-neutral-0);
|
|
785
|
+
--ctx-background-hover: var(--color-default-bcc-900);
|
|
786
|
+
--ctx-background-pressed: var(--color-default-bcc-1000);
|
|
787
|
+
--ctx-gradient-hover: var(--color-default-bcc-1000);
|
|
788
|
+
--ctx-gradient-pressed: var(--color-default-bcc-1000);
|
|
784
789
|
--ctx-border-hover: var(--color-default-bcc-700);
|
|
785
790
|
--ctx-border-pressed: var(--color-default-bcc-700);
|
|
786
791
|
}
|
|
@@ -975,16 +980,16 @@
|
|
|
975
980
|
@utility ctx-gray-bolder {
|
|
976
981
|
--ctx-text: var(--color-default-neutral-200);
|
|
977
982
|
--ctx-text-bold: var(--color-default-neutral-100);
|
|
978
|
-
--ctx-background: var(--color-default-neutral-
|
|
979
|
-
--ctx-gradient: var(--color-default-neutral-
|
|
983
|
+
--ctx-background: var(--color-default-neutral-700);
|
|
984
|
+
--ctx-gradient: var(--color-default-neutral-800);
|
|
980
985
|
--ctx-border: var(--color-default-neutral-700);
|
|
981
986
|
--ctx-shadow: var(--color-neutral-alpha-500A);
|
|
982
987
|
--ctx-text-hover: var(--color-default-neutral-200);
|
|
983
988
|
--ctx-text-pressed: var(--color-default-neutral-200);
|
|
984
|
-
--ctx-background-hover: var(--color-default-neutral-
|
|
985
|
-
--ctx-background-pressed: var(--color-default-neutral-
|
|
986
|
-
--ctx-gradient-hover: var(--color-default-neutral-
|
|
987
|
-
--ctx-gradient-pressed: var(--color-default-neutral-
|
|
989
|
+
--ctx-background-hover: var(--color-default-neutral-800);
|
|
990
|
+
--ctx-background-pressed: var(--color-default-neutral-900);
|
|
991
|
+
--ctx-gradient-hover: var(--color-default-neutral-900);
|
|
992
|
+
--ctx-gradient-pressed: var(--color-default-neutral-900);
|
|
988
993
|
--ctx-border-hover: var(--color-default-neutral-700);
|
|
989
994
|
--ctx-border-pressed: var(--color-default-neutral-700);
|
|
990
995
|
}
|
|
@@ -1723,88 +1728,104 @@
|
|
|
1723
1728
|
|
|
1724
1729
|
|
|
1725
1730
|
/* === ./styles/context.css === */
|
|
1726
|
-
|
|
1727
1731
|
@theme {
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1732
|
+
--color-brand-100: var(--color-bcc-100);
|
|
1733
|
+
--color-brand-200: var(--color-bcc-200);
|
|
1734
|
+
--color-brand-300: var(--color-bcc-300);
|
|
1735
|
+
--color-brand-400: var(--color-bcc-400);
|
|
1736
|
+
--color-brand-500: var(--color-bcc-500);
|
|
1737
|
+
--color-brand-600: var(--color-bcc-600);
|
|
1738
|
+
--color-brand-700: var(--color-bcc-700);
|
|
1739
|
+
--color-brand-800: var(--color-bcc-800);
|
|
1740
|
+
--color-brand-900: var(--color-bcc-900);
|
|
1741
|
+
--color-brand-1000: var(--color-bcc-1000);
|
|
1738
1742
|
}
|
|
1739
1743
|
|
|
1740
1744
|
/** DEFAULT CONTEXTS */
|
|
1741
1745
|
@utility ctx-default {
|
|
1742
|
-
|
|
1746
|
+
@apply ctx-neutral-subtlest;
|
|
1747
|
+
}
|
|
1748
|
+
@utility ctx-success {
|
|
1749
|
+
@apply ctx-success-subtlest;
|
|
1750
|
+
}
|
|
1751
|
+
@utility ctx-danger {
|
|
1752
|
+
@apply ctx-danger-subtlest;
|
|
1753
|
+
}
|
|
1754
|
+
@utility ctx-warning {
|
|
1755
|
+
@apply ctx-warning-subtlest;
|
|
1756
|
+
}
|
|
1757
|
+
@utility ctx-info {
|
|
1758
|
+
@apply ctx-info-subtlest;
|
|
1743
1759
|
}
|
|
1744
|
-
@utility ctx-success { @apply ctx-success-subtlest; }
|
|
1745
|
-
@utility ctx-danger { @apply ctx-danger-subtlest; }
|
|
1746
|
-
@utility ctx-warning { @apply ctx-warning-subtlest; }
|
|
1747
|
-
@utility ctx-info { @apply ctx-info-subtlest; }
|
|
1748
1760
|
|
|
1749
1761
|
@utility text-ctx {
|
|
1750
|
-
|
|
1762
|
+
color: var(--ctx-text);
|
|
1751
1763
|
}
|
|
1752
1764
|
|
|
1753
1765
|
@utility text-ctx-bold {
|
|
1754
|
-
|
|
1766
|
+
color: var(--ctx-text-bold);
|
|
1755
1767
|
}
|
|
1756
1768
|
|
|
1757
1769
|
@utility bg-ctx {
|
|
1758
|
-
|
|
1770
|
+
background-color: var(--ctx-background);
|
|
1759
1771
|
}
|
|
1760
1772
|
|
|
1761
1773
|
@utility border-ctx {
|
|
1762
|
-
|
|
1774
|
+
border-color: var(--ctx-border);
|
|
1763
1775
|
}
|
|
1764
1776
|
|
|
1765
1777
|
@utility shadow-ctx {
|
|
1766
|
-
|
|
1778
|
+
--tw-shadow-color: var(--ctx-shadow);
|
|
1767
1779
|
}
|
|
1768
1780
|
|
|
1769
1781
|
@utility ctx {
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1782
|
+
background-color: var(--ctx-background);
|
|
1783
|
+
color: var(--ctx-text);
|
|
1784
|
+
border-color: var(--ctx-border);
|
|
1773
1785
|
}
|
|
1774
1786
|
|
|
1775
1787
|
@utility ctx-gradient {
|
|
1776
|
-
|
|
1788
|
+
background: linear-gradient(225deg, var(--ctx-background) 0%, var(--ctx-gradient) 100%);
|
|
1789
|
+
|
|
1790
|
+
@variant dark {
|
|
1791
|
+
background: linear-gradient(225deg, var(--ctx-gradient) 0%, var(--ctx-background) 100%);
|
|
1792
|
+
}
|
|
1777
1793
|
}
|
|
1778
1794
|
|
|
1779
1795
|
@utility ctx-raised {
|
|
1780
|
-
|
|
1796
|
+
box-shadow:
|
|
1797
|
+
0 1px 1px 0 var(--ctx-shadow),
|
|
1798
|
+
0 0 1px 0 var(--ctx-shadow);
|
|
1781
1799
|
}
|
|
1782
1800
|
|
|
1783
1801
|
@utility ctx-flat {
|
|
1784
|
-
|
|
1802
|
+
--ctx-background: transparent;
|
|
1785
1803
|
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1804
|
+
@variant hover {
|
|
1805
|
+
--ctx-background: var(--ctx-background-hover);
|
|
1806
|
+
}
|
|
1789
1807
|
}
|
|
1790
1808
|
|
|
1791
1809
|
@utility clickable {
|
|
1792
|
-
|
|
1810
|
+
cursor: pointer;
|
|
1793
1811
|
}
|
|
1794
1812
|
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1813
|
+
@media (hover: hover) and (pointer: fine) {
|
|
1814
|
+
.clickable:hover {
|
|
1815
|
+
--ctx-background: var(--ctx-background-hover);
|
|
1816
|
+
--ctx-text: var(--ctx-text-hover);
|
|
1817
|
+
--ctx-border: var(--ctx-border-hover);
|
|
1818
|
+
}
|
|
1800
1819
|
|
|
1801
|
-
.clickable:active {
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1820
|
+
.clickable:active {
|
|
1821
|
+
--ctx-background: var(--ctx-background-pressed);
|
|
1822
|
+
--ctx-text: var(--ctx-text-pressed);
|
|
1823
|
+
--ctx-border: var(--ctx-border-pressed);
|
|
1824
|
+
}
|
|
1805
1825
|
}
|
|
1806
1826
|
|
|
1807
1827
|
|
|
1828
|
+
|
|
1808
1829
|
/* === ./styles/fonts.css === */
|
|
1809
1830
|
@utility heading-xs { font: var(--heading-xs); }
|
|
1810
1831
|
@utility heading-sm { font: var(--heading-sm); }
|
|
@@ -1824,6 +1845,10 @@
|
|
|
1824
1845
|
/* === ./styles/component-overrides.css === */
|
|
1825
1846
|
/** Custom styles to fix primevue components that are not custom or wrapped. */
|
|
1826
1847
|
|
|
1848
|
+
:root {
|
|
1849
|
+
--p-toast-width: min(85vw, 400px);
|
|
1850
|
+
}
|
|
1851
|
+
|
|
1827
1852
|
/**
|
|
1828
1853
|
* GUTTER FIX
|
|
1829
1854
|
* Primevue's dropwdown components are all missing the gap between input and dropdown
|
|
@@ -1832,6 +1857,7 @@
|
|
|
1832
1857
|
.p-menu-overlay,
|
|
1833
1858
|
.p-multiselect-overlay,
|
|
1834
1859
|
.p-select-overlay,
|
|
1860
|
+
.p-datepicker-panel,
|
|
1835
1861
|
.p-treeselect-overlay {
|
|
1836
1862
|
margin: var(--p-anchor-gutter) 0;
|
|
1837
1863
|
}
|
|
@@ -1901,71 +1927,129 @@
|
|
|
1901
1927
|
z-index: 2;
|
|
1902
1928
|
}
|
|
1903
1929
|
|
|
1930
|
+
.p-dialog-close-button {
|
|
1931
|
+
--p-icon-size: var(--icon-size-sm);
|
|
1932
|
+
}
|
|
1933
|
+
.p-dialog .p-button-icon:empty {
|
|
1934
|
+
display: none;
|
|
1935
|
+
}
|
|
1936
|
+
|
|
1937
|
+
.p-togglebutton {
|
|
1938
|
+
font-size: var(--text-sm);
|
|
1939
|
+
border: 0;
|
|
1940
|
+
}
|
|
1941
|
+
|
|
1942
|
+
.p-togglebutton-sm {
|
|
1943
|
+
font-size: var(--text-sm);
|
|
1944
|
+
}
|
|
1945
|
+
|
|
1946
|
+
.p-togglebutton-lg {
|
|
1947
|
+
font-size: var(--text-md);
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1904
1950
|
|
|
1905
1951
|
|
|
1906
1952
|
|
|
1907
1953
|
/* === ./components/custom/styles.css === */
|
|
1908
1954
|
|
|
1955
|
+
/* from ./BccAppNavigation/BccAppNavigation.css */
|
|
1956
|
+
@layer components {
|
|
1957
|
+
.bcc-app-nav {
|
|
1958
|
+
@apply bg-elevation-surface-default dark:border-brand-800 sticky inset-x-0 bottom-0 z-20 overflow-visible shadow-md sm:rounded-t-xl dark:border-t;
|
|
1959
|
+
}
|
|
1960
|
+
.bcc-app-nav-container {
|
|
1961
|
+
@apply center pb-inset-bottom-1 mx-auto max-w-lg pt-1;
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1964
|
+
.bcc-app-nav-item {
|
|
1965
|
+
@apply relative flex h-12 flex-1 flex-col items-center justify-center gap-1 transition-colors focus:ring-0 focus:outline-none;
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1968
|
+
.bcc-nav-item-icon {
|
|
1969
|
+
@apply size-6 icon-subtlest;
|
|
1970
|
+
}
|
|
1971
|
+
|
|
1972
|
+
.bcc-nav-item-badge {
|
|
1973
|
+
@apply absolute top-0 right-1;
|
|
1974
|
+
}
|
|
1975
|
+
|
|
1976
|
+
.bcc-nav-item-title {
|
|
1977
|
+
@apply text-heading-xs text-center text-subtlest opacity-75;
|
|
1978
|
+
}
|
|
1979
|
+
|
|
1980
|
+
.bcc-app-nav-item--active .bcc-nav-item-title {
|
|
1981
|
+
@apply text-selected opacity-100;
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1984
|
+
.bcc-app-nav-item--active .bcc-nav-item-icon {
|
|
1985
|
+
@apply text-selected;
|
|
1986
|
+
}
|
|
1987
|
+
}
|
|
1988
|
+
|
|
1989
|
+
|
|
1990
|
+
|
|
1909
1991
|
/* from ./BccBadge/BccBadge.css */
|
|
1910
1992
|
@layer components {
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
@apply bg-ctx text-ctx;
|
|
1915
|
-
}
|
|
1993
|
+
.bcc-badge {
|
|
1994
|
+
@apply inline-flex shrink-0 items-center justify-center gap-1 rounded-full leading-none whitespace-nowrap;
|
|
1916
1995
|
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1996
|
+
@apply bg-ctx text-ctx;
|
|
1997
|
+
}
|
|
1998
|
+
.bcc-badge.gradient {
|
|
1999
|
+
@apply ctx-gradient;
|
|
2000
|
+
}
|
|
2001
|
+
.bcc-badge.sm {
|
|
2002
|
+
@apply text-heading-xs h-4 w-4;
|
|
2003
|
+
}
|
|
2004
|
+
.bcc-badge.md {
|
|
2005
|
+
@apply text-heading-sm h-5 w-5;
|
|
2006
|
+
}
|
|
2007
|
+
.bcc-badge.lg {
|
|
2008
|
+
@apply text-heading-md h-6 w-6;
|
|
2009
|
+
}
|
|
2010
|
+
.bcc-badge.xl {
|
|
2011
|
+
@apply text-heading-md h-8 w-8;
|
|
2012
|
+
}
|
|
1932
2013
|
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
2014
|
+
.bcc-badge .bcc-badge-icon {
|
|
2015
|
+
@apply size-4;
|
|
2016
|
+
}
|
|
2017
|
+
.bcc-badge.lg .bcc-badge-icon {
|
|
2018
|
+
@apply size-5;
|
|
2019
|
+
}
|
|
2020
|
+
.bcc-badge.xl .bcc-badge-icon {
|
|
2021
|
+
@apply size-6;
|
|
2022
|
+
}
|
|
1942
2023
|
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
2024
|
+
.bcc-badge.bcc-badge-text {
|
|
2025
|
+
@apply w-auto px-2;
|
|
2026
|
+
}
|
|
2027
|
+
.bcc-badge-text.lg,
|
|
2028
|
+
.bcc-badge-text.xl {
|
|
2029
|
+
@apply px-3;
|
|
2030
|
+
}
|
|
2031
|
+
.bcc-badge-text.border.lg,
|
|
2032
|
+
.bcc-badge-text.border.xl {
|
|
2033
|
+
@apply px-2;
|
|
2034
|
+
}
|
|
2035
|
+
.bcc-badge-text.bordered.lg,
|
|
2036
|
+
.bcc-badge-text.bordered.xl {
|
|
2037
|
+
@apply px-1;
|
|
2038
|
+
}
|
|
1955
2039
|
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
2040
|
+
.bcc-badge.border {
|
|
2041
|
+
@apply border-1;
|
|
2042
|
+
border-color: var(--ctx-background-pressed);
|
|
2043
|
+
}
|
|
1960
2044
|
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
2045
|
+
.bcc-badge.bordered {
|
|
2046
|
+
@apply border-2;
|
|
2047
|
+
border-color: var(--ctx-background-pressed);
|
|
2048
|
+
}
|
|
1965
2049
|
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
2050
|
+
.bcc-badge.squared {
|
|
2051
|
+
@apply rounded-sm;
|
|
2052
|
+
}
|
|
1969
2053
|
}
|
|
1970
2054
|
|
|
1971
2055
|
|
|
@@ -2014,6 +2098,7 @@
|
|
|
2014
2098
|
|
|
2015
2099
|
.bcc-capacity-indicator.is-warning {
|
|
2016
2100
|
@apply ctx-yellow-subtlest;
|
|
2101
|
+
--bcc-capacity-indicator-circle: var(--ctx-background);
|
|
2017
2102
|
}
|
|
2018
2103
|
|
|
2019
2104
|
.bcc-capacity-indicator.is-full {
|
|
@@ -2252,91 +2337,94 @@
|
|
|
2252
2337
|
|
|
2253
2338
|
/* from ./BccReact/BccReact.css */
|
|
2254
2339
|
@layer components {
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
2340
|
+
.bcc-react {
|
|
2341
|
+
@apply relative flex w-full items-center overflow-visible;
|
|
2342
|
+
}
|
|
2343
|
+
.bcc-react-toggle {
|
|
2344
|
+
@apply mr-1 flex shrink-0 cursor-pointer items-center justify-center rounded-full p-1 transition;
|
|
2345
|
+
}
|
|
2346
|
+
.bcc-react-list {
|
|
2347
|
+
@apply hide-scrollbar flex flex-1 items-center gap-1 overflow-x-auto overflow-y-hidden rounded-full p-1;
|
|
2348
|
+
}
|
|
2349
|
+
.bcc-react-empty {
|
|
2350
|
+
@apply heading-xs flex items-center;
|
|
2351
|
+
}
|
|
2267
2352
|
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
|
|
2353
|
+
.bcc-react-selector-container {
|
|
2354
|
+
@apply absolute z-50 h-9;
|
|
2355
|
+
@apply top-11 origin-top-left;
|
|
2356
|
+
}
|
|
2272
2357
|
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2358
|
+
.bcc-react-selector-container--top {
|
|
2359
|
+
@apply -top-10 origin-bottom-left;
|
|
2360
|
+
}
|
|
2276
2361
|
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2362
|
+
.bcc-react-selector {
|
|
2363
|
+
@apply flex h-9 flex-col overflow-hidden bg-neutral-100 px-0 shadow-md;
|
|
2364
|
+
border-radius: 18px;
|
|
2365
|
+
}
|
|
2281
2366
|
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2367
|
+
.bcc-react-selector-emojis-container {
|
|
2368
|
+
@apply flex items-center bg-neutral-100 px-1;
|
|
2369
|
+
}
|
|
2285
2370
|
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2371
|
+
.bcc-react-selector-more {
|
|
2372
|
+
@apply flex w-9 items-center justify-center;
|
|
2373
|
+
}
|
|
2374
|
+
.bcc-react-selector-more-btn {
|
|
2375
|
+
@apply flex h-7 w-7 items-center justify-center rounded-full bg-slate-200;
|
|
2376
|
+
}
|
|
2292
2377
|
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2378
|
+
.bcc-react-dropdown-container {
|
|
2379
|
+
@apply top-0 left-0 -z-10 w-full max-w-full;
|
|
2380
|
+
width: 296px;
|
|
2381
|
+
}
|
|
2382
|
+
.bcc-react-dropdown-container--top {
|
|
2383
|
+
@apply top-auto bottom-0 pb-0;
|
|
2384
|
+
}
|
|
2300
2385
|
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2386
|
+
.bcc-react-dropdown {
|
|
2387
|
+
@apply -z-10 flex w-full flex-wrap overflow-hidden px-1;
|
|
2388
|
+
}
|
|
2304
2389
|
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2390
|
+
.bcc-react-arrow-down-icon {
|
|
2391
|
+
@apply h-6 w-6 text-slate-600;
|
|
2392
|
+
transition: transform 0.3s ease;
|
|
2393
|
+
}
|
|
2394
|
+
.bcc-react-arrow-down-icon.open {
|
|
2395
|
+
transform: rotate(-180deg);
|
|
2396
|
+
}
|
|
2312
2397
|
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
2398
|
+
.bcc-react-selector-item {
|
|
2399
|
+
@apply relative h-9 w-9 p-2 text-xl leading-none transition-transform duration-200 ease-out;
|
|
2400
|
+
}
|
|
2316
2401
|
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2402
|
+
.bcc-react-selector-item--clicked {
|
|
2403
|
+
animation: scaleFadeOut 300ms forwards;
|
|
2404
|
+
}
|
|
2320
2405
|
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2406
|
+
@keyframes scaleFadeOut {
|
|
2407
|
+
0% {
|
|
2408
|
+
transform: scale(1);
|
|
2409
|
+
opacity: 1;
|
|
2410
|
+
}
|
|
2411
|
+
100% {
|
|
2412
|
+
transform: scale(1.4);
|
|
2413
|
+
opacity: 0;
|
|
2414
|
+
}
|
|
2415
|
+
}
|
|
2331
2416
|
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2417
|
+
.bcc-react-emoji-list-item {
|
|
2418
|
+
@apply ctx clickable center h-7 min-w-7 shrink-0 rounded-full p-1 text-lg leading-none drop-shadow transition-all hover:scale-105;
|
|
2419
|
+
/* Default --not-selected */
|
|
2420
|
+
@apply ctx-neutral-subtlest;
|
|
2421
|
+
}
|
|
2422
|
+
.bcc-react-emoji-list-item span {
|
|
2423
|
+
@apply leading-none;
|
|
2424
|
+
}
|
|
2425
|
+
.bcc-react-emoji-list-item.selected {
|
|
2426
|
+
@apply ctx-neutral-subtle;
|
|
2427
|
+
}
|
|
2340
2428
|
}
|
|
2341
2429
|
|
|
2342
2430
|
|
|
@@ -2367,78 +2455,74 @@
|
|
|
2367
2455
|
|
|
2368
2456
|
/* from ./BccAvatar/BccAvatar.css */
|
|
2369
2457
|
@layer components {
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
.bcc-avatar.M {
|
|
2378
|
-
@apply ctx-blue-subtler;
|
|
2379
|
-
}
|
|
2380
|
-
.bcc-avatar.female,
|
|
2381
|
-
.bcc-avatar.F {
|
|
2382
|
-
@apply ctx-purple-subtler;
|
|
2383
|
-
}
|
|
2384
|
-
.bcc-avatar.male.child,
|
|
2385
|
-
.bcc-avatar.M.child {
|
|
2386
|
-
@apply ctx-teal-subtler;
|
|
2387
|
-
}
|
|
2388
|
-
.bcc-avatar.female.child,
|
|
2389
|
-
.bcc-avatar.F.child {
|
|
2390
|
-
@apply ctx-magenta-subtler;
|
|
2391
|
-
}
|
|
2392
|
-
.bcc-avatar.bordered {
|
|
2393
|
-
@apply border-2 border-ctx;
|
|
2394
|
-
}
|
|
2395
|
-
.bcc-avatar.xs {
|
|
2396
|
-
@apply size-5 text-xs;
|
|
2397
|
-
}
|
|
2398
|
-
.bcc-avatar.sm {
|
|
2399
|
-
@apply size-6 text-sm;
|
|
2400
|
-
}
|
|
2401
|
-
.bcc-avatar.md {
|
|
2402
|
-
@apply size-8 text-base;
|
|
2403
|
-
}
|
|
2404
|
-
.bcc-avatar.lg {
|
|
2405
|
-
@apply size-10 text-lg;
|
|
2406
|
-
}
|
|
2407
|
-
.bcc-avatar.xl {
|
|
2408
|
-
@apply size-12 text-xl;
|
|
2409
|
-
}
|
|
2410
|
-
.bcc-avatar.xxl {
|
|
2411
|
-
@apply size-20 text-3xl;
|
|
2412
|
-
}
|
|
2413
|
-
.bcc-avatar.xxxl {
|
|
2414
|
-
@apply size-24 text-4xl;
|
|
2415
|
-
}
|
|
2458
|
+
.bcc-avatar {
|
|
2459
|
+
--p-avatar-background: var(--ctx-background);
|
|
2460
|
+
--p-avatar-color: var(--ctx-text);
|
|
2461
|
+
--bcc-avatar-border: var(--ctx-border);
|
|
2462
|
+
--p-icon-size: var(--icon-size-sm);
|
|
2463
|
+
@apply ctx-gray-subtler shrink-0 overflow-hidden text-sm;
|
|
2464
|
+
}
|
|
2416
2465
|
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2466
|
+
.bcc-avatar.male,
|
|
2467
|
+
.bcc-avatar.M {
|
|
2468
|
+
@apply ctx-blue-subtler;
|
|
2469
|
+
}
|
|
2470
|
+
.bcc-avatar.female,
|
|
2471
|
+
.bcc-avatar.F {
|
|
2472
|
+
@apply ctx-purple-subtler;
|
|
2473
|
+
}
|
|
2474
|
+
.bcc-avatar.male.child,
|
|
2475
|
+
.bcc-avatar.M.child {
|
|
2476
|
+
@apply ctx-teal-subtler;
|
|
2477
|
+
}
|
|
2478
|
+
.bcc-avatar.female.child,
|
|
2479
|
+
.bcc-avatar.F.child {
|
|
2480
|
+
@apply ctx-magenta-subtler;
|
|
2481
|
+
}
|
|
2482
|
+
.bcc-avatar.bordered {
|
|
2483
|
+
@apply border-ctx border-2;
|
|
2484
|
+
}
|
|
2485
|
+
.bcc-avatar.xs {
|
|
2486
|
+
@apply size-5 text-xs;
|
|
2487
|
+
--p-icon-size: var(--icon-size-xs);
|
|
2488
|
+
}
|
|
2489
|
+
.bcc-avatar.sm {
|
|
2490
|
+
@apply size-6 text-xs;
|
|
2491
|
+
--p-icon-size: var(--icon-size-xs);
|
|
2492
|
+
}
|
|
2493
|
+
/* .bcc-avatar.md {
|
|
2494
|
+
same as default
|
|
2495
|
+
}*/
|
|
2496
|
+
.bcc-avatar.lg {
|
|
2497
|
+
@apply text-md size-10;
|
|
2498
|
+
--p-icon-size: var(--icon-size-md);
|
|
2499
|
+
}
|
|
2500
|
+
.bcc-avatar.xl {
|
|
2501
|
+
@apply size-12 text-xl;
|
|
2502
|
+
--p-icon-size: var(--icon-size-lg);
|
|
2503
|
+
}
|
|
2504
|
+
.bcc-avatar.xxl {
|
|
2505
|
+
@apply size-20 text-3xl;
|
|
2506
|
+
--p-icon-size: var(--icon-size-xl);
|
|
2507
|
+
}
|
|
2508
|
+
.bcc-avatar.xxxl {
|
|
2509
|
+
@apply size-24 text-4xl;
|
|
2510
|
+
--p-icon-size: var(--icon-size-xl);
|
|
2511
|
+
}
|
|
2429
2512
|
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2513
|
+
.p-overlaybadge .bcc-avatar.p-avatar-circle.lg ~ .p-badge,
|
|
2514
|
+
.p-overlaybadge .bcc-avatar.p-avatar-circle.xl ~ .p-badge {
|
|
2515
|
+
transform: translate(40%, -40%);
|
|
2516
|
+
}
|
|
2434
2517
|
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2518
|
+
.p-overlaybadge .bcc-avatar.p-avatar-circle.xxxl ~ .p-badge,
|
|
2519
|
+
.p-overlaybadge .bcc-avatar.p-avatar-circle.xxl ~ .p-badge {
|
|
2520
|
+
transform: translate(20%, -20%);
|
|
2521
|
+
}
|
|
2439
2522
|
}
|
|
2440
2523
|
|
|
2441
2524
|
|
|
2525
|
+
|
|
2442
2526
|
/* from ./BccTabs/BccTabs.css */
|
|
2443
2527
|
@layer components {
|
|
2444
2528
|
.bcc-tabs-fill.p-tabs {
|
|
@@ -2457,6 +2541,9 @@
|
|
|
2457
2541
|
height: 100%;
|
|
2458
2542
|
overflow: auto;
|
|
2459
2543
|
}
|
|
2544
|
+
.bcc-tabs-fluid.p-tabs {
|
|
2545
|
+
width: 100%;
|
|
2546
|
+
}
|
|
2460
2547
|
}
|
|
2461
2548
|
|
|
2462
2549
|
|
|
@@ -2485,6 +2572,8 @@
|
|
|
2485
2572
|
@apply m-0 p-0 font-sans antialiased;
|
|
2486
2573
|
-webkit-font-smoothing: antialiased;
|
|
2487
2574
|
-moz-osx-font-smoothing: grayscale;
|
|
2575
|
+
line-height: 1.2;
|
|
2576
|
+
font-kerning: normal;
|
|
2488
2577
|
}
|
|
2489
2578
|
|
|
2490
2579
|
hr {
|