@ossy/resource-templates 0.9.1 → 0.10.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/build/resume.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
+ const e=[{id:"resume-experience",name:"Resume Experience",description:"Work, education, or project experience entry",icon:"briefcase",fields:[{name:"Title",type:"text",required:!0},{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"}]},{id:"resume-summary",name:"Resume Summary",description:"Personal summary and contact info",icon:"user",fields:[{name:"Name",type:"text",required:!0},{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,13 +1,2 @@
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
- }[];
1
+ /** @type {import('@ossy/types').ResourceTemplate[]} */
2
+ export const ResumeTemplates: any[];
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.9.1",
8
+ "version": "0.10.0",
9
9
  "type": "module",
10
10
  "source": "src/index.js",
11
11
  "module": "build/index.js",
@@ -42,5 +42,5 @@
42
42
  "/build",
43
43
  "README.md"
44
44
  ],
45
- "gitHead": "009330a43cf08e0cab806434b5f654401924af95"
45
+ "gitHead": "3019a8da590435ba6f10d7d861addeba011baf5d"
46
46
  }