-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add rotate icon and crop button in Lightbox #48
Changes from 7 commits
a77bc94
b043b8b
9d6d083
de29420
9926aef
a8ec725
d42e9af
2956801
9e8b8c7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@observation.org/react-native-components", | ||
"version": "1.38.0", | ||
"version": "1.39.0", | ||
"main": "src/index.ts", | ||
"repository": "[email protected]:observation/react-native-components.git", | ||
"author": "Observation.org", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,6 +52,7 @@ import { faHexagon as faHexagonLight } from '@fortawesome/pro-light-svg-icons/fa | |
import { faImages as faImagesLight } from '@fortawesome/pro-light-svg-icons/faImages' | ||
import { faInfoCircle as faInfoCircleLight } from '@fortawesome/pro-light-svg-icons/faInfoCircle' | ||
import { faLanguage as faLanguageLight } from '@fortawesome/pro-light-svg-icons/faLanguage' | ||
import { faLevelDown as faLevelDownLight } from '@fortawesome/pro-light-svg-icons/faLevelDown' | ||
import { faLocationCheck as faLocationCheckLight } from '@fortawesome/pro-light-svg-icons/faLocationCheck' | ||
import { faLocationCrosshairs as faLocationCrosshairsLight } from '@fortawesome/pro-light-svg-icons/faLocationCrosshairs' | ||
import { faMapMarkerAlt as faMapMarkerAltLight } from '@fortawesome/pro-light-svg-icons/faMapMarkerAlt' | ||
|
@@ -145,6 +146,7 @@ import { faHexagon as faHexagonSolid } from '@fortawesome/pro-solid-svg-icons/fa | |
import { faImages as faImagesSolid } from '@fortawesome/pro-solid-svg-icons/faImages' | ||
import { faInfoCircle as faInfoCircleSolid } from '@fortawesome/pro-solid-svg-icons/faInfoCircle' | ||
import { faLanguage as faLanguageSolid } from '@fortawesome/pro-solid-svg-icons/faLanguage' | ||
import { faLevelDown as faLevelDownSolid } from '@fortawesome/pro-solid-svg-icons/faLevelDown' | ||
import { faLocationCheck as faLocationCheckSolid } from '@fortawesome/pro-solid-svg-icons/faLocationCheck' | ||
import { faLocationCrosshairs as faLocationCrosshairsSolid } from '@fortawesome/pro-solid-svg-icons/faLocationCrosshairs' | ||
import { faMapMarkerAlt as faMapMarkerAltSolid } from '@fortawesome/pro-solid-svg-icons/faMapMarkerAlt' | ||
|
@@ -241,6 +243,7 @@ type IconName = Extract< | |
| 'images' | ||
| 'info-circle' | ||
| 'language' | ||
| 'level-down' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. De naam in Font Awesome is Ik zie dat Karel in het design There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Idd. Ik wist niet dat die ook bestond. Zal dat doen. |
||
| 'location-check' | ||
| 'location-crosshairs' | ||
| 'map-marker-alt' | ||
|
@@ -337,6 +340,7 @@ const icons: { [key in IconName]: { light: IconDefinition; solid: IconDefinition | |
images: { light: faImagesLight, solid: faImagesSolid }, | ||
'info-circle': { light: faInfoCircleLight, solid: faInfoCircleSolid }, | ||
language: { light: faLanguageLight, solid: faLanguageSolid }, | ||
'level-down': { light: faLevelDownLight, solid: faLevelDownSolid }, | ||
'location-check': { light: faLocationCheckLight, solid: faLocationCheckSolid }, | ||
'location-crosshairs': { light: faLocationCrosshairsLight, solid: faLocationCrosshairsSolid }, | ||
'map-marker-alt-slash': { light: faMapMarkerAltSlashLight, solid: faMapMarkerAltSlashSolid }, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unit tests hiervoor ontbreken nog
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Idd, zal ze toevoegen