@abgov/jsonforms-components 2.32.5 → 2.32.6

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 (2) hide show
  1. package/index.esm.js +16 -13
  2. package/package.json +1 -1
package/index.esm.js CHANGED
@@ -7259,8 +7259,9 @@ const SummaryRowLink = styled.a(_t21 || (_t21 = _$6`
7259
7259
  position: relative;
7260
7260
  top: var(--goa-space-xs);
7261
7261
  `));
7262
- styled.td(_t22 || (_t22 = _$6`
7262
+ const SummaryTd = styled.td(_t22 || (_t22 = _$6`
7263
7263
  border: 0 !important;
7264
+ padding: 0 !important;
7264
7265
  `));
7265
7266
 
7266
7267
  class ContextProviderClass {
@@ -8825,18 +8826,20 @@ const SummaryRow = ({
8825
8826
  onClick
8826
8827
  }) => {
8827
8828
  return jsx("tr", {
8828
- children: jsx(GoAText, {
8829
- size: "heading-m",
8830
- mt: "xl",
8831
- mb: "xl",
8832
- children: jsx(SummaryRowLink, {
8833
- "data-testid": `page-ref-${index}`,
8834
- href: "#",
8835
- onClick: e => {
8836
- e.preventDefault();
8837
- onClick(index);
8838
- },
8839
- children: "Summary"
8829
+ children: jsx(SummaryTd, {
8830
+ children: jsx(GoAText, {
8831
+ size: "heading-m",
8832
+ mt: "xl",
8833
+ mb: "xl",
8834
+ children: jsx(SummaryRowLink, {
8835
+ "data-testid": `page-ref-${index}`,
8836
+ href: "#",
8837
+ onClick: e => {
8838
+ e.preventDefault();
8839
+ onClick(index);
8840
+ },
8841
+ children: "Summary"
8842
+ })
8840
8843
  })
8841
8844
  })
8842
8845
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abgov/jsonforms-components",
3
- "version": "2.32.5",
3
+ "version": "2.32.6",
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",