@clownlee/cores 1.0.22 → 1.0.24
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/dist/assets/demo.css +539 -539
- package/dist/assets/iconfont.css +2191 -2191
- package/dist/index.js +157 -41
- package/dist/ui/select-load-more/select-load-more.vue.d.ts +9 -0
- package/package.json +2 -2
|
@@ -33,6 +33,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
33
33
|
type: import('vue').PropType<string>;
|
|
34
34
|
default: string;
|
|
35
35
|
};
|
|
36
|
+
moreTriggerMethod: {
|
|
37
|
+
type: import('vue').PropType<"click" | "scroll">;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
36
40
|
}>, {
|
|
37
41
|
/** 重置页码 */
|
|
38
42
|
resetPage: () => void;
|
|
@@ -78,6 +82,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
78
82
|
type: import('vue').PropType<string>;
|
|
79
83
|
default: string;
|
|
80
84
|
};
|
|
85
|
+
moreTriggerMethod: {
|
|
86
|
+
type: import('vue').PropType<"click" | "scroll">;
|
|
87
|
+
default: string;
|
|
88
|
+
};
|
|
81
89
|
}>> & Readonly<{
|
|
82
90
|
onFilter?: ((params: {
|
|
83
91
|
query: string;
|
|
@@ -94,6 +102,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
94
102
|
valueKey: string;
|
|
95
103
|
labelKey: string;
|
|
96
104
|
disabledKey: string;
|
|
105
|
+
moreTriggerMethod: "scroll" | "click";
|
|
97
106
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
98
107
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
99
108
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clownlee/cores",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.24",
|
|
4
4
|
"description": "公共核心库,提供统一的 HTTP 请求能力和自动 token 刷新功能",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"author": "",
|
|
31
31
|
"license": "MIT",
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@clownlee/http": "^1.0.
|
|
33
|
+
"@clownlee/http": "^1.0.9",
|
|
34
34
|
"pinia": "^2.1.7",
|
|
35
35
|
"vue": "^3.5.25",
|
|
36
36
|
"cropper": "^4.1.0",
|