@cavuno/board 1.31.0 → 1.33.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/{board--nLjpneU.d.ts → board-0yI5ZRJw.d.ts} +1 -1
- package/dist/{board-BS8Ax7hz.d.mts → board-BTVapQiL.d.mts} +1 -1
- package/dist/filters.d.mts +11 -11
- package/dist/filters.d.ts +11 -11
- package/dist/filters.js +590 -6
- package/dist/filters.mjs +590 -6
- package/dist/format.d.mts +12 -7
- package/dist/format.d.ts +12 -7
- package/dist/format.js +561 -3
- package/dist/format.mjs +561 -3
- package/dist/index.d.mts +11 -6
- package/dist/index.d.ts +11 -6
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/{jobs-Dmz8uexp.d.mts → jobs-Di4AV-02.d.mts} +6 -0
- package/dist/{jobs-Dmz8uexp.d.ts → jobs-Di4AV-02.d.ts} +6 -0
- package/dist/{salaries-CrtQBy81.d.ts → salaries-B-zJKjkk.d.ts} +1 -1
- package/dist/{salaries-QXFAyysR.d.mts → salaries-D-BGZpDC.d.mts} +1 -1
- package/dist/seo.d.mts +9 -16
- package/dist/seo.d.ts +9 -16
- package/dist/seo.js +497 -7
- package/dist/seo.mjs +497 -7
- package/dist/server.d.mts +3 -3
- package/dist/server.d.ts +3 -3
- package/dist/sitemap.d.mts +3 -3
- package/dist/sitemap.d.ts +3 -3
- package/dist/theme.js +7 -1
- package/dist/theme.mjs +7 -1
- package/dist/ui-copy-rlfoH9P3.d.mts +232 -0
- package/dist/ui-copy-rlfoH9P3.d.ts +232 -0
- package/package.json +1 -1
- package/skills/manifest.json +1 -1
package/dist/filters.d.mts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { B as BoardLabelOverrides } from './ui-copy-rlfoH9P3.mjs';
|
|
2
|
+
import { J as JobSort, E as EmploymentType, R as RemoteOption, S as Seniority } from './jobs-Di4AV-02.mjs';
|
|
2
3
|
|
|
3
4
|
declare const REMOTE_OPTIONS: readonly RemoteOption[];
|
|
4
5
|
/**
|
|
@@ -11,22 +12,21 @@ declare const SENIORITIES: readonly Seniority[];
|
|
|
11
12
|
declare const JOB_SORTS: readonly JobSort[];
|
|
12
13
|
declare const DEFAULT_SORT: JobSort;
|
|
13
14
|
/**
|
|
14
|
-
* Seniority display labels in the board language (lexicon-backed, en+de)
|
|
15
|
+
* Seniority display labels in the board language (lexicon-backed, en+de),
|
|
16
|
+
* ⊕ stored operator overrides (`jobCardLabels.seniority*`) when the
|
|
17
|
+
* `labels` bag is passed.
|
|
15
18
|
*
|
|
16
19
|
* @example
|
|
17
20
|
* seniorityLabels('de').executive; // "Führungskraft"
|
|
18
21
|
*/
|
|
19
|
-
declare function seniorityLabels(locale: string): Record<Seniority, string>;
|
|
22
|
+
declare function seniorityLabels(locale: string, labels?: BoardLabelOverrides): Record<Seniority, string>;
|
|
20
23
|
/**
|
|
21
|
-
* Sort-dropdown labels
|
|
22
|
-
*
|
|
23
|
-
*
|
|
24
|
-
*
|
|
25
|
-
* are locale-correct by construction — when a sort vocabulary lands, no
|
|
26
|
-
* consumer changes shape (adding the parameter later would be a breaking
|
|
27
|
-
* change to every call site).
|
|
24
|
+
* Sort-dropdown labels in the board language, resolved from the copy
|
|
25
|
+
* catalog (`uiCopy(locale).jobCard`, ADR-0059) ⊕ stored operator overrides
|
|
26
|
+
* (`jobCardLabels.aiRankedLabel` / `sortNewestLabel` / `sortSalaryHighLabel`)
|
|
27
|
+
* when the `labels` bag is passed.
|
|
28
28
|
*/
|
|
29
|
-
declare function sortLabels(
|
|
29
|
+
declare function sortLabels(locale: string, labels?: BoardLabelOverrides): Record<JobSort, string>;
|
|
30
30
|
interface ListingFilters {
|
|
31
31
|
q?: string;
|
|
32
32
|
remoteOption?: RemoteOption;
|
package/dist/filters.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { B as BoardLabelOverrides } from './ui-copy-rlfoH9P3.js';
|
|
2
|
+
import { J as JobSort, E as EmploymentType, R as RemoteOption, S as Seniority } from './jobs-Di4AV-02.js';
|
|
2
3
|
|
|
3
4
|
declare const REMOTE_OPTIONS: readonly RemoteOption[];
|
|
4
5
|
/**
|
|
@@ -11,22 +12,21 @@ declare const SENIORITIES: readonly Seniority[];
|
|
|
11
12
|
declare const JOB_SORTS: readonly JobSort[];
|
|
12
13
|
declare const DEFAULT_SORT: JobSort;
|
|
13
14
|
/**
|
|
14
|
-
* Seniority display labels in the board language (lexicon-backed, en+de)
|
|
15
|
+
* Seniority display labels in the board language (lexicon-backed, en+de),
|
|
16
|
+
* ⊕ stored operator overrides (`jobCardLabels.seniority*`) when the
|
|
17
|
+
* `labels` bag is passed.
|
|
15
18
|
*
|
|
16
19
|
* @example
|
|
17
20
|
* seniorityLabels('de').executive; // "Führungskraft"
|
|
18
21
|
*/
|
|
19
|
-
declare function seniorityLabels(locale: string): Record<Seniority, string>;
|
|
22
|
+
declare function seniorityLabels(locale: string, labels?: BoardLabelOverrides): Record<Seniority, string>;
|
|
20
23
|
/**
|
|
21
|
-
* Sort-dropdown labels
|
|
22
|
-
*
|
|
23
|
-
*
|
|
24
|
-
*
|
|
25
|
-
* are locale-correct by construction — when a sort vocabulary lands, no
|
|
26
|
-
* consumer changes shape (adding the parameter later would be a breaking
|
|
27
|
-
* change to every call site).
|
|
24
|
+
* Sort-dropdown labels in the board language, resolved from the copy
|
|
25
|
+
* catalog (`uiCopy(locale).jobCard`, ADR-0059) ⊕ stored operator overrides
|
|
26
|
+
* (`jobCardLabels.aiRankedLabel` / `sortNewestLabel` / `sortSalaryHighLabel`)
|
|
27
|
+
* when the `labels` bag is passed.
|
|
28
28
|
*/
|
|
29
|
-
declare function sortLabels(
|
|
29
|
+
declare function sortLabels(locale: string, labels?: BoardLabelOverrides): Record<JobSort, string>;
|
|
30
30
|
interface ListingFilters {
|
|
31
31
|
q?: string;
|
|
32
32
|
remoteOption?: RemoteOption;
|