@pipelinesolucoes/display 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 (40) hide show
  1. package/LICENSE +78 -0
  2. package/README.md +155 -0
  3. package/dist/app/layout.d.ts +6 -0
  4. package/dist/app/layout.js +19 -0
  5. package/dist/app/layout.js.map +1 -0
  6. package/dist/app/page.d.ts +1 -0
  7. package/dist/app/page.js +6 -0
  8. package/dist/app/page.js.map +1 -0
  9. package/dist/components/ModalMotion.d.ts +21 -0
  10. package/dist/components/ModalMotion.js +56 -0
  11. package/dist/components/ModalMotion.js.map +1 -0
  12. package/dist/components/VisualizadorPdf.d.ts +4 -0
  13. package/dist/components/VisualizadorPdf.js +18 -0
  14. package/dist/components/VisualizadorPdf.js.map +1 -0
  15. package/dist/components/VisualizadorPdfBase.d.ts +13 -0
  16. package/dist/components/VisualizadorPdfBase.js +39 -0
  17. package/dist/components/VisualizadorPdfBase.js.map +1 -0
  18. package/dist/constant.d.ts +11 -0
  19. package/dist/constant.js +12 -0
  20. package/dist/constant.js.map +1 -0
  21. package/dist/index.d.ts +6 -0
  22. package/dist/index.js +4 -0
  23. package/dist/index.js.map +1 -0
  24. package/dist/theme.d.ts +2 -0
  25. package/dist/theme.js +13 -0
  26. package/dist/theme.js.map +1 -0
  27. package/dist/tsconfig.tsbuildinfo +1 -0
  28. package/dist/types/TermsAndPrivacyProps.d.ts +22 -0
  29. package/dist/types/TermsAndPrivacyProps.js +2 -0
  30. package/dist/types/TermsAndPrivacyProps.js.map +1 -0
  31. package/dist/types/style/BorderProps.d.ts +5 -0
  32. package/dist/types/style/BorderProps.js +2 -0
  33. package/dist/types/style/BorderProps.js.map +1 -0
  34. package/dist/types/style/ColorProps.d.ts +6 -0
  35. package/dist/types/style/ColorProps.js +2 -0
  36. package/dist/types/style/ColorProps.js.map +1 -0
  37. package/dist/types/style/LayoutProps.d.ts +6 -0
  38. package/dist/types/style/LayoutProps.js +2 -0
  39. package/dist/types/style/LayoutProps.js.map +1 -0
  40. package/package.json +65 -0
@@ -0,0 +1,22 @@
1
+ import { TypographyVariant } from "@mui/material/styles";
2
+ export interface TermsAndPrivacyProps {
3
+ url_termo_uso: string;
4
+ url_politica_privacidade: string;
5
+ locale?: 'pt' | 'en';
6
+ background_color?: string;
7
+ color?: string;
8
+ border_radius?: string;
9
+ border?: string;
10
+ background_color_button_ok?: string;
11
+ color_button_ok?: string;
12
+ border_radius_button_ok?: string;
13
+ background_color_button_cancel?: string;
14
+ color_button_cancel?: string;
15
+ border_radius_button_cancel?: string;
16
+ background_color_link?: string;
17
+ color_link?: string;
18
+ background_color_hover_link?: string;
19
+ color_hover_link?: string;
20
+ variantTexto?: TypographyVariant;
21
+ variantButton?: TypographyVariant;
22
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=TermsAndPrivacyProps.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TermsAndPrivacyProps.js","sourceRoot":"","sources":["../../src/types/TermsAndPrivacyProps.ts"],"names":[],"mappings":""}
@@ -0,0 +1,5 @@
1
+ export interface BorderProps {
2
+ borderRadius?: string;
3
+ border?: string;
4
+ boxShadow?: string;
5
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=BorderProps.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BorderProps.js","sourceRoot":"","sources":["../../../src/types/style/BorderProps.ts"],"names":[],"mappings":""}
@@ -0,0 +1,6 @@
1
+ export interface ColorProps {
2
+ background?: string;
3
+ backgroundHover?: string;
4
+ colorText?: string;
5
+ colorHover?: string;
6
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=ColorProps.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ColorProps.js","sourceRoot":"","sources":["../../../src/types/style/ColorProps.ts"],"names":[],"mappings":""}
@@ -0,0 +1,6 @@
1
+ export interface LayoutProps {
2
+ width?: string;
3
+ height?: string;
4
+ padding?: string;
5
+ margin?: string;
6
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=LayoutProps.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LayoutProps.js","sourceRoot":"","sources":["../../../src/types/style/LayoutProps.ts"],"names":[],"mappings":""}
package/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "@pipelinesolucoes/display",
3
+ "version": "1.0.0",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "https://github.com/pipeline-solucoes/display.git"
7
+ },
8
+ "homepage": "https://github.com/pipeline-solucoes/display#readme",
9
+ "bugs": {
10
+ "url": "https://github.com/pipeline-solucoes/display/issues"
11
+ },
12
+ "publishConfig": {
13
+ "access": "public"
14
+ },
15
+ "main": "dist/index.js",
16
+ "module": "dist/index.js",
17
+ "types": "dist/index.d.ts",
18
+ "files": [
19
+ "dist"
20
+ ],
21
+ "exports": {
22
+ ".": {
23
+ "import": "./dist/index.js",
24
+ "require": "./dist/index.js"
25
+ }
26
+ },
27
+ "scripts": {
28
+ "build": "tsc",
29
+ "lint": "eslint .",
30
+ "prepublishOnly": "npm run build",
31
+ "release-theme-beta": "npm uninstall @pipelinesolucoes/theme && npm install @pipelinesolucoes/theme@beta",
32
+ "release-theme": "npm uninstall @pipelinesolucoes/theme && npm install @pipelinesolucoes/theme"
33
+ },
34
+ "peerDependencies": {
35
+ "@emotion/react": "^11.14.0",
36
+ "@emotion/styled": "^11.14.1",
37
+ "@mui/icons-material": "^7.3.11",
38
+ "@mui/material": "^6.4.4 || ^7.3.0",
39
+ "nookies": "^2.5.2",
40
+ "react": "^18.0.0 || ^19.0.0",
41
+ "react-dom": "^18.0.0 || ^19.0.0"
42
+ },
43
+ "devDependencies": {
44
+ "@emotion/css": "^11.13.5",
45
+ "@emotion/react": "^11.14.0",
46
+ "@emotion/server": "^11.11.0",
47
+ "@emotion/styled": "^11.14.1",
48
+ "@eslint/eslintrc": "^3",
49
+ "@mui/icons-material": "^7.3.11",
50
+ "@mui/material": "^7.3.0",
51
+ "@types/node": "^20",
52
+ "@types/react": "^19.0.8",
53
+ "@types/react-dom": "^19",
54
+ "eslint": "^9",
55
+ "eslint-config-next": "15.1.6",
56
+ "next": "^16.0.7",
57
+ "typescript": "^5"
58
+ },
59
+ "dependencies": {
60
+ "@pipelinesolucoes/theme": "^1.0.7-beta.7",
61
+ "framer-motion": "^12.38.0",
62
+ "pdfjs-dist": "^5.7.284",
63
+ "react-pdf": "^10.4.1"
64
+ }
65
+ }