@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/theme.css CHANGED
@@ -2232,6 +2232,10 @@
2232
2232
  @apply size-full;
2233
2233
  }
2234
2234
 
2235
+ .bcc-badge.border {
2236
+ @apply border-1;
2237
+ border-color: var(--ctx-background-pressed);
2238
+ }
2235
2239
  .bcc-badge.bordered {
2236
2240
  @apply border-2;
2237
2241
  border-color: var(--ctx-background-pressed);
@@ -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>;
@@ -10,6 +10,7 @@ export interface TabItem {
10
10
  }
11
11
  export type TabsProps = Omit<PrimeTabsProps, 'value'> & {
12
12
  tabs: TabItem[];
13
+ fill?: boolean;
13
14
  modelValue?: number;
14
15
  noPanels?: boolean;
15
16
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bcc-code/component-library-vue",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
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",