@soft-stech/bootsman-ui-shadcn 2.0.18 → 2.0.19
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/{BuiLabel.vue_vue_type_script_setup_true_lang-ButmDUBo.js → BuiLabel.vue_vue_type_script_setup_true_lang-Caoy1lRM.js} +4 -4
- package/dist/components/label/BuiLabel.js +1 -1
- package/dist/components/label/index.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/components/label/BuiLabel.vue +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as r, createBlock as a, openBlock as l, unref as t, mergeProps as n, withCtx as c, renderSlot as f } from "vue";
|
|
2
2
|
import { L as p, g as m } from "./utils-DhVytAXN.js";
|
|
3
|
-
const _ = /* @__PURE__ */
|
|
3
|
+
const _ = /* @__PURE__ */ r({
|
|
4
4
|
__name: "BuiLabel",
|
|
5
5
|
props: {
|
|
6
6
|
for: {},
|
|
@@ -10,8 +10,8 @@ const _ = /* @__PURE__ */ a({
|
|
|
10
10
|
},
|
|
11
11
|
setup(o) {
|
|
12
12
|
const e = o;
|
|
13
|
-
return (s,
|
|
14
|
-
class: t(m)("block text-left text-sm font-
|
|
13
|
+
return (s, i) => (l(), a(t(p), n(e, {
|
|
14
|
+
class: t(m)("text-foreground block text-left text-sm font-medium tracking-tight", e.class)
|
|
15
15
|
}), {
|
|
16
16
|
default: c(() => [
|
|
17
17
|
f(s.$slots, "default")
|
package/dist/index.js
CHANGED
|
@@ -73,7 +73,7 @@ import { _ as Xr } from "./BuiHoverCard.vue_vue_type_script_setup_true_lang-dyFX
|
|
|
73
73
|
import { _ as $r } from "./BuiHoverCardTrigger.vue_vue_type_script_setup_true_lang-oW_qfx8F.js";
|
|
74
74
|
import { _ as re } from "./BuiHoverCardContent.vue_vue_type_script_setup_true_lang-DVBNDG14.js";
|
|
75
75
|
import { BuiBadgedInput as te, BuiColorInput as ae, BuiInput as ie, BuiPasswordInput as ue, inputVariants as se } from "./components/input/index.js";
|
|
76
|
-
import { _ as me } from "./BuiLabel.vue_vue_type_script_setup_true_lang-
|
|
76
|
+
import { _ as me } from "./BuiLabel.vue_vue_type_script_setup_true_lang-Caoy1lRM.js";
|
|
77
77
|
import { _ as Be, P as ne } from "./BuiPaginationCommon.vue_vue_type_script_setup_true_lang-DhSRYKth.js";
|
|
78
78
|
import { _ as _e } from "./BuiPaginationFirst.vue_vue_type_script_setup_true_lang-CQIWuH4J.js";
|
|
79
79
|
import { _ as ge } from "./BuiPaginationLast.vue_vue_type_script_setup_true_lang-DPHBc8bO.js";
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@ const props = defineProps<LabelProps & { class?: string }>()
|
|
|
8
8
|
<template>
|
|
9
9
|
<Label
|
|
10
10
|
v-bind="props"
|
|
11
|
-
:class="cn('block text-left text-sm font-
|
|
11
|
+
:class="cn('text-foreground block text-left text-sm font-medium tracking-tight', props.class)"
|
|
12
12
|
>
|
|
13
13
|
<slot />
|
|
14
14
|
</Label>
|