@recruitnepal/shared-packages 1.4.0 → 1.6.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.
- package/dist/components/cv/TemplatePicker.d.ts +14 -0
- package/dist/components/cv/TemplatePicker.d.ts.map +1 -0
- package/dist/components/cv/TemplatePicker.js +161 -0
- package/dist/components/cv/TemplateRenderer.d.ts +20 -0
- package/dist/components/cv/TemplateRenderer.d.ts.map +1 -0
- package/dist/components/cv/TemplateRenderer.js +14 -0
- package/dist/hooks/useEasyApplyFormHook.d.ts +5 -5
- package/dist/hooks/useEasyApplyFormHook.d.ts.map +1 -1
- package/dist/hooks/useEasyApplyFormHook.js +5 -2
- package/dist/index.d.ts +15 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +12 -0
- package/dist/stores/cvDrafts.store.d.ts +44 -0
- package/dist/stores/cvDrafts.store.d.ts.map +1 -0
- package/dist/stores/cvDrafts.store.js +86 -0
- package/dist/stores/cvLayout.store.d.ts +24 -0
- package/dist/stores/cvLayout.store.d.ts.map +1 -0
- package/dist/stores/cvLayout.store.js +116 -0
- package/dist/stores/cvPreview.store.d.ts +29 -0
- package/dist/stores/cvPreview.store.d.ts.map +1 -0
- package/dist/stores/cvPreview.store.js +80 -0
- package/dist/types/cv-blocks.types.d.ts +44 -0
- package/dist/types/cv-blocks.types.d.ts.map +1 -0
- package/dist/types/cv-blocks.types.js +1 -0
- package/dist/types/cv-draft.types.d.ts +32 -0
- package/dist/types/cv-draft.types.d.ts.map +1 -0
- package/dist/types/cv-draft.types.js +1 -0
- package/dist/types/easy-apply.d.ts +8 -0
- package/dist/types/easy-apply.d.ts.map +1 -1
- package/dist/types/easy-apply.js +35 -1
- package/dist/types/template.types.d.ts +122 -0
- package/dist/types/template.types.d.ts.map +1 -0
- package/dist/types/template.types.js +1 -0
- package/dist/utils/cv/pdf/printReset.d.ts +3 -0
- package/dist/utils/cv/pdf/printReset.d.ts.map +1 -0
- package/dist/utils/cv/pdf/printReset.js +41 -0
- package/dist/utils/cv/pdf/styles/base.d.ts +2 -0
- package/dist/utils/cv/pdf/styles/base.d.ts.map +1 -0
- package/dist/utils/cv/pdf/styles/base.js +44 -0
- package/dist/utils/cv/pdf/styles/preprocessCssClient.d.ts +3 -0
- package/dist/utils/cv/pdf/styles/preprocessCssClient.d.ts.map +1 -0
- package/dist/utils/cv/pdf/styles/preprocessCssClient.js +33 -0
- package/dist/utils/cv-block-converter.d.ts +11 -0
- package/dist/utils/cv-block-converter.d.ts.map +1 -0
- package/dist/utils/cv-block-converter.js +83 -0
- package/package.json +1 -44
package/package.json
CHANGED
|
@@ -1,44 +1 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@recruitnepal/shared-packages",
|
|
3
|
-
"version": "1.4.0",
|
|
4
|
-
"description": "Shared UI components and hooks for Recruit Nepal projects",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"build": "tsc",
|
|
9
|
-
"dev": "tsc --watch",
|
|
10
|
-
"prepublishOnly": "npm run build"
|
|
11
|
-
},
|
|
12
|
-
"keywords": [
|
|
13
|
-
"react",
|
|
14
|
-
"nextjs",
|
|
15
|
-
"recruit-nepal",
|
|
16
|
-
"shared-components"
|
|
17
|
-
],
|
|
18
|
-
"author": "",
|
|
19
|
-
"license": "MIT",
|
|
20
|
-
"peerDependencies": {
|
|
21
|
-
"react": "^18.2.0",
|
|
22
|
-
"react-dom": "^18.2.0",
|
|
23
|
-
"@tanstack/react-query": "^5.50.0",
|
|
24
|
-
"zod": "^3.22.0",
|
|
25
|
-
"react-hook-form": "^7.49.0",
|
|
26
|
-
"@hookform/resolvers": "^3.3.0"
|
|
27
|
-
},
|
|
28
|
-
"dependencies": {
|
|
29
|
-
"axios": "^1.7.8"
|
|
30
|
-
},
|
|
31
|
-
"devDependencies": {
|
|
32
|
-
"@types/node": "^20.11.17",
|
|
33
|
-
"@types/react": "^18.2.55",
|
|
34
|
-
"@types/react-dom": "^18.2.19",
|
|
35
|
-
"typescript": "^5.3.3",
|
|
36
|
-
"zod": "^3.22.0",
|
|
37
|
-
"react-hook-form": "^7.49.0",
|
|
38
|
-
"@hookform/resolvers": "^3.3.0"
|
|
39
|
-
},
|
|
40
|
-
"files": [
|
|
41
|
-
"dist",
|
|
42
|
-
"README.md"
|
|
43
|
-
]
|
|
44
|
-
}
|
|
1
|
+
{"name":"@recruitnepal/shared-packages","version":"1.6.0","description":"Shared UI components and hooks for Recruit Nepal projects","main":"dist/index.js","types":"dist/index.d.ts","scripts":{"build":"tsc","dev":"tsc --watch","prepublishOnly":"npm run build"},"keywords":["react","nextjs","recruit-nepal","shared-components","cv-builder"],"author":"","license":"MIT","peerDependencies":{"react":"^18.2.0","react-dom":"^18.2.0","@tanstack/react-query":"^5.50.0","zod":"^3.22.0","react-hook-form":"^7.49.0","@hookform/resolvers":"^3.3.0","zustand":"^4.5.0"},"dependencies":{"axios":"^1.7.8"},"devDependencies":{"@types/node":"^20.11.17","@types/react":"^18.2.55","@types/react-dom":"^18.2.19","typescript":"^5.3.3","zod":"^3.22.0","react-hook-form":"^7.49.0","@hookform/resolvers":"^3.3.0","zustand":"^4.5.0"},"files":["dist","README.md"]}
|