@lambda-development/erp-core 0.8.16 → 0.8.18
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/api/client.d.ts +1 -1
- package/dist/components/document/doc-pager.d.ts +1 -1
- package/dist/i18n/locales/de.json.d.ts +1 -0
- package/dist/i18n/locales/en.json.d.ts +1 -0
- package/dist/i18n/locales/fr.json.d.ts +1 -0
- package/dist/index.js +2617 -2587
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/api/client.d.ts
CHANGED
|
@@ -90,7 +90,7 @@ export declare const api: {
|
|
|
90
90
|
prev: string | null;
|
|
91
91
|
next: string | null;
|
|
92
92
|
}>;
|
|
93
|
-
adjacentMaster: (masterType: string, name: string) => Promise<{
|
|
93
|
+
adjacentMaster: (masterType: string, name: string, params?: Record<string, string | number | undefined>) => Promise<{
|
|
94
94
|
prev: string | null;
|
|
95
95
|
next: string | null;
|
|
96
96
|
}>;
|
|
@@ -3,6 +3,6 @@ export declare function DocPager({ slug, name, onSave, kind }: {
|
|
|
3
3
|
name: string;
|
|
4
4
|
/** Called on Cmd/Ctrl+S. Omit if the page has nothing to save. */
|
|
5
5
|
onSave?: () => void;
|
|
6
|
-
/** "master" pages through /masters/{slug}
|
|
6
|
+
/** "master" pages through /masters/{slug} instead of /app/{slug}. */
|
|
7
7
|
kind?: "document" | "master";
|
|
8
8
|
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -14,6 +14,7 @@ declare const _default: {
|
|
|
14
14
|
"keepDraft": "Behalten",
|
|
15
15
|
"discardDraftConfirm": "Verwerfen",
|
|
16
16
|
"showDiscarded": "Verworfene anzeigen",
|
|
17
|
+
"showDisabled": "Deaktivierte anzeigen",
|
|
17
18
|
"columns": "Spalten",
|
|
18
19
|
"searchPlaceholder": "Suchen…",
|
|
19
20
|
"noRecords": "Keine Einträge gefunden",
|
|
@@ -14,6 +14,7 @@ declare const _default: {
|
|
|
14
14
|
"keepDraft": "Keep",
|
|
15
15
|
"discardDraftConfirm": "Discard draft",
|
|
16
16
|
"showDiscarded": "Show discarded",
|
|
17
|
+
"showDisabled": "Show disabled",
|
|
17
18
|
"columns": "Columns",
|
|
18
19
|
"searchPlaceholder": "Search…",
|
|
19
20
|
"noRecords": "No records found",
|
|
@@ -14,6 +14,7 @@ declare const _default: {
|
|
|
14
14
|
"keepDraft": "Conserver",
|
|
15
15
|
"discardDraftConfirm": "Supprimer",
|
|
16
16
|
"showDiscarded": "Afficher les supprimés",
|
|
17
|
+
"showDisabled": "Afficher les désactivés",
|
|
17
18
|
"columns": "Colonnes",
|
|
18
19
|
"searchPlaceholder": "Rechercher…",
|
|
19
20
|
"noRecords": "Aucun enregistrement trouvé",
|