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.
- package/dist/assets/icons/AgencyIcon.d.ts +3 -0
- package/dist/assets/icons/CalendarCheckIcon.d.ts +3 -0
- package/dist/assets/icons/CopyIcon.d.ts +3 -0
- package/dist/assets/icons/DevicePlusIcon.d.ts +3 -0
- package/dist/assets/icons/NotebookIcon.d.ts +3 -0
- package/dist/assets/icons/PrintIcon.d.ts +3 -0
- package/dist/assets/icons/QRCodeIcon.d.ts +3 -0
- package/dist/components/bigBlockButton/BigBlockButton.d.ts +1 -0
- package/dist/components/bigBlockButton/BigBlockButton.stories.d.ts +2 -0
- package/dist/components/datePicker/components/datePickerCalendar/DatePickerCalendar.d.ts +13 -15
- package/dist/components/qrcode/QRCode.d.ts +20 -0
- package/dist/components/qrcode/QRCode.stories.d.ts +14 -0
- package/dist/components/title/Title.d.ts +13 -0
- package/dist/components/{modulosTitle/ModulosTitle.stories.d.ts → title/Title.stories.d.ts} +2 -2
- package/dist/hooks/useHTMLShare/useHTMLShare.d.ts +18 -0
- package/dist/hooks/useHTMLShare/useHTMLShare.stories.d.ts +6 -0
- package/dist/index.css +320 -160
- package/dist/index.d.ts +203 -191
- package/dist/index.js +902 -733
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +893 -732
- package/dist/index.modern.js.map +1 -1
- package/dist/utils/MoedaUtils.d.ts +3 -4
- package/package.json +12 -8
- package/dist/components/modulosTitle/ModulosTitle.d.ts +0 -13
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
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.
|
|
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.
|
|
40
|
-
"@storybook/addon-essentials": "^6.5.
|
|
41
|
-
"@storybook/addon-links": "^6.5.
|
|
42
|
-
"@storybook/addons": "^6.5.
|
|
43
|
-
"@storybook/node-logger": "^6.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.
|
|
46
|
-
"@storybook/theming": "^6.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;
|