sprintify-ui 0.10.74 → 0.10.75

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.
@@ -11580,6 +11580,10 @@ const c0 = {
11580
11580
  select: {
11581
11581
  default: void 0,
11582
11582
  type: Object
11583
+ },
11584
+ icon: {
11585
+ default: void 0,
11586
+ type: String
11583
11587
  }
11584
11588
  },
11585
11589
  emits: ["update:modelValue"],
@@ -11632,6 +11636,7 @@ const c0 = {
11632
11636
  "visible-focus": t.visibleFocus,
11633
11637
  "focus-on-mount": t.focusOnMount,
11634
11638
  select: t.select,
11639
+ icon: t.icon,
11635
11640
  "onUpdate:modelValue": s
11636
11641
  }, {
11637
11642
  option: K((f) => [
@@ -11644,7 +11649,7 @@ const c0 = {
11644
11649
  ue(u.$slots, "footer", ft(pt(f)))
11645
11650
  ]),
11646
11651
  _: 3
11647
- }, 8, ["model-value", "options", "disabled", "name", "placeholder", "required", "value-key", "label-key", "has-error", "inline", "size", "filter", "dropdown-show", "show-model-value", "show-empty-option", "show-remove-button", "empty-option-label", "visible-focus", "focus-on-mount", "select"]));
11652
+ }, 8, ["model-value", "options", "disabled", "name", "placeholder", "required", "value-key", "label-key", "has-error", "inline", "size", "filter", "dropdown-show", "show-model-value", "show-empty-option", "show-remove-button", "empty-option-label", "visible-focus", "focus-on-mount", "select", "icon"]));
11648
11653
  }
11649
11654
  }), x0 = /* @__PURE__ */ te({
11650
11655
  __name: "BaseBelongsToFetch",
@@ -935,6 +935,10 @@ declare const __VLS_self: import("vue").DefineComponent<import("vue").ExtractPro
935
935
  default: undefined;
936
936
  type: PropType<SelectConfiguration | undefined>;
937
937
  };
938
+ icon: {
939
+ default: undefined;
940
+ type: StringConstructor;
941
+ };
938
942
  }>, {
939
943
  BaseAutocomplete: typeof BaseAutocomplete;
940
944
  autocomplete: typeof autocomplete;
@@ -1023,6 +1027,10 @@ declare const __VLS_self: import("vue").DefineComponent<import("vue").ExtractPro
1023
1027
  default: undefined;
1024
1028
  type: PropType<SelectConfiguration | undefined>;
1025
1029
  };
1030
+ icon: {
1031
+ default: undefined;
1032
+ type: StringConstructor;
1033
+ };
1026
1034
  }>> & Readonly<{
1027
1035
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1028
1036
  }>, {
@@ -1030,6 +1038,7 @@ declare const __VLS_self: import("vue").DefineComponent<import("vue").ExtractPro
1030
1038
  select: SelectConfiguration | undefined;
1031
1039
  size: "xs" | "sm" | "md" | "lg" | "xl";
1032
1040
  required: boolean;
1041
+ icon: string;
1033
1042
  inline: boolean;
1034
1043
  disabled: boolean;
1035
1044
  name: string;
@@ -1126,6 +1135,10 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
1126
1135
  default: undefined;
1127
1136
  type: PropType<SelectConfiguration | undefined>;
1128
1137
  };
1138
+ icon: {
1139
+ default: undefined;
1140
+ type: StringConstructor;
1141
+ };
1129
1142
  }>, {
1130
1143
  focus: () => void | undefined;
1131
1144
  blur: () => void | undefined;
@@ -1215,6 +1228,10 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
1215
1228
  default: undefined;
1216
1229
  type: PropType<SelectConfiguration | undefined>;
1217
1230
  };
1231
+ icon: {
1232
+ default: undefined;
1233
+ type: StringConstructor;
1234
+ };
1218
1235
  }>> & Readonly<{
1219
1236
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1220
1237
  }>, {
@@ -1222,6 +1239,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
1222
1239
  select: SelectConfiguration | undefined;
1223
1240
  size: "xs" | "sm" | "md" | "lg" | "xl";
1224
1241
  required: boolean;
1242
+ icon: string;
1225
1243
  inline: boolean;
1226
1244
  disabled: boolean;
1227
1245
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.10.74",
3
+ "version": "0.10.75",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "rimraf dist && vue-tsc && vite build",
@@ -21,6 +21,7 @@
21
21
  :visible-focus="visibleFocus"
22
22
  :focus-on-mount="focusOnMount"
23
23
  :select="select"
24
+ :icon="icon"
24
25
  @update:model-value="onUpdate"
25
26
  >
26
27
  <template #option="optionProps">
@@ -133,6 +134,10 @@ const props = defineProps({
133
134
  default: undefined,
134
135
  type: Object as PropType<SelectConfiguration | undefined>,
135
136
  },
137
+ icon: {
138
+ default: undefined,
139
+ type: String,
140
+ },
136
141
  });
137
142
 
138
143
  const emit = defineEmits(['update:modelValue']);