@bcc-code/component-library-vue 0.1.0 → 0.2.0
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 +588 -581
- package/dist/component-library.umd.cjs +132 -132
- package/dist/index.css +1 -1
- package/dist/theme.css +4 -0
- package/dist-types/components/custom/BccBadge/BccBadge.vue.d.ts +3 -3
- package/dist-types/components/wrapped/BccTabs.vue.d.ts +1 -0
- package/package.json +1 -1
package/dist/theme.css
CHANGED
|
@@ -5,7 +5,9 @@ export type BadgeProps = {
|
|
|
5
5
|
value?: string | number | VueComponent;
|
|
6
6
|
/** Controls badge dimensions and typography scale (sm through xl). */
|
|
7
7
|
size?: 'sm' | 'md' | 'lg' | 'xl';
|
|
8
|
-
/** Adds a border around the badge. */
|
|
8
|
+
/** Adds a 1px border around the badge. */
|
|
9
|
+
border?: boolean;
|
|
10
|
+
/** Adds a 2px border around the badge. */
|
|
9
11
|
bordered?: boolean;
|
|
10
12
|
/** Renders with square corners; when false, badge is pill-shaped. */
|
|
11
13
|
squared?: boolean;
|
|
@@ -18,8 +20,6 @@ type __VLS_Slots = {} & {
|
|
|
18
20
|
};
|
|
19
21
|
declare const __VLS_base: import("vue").DefineComponent<BadgeProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<BadgeProps> & Readonly<{}>, {
|
|
20
22
|
size: "sm" | "md" | "lg" | "xl";
|
|
21
|
-
squared: boolean;
|
|
22
|
-
bordered: boolean;
|
|
23
23
|
context: BCC_CONTEXT;
|
|
24
24
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
25
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
package/package.json
CHANGED