plataforma-fundacao-componentes 2.23.2 → 2.23.5

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.
@@ -1,4 +1,3 @@
1
- export function formatInputMoeda(input?: string, simbolo?: string, delimitadorCentesimal?: string, delimitadorDecimal?: string): string;
2
- export function numberToMoeda(num: any, simbolo?: string, delimitadorCentesimal?: string, delimitadorDecimal?: string): string;
3
- export function inverseMoeda(input?: string): string;
4
- export function unformatMoeda(input?: string): number | "";
1
+ export declare const formatInputMoeda: (input?: string, simbolo?: string, delimitadorCentesimal?: string, delimitadorDecimal?: string) => string;
2
+ export declare const numberToMoeda: (num: any, simbolo?: string, delimitadorCentesimal?: string, delimitadorDecimal?: string) => string;
3
+ export declare const unformatMoeda: (input?: string, maxLength?: number | undefined) => number | "";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plataforma-fundacao-componentes",
3
- "version": "2.23.2",
3
+ "version": "2.23.5",
4
4
  "description": "Made with create-react-library",
5
5
  "author": "Guvidaletti",
6
6
  "license": "MIT",
@@ -36,19 +36,20 @@
36
36
  },
37
37
  "devDependencies": {
38
38
  "@babel/core": "^7.15.0",
39
- "@storybook/addon-actions": "^6.5.5",
40
- "@storybook/addon-essentials": "^6.5.5",
41
- "@storybook/addon-links": "^6.5.5",
42
- "@storybook/addons": "^6.5.5",
43
- "@storybook/node-logger": "^6.5.5",
39
+ "@storybook/addon-actions": "^6.5.10",
40
+ "@storybook/addon-essentials": "^6.5.10",
41
+ "@storybook/addon-links": "^6.5.10",
42
+ "@storybook/addons": "^6.5.10",
43
+ "@storybook/node-logger": "^6.5.10",
44
44
  "@storybook/preset-create-react-app": "^3.2.0",
45
- "@storybook/react": "^6.5.5",
46
- "@storybook/theming": "^6.5.5",
45
+ "@storybook/react": "^6.5.10",
46
+ "@storybook/theming": "^6.5.10",
47
47
  "@testing-library/jest-dom": "^4.2.4",
48
48
  "@testing-library/react": "^9.5.0",
49
49
  "@testing-library/user-event": "^7.2.1",
50
50
  "@types/jest": "^25.1.4",
51
51
  "@types/node": "^12.12.38",
52
+ "@types/qrcode": "^1.4.2",
52
53
  "@types/react": "^16.9.27",
53
54
  "@types/react-dom": "^16.9.7",
54
55
  "@types/react-transition-group": "^4.4.2",
@@ -86,8 +87,11 @@
86
87
  "axios": "^0.20.0",
87
88
  "chart.js": "^2.9.3",
88
89
  "express": "^4.17.1",
90
+ "html2canvas": "^1.4.1",
91
+ "jspdf": "^2.5.1",
89
92
  "moment": "^2.27.0",
90
93
  "node-sass": "^4.14.1",
94
+ "qrcode": "^1.5.1",
91
95
  "react-transition-group": "^4.4.1",
92
96
  "sortablejs": "^1.10.2"
93
97
  }
@@ -1,13 +0,0 @@
1
- import React from 'react';
2
- import './ModulosTitle.scss';
3
- interface ModulosTitleProps {
4
- children: any;
5
- showBackButton?: boolean;
6
- onBackClick?: (event?: any) => void;
7
- rightElement?: React.ReactNode;
8
- }
9
- declare function ModulosTitle(props: ModulosTitleProps): JSX.Element;
10
- declare namespace ModulosTitle {
11
- var defaultProps: {};
12
- }
13
- export default ModulosTitle;