@bcc-code/component-library-vue 0.0.0-dev.fd7e9e4 → 0.0.0-dev.ff65d3f
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 +29785 -26908
- package/dist/component-library.umd.cjs +972 -959
- package/dist/index.css +1 -1
- package/dist/theme.css +295 -200
- 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 +1 -1
- package/dist-types/components/custom/BccStepIndicator/BccStepIndicator.vue.d.ts +1 -1
- package/dist-types/components/custom/BccTopNavigation/BccTopNavigation.vue.d.ts +47 -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 +6 -6
- package/dist-types/components/wrapped/BccMessage.vue.d.ts +4 -2
- package/dist-types/components/wrapped/BccRadioButton.vue.d.ts +18 -0
- package/dist-types/components/wrapped/BccSelectButton.vue.d.ts +17 -0
- package/dist-types/components/wrapped/BccTabs/BccTabs.vue.d.ts +2 -0
- package/dist-types/components/wrapped/BccToggle/BccToggle.vue.d.ts +12 -1
- package/dist-types/components/wrapped/index.d.ts +8 -1
- package/dist-types/index.d.ts +0 -4
- 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 */
|
|
@@ -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
|
}
|
|
@@ -1894,71 +1920,138 @@
|
|
|
1894
1920
|
--p-select-placeholder-color: var(--color-dark-neutral-1000);
|
|
1895
1921
|
}
|
|
1896
1922
|
|
|
1923
|
+
/**
|
|
1924
|
+
* Fix issue with icons inside Input within an InputGroup being hidden when Input is in focus
|
|
1925
|
+
**/
|
|
1926
|
+
.p-inputicon {
|
|
1927
|
+
z-index: 2;
|
|
1928
|
+
}
|
|
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
|
+
|
|
1897
1950
|
|
|
1898
1951
|
|
|
1899
1952
|
|
|
1900
1953
|
/* === ./components/custom/styles.css === */
|
|
1901
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 ctx-gray-subtlest text-ctx 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 opacity-50;
|
|
1970
|
+
}
|
|
1971
|
+
|
|
1972
|
+
.bcc-nav-item-badge {
|
|
1973
|
+
@apply absolute top-0 right-1 opacity-75;
|
|
1974
|
+
}
|
|
1975
|
+
|
|
1976
|
+
.bcc-nav-item-title {
|
|
1977
|
+
@apply text-heading-xs text-center opacity-50;
|
|
1978
|
+
}
|
|
1979
|
+
|
|
1980
|
+
.bcc-app-nav-item--active {
|
|
1981
|
+
@apply text-selected;
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1984
|
+
.bcc-app-nav-item--active .bcc-nav-item-icon,
|
|
1985
|
+
.bcc-app-nav-item--active .bcc-nav-item-badge,
|
|
1986
|
+
.bcc-app-nav-item--active .bcc-nav-item-title {
|
|
1987
|
+
@apply opacity-100;
|
|
1988
|
+
}
|
|
1989
|
+
}
|
|
1990
|
+
|
|
1991
|
+
|
|
1992
|
+
|
|
1902
1993
|
/* from ./BccBadge/BccBadge.css */
|
|
1903
1994
|
@layer components {
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
@apply bg-ctx text-ctx;
|
|
1908
|
-
}
|
|
1995
|
+
.bcc-badge {
|
|
1996
|
+
@apply inline-flex shrink-0 items-center justify-center gap-1 rounded-full leading-none whitespace-nowrap;
|
|
1909
1997
|
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1998
|
+
@apply bg-ctx text-ctx;
|
|
1999
|
+
}
|
|
2000
|
+
.bcc-badge.gradient {
|
|
2001
|
+
@apply ctx-gradient;
|
|
2002
|
+
}
|
|
2003
|
+
.bcc-badge.sm {
|
|
2004
|
+
@apply text-heading-xs h-4 w-4;
|
|
2005
|
+
}
|
|
2006
|
+
.bcc-badge.md {
|
|
2007
|
+
@apply text-heading-sm h-5 w-5;
|
|
2008
|
+
}
|
|
2009
|
+
.bcc-badge.lg {
|
|
2010
|
+
@apply text-heading-md h-6 w-6;
|
|
2011
|
+
}
|
|
2012
|
+
.bcc-badge.xl {
|
|
2013
|
+
@apply text-heading-md h-8 w-8;
|
|
2014
|
+
}
|
|
1925
2015
|
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
2016
|
+
.bcc-badge .bcc-badge-icon {
|
|
2017
|
+
@apply size-4;
|
|
2018
|
+
}
|
|
2019
|
+
.bcc-badge.lg .bcc-badge-icon {
|
|
2020
|
+
@apply size-5;
|
|
2021
|
+
}
|
|
2022
|
+
.bcc-badge.xl .bcc-badge-icon {
|
|
2023
|
+
@apply size-6;
|
|
2024
|
+
}
|
|
1935
2025
|
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
2026
|
+
.bcc-badge.bcc-badge-text {
|
|
2027
|
+
@apply w-auto px-2;
|
|
2028
|
+
}
|
|
2029
|
+
.bcc-badge-text.lg,
|
|
2030
|
+
.bcc-badge-text.xl {
|
|
2031
|
+
@apply px-3;
|
|
2032
|
+
}
|
|
2033
|
+
.bcc-badge-text.border.lg,
|
|
2034
|
+
.bcc-badge-text.border.xl {
|
|
2035
|
+
@apply px-2;
|
|
2036
|
+
}
|
|
2037
|
+
.bcc-badge-text.bordered.lg,
|
|
2038
|
+
.bcc-badge-text.bordered.xl {
|
|
2039
|
+
@apply px-1;
|
|
2040
|
+
}
|
|
1948
2041
|
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
2042
|
+
.bcc-badge.border {
|
|
2043
|
+
@apply border-1;
|
|
2044
|
+
border-color: var(--ctx-background-pressed);
|
|
2045
|
+
}
|
|
1953
2046
|
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
2047
|
+
.bcc-badge.bordered {
|
|
2048
|
+
@apply border-2;
|
|
2049
|
+
border-color: var(--ctx-background-pressed);
|
|
2050
|
+
}
|
|
1958
2051
|
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
2052
|
+
.bcc-badge.squared {
|
|
2053
|
+
@apply rounded-sm;
|
|
2054
|
+
}
|
|
1962
2055
|
}
|
|
1963
2056
|
|
|
1964
2057
|
|
|
@@ -2007,6 +2100,7 @@
|
|
|
2007
2100
|
|
|
2008
2101
|
.bcc-capacity-indicator.is-warning {
|
|
2009
2102
|
@apply ctx-yellow-subtlest;
|
|
2103
|
+
--bcc-capacity-indicator-circle: var(--ctx-background);
|
|
2010
2104
|
}
|
|
2011
2105
|
|
|
2012
2106
|
.bcc-capacity-indicator.is-full {
|
|
@@ -2360,78 +2454,74 @@
|
|
|
2360
2454
|
|
|
2361
2455
|
/* from ./BccAvatar/BccAvatar.css */
|
|
2362
2456
|
@layer components {
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
.bcc-avatar.M {
|
|
2371
|
-
@apply ctx-blue-subtler;
|
|
2372
|
-
}
|
|
2373
|
-
.bcc-avatar.female,
|
|
2374
|
-
.bcc-avatar.F {
|
|
2375
|
-
@apply ctx-purple-subtler;
|
|
2376
|
-
}
|
|
2377
|
-
.bcc-avatar.male.child,
|
|
2378
|
-
.bcc-avatar.M.child {
|
|
2379
|
-
@apply ctx-teal-subtler;
|
|
2380
|
-
}
|
|
2381
|
-
.bcc-avatar.female.child,
|
|
2382
|
-
.bcc-avatar.F.child {
|
|
2383
|
-
@apply ctx-magenta-subtler;
|
|
2384
|
-
}
|
|
2385
|
-
.bcc-avatar.bordered {
|
|
2386
|
-
@apply border-2 border-ctx;
|
|
2387
|
-
}
|
|
2388
|
-
.bcc-avatar.xs {
|
|
2389
|
-
@apply size-5 text-xs;
|
|
2390
|
-
}
|
|
2391
|
-
.bcc-avatar.sm {
|
|
2392
|
-
@apply size-6 text-sm;
|
|
2393
|
-
}
|
|
2394
|
-
.bcc-avatar.md {
|
|
2395
|
-
@apply size-8 text-base;
|
|
2396
|
-
}
|
|
2397
|
-
.bcc-avatar.lg {
|
|
2398
|
-
@apply size-10 text-lg;
|
|
2399
|
-
}
|
|
2400
|
-
.bcc-avatar.xl {
|
|
2401
|
-
@apply size-12 text-xl;
|
|
2402
|
-
}
|
|
2403
|
-
.bcc-avatar.xxl {
|
|
2404
|
-
@apply size-20 text-3xl;
|
|
2405
|
-
}
|
|
2406
|
-
.bcc-avatar.xxxl {
|
|
2407
|
-
@apply size-24 text-4xl;
|
|
2408
|
-
}
|
|
2457
|
+
.bcc-avatar {
|
|
2458
|
+
--p-avatar-background: var(--ctx-background);
|
|
2459
|
+
--p-avatar-color: var(--ctx-text);
|
|
2460
|
+
--bcc-avatar-border: var(--ctx-border);
|
|
2461
|
+
--p-icon-size: var(--icon-size-sm);
|
|
2462
|
+
@apply ctx-gray-subtler shrink-0 overflow-hidden text-sm;
|
|
2463
|
+
}
|
|
2409
2464
|
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2465
|
+
.bcc-avatar.male,
|
|
2466
|
+
.bcc-avatar.M {
|
|
2467
|
+
@apply ctx-blue-subtler;
|
|
2468
|
+
}
|
|
2469
|
+
.bcc-avatar.female,
|
|
2470
|
+
.bcc-avatar.F {
|
|
2471
|
+
@apply ctx-purple-subtler;
|
|
2472
|
+
}
|
|
2473
|
+
.bcc-avatar.male.child,
|
|
2474
|
+
.bcc-avatar.M.child {
|
|
2475
|
+
@apply ctx-teal-subtler;
|
|
2476
|
+
}
|
|
2477
|
+
.bcc-avatar.female.child,
|
|
2478
|
+
.bcc-avatar.F.child {
|
|
2479
|
+
@apply ctx-magenta-subtler;
|
|
2480
|
+
}
|
|
2481
|
+
.bcc-avatar.bordered {
|
|
2482
|
+
@apply border-ctx border-2;
|
|
2483
|
+
}
|
|
2484
|
+
.bcc-avatar.xs {
|
|
2485
|
+
@apply size-5 text-xs;
|
|
2486
|
+
--p-icon-size: var(--icon-size-xs);
|
|
2487
|
+
}
|
|
2488
|
+
.bcc-avatar.sm {
|
|
2489
|
+
@apply size-6 text-xs;
|
|
2490
|
+
--p-icon-size: var(--icon-size-xs);
|
|
2491
|
+
}
|
|
2492
|
+
/* .bcc-avatar.md {
|
|
2493
|
+
same as default
|
|
2494
|
+
}*/
|
|
2495
|
+
.bcc-avatar.lg {
|
|
2496
|
+
@apply text-md size-10;
|
|
2497
|
+
--p-icon-size: var(--icon-size-md);
|
|
2498
|
+
}
|
|
2499
|
+
.bcc-avatar.xl {
|
|
2500
|
+
@apply size-12 text-xl;
|
|
2501
|
+
--p-icon-size: var(--icon-size-lg);
|
|
2502
|
+
}
|
|
2503
|
+
.bcc-avatar.xxl {
|
|
2504
|
+
@apply size-20 text-3xl;
|
|
2505
|
+
--p-icon-size: var(--icon-size-xl);
|
|
2506
|
+
}
|
|
2507
|
+
.bcc-avatar.xxxl {
|
|
2508
|
+
@apply size-24 text-4xl;
|
|
2509
|
+
--p-icon-size: var(--icon-size-xl);
|
|
2510
|
+
}
|
|
2422
2511
|
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2512
|
+
.p-overlaybadge .bcc-avatar.p-avatar-circle.lg ~ .p-badge,
|
|
2513
|
+
.p-overlaybadge .bcc-avatar.p-avatar-circle.xl ~ .p-badge {
|
|
2514
|
+
transform: translate(40%, -40%);
|
|
2515
|
+
}
|
|
2427
2516
|
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2517
|
+
.p-overlaybadge .bcc-avatar.p-avatar-circle.xxxl ~ .p-badge,
|
|
2518
|
+
.p-overlaybadge .bcc-avatar.p-avatar-circle.xxl ~ .p-badge {
|
|
2519
|
+
transform: translate(20%, -20%);
|
|
2520
|
+
}
|
|
2432
2521
|
}
|
|
2433
2522
|
|
|
2434
2523
|
|
|
2524
|
+
|
|
2435
2525
|
/* from ./BccTabs/BccTabs.css */
|
|
2436
2526
|
@layer components {
|
|
2437
2527
|
.bcc-tabs-fill.p-tabs {
|
|
@@ -2450,6 +2540,9 @@
|
|
|
2450
2540
|
height: 100%;
|
|
2451
2541
|
overflow: auto;
|
|
2452
2542
|
}
|
|
2543
|
+
.bcc-tabs-fluid.p-tabs {
|
|
2544
|
+
width: 100%;
|
|
2545
|
+
}
|
|
2453
2546
|
}
|
|
2454
2547
|
|
|
2455
2548
|
|
|
@@ -2478,6 +2571,8 @@
|
|
|
2478
2571
|
@apply m-0 p-0 font-sans antialiased;
|
|
2479
2572
|
-webkit-font-smoothing: antialiased;
|
|
2480
2573
|
-moz-osx-font-smoothing: grayscale;
|
|
2574
|
+
line-height: 1.2;
|
|
2575
|
+
font-kerning: normal;
|
|
2481
2576
|
}
|
|
2482
2577
|
|
|
2483
2578
|
hr {
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import type { VueComponent } from '@/types';
|
|
2
|
+
import { type Component } from 'vue';
|
|
3
|
+
export type BccAppNavigationItem = {
|
|
4
|
+
key: string;
|
|
5
|
+
title: string;
|
|
6
|
+
icon: Component;
|
|
7
|
+
pin?: number;
|
|
8
|
+
/** Any additional properties will be passed to the component.
|
|
9
|
+
* @example
|
|
10
|
+
* {
|
|
11
|
+
* href: '/',
|
|
12
|
+
* target: '_blank',
|
|
13
|
+
* } or for router link:
|
|
14
|
+
* {
|
|
15
|
+
* to: '/',
|
|
16
|
+
* replace: true,
|
|
17
|
+
* }
|
|
18
|
+
*/
|
|
19
|
+
[key: string]: unknown;
|
|
20
|
+
};
|
|
21
|
+
type __VLS_Props = {
|
|
22
|
+
items: BccAppNavigationItem[];
|
|
23
|
+
linkComponent?: VueComponent;
|
|
24
|
+
activeKey?: BccAppNavigationItem['key'] | null;
|
|
25
|
+
};
|
|
26
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
27
|
+
select: (item: BccAppNavigationItem) => any;
|
|
28
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
29
|
+
onSelect?: ((item: BccAppNavigationItem) => any) | undefined;
|
|
30
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
31
|
+
declare const _default: typeof __VLS_export;
|
|
32
|
+
export default _default;
|
|
@@ -13,6 +13,7 @@ export type BadgeProps = {
|
|
|
13
13
|
squared?: boolean;
|
|
14
14
|
/** Design context (e.g. neutral, brand) used for background and text color. */
|
|
15
15
|
context?: BCC_CONTEXT;
|
|
16
|
+
gradient?: boolean;
|
|
16
17
|
};
|
|
17
18
|
declare var __VLS_1: {};
|
|
18
19
|
type __VLS_Slots = {} & {
|
|
@@ -21,6 +22,7 @@ type __VLS_Slots = {} & {
|
|
|
21
22
|
declare const __VLS_base: import("vue").DefineComponent<BadgeProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<BadgeProps> & Readonly<{}>, {
|
|
22
23
|
size: "sm" | "md" | "lg" | "xl";
|
|
23
24
|
context: BCC_CONTEXT;
|
|
25
|
+
gradient: boolean;
|
|
24
26
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
27
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
26
28
|
declare const _default: typeof __VLS_export;
|