bonkers-ui 1.0.31 → 1.0.33

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bonkers-ui",
3
- "version": "1.0.31",
3
+ "version": "1.0.33",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "storybook": "start-storybook -p 6006",
@@ -5,7 +5,7 @@ export enum EIconType {
5
5
  FAL = "fal",
6
6
  FAD = "fad",
7
7
  FAT = "fat",
8
- BRAND = "brand",
8
+ BRANDS = "brands",
9
9
  }
10
10
 
11
11
  export type TIconName = [EIconType, string];
@@ -8,13 +8,14 @@
8
8
  type="radio"
9
9
  :name="name"
10
10
  :value="value"
11
- class="peer group appearance-none absolute"
11
+ class="peer group appearance-none absolute invisible"
12
12
  >
13
13
  <div
14
14
  class="
15
15
  ui-radio-fancy__content
16
16
  box-border
17
17
  w-full
18
+ h-full
18
19
  py-sm px-sm
19
20
  border
20
21
  border-secondary-alt-500
@@ -1,4 +1,3 @@
1
- export { default } from "./ui-table.vue";
2
1
  export { ETextAlign, ETextWeight } from "../ui-typography";
3
2
  export { default as UiTableCell } from "./ui-table-cell";
4
3
  export { default as UiTableRow, ERowKind } from "./ui-table-row";
@@ -3,7 +3,6 @@
3
3
  :is="is || 'p'"
4
4
  class="ui-typography"
5
5
  :class="[
6
- 'leading-none',
7
6
  size === ETypographySizes.MD && 'text-md',
8
7
  size === ETypographySizes.XS && 'text-xs',
9
8
  size === ETypographySizes.SM && 'text-sm',
@@ -84,7 +83,7 @@
84
83
  textTransform === ETextTransform.LOWERCASE && 'lowercase',
85
84
  textTransform === ETextTransform.UPPERCASE && 'uppercase',
86
85
 
87
- lineHeight && 'leading-4',
86
+ lineHeight ? 'leading-normal' : 'leading-none',
88
87
  underline && 'underline',
89
88
  ]"
90
89
  >