@abgov/jsonforms-components 1.43.10 → 1.43.11

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
@@ -5338,7 +5338,8 @@ let _$5 = t => t,
5338
5338
  _t7$1,
5339
5339
  _t8$1,
5340
5340
  _t9$1,
5341
- _t10$1;
5341
+ _t10$1,
5342
+ _t11$1;
5342
5343
  const ReviewItem = styled.div(_t$5 || (_t$5 = _$5`
5343
5344
  display: flex;
5344
5345
  flex-direction: column;
@@ -5352,8 +5353,8 @@ const ReviewItem = styled.div(_t$5 || (_t$5 = _$5`
5352
5353
  `));
5353
5354
  const ReviewItemSection = styled.div(_t2$3 || (_t2$3 = _$5`
5354
5355
  background-color: #f1f1f1;
5355
- margin-bottom: 1rem;
5356
- padding: 1rem;
5356
+ margin-bottom: var(--goa-space-m);
5357
+ padding: var(--goa-space-m);
5357
5358
  border: 1px solid #dcdcdc;
5358
5359
  border-radius: 5px;
5359
5360
  `));
@@ -5361,12 +5362,12 @@ const ReviewItemHeader = styled.div(_t3$3 || (_t3$3 = _$5`
5361
5362
  display: flex;
5362
5363
  align-items: center;
5363
5364
  justify-content: space-between;
5364
- margin-bottom: 2rem;
5365
+ margin-bottom: var(--goa-space-xl);
5365
5366
  `));
5366
5367
  const ReviewItemTitle = styled.div(_t4$2 || (_t4$2 = _$5`
5367
- font-size: var(--fs-xl);
5368
- line-height: var(--lh-lg);
5369
- font-weight: var(--fw-light);
5368
+ font-size: var(--goa-space-l);
5369
+ line-height: var(--goa-space-xl);
5370
+ font-weight: 300;
5370
5371
  `));
5371
5372
  const Anchor = styled.div(_t5$1 || (_t5$1 = _$5`
5372
5373
  color: #0070c4;
@@ -5397,6 +5398,13 @@ const RightAlignmentDiv = styled.div(_t10$1 || (_t10$1 = _$5`
5397
5398
  justify-content: flex-end;
5398
5399
  margin-bottom: var(--goa-space-l);
5399
5400
  `));
5401
+ const FormStepperSummaryH3 = styled.h3(_t11$1 || (_t11$1 = _$5`
5402
+ flex: 1;
5403
+ margin-bottom: var(--goa-space-m);
5404
+ font-size: var(--goa-font-size-7);
5405
+ line-height: var(--goa-line-height-4);
5406
+ font-weight: var(--goa-font-weight-regular);
5407
+ `));
5400
5408
 
5401
5409
  class ContextProviderClass {
5402
5410
  addDataByUrl(key, url, processDataFunction, token) {
@@ -5863,11 +5871,7 @@ const FormStepper = props => {
5863
5871
  }, `${visibleCategoryLabels[index]}`);
5864
5872
  }), jsxs("div", {
5865
5873
  "data-testid": "summary_step-content",
5866
- children: [jsx("h3", {
5867
- style: {
5868
- flex: 1,
5869
- marginBottom: '1rem'
5870
- },
5874
+ children: [jsx(FormStepperSummaryH3, {
5871
5875
  children: summaryLabel
5872
5876
  }), jsx(FormStepperReviewer, Object.assign({
5873
5877
  navigationFunc: setPage
@@ -7587,8 +7591,8 @@ const AddressIndent = styled.div(_t2 || (_t2 = _$1`
7587
7591
  margin: 1em 1.5em 0 1.5em;
7588
7592
  `));
7589
7593
  const LabelDiv = styled.div(_t3 || (_t3 = _$1`
7590
- font-size: var(--fs-sl);
7591
- padding-bottom: 1.5rem;
7594
+ font-size: var(--goa-font-size-2);
7595
+ padding-bottom: var(--goa-space-l);
7592
7596
  `));
7593
7597
  /* istanbul ignore next */
7594
7598
  const ListItem = styled.li(_t4 || (_t4 = _$1`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abgov/jsonforms-components",
3
- "version": "1.43.10",
3
+ "version": "1.43.11",
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",
@@ -9,3 +9,4 @@ export declare const ReviewListWrapper: import("styled-components/dist/types").I
9
9
  export declare const ListWithDetail: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
10
10
  export declare const ListWithDetailHeading: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never>> & string;
11
11
  export declare const RightAlignmentDiv: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
12
+ 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;