tide-design-system 2.0.43 → 2.0.44

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.
@@ -1394,7 +1394,7 @@ declare type Props_2 = {
1394
1394
  alt: string;
1395
1395
  isLazy: boolean;
1396
1396
  sources?: Source[];
1397
- src: string;
1397
+ src?: string;
1398
1398
  };
1399
1399
 
1400
1400
  declare interface Props_20 extends SelectField {
@@ -1749,14 +1749,17 @@ export declare const TideBackgroundImage: __VLS_WithTemplateSlots_3<DefineCompon
1749
1749
  alt: string;
1750
1750
  isLazy: boolean;
1751
1751
  sources: () => never[];
1752
+ src: undefined;
1752
1753
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_2<__VLS_TypePropsToOption_2<Props_2>, {
1753
1754
  alt: string;
1754
1755
  isLazy: boolean;
1755
1756
  sources: () => never[];
1757
+ src: undefined;
1756
1758
  }>>>, {
1757
1759
  alt: string;
1758
1760
  isLazy: boolean;
1759
1761
  sources: Source[];
1762
+ src: string;
1760
1763
  }, {}>, {
1761
1764
  default?(_: {}): any;
1762
1765
  }>;
@@ -902,7 +902,7 @@ const Bt = /* @__PURE__ */ C(be, [["__scopeId", "data-v-279a5605"]]), ye = {
902
902
  alt: { default: "" },
903
903
  isLazy: { type: Boolean, default: !0 },
904
904
  sources: { default: () => [] },
905
- src: {}
905
+ src: { default: void 0 }
906
906
  },
907
907
  setup(o) {
908
908
  const i = o;
@@ -931,7 +931,7 @@ const Bt = /* @__PURE__ */ C(be, [["__scopeId", "data-v-279a5605"]]), ye = {
931
931
  ], 2));
932
932
  }
933
933
  });
934
- const Xt = /* @__PURE__ */ C(We, [["__scopeId", "data-v-37b45c39"]]), Wt = /* @__PURE__ */ L({
934
+ const Xt = /* @__PURE__ */ C(We, [["__scopeId", "data-v-092da9db"]]), Wt = /* @__PURE__ */ L({
935
935
  __name: "TideBadge",
936
936
  props: {
937
937
  label: {}
package/package.json CHANGED
@@ -54,5 +54,5 @@
54
54
  "main": "dist/tide-design-system.cjs",
55
55
  "module": "dist/tide-design-system.esm.js",
56
56
  "types": "dist/tide-design-system.esm.d.ts",
57
- "version": "2.0.43"
57
+ "version": "2.0.44"
58
58
  }
@@ -8,13 +8,14 @@
8
8
  alt: string;
9
9
  isLazy: boolean;
10
10
  sources?: Source[];
11
- src: string;
11
+ src?: string;
12
12
  };
13
13
 
14
14
  const props = withDefaults(defineProps<Props>(), {
15
15
  alt: '',
16
16
  isLazy: true,
17
17
  sources: () => [],
18
+ src: undefined,
18
19
  });
19
20
  </script>
20
21