@factoringplus/pl-components-pack-v3 1.2.12-pre-09 → 1.2.12-pre-10

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.
@@ -35,5 +35,6 @@ export * from './pl-upload-legacy';
35
35
  export * from './pl-upload-plus';
36
36
  export * from './pl-tooltip-plus';
37
37
  export * from '../utils/formatCurrency';
38
+ export * from '../utils/declOfNum';
38
39
  declare const _default: Plugin<any[]>[];
39
40
  export default _default;
@@ -8,16 +8,15 @@ import loadingAndSetup from '../plugins/loading/loading';
8
8
 
9
9
 
10
10
  import type { IPlNotification } from './pl-snackbar/types';
11
- import declOfNum from '../utils/declOfNum';
12
11
  declare const Storybook: {
13
12
  apiJs: (optionsRequest: any, isGetResourse: boolean, token: any) => Promise<unknown>;
14
13
  plLoading: typeof plLoading;
15
14
  loader: typeof loadingAndSetup;
16
- formatCurrency: import("../install-function").SFCInstallWithContext<typeof import('../utils/formatCurrency').formatNumber>;
15
+ formatCurrency: import("../install-function").SFCInstallWithContext<(number: string | number, showDecimal?: boolean, digitCount?: number) => string>;
17
16
  filters: {
18
17
  install(app: App<any>): void;
19
18
  };
20
- declOfNum: typeof declOfNum;
19
+ declOfNum: import("../install-function").SFCInstallWithContext<(value: number, words: string[]) => string>;
21
20
  length: number;
22
21
  toString(): string;
23
22
  toLocaleString(): string;