This commit is contained in:
2022-12-09 16:41:41 +08:00
parent c1cce5a7c2
commit ff7aa8774f
2003 changed files with 156639 additions and 140 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,17 @@
import type { App, DefineComponent, Ref } from "vue";
export declare type StringObject = Record<string, unknown>;
export declare type UnknownObject = Record<string | number, unknown>;
export declare type UnknownFunction = (...arg: unknown[]) => unknown;
export declare type IDefineComponent<Props = UnknownObject> = DefineComponent<Props> & {
install: (app: App, options?: InstallOptions) => void;
};
export interface InstallOptions extends StringObject {
}
export declare type Nullable<T> = T | null;
export declare type MaybeRef<T> = Ref<T> | T;
export declare type Recordable = Record<string, any>;
export declare type Number = number;
export declare type String = string;
export declare type Boolean = boolean;
export declare type NumberOrString = number | string;
export declare type BooleanOrString = boolean | string;

View File

@@ -0,0 +1 @@
x<01><><EFBFBD> 1@Qϩ"wA<77><41><EFBFBD>$"a<03><><05>u<EFBFBD><75><EFBFBD><06>6,’<><D885><EFBFBD>Ã<EFBFBD><C383>a85 ><3E>ڬj9Q9K<39>N<EFBFBD>G<EFBFBD>}@tJ<><11>JQVq<56>*<2A>^<5E><>HJAJf<4A><66>}<7D>%sJ<1C>R<EFBFBD><52>V<EFBFBD>\;0<><30><EFBFBD>8<EFBFBD><38>Q<EFBFBD><51>m<EFBFBD><6D><EFBFBD>zO<7A>p?M<><;<3B><>2F<17><>%<25>̯<EFBFBD><CCAF><EFBFBD><EFBFBD>

View File

@@ -0,0 +1,62 @@
.lay-split-panel {
height: 100%;
display: flex;
position: relative;
.lay-split-panel-item {
height: 100%;
border: 1px #eeeeee solid;
}
.lay-split-panel-item-move {
user-select: none;
pointer-events: none;
cursor: col-resize;
}
.lay-split-panel-line {
height: 100%;
width: 3px;
border: 1px #eeeeee solid;
background-color: var(--global-neutral-color-1);
border-left: none;
border-right: none;
cursor: col-resize;
display: flex;
align-items: center;
&:before {
content: "";
height: 6px;
width: 100%;
border: 2px solid #dcdee2;
border-left: 0;
border-right: 0;
}
}
}
.lay-split-panel-vertical {
flex-direction: column;
position: relative;
.lay-split-panel-item-move {
user-select: none;
pointer-events: none;
cursor: row-resize;
}
.lay-split-panel-line {
display: flex;
justify-content: center;
width: 100%;
height: 3px;
cursor: row-resize;
border: 1px #eeeeee solid;
background-color: var(--global-neutral-color-1);
border-top: none;
border-bottom: none;
&:before {
content: "";
height: 100%;
width: 6px;
border: 2px solid #dcdee2;
border-top: none;
border-bottom: none;
}
}
}

View File

@@ -0,0 +1 @@
4b0c6aafd57d16ef1458a65066138a290dc2eb50