@300codes/design-system 1.2.14 → 1.2.16

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": "@300codes/design-system",
3
- "version": "1.2.14",
3
+ "version": "1.2.16",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src/components",
@@ -42,7 +42,7 @@ const model = defineModel<boolean>({ required: true });
42
42
  :class="[
43
43
  'checkboxInput__label',
44
44
  { 'checkboxInput__label--disabled': disabled },
45
- 'flex items-center cursor-pointer select-none',
45
+ 'flex cursor-pointer select-none',
46
46
  ]"
47
47
  :for="id || name"
48
48
  >
@@ -67,7 +67,7 @@ const model = defineModel<boolean>({ required: true });
67
67
 
68
68
  <span
69
69
  v-if="$slots.default"
70
- class="checkboxInput__text"
70
+ class="checkboxInput__text pt-0.5"
71
71
  >
72
72
  <slot />
73
73
  </span>
@@ -36,6 +36,7 @@ const props = withDefaults(defineProps<TextInputProps>(), {
36
36
  placeholder: '',
37
37
  size: 'md',
38
38
  id: undefined,
39
+ invalid: undefined,
39
40
  iconLeft: undefined,
40
41
  iconRight: undefined,
41
42
  autocomplete: undefined,