@fewangsit/wangsvue-presets 1.0.96-alpha.9 → 1.0.96

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.
@@ -4,13 +4,10 @@ declare namespace _default {
4
4
  'data-wv-name': string;
5
5
  'data-wv-section': string;
6
6
  };
7
- function label({ props, slots }: {
7
+ function label({ props }: {
8
8
  props: any;
9
- slots: any;
10
9
  }): {
11
- class: (any[] | {
12
- 'w-full': any;
13
- })[];
10
+ class: any[][];
14
11
  'data-wv-section': string;
15
12
  };
16
13
  namespace info {
@@ -9,16 +9,13 @@ exports.default = {
9
9
  'data-wv-section': 'root',
10
10
  },
11
11
  label: function (_a) {
12
- var props = _a.props, slots = _a.slots;
12
+ var props = _a.props;
13
13
  return ({
14
14
  'class': [
15
15
  [
16
16
  'text-general-900 text-xs flex gap-[2px] font-medium tracking-[0.02em]',
17
17
  props.labelClass,
18
18
  ],
19
- {
20
- 'w-full': slots['label-addon']
21
- }
22
19
  ],
23
20
  'data-wv-section': 'fieldlabel',
24
21
  });