zzz-pc-view 0.0.1
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/package.json +29 -0
- package/src/api/org/list +96 -0
- package/src/api/org/type/list +18 -0
- package/src/api/own +3831 -0
- package/src/decorators/CurdKey/CurdApi.d.ts +221 -0
- package/src/decorators/CurdKey/RequestUtil.d.ts +55 -0
- package/src/decorators/CurdKey/index.d.ts +752 -0
- package/src/decorators/DeclareType.d.ts +35 -0
- package/src/decorators/Decorators.d.ts +5 -0
- package/src/decorators/FilterKey/index.d.ts +283 -0
- package/src/decorators/Loader/index.d.ts +179 -0
- package/src/decorators/NameKey/index.d.ts +68 -0
- package/src/decorators/PrimaryKey/index.d.ts +68 -0
- package/src/decorators/api.d.ts +21 -0
- package/src/decorators/decoratorStoreUtil.d.ts +68 -0
- package/src/decorators/index.d.ts +6 -0
- package/src/decorators/loadStore.d.ts +6 -0
- package/src/decorators/loadUtil.d.ts +25 -0
- package/src/decorators/util.d.ts +27 -0
- package/src/favicon.ico +0 -0
- package/src/index-decorators.d.ts +3 -0
- package/src/index.d.ts +10 -0
- package/src/index.es.js +10035 -0
- package/src/index.umd.js +2 -0
- package/src/pcViews/components/curd/CurdTableView.vue.d.ts +18 -0
- package/src/pcViews/components/curd/CurdView.vue.d.ts +22 -0
- package/src/pcViews/components/curd/CurdViewHandler.d.ts +1208 -0
- package/src/pcViews/components/curd/FilterView.vue.d.ts +19 -0
- package/src/pcViews/components/curd/FilterViewHandler.d.ts +6 -0
- package/src/pcViews/components/curd/index.d.ts +2 -0
- package/src/pcViews/components/forms/RadioButtonGroupView.vue.d.ts +19 -0
- package/src/pcViews/components/forms/SelectView.vue.d.ts +19 -0
- package/src/pcViews/components/forms/VModelView.vue.d.ts +20 -0
- package/src/pcViews/components/forms/index.d.ts +3 -0
- package/src/pcViews/components/index.d.ts +5 -0
- package/src/pcViews/components/layout/DataWrapperView.vue.d.ts +23 -0
- package/src/pcViews/components/layout/LayoutHeader.vue.d.ts +2 -0
- package/src/pcViews/components/layout/LayoutMainView.vue.d.ts +2 -0
- package/src/pcViews/components/layout/index.d.ts +2 -0
- package/src/pcViews/components/slots/VSlotView.vue.d.ts +20 -0
- package/src/pcViews/components/slots/index.d.ts +1 -0
- package/src/pcViews/components/utils.d.ts +33 -0
- package/src/pcViews/index.d.ts +1 -0
- package/src/utils/Date/ZDate.d.ts +557 -0
- package/src/utils/DeclareType.d.ts +39 -0
- package/src/utils/class/bind.d.ts +43 -0
- package/src/utils/class/combine.d.ts +109 -0
- package/src/utils/crypto/index.d.ts +44 -0
- package/src/utils/empty/index.d.ts +18 -0
- package/src/utils/httpRequest/HttpRequestError.d.ts +14 -0
- package/src/utils/httpRequest/httpRequestCreator.d.ts +61 -0
- package/src/utils/httpRequest/httpRequestUtil.d.ts +24 -0
- package/src/utils/httpRequest/index.d.ts +3 -0
- package/src/utils/index.d.ts +11 -0
- package/src/utils/math/toFixed.d.ts +11 -0
- package/src/utils/math/unitConvertor.d.ts +34 -0
- package/src/utils/mock/HttpResponse.d.ts +30 -0
- package/src/utils/mock/createDataTimes.d.ts +20 -0
- package/src/utils/mock/index.d.ts +2 -0
- package/src/utils/reduce/completeByDate.d.ts +51 -0
- package/src/utils/reduce/index.d.ts +9 -0
- package/src/utils/reduce/mappingBuilder.d.ts +69 -0
- package/src/utils/reduce/ratio.d.ts +104 -0
- package/src/utils/reduce/sort.d.ts +12 -0
- package/src/utils/reduce/sumByGroup.d.ts +53 -0
- package/src/utils/reduce/toGroup.d.ts +79 -0
- package/src/utils/reduce/tree.d.ts +570 -0
- package/src/utils/reduce/util.d.ts +14 -0
- package/src/utils/reduce/valueConvertor.d.ts +65 -0
- package/src/utils/reduce/verticalToHorizontal.d.ts +80 -0
- package/src/zzz-frame.css +7 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { CurdViewHandler } from './CurdViewHandler';
|
|
2
|
+
declare const _default: <T extends object = object>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
3
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, never> & Partial<{}> & {
|
|
4
|
+
viewHandler: CurdViewHandler<T>;
|
|
5
|
+
}> & import('vue').PublicProps;
|
|
6
|
+
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
7
|
+
attrs: any;
|
|
8
|
+
slots: {};
|
|
9
|
+
emit: {};
|
|
10
|
+
}>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
11
|
+
[key: string]: any;
|
|
12
|
+
}> & {
|
|
13
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
14
|
+
};
|
|
15
|
+
export default _default;
|
|
16
|
+
type __VLS_PrettifyLocal<T> = {
|
|
17
|
+
[K in keyof T]: T[K];
|
|
18
|
+
} & {};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { CurdViewHandler } from './CurdViewHandler';
|
|
2
|
+
declare const _default: <T extends object = object>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
3
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, never> & Partial<{}> & {
|
|
4
|
+
viewHandler: CurdViewHandler<T>;
|
|
5
|
+
}> & import('vue').PublicProps;
|
|
6
|
+
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
7
|
+
attrs: any;
|
|
8
|
+
slots: {
|
|
9
|
+
"header-before"?(_: {}): any;
|
|
10
|
+
"header-after"?(_: {}): any;
|
|
11
|
+
content?(_: {}): any;
|
|
12
|
+
};
|
|
13
|
+
emit: {};
|
|
14
|
+
}>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
}> & {
|
|
17
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
18
|
+
};
|
|
19
|
+
export default _default;
|
|
20
|
+
type __VLS_PrettifyLocal<T> = {
|
|
21
|
+
[K in keyof T]: T[K];
|
|
22
|
+
} & {};
|