@factoringplus/pl-components-pack-v3 1.6.1-pre-01-signing → 1.7.1-pre-01

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 (35) hide show
  1. package/dist/Sidebar16-Be-7czuk.mjs +23 -0
  2. package/dist/Sidebar20-DNoqCBQY.mjs +23 -0
  3. package/dist/Sidebar24-D8X_gQu-.mjs +23 -0
  4. package/dist/Sidebar32-BVGCF4d_.mjs +18 -0
  5. package/dist/Sidebar40-BwbLe67U.mjs +18 -0
  6. package/dist/components/components.d.ts +5 -1
  7. package/dist/components/data/pl-signing/index.d.ts +37 -10
  8. package/dist/components/data/pl-signing/pl-signing.vue.d.ts +28 -3
  9. package/dist/components/data/pl-signing/types/index.d.ts +9 -0
  10. package/dist/components/form/pl-autocomplete/components/pl-default.vue.d.ts +3 -0
  11. package/dist/components/form/pl-autocomplete/pl-autocompete.vue.d.ts +3 -0
  12. package/dist/components/form/pl-autocomplete/types/index.d.ts +2 -0
  13. package/dist/components/form/pl-input-plus/components/pl-currency.vue.d.ts +3 -0
  14. package/dist/components/form/pl-input-plus/components/pl-default.vue.d.ts +3 -0
  15. package/dist/components/form/pl-input-plus/components/pl-password.vue.d.ts +3 -0
  16. package/dist/components/form/pl-input-plus/components/pl-textarea.vue.d.ts +3 -0
  17. package/dist/components/form/pl-input-plus/pl-input-plus.vue.d.ts +3 -0
  18. package/dist/components/form/pl-input-plus/types/index.d.ts +1 -0
  19. package/dist/components/shared/pl-icon/types/iconsType.d.ts +1 -1
  20. package/dist/pl-components-pack-v3.es.js +10172 -9811
  21. package/dist/pl-components-pack-v3.umd.js +29 -29
  22. package/dist/services/pl-navigation/components/Header.vue.d.ts +19 -0
  23. package/dist/services/pl-navigation/components/NavButton.vue.d.ts +52 -0
  24. package/dist/services/pl-navigation/components/SidebarItem.vue.d.ts +35 -0
  25. package/dist/services/pl-navigation/components/TLogo.vue.d.ts +2 -0
  26. package/dist/services/pl-navigation/components/index.d.ts +6 -0
  27. package/dist/services/pl-navigation/index.d.ts +79 -0
  28. package/dist/services/pl-navigation/pl-navigation.vue.d.ts +40 -0
  29. package/dist/services/pl-navigation/screenSizes.d.ts +6 -0
  30. package/dist/services/pl-navigation/types.d.ts +11 -0
  31. package/dist/style.css +1 -1
  32. package/dist/utils/callSignError.d.ts +2 -0
  33. package/package.json +1 -1
  34. package/dist/services/SigningService/index.d.ts +0 -52
  35. package/dist/services/SigningService/types/index.d.ts +0 -40
@@ -0,0 +1,2 @@
1
+ declare const callSignError: (errorType: string, count: number) => void;
2
+ export { callSignError };
package/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "require": "./dist/pl-components-pack-v3.umd.js"
15
15
  }
16
16
  },
17
- "version": "1.6.1-pre-01-signing",
17
+ "version": "1.7.1-pre-01",
18
18
  "scripts": {
19
19
  "dev": "vite",
20
20
  "build": "vite build",
@@ -1,52 +0,0 @@
1
- import { IFiles, ParsedCertificate, TagTranslation, ISignedFile, IValidatorError } from './types';
2
-
3
- export declare const PlSigningService: import('../../install-function').SFCInstallWithContext<import('vue').DefineComponent<{
4
- certificatesThumbprint: {
5
- type: import('vue').PropType<string[]>;
6
- default: () => any[];
7
- };
8
- loadingAdding: {
9
- type: import('vue').PropType<boolean>;
10
- default: boolean;
11
- };
12
- loadingSigning: {
13
- type: import('vue').PropType<boolean>;
14
- default: boolean;
15
- };
16
- }, {
17
- addEs: (testFile: IFiles) => Promise<void>;
18
- addSign: (files: IFiles[]) => void;
19
- }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
20
- "update:modelValue": (...args: any[]) => void;
21
- "system-setup-error": (...args: any[]) => void;
22
- "click-action": (...args: any[]) => void;
23
- "error-action": (...args: any[]) => void;
24
- "no-files": (...args: any[]) => void;
25
- "signing-end": (...args: any[]) => void;
26
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
27
- certificatesThumbprint: {
28
- type: import('vue').PropType<string[]>;
29
- default: () => any[];
30
- };
31
- loadingAdding: {
32
- type: import('vue').PropType<boolean>;
33
- default: boolean;
34
- };
35
- loadingSigning: {
36
- type: import('vue').PropType<boolean>;
37
- default: boolean;
38
- };
39
- }>> & {
40
- "onUpdate:modelValue"?: (...args: any[]) => any;
41
- "onSystem-setup-error"?: (...args: any[]) => any;
42
- "onClick-action"?: (...args: any[]) => any;
43
- "onError-action"?: (...args: any[]) => any;
44
- "onNo-files"?: (...args: any[]) => any;
45
- "onSigning-end"?: (...args: any[]) => any;
46
- }, {
47
- certificatesThumbprint: string[];
48
- loadingAdding: boolean;
49
- loadingSigning: boolean;
50
- }, {}>>;
51
- export default PlSigningService;
52
- export type { IFiles, ParsedCertificate, TagTranslation, ISignedFile, IValidatorError };
@@ -1,40 +0,0 @@
1
- export declare interface IFiles {
2
- attachmentId: string;
3
- fileDigestAlgorithmOid: string;
4
- fileDigest: string;
5
- }
6
- export declare interface ParsedCertificate {
7
- value?: ParsedCertificate;
8
- label: string;
9
- description: string;
10
- optionText: string;
11
- companyInn: string;
12
- companyName: string;
13
- fio: string;
14
- owner: string;
15
- tooltipText: string;
16
- thumbprint: string;
17
- validFrom: string;
18
- validTo: string;
19
- isInnUL: boolean;
20
- inn: string;
21
- role: string;
22
- }
23
- export declare interface TagTranslation {
24
- description: string;
25
- title: string;
26
- isTranslated: boolean;
27
- }
28
- export declare interface ISignedFile {
29
- attachmentId: string;
30
- signaturePem: string;
31
- }
32
- export declare interface IValidatorError {
33
- data: {
34
- code: string;
35
- errors: {
36
- errorMessage: string;
37
- propertyName: string;
38
- }[];
39
- };
40
- }