@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 +5 -2
- package/dist/DataViewFilters.vue.d.ts +1 -1
- package/dist/ListView.vue.d.ts +2 -2
- package/dist/RadioGroup.vue.d.ts +1 -1
- package/dist/Step.vue.d.ts +1 -1
- package/dist/Stepper.vue.d.ts +1 -1
- package/package.json +3 -3
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
|
|
387
|
-
|
|
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
|
}>, {
|
package/dist/ListView.vue.d.ts
CHANGED
|
@@ -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< {
|
package/dist/RadioGroup.vue.d.ts
CHANGED
|
@@ -58,7 +58,7 @@ options: RadioGroupOption[];
|
|
|
58
58
|
modelValue: string;
|
|
59
59
|
variant: "button" | "radio" | "tile" | "chip";
|
|
60
60
|
fullWidth: boolean;
|
|
61
|
-
orientation: "
|
|
61
|
+
orientation: "horizontal" | "vertical";
|
|
62
62
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
|
|
63
63
|
default?(_: {}): any;
|
|
64
64
|
}>;
|
package/dist/Step.vue.d.ts
CHANGED
package/dist/Stepper.vue.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leaflink/stash",
|
|
3
|
-
"version": "53.4.
|
|
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
|
|
127
|
+
"vue": "^3.5.28",
|
|
128
|
+
"vue-router": "^4.6.4"
|
|
129
129
|
},
|
|
130
130
|
"peerDependenciesMeta": {
|
|
131
131
|
"@leaflink/snitch": {
|