vue-layout-gitcode 1.9.53 → 1.9.55
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-D7b4NrGu.js → GloabarSearch-H3vDxme0.js} +3 -3
- package/{MenuItem-NXCr4K25.js → MenuItem-CzvnmAxx.js} +1 -1
- package/{ProjectMenuList-Fh5qV4eA.js → ProjectMenuList-Dk2MZ4OP.js} +4 -4
- package/{ProjectMenuListV2-g8GW_Fx8.js → ProjectMenuListV2-VW3DEFfH.js} +3 -3
- package/{ProjectSearch-BZpDrC6-.js → ProjectSearch-DrgUNf2c.js} +1 -1
- package/{SearchHistoryList-gD4XlWI-.js → SearchHistoryList-Cd2uW6rE.js} +1 -1
- package/{SearchPrefixTag-DTDUKd0T.js → SearchPrefixTag-5Zk19uBK.js} +1 -1
- package/{SearchRecommed-DoFx6I6g.js → SearchRecommed-C0zBe2PT.js} +2 -2
- package/{SearchScopeList-803XzJrl.js → SearchScopeList-DQc6OI01.js} +1 -1
- package/{UserSearch-jO_8UINd.js → UserSearch-CxTf3KKJ.js} +11 -2
- package/{index-DmK6EVbR.js → index-B9QNtqtc.js} +9 -6
- package/{index-lHH4eI3c.js → index-BJ_tDUmJ.js} +1 -1
- package/{index-CTBLbh6u.js → index-BSgfb2Bf.js} +3 -2
- package/{index-D33NzfYP.js → index-Yj0ntzfM.js} +1183 -668
- package/index.d.ts +2 -0
- package/index.js +12 -11
- package/{notice-BJPAGOXm.js → notice-ZbkZMqvf.js} +5 -3
- package/package.json +2 -2
- package/style.css +1 -1
- package/{transWebUrl-BlGsld3x.js → transWebUrl-3xQ-ZU7Y.js} +1 -1
package/index.d.ts
CHANGED
|
@@ -593,6 +593,8 @@ export declare function setLayoutConfig(customConfig: BaseLayoutConfig): void;
|
|
|
593
593
|
|
|
594
594
|
export { setTheme }
|
|
595
595
|
|
|
596
|
+
export declare const SiteAnnouncement: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
597
|
+
|
|
596
598
|
export declare const ToolsFloat: DefineComponent<ExtractPropTypes<{
|
|
597
599
|
sceneValue: {
|
|
598
600
|
type: PropType<SceneValue>;
|
package/index.js
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { M, N, U, K, S, O, J, A, W, Q, V, P } from "./index-Yj0ntzfM.js";
|
|
2
2
|
export {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
M as GitCodeAside,
|
|
4
|
+
N as GitCodeHeader,
|
|
5
|
+
U as GitCodeLayoutEmitter,
|
|
6
|
+
K as Login,
|
|
7
7
|
S as SceneValue,
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
Q as
|
|
13
|
-
|
|
8
|
+
O as SiteAnnouncement,
|
|
9
|
+
J as ToolsFloat,
|
|
10
|
+
A as currentTheme,
|
|
11
|
+
W as default,
|
|
12
|
+
Q as setLayoutConfig,
|
|
13
|
+
V as setTheme,
|
|
14
|
+
P as useLogin
|
|
14
15
|
};
|
|
@@ -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-Yj0ntzfM.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";
|
|
@@ -39,7 +39,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
39
39
|
default: withCtx(() => _cache[1] || (_cache[1] = [
|
|
40
40
|
createTextVNode("忽略")
|
|
41
41
|
])),
|
|
42
|
-
_: 1
|
|
42
|
+
_: 1,
|
|
43
|
+
__: [1]
|
|
43
44
|
}, 8, ["size", "onClick"]),
|
|
44
45
|
createVNode(unref(Button), {
|
|
45
46
|
variant: "solid",
|
|
@@ -50,7 +51,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
50
51
|
default: withCtx(() => _cache[2] || (_cache[2] = [
|
|
51
52
|
createTextVNode("修改")
|
|
52
53
|
])),
|
|
53
|
-
_: 1
|
|
54
|
+
_: 1,
|
|
55
|
+
__: [2]
|
|
54
56
|
}, 8, ["size"])
|
|
55
57
|
], 2)
|
|
56
58
|
]),
|
package/package.json
CHANGED