init
This commit is contained in:
Binary file not shown.
Binary file not shown.
1601
.svn/pristine/df/df3c5409e53e4ab34d9d2165712c4ce76456f576.svn-base
Normal file
1601
.svn/pristine/df/df3c5409e53e4ab34d9d2165712c4ce76456f576.svn-base
Normal file
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -0,0 +1 @@
|
||||
*
|
||||
@@ -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;
|
||||
@@ -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>
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
4b0c6aafd57d16ef1458a65066138a290dc2eb50
|
||||
Binary file not shown.
Reference in New Issue
Block a user