@paro.io/expert-shared-components 1.7.1 → 1.7.3

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 (44) hide show
  1. package/lib/components/ClientReferencesSection/DeleteButton.js +11 -11
  2. package/lib/components/ClientReferencesSection/ParoError.js +10 -10
  3. package/lib/components/ClientReferencesSection/TagsSection.js +2 -2
  4. package/lib/components/ClientReferencesSection/styles/BrandedTypography.js +2 -2
  5. package/lib/components/ClientReferencesSection/styles/Buttons.js +15 -15
  6. package/lib/components/ClientReferencesSection/styles/Name.js +5 -5
  7. package/lib/components/ClientReferencesSection/styles/NullContentConditionalColor.js +4 -4
  8. package/lib/components/ClientReferencesSection/styles/SectionBody.js +11 -11
  9. package/lib/components/ClientReferencesSection/styles/SectionTitle.js +6 -6
  10. package/lib/components/ClientReferencesSection/styles/Tags.js +2 -2
  11. package/lib/components/DocumentCenter/DocumentCenter.js +4 -3
  12. package/lib/components/DocumentCenter/DocumentTable.d.ts +15 -15
  13. package/lib/components/DocumentCenter/DocumentTable.js +350 -350
  14. package/lib/components/DocumentCenter/UploadFilesButton.d.ts +6 -6
  15. package/lib/components/DocumentCenter/UploadFilesButton.js +29 -29
  16. package/lib/components/ExpertProfileHeader/ActionButtonSection.d.ts +3 -1
  17. package/lib/components/ExpertProfileHeader/ActionButtonSection.js +13 -7
  18. package/lib/components/ExpertProfileHeader/ExpertProfileHeader.d.ts +3 -1
  19. package/lib/components/ExpertProfileHeader/ExpertProfileHeader.js +2 -2
  20. package/lib/components/ExpertProfileHeader/NetworkSection.js +2 -2
  21. package/lib/components/ExpertProfileHeader/ProfileSection.js +7 -7
  22. package/lib/components/HeaderNavBar/index.d.ts +1 -1
  23. package/lib/components/HeaderNavBar/index.js +6 -1
  24. package/lib/components/OrganizationChart/OrganizationChart.js +7 -7
  25. package/lib/components/Reviews/Pagination.js +6 -6
  26. package/lib/components/ReviewsTab/RatingHeader.js +6 -6
  27. package/lib/components/ReviewsTab/expert-shared-components.code-workspace +20 -20
  28. package/lib/components/ReviewsTab/reviewRequestModal.js +5 -5
  29. package/lib/components/ServiceLinesTemplate/index.d.ts +21 -0
  30. package/lib/components/ServiceLinesTemplate/index.js +231 -0
  31. package/lib/components/shared/Error.d.ts +6 -6
  32. package/lib/components/shared/Error.js +40 -40
  33. package/lib/components/shared/Image.js +13 -13
  34. package/lib/components/shared/ProfileTextField.d.ts +18 -18
  35. package/lib/components/shared/ProfileTextField.js +16 -16
  36. package/lib/components/shared/StyledActionButtons.d.ts +7 -7
  37. package/lib/components/shared/StyledActionButtons.js +15 -15
  38. package/lib/components/shared/ToastNotification.d.ts +10 -10
  39. package/lib/components/shared/ToastNotification.js +63 -63
  40. package/lib/components/shared/utils.d.ts +8 -2
  41. package/lib/components/shared/utils.js +73 -1
  42. package/lib/index.d.ts +2 -0
  43. package/lib/index.js +5 -1
  44. package/package.json +59 -59
package/package.json CHANGED
@@ -1,59 +1,59 @@
1
- {
2
- "name": "@paro.io/expert-shared-components",
3
- "version": "1.7.1",
4
- "description": "",
5
- "main": "lib/index.js",
6
- "scripts": {
7
- "build": "tsc",
8
- "prepare": "yarn build",
9
- "test": "yarn test:build",
10
- "test:build": "yarn build",
11
- "clean": "yarn -rf lib",
12
- "predeploy": "tsc && cp package.json README.md ./lib",
13
- "link-local": "yarn link && cd node_modules/react && yarn link && cd ../react-dom && yarn link",
14
- "unlink-local": "yarn unlink && cd node_modules/react && yarn unlink && cd ../react-dom && yarn unlink"
15
- },
16
- "repository": "https://github.com/paroadmin/expert-shared-components.git",
17
- "keywords": ["react", "components", "shared"],
18
- "author": "apande@paro.io",
19
- "license": "MIT",
20
- "dependencies": {
21
- "@fortawesome/fontawesome-svg-core": "^6.6.0",
22
- "@fortawesome/free-solid-svg-icons": "^6.6.0",
23
- "@fortawesome/react-fontawesome": "^0.2.2",
24
- "@hookform/resolvers": "3.3.4",
25
- "@material-ui/core": "^4.11.0",
26
- "@material-ui/icons": "^4.11.3",
27
- "@material-ui/lab": "^4.0.0-alpha.61",
28
- "@paro.io/base-icons": "^1.0.4",
29
- "@paro.io/base-ui": "^1.8.3",
30
- "@types/react-input-mask": "^3.0.5",
31
- "dayjs": "^1.10.7",
32
- "lodash": "^4.17.21",
33
- "react": "^18.2.0",
34
- "react-copy-to-clipboard": "^5.0.4",
35
- "react-datepicker": "^4.6.0",
36
- "react-dom": "^17.0.2",
37
- "react-hook-form": "7.51.1",
38
- "react-hot-toast": "^2.4.1",
39
- "react-input-mask": "^3.0.0-alpha.2",
40
- "styled-components": "^5.3.3",
41
- "yup": "^0.32.11"
42
- },
43
- "devDependencies": {
44
- "@types/lodash": "^4.14.170",
45
- "@types/react": "^18.2.73",
46
- "@types/react-copy-to-clipboard": "^5.0.2",
47
- "@types/react-datepicker": "^4.19.6",
48
- "@types/react-dom": "^18.2.22",
49
- "@types/styled-components": "^5.1.22",
50
- "@types/yup": "^0.29.13",
51
- "typescript": "^5.3.3"
52
- },
53
- "files": [
54
- "lib/**/*"
55
- ],
56
- "directories": {
57
- "lib": "lib"
58
- }
59
- }
1
+ {
2
+ "name": "@paro.io/expert-shared-components",
3
+ "version": "1.7.3",
4
+ "description": "",
5
+ "main": "lib/index.js",
6
+ "scripts": {
7
+ "build": "tsc",
8
+ "prepare": "yarn build",
9
+ "test": "yarn test:build",
10
+ "test:build": "yarn build",
11
+ "clean": "yarn -rf lib",
12
+ "predeploy": "tsc && cp package.json README.md ./lib",
13
+ "link-local": "yarn link && cd node_modules/react && yarn link && cd ../react-dom && yarn link",
14
+ "unlink-local": "yarn unlink && cd node_modules/react && yarn unlink && cd ../react-dom && yarn unlink"
15
+ },
16
+ "repository": "https://github.com/paroadmin/expert-shared-components.git",
17
+ "keywords": ["react", "components", "shared"],
18
+ "author": "apande@paro.io",
19
+ "license": "MIT",
20
+ "dependencies": {
21
+ "@fortawesome/fontawesome-svg-core": "^6.6.0",
22
+ "@fortawesome/free-solid-svg-icons": "^6.6.0",
23
+ "@fortawesome/react-fontawesome": "^0.2.2",
24
+ "@hookform/resolvers": "3.3.4",
25
+ "@material-ui/core": "^4.11.0",
26
+ "@material-ui/icons": "^4.11.3",
27
+ "@material-ui/lab": "^4.0.0-alpha.61",
28
+ "@paro.io/base-icons": "^1.0.4",
29
+ "@paro.io/base-ui": "^1.8.3",
30
+ "@types/react-input-mask": "^3.0.5",
31
+ "dayjs": "^1.10.7",
32
+ "lodash": "^4.17.21",
33
+ "react": "^18.2.0",
34
+ "react-copy-to-clipboard": "^5.0.4",
35
+ "react-datepicker": "^4.6.0",
36
+ "react-dom": "^17.0.2",
37
+ "react-hook-form": "7.51.1",
38
+ "react-hot-toast": "^2.4.1",
39
+ "react-input-mask": "^3.0.0-alpha.2",
40
+ "styled-components": "^5.3.3",
41
+ "yup": "^0.32.11"
42
+ },
43
+ "devDependencies": {
44
+ "@types/lodash": "^4.14.170",
45
+ "@types/react": "^18.2.73",
46
+ "@types/react-copy-to-clipboard": "^5.0.2",
47
+ "@types/react-datepicker": "^4.19.6",
48
+ "@types/react-dom": "^18.2.22",
49
+ "@types/styled-components": "^5.1.22",
50
+ "@types/yup": "^0.29.13",
51
+ "typescript": "^5.3.3"
52
+ },
53
+ "files": [
54
+ "lib/**/*"
55
+ ],
56
+ "directories": {
57
+ "lib": "lib"
58
+ }
59
+ }