nucleus-core-ts 0.9.922 → 0.9.923
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/.build-ok
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.9.
|
|
1
|
+
0.9.923
|
|
@@ -32,8 +32,8 @@ export function RunPasswordField({ column, value, disabled, onChange }) {
|
|
|
32
32
|
const [shown, setShown] = useState(false);
|
|
33
33
|
const short = value.length > 0 && value.length < MIN_SHARED_PASSWORD;
|
|
34
34
|
return /*#__PURE__*/ _jsx(Field, {
|
|
35
|
-
error: short ?
|
|
36
|
-
hint:
|
|
35
|
+
error: short ? labels.runs.openingPasswordTooShort(MIN_SHARED_PASSWORD) : null,
|
|
36
|
+
hint: labels.runs.openingPasswordHint(column),
|
|
37
37
|
htmlFor: `${uid}-shared-password`,
|
|
38
38
|
label: useLabels().errors.openingPassword,
|
|
39
39
|
children: /*#__PURE__*/ _jsxs("div", {
|
|
@@ -73,6 +73,8 @@ export type IntegrationsLabels = {
|
|
|
73
73
|
deleteFailed: string;
|
|
74
74
|
};
|
|
75
75
|
runs: {
|
|
76
|
+
openingPasswordHint: (column: string) => string;
|
|
77
|
+
openingPasswordTooShort: (min: number) => string;
|
|
76
78
|
/** The one-line summary above the buttons. */
|
|
77
79
|
summary: (target: string, writeMode: string, missing: string) => string;
|
|
78
80
|
preview: string;
|
|
@@ -67,6 +67,8 @@
|
|
|
67
67
|
deleteFailed: 'The connection was not deleted.'
|
|
68
68
|
},
|
|
69
69
|
runs: {
|
|
70
|
+
openingPasswordHint: (column)=>`Written into ${column} on the accounts this run creates. People who are already here keep their own password. It is not saved anywhere — type it again next time.`,
|
|
71
|
+
openingPasswordTooShort: (min)=>`At least ${min} characters.`,
|
|
70
72
|
summary: (target, writeMode, missing)=>`Writes into ${target} · ${writeMode} · missing rows: ${missing}`,
|
|
71
73
|
preview: 'Preview',
|
|
72
74
|
previewing: 'Previewing…',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nucleus-core-ts",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.923",
|
|
4
4
|
"description": "Production-ready, enterprise-grade TypeScript framework for building multi-tenant APIs",
|
|
5
5
|
"author": "Hidayet Can Özcan <hidayetcan@gmail.com>",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|