@leaflink/stash 53.4.2 → 53.4.3

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/README.md CHANGED
@@ -383,8 +383,11 @@ package itself.
383
383
  - `tailwindcss`: Our utility-first CSS framework used for building our responsive and customizable components. Required
384
384
  compatibility with this package on version **^4.x.x**.
385
385
 
386
- - `vue-router`: The official router for Vue.js applications. Required compatibility with this package on version
387
- **^4.x** or higher.
386
+ - `vue`: **^3.5.28** or higher. Older Vue versions (e.g. 3.5.13) can cause type errors when used with this package and
387
+ other dependencies; consumers should use 3.5.28+ so the whole dependency tree uses a single compatible Vue.
388
+
389
+ - `vue-router`: The official router for Vue.js applications. Required **^4.6.4** or higher. Older versions (4.0–4.5)
390
+ ship Vue types that conflict with Vue 3.5.28+ and cause TypeScript errors.
388
391
 
389
392
  These peer dependencies need to be installed separately by the consumer of the package, ensuring that the correct
390
393
  versions are used to maintain compatibility and avoid conflicts with other dependencies in the project.
@@ -107,8 +107,8 @@ onApply: undefined;
107
107
  activeGroup: undefined;
108
108
  }>>> & Readonly<{
109
109
  onDismiss?: (() => any) | undefined;
110
- "onOpen-drawer"?: (() => any) | undefined;
111
110
  onPrevious?: (() => any) | undefined;
111
+ "onOpen-drawer"?: (() => any) | undefined;
112
112
  "onReset-group"?: (() => any) | undefined;
113
113
  "onReset-all"?: (() => any) | undefined;
114
114
  }>, {
@@ -3503,8 +3503,8 @@ default: () => never[];
3503
3503
  };
3504
3504
  }>> & Readonly<{}>, {
3505
3505
  loading: boolean;
3506
- emptyStateText: string;
3507
3506
  results: unknown[];
3507
+ emptyStateText: string;
3508
3508
  }, {}, {
3509
3509
  EmptyState: {
3510
3510
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
@@ -5301,8 +5301,8 @@ default: () => never[];
5301
5301
  };
5302
5302
  }>> & Readonly<{}>, {
5303
5303
  loading: boolean;
5304
- emptyStateText: string;
5305
5304
  results: unknown[];
5305
+ emptyStateText: string;
5306
5306
  }, {}, {
5307
5307
  EmptyState: {
5308
5308
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
@@ -58,7 +58,7 @@ options: RadioGroupOption[];
58
58
  modelValue: string;
59
59
  variant: "button" | "radio" | "tile" | "chip";
60
60
  fullWidth: boolean;
61
- orientation: "vertical" | "horizontal";
61
+ orientation: "horizontal" | "vertical";
62
62
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
63
63
  default?(_: {}): any;
64
64
  }>;
@@ -52,8 +52,8 @@ loading: boolean;
52
52
  error: boolean;
53
53
  disabled: boolean;
54
54
  loading: boolean;
55
- active: boolean;
56
55
  step: string;
56
+ active: boolean;
57
57
  nested: boolean;
58
58
  completed: boolean;
59
59
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
@@ -62,7 +62,7 @@ useResponsiveNav: boolean;
62
62
  }>, {
63
63
  step: number;
64
64
  theme: StepperTheme;
65
- orientation: "vertical" | "horizontal";
65
+ orientation: "horizontal" | "vertical";
66
66
  substep: number;
67
67
  linear: boolean;
68
68
  useResponsiveNav: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leaflink/stash",
3
- "version": "53.4.2",
3
+ "version": "53.4.3",
4
4
  "description": "LeafLink's design system.",
5
5
  "homepage": "https://stash.leaflink.com",
6
6
  "main": "./dist/index.ts",
@@ -84,7 +84,6 @@
84
84
  "fuzzysort": "3.0.2",
85
85
  "sanitize-html": "2.13.0",
86
86
  "v-calendar": "3.1.2",
87
- "vue": "3.5.28",
88
87
  "vue-currency-input": "3.1.0",
89
88
  "vue-inline-svg": "3.1.4",
90
89
  "vue3-carousel": "0.3.4",
@@ -125,7 +124,8 @@
125
124
  "peerDependencies": {
126
125
  "lodash-es": "^4.x.x",
127
126
  "tailwindcss": "^4.x.x",
128
- "vue-router": "^4.x.x"
127
+ "vue": "^3.5.28",
128
+ "vue-router": "^4.6.4"
129
129
  },
130
130
  "peerDependenciesMeta": {
131
131
  "@leaflink/snitch": {