bonkers-ui 1.0.39 → 1.0.40

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.39",
3
+ "version": "1.0.40",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "storybook": "start-storybook -p 6006",
@@ -17,7 +17,7 @@
17
17
  </div>
18
18
 
19
19
  <div class="grid border border-secondary-alt-400 rounded-2xl overflow-hidden bg-white">
20
- <div class="flex gap-xs justify-between items-center rounded-lg bg-secondary-alt-200 p-xs m-xs mb-sm">
20
+ <div class="ui-card-result__header grid gap-xs justify-between items-center rounded-lg bg-secondary-alt-200 p-xs m-xs mb-sm">
21
21
  <ui-typography
22
22
  v-if="header"
23
23
  line-height
@@ -67,3 +67,9 @@
67
67
  }>();
68
68
 
69
69
  </script>
70
+
71
+ <style scoped>
72
+ .ui-card-result__header {
73
+ grid-template-columns: 1fr auto;
74
+ }
75
+ </style>
@@ -54,7 +54,7 @@
54
54
 
55
55
  withDefaults(defineProps<{
56
56
  placeholder?: string;
57
- modelValue: string;
57
+ modelValue: string | number;
58
58
  disabled?: boolean;
59
59
  kind?: EInputKinds;
60
60
  heading?: string;