@gsp-svc/formdoc-upload-vue 1.0.0

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.
Files changed (54) hide show
  1. package/components/index.d.ts +4 -0
  2. package/components/upload-vue-demo/FileUpload.vue.d.ts +50 -0
  3. package/components/upload-vue-demo/index.d.ts +134 -0
  4. package/constants.d.ts +1 -0
  5. package/edp-bif-formdoc-upload-vue.esm.js +5019 -0
  6. package/edp-bif-formdoc-upload-vue.umd.cjs +5020 -0
  7. package/entity/changeinstancerequest.d.ts +6 -0
  8. package/entity/completemultiuploadrequest.d.ts +10 -0
  9. package/entity/copyfilerequest.d.ts +5 -0
  10. package/entity/doctype.d.ts +10 -0
  11. package/entity/droplistentity.d.ts +4 -0
  12. package/entity/expropertyrequest.d.ts +5 -0
  13. package/entity/extensionstoragefileinfo.d.ts +4 -0
  14. package/entity/fileinfo.d.ts +24 -0
  15. package/entity/filestate.d.ts +4 -0
  16. package/entity/gspdocmetaproperty.d.ts +7 -0
  17. package/entity/gspdocsecuritybaseinfo.d.ts +5 -0
  18. package/entity/gspformdocinfo.d.ts +12 -0
  19. package/entity/gspformdocoperateentity.d.ts +4 -0
  20. package/entity/gspformremovelistentity.d.ts +7 -0
  21. package/entity/gspformstreamentity.d.ts +13 -0
  22. package/entity/gspformuploadentity.d.ts +9 -0
  23. package/entity/gspformuploadlistentity.d.ts +9 -0
  24. package/entity/index.d.ts +25 -0
  25. package/entity/initmultiuploadrequest.d.ts +7 -0
  26. package/entity/multiuploadrequest.d.ts +8 -0
  27. package/entity/multiuploadresult.d.ts +4 -0
  28. package/entity/operatingmodes.d.ts +4 -0
  29. package/entity/securityentity.d.ts +6 -0
  30. package/entity/storageextension.d.ts +6 -0
  31. package/entity/uploadfileinfo.d.ts +11 -0
  32. package/entity/uploadlimit.d.ts +8 -0
  33. package/i18n/index.d.ts +1 -0
  34. package/i18n/lang.resource.d.ts +142 -0
  35. package/index.d.ts +12 -0
  36. package/package.json +34 -0
  37. package/pipe/index.d.ts +1 -0
  38. package/pipe/locale.pipe.d.ts +7 -0
  39. package/providers.d.ts +19 -0
  40. package/services/DownloadServiceInternal.d.ts +11 -0
  41. package/services/UploadDialogServiceInternal.d.ts +13 -0
  42. package/services/UploadService.d.ts +25 -0
  43. package/style.css +242 -0
  44. package/utils/BrowserUtil.d.ts +5 -0
  45. package/utils/ErrorUtil.d.ts +4 -0
  46. package/utils/HttpUtils.d.ts +16 -0
  47. package/utils/ObjectUtils.d.ts +2 -0
  48. package/utils/basePath.d.ts +1 -0
  49. package/utils/guid-util.d.ts +3 -0
  50. package/utils/index.d.ts +6 -0
  51. package/utils/with-install.d.ts +3 -0
  52. package/webcmp/DownloadService.d.ts +11 -0
  53. package/webcmp/UploadDialogService.d.ts +21 -0
  54. package/webcmp/index.d.ts +2 -0
@@ -0,0 +1,4 @@
1
+ import { Plugin } from 'vue';
2
+
3
+ export { default as FileUpload } from './upload-vue-demo';
4
+ export declare const FileUploadRuntimeApiVueComponents: Plugin<[]>[];
@@ -0,0 +1,50 @@
1
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
+ formId: string;
3
+ rootId: string;
4
+ fileType: string;
5
+ fileCount: number;
6
+ oldIdList: string[];
7
+ securityInfo: any;
8
+ fileNameLength: number;
9
+ }>, {
10
+ fileType: string;
11
+ fileNameLength: number;
12
+ oldIdList: () => any[];
13
+ }>>, {
14
+ upload: () => Promise<unknown>;
15
+ cancel: () => Promise<void>;
16
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
17
+ formId: string;
18
+ rootId: string;
19
+ fileType: string;
20
+ fileCount: number;
21
+ oldIdList: string[];
22
+ securityInfo: any;
23
+ fileNameLength: number;
24
+ }>, {
25
+ fileType: string;
26
+ fileNameLength: number;
27
+ oldIdList: () => any[];
28
+ }>>> & Readonly<{}>, {
29
+ fileType: string;
30
+ oldIdList: string[];
31
+ fileNameLength: number;
32
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
33
+ export default _default;
34
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
35
+ type __VLS_TypePropsToRuntimeProps<T> = {
36
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
37
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
38
+ } : {
39
+ type: import('vue').PropType<T[K]>;
40
+ required: true;
41
+ };
42
+ };
43
+ type __VLS_WithDefaults<P, D> = {
44
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
45
+ default: D[K];
46
+ }> : P[K];
47
+ };
48
+ type __VLS_Prettify<T> = {
49
+ [K in keyof T]: T[K];
50
+ } & {};
@@ -0,0 +1,134 @@
1
+ import { default as FileUpload } from './FileUpload.vue';
2
+
3
+ export { FileUpload };
4
+ declare const _default: {
5
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
6
+ formId: {
7
+ type: import('vue').PropType<string>;
8
+ required: true;
9
+ };
10
+ rootId: {
11
+ type: import('vue').PropType<string>;
12
+ required: true;
13
+ };
14
+ fileType: {
15
+ type: import('vue').PropType<string>;
16
+ required: true;
17
+ default: string;
18
+ };
19
+ fileCount: {
20
+ type: import('vue').PropType<number>;
21
+ required: true;
22
+ };
23
+ oldIdList: {
24
+ type: import('vue').PropType<string[]>;
25
+ required: true;
26
+ default: () => any[];
27
+ };
28
+ securityInfo: {
29
+ type: import('vue').PropType<any>;
30
+ required: true;
31
+ };
32
+ fileNameLength: {
33
+ type: import('vue').PropType<number>;
34
+ required: true;
35
+ default: number;
36
+ };
37
+ }>> & Readonly<{}>, {
38
+ upload: () => Promise<unknown>;
39
+ cancel: () => Promise<void>;
40
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
41
+ fileType: string;
42
+ oldIdList: string[];
43
+ fileNameLength: number;
44
+ }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
45
+ P: {};
46
+ B: {};
47
+ D: {};
48
+ C: {};
49
+ M: {};
50
+ Defaults: {};
51
+ }, Readonly<import('vue').ExtractPropTypes<{
52
+ formId: {
53
+ type: import('vue').PropType<string>;
54
+ required: true;
55
+ };
56
+ rootId: {
57
+ type: import('vue').PropType<string>;
58
+ required: true;
59
+ };
60
+ fileType: {
61
+ type: import('vue').PropType<string>;
62
+ required: true;
63
+ default: string;
64
+ };
65
+ fileCount: {
66
+ type: import('vue').PropType<number>;
67
+ required: true;
68
+ };
69
+ oldIdList: {
70
+ type: import('vue').PropType<string[]>;
71
+ required: true;
72
+ default: () => any[];
73
+ };
74
+ securityInfo: {
75
+ type: import('vue').PropType<any>;
76
+ required: true;
77
+ };
78
+ fileNameLength: {
79
+ type: import('vue').PropType<number>;
80
+ required: true;
81
+ default: number;
82
+ };
83
+ }>> & Readonly<{}>, {
84
+ upload: () => Promise<unknown>;
85
+ cancel: () => Promise<void>;
86
+ }, {}, {}, {}, {
87
+ fileType: string;
88
+ oldIdList: string[];
89
+ fileNameLength: number;
90
+ }>;
91
+ __isFragment?: never;
92
+ __isTeleport?: never;
93
+ __isSuspense?: never;
94
+ } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
95
+ formId: {
96
+ type: import('vue').PropType<string>;
97
+ required: true;
98
+ };
99
+ rootId: {
100
+ type: import('vue').PropType<string>;
101
+ required: true;
102
+ };
103
+ fileType: {
104
+ type: import('vue').PropType<string>;
105
+ required: true;
106
+ default: string;
107
+ };
108
+ fileCount: {
109
+ type: import('vue').PropType<number>;
110
+ required: true;
111
+ };
112
+ oldIdList: {
113
+ type: import('vue').PropType<string[]>;
114
+ required: true;
115
+ default: () => any[];
116
+ };
117
+ securityInfo: {
118
+ type: import('vue').PropType<any>;
119
+ required: true;
120
+ };
121
+ fileNameLength: {
122
+ type: import('vue').PropType<number>;
123
+ required: true;
124
+ default: number;
125
+ };
126
+ }>> & Readonly<{}>, {
127
+ upload: () => Promise<unknown>;
128
+ cancel: () => Promise<void>;
129
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
130
+ fileType: string;
131
+ oldIdList: string[];
132
+ fileNameLength: number;
133
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vue').Plugin<[]>;
134
+ export default _default;
package/constants.d.ts ADDED
@@ -0,0 +1 @@
1
+ export declare const EDP_BIF_VIEWMODEL_INJECTION_TOKEN: unique symbol;