@bcc-code/component-library-vue 0.6.5 → 0.6.7
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.umd.cjs +1 -1
- package/dist/index.css +1 -1
- package/dist/theme.css +6 -6
- package/dist-types/types.d.ts +2 -0
- package/package.json +1 -1
package/dist/theme.css
CHANGED
|
@@ -648,7 +648,7 @@
|
|
|
648
648
|
|
|
649
649
|
/* Capitalize first letter */
|
|
650
650
|
@utility capital {
|
|
651
|
-
display: inline-
|
|
651
|
+
display: inline-flex;
|
|
652
652
|
&::first-letter {
|
|
653
653
|
text-transform: uppercase;
|
|
654
654
|
}
|
|
@@ -1771,7 +1771,7 @@
|
|
|
1771
1771
|
}
|
|
1772
1772
|
|
|
1773
1773
|
@utility ctx-gradient {
|
|
1774
|
-
background: linear-gradient(225deg, var(--ctx-
|
|
1774
|
+
background: linear-gradient(225deg, var(--ctx-background) 0%, var(--ctx-gradient) 100%);
|
|
1775
1775
|
}
|
|
1776
1776
|
|
|
1777
1777
|
@utility ctx-raised {
|
|
@@ -2350,16 +2350,16 @@
|
|
|
2350
2350
|
@apply w-auto;
|
|
2351
2351
|
}
|
|
2352
2352
|
.bcc-tag.bcc-badge.md {
|
|
2353
|
-
@apply
|
|
2353
|
+
@apply font-regular h-6;
|
|
2354
2354
|
}
|
|
2355
2355
|
.bcc-tag.bcc-badge.sm {
|
|
2356
|
-
@apply
|
|
2356
|
+
@apply font-regular h-5;
|
|
2357
2357
|
}
|
|
2358
2358
|
.bcc-tag.bcc-badge.lg {
|
|
2359
|
-
@apply
|
|
2359
|
+
@apply font-regular h-8;
|
|
2360
2360
|
}
|
|
2361
2361
|
.bcc-tag.bcc-badge.xl {
|
|
2362
|
-
@apply
|
|
2362
|
+
@apply font-regular h-10;
|
|
2363
2363
|
}
|
|
2364
2364
|
}
|
|
2365
2365
|
|
package/dist-types/types.d.ts
CHANGED
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
import type { Component, FunctionalComponent, RenderFunction, VNode } from 'vue';
|
|
2
2
|
export type VueComponent = string | Component | FunctionalComponent | VNode | RenderFunction;
|
|
3
|
+
export type IInterval = ReturnType<typeof setInterval>;
|
|
4
|
+
export type ITimeout = ReturnType<typeof setTimeout>;
|
package/package.json
CHANGED