@justfixnyc/component-library 0.54.5 → 0.54.7
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.
|
@@ -649,7 +649,7 @@
|
|
|
649
649
|
flex-grow: 1;
|
|
650
650
|
white-space: nowrap;
|
|
651
651
|
border-radius: 6px;
|
|
652
|
-
border: 1px solid #
|
|
652
|
+
border: 1px solid #242323;
|
|
653
653
|
background: #faf8f4;
|
|
654
654
|
padding: 0.75rem;
|
|
655
655
|
cursor: pointer;
|
|
@@ -659,10 +659,10 @@
|
|
|
659
659
|
padding: 0.6875rem;
|
|
660
660
|
}
|
|
661
661
|
.jfcl-select-button__label:hover {
|
|
662
|
-
background-color: #
|
|
662
|
+
background-color: #efe9dc;
|
|
663
663
|
}
|
|
664
664
|
.jfcl-select-button__label:active {
|
|
665
|
-
background-color: #
|
|
665
|
+
background-color: #edf3ff;
|
|
666
666
|
}
|
|
667
667
|
|
|
668
668
|
.jfcl-select-button__input:checked + .jfcl-select-button__label {
|
|
@@ -649,7 +649,7 @@
|
|
|
649
649
|
flex-grow: 1;
|
|
650
650
|
white-space: nowrap;
|
|
651
651
|
border-radius: 6px;
|
|
652
|
-
border: 1px solid #
|
|
652
|
+
border: 1px solid #242323;
|
|
653
653
|
background: #faf8f4;
|
|
654
654
|
padding: 0.75rem;
|
|
655
655
|
cursor: pointer;
|
|
@@ -659,10 +659,10 @@
|
|
|
659
659
|
padding: 0.6875rem;
|
|
660
660
|
}
|
|
661
661
|
.jfcl-select-button__label:hover {
|
|
662
|
-
background-color: #
|
|
662
|
+
background-color: #efe9dc;
|
|
663
663
|
}
|
|
664
664
|
.jfcl-select-button__label:active {
|
|
665
|
-
background-color: #
|
|
665
|
+
background-color: #edf3ff;
|
|
666
666
|
}
|
|
667
667
|
|
|
668
668
|
.jfcl-select-button__input:checked + .jfcl-select-button__label {
|
package/dist/src/index.es.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _extends from '@babel/runtime/helpers/extends';
|
|
2
2
|
import classNames from 'classnames';
|
|
3
3
|
import React, { forwardRef, useId } from 'react';
|
|
4
|
-
import { faBan, faXmark, faDownload as faDownload$1, faBuildingColumns, faAddressCard, faBuilding, faMapLocationDot, faMemoPad, faLocationDot, faHouse, faGlobe, faUser, faSpinner, faBars, faEnvelope as faEnvelope$1, faCommentSms, faCopy, faCirclePlus, faCircleInfo, faCircleExclamation as faCircleExclamation$1, faChevronRight, faChevronLeft, faChevronDown, faChevronUp, faCheckDouble, faCheck, faCaretDown, faCaretRight, faBookmark as faBookmark$1, faSquareArrowUpRight, faArrowsRotateReverse, faArrowDownWideShort, faArrowUpShortWide, faArrowUpArrowDown, faArrowDownLong, faArrowUpLong, faArrowDown, faArrowUp, faArrowRight, faArrowLeft } from '@awesome.me/kit-dd32553919/icons/classic/solid';
|
|
4
|
+
import { faBan, faXmark, faDownload as faDownload$1, faBuildingColumns, faAddressCard, faBuilding, faMapLocationDot, faMemoPad, faLocationDot, faHouse, faGlobe, faUser, faSpinner, faBars, faEnvelope as faEnvelope$1, faCommentSms, faCopy, faCirclePlus, faCircleInfo, faCircleExclamation as faCircleExclamation$1, faChevronRight, faChevronLeft, faChevronDown, faChevronUp, faCheckDouble, faCheck, faCaretDown, faCaretRight, faBookmark as faBookmark$1, faSquareArrowUpRight, faArrowsRotateReverse, faArrowDownWideShort, faArrowUpShortWide, faArrowUpArrowDown, faArrowDownLong, faArrowUpLong, faArrowDown, faArrowUpRight, faArrowUp, faArrowRight, faArrowLeft } from '@awesome.me/kit-dd32553919/icons/classic/solid';
|
|
5
5
|
import { faPrint, faEyeSlash, faEye, faDownload, faEnvelope, faCircleExclamation, faBookmark } from '@awesome.me/kit-dd32553919/icons/classic/regular';
|
|
6
6
|
import { faXTwitter, faTwitter, faFacebookF } from '@awesome.me/kit-dd32553919/icons/classic/brands';
|
|
7
7
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
|
@@ -25,6 +25,9 @@ const Icon = _ref => {
|
|
|
25
25
|
case 'arrowUp':
|
|
26
26
|
faIcon = faArrowUp;
|
|
27
27
|
break;
|
|
28
|
+
case 'arrowUpRight':
|
|
29
|
+
faIcon = faArrowUpRight;
|
|
30
|
+
break;
|
|
28
31
|
case 'arrowDown':
|
|
29
32
|
faIcon = faArrowDown;
|
|
30
33
|
break;
|
package/dist/src/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { FontAwesomeIconProps } from '@fortawesome/react-fontawesome';
|
|
3
|
-
export type IconNames = 'arrowLeft' | 'arrowRight' | 'arrowUp' | 'arrowDown' | 'arrowUpLong' | 'arrowDownLong' | 'arrowUpArrowDown' | 'arrowUpShortWide' | 'arrowDownWideShort' | 'arrowsRotateReverse' | 'squareArrowUpRight' | 'bookmark' | 'caretRight' | 'caretDown' | 'check' | 'checkDouble' | 'chevronUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'circleExclamation' | 'circleInfo' | 'circlePlus' | 'copy' | 'facebook' | 'twitter' | 'xTwitter' | 'sms' | 'envelope' | 'bars' | 'spinner' | 'user' | 'globe' | 'house' | 'locationDot' | 'memoPad' | 'mapLocationDot' | 'building' | 'addressCard' | 'buildingColumns' | 'download' | 'downloadRegular' | 'xmark' | 'ban' | 'eye' | 'eyeSlash' | 'print';
|
|
3
|
+
export type IconNames = 'arrowLeft' | 'arrowRight' | 'arrowUp' | 'arrowUpRight' | 'arrowDown' | 'arrowUpLong' | 'arrowDownLong' | 'arrowUpArrowDown' | 'arrowUpShortWide' | 'arrowDownWideShort' | 'arrowsRotateReverse' | 'squareArrowUpRight' | 'bookmark' | 'caretRight' | 'caretDown' | 'check' | 'checkDouble' | 'chevronUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'circleExclamation' | 'circleInfo' | 'circlePlus' | 'copy' | 'facebook' | 'twitter' | 'xTwitter' | 'sms' | 'envelope' | 'bars' | 'spinner' | 'user' | 'globe' | 'house' | 'locationDot' | 'memoPad' | 'mapLocationDot' | 'building' | 'addressCard' | 'buildingColumns' | 'download' | 'downloadRegular' | 'xmark' | 'ban' | 'eye' | 'eyeSlash' | 'print';
|
|
4
4
|
export interface IconProps extends Omit<FontAwesomeIconProps, 'icon'> {
|
|
5
5
|
className?: string;
|
|
6
6
|
icon?: IconNames;
|