traitify-widgets 3.0.2-alpha.1 → 3.0.3-alpha.1
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/README.md +10 -0
- package/build/traitify.js +1 -1
- package/build/traitify.js.map +1 -1
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -74,6 +74,16 @@ Traitify.options.career.experienceLevels = [4, 5];
|
|
|
74
74
|
Traitify.options.career.perPage = 10;
|
|
75
75
|
```
|
|
76
76
|
|
|
77
|
+
#### Get jobs for your careers
|
|
78
|
+
|
|
79
|
+
```
|
|
80
|
+
Traitify.options.career.jobs = {
|
|
81
|
+
inline: true, // Show the jobs in the list view, otherwise show them in the modal
|
|
82
|
+
path: ({career}) => career && `/my-jobs-endpoint?careerID=${career.id}`, // Can be a string or function
|
|
83
|
+
source: "Indeed" // If no jobs are found, a link displays to Indeed, Monster, or MyNextMove
|
|
84
|
+
};
|
|
85
|
+
```
|
|
86
|
+
|
|
77
87
|
### Render multiple components in specific elements
|
|
78
88
|
|
|
79
89
|
```
|