sprintify-ui 0.0.172 → 0.0.173

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.
@@ -23,10 +23,10 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
23
23
  }>>> & {
24
24
  "onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
25
25
  }, {
26
- countries: Country[];
27
- regions: Region[];
28
26
  modelValue: Record<string, string | number | null | undefined>;
29
27
  prefix: string | null;
28
+ countries: Country[];
29
+ regions: Region[];
30
30
  }>;
31
31
  export default _default;
32
32
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -50,8 +50,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
50
50
  type: StringConstructor;
51
51
  };
52
52
  }>>, {
53
- as: string;
54
53
  showTooltip: boolean;
54
+ as: string;
55
55
  tooltipPosition: "left" | "right" | "top" | "bottom";
56
56
  tooltipSize: "small" | "large" | "medium";
57
57
  timeZone: string;
@@ -13,7 +13,7 @@ declare const _default: import("vue").DefineComponent<{
13
13
  };
14
14
  component: {
15
15
  default: string;
16
- type: PropType<"BaseInput" | "BaseTextarea">;
16
+ type: PropType<"BaseTextarea" | "BaseInput">;
17
17
  };
18
18
  componentProps: {
19
19
  default: undefined;
@@ -52,7 +52,7 @@ declare const _default: import("vue").DefineComponent<{
52
52
  };
53
53
  component: {
54
54
  default: string;
55
- type: PropType<"BaseInput" | "BaseTextarea">;
55
+ type: PropType<"BaseTextarea" | "BaseInput">;
56
56
  };
57
57
  componentProps: {
58
58
  default: undefined;
@@ -84,13 +84,13 @@ declare const _default: import("vue").DefineComponent<{
84
84
  label: string;
85
85
  required: boolean;
86
86
  name: string;
87
- locales: Locales;
88
87
  defaultValue: string | number | boolean;
89
88
  modelValue: {
90
89
  [locale: string]: string | number | boolean;
91
90
  } | null;
92
91
  hasError: boolean;
93
- component: "BaseInput" | "BaseTextarea";
92
+ component: "BaseTextarea" | "BaseInput";
93
+ locales: Locales;
94
94
  componentProps: Record<string, any>;
95
95
  }>;
96
96
  export default _default;
@@ -87,11 +87,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
87
87
  }, {
88
88
  required: boolean;
89
89
  name: string;
90
+ labelClass: string;
90
91
  disabled: boolean;
91
92
  modelValue: OptionValue | undefined;
92
93
  hasError: boolean;
93
94
  inputClass: string;
94
- labelClass: string;
95
95
  }>, {
96
96
  option: (_: {
97
97
  option: NormalizedOption;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.0.172",
3
+ "version": "0.0.173",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build-fast": "rimraf dist && vite build",
@@ -7,13 +7,12 @@
7
7
  @mouseleave="showTooltip = false"
8
8
  >
9
9
  <span> {{ label }}</span>
10
- <!--
10
+
11
11
  <BaseIcon
12
12
  v-if="help"
13
13
  class="relative bottom-px ml-1 inline h-4 w-4 text-slate-400"
14
14
  icon="heroicons:question-mark-circle-20-solid"
15
15
  />
16
- -->
17
16
 
18
17
  <span v-if="required" class="ml-0.5 text-red-600"> *</span>
19
18
 
@@ -42,7 +41,7 @@
42
41
 
43
42
  <script lang="ts">
44
43
  import { defineComponent, PropType } from 'vue';
45
- import { BaseIcon } from '.';
44
+ import { Icon as BaseIcon } from '@iconify/vue';
46
45
 
47
46
  export default defineComponent({
48
47
  components: { BaseIcon },