@abgov/jsonforms-components 2.38.4 → 2.38.5
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/index.esm.js
CHANGED
|
@@ -7090,7 +7090,7 @@ let _$6 = t => t,
|
|
|
7090
7090
|
_t21$1,
|
|
7091
7091
|
_t22$1,
|
|
7092
7092
|
_t23$1,
|
|
7093
|
-
_t24,
|
|
7093
|
+
_t24$1,
|
|
7094
7094
|
_t25,
|
|
7095
7095
|
_t26,
|
|
7096
7096
|
_t27,
|
|
@@ -7253,7 +7253,7 @@ const CategoryStatus = styled.td(_t23$1 || (_t23$1 = _$6`
|
|
|
7253
7253
|
padding-right: var(--goa-space-xl);
|
|
7254
7254
|
align-content: center;
|
|
7255
7255
|
`));
|
|
7256
|
-
const Center = styled.div(_t24 || (_t24 = _$6`
|
|
7256
|
+
const Center = styled.div(_t24$1 || (_t24$1 = _$6`
|
|
7257
7257
|
padding-top: 5px;
|
|
7258
7258
|
`));
|
|
7259
7259
|
const PageStepperRow = styled.tr(_t25 || (_t25 = _$6`
|
|
@@ -9931,7 +9931,8 @@ let _$3 = t => t,
|
|
|
9931
9931
|
_t20,
|
|
9932
9932
|
_t21,
|
|
9933
9933
|
_t22,
|
|
9934
|
-
_t23
|
|
9934
|
+
_t23,
|
|
9935
|
+
_t24;
|
|
9935
9936
|
const DeleteDialogContent = styled.div(_t$3 || (_t$3 = _$3`
|
|
9936
9937
|
margin-bottom: var(--goa-space-m);
|
|
9937
9938
|
`));
|
|
@@ -10057,6 +10058,11 @@ const FixTableHeaderAlignment = styled.div(_t23 || (_t23 = _$3`
|
|
|
10057
10058
|
text-align: center;
|
|
10058
10059
|
}
|
|
10059
10060
|
`));
|
|
10061
|
+
const ListWithDetailsReviewCellDiv = styled.div(_t24 || (_t24 = _$3`
|
|
10062
|
+
display: 'flex';
|
|
10063
|
+
flex-direction: 'column';
|
|
10064
|
+
text-align: 'start';
|
|
10065
|
+
`));
|
|
10060
10066
|
|
|
10061
10067
|
const DeleteDialog = /*#__PURE__*/React.memo(function DeleteDialog({
|
|
10062
10068
|
open,
|
|
@@ -10276,11 +10282,7 @@ const GenerateRows$1 = (Cell, schema, rowPath, enabled, openDeleteDialog, handle
|
|
|
10276
10282
|
handleChange,
|
|
10277
10283
|
errors
|
|
10278
10284
|
};
|
|
10279
|
-
return jsx(
|
|
10280
|
-
style: {
|
|
10281
|
-
display: 'flex',
|
|
10282
|
-
flexDirection: 'column'
|
|
10283
|
-
},
|
|
10285
|
+
return jsx(ListWithDetailsReviewCellDiv, {
|
|
10284
10286
|
children: jsx(Cell, Object.assign({}, props, {
|
|
10285
10287
|
count: count || 0
|
|
10286
10288
|
}))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abgov/jsonforms-components",
|
|
3
|
-
"version": "2.38.
|
|
3
|
+
"version": "2.38.5",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Government of Alberta - React renderers for JSON Forms based on the design system.",
|
|
6
6
|
"repository": "https://github.com/GovAlta/adsp-monorepo",
|
|
@@ -23,3 +23,4 @@ export declare const ObjectArrayRequiredTextLabel: import("styled-components/dis
|
|
|
23
23
|
export declare const HasErrorLabel: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
24
24
|
export declare const HilightCellWarning: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
25
25
|
export declare const FixTableHeaderAlignment: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
26
|
+
export declare const ListWithDetailsReviewCellDiv: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|