-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use new table component in repeating groups (#650)
* first step * visuals * error styling * improved desktop layout * of course safari has an edge-case for exactly 0 width 😤 * missing space * fix width * make nested group look good * smaller padding for nested group * column alignment * update icon * update design-system * wcag * mobile layout * remove empty columns and fix group tests * fix editRowIndex * spacing (mobile) * remove reference to altinn-mobile-table in unit test * fix colspan * fix french button * Updating broken import * move to fullwidthwrapper Co-authored-by: Ole Martin Handeland <git@olemartin.org>
- Loading branch information
1 parent
1f7b7bf
commit 08f73bc
Showing
23 changed files
with
696 additions
and
699 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
{ | ||
"presets": [ | ||
"@babel/preset-env", | ||
"@babel/preset-react" | ||
], | ||
"ignore": [ | ||
"/**/*.json" | ||
] | ||
"presets": ["@babel/preset-env", "@babel/preset-react"], | ||
"ignore": ["/**/*.json"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,42 @@ | ||
[ | ||
[ | ||
{ | ||
"partyId": 500000, | ||
"partyTypeName": 2, | ||
"orgNumber": "897069650", | ||
"ssn": null, | ||
"unitType": "AS", | ||
"name": "DDG Fitness AS", | ||
"isDeleted": false, | ||
"onlyHierarchyElementWithNoAccess": false, | ||
"person": null, | ||
"organization": null, | ||
"childParties": [ | ||
{ | ||
"partyId": 500001, | ||
"partyTypeName": 2, | ||
"orgNumber": "897069651", | ||
"ssn": null, | ||
"unitType": "BEDR", | ||
"name": "DDG Fitness Bergen", | ||
"isDeleted": false, | ||
"onlyHierarchyElementWithNoAccess": false, | ||
"person": null, | ||
"organization": null, | ||
"childParties": null | ||
} | ||
] | ||
"partyId": 500000, | ||
"partyTypeName": 2, | ||
"orgNumber": "897069650", | ||
"ssn": null, | ||
"unitType": "AS", | ||
"name": "DDG Fitness AS", | ||
"isDeleted": false, | ||
"onlyHierarchyElementWithNoAccess": false, | ||
"person": null, | ||
"organization": null, | ||
"childParties": [ | ||
{ | ||
"partyId": 500001, | ||
"partyTypeName": 2, | ||
"orgNumber": "897069651", | ||
"ssn": null, | ||
"unitType": "BEDR", | ||
"name": "DDG Fitness Bergen", | ||
"isDeleted": false, | ||
"onlyHierarchyElementWithNoAccess": false, | ||
"person": null, | ||
"organization": null, | ||
"childParties": null | ||
} | ||
] | ||
}, | ||
{ | ||
"partyId": 500600, | ||
"partyTypeName": 2, | ||
"orgNumber": "897069631", | ||
"ssn": null, | ||
"unitType": "AS", | ||
"name": "EAS Health Consulting", | ||
"isDeleted": true, | ||
"onlyHierarchyElementWithNoAccess": false, | ||
"person": null, | ||
"organization": null, | ||
"childParties": [] | ||
} | ||
] | ||
"partyId": 500600, | ||
"partyTypeName": 2, | ||
"orgNumber": "897069631", | ||
"ssn": null, | ||
"unitType": "AS", | ||
"name": "EAS Health Consulting", | ||
"isDeleted": true, | ||
"onlyHierarchyElementWithNoAccess": false, | ||
"person": null, | ||
"organization": null, | ||
"childParties": [] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.