-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #159 from ConductionNL/development
Development to main, week 47
- Loading branch information
Showing
11 changed files
with
7,029 additions
and
5,197 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
Large diffs are not rendered by default.
Oops, something went wrong.
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,46 +1,55 @@ | ||
{ | ||
"name": "@conduction/components", | ||
"version": "2.2.27", | ||
"version": "2.2.32", | ||
"description": "React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)", | ||
"main": "lib/index.js", | ||
"scripts": { | ||
"clean": "rimraf lib/", | ||
"build": "tsc", | ||
"build": "npm-run-all build:**", | ||
"build:tsc": "tsc", | ||
"build:copyCSS": "copyfiles -u 1 src/**/*.css lib/", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/ConductionNL/conduction-components.git" | ||
}, | ||
"keywords": ["React", "Gatsby", "Conduction", "Components"], | ||
"keywords": [ | ||
"React", | ||
"Gatsby", | ||
"Conduction", | ||
"Components" | ||
], | ||
"author": "Conduction B.V.", | ||
"license": "ISC", | ||
"bugs": { | ||
"url": "https://github.com/ConductionNL/conduction-components/issues" | ||
}, | ||
"homepage": "https://github.com/ConductionNL/conduction-components#readme", | ||
"dependencies": { | ||
"@fortawesome/fontawesome-svg-core": "^6.2.0", | ||
"@fortawesome/free-solid-svg-icons": "^6.2.0", | ||
"@fortawesome/fontawesome-svg-core": "^6.4.2", | ||
"@fortawesome/free-solid-svg-icons": "^6.4.2", | ||
"@fortawesome/react-fontawesome": "^0.2.0", | ||
"@utrecht/component-library-react": "1.0.0-alpha.394", | ||
"clsx": "^1.1.1", | ||
"gatsby": "^4.11.1", | ||
"@utrecht/component-library-react": "2.0.0", | ||
"clsx": "^2.0.0", | ||
"gatsby": "^5.12.9", | ||
"react": "^18.2.0", | ||
"react-datepicker": "^4.10.0", | ||
"react-hook-form": "7.29.0", | ||
"react-datepicker": "^4.23.0", | ||
"react-hook-form": "7.48.2", | ||
"react-paginate": "^8.2.0", | ||
"react-select": "5.3.2", | ||
"react-select": "5.8.0", | ||
"react-tabs": "^6.0.2", | ||
"react-tooltip": "^5.21.3" | ||
"react-tooltip": "^5.23.0" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^17.0.23", | ||
"@types/react": "^18.2.0", | ||
"@types/react-datepicker": "^4.8.0", | ||
"@types/react-dom": "^18.2.0", | ||
"rimraf": "^4.4.0", | ||
"tsc-hooks": "^1.1.1", | ||
"typescript": "^4.6.3" | ||
"@types/node": "^20.9.3", | ||
"@types/react": "^18.2.38", | ||
"@types/react-datepicker": "^4.19.3", | ||
"@types/react-dom": "^18.2.16", | ||
"copyfiles": "^2.4.1", | ||
"npm-run-all": "^4.1.5", | ||
"rimraf": "^5.0.5", | ||
"tsc-hooks": "^1.1.2", | ||
"typescript": "^5.3.2" | ||
} | ||
} |
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,27 +1,54 @@ | ||
:root { | ||
--conduction-download-card-border: 1px solid var(--skeleton-color-grey-2); | ||
--conduction-download-card-title-color: #000000; | ||
--conduction-download-card-title-font-size: 20px; | ||
--conduction-download-card-title-font-weight: bold; | ||
/* --conduction-download-card-title-font-family: ; */ | ||
--conduction-download-card-title-margin-inline-end: var(--skeleton-size-sm); | ||
|
||
--conduction-download-card-border-width: 1px; | ||
--conduction-download-card-border-style: solid; | ||
--conduction-download-card-border-color: var(--skeleton-color-grey-2); | ||
--conduction-download-card-border-radius: var(--skeleton-border-radius-md); | ||
|
||
--conduction-download-card-padding-inline-end: 14px; | ||
--conduction-download-card-padding-inline-start: 14px; | ||
--conduction-download-card-padding-block-end: 14px; | ||
--conduction-download-card-padding-block-start: 14px; | ||
|
||
--conduction-download-card-icon-gap: 8px; | ||
--conduction-download-card-padding: 14px; | ||
} | ||
|
||
.container { | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
border: var(--conduction-download-card-border); | ||
border-radius: var(--skeleton-border-radius-md); | ||
padding: var(--conduction-download-card-padding); | ||
border-width: var(--conduction-download-card-border-width); | ||
border-style: var(--conduction-download-card-border-style); | ||
border-color: var(--conduction-download-card-border-color); | ||
border-radius: var(--conduction-download-card-border-radius); | ||
padding-inline-start: var(--conduction-download-card-padding-inline-start); | ||
padding-inline-end: var(--conduction-download-card-padding-inline-end); | ||
padding-block-start: var(--conduction-download-card-padding-block-start); | ||
padding-block-end: var(--conduction-download-card-padding-block-end); | ||
} | ||
|
||
.title { | ||
color: var(--conduction-download-card-title-color); | ||
font-size: var(--conduction-download-card-title-font-size); | ||
font-weight: var(--conduction-download-card-title-font-weight); | ||
font-family: var(--conduction-download-card-title-font-family); | ||
margin-inline-end: var(--conduction-download-card-title-margin-inline-end); | ||
} | ||
|
||
.content { | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.content > *:not(:last-child) { | ||
margin-inline-end: var(--skeleton-size-sm); | ||
} | ||
|
||
.icon { | ||
margin-inline-end: var(--conduction-download-card-icon-gap); | ||
} | ||
|
||
.link:hover { | ||
cursor: pointer; | ||
} |
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
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.