@bcc-code/component-library-vue 0.0.0-dev.29c9655 → 0.0.0-dev.2a59bd6
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/theme.css
CHANGED
|
@@ -1974,7 +1974,7 @@
|
|
|
1974
1974
|
}
|
|
1975
1975
|
|
|
1976
1976
|
.bcc-nav-item-title {
|
|
1977
|
-
@apply
|
|
1977
|
+
@apply heading-xs text-center text-subtlest opacity-75;
|
|
1978
1978
|
}
|
|
1979
1979
|
|
|
1980
1980
|
.bcc-app-nav-item--active .bcc-nav-item-title {
|
|
@@ -1999,16 +1999,16 @@
|
|
|
1999
1999
|
@apply ctx-gradient;
|
|
2000
2000
|
}
|
|
2001
2001
|
.bcc-badge.sm {
|
|
2002
|
-
@apply
|
|
2002
|
+
@apply heading-xs h-4 w-4;
|
|
2003
2003
|
}
|
|
2004
2004
|
.bcc-badge.md {
|
|
2005
|
-
@apply
|
|
2005
|
+
@apply heading-sm h-5 w-5;
|
|
2006
2006
|
}
|
|
2007
2007
|
.bcc-badge.lg {
|
|
2008
|
-
@apply
|
|
2008
|
+
@apply heading-md h-6 w-6;
|
|
2009
2009
|
}
|
|
2010
2010
|
.bcc-badge.xl {
|
|
2011
|
-
@apply
|
|
2011
|
+
@apply heading-md h-8 w-8;
|
|
2012
2012
|
}
|
|
2013
2013
|
|
|
2014
2014
|
.bcc-badge .bcc-badge-icon {
|
|
@@ -2140,40 +2140,43 @@
|
|
|
2140
2140
|
|
|
2141
2141
|
/* from ./BccFrame/BccFrame.css */
|
|
2142
2142
|
@layer components {
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
|
|
2143
|
+
.bcc-frame {
|
|
2144
|
+
@apply ctx ctx-default w-full border border-transparent;
|
|
2145
|
+
}
|
|
2146
2146
|
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2147
|
+
.bcc-frame.bcc-frame--shadow {
|
|
2148
|
+
@apply shadow-ctx shadow;
|
|
2149
|
+
}
|
|
2150
2150
|
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2151
|
+
.bcc-frame--raised {
|
|
2152
|
+
--ctx-background: var(--color-elevation-surface-raised-default);
|
|
2153
|
+
}
|
|
2154
|
+
.bcc-frame--rounded {
|
|
2155
|
+
@apply rounded-md;
|
|
2156
|
+
}
|
|
2157
|
+
.bcc-frame--raised.bcc-frame--shadow {
|
|
2158
|
+
@apply shadow-raised dark:border-default;
|
|
2159
|
+
}
|
|
2160
2160
|
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
|
|
2161
|
+
.bcc-frame--overlay {
|
|
2162
|
+
--ctx-background: var(--color-elevation-surface-overlay-default);
|
|
2163
|
+
@apply border;
|
|
2164
|
+
}
|
|
2165
|
+
.bcc-frame--overlay.bcc-frame--shadow {
|
|
2166
|
+
@apply shadow-overlay dark:border-default;
|
|
2167
|
+
}
|
|
2167
2168
|
|
|
2168
|
-
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
|
|
2169
|
+
.bcc-frame--sunken {
|
|
2170
|
+
--ctx-background: var(--color-elevation-surface-sunken-default);
|
|
2171
|
+
@apply border;
|
|
2172
|
+
}
|
|
2173
|
+
.bcc-frame--sunken.bcc-frame--shadow {
|
|
2174
|
+
@apply dark:border-default shadow-inner;
|
|
2175
|
+
}
|
|
2174
2176
|
}
|
|
2175
2177
|
|
|
2176
2178
|
|
|
2179
|
+
|
|
2177
2180
|
/* from ./BccGraphic/BccGraphic.css */
|
|
2178
2181
|
@layer components {
|
|
2179
2182
|
.bcc-graphic .corner,
|
|
@@ -9,6 +9,8 @@ export type GraphicProps = {
|
|
|
9
9
|
ratio?: AspectRatioStyle;
|
|
10
10
|
/** When true, renders the banner image in grayscale. */
|
|
11
11
|
grayscale?: boolean;
|
|
12
|
+
/** When true, renders the banner image with a brightness of 150%. */
|
|
13
|
+
highlight?: boolean;
|
|
12
14
|
};
|
|
13
15
|
export declare const ratioClasses: {
|
|
14
16
|
ultraWide: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bcc-code/component-library-vue",
|
|
3
|
-
"version": "0.0.0-dev.
|
|
3
|
+
"version": "0.0.0-dev.2a59bd6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Extended Vue component library based on PrimeVue and BCC design tokens",
|
|
6
6
|
"repository": "https://github.com/bcc-code/bcc-design.git",
|