@payloadcms/ui 4.0.0-internal.f851106 → 4.0.0-internal.fa183d3

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.
Files changed (47) hide show
  1. package/dist/elements/ArrayAction/index.d.ts +0 -2
  2. package/dist/elements/ArrayAction/index.d.ts.map +1 -1
  3. package/dist/elements/ArrayAction/index.js +24 -65
  4. package/dist/elements/ArrayAction/index.js.map +1 -1
  5. package/dist/elements/ClipboardAction/clipboardUtilities.d.ts +1 -8
  6. package/dist/elements/ClipboardAction/clipboardUtilities.d.ts.map +1 -1
  7. package/dist/elements/ClipboardAction/clipboardUtilities.js +8 -40
  8. package/dist/elements/ClipboardAction/clipboardUtilities.js.map +1 -1
  9. package/dist/elements/ClipboardAction/index.d.ts.map +1 -1
  10. package/dist/elements/ClipboardAction/index.js +1 -17
  11. package/dist/elements/ClipboardAction/index.js.map +1 -1
  12. package/dist/elements/ClipboardAction/types.d.ts +0 -3
  13. package/dist/elements/ClipboardAction/types.d.ts.map +1 -1
  14. package/dist/elements/ClipboardAction/types.js.map +1 -1
  15. package/dist/exports/layouts.d.ts +1 -0
  16. package/dist/exports/layouts.d.ts.map +1 -1
  17. package/dist/exports/layouts.js +1 -0
  18. package/dist/exports/layouts.js.map +1 -1
  19. package/dist/exports/shared/index.d.ts +1 -0
  20. package/dist/exports/shared/index.d.ts.map +1 -1
  21. package/dist/exports/shared/index.js +2 -2
  22. package/dist/exports/shared/index.js.map +4 -4
  23. package/dist/fields/Array/ArrayRow.d.ts.map +1 -1
  24. package/dist/fields/Array/ArrayRow.js +160 -97
  25. package/dist/fields/Array/ArrayRow.js.map +1 -1
  26. package/dist/fields/Blocks/BlockRow.d.ts.map +1 -1
  27. package/dist/fields/Blocks/BlockRow.js +195 -134
  28. package/dist/fields/Blocks/BlockRow.js.map +1 -1
  29. package/dist/fields/Blocks/RowActions.d.ts +0 -2
  30. package/dist/fields/Blocks/RowActions.d.ts.map +1 -1
  31. package/dist/fields/Blocks/RowActions.js +20 -23
  32. package/dist/fields/Blocks/RowActions.js.map +1 -1
  33. package/dist/forms/RenderFields/index.css +2 -16
  34. package/dist/layouts/Root/viewport.d.ts +1 -0
  35. package/dist/layouts/Root/viewport.d.ts.map +1 -1
  36. package/dist/layouts/Root/viewport.js +4 -1
  37. package/dist/layouts/Root/viewport.js.map +1 -1
  38. package/dist/styles.css +1 -1
  39. package/package.json +5 -5
  40. package/dist/elements/ClipboardAction/clipboardUtilities.spec.js +0 -120
  41. package/dist/elements/ClipboardAction/clipboardUtilities.spec.js.map +0 -1
  42. package/dist/elements/ClipboardAction/isClipboardDataValid.spec.js +0 -144
  43. package/dist/elements/ClipboardAction/isClipboardDataValid.spec.js.map +0 -1
  44. package/dist/elements/ClipboardAction/useCanPasteClipboard.d.ts +0 -10
  45. package/dist/elements/ClipboardAction/useCanPasteClipboard.d.ts.map +0 -1
  46. package/dist/elements/ClipboardAction/useCanPasteClipboard.js +0 -21
  47. package/dist/elements/ClipboardAction/useCanPasteClipboard.js.map +0 -1
@@ -1,5 +1,6 @@
1
1
  'use client';
2
2
 
3
+ import { c as _c } from "react/compiler-runtime";
3
4
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
4
5
  import { getTranslation } from '@payloadcms/translations';
5
6
  import React from 'react';
@@ -14,109 +15,171 @@ import { useThrottledValue } from '../../hooks/useThrottledValue.js';
14
15
  import { useTranslation } from '../../providers/Translation/index.js';
15
16
  import './index.css';
16
17
  const baseClass = 'array-field';
17
- export const ArrayRow = ({
18
- addRow,
19
- attributes,
20
- copyRow,
21
- CustomRowLabel,
22
- duplicateRow,
23
- errorCount,
24
- fields,
25
- forceRender = false,
26
- hasMaxRows,
27
- isDragging,
28
- isLoading: isLoadingFromProps,
29
- isSortable,
30
- labels,
31
- listeners,
32
- moveRow,
33
- parentPath,
34
- pasteRow,
35
- path,
36
- permissions,
37
- readOnly,
38
- removeRow,
39
- row,
40
- rowCount,
41
- rowIndex,
42
- schemaPath,
43
- scrollIdPrefix,
44
- setCollapse,
45
- setNodeRef,
46
- transform,
47
- transition
48
- }) => {
18
+ export const ArrayRow = t0 => {
19
+ const $ = _c(42);
20
+ const {
21
+ addRow,
22
+ attributes,
23
+ copyRow,
24
+ CustomRowLabel,
25
+ duplicateRow,
26
+ errorCount,
27
+ fields,
28
+ forceRender: t1,
29
+ hasMaxRows,
30
+ isDragging,
31
+ isLoading: isLoadingFromProps,
32
+ isSortable,
33
+ labels,
34
+ listeners,
35
+ moveRow,
36
+ parentPath,
37
+ pasteRow,
38
+ path,
39
+ permissions,
40
+ readOnly,
41
+ removeRow,
42
+ row,
43
+ rowCount,
44
+ rowIndex,
45
+ schemaPath,
46
+ scrollIdPrefix,
47
+ setCollapse,
48
+ setNodeRef,
49
+ transform,
50
+ transition
51
+ } = t0;
52
+ const forceRender = t1 === undefined ? false : t1;
49
53
  const isLoading = useThrottledValue(isLoadingFromProps, 500);
50
54
  const {
51
55
  i18n
52
56
  } = useTranslation();
53
57
  const hasSubmitted = useFormSubmitted();
54
- const pasteData = React.useMemo(() => ({
55
- path,
56
- schemaFields: fields
57
- }), [path, fields]);
58
- const fallbackLabel = `${getTranslation(labels.singular, i18n)} ${String(rowIndex + 1).padStart(2, '0')}`;
58
+ const fallbackLabel = `${getTranslation(labels.singular, i18n)} ${String(rowIndex + 1).padStart(2, "0")}`;
59
59
  const fieldHasErrors = errorCount > 0 && hasSubmitted;
60
- const classNames = [`${baseClass}__row`, fieldHasErrors ? `${baseClass}__row--has-errors` : `${baseClass}__row--no-errors`, isDragging && `${baseClass}__row--is-dragging`].filter(Boolean).join(' ');
61
- return /*#__PURE__*/_jsx("div", {
62
- id: `${parentPath.split('.').join('-')}-row-${rowIndex}`,
63
- ref: setNodeRef,
64
- style: {
65
- transform,
66
- transition,
67
- zIndex: isDragging ? 1 : undefined
68
- },
69
- children: /*#__PURE__*/_jsx(Collapsible, {
70
- actions: !readOnly ? /*#__PURE__*/_jsx(ArrayAction, {
71
- addRow: addRow,
72
- copyRow: copyRow,
73
- duplicateRow: duplicateRow,
74
- hasMaxRows: hasMaxRows,
75
- index: rowIndex,
76
- isSortable: isSortable,
77
- moveRow: moveRow,
78
- pasteData: pasteData,
79
- pasteRow: pasteRow,
80
- removeRow: removeRow,
81
- rowCount: rowCount
82
- }) : undefined,
83
- className: classNames,
84
- collapsibleStyle: fieldHasErrors ? 'error' : 'default',
85
- dragHandleProps: isSortable ? {
86
- id: row.id,
87
- attributes,
88
- listeners
89
- } : undefined,
90
- header: /*#__PURE__*/_jsxs("div", {
91
- className: `${baseClass}__row-header`,
92
- id: `${scrollIdPrefix}-row-${rowIndex}`,
93
- children: [isLoading ? /*#__PURE__*/_jsx(ShimmerEffect, {
94
- height: "1rem",
95
- width: "8rem"
96
- }) : /*#__PURE__*/_jsx(RowLabel, {
97
- CustomComponent: CustomRowLabel,
98
- label: fallbackLabel,
99
- path: path,
100
- rowNumber: rowIndex
101
- }), fieldHasErrors && /*#__PURE__*/_jsx(ErrorPill, {
102
- count: errorCount,
103
- i18n: i18n,
104
- withMessage: true
105
- })]
106
- }),
107
- isCollapsed: row.collapsed,
108
- onToggle: collapsed => setCollapse(row.id, collapsed),
109
- children: isLoading ? /*#__PURE__*/_jsx(ShimmerEffect, {}) : /*#__PURE__*/_jsx(RenderFields, {
110
- className: `${baseClass}__fields`,
111
- fields: fields,
112
- forceRender: forceRender,
113
- parentIndexPath: "",
114
- parentPath: path,
115
- parentSchemaPath: schemaPath,
116
- permissions: permissions === true ? permissions : permissions?.fields,
117
- readOnly: readOnly
60
+ const t2 = fieldHasErrors ? `${baseClass}__row--has-errors` : `${baseClass}__row--no-errors`;
61
+ const t3 = isDragging && `${baseClass}__row--is-dragging`;
62
+ let t4;
63
+ if ($[0] !== t2 || $[1] !== t3) {
64
+ t4 = [`${baseClass}__row`, t2, t3].filter(Boolean);
65
+ $[0] = t2;
66
+ $[1] = t3;
67
+ $[2] = t4;
68
+ } else {
69
+ t4 = $[2];
70
+ }
71
+ const classNames = t4.join(" ");
72
+ const t5 = `${parentPath.split(".").join("-")}-row-${rowIndex}`;
73
+ const t6 = isDragging ? 1 : undefined;
74
+ let t7;
75
+ if ($[3] !== CustomRowLabel || $[4] !== addRow || $[5] !== attributes || $[6] !== classNames || $[7] !== copyRow || $[8] !== duplicateRow || $[9] !== errorCount || $[10] !== fallbackLabel || $[11] !== fieldHasErrors || $[12] !== fields || $[13] !== forceRender || $[14] !== hasMaxRows || $[15] !== i18n || $[16] !== isLoading || $[17] !== isSortable || $[18] !== listeners || $[19] !== moveRow || $[20] !== parentPath || $[21] !== pasteRow || $[22] !== path || $[23] !== permissions || $[24] !== readOnly || $[25] !== removeRow || $[26] !== row.collapsed || $[27] !== row.id || $[28] !== rowCount || $[29] !== rowIndex || $[30] !== schemaPath || $[31] !== scrollIdPrefix || $[32] !== setCollapse || $[33] !== setNodeRef || $[34] !== t5 || $[35] !== t6 || $[36] !== transform || $[37] !== transition) {
76
+ let t8;
77
+ if ($[39] !== row.id || $[40] !== setCollapse) {
78
+ t8 = collapsed => setCollapse(row.id, collapsed);
79
+ $[39] = row.id;
80
+ $[40] = setCollapse;
81
+ $[41] = t8;
82
+ } else {
83
+ t8 = $[41];
84
+ }
85
+ t7 = _jsx("div", {
86
+ id: t5,
87
+ ref: setNodeRef,
88
+ style: {
89
+ transform,
90
+ transition,
91
+ zIndex: t6
92
+ },
93
+ children: _jsx(Collapsible, {
94
+ actions: !readOnly ? _jsx(ArrayAction, {
95
+ addRow,
96
+ copyRow,
97
+ duplicateRow,
98
+ hasMaxRows,
99
+ index: rowIndex,
100
+ isSortable,
101
+ moveRow,
102
+ pasteRow,
103
+ removeRow,
104
+ rowCount
105
+ }) : undefined,
106
+ className: classNames,
107
+ collapsibleStyle: fieldHasErrors ? "error" : "default",
108
+ dragHandleProps: isSortable ? {
109
+ id: row.id,
110
+ attributes,
111
+ listeners
112
+ } : undefined,
113
+ header: _jsxs("div", {
114
+ className: `${baseClass}__row-header`,
115
+ id: `${scrollIdPrefix}-row-${rowIndex}`,
116
+ children: [isLoading ? _jsx(ShimmerEffect, {
117
+ height: "1rem",
118
+ width: "8rem"
119
+ }) : _jsx(RowLabel, {
120
+ CustomComponent: CustomRowLabel,
121
+ label: fallbackLabel,
122
+ path,
123
+ rowNumber: rowIndex
124
+ }), fieldHasErrors && _jsx(ErrorPill, {
125
+ count: errorCount,
126
+ i18n,
127
+ withMessage: true
128
+ })]
129
+ }),
130
+ isCollapsed: row.collapsed,
131
+ onToggle: t8,
132
+ children: isLoading ? _jsx(ShimmerEffect, {}) : _jsx(RenderFields, {
133
+ className: `${baseClass}__fields`,
134
+ fields,
135
+ forceRender,
136
+ parentIndexPath: "",
137
+ parentPath: path,
138
+ parentSchemaPath: schemaPath,
139
+ permissions: permissions === true ? permissions : permissions?.fields,
140
+ readOnly
141
+ })
118
142
  })
119
- })
120
- }, `${parentPath}-row-${row.id}`);
143
+ }, `${parentPath}-row-${row.id}`);
144
+ $[3] = CustomRowLabel;
145
+ $[4] = addRow;
146
+ $[5] = attributes;
147
+ $[6] = classNames;
148
+ $[7] = copyRow;
149
+ $[8] = duplicateRow;
150
+ $[9] = errorCount;
151
+ $[10] = fallbackLabel;
152
+ $[11] = fieldHasErrors;
153
+ $[12] = fields;
154
+ $[13] = forceRender;
155
+ $[14] = hasMaxRows;
156
+ $[15] = i18n;
157
+ $[16] = isLoading;
158
+ $[17] = isSortable;
159
+ $[18] = listeners;
160
+ $[19] = moveRow;
161
+ $[20] = parentPath;
162
+ $[21] = pasteRow;
163
+ $[22] = path;
164
+ $[23] = permissions;
165
+ $[24] = readOnly;
166
+ $[25] = removeRow;
167
+ $[26] = row.collapsed;
168
+ $[27] = row.id;
169
+ $[28] = rowCount;
170
+ $[29] = rowIndex;
171
+ $[30] = schemaPath;
172
+ $[31] = scrollIdPrefix;
173
+ $[32] = setCollapse;
174
+ $[33] = setNodeRef;
175
+ $[34] = t5;
176
+ $[35] = t6;
177
+ $[36] = transform;
178
+ $[37] = transition;
179
+ $[38] = t7;
180
+ } else {
181
+ t7 = $[38];
182
+ }
183
+ return t7;
121
184
  };
122
185
  //# sourceMappingURL=ArrayRow.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ArrayRow.js","names":["getTranslation","React","ArrayAction","Collapsible","ErrorPill","ShimmerEffect","useFormSubmitted","RenderFields","RowLabel","useThrottledValue","useTranslation","baseClass","ArrayRow","addRow","attributes","copyRow","CustomRowLabel","duplicateRow","errorCount","fields","forceRender","hasMaxRows","isDragging","isLoading","isLoadingFromProps","isSortable","labels","listeners","moveRow","parentPath","pasteRow","path","permissions","readOnly","removeRow","row","rowCount","rowIndex","schemaPath","scrollIdPrefix","setCollapse","setNodeRef","transform","transition","i18n","hasSubmitted","pasteData","useMemo","schemaFields","fallbackLabel","singular","String","padStart","fieldHasErrors","classNames","filter","Boolean","join","_jsx","id","split","ref","style","zIndex","undefined","actions","index","className","collapsibleStyle","dragHandleProps","header","_jsxs","height","width","CustomComponent","label","rowNumber","count","withMessage","isCollapsed","collapsed","onToggle","parentIndexPath","parentSchemaPath"],"sources":["../../../src/fields/Array/ArrayRow.tsx"],"sourcesContent":["'use client'\nimport type {\n ArrayField,\n ClientComponentProps,\n ClientField,\n Row,\n SanitizedFieldPermissions,\n} from 'payload'\n\nimport { getTranslation } from '@payloadcms/translations'\nimport React from 'react'\n\nimport type { UseDraggableSortableReturn } from '../../elements/DraggableSortable/useDraggableSortable/types.js'\n\nimport { ArrayAction } from '../../elements/ArrayAction/index.js'\nimport { Collapsible } from '../../elements/Collapsible/index.js'\nimport { ErrorPill } from '../../elements/ErrorPill/index.js'\nimport { ShimmerEffect } from '../../elements/ShimmerEffect/index.js'\nimport { useFormSubmitted } from '../../forms/Form/context.js'\nimport { RenderFields } from '../../forms/RenderFields/index.js'\nimport { RowLabel } from '../../forms/RowLabel/index.js'\nimport { useThrottledValue } from '../../hooks/useThrottledValue.js'\nimport { useTranslation } from '../../providers/Translation/index.js'\nimport './index.css'\n\nconst baseClass = 'array-field'\n\ntype ArrayRowProps = {\n readonly addRow: (rowIndex: number) => Promise<void> | void\n readonly copyRow: (rowIndex: number) => void\n readonly CustomRowLabel?: React.ReactNode\n readonly duplicateRow: (rowIndex: number) => void\n readonly errorCount: number\n readonly fields: ClientField[]\n readonly hasMaxRows?: boolean\n readonly isLoading?: boolean\n readonly isSortable?: boolean\n readonly labels: Partial<ArrayField['labels']>\n readonly moveRow: (fromIndex: number, toIndex: number) => void\n readonly parentPath: string\n readonly pasteRow: (rowIndex: number) => void\n readonly path: string\n readonly permissions: SanitizedFieldPermissions\n readonly readOnly?: boolean\n readonly removeRow: (rowIndex: number) => void\n readonly row: Row\n readonly rowCount: number\n readonly rowIndex: number\n readonly schemaPath: string\n readonly scrollIdPrefix: string\n readonly setCollapse: (rowID: string, collapsed: boolean) => void\n} & Pick<ClientComponentProps, 'forceRender'> &\n UseDraggableSortableReturn\n\nexport const ArrayRow: React.FC<ArrayRowProps> = ({\n addRow,\n attributes,\n copyRow,\n CustomRowLabel,\n duplicateRow,\n errorCount,\n fields,\n forceRender = false,\n hasMaxRows,\n isDragging,\n isLoading: isLoadingFromProps,\n isSortable,\n labels,\n listeners,\n moveRow,\n parentPath,\n pasteRow,\n path,\n permissions,\n readOnly,\n removeRow,\n row,\n rowCount,\n rowIndex,\n schemaPath,\n scrollIdPrefix,\n setCollapse,\n setNodeRef,\n transform,\n transition,\n}) => {\n const isLoading = useThrottledValue(isLoadingFromProps, 500)\n\n const { i18n } = useTranslation()\n const hasSubmitted = useFormSubmitted()\n\n const pasteData = React.useMemo(() => ({ path, schemaFields: fields }), [path, fields])\n\n const fallbackLabel = `${getTranslation(labels.singular, i18n)} ${String(rowIndex + 1).padStart(\n 2,\n '0',\n )}`\n\n const fieldHasErrors = errorCount > 0 && hasSubmitted\n\n const classNames = [\n `${baseClass}__row`,\n fieldHasErrors ? `${baseClass}__row--has-errors` : `${baseClass}__row--no-errors`,\n isDragging && `${baseClass}__row--is-dragging`,\n ]\n .filter(Boolean)\n .join(' ')\n\n return (\n <div\n id={`${parentPath.split('.').join('-')}-row-${rowIndex}`}\n key={`${parentPath}-row-${row.id}`}\n ref={setNodeRef}\n style={{\n transform,\n transition,\n zIndex: isDragging ? 1 : undefined,\n }}\n >\n <Collapsible\n actions={\n !readOnly ? (\n <ArrayAction\n addRow={addRow}\n copyRow={copyRow}\n duplicateRow={duplicateRow}\n hasMaxRows={hasMaxRows}\n index={rowIndex}\n isSortable={isSortable}\n moveRow={moveRow}\n pasteData={pasteData}\n pasteRow={pasteRow}\n removeRow={removeRow}\n rowCount={rowCount}\n />\n ) : undefined\n }\n className={classNames}\n collapsibleStyle={fieldHasErrors ? 'error' : 'default'}\n dragHandleProps={\n isSortable\n ? {\n id: row.id,\n attributes,\n listeners,\n }\n : undefined\n }\n header={\n <div className={`${baseClass}__row-header`} id={`${scrollIdPrefix}-row-${rowIndex}`}>\n {isLoading ? (\n <ShimmerEffect height=\"1rem\" width=\"8rem\" />\n ) : (\n <RowLabel\n CustomComponent={CustomRowLabel}\n label={fallbackLabel}\n path={path}\n rowNumber={rowIndex}\n />\n )}\n {fieldHasErrors && <ErrorPill count={errorCount} i18n={i18n} withMessage />}\n </div>\n }\n isCollapsed={row.collapsed}\n onToggle={(collapsed) => setCollapse(row.id, collapsed)}\n >\n {isLoading ? (\n <ShimmerEffect />\n ) : (\n <RenderFields\n className={`${baseClass}__fields`}\n fields={fields}\n forceRender={forceRender}\n parentIndexPath=\"\"\n parentPath={path}\n parentSchemaPath={schemaPath}\n permissions={permissions === true ? permissions : permissions?.fields}\n readOnly={readOnly}\n />\n )}\n </Collapsible>\n </div>\n )\n}\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"file":"ArrayRow.js","names":["c","_c","getTranslation","React","ArrayAction","Collapsible","ErrorPill","ShimmerEffect","useFormSubmitted","RenderFields","RowLabel","useThrottledValue","useTranslation","baseClass","ArrayRow","t0","$","addRow","attributes","copyRow","CustomRowLabel","duplicateRow","errorCount","fields","forceRender","t1","hasMaxRows","isDragging","isLoading","isLoadingFromProps","isSortable","labels","listeners","moveRow","parentPath","pasteRow","path","permissions","readOnly","removeRow","row","rowCount","rowIndex","schemaPath","scrollIdPrefix","setCollapse","setNodeRef","transform","transition","undefined","i18n","hasSubmitted","fallbackLabel","singular","String","padStart","fieldHasErrors","t2","t3","t4","filter","Boolean","classNames","join","t5","split","t6","t7","collapsed","id","t8","_jsx","ref","style","zIndex","children","actions","index","className","collapsibleStyle","dragHandleProps","header","_jsxs","height","width","CustomComponent","label","rowNumber","count","withMessage","onToggle","parentIndexPath","parentSchemaPath"],"sources":["../../../src/fields/Array/ArrayRow.tsx"],"sourcesContent":["'use client'\nimport type {\n ArrayField,\n ClientComponentProps,\n ClientField,\n Row,\n SanitizedFieldPermissions,\n} from 'payload'\n\nimport { getTranslation } from '@payloadcms/translations'\nimport React from 'react'\n\nimport type { UseDraggableSortableReturn } from '../../elements/DraggableSortable/useDraggableSortable/types.js'\n\nimport { ArrayAction } from '../../elements/ArrayAction/index.js'\nimport { Collapsible } from '../../elements/Collapsible/index.js'\nimport { ErrorPill } from '../../elements/ErrorPill/index.js'\nimport { ShimmerEffect } from '../../elements/ShimmerEffect/index.js'\nimport { useFormSubmitted } from '../../forms/Form/context.js'\nimport { RenderFields } from '../../forms/RenderFields/index.js'\nimport { RowLabel } from '../../forms/RowLabel/index.js'\nimport { useThrottledValue } from '../../hooks/useThrottledValue.js'\nimport { useTranslation } from '../../providers/Translation/index.js'\nimport './index.css'\n\nconst baseClass = 'array-field'\n\ntype ArrayRowProps = {\n readonly addRow: (rowIndex: number) => Promise<void> | void\n readonly copyRow: (rowIndex: number) => void\n readonly CustomRowLabel?: React.ReactNode\n readonly duplicateRow: (rowIndex: number) => void\n readonly errorCount: number\n readonly fields: ClientField[]\n readonly hasMaxRows?: boolean\n readonly isLoading?: boolean\n readonly isSortable?: boolean\n readonly labels: Partial<ArrayField['labels']>\n readonly moveRow: (fromIndex: number, toIndex: number) => void\n readonly parentPath: string\n readonly pasteRow: (rowIndex: number) => void\n readonly path: string\n readonly permissions: SanitizedFieldPermissions\n readonly readOnly?: boolean\n readonly removeRow: (rowIndex: number) => void\n readonly row: Row\n readonly rowCount: number\n readonly rowIndex: number\n readonly schemaPath: string\n readonly scrollIdPrefix: string\n readonly setCollapse: (rowID: string, collapsed: boolean) => void\n} & Pick<ClientComponentProps, 'forceRender'> &\n UseDraggableSortableReturn\n\nexport const ArrayRow: React.FC<ArrayRowProps> = ({\n addRow,\n attributes,\n copyRow,\n CustomRowLabel,\n duplicateRow,\n errorCount,\n fields,\n forceRender = false,\n hasMaxRows,\n isDragging,\n isLoading: isLoadingFromProps,\n isSortable,\n labels,\n listeners,\n moveRow,\n parentPath,\n pasteRow,\n path,\n permissions,\n readOnly,\n removeRow,\n row,\n rowCount,\n rowIndex,\n schemaPath,\n scrollIdPrefix,\n setCollapse,\n setNodeRef,\n transform,\n transition,\n}) => {\n const isLoading = useThrottledValue(isLoadingFromProps, 500)\n\n const { i18n } = useTranslation()\n const hasSubmitted = useFormSubmitted()\n\n const fallbackLabel = `${getTranslation(labels.singular, i18n)} ${String(rowIndex + 1).padStart(\n 2,\n '0',\n )}`\n\n const fieldHasErrors = errorCount > 0 && hasSubmitted\n\n const classNames = [\n `${baseClass}__row`,\n fieldHasErrors ? `${baseClass}__row--has-errors` : `${baseClass}__row--no-errors`,\n isDragging && `${baseClass}__row--is-dragging`,\n ]\n .filter(Boolean)\n .join(' ')\n\n return (\n <div\n id={`${parentPath.split('.').join('-')}-row-${rowIndex}`}\n key={`${parentPath}-row-${row.id}`}\n ref={setNodeRef}\n style={{\n transform,\n transition,\n zIndex: isDragging ? 1 : undefined,\n }}\n >\n <Collapsible\n actions={\n !readOnly ? (\n <ArrayAction\n addRow={addRow}\n copyRow={copyRow}\n duplicateRow={duplicateRow}\n hasMaxRows={hasMaxRows}\n index={rowIndex}\n isSortable={isSortable}\n moveRow={moveRow}\n pasteRow={pasteRow}\n removeRow={removeRow}\n rowCount={rowCount}\n />\n ) : undefined\n }\n className={classNames}\n collapsibleStyle={fieldHasErrors ? 'error' : 'default'}\n dragHandleProps={\n isSortable\n ? {\n id: row.id,\n attributes,\n listeners,\n }\n : undefined\n }\n header={\n <div className={`${baseClass}__row-header`} id={`${scrollIdPrefix}-row-${rowIndex}`}>\n {isLoading ? (\n <ShimmerEffect height=\"1rem\" width=\"8rem\" />\n ) : (\n <RowLabel\n CustomComponent={CustomRowLabel}\n label={fallbackLabel}\n path={path}\n rowNumber={rowIndex}\n />\n )}\n {fieldHasErrors && <ErrorPill count={errorCount} i18n={i18n} withMessage />}\n </div>\n }\n isCollapsed={row.collapsed}\n onToggle={(collapsed) => setCollapse(row.id, collapsed)}\n >\n {isLoading ? (\n <ShimmerEffect />\n ) : (\n <RenderFields\n className={`${baseClass}__fields`}\n fields={fields}\n forceRender={forceRender}\n parentIndexPath=\"\"\n parentPath={path}\n parentSchemaPath={schemaPath}\n permissions={permissions === true ? permissions : permissions?.fields}\n readOnly={readOnly}\n />\n )}\n </Collapsible>\n </div>\n )\n}\n"],"mappings":"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","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"file":"BlockRow.d.ts","sourceRoot":"","sources":["../../../src/fields/Blocks/BlockRow.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,EAAE,GAAG,EAAE,yBAAyB,EAAE,MAAM,SAAS,CAAA;AAG/F,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,gEAAgE,CAAA;AAiBhH,KAAK,gBAAgB,GAAG;IACtB,MAAM,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAA;IACrE,KAAK,EAAE,WAAW,CAAA;IAClB,MAAM,EAAE,CAAC,WAAW,GAAG,MAAM,CAAC,EAAE,GAAG,WAAW,EAAE,CAAA;IAChD,OAAO,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAA;IACnC,YAAY,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAA;IACxC,UAAU,EAAE,MAAM,CAAA;IAClB,MAAM,EAAE,WAAW,EAAE,CAAA;IACrB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,KAAK,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IACvB,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,KAAK,IAAI,CAAA;IACrD,UAAU,EAAE,MAAM,CAAA;IAClB,QAAQ,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAA;IACpC,IAAI,EAAE,MAAM,CAAA;IACZ,WAAW,EAAE,yBAAyB,CAAA;IACtC,QAAQ,EAAE,OAAO,CAAA;IACjB,SAAS,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAA;IACrC,GAAG,EAAE,GAAG,CAAA;IACR,QAAQ,EAAE,MAAM,CAAA;IAChB,QAAQ,EAAE,MAAM,CAAA;IAChB,UAAU,EAAE,MAAM,CAAA;IAClB,WAAW,EAAE,CAAC,EAAE,EAAE,MAAM,EAAE,SAAS,EAAE,OAAO,KAAK,IAAI,CAAA;CACtD,GAAG,0BAA0B,CAAA;AAE9B,eAAO,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAyL/C,CAAA"}
1
+ {"version":3,"file":"BlockRow.d.ts","sourceRoot":"","sources":["../../../src/fields/Blocks/BlockRow.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,EAAE,GAAG,EAAE,yBAAyB,EAAE,MAAM,SAAS,CAAA;AAG/F,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,gEAAgE,CAAA;AAiBhH,KAAK,gBAAgB,GAAG;IACtB,MAAM,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAA;IACrE,KAAK,EAAE,WAAW,CAAA;IAClB,MAAM,EAAE,CAAC,WAAW,GAAG,MAAM,CAAC,EAAE,GAAG,WAAW,EAAE,CAAA;IAChD,OAAO,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAA;IACnC,YAAY,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAA;IACxC,UAAU,EAAE,MAAM,CAAA;IAClB,MAAM,EAAE,WAAW,EAAE,CAAA;IACrB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,KAAK,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IACvB,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,KAAK,IAAI,CAAA;IACrD,UAAU,EAAE,MAAM,CAAA;IAClB,QAAQ,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAA;IACpC,IAAI,EAAE,MAAM,CAAA;IACZ,WAAW,EAAE,yBAAyB,CAAA;IACtC,QAAQ,EAAE,OAAO,CAAA;IACjB,SAAS,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAA;IACrC,GAAG,EAAE,GAAG,CAAA;IACR,QAAQ,EAAE,MAAM,CAAA;IAChB,QAAQ,EAAE,MAAM,CAAA;IAChB,UAAU,EAAE,MAAM,CAAA;IAClB,WAAW,EAAE,CAAC,EAAE,EAAE,MAAM,EAAE,SAAS,EAAE,OAAO,KAAK,IAAI,CAAA;CACtD,GAAG,0BAA0B,CAAA;AAE9B,eAAO,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAmL/C,CAAA"}