vue-layout-gitcode 1.3.2 → 1.3.4
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/{GloabarSearch-BCQw3CFX.js → GloabarSearch-CWp399rn.js} +2 -2
- package/{ProjectSearch-cRtWR1nm.js → ProjectSearch-BZRnJoQX.js} +1 -1
- package/{SearchHistoryList-Bq1GLhLn.js → SearchHistoryList-BpXxu789.js} +1 -1
- package/{SearchPrefixTag-BHBc4IHo.js → SearchPrefixTag-b0VY74dd.js} +1 -1
- package/{SearchRecommed-DUEj-REF.js → SearchRecommed-CR_zPDBu.js} +2 -2
- package/{SearchScopeList-DtNJJC9z.js → SearchScopeList-BvcFcjUv.js} +1 -1
- package/{UserSearch-DxxVlIie.js → UserSearch-BSgYNwv-.js} +1 -1
- package/{index-BGQbIqtf.js → index-C37aHH8x.js} +208 -151
- package/{index-DN4X76li.js → index-C87NgTF6.js} +1 -1
- package/{index-D8pY293x.js → index-ExeTEcC8.js} +1 -1
- package/index.d.ts +24 -2
- package/index.js +1 -1
- package/{notice-DyrJkOdX.js → notice-PGiT3J9W.js} +1 -1
- package/package.json +1 -1
- package/style.css +1 -1
package/index.d.ts
CHANGED
|
@@ -96,7 +96,7 @@ export declare const GitCodeAside: DefineComponent<ExtractPropTypes<{
|
|
|
96
96
|
customError?: boolean | undefined;
|
|
97
97
|
customTimeout?: number | undefined;
|
|
98
98
|
ignoreError?: boolean | undefined;
|
|
99
|
-
customErrorCodes?: number[] | undefined;
|
|
99
|
+
customErrorCodes?: number[] | undefined; /** 场景值 核心参数之一 */
|
|
100
100
|
} | undefined) => Promise<AxiosResponse<any, any>>;
|
|
101
101
|
};
|
|
102
102
|
globalStore: {
|
|
@@ -129,6 +129,16 @@ export declare const GitCodeAside: DefineComponent<ExtractPropTypes<{
|
|
|
129
129
|
skipCheck: boolean;
|
|
130
130
|
default: undefined;
|
|
131
131
|
};
|
|
132
|
+
collapseMode: {
|
|
133
|
+
type: PropType<boolean | undefined>;
|
|
134
|
+
required: false;
|
|
135
|
+
default: boolean;
|
|
136
|
+
};
|
|
137
|
+
slotKeys: {
|
|
138
|
+
type: PropType<string[] | undefined>;
|
|
139
|
+
required: false;
|
|
140
|
+
default: () => never[];
|
|
141
|
+
};
|
|
132
142
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<{
|
|
133
143
|
sceneValue: {
|
|
134
144
|
type: PropType<SceneValue>;
|
|
@@ -156,7 +166,7 @@ export declare const GitCodeAside: DefineComponent<ExtractPropTypes<{
|
|
|
156
166
|
customError?: boolean | undefined;
|
|
157
167
|
customTimeout?: number | undefined;
|
|
158
168
|
ignoreError?: boolean | undefined;
|
|
159
|
-
customErrorCodes?: number[] | undefined;
|
|
169
|
+
customErrorCodes?: number[] | undefined; /** 场景值 核心参数之一 */
|
|
160
170
|
} | undefined) => Promise<AxiosResponse<any, any>>;
|
|
161
171
|
};
|
|
162
172
|
globalStore: {
|
|
@@ -189,6 +199,16 @@ export declare const GitCodeAside: DefineComponent<ExtractPropTypes<{
|
|
|
189
199
|
skipCheck: boolean;
|
|
190
200
|
default: undefined;
|
|
191
201
|
};
|
|
202
|
+
collapseMode: {
|
|
203
|
+
type: PropType<boolean | undefined>;
|
|
204
|
+
required: false;
|
|
205
|
+
default: boolean;
|
|
206
|
+
};
|
|
207
|
+
slotKeys: {
|
|
208
|
+
type: PropType<string[] | undefined>;
|
|
209
|
+
required: false;
|
|
210
|
+
default: () => never[];
|
|
211
|
+
};
|
|
192
212
|
}>> & Readonly<{}>, {
|
|
193
213
|
sceneValue: SceneValue;
|
|
194
214
|
request: Function;
|
|
@@ -199,6 +219,8 @@ export declare const GitCodeAside: DefineComponent<ExtractPropTypes<{
|
|
|
199
219
|
showPreferencesSetting: boolean | undefined;
|
|
200
220
|
showThemeSetting: boolean | undefined;
|
|
201
221
|
showLangSetting: boolean | undefined;
|
|
222
|
+
collapseMode: boolean | undefined;
|
|
223
|
+
slotKeys: string[] | undefined;
|
|
202
224
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
203
225
|
|
|
204
226
|
export declare const GitCodeHeader: DefineComponent<ExtractPropTypes<{
|
package/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, computed, createBlock, openBlock, unref, isRef, withCtx, createElementVNode, normalizeClass, createVNode, createTextVNode } from "vue";
|
|
2
|
-
import { i as isPhone, u as useModel } from "./index-
|
|
2
|
+
import { i as isPhone, u as useModel } from "./index-C37aHH8x.js";
|
|
3
3
|
import { Notification } from "vue-devui-lal/notification";
|
|
4
4
|
import { Button } from "vue-devui-lal/button";
|
|
5
5
|
import "vue-devui-lal/notification/style.css";
|