@paro.io/expert-shared-components 1.10.0 → 1.10.2
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/LICENSE +21 -21
- package/README.md +2 -2
- package/lib/components/ClientReferencesSection/DeleteButton.js +11 -11
- package/lib/components/ClientReferencesSection/ParoError.js +10 -10
- package/lib/components/ClientReferencesSection/TagsSection.js +2 -2
- package/lib/components/ClientReferencesSection/styles/BrandedTypography.js +2 -2
- package/lib/components/ClientReferencesSection/styles/Buttons.js +15 -15
- package/lib/components/ClientReferencesSection/styles/Name.js +5 -5
- package/lib/components/ClientReferencesSection/styles/NullContentConditionalColor.js +4 -4
- package/lib/components/ClientReferencesSection/styles/SectionBody.js +11 -11
- package/lib/components/ClientReferencesSection/styles/SectionTitle.js +6 -6
- package/lib/components/ClientReferencesSection/styles/Tags.js +2 -2
- package/lib/components/DocumentCenter/DocumentTable.d.ts +15 -15
- package/lib/components/DocumentCenter/DocumentTable.js +350 -350
- package/lib/components/DocumentCenter/UploadFilesButton.d.ts +6 -6
- package/lib/components/DocumentCenter/UploadFilesButton.js +29 -29
- package/lib/components/EarningsTracker/ActiveProjectCard.d.ts +52 -52
- package/lib/components/EarningsTracker/ActiveProjectCard.js +161 -161
- package/lib/components/EarningsTracker/CenterCardUI.d.ts +13 -13
- package/lib/components/EarningsTracker/CenterCardUI.js +134 -134
- package/lib/components/EarningsTracker/EarningsTracker.d.ts +52 -52
- package/lib/components/EarningsTracker/EarningsTracker.js +508 -508
- package/lib/components/EarningsTracker/EditDateModal.d.ts +22 -22
- package/lib/components/EarningsTracker/EditDateModal.js +149 -149
- package/lib/components/EarningsTracker/EmailModal.d.ts +14 -14
- package/lib/components/EarningsTracker/EmailModal.js +79 -79
- package/lib/components/EarningsTracker/EndProjectModal.d.ts +56 -56
- package/lib/components/EarningsTracker/EndProjectModal.js +221 -221
- package/lib/components/EarningsTracker/LeftCardUI.d.ts +18 -18
- package/lib/components/EarningsTracker/LeftCardUI.js +189 -189
- package/lib/components/EarningsTracker/LogTimeModalAuthenticated.d.ts +52 -52
- package/lib/components/EarningsTracker/LogTimeModalAuthenticated.js +358 -358
- package/lib/components/EarningsTracker/ProgressBar.d.ts +4 -4
- package/lib/components/EarningsTracker/ProgressBar.js +66 -66
- package/lib/components/EarningsTracker/ReviewRequestModal.d.ts +17 -17
- package/lib/components/EarningsTracker/ReviewRequestModal.js +135 -135
- package/lib/components/EarningsTracker/RightCardUI.d.ts +46 -46
- package/lib/components/EarningsTracker/RightCardUI.js +231 -231
- package/lib/components/EarningsTracker/index.d.ts +1 -1
- package/lib/components/EarningsTracker/index.js +5 -5
- package/lib/components/ExpertProfileHeader/ActionButtonSection.js +6 -6
- package/lib/components/ExpertProfileHeader/ProfileSection.js +7 -7
- package/lib/components/OrganizationChart/OrganizationChart.d.ts +15 -15
- package/lib/components/OrganizationChart/OrganizationChart.js +312 -312
- package/lib/components/OrganizationChart/PersonCard.js +5 -5
- package/lib/components/OrganizationChart/utils.d.ts +1 -1
- package/lib/components/OrganizationChart/utils.js +79 -79
- package/lib/components/ProjectCard/ActiveProjectCard.js +1 -1
- package/lib/components/ProjectCard/CenterCardUI.js +1 -1
- package/lib/components/ProjectCard/ProgressBar.js +4 -4
- package/lib/components/ProjectCard/ReviewRequestModal.js +5 -5
- package/lib/components/Reviews/Pagination.js +6 -6
- package/lib/components/ReviewsTab/RatingHeader.js +6 -6
- package/lib/components/ReviewsTab/expert-shared-components.code-workspace +20 -20
- package/lib/components/ReviewsTab/reviewRequestModal.js +5 -5
- package/lib/components/shared/Image.js +13 -13
- package/lib/components/shared/ProfileTextField.d.ts +18 -18
- package/lib/components/shared/ProfileTextField.js +16 -16
- package/lib/components/shared/StyledActionButtons.d.ts +7 -7
- package/lib/components/shared/StyledActionButtons.js +15 -15
- package/lib/components/shared/ToastNotification.d.ts +10 -10
- package/lib/components/shared/ToastNotification.js +63 -63
- package/lib/components/shared/utils.d.ts +1 -1
- package/package.json +61 -61
|
@@ -1,63 +1,63 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
24
|
-
};
|
|
25
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
const react_1 = __importStar(require("react"));
|
|
27
|
-
const core_1 = require("@material-ui/core");
|
|
28
|
-
const base_ui_1 = require("@paro.io/base-ui");
|
|
29
|
-
const ToastModal = ({ color, icon, message, duration = 6000, // Default duration is 6 seconds
|
|
30
|
-
position = 'bottom-right', }) => {
|
|
31
|
-
const [open, setOpen] = (0, react_1.useState)(false);
|
|
32
|
-
// Automatically open the modal on mount
|
|
33
|
-
(0, react_1.useEffect)(() => {
|
|
34
|
-
setOpen(true);
|
|
35
|
-
// Automatically close the modal after the specified duration
|
|
36
|
-
const timer = setTimeout(() => {
|
|
37
|
-
setOpen(false);
|
|
38
|
-
}, duration);
|
|
39
|
-
// Cleanup the timeout if the component unmounts or if the duration changes
|
|
40
|
-
return () => clearTimeout(timer);
|
|
41
|
-
}, [duration]);
|
|
42
|
-
console.log("triggered");
|
|
43
|
-
return (react_1.default.createElement(core_1.Dialog, { open: open, onClose: () => setOpen(false), "aria-labelledby": "toast-modal-title", maxWidth: "xs", fullWidth: true, PaperProps: {
|
|
44
|
-
style: {
|
|
45
|
-
backgroundColor: '#323232', // Dark background to resemble toast style
|
|
46
|
-
color: '#fff', // White text
|
|
47
|
-
borderRadius: '8px',
|
|
48
|
-
display: 'flex',
|
|
49
|
-
justifyContent: 'center',
|
|
50
|
-
alignItems: 'center',
|
|
51
|
-
zIndex: 9999, // Ensure it’s on top of the MUI Dialog
|
|
52
|
-
position: 'absolute', // Absolute positioning to control location
|
|
53
|
-
top: position.includes('top') ? '10%' : 'auto',
|
|
54
|
-
bottom: position.includes('bottom') ? '10%' : 'auto',
|
|
55
|
-
right: position.includes('right') ? '10%' : 'auto',
|
|
56
|
-
left: position.includes('left') ? '10%' : 'auto',
|
|
57
|
-
},
|
|
58
|
-
} },
|
|
59
|
-
react_1.default.createElement(core_1.DialogContent, { style: { textAlign: 'center' } },
|
|
60
|
-
react_1.default.createElement(base_ui_1.Alert, { color: color, icon: icon, label: message, className: color === 'warning' ? 'bg-warning' : 'bg-success' }),
|
|
61
|
-
",")));
|
|
62
|
-
};
|
|
63
|
-
exports.default = ToastModal;
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
const react_1 = __importStar(require("react"));
|
|
27
|
+
const core_1 = require("@material-ui/core");
|
|
28
|
+
const base_ui_1 = require("@paro.io/base-ui");
|
|
29
|
+
const ToastModal = ({ color, icon, message, duration = 6000, // Default duration is 6 seconds
|
|
30
|
+
position = 'bottom-right', }) => {
|
|
31
|
+
const [open, setOpen] = (0, react_1.useState)(false);
|
|
32
|
+
// Automatically open the modal on mount
|
|
33
|
+
(0, react_1.useEffect)(() => {
|
|
34
|
+
setOpen(true);
|
|
35
|
+
// Automatically close the modal after the specified duration
|
|
36
|
+
const timer = setTimeout(() => {
|
|
37
|
+
setOpen(false);
|
|
38
|
+
}, duration);
|
|
39
|
+
// Cleanup the timeout if the component unmounts or if the duration changes
|
|
40
|
+
return () => clearTimeout(timer);
|
|
41
|
+
}, [duration]);
|
|
42
|
+
console.log("triggered");
|
|
43
|
+
return (react_1.default.createElement(core_1.Dialog, { open: open, onClose: () => setOpen(false), "aria-labelledby": "toast-modal-title", maxWidth: "xs", fullWidth: true, PaperProps: {
|
|
44
|
+
style: {
|
|
45
|
+
backgroundColor: '#323232', // Dark background to resemble toast style
|
|
46
|
+
color: '#fff', // White text
|
|
47
|
+
borderRadius: '8px',
|
|
48
|
+
display: 'flex',
|
|
49
|
+
justifyContent: 'center',
|
|
50
|
+
alignItems: 'center',
|
|
51
|
+
zIndex: 9999, // Ensure it’s on top of the MUI Dialog
|
|
52
|
+
position: 'absolute', // Absolute positioning to control location
|
|
53
|
+
top: position.includes('top') ? '10%' : 'auto',
|
|
54
|
+
bottom: position.includes('bottom') ? '10%' : 'auto',
|
|
55
|
+
right: position.includes('right') ? '10%' : 'auto',
|
|
56
|
+
left: position.includes('left') ? '10%' : 'auto',
|
|
57
|
+
},
|
|
58
|
+
} },
|
|
59
|
+
react_1.default.createElement(core_1.DialogContent, { style: { textAlign: 'center' } },
|
|
60
|
+
react_1.default.createElement(base_ui_1.Alert, { color: color, icon: icon, label: message, className: color === 'warning' ? 'bg-warning' : 'bg-success' }),
|
|
61
|
+
",")));
|
|
62
|
+
};
|
|
63
|
+
exports.default = ToastModal;
|
|
@@ -11,7 +11,7 @@ export declare const handleDownloadPdf: ({ fileData, downloadFilename, streamDat
|
|
|
11
11
|
downloadFilename: string;
|
|
12
12
|
streamData: boolean;
|
|
13
13
|
}) => void;
|
|
14
|
-
export declare const CustomPaper: import("react").ComponentType<Pick<import("@material-ui/core").PaperProps, "
|
|
14
|
+
export declare const CustomPaper: import("react").ComponentType<Pick<import("@material-ui/core").PaperProps, "ref" | "children" | "onChange" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "innerRef" | "elevation" | "square" | "variant" | "component"> & import("@material-ui/core").StyledComponentProps<"root"> & {
|
|
15
15
|
className?: string;
|
|
16
16
|
}>;
|
|
17
17
|
export type Order = 'asc' | 'desc';
|
package/package.json
CHANGED
|
@@ -1,61 +1,61 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@paro.io/expert-shared-components",
|
|
3
|
-
"version": "1.10.
|
|
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
|
-
"@date-io/dayjs": "1.x",
|
|
22
|
-
"@fortawesome/fontawesome-svg-core": "^6.6.0",
|
|
23
|
-
"@fortawesome/free-solid-svg-icons": "^6.6.0",
|
|
24
|
-
"@fortawesome/react-fontawesome": "^0.2.2",
|
|
25
|
-
"@hookform/resolvers": "3.3.4",
|
|
26
|
-
"@material-ui/core": "^4.11.0",
|
|
27
|
-
"@material-ui/icons": "^4.11.3",
|
|
28
|
-
"@material-ui/lab": "^4.0.0-alpha.61",
|
|
29
|
-
"@material-ui/pickers": "^3.3.11",
|
|
30
|
-
"@paro.io/base-icons": "^1.0.4",
|
|
31
|
-
"@paro.io/base-ui": "^1.8.3",
|
|
32
|
-
"@types/react-input-mask": "^3.0.5",
|
|
33
|
-
"dayjs": "^1.10.7",
|
|
34
|
-
"lodash": "^4.17.21",
|
|
35
|
-
"react": "^18.2.0",
|
|
36
|
-
"react-copy-to-clipboard": "^5.0.4",
|
|
37
|
-
"react-datepicker": "^4.6.0",
|
|
38
|
-
"react-dom": "^17.0.2",
|
|
39
|
-
"react-hook-form": "7.51.1",
|
|
40
|
-
"react-hot-toast": "^2.4.1",
|
|
41
|
-
"react-input-mask": "^3.0.0-alpha.2",
|
|
42
|
-
"styled-components": "^5.3.3",
|
|
43
|
-
"yup": "^0.32.11"
|
|
44
|
-
},
|
|
45
|
-
"devDependencies": {
|
|
46
|
-
"@types/lodash": "^4.14.170",
|
|
47
|
-
"@types/react": "
|
|
48
|
-
"@types/react-copy-to-clipboard": "^5.0.2",
|
|
49
|
-
"@types/react-datepicker": "^4.19.6",
|
|
50
|
-
"@types/react-dom": "^18.2.22",
|
|
51
|
-
"@types/styled-components": "^5.1.22",
|
|
52
|
-
"@types/yup": "^0.29.13",
|
|
53
|
-
"typescript": "^5.3.3"
|
|
54
|
-
},
|
|
55
|
-
"files": [
|
|
56
|
-
"lib/**/*"
|
|
57
|
-
],
|
|
58
|
-
"directories": {
|
|
59
|
-
"lib": "lib"
|
|
60
|
-
}
|
|
61
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@paro.io/expert-shared-components",
|
|
3
|
+
"version": "1.10.2",
|
|
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
|
+
"@date-io/dayjs": "1.x",
|
|
22
|
+
"@fortawesome/fontawesome-svg-core": "^6.6.0",
|
|
23
|
+
"@fortawesome/free-solid-svg-icons": "^6.6.0",
|
|
24
|
+
"@fortawesome/react-fontawesome": "^0.2.2",
|
|
25
|
+
"@hookform/resolvers": "3.3.4",
|
|
26
|
+
"@material-ui/core": "^4.11.0",
|
|
27
|
+
"@material-ui/icons": "^4.11.3",
|
|
28
|
+
"@material-ui/lab": "^4.0.0-alpha.61",
|
|
29
|
+
"@material-ui/pickers": "^3.3.11",
|
|
30
|
+
"@paro.io/base-icons": "^1.0.4",
|
|
31
|
+
"@paro.io/base-ui": "^1.8.3",
|
|
32
|
+
"@types/react-input-mask": "^3.0.5",
|
|
33
|
+
"dayjs": "^1.10.7",
|
|
34
|
+
"lodash": "^4.17.21",
|
|
35
|
+
"react": "^18.2.0",
|
|
36
|
+
"react-copy-to-clipboard": "^5.0.4",
|
|
37
|
+
"react-datepicker": "^4.6.0",
|
|
38
|
+
"react-dom": "^17.0.2",
|
|
39
|
+
"react-hook-form": "7.51.1",
|
|
40
|
+
"react-hot-toast": "^2.4.1",
|
|
41
|
+
"react-input-mask": "^3.0.0-alpha.2",
|
|
42
|
+
"styled-components": "^5.3.3",
|
|
43
|
+
"yup": "^0.32.11"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@types/lodash": "^4.14.170",
|
|
47
|
+
"@types/react": "18.3.12",
|
|
48
|
+
"@types/react-copy-to-clipboard": "^5.0.2",
|
|
49
|
+
"@types/react-datepicker": "^4.19.6",
|
|
50
|
+
"@types/react-dom": "^18.2.22",
|
|
51
|
+
"@types/styled-components": "^5.1.22",
|
|
52
|
+
"@types/yup": "^0.29.13",
|
|
53
|
+
"typescript": "^5.3.3"
|
|
54
|
+
},
|
|
55
|
+
"files": [
|
|
56
|
+
"lib/**/*"
|
|
57
|
+
],
|
|
58
|
+
"directories": {
|
|
59
|
+
"lib": "lib"
|
|
60
|
+
}
|
|
61
|
+
}
|