@abgov/jsonforms-components 2.23.1 → 2.24.1
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
|
@@ -7102,20 +7102,15 @@ let _$5 = t => t,
|
|
|
7102
7102
|
const ReviewItem = styled.div(_t$5 || (_t$5 = _$5`
|
|
7103
7103
|
display: flex;
|
|
7104
7104
|
flex-direction: column;
|
|
7105
|
-
border: var(--goa-border-width-s) solid grey;
|
|
7106
|
-
border-radius: var(--goa-border-radius-m);
|
|
7107
|
-
margin: var(--goa-space-2xs);
|
|
7108
|
-
padding: var(--goa-space-xs);
|
|
7109
7105
|
div:empty {
|
|
7110
7106
|
display: none;
|
|
7111
7107
|
}
|
|
7112
7108
|
`));
|
|
7113
7109
|
const ReviewItemSection = styled.div(_t2$4 || (_t2$4 = _$5`
|
|
7114
|
-
background-color: #f1f1f1;
|
|
7115
7110
|
margin-bottom: var(--goa-space-m);
|
|
7116
|
-
padding: var(--goa-space-
|
|
7117
|
-
border: 1px solid
|
|
7118
|
-
border-radius:
|
|
7111
|
+
padding: var(--goa-space-xl) var(--goa-space-2xl);
|
|
7112
|
+
border: 1px solid var(--goa-color-greyscale-300);
|
|
7113
|
+
border-radius: var(--goa-border-radius-xl);
|
|
7119
7114
|
|
|
7120
7115
|
.element-style {
|
|
7121
7116
|
max-width: 1600px;
|
|
@@ -7179,8 +7174,8 @@ const PageRenderPadding = styled.div(_t12$1 || (_t12$1 = _$5`
|
|
|
7179
7174
|
styled.div(_t13$1 || (_t13$1 = _$5`
|
|
7180
7175
|
margin-bottom: var(--goa-space-2xl);
|
|
7181
7176
|
`));
|
|
7182
|
-
const PageBorder = styled.
|
|
7183
|
-
padding: var(--goa-space-3xl);
|
|
7177
|
+
const PageBorder = styled.div(_t14$1 || (_t14$1 = _$5`
|
|
7178
|
+
padding: var(--goa-space-m) var(--goa-space-3xl);
|
|
7184
7179
|
`));
|
|
7185
7180
|
const TableReviewItemSection = styled.div(_t15$1 || (_t15$1 = _$5`
|
|
7186
7181
|
.element-style {
|
|
@@ -7188,9 +7183,9 @@ const TableReviewItemSection = styled.div(_t15$1 || (_t15$1 = _$5`
|
|
|
7188
7183
|
}
|
|
7189
7184
|
`));
|
|
7190
7185
|
const TableReviewItem = styled.div(_t16$1 || (_t16$1 = _$5`
|
|
7191
|
-
|
|
7192
|
-
border
|
|
7193
|
-
|
|
7186
|
+
padding: var(--goa-space-xl) var(--goa-space-2xl);
|
|
7187
|
+
border: 1px solid var(--goa-color-greyscale-300);
|
|
7188
|
+
border-radius: var(--goa-border-radius-xl);
|
|
7194
7189
|
`));
|
|
7195
7190
|
const TableReviewPageTitleRow = styled.div(_t17$1 || (_t17$1 = _$5`
|
|
7196
7191
|
margin-top: var(--goa-space-xl);
|
|
@@ -8295,7 +8290,7 @@ const ApplicationStatus = () => {
|
|
|
8295
8290
|
const total = categories.length;
|
|
8296
8291
|
const completed = selectNumberOfCompletedCategories();
|
|
8297
8292
|
const type = total === completed ? 'success' : 'important';
|
|
8298
|
-
const heading = total === completed ? 'Application
|
|
8293
|
+
const heading = total === completed ? 'Application completed' : 'Application incomplete';
|
|
8299
8294
|
const message = `You have completed ${completed} of ${total} sections.`;
|
|
8300
8295
|
return jsx(CompletionStatus, {
|
|
8301
8296
|
children: jsx(GoACallout, {
|
|
@@ -10743,11 +10738,12 @@ const SearchBox = styled.div(_t$1 || (_t$1 = _$1`
|
|
|
10743
10738
|
}
|
|
10744
10739
|
`));
|
|
10745
10740
|
const AddressIndent = styled.div(_t2$1 || (_t2$1 = _$1`
|
|
10746
|
-
margin: 0
|
|
10747
|
-
|
|
10748
|
-
|
|
10749
|
-
border: 1px solid
|
|
10750
|
-
|
|
10741
|
+
margin: 0 0 var(--goa-space-m) 0;
|
|
10742
|
+
text-wrap: wrap;
|
|
10743
|
+
word-break: break-word;
|
|
10744
|
+
border: 1px solid var(--goa-color-greyscale-300);
|
|
10745
|
+
border-radius: var(--goa-border-radius-xl);
|
|
10746
|
+
padding: var(--goa-space-l);
|
|
10751
10747
|
`));
|
|
10752
10748
|
const TextWrap = styled.p(_t3 || (_t3 = _$1`
|
|
10753
10749
|
text-wrap: auto;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abgov/jsonforms-components",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.24.1",
|
|
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",
|
|
@@ -11,7 +11,7 @@ export declare const RightAlignmentDiv: import("styled-components/dist/types").I
|
|
|
11
11
|
export declare const FormStepperSummaryH3: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never>> & string;
|
|
12
12
|
export declare const PageRenderPadding: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
13
13
|
export declare const PageRenderPaddingBottom: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
14
|
-
export declare const PageBorder: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<
|
|
14
|
+
export declare const PageBorder: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
15
15
|
export declare const TableReviewItemSection: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
16
16
|
export declare const TableReviewItem: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
17
17
|
export declare const TableReviewPageTitleRow: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|