@byline/admin 2.5.2 → 2.6.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/fields/array/array-field.d.ts +14 -0
- package/dist/fields/array/array-field.js +177 -0
- package/dist/fields/array/array-field.module.js +11 -0
- package/dist/fields/array/array-field_module.css +32 -0
- package/dist/fields/blocks/blocks-field.d.ts +13 -0
- package/dist/fields/blocks/blocks-field.js +245 -0
- package/dist/fields/blocks/blocks-field.module.js +26 -0
- package/dist/fields/blocks/blocks-field_module.css +107 -0
- package/dist/fields/checkbox/checkbox-field.d.ts +16 -0
- package/dist/fields/checkbox/checkbox-field.js +28 -0
- package/dist/fields/checkbox/checkbox-field.module.js +6 -0
- package/dist/fields/checkbox/checkbox-field_module.css +4 -0
- package/dist/fields/column-formatter.d.ts +20 -0
- package/dist/fields/column-formatter.js +15 -0
- package/dist/fields/date-time-formatter.d.ts +16 -0
- package/dist/fields/date-time-formatter.js +8 -0
- package/dist/fields/datetime/datetime-field.d.ts +16 -0
- package/dist/fields/datetime/datetime-field.js +37 -0
- package/dist/fields/datetime/datetime-field.module.js +5 -0
- package/dist/fields/datetime/datetime-field_module.css +4 -0
- package/dist/fields/draggable-context-menu.d.ts +6 -0
- package/dist/fields/draggable-context-menu.js +85 -0
- package/dist/fields/draggable-context-menu.module.js +15 -0
- package/dist/fields/draggable-context-menu_module.css +91 -0
- package/dist/fields/field-helpers.d.ts +26 -0
- package/dist/fields/field-helpers.js +50 -0
- package/dist/fields/field-renderer.d.ts +37 -0
- package/dist/fields/field-renderer.js +206 -0
- package/dist/fields/field-renderer.module.js +8 -0
- package/dist/fields/field-renderer_module.css +11 -0
- package/dist/fields/field-services-context.d.ts +16 -0
- package/dist/fields/field-services-context.js +13 -0
- package/dist/fields/field-services-types.d.ts +63 -0
- package/dist/fields/field-services-types.js +1 -0
- package/dist/fields/file/file-field.d.ts +19 -0
- package/dist/fields/file/file-field.js +225 -0
- package/dist/fields/file/file-field.module.js +18 -0
- package/dist/fields/file/file-field_module.css +131 -0
- package/dist/fields/file/file-upload-field.d.ts +21 -0
- package/dist/fields/file/file-upload-field.js +130 -0
- package/dist/fields/file/file-upload-field.module.js +15 -0
- package/dist/fields/file/file-upload-field_module.css +74 -0
- package/dist/fields/group/group-field.d.ts +15 -0
- package/dist/fields/group/group-field.js +59 -0
- package/dist/fields/group/group-field.module.js +9 -0
- package/dist/fields/group/group-field_module.css +27 -0
- package/dist/fields/image/image-field.d.ts +19 -0
- package/dist/fields/image/image-field.js +241 -0
- package/dist/fields/image/image-field.module.js +22 -0
- package/dist/fields/image/image-field_module.css +121 -0
- package/dist/fields/image/image-upload-field.d.ts +21 -0
- package/dist/fields/image/image-upload-field.js +190 -0
- package/dist/fields/image/image-upload-field.module.js +19 -0
- package/dist/fields/image/image-upload-field_module.css +92 -0
- package/dist/fields/local-date-time.d.ts +27 -0
- package/dist/fields/local-date-time.js +49 -0
- package/dist/fields/locale-badge.d.ts +18 -0
- package/dist/fields/locale-badge.js +10 -0
- package/dist/fields/locale-badge.module.js +5 -0
- package/dist/fields/locale-badge_module.css +27 -0
- package/dist/fields/numerical/numerical-field.d.ts +18 -0
- package/dist/fields/numerical/numerical-field.js +74 -0
- package/dist/fields/relation/relation-display.d.ts +40 -0
- package/dist/fields/relation/relation-display.js +58 -0
- package/dist/fields/relation/relation-display.module.js +9 -0
- package/dist/fields/relation/relation-display_module.css +21 -0
- package/dist/fields/relation/relation-field.d.ts +18 -0
- package/dist/fields/relation/relation-field.js +138 -0
- package/dist/fields/relation/relation-field.module.js +13 -0
- package/dist/fields/relation/relation-field_module.css +62 -0
- package/dist/fields/relation/relation-picker.d.ts +49 -0
- package/dist/fields/relation/relation-picker.js +236 -0
- package/dist/fields/relation/relation-picker.module.js +26 -0
- package/dist/fields/relation/relation-picker_module.css +124 -0
- package/dist/fields/relation/relation-summary.d.ts +31 -0
- package/dist/fields/relation/relation-summary.js +50 -0
- package/dist/fields/relation/relation-summary.module.js +11 -0
- package/dist/fields/relation/relation-summary_module.css +37 -0
- package/dist/fields/select/select-field.d.ts +16 -0
- package/dist/fields/select/select-field.js +50 -0
- package/dist/fields/select/select-field.module.js +5 -0
- package/dist/fields/select/select-field_module.css +4 -0
- package/dist/fields/sortable-item.d.ts +15 -0
- package/dist/fields/sortable-item.js +81 -0
- package/dist/fields/sortable-item.module.js +22 -0
- package/dist/fields/sortable-item_module.css +124 -0
- package/dist/fields/text/text-field.d.ts +20 -0
- package/dist/fields/text/text-field.js +104 -0
- package/dist/fields/text/text-field.module.js +6 -0
- package/dist/fields/text/text-field_module.css +5 -0
- package/dist/fields/text-area/text-area-field.d.ts +20 -0
- package/dist/fields/text-area/text-area-field.js +105 -0
- package/dist/fields/text-area/text-area-field.module.js +6 -0
- package/dist/fields/text-area/text-area-field_module.css +5 -0
- package/dist/fields/use-field-change-handler.d.ts +23 -0
- package/dist/fields/use-field-change-handler.js +52 -0
- package/dist/forms/document-actions.d.ts +48 -0
- package/dist/forms/document-actions.js +475 -0
- package/dist/forms/document-actions.module.js +34 -0
- package/dist/forms/document-actions_module.css +118 -0
- package/dist/forms/form-context.d.ts +89 -0
- package/dist/forms/form-context.js +466 -0
- package/dist/forms/form-renderer.d.ts +98 -0
- package/dist/forms/form-renderer.js +597 -0
- package/dist/forms/form-renderer.module.js +46 -0
- package/dist/forms/form-renderer_module.css +245 -0
- package/dist/forms/navigation-guard.d.ts +54 -0
- package/dist/forms/navigation-guard.js +22 -0
- package/dist/forms/path-widget.d.ts +36 -0
- package/dist/forms/path-widget.js +116 -0
- package/dist/forms/path-widget.module.js +8 -0
- package/dist/forms/path-widget_module.css +29 -0
- package/dist/forms/upload-executor.d.ts +57 -0
- package/dist/forms/upload-executor.js +94 -0
- package/dist/lib/translate-validation-error.d.ts +36 -0
- package/dist/lib/translate-validation-error.js +11 -0
- package/dist/modules/admin-account/commands.d.ts +2 -1
- package/dist/modules/admin-account/commands.js +13 -2
- package/dist/modules/admin-account/components/change-password.js +45 -36
- package/dist/modules/admin-account/components/container.js +185 -134
- package/dist/modules/admin-account/components/preferences.d.ts +8 -0
- package/dist/modules/admin-account/components/preferences.js +152 -0
- package/dist/modules/admin-account/components/preferences.module.js +11 -0
- package/dist/modules/admin-account/components/preferences_module.css +41 -0
- package/dist/modules/admin-account/components/update.js +50 -31
- package/dist/modules/admin-account/index.d.ts +3 -3
- package/dist/modules/admin-account/index.js +2 -2
- package/dist/modules/admin-account/schemas.d.ts +4 -0
- package/dist/modules/admin-account/schemas.js +4 -1
- package/dist/modules/admin-account/service.d.ts +1 -0
- package/dist/modules/admin-account/service.js +8 -0
- package/dist/modules/admin-permissions/components/inspector.js +31 -41
- package/dist/modules/admin-roles/components/create.js +43 -26
- package/dist/modules/admin-roles/components/permissions.js +26 -35
- package/dist/modules/admin-roles/components/update.js +26 -16
- package/dist/modules/admin-users/components/create.js +60 -40
- package/dist/modules/admin-users/components/roles.js +9 -15
- package/dist/modules/admin-users/components/set-password.js +30 -31
- package/dist/modules/admin-users/components/update.js +58 -39
- package/dist/modules/admin-users/dto.js +1 -0
- package/dist/modules/admin-users/repository.d.ts +17 -0
- package/dist/modules/admin-users/schemas.d.ts +4 -0
- package/dist/modules/admin-users/schemas.js +6 -2
- package/dist/modules/auth/components/sign-in-form.js +10 -8
- package/dist/presentation/group.d.ts +27 -0
- package/dist/presentation/group.js +14 -0
- package/dist/presentation/group.module.js +6 -0
- package/dist/presentation/group_module.css +19 -0
- package/dist/presentation/row.d.ts +25 -0
- package/dist/presentation/row.js +8 -0
- package/dist/presentation/row.module.js +5 -0
- package/dist/presentation/row_module.css +18 -0
- package/dist/presentation/tabs.d.ts +25 -0
- package/dist/presentation/tabs.js +39 -0
- package/dist/presentation/tabs.module.js +10 -0
- package/dist/presentation/tabs_module.css +68 -0
- package/dist/react.d.ts +66 -0
- package/dist/react.js +36 -0
- package/dist/services/admin-services-types.d.ts +16 -0
- package/dist/widgets/diff-viewer/diff-modal.d.ts +22 -0
- package/dist/widgets/diff-viewer/diff-modal.js +149 -0
- package/dist/widgets/diff-viewer/diff-modal.module.js +14 -0
- package/dist/widgets/diff-viewer/diff-modal_module.css +56 -0
- package/dist/widgets/status-badge/status-badge.d.ts +25 -0
- package/dist/widgets/status-badge/status-badge.js +37 -0
- package/dist/widgets/status-badge/status-badge.module.js +7 -0
- package/dist/widgets/status-badge/status-badge_module.css +20 -0
- package/package.json +14 -4
- package/src/fields/array/array-field.module.css +48 -0
- package/src/fields/array/array-field.tsx +267 -0
- package/src/fields/blocks/blocks-field.module.css +148 -0
- package/src/fields/blocks/blocks-field.tsx +323 -0
- package/src/fields/checkbox/checkbox-field.module.css +4 -0
- package/src/fields/checkbox/checkbox-field.tsx +54 -0
- package/src/fields/column-formatter.tsx +31 -0
- package/src/fields/date-time-formatter.tsx +22 -0
- package/src/fields/datetime/datetime-field.module.css +13 -0
- package/src/fields/datetime/datetime-field.tsx +54 -0
- package/src/fields/draggable-context-menu.module.css +127 -0
- package/src/fields/draggable-context-menu.tsx +87 -0
- package/src/fields/field-helpers.ts +69 -0
- package/src/fields/field-renderer.module.css +22 -0
- package/src/fields/field-renderer.tsx +288 -0
- package/src/fields/field-services-context.tsx +35 -0
- package/src/fields/field-services-types.ts +68 -0
- package/src/fields/file/file-field.module.css +153 -0
- package/src/fields/file/file-field.tsx +286 -0
- package/src/fields/file/file-upload-field.module.css +101 -0
- package/src/fields/file/file-upload-field.tsx +187 -0
- package/src/fields/group/group-field.module.css +43 -0
- package/src/fields/group/group-field.tsx +84 -0
- package/src/fields/image/image-field.module.css +155 -0
- package/src/fields/image/image-field.tsx +306 -0
- package/src/fields/image/image-upload-field.module.css +123 -0
- package/src/fields/image/image-upload-field.tsx +276 -0
- package/src/fields/local-date-time.tsx +88 -0
- package/src/fields/locale-badge.module.css +37 -0
- package/src/fields/locale-badge.tsx +32 -0
- package/src/fields/numerical/numerical-field.tsx +114 -0
- package/src/fields/relation/relation-display.module.css +36 -0
- package/src/fields/relation/relation-display.tsx +130 -0
- package/src/fields/relation/relation-field.module.css +83 -0
- package/src/fields/relation/relation-field.tsx +211 -0
- package/src/fields/relation/relation-picker.module.css +168 -0
- package/src/fields/relation/relation-picker.tsx +326 -0
- package/src/fields/relation/relation-summary.module.css +55 -0
- package/src/fields/relation/relation-summary.tsx +123 -0
- package/src/fields/select/select-field.module.css +13 -0
- package/src/fields/select/select-field.tsx +61 -0
- package/src/fields/sortable-item.module.css +167 -0
- package/src/fields/sortable-item.tsx +106 -0
- package/src/fields/text/text-field.module.css +13 -0
- package/src/fields/text/text-field.tsx +146 -0
- package/src/fields/text-area/text-area-field.module.css +13 -0
- package/src/fields/text-area/text-area-field.tsx +147 -0
- package/src/fields/use-field-change-handler.ts +112 -0
- package/src/forms/document-actions.module.css +160 -0
- package/src/forms/document-actions.tsx +482 -0
- package/src/forms/form-context.tsx +704 -0
- package/src/forms/form-renderer.module.css +321 -0
- package/src/forms/form-renderer.tsx +891 -0
- package/src/forms/navigation-guard.tsx +98 -0
- package/src/forms/path-widget.module.css +41 -0
- package/src/forms/path-widget.test.tsx +217 -0
- package/src/forms/path-widget.tsx +183 -0
- package/src/forms/upload-executor.ts +192 -0
- package/src/lib/translate-validation-error.ts +56 -0
- package/src/modules/admin-account/commands.ts +13 -0
- package/src/modules/admin-account/components/change-password.tsx +46 -31
- package/src/modules/admin-account/components/container.tsx +83 -38
- package/src/modules/admin-account/components/preferences.module.css +60 -0
- package/src/modules/admin-account/components/preferences.tsx +203 -0
- package/src/modules/admin-account/components/update.tsx +53 -27
- package/src/modules/admin-account/index.ts +3 -0
- package/src/modules/admin-account/schemas.ts +13 -0
- package/src/modules/admin-account/service.ts +12 -0
- package/src/modules/admin-permissions/components/inspector.tsx +22 -14
- package/src/modules/admin-roles/components/create.tsx +51 -23
- package/src/modules/admin-roles/components/permissions.tsx +25 -21
- package/src/modules/admin-roles/components/update.tsx +37 -19
- package/src/modules/admin-users/components/create.tsx +63 -34
- package/src/modules/admin-users/components/roles.tsx +9 -8
- package/src/modules/admin-users/components/set-password.tsx +34 -28
- package/src/modules/admin-users/components/update.tsx +58 -36
- package/src/modules/admin-users/dto.ts +1 -0
- package/src/modules/admin-users/repository.ts +17 -0
- package/src/modules/admin-users/schemas.ts +12 -0
- package/src/modules/auth/components/sign-in-form.tsx +14 -8
- package/src/presentation/group.module.css +41 -0
- package/src/presentation/group.tsx +40 -0
- package/src/presentation/row.module.css +32 -0
- package/src/presentation/row.tsx +33 -0
- package/src/presentation/tabs.module.css +107 -0
- package/src/presentation/tabs.tsx +84 -0
- package/src/react.ts +84 -0
- package/src/services/admin-services-types.ts +18 -0
- package/src/widgets/diff-viewer/diff-modal.module.css +79 -0
- package/src/widgets/diff-viewer/diff-modal.tsx +186 -0
- package/src/widgets/status-badge/status-badge.module.css +31 -0
- package/src/widgets/status-badge/status-badge.tsx +71 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This Source Code is subject to the terms of the Mozilla Public
|
|
3
|
+
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
4
|
+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
5
|
+
*
|
|
6
|
+
* Copyright (c) Infonomic Company Limited
|
|
7
|
+
*/
|
|
8
|
+
import type { CollectionAdminConfig, CollectionDefinition } from '@byline/core';
|
|
9
|
+
interface RelationSummaryProps {
|
|
10
|
+
targetDefinition: CollectionDefinition;
|
|
11
|
+
targetAdminConfig: CollectionAdminConfig | null;
|
|
12
|
+
displayField?: string;
|
|
13
|
+
/** The raw relation value from the form. May be a plain ref or a populated envelope. */
|
|
14
|
+
value: {
|
|
15
|
+
targetDocumentId: string;
|
|
16
|
+
targetCollectionId: string;
|
|
17
|
+
_resolved?: boolean;
|
|
18
|
+
_cycle?: boolean;
|
|
19
|
+
document?: Record<string, any>;
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* A document record cached client-side from a recent picker selection.
|
|
23
|
+
* Used when `value` is a plain ref (post-pick state) but we still want
|
|
24
|
+
* the tile to render real display data without a refetch. Caller is
|
|
25
|
+
* responsible for clearing/replacing this when the value's
|
|
26
|
+
* `targetDocumentId` changes.
|
|
27
|
+
*/
|
|
28
|
+
cachedRecord?: Record<string, any> | null;
|
|
29
|
+
}
|
|
30
|
+
export declare function RelationSummary({ targetDefinition, targetAdminConfig, displayField, value, cachedRecord, }: RelationSummaryProps): import("react").JSX.Element;
|
|
31
|
+
export {};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import classnames from "classnames";
|
|
3
|
+
import { PickerCell, resolveFallbackDisplayField, resolveRowLabel } from "./relation-display.js";
|
|
4
|
+
import relation_summary_module from "./relation-summary.module.js";
|
|
5
|
+
function RelationSummary({ targetDefinition, targetAdminConfig, displayField, value, cachedRecord }) {
|
|
6
|
+
const pickerColumns = targetAdminConfig?.picker;
|
|
7
|
+
if (false === value._resolved) return /*#__PURE__*/ jsxs("div", {
|
|
8
|
+
className: classnames('byline-relation-summary-stack', relation_summary_module.stack),
|
|
9
|
+
children: [
|
|
10
|
+
/*#__PURE__*/ jsx("span", {
|
|
11
|
+
className: classnames('byline-relation-summary-kind', relation_summary_module.kind),
|
|
12
|
+
children: targetDefinition.labels.singular
|
|
13
|
+
}),
|
|
14
|
+
/*#__PURE__*/ jsxs("span", {
|
|
15
|
+
className: classnames('byline-relation-summary-value-mono byline-relation-summary-missing', relation_summary_module["value-mono"], relation_summary_module.missing),
|
|
16
|
+
children: [
|
|
17
|
+
"(target not found) ",
|
|
18
|
+
value.targetDocumentId
|
|
19
|
+
]
|
|
20
|
+
})
|
|
21
|
+
]
|
|
22
|
+
});
|
|
23
|
+
const record = true === value._resolved && !value._cycle && value.document || cachedRecord || null;
|
|
24
|
+
if (record && pickerColumns && pickerColumns.length > 0) return /*#__PURE__*/ jsx("div", {
|
|
25
|
+
className: classnames('byline-relation-summary-row', relation_summary_module.row),
|
|
26
|
+
children: pickerColumns.map((col)=>/*#__PURE__*/ jsx(PickerCell, {
|
|
27
|
+
column: col,
|
|
28
|
+
record: record
|
|
29
|
+
}, String(col.fieldName)))
|
|
30
|
+
});
|
|
31
|
+
const resolvedDisplayField = displayField ?? targetDefinition.useAsTitle ?? resolveFallbackDisplayField(targetDefinition) ?? null;
|
|
32
|
+
const label = record ? resolveRowLabel(record, resolvedDisplayField) : null;
|
|
33
|
+
return /*#__PURE__*/ jsxs("div", {
|
|
34
|
+
className: classnames('byline-relation-summary-stack', relation_summary_module.stack),
|
|
35
|
+
children: [
|
|
36
|
+
/*#__PURE__*/ jsx("span", {
|
|
37
|
+
className: classnames('byline-relation-summary-kind', relation_summary_module.kind),
|
|
38
|
+
children: targetDefinition.labels.singular
|
|
39
|
+
}),
|
|
40
|
+
label ? /*#__PURE__*/ jsx("span", {
|
|
41
|
+
className: classnames('byline-relation-summary-value', relation_summary_module.value),
|
|
42
|
+
children: label
|
|
43
|
+
}) : /*#__PURE__*/ jsx("span", {
|
|
44
|
+
className: classnames('byline-relation-summary-value-mono', relation_summary_module["value-mono"]),
|
|
45
|
+
children: value.targetDocumentId
|
|
46
|
+
})
|
|
47
|
+
]
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
export { RelationSummary };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import "./relation-summary_module.css";
|
|
2
|
+
const relation_summary_module = {
|
|
3
|
+
stack: "stack-ITEVDV",
|
|
4
|
+
row: "row-uUGbE4",
|
|
5
|
+
kind: "kind-hB0ZeQ",
|
|
6
|
+
value: "value-YXgMQf",
|
|
7
|
+
"value-mono": "value-mono-sVr86N",
|
|
8
|
+
valueMono: "value-mono-sVr86N",
|
|
9
|
+
missing: "missing-HlUIIE"
|
|
10
|
+
};
|
|
11
|
+
export default relation_summary_module;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
:is(.stack-ITEVDV, .byline-relation-summary-stack) {
|
|
2
|
+
flex-direction: column;
|
|
3
|
+
gap: .125rem;
|
|
4
|
+
min-width: 0;
|
|
5
|
+
display: flex;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
:is(.row-uUGbE4, .byline-relation-summary-row) {
|
|
9
|
+
align-items: center;
|
|
10
|
+
gap: .75rem;
|
|
11
|
+
min-width: 0;
|
|
12
|
+
display: flex;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
:is(.kind-hB0ZeQ, .byline-relation-summary-kind) {
|
|
16
|
+
color: var(--gray-500);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
:is(.value-YXgMQf, .byline-relation-summary-value) {
|
|
20
|
+
color: var(--gray-100);
|
|
21
|
+
text-overflow: ellipsis;
|
|
22
|
+
white-space: nowrap;
|
|
23
|
+
overflow: hidden;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
:is(.value-mono-sVr86N, .byline-relation-summary-value-mono) {
|
|
27
|
+
text-overflow: ellipsis;
|
|
28
|
+
white-space: nowrap;
|
|
29
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
30
|
+
overflow: hidden;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
:is(.missing-HlUIIE, .byline-relation-summary-missing) {
|
|
34
|
+
font-size: var(--font-size-xs);
|
|
35
|
+
color: var(--red-400);
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This Source Code is subject to the terms of the Mozilla Public
|
|
3
|
+
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
4
|
+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
5
|
+
*
|
|
6
|
+
* Copyright (c) Infonomic Company Limited
|
|
7
|
+
*/
|
|
8
|
+
import type { SelectField as FieldType } from '@byline/core';
|
|
9
|
+
export declare const SelectField: ({ field, value, defaultValue, onChange, id, path, }: {
|
|
10
|
+
field: FieldType;
|
|
11
|
+
value?: string;
|
|
12
|
+
defaultValue?: string;
|
|
13
|
+
onChange?: (value: string) => void;
|
|
14
|
+
id?: string;
|
|
15
|
+
path?: string;
|
|
16
|
+
}) => import("react").JSX.Element;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { ErrorText, Label, Select } from "@byline/ui/react";
|
|
3
|
+
import classnames from "classnames";
|
|
4
|
+
import { useFieldError, useFieldValue, useIsDirty } from "../../forms/form-context.js";
|
|
5
|
+
import select_field_module from "./select-field.module.js";
|
|
6
|
+
const SelectField = ({ field, value, defaultValue, onChange, id, path })=>{
|
|
7
|
+
const fieldPath = path ?? field.name;
|
|
8
|
+
const fieldError = useFieldError(fieldPath);
|
|
9
|
+
const isDirty = useIsDirty(fieldPath);
|
|
10
|
+
const fieldValue = useFieldValue(fieldPath);
|
|
11
|
+
const incomingValue = value ?? fieldValue ?? defaultValue ?? '';
|
|
12
|
+
const htmlId = id ?? fieldPath;
|
|
13
|
+
return /*#__PURE__*/ jsxs("div", {
|
|
14
|
+
className: `byline-field-select ${field.name}`,
|
|
15
|
+
children: [
|
|
16
|
+
field.label && /*#__PURE__*/ jsx(Label, {
|
|
17
|
+
id: htmlId,
|
|
18
|
+
htmlFor: htmlId,
|
|
19
|
+
label: field.label,
|
|
20
|
+
required: !field.optional
|
|
21
|
+
}),
|
|
22
|
+
/*#__PURE__*/ jsx(Select, {
|
|
23
|
+
size: "sm",
|
|
24
|
+
id: htmlId,
|
|
25
|
+
name: field.name,
|
|
26
|
+
placeholder: "Select an option",
|
|
27
|
+
required: !field.optional,
|
|
28
|
+
value: incomingValue,
|
|
29
|
+
ariaLabel: field.label,
|
|
30
|
+
helpText: field.helpText,
|
|
31
|
+
items: field.options.map((opt)=>({
|
|
32
|
+
value: opt.value,
|
|
33
|
+
label: opt.label
|
|
34
|
+
})),
|
|
35
|
+
onValueChange: (value)=>{
|
|
36
|
+
if (null != value) onChange?.(value);
|
|
37
|
+
},
|
|
38
|
+
className: classnames(isDirty && [
|
|
39
|
+
'byline-field-select-dirty',
|
|
40
|
+
select_field_module.dirty
|
|
41
|
+
])
|
|
42
|
+
}),
|
|
43
|
+
fieldError && /*#__PURE__*/ jsx(ErrorText, {
|
|
44
|
+
id: `${field.name}-error`,
|
|
45
|
+
text: fieldError
|
|
46
|
+
})
|
|
47
|
+
]
|
|
48
|
+
});
|
|
49
|
+
};
|
|
50
|
+
export { SelectField };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This Source Code is subject to the terms of the Mozilla Public
|
|
3
|
+
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
4
|
+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
5
|
+
*
|
|
6
|
+
* Copyright (c) Infonomic Company Limited
|
|
7
|
+
*/
|
|
8
|
+
import { type ReactNode } from 'react';
|
|
9
|
+
export declare const SortableItem: ({ id, label, children, onAddBelow, onRemove, }: {
|
|
10
|
+
id: string;
|
|
11
|
+
label: ReactNode;
|
|
12
|
+
children: ReactNode;
|
|
13
|
+
onAddBelow?: () => void;
|
|
14
|
+
onRemove?: () => void;
|
|
15
|
+
}) => import("react").JSX.Element;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { useState } from "react";
|
|
3
|
+
import { useTranslation } from "@byline/i18n/react";
|
|
4
|
+
import { ChevronDownIcon, GripperVerticalIcon, useSortable } from "@byline/ui/react";
|
|
5
|
+
import classnames from "classnames";
|
|
6
|
+
import { DraggableContextMenu } from "./draggable-context-menu.js";
|
|
7
|
+
import sortable_item_module from "./sortable-item.module.js";
|
|
8
|
+
const SortableItem = ({ id, label, children, onAddBelow, onRemove })=>{
|
|
9
|
+
const { t } = useTranslation('byline-admin');
|
|
10
|
+
const { attributes, listeners, setNodeRef, transform, transition, isDragging } = useSortable({
|
|
11
|
+
id,
|
|
12
|
+
transition: {
|
|
13
|
+
duration: 250,
|
|
14
|
+
easing: 'cubic-bezier(0, 0.2, 0.2, 1)'
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
const [collapsed, setCollapsed] = useState(false);
|
|
18
|
+
const style = {
|
|
19
|
+
transform: transform ? `translate3d(${transform.x}px, ${transform.y}px, 0)` : void 0,
|
|
20
|
+
transition,
|
|
21
|
+
zIndex: isDragging ? 10 : 'auto'
|
|
22
|
+
};
|
|
23
|
+
return /*#__PURE__*/ jsxs("div", {
|
|
24
|
+
ref: setNodeRef,
|
|
25
|
+
style: style,
|
|
26
|
+
className: classnames('byline-sortable', sortable_item_module.root, isDragging && [
|
|
27
|
+
'byline-sortable-dragging',
|
|
28
|
+
sortable_item_module.dragging
|
|
29
|
+
], collapsed && [
|
|
30
|
+
'byline-sortable-collapsed',
|
|
31
|
+
sortable_item_module.collapsed
|
|
32
|
+
]),
|
|
33
|
+
children: [
|
|
34
|
+
/*#__PURE__*/ jsxs("div", {
|
|
35
|
+
className: classnames('byline-sortable-header', sortable_item_module.header, !collapsed && [
|
|
36
|
+
'byline-sortable-header-expanded',
|
|
37
|
+
sortable_item_module["header-expanded"]
|
|
38
|
+
]),
|
|
39
|
+
children: [
|
|
40
|
+
/*#__PURE__*/ jsx("button", {
|
|
41
|
+
type: "button",
|
|
42
|
+
className: classnames('byline-sortable-grip', sortable_item_module.grip),
|
|
43
|
+
...attributes,
|
|
44
|
+
...listeners,
|
|
45
|
+
children: /*#__PURE__*/ jsx(GripperVerticalIcon, {
|
|
46
|
+
className: classnames('byline-sortable-grip-icon', sortable_item_module["grip-icon"])
|
|
47
|
+
})
|
|
48
|
+
}),
|
|
49
|
+
/*#__PURE__*/ jsx("div", {
|
|
50
|
+
className: classnames('byline-sortable-label', sortable_item_module.label),
|
|
51
|
+
children: label
|
|
52
|
+
}),
|
|
53
|
+
/*#__PURE__*/ jsx(DraggableContextMenu, {
|
|
54
|
+
onAddBelow: onAddBelow,
|
|
55
|
+
onRemove: onRemove
|
|
56
|
+
}),
|
|
57
|
+
/*#__PURE__*/ jsx("button", {
|
|
58
|
+
type: "button",
|
|
59
|
+
className: classnames('byline-sortable-toggle', sortable_item_module.toggle),
|
|
60
|
+
onClick: ()=>setCollapsed((prev)=>!prev),
|
|
61
|
+
"aria-label": collapsed ? t('fields.sortable.expandAriaLabel') : t('fields.sortable.collapseAriaLabel'),
|
|
62
|
+
children: /*#__PURE__*/ jsx(ChevronDownIcon, {
|
|
63
|
+
className: classnames('byline-sortable-toggle-icon', sortable_item_module["toggle-icon"], collapsed && [
|
|
64
|
+
'byline-sortable-toggle-icon-rotated',
|
|
65
|
+
sortable_item_module["toggle-icon-rotated"]
|
|
66
|
+
])
|
|
67
|
+
})
|
|
68
|
+
})
|
|
69
|
+
]
|
|
70
|
+
}),
|
|
71
|
+
/*#__PURE__*/ jsx("div", {
|
|
72
|
+
className: classnames('byline-sortable-content', sortable_item_module.content, collapsed && [
|
|
73
|
+
'byline-sortable-content-hidden',
|
|
74
|
+
sortable_item_module["content-hidden"]
|
|
75
|
+
]),
|
|
76
|
+
children: children
|
|
77
|
+
})
|
|
78
|
+
]
|
|
79
|
+
});
|
|
80
|
+
};
|
|
81
|
+
export { SortableItem };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import "./sortable-item_module.css";
|
|
2
|
+
const sortable_item_module = {
|
|
3
|
+
root: "root-nYQaZT",
|
|
4
|
+
dragging: "dragging-rtG5ct",
|
|
5
|
+
collapsed: "collapsed-BA4JvQ",
|
|
6
|
+
header: "header-IyXOb9",
|
|
7
|
+
"header-expanded": "header-expanded-xwmWic",
|
|
8
|
+
headerExpanded: "header-expanded-xwmWic",
|
|
9
|
+
grip: "grip-XZjBQM",
|
|
10
|
+
"grip-icon": "grip-icon-tCuFX_",
|
|
11
|
+
gripIcon: "grip-icon-tCuFX_",
|
|
12
|
+
label: "label-SFRtoy",
|
|
13
|
+
toggle: "toggle-zv8W_y",
|
|
14
|
+
"toggle-icon": "toggle-icon-vk15Bb",
|
|
15
|
+
toggleIcon: "toggle-icon-vk15Bb",
|
|
16
|
+
"toggle-icon-rotated": "toggle-icon-rotated-p9rEVP",
|
|
17
|
+
toggleIconRotated: "toggle-icon-rotated-p9rEVP",
|
|
18
|
+
content: "content-ril4mv",
|
|
19
|
+
"content-hidden": "content-hidden-zrS2UX",
|
|
20
|
+
contentHidden: "content-hidden-zrS2UX"
|
|
21
|
+
};
|
|
22
|
+
export default sortable_item_module;
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
:is(.root-nYQaZT, .byline-sortable) {
|
|
2
|
+
padding: var(--spacing-16);
|
|
3
|
+
padding-top: var(--spacing-8);
|
|
4
|
+
border: var(--border-width-thin) dashed var(--gray-600);
|
|
5
|
+
border-radius: var(--border-radius-md);
|
|
6
|
+
background-color: oklch(from var(--canvas-50) l c h / .5);
|
|
7
|
+
box-shadow: 0 1px 2px #0000000d;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
:is(.dragging-rtG5ct, .byline-sortable-dragging) {
|
|
11
|
+
background-color: oklch(from var(--canvas-50) l c h / .8);
|
|
12
|
+
box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
:is(.collapsed-BA4JvQ, .byline-sortable-collapsed) {
|
|
16
|
+
padding-top: var(--spacing-8);
|
|
17
|
+
padding-bottom: var(--spacing-8);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
:is(.header-IyXOb9, .byline-sortable-header) {
|
|
21
|
+
align-items: center;
|
|
22
|
+
gap: var(--spacing-8);
|
|
23
|
+
margin-bottom: 0;
|
|
24
|
+
margin-left: -.75rem;
|
|
25
|
+
display: flex;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
:is(.header-expanded-xwmWic, .byline-sortable-header-expanded) {
|
|
29
|
+
margin-bottom: var(--spacing-8);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
:is(.grip-XZjBQM, .byline-sortable-grip) {
|
|
33
|
+
border-radius: var(--border-radius-sm);
|
|
34
|
+
color: var(--gray-400);
|
|
35
|
+
cursor: grab;
|
|
36
|
+
background: none;
|
|
37
|
+
border: none;
|
|
38
|
+
justify-content: center;
|
|
39
|
+
align-items: center;
|
|
40
|
+
padding: .25rem;
|
|
41
|
+
display: flex;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
:is(.grip-XZjBQM:hover, .byline-sortable-grip:hover) {
|
|
45
|
+
background-color: var(--gray-100);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
:is(.grip-XZjBQM:active, .byline-sortable-grip:active) {
|
|
49
|
+
cursor: grabbing;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
:is(.grip-icon-tCuFX_, .byline-sortable-grip-icon) {
|
|
53
|
+
width: 1rem;
|
|
54
|
+
height: 1rem;
|
|
55
|
+
color: var(--primary-500);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
:is(.label-SFRtoy, .byline-sortable-label) {
|
|
59
|
+
min-width: 0;
|
|
60
|
+
font-size: 1rem;
|
|
61
|
+
font-weight: var(--font-weight-medium);
|
|
62
|
+
text-overflow: ellipsis;
|
|
63
|
+
white-space: nowrap;
|
|
64
|
+
flex: 1;
|
|
65
|
+
overflow: hidden;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
:is(.toggle-zv8W_y, .byline-sortable-toggle) {
|
|
69
|
+
border-radius: var(--border-radius-sm);
|
|
70
|
+
color: var(--gray-400);
|
|
71
|
+
cursor: pointer;
|
|
72
|
+
background: none;
|
|
73
|
+
border: none;
|
|
74
|
+
justify-content: center;
|
|
75
|
+
align-items: center;
|
|
76
|
+
padding: .25rem;
|
|
77
|
+
display: flex;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
:is(.toggle-zv8W_y:hover, .byline-sortable-toggle:hover) {
|
|
81
|
+
background-color: var(--gray-800);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
:is(.toggle-icon-vk15Bb, .byline-sortable-toggle-icon) {
|
|
85
|
+
width: 1rem;
|
|
86
|
+
height: 1rem;
|
|
87
|
+
transition: transform .15s;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
:is(.toggle-icon-rotated-p9rEVP, .byline-sortable-toggle-icon-rotated) {
|
|
91
|
+
transform: rotate(180deg);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
:is(.content-ril4mv, .byline-sortable-content) {
|
|
95
|
+
gap: var(--spacing-16);
|
|
96
|
+
opacity: 1;
|
|
97
|
+
flex-direction: column;
|
|
98
|
+
transition: all .2s;
|
|
99
|
+
display: flex;
|
|
100
|
+
position: relative;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
:is(.content-hidden-zrS2UX, .byline-sortable-content-hidden) {
|
|
104
|
+
opacity: 0;
|
|
105
|
+
z-index: -10;
|
|
106
|
+
max-height: 0;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
:is(:is([data-theme="dark"], .dark) .root-nYQaZT, :is([data-theme="dark"], .dark) .byline-sortable) {
|
|
110
|
+
background-color: var(--canvas-800);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
:is(:is([data-theme="dark"], .dark) .dragging-rtG5ct, :is([data-theme="dark"], .dark) .byline-sortable-dragging) {
|
|
114
|
+
background-color: oklch(from var(--canvas-700) l c h / .3);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
:is(:is([data-theme="dark"], .dark) .grip-XZjBQM:hover, :is([data-theme="dark"], .dark) .byline-sortable-grip:hover) {
|
|
118
|
+
background-color: var(--gray-800);
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
:is(:is([data-theme="dark"], .dark) .grip-icon-tCuFX_, :is([data-theme="dark"], .dark) .byline-sortable-grip-icon) {
|
|
122
|
+
color: var(--primary-200);
|
|
123
|
+
}
|
|
124
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This Source Code is subject to the terms of the Mozilla Public
|
|
3
|
+
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
4
|
+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
5
|
+
*
|
|
6
|
+
* Copyright (c) Infonomic Company Limited
|
|
7
|
+
*/
|
|
8
|
+
import type { FieldComponentSlots, TextField as FieldType } from '@byline/core';
|
|
9
|
+
export declare const TextField: ({ field, value, defaultValue, onChange, id, path, locale, components, }: {
|
|
10
|
+
field: FieldType;
|
|
11
|
+
value?: string;
|
|
12
|
+
defaultValue?: string;
|
|
13
|
+
onChange?: (value: string) => void;
|
|
14
|
+
id?: string;
|
|
15
|
+
path?: string;
|
|
16
|
+
/** When provided, renders a LocaleBadge next to the field label. */
|
|
17
|
+
locale?: string;
|
|
18
|
+
/** Optional UI component slot overrides from the admin config. */
|
|
19
|
+
components?: FieldComponentSlots;
|
|
20
|
+
}) => import("react").JSX.Element;
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { useCallback } from "react";
|
|
3
|
+
import { Input, Label } from "@byline/ui/react";
|
|
4
|
+
import classnames from "classnames";
|
|
5
|
+
import { useFieldError, useFieldValue } from "../../forms/form-context.js";
|
|
6
|
+
import { LocaleBadge } from "../locale-badge.js";
|
|
7
|
+
import text_field_module from "./text-field.module.js";
|
|
8
|
+
const TextField = ({ field, value, defaultValue, onChange, id, path, locale, components })=>{
|
|
9
|
+
const fieldPath = path ?? field.name;
|
|
10
|
+
const fieldError = useFieldError(fieldPath);
|
|
11
|
+
const fieldValue = useFieldValue(fieldPath);
|
|
12
|
+
const incomingValue = value ?? fieldValue ?? defaultValue ?? '';
|
|
13
|
+
const htmlId = id ?? fieldPath;
|
|
14
|
+
const handleChange = useCallback((value)=>{
|
|
15
|
+
if (onChange) onChange(value);
|
|
16
|
+
}, [
|
|
17
|
+
onChange
|
|
18
|
+
]);
|
|
19
|
+
const slots = components;
|
|
20
|
+
const CustomLabel = slots?.Label;
|
|
21
|
+
const CustomHelpText = slots?.HelpText;
|
|
22
|
+
const CustomField = slots?.Field;
|
|
23
|
+
const BeforeField = slots?.beforeField;
|
|
24
|
+
const AfterField = slots?.afterField;
|
|
25
|
+
const slotBaseProps = {
|
|
26
|
+
field: field,
|
|
27
|
+
path: fieldPath,
|
|
28
|
+
value: incomingValue,
|
|
29
|
+
error: fieldError,
|
|
30
|
+
id: htmlId
|
|
31
|
+
};
|
|
32
|
+
const showBadge = !!locale && !!field.label;
|
|
33
|
+
const hasCustomLabel = !!CustomLabel;
|
|
34
|
+
const suppressInputLabel = showBadge || hasCustomLabel;
|
|
35
|
+
const suppressInputHelpText = !!CustomHelpText;
|
|
36
|
+
const labelRowClass = classnames('byline-field-text-label-row', text_field_module["label-row"]);
|
|
37
|
+
const renderLabel = ()=>{
|
|
38
|
+
if (hasCustomLabel) return /*#__PURE__*/ jsxs("div", {
|
|
39
|
+
className: labelRowClass,
|
|
40
|
+
children: [
|
|
41
|
+
/*#__PURE__*/ jsx(CustomLabel, {
|
|
42
|
+
...slotBaseProps,
|
|
43
|
+
label: field.label,
|
|
44
|
+
required: !field.optional
|
|
45
|
+
}),
|
|
46
|
+
showBadge && /*#__PURE__*/ jsx(LocaleBadge, {
|
|
47
|
+
locale: locale
|
|
48
|
+
})
|
|
49
|
+
]
|
|
50
|
+
});
|
|
51
|
+
if (showBadge) return /*#__PURE__*/ jsxs("div", {
|
|
52
|
+
className: labelRowClass,
|
|
53
|
+
children: [
|
|
54
|
+
/*#__PURE__*/ jsx(Label, {
|
|
55
|
+
id: `${htmlId}-label`,
|
|
56
|
+
htmlFor: htmlId,
|
|
57
|
+
label: field.label,
|
|
58
|
+
required: !field.optional
|
|
59
|
+
}),
|
|
60
|
+
/*#__PURE__*/ jsx(LocaleBadge, {
|
|
61
|
+
locale: locale
|
|
62
|
+
})
|
|
63
|
+
]
|
|
64
|
+
});
|
|
65
|
+
return null;
|
|
66
|
+
};
|
|
67
|
+
const renderInput = ()=>{
|
|
68
|
+
if (CustomField) return /*#__PURE__*/ jsx(CustomField, {
|
|
69
|
+
...slotBaseProps,
|
|
70
|
+
onChange: handleChange,
|
|
71
|
+
defaultValue: defaultValue,
|
|
72
|
+
placeholder: field.placeholder
|
|
73
|
+
});
|
|
74
|
+
return /*#__PURE__*/ jsx(Input, {
|
|
75
|
+
id: htmlId,
|
|
76
|
+
name: field.name,
|
|
77
|
+
label: suppressInputLabel ? void 0 : field.label,
|
|
78
|
+
required: !field.optional,
|
|
79
|
+
helpText: suppressInputHelpText ? void 0 : field.helpText,
|
|
80
|
+
value: incomingValue,
|
|
81
|
+
onChange: (e)=>handleChange(e.target.value),
|
|
82
|
+
error: null != fieldError,
|
|
83
|
+
errorText: fieldError
|
|
84
|
+
});
|
|
85
|
+
};
|
|
86
|
+
return /*#__PURE__*/ jsxs("div", {
|
|
87
|
+
className: `byline-field-text ${field.name}`,
|
|
88
|
+
children: [
|
|
89
|
+
renderLabel(),
|
|
90
|
+
BeforeField && /*#__PURE__*/ jsx(BeforeField, {
|
|
91
|
+
...slotBaseProps
|
|
92
|
+
}),
|
|
93
|
+
renderInput(),
|
|
94
|
+
AfterField && /*#__PURE__*/ jsx(AfterField, {
|
|
95
|
+
...slotBaseProps
|
|
96
|
+
}),
|
|
97
|
+
CustomHelpText && /*#__PURE__*/ jsx(CustomHelpText, {
|
|
98
|
+
...slotBaseProps,
|
|
99
|
+
helpText: field.helpText
|
|
100
|
+
})
|
|
101
|
+
]
|
|
102
|
+
});
|
|
103
|
+
};
|
|
104
|
+
export { TextField };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This Source Code is subject to the terms of the Mozilla Public
|
|
3
|
+
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
4
|
+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
5
|
+
*
|
|
6
|
+
* Copyright (c) Infonomic Company Limited
|
|
7
|
+
*/
|
|
8
|
+
import type { FieldComponentSlots, TextAreaField as FieldType } from '@byline/core';
|
|
9
|
+
export declare const TextAreaField: ({ field, value, defaultValue, onChange, id, path, locale, components, }: {
|
|
10
|
+
field: FieldType;
|
|
11
|
+
value?: string;
|
|
12
|
+
defaultValue?: string;
|
|
13
|
+
onChange?: (value: string) => void;
|
|
14
|
+
id?: string;
|
|
15
|
+
path?: string;
|
|
16
|
+
/** When provided, renders a LocaleBadge next to the field label. */
|
|
17
|
+
locale?: string;
|
|
18
|
+
/** Optional UI component slot overrides from the admin config. */
|
|
19
|
+
components?: FieldComponentSlots;
|
|
20
|
+
}) => import("react").JSX.Element;
|