@inploi/plugin-job-alerts 1.0.0 → 1.0.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/cdn/index.js +9 -9
- package/dist/job-alerts.d.ts +2 -0
- package/dist/plugin-job-alerts.cjs +940 -855
- package/dist/plugin-job-alerts.js +940 -855
- package/package.json +6 -5
package/dist/job-alerts.d.ts
CHANGED
|
@@ -26,6 +26,8 @@ export declare const createJobAlertsDomManager: () => {
|
|
|
26
26
|
getRenderTargetElement: () => Element;
|
|
27
27
|
};
|
|
28
28
|
export type JobAlertsDomManager = ReturnType<typeof createJobAlertsDomManager>;
|
|
29
|
+
/** Visual theme for the Job Alerts UI. */
|
|
30
|
+
export type JobAlertsTheme = JobAlertsPluginParams['theme'];
|
|
29
31
|
export declare const jobAlertsPlugin: () => ({ rpcClient, logger, analytics }: {
|
|
30
32
|
apiClient: import('@inploi/sdk').ApiClient;
|
|
31
33
|
rpcClient: import('@inploi/sdk').InploiRpcClient;
|