@ossy/resource-templates 0.6.6 → 0.6.7

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/build/index.js CHANGED
@@ -1 +1 @@
1
- const e=[{name:"Resume Experience",id:"resume-experience",fields:[{name:"Title",type:"text"},{name:"Sub Title",type:"text"},{name:"Date",type:"text"},{name:"Description",type:"textarea"},{name:"Type of experience",type:"select",options:["Work","Education","Other","Project"]},{name:"Website",type:"text"},{name:"Tags",type:"text"},{name:"GitHub",type:"text"}]},{name:"Resume Summary",id:"resume-summary",fields:[{name:"Name",type:"text"},{name:"Role",type:"text"},{name:"Summary",type:"textarea"},{name:"Mobile",type:"text"},{name:"Email",type:"text"},{name:"Website",type:"text"},{name:"Tags",type:"textarea"}]}];export{e as ResumeTemplates};
1
+ export{ResumeTemplates}from"./resume.js";
@@ -0,0 +1 @@
1
+ const e=[{name:"Resume Experience",id:"resume-experience",fields:[{name:"Title",type:"text"},{name:"Sub Title",type:"text"},{name:"Date",type:"text"},{name:"Description",type:"textarea"},{name:"Type of experience",type:"select",options:["Work","Education","Other","Project"]},{name:"Website",type:"text"},{name:"Tags",type:"text"},{name:"GitHub",type:"text"}]},{name:"Resume Summary",id:"resume-summary",fields:[{name:"Name",type:"text"},{name:"Role",type:"text"},{name:"Summary",type:"textarea"},{name:"Mobile",type:"text"},{name:"Email",type:"text"},{name:"Website",type:"text"},{name:"Tags",type:"textarea"}]}];export{e as ResumeTemplates};
@@ -0,0 +1 @@
1
+ export * from "./resume.js";
@@ -0,0 +1,13 @@
1
+ export const ResumeTemplates: {
2
+ name: string;
3
+ id: string;
4
+ fields: ({
5
+ name: string;
6
+ type: string;
7
+ options?: undefined;
8
+ } | {
9
+ name: string;
10
+ type: string;
11
+ options: string[];
12
+ })[];
13
+ }[];
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "url": "git+https://github.com/ossy-se/packages.git"
6
6
  },
7
7
  "description": "Resource Templates",
8
- "version": "0.6.6",
8
+ "version": "0.6.7",
9
9
  "type": "module",
10
10
  "source": "src/index.js",
11
11
  "module": "build/index.js",
@@ -32,7 +32,6 @@
32
32
  "@babel/core": "^7.14.5",
33
33
  "@babel/eslint-parser": "^7.15.8",
34
34
  "@babel/preset-env": "^7.21.5",
35
- "@babel/preset-react": "^7.24.1",
36
35
  "babel-loader": "^9.1.3"
37
36
  },
38
37
  "publishConfig": {
@@ -43,5 +42,5 @@
43
42
  "/build",
44
43
  "README.md"
45
44
  ],
46
- "gitHead": "3694b1625d298c93c5bfbed5c54a56abb52e4619"
45
+ "gitHead": "3b5cde28a8fac3e27a4f22b52e9d8f8ce69a12c6"
47
46
  }