@entur/icons 5.4.3 → 5.6.0
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.
- package/dist/index.d.ts +5 -0
- package/dist/index.esm.js +64 -8
- package/dist/index.esm.native.js +53 -7
- package/dist/index.js +66 -7
- package/dist/styles.css +45 -50
- package/package.json +5 -5
- package/CHANGELOG.md +0 -564
package/dist/index.d.ts
CHANGED
|
@@ -163,13 +163,17 @@ export declare const CityBikeIcon: React.FC<IconProps>;
|
|
|
163
163
|
export declare const FerryIcon: React.FC<IconProps>;
|
|
164
164
|
export declare const FunicularIcon: React.FC<IconProps>;
|
|
165
165
|
export declare const HelicopterIcon: React.FC<IconProps>;
|
|
166
|
+
export declare const MetroIcon: React.FC<IconProps>;
|
|
167
|
+
export declare const MobilityIcon: React.FC<IconProps>;
|
|
166
168
|
export declare const PlaneIcon: React.FC<IconProps>;
|
|
167
169
|
export declare const QuietIcon: React.FC<IconProps>;
|
|
168
170
|
export declare const RunningIcon: React.FC<IconProps>;
|
|
171
|
+
/** @deprecated ScooterIcon is deprecated; use MobilityIcon instead */
|
|
169
172
|
export declare const ScooterIcon: React.FC<IconProps>;
|
|
170
173
|
export declare const StandardIcon: React.FC<IconProps>;
|
|
171
174
|
export declare const StandingIcon: React.FC<IconProps>;
|
|
172
175
|
export declare const StrollingIcon: React.FC<IconProps>;
|
|
176
|
+
/** @deprecated SubwayIcon is deprecated; use MetroIcon instead */
|
|
173
177
|
export declare const SubwayIcon: React.FC<IconProps>;
|
|
174
178
|
export declare const TaxiIcon: React.FC<IconProps>;
|
|
175
179
|
export declare const TrainIcon: React.FC<IconProps>;
|
|
@@ -238,6 +242,7 @@ export declare const StarredIcon: React.FC<IconProps>;
|
|
|
238
242
|
export declare const UnstarredIcon: React.FC<IconProps>;
|
|
239
243
|
export declare const FileIcon: React.FC<IconProps>;
|
|
240
244
|
export declare const FillIcon: React.FC<IconProps>;
|
|
245
|
+
export declare const FilterIcon: React.FC<IconProps>;
|
|
241
246
|
export declare const GridViewIcon: React.FC<IconProps>;
|
|
242
247
|
export declare const HandToolIcon: React.FC<IconProps>;
|
|
243
248
|
export declare const HeartIcon: React.FC<IconProps>;
|
package/dist/index.esm.js
CHANGED
|
@@ -2732,14 +2732,14 @@ function CarferryIcon(props) {
|
|
|
2732
2732
|
height: props.height || props.size || '1em',
|
|
2733
2733
|
className: (!props.color ? 'eds-icon eds-icon__carferry ' : 'eds-icon') + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
2734
2734
|
inline: undefined,
|
|
2735
|
-
color: props.color || '#
|
|
2735
|
+
color: props.color || '#0c6693'
|
|
2736
2736
|
}), /*#__PURE__*/createElement("path", {
|
|
2737
|
-
fill: "#
|
|
2737
|
+
fill: "#0C6693",
|
|
2738
2738
|
fillRule: "evenodd",
|
|
2739
2739
|
d: "M11.858 5.7l-.703-2.145c-.108-.33-.44-.555-.818-.555H5.665c-.377 0-.71.225-.817.554L4.143 5.7h-.001a.642.642 0 00-.642.642v2.252c0 .177.144.32.32.32h.323v.429a.707.707 0 001.414 0v-.429h4.886v.429a.707.707 0 001.414 0v-.429h.322a.32.32 0 00.321-.32V6.342a.642.642 0 00-.642-.642zM4.96 5.657l.54-1.76c.041-.132.17-.222.319-.222h4.364c.148 0 .278.09.318.221l.54 1.761c.007.022-.01.043-.035.043h-6.01c-.025 0-.042-.021-.036-.043zm-.302.686a.515.515 0 110 1.028.515.515 0 010-1.028zm6.686 1.028a.515.515 0 110-1.028.515.515 0 010 1.028z",
|
|
2740
2740
|
clipRule: "evenodd"
|
|
2741
2741
|
}), /*#__PURE__*/createElement("path", {
|
|
2742
|
-
fill: "#
|
|
2742
|
+
fill: "#0C6693",
|
|
2743
2743
|
d: "M2 12.289c.109-.015.231-.023.373-.023.576 0 .837.136 1.167.31.101.053.122.067.238.12.023.01.196.097.438.172.105.033.222.058.348.08.037.006.307.052.608.052.824 0 1.254-.226 1.633-.425.33-.173.591-.31 1.167-.31s.837.137 1.167.31c.38.2.81.425 1.633.425s1.253-.226 1.633-.425c.33-.173.59-.31 1.168-.31.145 0 .29.017.427.045v-1.013a2.99 2.99 0 00-.427-.031c-.823 0-1.253.225-1.633.424-.33.173-.59.31-1.168.31s-.838-.137-1.168-.31c-.379-.199-.809-.424-1.632-.424s-1.253.225-1.632.424c-.33.173-.59.31-1.168.31-.179 0-.326-.012-.454-.04-.094-.022-.192-.04-.322-.09a3.304 3.304 0 01-.392-.18c-.378-.199-.808-.424-1.631-.424a3.94 3.94 0 00-.373.017v1.006z"
|
|
2744
2744
|
}));
|
|
2745
2745
|
}
|
|
@@ -2770,10 +2770,10 @@ function FerryIcon(props) {
|
|
|
2770
2770
|
inline: undefined,
|
|
2771
2771
|
color: props.color || '#0c6693'
|
|
2772
2772
|
}), /*#__PURE__*/createElement("path", {
|
|
2773
|
-
fill: "#
|
|
2773
|
+
fill: "#0C6693",
|
|
2774
2774
|
d: "M8.737 13c-.824 0-1.253-.226-1.632-.425-.33-.173-.591-.31-1.168-.31s-.838.137-1.168.31c-.38.2-.81.425-1.633.425-1.052 0-1.969-.588-2.007-.613L1 12.316l.447-.894.196.108c.037.023.743.47 1.493.47.577 0 .838-.137 1.168-.31.38-.199.81-.424 1.633-.424s1.254.225 1.633.424c.33.173.59.31 1.167.31s.837-.137 1.167-.31c.379-.199.81-.424 1.632-.424.643 0 1.046.137 1.372.292l-.479.88c-.23-.103-.48-.172-.893-.172-.577 0-.837.136-1.168.31-.378.198-.808.424-1.631.424z"
|
|
2775
2775
|
}), /*#__PURE__*/createElement("path", {
|
|
2776
|
-
fill: "#
|
|
2776
|
+
fill: "#0C6693",
|
|
2777
2777
|
d: "M14.75 7.456h-1.432a.053.053 0 01-.05-.036l-.907-2.746a.348.348 0 00-.33-.242h-.554a.05.05 0 01-.047-.034l-.34-.825c-.073-.186-.214-.298-.417-.198l-1.213.706a.45.45 0 00-.244.402v.463c0 .04-.026.054-.047.054H5.78a.354.354 0 00-.318.198L4.362 7.422a.05.05 0 01-.047.034h-.667a.35.35 0 00-.314.195l-1.496 3.047c.313.16.658.302 1.275.302 1.4 0 1.4-.733 2.8-.733s1.4.733 2.8.733 1.4-.733 2.8-.733c.9 0 1.45.306 1.845.521l1.611-2.963a.25.25 0 00-.22-.37zm-7.353-.2a.2.2 0 01-.2.2H5.272c-.125 0-.236-.098-.133-.279l.381-.78a.254.254 0 01.228-.141h1.45c.11 0 .2.09.2.2v.8zm2.204-.004a.204.204 0 01-.204.204H8.005a.204.204 0 01-.204-.204V6.46c0-.113.091-.204.204-.204h1.392c.113 0 .204.091.204.204v.792zm2.535.204l-1.933.001A.202.202 0 0110 7.256v-.799c0-.11.09-.201.202-.201h1.653c.116 0 .217.079.245.191l.193.78c.053.165-.049.229-.158.229z"
|
|
2778
2778
|
}));
|
|
2779
2779
|
}
|
|
@@ -2820,6 +2820,41 @@ function HelicopterIcon(props) {
|
|
|
2820
2820
|
}));
|
|
2821
2821
|
}
|
|
2822
2822
|
|
|
2823
|
+
function MetroIcon(props) {
|
|
2824
|
+
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
2825
|
+
viewBox: "0 0 16 16",
|
|
2826
|
+
width: props.width || props.size || '1em',
|
|
2827
|
+
height: props.height || props.size || '1em',
|
|
2828
|
+
className: (!props.color ? 'eds-icon eds-icon__metro ' : 'eds-icon') + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
2829
|
+
inline: undefined,
|
|
2830
|
+
color: props.color || '#bf5826'
|
|
2831
|
+
}), /*#__PURE__*/createElement("path", {
|
|
2832
|
+
fill: "#BF5826",
|
|
2833
|
+
fillRule: "evenodd",
|
|
2834
|
+
d: "M5.004 5v1.166h2.412V12h1.168V6.166h2.415V5z",
|
|
2835
|
+
clipRule: "evenodd"
|
|
2836
|
+
}), /*#__PURE__*/createElement("path", {
|
|
2837
|
+
fill: "#BF5826",
|
|
2838
|
+
d: "M8 2c3.308 0 6 2.692 6 6s-2.692 6-6 6c-3.309 0-6-2.692-6-6s2.691-6 6-6m0-1C4.14 1 1 4.14 1 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7z"
|
|
2839
|
+
}));
|
|
2840
|
+
}
|
|
2841
|
+
|
|
2842
|
+
function MobilityIcon(props) {
|
|
2843
|
+
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
2844
|
+
viewBox: "0 0 16 16",
|
|
2845
|
+
width: props.width || props.size || '1em',
|
|
2846
|
+
height: props.height || props.size || '1em',
|
|
2847
|
+
className: (!props.color ? 'eds-icon eds-icon__mobility ' : 'eds-icon') + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
2848
|
+
inline: undefined,
|
|
2849
|
+
color: props.color || '#388f76'
|
|
2850
|
+
}), /*#__PURE__*/createElement("path", {
|
|
2851
|
+
fill: "currentColor",
|
|
2852
|
+
fillRule: "evenodd",
|
|
2853
|
+
d: "M12.5 11c-.019 0-.036.005-.055.005l-2.224-7.68A.45.45 0 009.79 3H7.5v.8h1.95a.1.1 0 01.097.072l1.53 5.281a.1.1 0 01-.02.093l-2.398 2.819a.1.1 0 01-.076.035H4.94A1.496 1.496 0 002 12.5a1.496 1.496 0 002.94.4H8.79a.45.45 0 00.343-.159l2.224-2.615.324 1.12c-.41.267-.682.728-.682 1.254a1.5 1.5 0 101.5-1.5zm-9 2.2a.7.7 0 11.002-1.402A.7.7 0 013.5 13.2zm9 0a.7.7 0 11.002-1.402.7.7 0 01-.002 1.402z",
|
|
2854
|
+
clipRule: "evenodd"
|
|
2855
|
+
}));
|
|
2856
|
+
}
|
|
2857
|
+
|
|
2823
2858
|
function PlaneIcon(props) {
|
|
2824
2859
|
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
2825
2860
|
viewBox: "0 0 16 16",
|
|
@@ -2878,7 +2913,9 @@ function RunningIcon(props) {
|
|
|
2878
2913
|
})));
|
|
2879
2914
|
}
|
|
2880
2915
|
|
|
2916
|
+
/** @deprecated ScooterIcon is deprecated; use MobilityIcon instead */
|
|
2881
2917
|
function ScooterIcon(props) {
|
|
2918
|
+
console.warn('Design system warning: ScooterIcon is deprecated; use MobilityIcon instead');
|
|
2882
2919
|
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
2883
2920
|
viewBox: "0 0 16 16",
|
|
2884
2921
|
width: props.width || props.size || '1em',
|
|
@@ -2950,7 +2987,9 @@ function StrollingIcon(props) {
|
|
|
2950
2987
|
})));
|
|
2951
2988
|
}
|
|
2952
2989
|
|
|
2990
|
+
/** @deprecated SubwayIcon is deprecated; use MetroIcon instead */
|
|
2953
2991
|
function SubwayIcon(props) {
|
|
2992
|
+
console.warn('Design system warning: SubwayIcon is deprecated; use MetroIcon instead');
|
|
2954
2993
|
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
2955
2994
|
viewBox: "0 0 16 16",
|
|
2956
2995
|
width: props.width || props.size || '1em',
|
|
@@ -2959,12 +2998,12 @@ function SubwayIcon(props) {
|
|
|
2959
2998
|
inline: undefined,
|
|
2960
2999
|
color: props.color || 'currentColor'
|
|
2961
3000
|
}), /*#__PURE__*/createElement("path", {
|
|
2962
|
-
fill: "#
|
|
3001
|
+
fill: "#BF5826",
|
|
2963
3002
|
fillRule: "evenodd",
|
|
2964
3003
|
d: "M5.004 5v1.166h2.412V12h1.168V6.166h2.415V5z",
|
|
2965
3004
|
clipRule: "evenodd"
|
|
2966
3005
|
}), /*#__PURE__*/createElement("path", {
|
|
2967
|
-
fill: "#
|
|
3006
|
+
fill: "#BF5826",
|
|
2968
3007
|
d: "M8 2c3.308 0 6 2.692 6 6s-2.692 6-6 6c-3.309 0-6-2.692-6-6s2.691-6 6-6m0-1C4.14 1 1 4.14 1 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7z"
|
|
2969
3008
|
}));
|
|
2970
3009
|
}
|
|
@@ -4167,6 +4206,23 @@ function FillIcon(props) {
|
|
|
4167
4206
|
}));
|
|
4168
4207
|
}
|
|
4169
4208
|
|
|
4209
|
+
function FilterIcon(props) {
|
|
4210
|
+
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
4211
|
+
fill: "none",
|
|
4212
|
+
viewBox: "0 0 16 16",
|
|
4213
|
+
width: props.width || props.size || '1em',
|
|
4214
|
+
height: props.height || props.size || '1em',
|
|
4215
|
+
className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
4216
|
+
inline: undefined,
|
|
4217
|
+
color: props.color || 'currentColor'
|
|
4218
|
+
}), /*#__PURE__*/createElement("path", {
|
|
4219
|
+
fill: "currentColor",
|
|
4220
|
+
fillRule: "evenodd",
|
|
4221
|
+
d: "M1.333 2c0-.368.299-.667.667-.667h12c.368 0 .667.299.667.667v2c0 .177-.07.346-.196.471L10 8.943v3.724a.667.667 0 01-.369.596l-2.666 1.333A.667.667 0 016 14V8.943L1.529 4.47A.667.667 0 011.333 4V2zm1.334.667v1.057l4.471 4.471a.667.667 0 01.195.472v4.254l1.334-.666V8.667c0-.177.07-.347.195-.472l4.471-4.471V2.667H2.667z",
|
|
4222
|
+
clipRule: "evenodd"
|
|
4223
|
+
}));
|
|
4224
|
+
}
|
|
4225
|
+
|
|
4170
4226
|
function GridViewIcon(props) {
|
|
4171
4227
|
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
4172
4228
|
viewBox: "0 0 16 16",
|
|
@@ -5218,4 +5274,4 @@ function ZoomOutIcon(props) {
|
|
|
5218
5274
|
}));
|
|
5219
5275
|
}
|
|
5220
5276
|
|
|
5221
|
-
export { AKTIcon, AccessibilityIcon, AddCardIcon, AddIcon, AdditionalIcon, AdditionalZonesTicketIcon, AdjustmentsIcon, AdminIcon, AgreesIcon, AlignCenterIcon, AlignLeftIcon, AlignRightIcon, AnimalFreeIcon, AnimalIcon, AttachmentIcon, BabyIcon, BackArrowIcon, BanknoteIcon, BanknoteMultiIcon, BatteryIcon, BellIcon, BergenBysykkelIcon, BicycleHotelIcon, BicycleIcon, BicycleParkingIcon, BoldIcon, BoltIcon, BookmarkIcon, BrakarIcon, BrakarNoTextIcon, BrightnessIcon, BugIcon, BulletListIcon, BusIcon, BusShelterIcon, CabinIcon, CablewayIcon, CalculatorIcon, CalendarIcon, CameraIcon, CarIcon, CardIcon, CarferryIcon, ChannelsIcon, ChatIcon, CheckIcon, CityBikeIcon, CityIcon, ClockIcon, CloseIcon, CloseSmallIcon, ClosedLockIcon, CloudDownloadIcon, CloudIcon, CloudLightningIcon, CloudRainIcon, CloudSnowIcon, CoffeeIcon, CollapsedIcon, ColorPickerIcon, CommentIcon, ConductorIcon, ConfigurationIcon, ContactsIcon, CopyIcon, CorrespondenceIcon, CouchetteIcon, CutleryIcon, DatabaseIcon, DateIcon, DeleteIcon, DenmarkIcon, DepositionIcon, DesktopIcon, DestinationIcon, DiffIcon, DownArrowIcon, DownloadIcon, DownwardIcon, DraggableIcon, EditIcon, EmailIcon, EnvironmentIcon, EuroIcon, ExpandIcon, ExtendIcon, ExternalIcon, FacebookIcon, FarteIcon, FerryIcon, FileIcon, FillIcon, ForwardIcon, FullIcon, FunicularIcon, GOAIcon, GithubIcon, GoalIcon, GoogleIcon, GridViewIcon, GymIcon, HandToolIcon, HeartIcon, HelicopterIcon, HomeIcon, HorizontalDotsIcon, ImageIcon, InnlandstrafikkIcon, InstagramIcon, InternationalIcon, InterrailIcon, InvalidTicketIcon, ItalicIcon, KolumbusBysykkelIcon, KolumbusIcon, LaptopIcon, LeftArrowIcon, LikeIcon, LimeIcon, LinkIcon, LinkedinIcon, ListViewIcon, LoadingIcon, LockerIcon, LogOutIcon, LogoNegativeIcon, LogoPositiveIcon, LuggageIcon, ManySeatsAvailableIcon, MapIcon, MapPinIcon, MastercardIcon, MenuIcon, MergeProfilesIcon, MinimizeIcon, MobileIcon, MoneyIcon, MountainIcon, MoveAboutIcon, NewIcon, NightIcon, NorwayIcon, NumberListIcon, OpenedLockIcon, OrganizationIcon, OsloBysykkelIcon, OstfoldIcon, OutlinedValidationCheckIcon, OutlinedValidationErrorIcon, OutlinedValidationExclamationIcon, OutlinedValidationInfoIcon, PackageIcon, ParkAndRideIcon, ParkIcon, ParkingGarageIcon, PhoneIcon, PlaneIcon, PlayIcon, PlaygroundIcon, PlayroomIcon, PositionIcon, PowerIcon, PremiumSeatIcon, PriceFromIcon, PricelistIcon, PrinterIcon, PrioritySeatPregnantIcon, PrioritySeatSeniorsIcon, PrivacyIcon, PurposeIcon, QRIcon, QuestionIcon, QuietIcon, QuitIcon, RSSIcon, RedoIcon, ReferenceIcon, RefreshIcon, ReportsIcon, ResetIcon, RightArrowIcon, RowHeightDefaultIcon, RowHeightMiddleIcon, RowHeightSmallIcon, RulesIcon, RunningIcon, RuterIcon, SJIcon, SamiIcon, SaveIcon, ScooterIcon, ScopeIcon, SearchIcon, SeatIcon, SeatsAvailableIcon, SelectIcon, SendIcon, SettingsIcon, ShareIcon, ShoppingCartIcon, SkiIcon, SkypeIcon, SkyssIcon, SleepIcon, SourceCodeIcon, StandardIcon, StandingAvailableIcon, StandingIcon, StarredIcon, StatsIcon, StrollerIcon, StrollingIcon, SubtractIcon, SubwayIcon, SuitcaseIcon, SunCloudIcon, SunCloudRainIcon, SunIcon, SwedenIcon, SwitchIcon, TVMIcon, TaxiIcon, TextColorIcon, ThermometerIcon, TierIcon, TimelineIcon, ToFromIcon, ToiletIcon, TrackIcon, TrainCarIcon, TrainIcon, TramIcon, TransferIcon, TrondheimBysykkelIcon, TurnableIcon, TwitterIcon, UKIcon, UmbrellaIcon, UnderlineIcon, UndoIcon, UniversityIcon, UnlinkIcon, UnsortedIcon, UnstarredIcon, UnviewIcon, UpArrowIcon, UploadIcon, UpwardIcon, UserIcon, UsersIcon, VKTIcon, ValidTicketIcon, ValidationCheckIcon, ValidationErrorIcon, ValidationExclamationIcon, ValidationInfoIcon, ValueIcon, VendingMachineIcon, VerticalDotsIcon, VerticalSwitchIcon, ViewIcon, VimeoIcon, VippsIcon, VippsLogoIcon, VisaIcon, VoiIcon, VyIcon, WaitingRoomIcon, WalkingIcon, WarningIcon, WaterTapIcon, WheelchairIcon, WifiIcon, WindIcon, YoutubeIcon, ZoneIcon, ZoomInIcon, ZoomOutIcon, ZvippIcon };
|
|
5277
|
+
export { AKTIcon, AccessibilityIcon, AddCardIcon, AddIcon, AdditionalIcon, AdditionalZonesTicketIcon, AdjustmentsIcon, AdminIcon, AgreesIcon, AlignCenterIcon, AlignLeftIcon, AlignRightIcon, AnimalFreeIcon, AnimalIcon, AttachmentIcon, BabyIcon, BackArrowIcon, BanknoteIcon, BanknoteMultiIcon, BatteryIcon, BellIcon, BergenBysykkelIcon, BicycleHotelIcon, BicycleIcon, BicycleParkingIcon, BoldIcon, BoltIcon, BookmarkIcon, BrakarIcon, BrakarNoTextIcon, BrightnessIcon, BugIcon, BulletListIcon, BusIcon, BusShelterIcon, CabinIcon, CablewayIcon, CalculatorIcon, CalendarIcon, CameraIcon, CarIcon, CardIcon, CarferryIcon, ChannelsIcon, ChatIcon, CheckIcon, CityBikeIcon, CityIcon, ClockIcon, CloseIcon, CloseSmallIcon, ClosedLockIcon, CloudDownloadIcon, CloudIcon, CloudLightningIcon, CloudRainIcon, CloudSnowIcon, CoffeeIcon, CollapsedIcon, ColorPickerIcon, CommentIcon, ConductorIcon, ConfigurationIcon, ContactsIcon, CopyIcon, CorrespondenceIcon, CouchetteIcon, CutleryIcon, DatabaseIcon, DateIcon, DeleteIcon, DenmarkIcon, DepositionIcon, DesktopIcon, DestinationIcon, DiffIcon, DownArrowIcon, DownloadIcon, DownwardIcon, DraggableIcon, EditIcon, EmailIcon, EnvironmentIcon, EuroIcon, ExpandIcon, ExtendIcon, ExternalIcon, FacebookIcon, FarteIcon, FerryIcon, FileIcon, FillIcon, FilterIcon, ForwardIcon, FullIcon, FunicularIcon, GOAIcon, GithubIcon, GoalIcon, GoogleIcon, GridViewIcon, GymIcon, HandToolIcon, HeartIcon, HelicopterIcon, HomeIcon, HorizontalDotsIcon, ImageIcon, InnlandstrafikkIcon, InstagramIcon, InternationalIcon, InterrailIcon, InvalidTicketIcon, ItalicIcon, KolumbusBysykkelIcon, KolumbusIcon, LaptopIcon, LeftArrowIcon, LikeIcon, LimeIcon, LinkIcon, LinkedinIcon, ListViewIcon, LoadingIcon, LockerIcon, LogOutIcon, LogoNegativeIcon, LogoPositiveIcon, LuggageIcon, ManySeatsAvailableIcon, MapIcon, MapPinIcon, MastercardIcon, MenuIcon, MergeProfilesIcon, MetroIcon, MinimizeIcon, MobileIcon, MobilityIcon, MoneyIcon, MountainIcon, MoveAboutIcon, NewIcon, NightIcon, NorwayIcon, NumberListIcon, OpenedLockIcon, OrganizationIcon, OsloBysykkelIcon, OstfoldIcon, OutlinedValidationCheckIcon, OutlinedValidationErrorIcon, OutlinedValidationExclamationIcon, OutlinedValidationInfoIcon, PackageIcon, ParkAndRideIcon, ParkIcon, ParkingGarageIcon, PhoneIcon, PlaneIcon, PlayIcon, PlaygroundIcon, PlayroomIcon, PositionIcon, PowerIcon, PremiumSeatIcon, PriceFromIcon, PricelistIcon, PrinterIcon, PrioritySeatPregnantIcon, PrioritySeatSeniorsIcon, PrivacyIcon, PurposeIcon, QRIcon, QuestionIcon, QuietIcon, QuitIcon, RSSIcon, RedoIcon, ReferenceIcon, RefreshIcon, ReportsIcon, ResetIcon, RightArrowIcon, RowHeightDefaultIcon, RowHeightMiddleIcon, RowHeightSmallIcon, RulesIcon, RunningIcon, RuterIcon, SJIcon, SamiIcon, SaveIcon, ScooterIcon, ScopeIcon, SearchIcon, SeatIcon, SeatsAvailableIcon, SelectIcon, SendIcon, SettingsIcon, ShareIcon, ShoppingCartIcon, SkiIcon, SkypeIcon, SkyssIcon, SleepIcon, SourceCodeIcon, StandardIcon, StandingAvailableIcon, StandingIcon, StarredIcon, StatsIcon, StrollerIcon, StrollingIcon, SubtractIcon, SubwayIcon, SuitcaseIcon, SunCloudIcon, SunCloudRainIcon, SunIcon, SwedenIcon, SwitchIcon, TVMIcon, TaxiIcon, TextColorIcon, ThermometerIcon, TierIcon, TimelineIcon, ToFromIcon, ToiletIcon, TrackIcon, TrainCarIcon, TrainIcon, TramIcon, TransferIcon, TrondheimBysykkelIcon, TurnableIcon, TwitterIcon, UKIcon, UmbrellaIcon, UnderlineIcon, UndoIcon, UniversityIcon, UnlinkIcon, UnsortedIcon, UnstarredIcon, UnviewIcon, UpArrowIcon, UploadIcon, UpwardIcon, UserIcon, UsersIcon, VKTIcon, ValidTicketIcon, ValidationCheckIcon, ValidationErrorIcon, ValidationExclamationIcon, ValidationInfoIcon, ValueIcon, VendingMachineIcon, VerticalDotsIcon, VerticalSwitchIcon, ViewIcon, VimeoIcon, VippsIcon, VippsLogoIcon, VisaIcon, VoiIcon, VyIcon, WaitingRoomIcon, WalkingIcon, WarningIcon, WaterTapIcon, WheelchairIcon, WifiIcon, WindIcon, YoutubeIcon, ZoneIcon, ZoomInIcon, ZoomOutIcon, ZvippIcon };
|
package/dist/index.esm.native.js
CHANGED
|
@@ -2453,12 +2453,12 @@ function CarferryIcon(props) {
|
|
|
2453
2453
|
height: props.height || props.size || 16,
|
|
2454
2454
|
color: props.color || '#181C56'
|
|
2455
2455
|
}), /*#__PURE__*/createElement(Path, {
|
|
2456
|
-
fill: "
|
|
2456
|
+
fill: "currentColor",
|
|
2457
2457
|
fillRule: "evenodd",
|
|
2458
2458
|
d: "M11.858 5.7l-.703-2.145c-.108-.33-.44-.555-.818-.555H5.665c-.377 0-.71.225-.817.554L4.143 5.7h-.001a.642.642 0 00-.642.642v2.252c0 .177.144.32.32.32h.323v.429a.707.707 0 001.414 0v-.429h4.886v.429a.707.707 0 001.414 0v-.429h.322a.32.32 0 00.321-.32V6.342a.642.642 0 00-.642-.642zM4.96 5.657l.54-1.76c.041-.132.17-.222.319-.222h4.364c.148 0 .278.09.318.221l.54 1.761c.007.022-.01.043-.035.043h-6.01c-.025 0-.042-.021-.036-.043zm-.302.686a.515.515 0 110 1.028.515.515 0 010-1.028zm6.686 1.028a.515.515 0 110-1.028.515.515 0 010 1.028z",
|
|
2459
2459
|
clipRule: "evenodd"
|
|
2460
2460
|
}), /*#__PURE__*/createElement(Path, {
|
|
2461
|
-
fill: "
|
|
2461
|
+
fill: "currentColor",
|
|
2462
2462
|
d: "M2 12.289c.109-.015.231-.023.373-.023.576 0 .837.136 1.167.31.101.053.122.067.238.12.023.01.196.097.438.172.105.033.222.058.348.08.037.006.307.052.608.052.824 0 1.254-.226 1.633-.425.33-.173.591-.31 1.167-.31s.837.137 1.167.31c.38.2.81.425 1.633.425s1.253-.226 1.633-.425c.33-.173.59-.31 1.168-.31.145 0 .29.017.427.045v-1.013a2.99 2.99 0 00-.427-.031c-.823 0-1.253.225-1.633.424-.33.173-.59.31-1.168.31s-.838-.137-1.168-.31c-.379-.199-.809-.424-1.632-.424s-1.253.225-1.632.424c-.33.173-.59.31-1.168.31-.179 0-.326-.012-.454-.04-.094-.022-.192-.04-.322-.09a3.304 3.304 0 01-.392-.18c-.378-.199-.808-.424-1.631-.424a3.94 3.94 0 00-.373.017v1.006z"
|
|
2463
2463
|
}));
|
|
2464
2464
|
}
|
|
@@ -2485,10 +2485,10 @@ function FerryIcon(props) {
|
|
|
2485
2485
|
height: props.height || props.size || 16,
|
|
2486
2486
|
color: props.color || '#181C56'
|
|
2487
2487
|
}), /*#__PURE__*/createElement(Path, {
|
|
2488
|
-
fill: "
|
|
2488
|
+
fill: "currentColor",
|
|
2489
2489
|
d: "M8.737 13c-.824 0-1.253-.226-1.632-.425-.33-.173-.591-.31-1.168-.31s-.838.137-1.168.31c-.38.2-.81.425-1.633.425-1.052 0-1.969-.588-2.007-.613L1 12.316l.447-.894.196.108c.037.023.743.47 1.493.47.577 0 .838-.137 1.168-.31.38-.199.81-.424 1.633-.424s1.254.225 1.633.424c.33.173.59.31 1.167.31s.837-.137 1.167-.31c.379-.199.81-.424 1.632-.424.643 0 1.046.137 1.372.292l-.479.88c-.23-.103-.48-.172-.893-.172-.577 0-.837.136-1.168.31-.378.198-.808.424-1.631.424z"
|
|
2490
2490
|
}), /*#__PURE__*/createElement(Path, {
|
|
2491
|
-
fill: "
|
|
2491
|
+
fill: "currentColor",
|
|
2492
2492
|
d: "M14.75 7.456h-1.432a.053.053 0 01-.05-.036l-.907-2.746a.348.348 0 00-.33-.242h-.554a.05.05 0 01-.047-.034l-.34-.825c-.073-.186-.214-.298-.417-.198l-1.213.706a.45.45 0 00-.244.402v.463c0 .04-.026.054-.047.054H5.78a.354.354 0 00-.318.198L4.362 7.422a.05.05 0 01-.047.034h-.667a.35.35 0 00-.314.195l-1.496 3.047c.313.16.658.302 1.275.302 1.4 0 1.4-.733 2.8-.733s1.4.733 2.8.733 1.4-.733 2.8-.733c.9 0 1.45.306 1.845.521l1.611-2.963a.25.25 0 00-.22-.37zm-7.353-.2a.2.2 0 01-.2.2H5.272c-.125 0-.236-.098-.133-.279l.381-.78a.254.254 0 01.228-.141h1.45c.11 0 .2.09.2.2v.8zm2.204-.004a.204.204 0 01-.204.204H8.005a.204.204 0 01-.204-.204V6.46c0-.113.091-.204.204-.204h1.392c.113 0 .204.091.204.204v.792zm2.535.204l-1.933.001A.202.202 0 0110 7.256v-.799c0-.11.09-.201.202-.201h1.653c.116 0 .217.079.245.191l.193.78c.053.165-.049.229-.158.229z"
|
|
2493
2493
|
}));
|
|
2494
2494
|
}
|
|
@@ -2531,6 +2531,37 @@ function HelicopterIcon(props) {
|
|
|
2531
2531
|
}));
|
|
2532
2532
|
}
|
|
2533
2533
|
|
|
2534
|
+
function MetroIcon(props) {
|
|
2535
|
+
return /*#__PURE__*/createElement(Svg, _extends({}, props, {
|
|
2536
|
+
viewBox: "0 0 16 16",
|
|
2537
|
+
width: props.width || props.size || 16,
|
|
2538
|
+
height: props.height || props.size || 16,
|
|
2539
|
+
color: props.color || '#181C56'
|
|
2540
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
2541
|
+
fill: "currentColor",
|
|
2542
|
+
fillRule: "evenodd",
|
|
2543
|
+
d: "M5.004 5v1.166h2.412V12h1.168V6.166h2.415V5z",
|
|
2544
|
+
clipRule: "evenodd"
|
|
2545
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
2546
|
+
fill: "currentColor",
|
|
2547
|
+
d: "M8 2c3.308 0 6 2.692 6 6s-2.692 6-6 6c-3.309 0-6-2.692-6-6s2.691-6 6-6m0-1C4.14 1 1 4.14 1 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7z"
|
|
2548
|
+
}));
|
|
2549
|
+
}
|
|
2550
|
+
|
|
2551
|
+
function MobilityIcon(props) {
|
|
2552
|
+
return /*#__PURE__*/createElement(Svg, _extends({}, props, {
|
|
2553
|
+
viewBox: "0 0 16 16",
|
|
2554
|
+
width: props.width || props.size || 16,
|
|
2555
|
+
height: props.height || props.size || 16,
|
|
2556
|
+
color: props.color || '#181C56'
|
|
2557
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
2558
|
+
fill: "currentColor",
|
|
2559
|
+
fillRule: "evenodd",
|
|
2560
|
+
d: "M12.5 11c-.019 0-.036.005-.055.005l-2.224-7.68A.45.45 0 009.79 3H7.5v.8h1.95a.1.1 0 01.097.072l1.53 5.281a.1.1 0 01-.02.093l-2.398 2.819a.1.1 0 01-.076.035H4.94A1.496 1.496 0 002 12.5a1.496 1.496 0 002.94.4H8.79a.45.45 0 00.343-.159l2.224-2.615.324 1.12c-.41.267-.682.728-.682 1.254a1.5 1.5 0 101.5-1.5zm-9 2.2a.7.7 0 11.002-1.402A.7.7 0 013.5 13.2zm9 0a.7.7 0 11.002-1.402.7.7 0 01-.002 1.402z",
|
|
2561
|
+
clipRule: "evenodd"
|
|
2562
|
+
}));
|
|
2563
|
+
}
|
|
2564
|
+
|
|
2534
2565
|
function PlaneIcon(props) {
|
|
2535
2566
|
return /*#__PURE__*/createElement(Svg, _extends({}, props, {
|
|
2536
2567
|
viewBox: "0 0 16 16",
|
|
@@ -2654,12 +2685,12 @@ function SubwayIcon(props) {
|
|
|
2654
2685
|
height: props.height || props.size || 16,
|
|
2655
2686
|
color: props.color || '#181C56'
|
|
2656
2687
|
}), /*#__PURE__*/createElement(Path, {
|
|
2657
|
-
fill: "
|
|
2688
|
+
fill: "currentColor",
|
|
2658
2689
|
fillRule: "evenodd",
|
|
2659
2690
|
d: "M5.004 5v1.166h2.412V12h1.168V6.166h2.415V5z",
|
|
2660
2691
|
clipRule: "evenodd"
|
|
2661
2692
|
}), /*#__PURE__*/createElement(Path, {
|
|
2662
|
-
fill: "
|
|
2693
|
+
fill: "currentColor",
|
|
2663
2694
|
d: "M8 2c3.308 0 6 2.692 6 6s-2.692 6-6 6c-3.309 0-6-2.692-6-6s2.691-6 6-6m0-1C4.14 1 1 4.14 1 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7z"
|
|
2664
2695
|
}));
|
|
2665
2696
|
}
|
|
@@ -3728,6 +3759,21 @@ function FillIcon(props) {
|
|
|
3728
3759
|
}));
|
|
3729
3760
|
}
|
|
3730
3761
|
|
|
3762
|
+
function FilterIcon(props) {
|
|
3763
|
+
return /*#__PURE__*/createElement(Svg, _extends({}, props, {
|
|
3764
|
+
fill: "none",
|
|
3765
|
+
viewBox: "0 0 16 16",
|
|
3766
|
+
width: props.width || props.size || 16,
|
|
3767
|
+
height: props.height || props.size || 16,
|
|
3768
|
+
color: props.color || '#181C56'
|
|
3769
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
3770
|
+
fill: "currentColor",
|
|
3771
|
+
fillRule: "evenodd",
|
|
3772
|
+
d: "M1.333 2c0-.368.299-.667.667-.667h12c.368 0 .667.299.667.667v2c0 .177-.07.346-.196.471L10 8.943v3.724a.667.667 0 01-.369.596l-2.666 1.333A.667.667 0 016 14V8.943L1.529 4.47A.667.667 0 011.333 4V2zm1.334.667v1.057l4.471 4.471a.667.667 0 01.195.472v4.254l1.334-.666V8.667c0-.177.07-.347.195-.472l4.471-4.471V2.667H2.667z",
|
|
3773
|
+
clipRule: "evenodd"
|
|
3774
|
+
}));
|
|
3775
|
+
}
|
|
3776
|
+
|
|
3731
3777
|
function GridViewIcon(props) {
|
|
3732
3778
|
return /*#__PURE__*/createElement(Svg, _extends({}, props, {
|
|
3733
3779
|
viewBox: "0 0 16 16",
|
|
@@ -4659,4 +4705,4 @@ function ZoomOutIcon(props) {
|
|
|
4659
4705
|
}));
|
|
4660
4706
|
}
|
|
4661
4707
|
|
|
4662
|
-
export { AKTIcon, AccessibilityIcon, AddCardIcon, AddIcon, AdditionalIcon, AdditionalZonesTicketIcon, AdjustmentsIcon, AdminIcon, AgreesIcon, AlignCenterIcon, AlignLeftIcon, AlignRightIcon, AnimalFreeIcon, AnimalIcon, AttachmentIcon, BabyIcon, BackArrowIcon, BanknoteIcon, BanknoteMultiIcon, BatteryIcon, BellIcon, BergenBysykkelIcon, BicycleHotelIcon, BicycleIcon, BicycleParkingIcon, BoldIcon, BoltIcon, BookmarkIcon, BrakarIcon, BrakarNoTextIcon, BrightnessIcon, BugIcon, BulletListIcon, BusIcon, BusShelterIcon, CabinIcon, CablewayIcon, CalculatorIcon, CalendarIcon, CameraIcon, CarIcon, CardIcon, CarferryIcon, ChannelsIcon, ChatIcon, CheckIcon, CityBikeIcon, CityIcon, ClockIcon, CloseIcon, CloseSmallIcon, ClosedLockIcon, CloudDownloadIcon, CloudIcon, CloudLightningIcon, CloudRainIcon, CloudSnowIcon, CoffeeIcon, CollapsedIcon, ColorPickerIcon, CommentIcon, ConductorIcon, ConfigurationIcon, ContactsIcon, CopyIcon, CorrespondenceIcon, CouchetteIcon, CutleryIcon, DatabaseIcon, DateIcon, DeleteIcon, DenmarkIcon, DepositionIcon, DesktopIcon, DestinationIcon, DiffIcon, DownArrowIcon, DownloadIcon, DownwardIcon, DraggableIcon, EditIcon, EmailIcon, EnvironmentIcon, EuroIcon, ExpandIcon, ExtendIcon, ExternalIcon, FacebookIcon, FarteIcon, FerryIcon, FileIcon, FillIcon, ForwardIcon, FullIcon, FunicularIcon, GOAIcon, GithubIcon, GoalIcon, GoogleIcon, GridViewIcon, GymIcon, HandToolIcon, HeartIcon, HelicopterIcon, HomeIcon, HorizontalDotsIcon, ImageIcon, InnlandstrafikkIcon, InstagramIcon, InternationalIcon, InterrailIcon, InvalidTicketIcon, ItalicIcon, KolumbusBysykkelIcon, KolumbusIcon, LaptopIcon, LeftArrowIcon, LikeIcon, LimeIcon, LinkIcon, LinkedinIcon, ListViewIcon, LoadingIcon, LockerIcon, LogOutIcon, LogoNegativeIcon, LogoPositiveIcon, LuggageIcon, ManySeatsAvailableIcon, MapIcon, MapPinIcon, MastercardIcon, MenuIcon, MergeProfilesIcon, MinimizeIcon, MobileIcon, MoneyIcon, MountainIcon, MoveAboutIcon, NewIcon, NightIcon, NorwayIcon, NumberListIcon, OpenedLockIcon, OrganizationIcon, OsloBysykkelIcon, OstfoldIcon, OutlinedValidationCheckIcon, OutlinedValidationErrorIcon, OutlinedValidationExclamationIcon, OutlinedValidationInfoIcon, PackageIcon, ParkAndRideIcon, ParkIcon, ParkingGarageIcon, PhoneIcon, PlaneIcon, PlayIcon, PlaygroundIcon, PlayroomIcon, PositionIcon, PowerIcon, PremiumSeatIcon, PriceFromIcon, PricelistIcon, PrinterIcon, PrioritySeatPregnantIcon, PrioritySeatSeniorsIcon, PrivacyIcon, PurposeIcon, QRIcon, QuestionIcon, QuietIcon, QuitIcon, RSSIcon, RedoIcon, ReferenceIcon, RefreshIcon, ReportsIcon, ResetIcon, RightArrowIcon, RowHeightDefaultIcon, RowHeightMiddleIcon, RowHeightSmallIcon, RulesIcon, RunningIcon, RuterIcon, SJIcon, SamiIcon, SaveIcon, ScooterIcon, ScopeIcon, SearchIcon, SeatIcon, SeatsAvailableIcon, SelectIcon, SendIcon, SettingsIcon, ShareIcon, ShoppingCartIcon, SkiIcon, SkypeIcon, SkyssIcon, SleepIcon, SourceCodeIcon, StandardIcon, StandingAvailableIcon, StandingIcon, StarredIcon, StatsIcon, StrollerIcon, StrollingIcon, SubtractIcon, SubwayIcon, SuitcaseIcon, SunCloudIcon, SunCloudRainIcon, SunIcon, SwedenIcon, SwitchIcon, TVMIcon, TaxiIcon, TextColorIcon, ThermometerIcon, TierIcon, TimelineIcon, ToFromIcon, ToiletIcon, TrackIcon, TrainCarIcon, TrainIcon, TramIcon, TransferIcon, TrondheimBysykkelIcon, TurnableIcon, TwitterIcon, UKIcon, UmbrellaIcon, UnderlineIcon, UndoIcon, UniversityIcon, UnlinkIcon, UnsortedIcon, UnstarredIcon, UnviewIcon, UpArrowIcon, UploadIcon, UpwardIcon, UserIcon, UsersIcon, VKTIcon, ValidTicketIcon, ValidationCheckIcon, ValidationErrorIcon, ValidationExclamationIcon, ValidationInfoIcon, ValueIcon, VendingMachineIcon, VerticalDotsIcon, VerticalSwitchIcon, ViewIcon, VimeoIcon, VippsIcon, VippsLogoIcon, VisaIcon, VoiIcon, VyIcon, WaitingRoomIcon, WalkingIcon, WarningIcon, WaterTapIcon, WheelchairIcon, WifiIcon, WindIcon, YoutubeIcon, ZoneIcon, ZoomInIcon, ZoomOutIcon, ZvippIcon };
|
|
4708
|
+
export { AKTIcon, AccessibilityIcon, AddCardIcon, AddIcon, AdditionalIcon, AdditionalZonesTicketIcon, AdjustmentsIcon, AdminIcon, AgreesIcon, AlignCenterIcon, AlignLeftIcon, AlignRightIcon, AnimalFreeIcon, AnimalIcon, AttachmentIcon, BabyIcon, BackArrowIcon, BanknoteIcon, BanknoteMultiIcon, BatteryIcon, BellIcon, BergenBysykkelIcon, BicycleHotelIcon, BicycleIcon, BicycleParkingIcon, BoldIcon, BoltIcon, BookmarkIcon, BrakarIcon, BrakarNoTextIcon, BrightnessIcon, BugIcon, BulletListIcon, BusIcon, BusShelterIcon, CabinIcon, CablewayIcon, CalculatorIcon, CalendarIcon, CameraIcon, CarIcon, CardIcon, CarferryIcon, ChannelsIcon, ChatIcon, CheckIcon, CityBikeIcon, CityIcon, ClockIcon, CloseIcon, CloseSmallIcon, ClosedLockIcon, CloudDownloadIcon, CloudIcon, CloudLightningIcon, CloudRainIcon, CloudSnowIcon, CoffeeIcon, CollapsedIcon, ColorPickerIcon, CommentIcon, ConductorIcon, ConfigurationIcon, ContactsIcon, CopyIcon, CorrespondenceIcon, CouchetteIcon, CutleryIcon, DatabaseIcon, DateIcon, DeleteIcon, DenmarkIcon, DepositionIcon, DesktopIcon, DestinationIcon, DiffIcon, DownArrowIcon, DownloadIcon, DownwardIcon, DraggableIcon, EditIcon, EmailIcon, EnvironmentIcon, EuroIcon, ExpandIcon, ExtendIcon, ExternalIcon, FacebookIcon, FarteIcon, FerryIcon, FileIcon, FillIcon, FilterIcon, ForwardIcon, FullIcon, FunicularIcon, GOAIcon, GithubIcon, GoalIcon, GoogleIcon, GridViewIcon, GymIcon, HandToolIcon, HeartIcon, HelicopterIcon, HomeIcon, HorizontalDotsIcon, ImageIcon, InnlandstrafikkIcon, InstagramIcon, InternationalIcon, InterrailIcon, InvalidTicketIcon, ItalicIcon, KolumbusBysykkelIcon, KolumbusIcon, LaptopIcon, LeftArrowIcon, LikeIcon, LimeIcon, LinkIcon, LinkedinIcon, ListViewIcon, LoadingIcon, LockerIcon, LogOutIcon, LogoNegativeIcon, LogoPositiveIcon, LuggageIcon, ManySeatsAvailableIcon, MapIcon, MapPinIcon, MastercardIcon, MenuIcon, MergeProfilesIcon, MetroIcon, MinimizeIcon, MobileIcon, MobilityIcon, MoneyIcon, MountainIcon, MoveAboutIcon, NewIcon, NightIcon, NorwayIcon, NumberListIcon, OpenedLockIcon, OrganizationIcon, OsloBysykkelIcon, OstfoldIcon, OutlinedValidationCheckIcon, OutlinedValidationErrorIcon, OutlinedValidationExclamationIcon, OutlinedValidationInfoIcon, PackageIcon, ParkAndRideIcon, ParkIcon, ParkingGarageIcon, PhoneIcon, PlaneIcon, PlayIcon, PlaygroundIcon, PlayroomIcon, PositionIcon, PowerIcon, PremiumSeatIcon, PriceFromIcon, PricelistIcon, PrinterIcon, PrioritySeatPregnantIcon, PrioritySeatSeniorsIcon, PrivacyIcon, PurposeIcon, QRIcon, QuestionIcon, QuietIcon, QuitIcon, RSSIcon, RedoIcon, ReferenceIcon, RefreshIcon, ReportsIcon, ResetIcon, RightArrowIcon, RowHeightDefaultIcon, RowHeightMiddleIcon, RowHeightSmallIcon, RulesIcon, RunningIcon, RuterIcon, SJIcon, SamiIcon, SaveIcon, ScooterIcon, ScopeIcon, SearchIcon, SeatIcon, SeatsAvailableIcon, SelectIcon, SendIcon, SettingsIcon, ShareIcon, ShoppingCartIcon, SkiIcon, SkypeIcon, SkyssIcon, SleepIcon, SourceCodeIcon, StandardIcon, StandingAvailableIcon, StandingIcon, StarredIcon, StatsIcon, StrollerIcon, StrollingIcon, SubtractIcon, SubwayIcon, SuitcaseIcon, SunCloudIcon, SunCloudRainIcon, SunIcon, SwedenIcon, SwitchIcon, TVMIcon, TaxiIcon, TextColorIcon, ThermometerIcon, TierIcon, TimelineIcon, ToFromIcon, ToiletIcon, TrackIcon, TrainCarIcon, TrainIcon, TramIcon, TransferIcon, TrondheimBysykkelIcon, TurnableIcon, TwitterIcon, UKIcon, UmbrellaIcon, UnderlineIcon, UndoIcon, UniversityIcon, UnlinkIcon, UnsortedIcon, UnstarredIcon, UnviewIcon, UpArrowIcon, UploadIcon, UpwardIcon, UserIcon, UsersIcon, VKTIcon, ValidTicketIcon, ValidationCheckIcon, ValidationErrorIcon, ValidationExclamationIcon, ValidationInfoIcon, ValueIcon, VendingMachineIcon, VerticalDotsIcon, VerticalSwitchIcon, ViewIcon, VimeoIcon, VippsIcon, VippsLogoIcon, VisaIcon, VoiIcon, VyIcon, WaitingRoomIcon, WalkingIcon, WarningIcon, WaterTapIcon, WheelchairIcon, WifiIcon, WindIcon, YoutubeIcon, ZoneIcon, ZoomInIcon, ZoomOutIcon, ZvippIcon };
|
package/dist/index.js
CHANGED
|
@@ -2736,14 +2736,14 @@ function CarferryIcon(props) {
|
|
|
2736
2736
|
height: props.height || props.size || '1em',
|
|
2737
2737
|
className: (!props.color ? 'eds-icon eds-icon__carferry ' : 'eds-icon') + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
2738
2738
|
inline: undefined,
|
|
2739
|
-
color: props.color || '#
|
|
2739
|
+
color: props.color || '#0c6693'
|
|
2740
2740
|
}), /*#__PURE__*/React.createElement("path", {
|
|
2741
|
-
fill: "#
|
|
2741
|
+
fill: "#0C6693",
|
|
2742
2742
|
fillRule: "evenodd",
|
|
2743
2743
|
d: "M11.858 5.7l-.703-2.145c-.108-.33-.44-.555-.818-.555H5.665c-.377 0-.71.225-.817.554L4.143 5.7h-.001a.642.642 0 00-.642.642v2.252c0 .177.144.32.32.32h.323v.429a.707.707 0 001.414 0v-.429h4.886v.429a.707.707 0 001.414 0v-.429h.322a.32.32 0 00.321-.32V6.342a.642.642 0 00-.642-.642zM4.96 5.657l.54-1.76c.041-.132.17-.222.319-.222h4.364c.148 0 .278.09.318.221l.54 1.761c.007.022-.01.043-.035.043h-6.01c-.025 0-.042-.021-.036-.043zm-.302.686a.515.515 0 110 1.028.515.515 0 010-1.028zm6.686 1.028a.515.515 0 110-1.028.515.515 0 010 1.028z",
|
|
2744
2744
|
clipRule: "evenodd"
|
|
2745
2745
|
}), /*#__PURE__*/React.createElement("path", {
|
|
2746
|
-
fill: "#
|
|
2746
|
+
fill: "#0C6693",
|
|
2747
2747
|
d: "M2 12.289c.109-.015.231-.023.373-.023.576 0 .837.136 1.167.31.101.053.122.067.238.12.023.01.196.097.438.172.105.033.222.058.348.08.037.006.307.052.608.052.824 0 1.254-.226 1.633-.425.33-.173.591-.31 1.167-.31s.837.137 1.167.31c.38.2.81.425 1.633.425s1.253-.226 1.633-.425c.33-.173.59-.31 1.168-.31.145 0 .29.017.427.045v-1.013a2.99 2.99 0 00-.427-.031c-.823 0-1.253.225-1.633.424-.33.173-.59.31-1.168.31s-.838-.137-1.168-.31c-.379-.199-.809-.424-1.632-.424s-1.253.225-1.632.424c-.33.173-.59.31-1.168.31-.179 0-.326-.012-.454-.04-.094-.022-.192-.04-.322-.09a3.304 3.304 0 01-.392-.18c-.378-.199-.808-.424-1.631-.424a3.94 3.94 0 00-.373.017v1.006z"
|
|
2748
2748
|
}));
|
|
2749
2749
|
}
|
|
@@ -2774,10 +2774,10 @@ function FerryIcon(props) {
|
|
|
2774
2774
|
inline: undefined,
|
|
2775
2775
|
color: props.color || '#0c6693'
|
|
2776
2776
|
}), /*#__PURE__*/React.createElement("path", {
|
|
2777
|
-
fill: "#
|
|
2777
|
+
fill: "#0C6693",
|
|
2778
2778
|
d: "M8.737 13c-.824 0-1.253-.226-1.632-.425-.33-.173-.591-.31-1.168-.31s-.838.137-1.168.31c-.38.2-.81.425-1.633.425-1.052 0-1.969-.588-2.007-.613L1 12.316l.447-.894.196.108c.037.023.743.47 1.493.47.577 0 .838-.137 1.168-.31.38-.199.81-.424 1.633-.424s1.254.225 1.633.424c.33.173.59.31 1.167.31s.837-.137 1.167-.31c.379-.199.81-.424 1.632-.424.643 0 1.046.137 1.372.292l-.479.88c-.23-.103-.48-.172-.893-.172-.577 0-.837.136-1.168.31-.378.198-.808.424-1.631.424z"
|
|
2779
2779
|
}), /*#__PURE__*/React.createElement("path", {
|
|
2780
|
-
fill: "#
|
|
2780
|
+
fill: "#0C6693",
|
|
2781
2781
|
d: "M14.75 7.456h-1.432a.053.053 0 01-.05-.036l-.907-2.746a.348.348 0 00-.33-.242h-.554a.05.05 0 01-.047-.034l-.34-.825c-.073-.186-.214-.298-.417-.198l-1.213.706a.45.45 0 00-.244.402v.463c0 .04-.026.054-.047.054H5.78a.354.354 0 00-.318.198L4.362 7.422a.05.05 0 01-.047.034h-.667a.35.35 0 00-.314.195l-1.496 3.047c.313.16.658.302 1.275.302 1.4 0 1.4-.733 2.8-.733s1.4.733 2.8.733 1.4-.733 2.8-.733c.9 0 1.45.306 1.845.521l1.611-2.963a.25.25 0 00-.22-.37zm-7.353-.2a.2.2 0 01-.2.2H5.272c-.125 0-.236-.098-.133-.279l.381-.78a.254.254 0 01.228-.141h1.45c.11 0 .2.09.2.2v.8zm2.204-.004a.204.204 0 01-.204.204H8.005a.204.204 0 01-.204-.204V6.46c0-.113.091-.204.204-.204h1.392c.113 0 .204.091.204.204v.792zm2.535.204l-1.933.001A.202.202 0 0110 7.256v-.799c0-.11.09-.201.202-.201h1.653c.116 0 .217.079.245.191l.193.78c.053.165-.049.229-.158.229z"
|
|
2782
2782
|
}));
|
|
2783
2783
|
}
|
|
@@ -2824,6 +2824,41 @@ function HelicopterIcon(props) {
|
|
|
2824
2824
|
}));
|
|
2825
2825
|
}
|
|
2826
2826
|
|
|
2827
|
+
function MetroIcon(props) {
|
|
2828
|
+
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
2829
|
+
viewBox: "0 0 16 16",
|
|
2830
|
+
width: props.width || props.size || '1em',
|
|
2831
|
+
height: props.height || props.size || '1em',
|
|
2832
|
+
className: (!props.color ? 'eds-icon eds-icon__metro ' : 'eds-icon') + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
2833
|
+
inline: undefined,
|
|
2834
|
+
color: props.color || '#bf5826'
|
|
2835
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
2836
|
+
fill: "#BF5826",
|
|
2837
|
+
fillRule: "evenodd",
|
|
2838
|
+
d: "M5.004 5v1.166h2.412V12h1.168V6.166h2.415V5z",
|
|
2839
|
+
clipRule: "evenodd"
|
|
2840
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
2841
|
+
fill: "#BF5826",
|
|
2842
|
+
d: "M8 2c3.308 0 6 2.692 6 6s-2.692 6-6 6c-3.309 0-6-2.692-6-6s2.691-6 6-6m0-1C4.14 1 1 4.14 1 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7z"
|
|
2843
|
+
}));
|
|
2844
|
+
}
|
|
2845
|
+
|
|
2846
|
+
function MobilityIcon(props) {
|
|
2847
|
+
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
2848
|
+
viewBox: "0 0 16 16",
|
|
2849
|
+
width: props.width || props.size || '1em',
|
|
2850
|
+
height: props.height || props.size || '1em',
|
|
2851
|
+
className: (!props.color ? 'eds-icon eds-icon__mobility ' : 'eds-icon') + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
2852
|
+
inline: undefined,
|
|
2853
|
+
color: props.color || '#388f76'
|
|
2854
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
2855
|
+
fill: "currentColor",
|
|
2856
|
+
fillRule: "evenodd",
|
|
2857
|
+
d: "M12.5 11c-.019 0-.036.005-.055.005l-2.224-7.68A.45.45 0 009.79 3H7.5v.8h1.95a.1.1 0 01.097.072l1.53 5.281a.1.1 0 01-.02.093l-2.398 2.819a.1.1 0 01-.076.035H4.94A1.496 1.496 0 002 12.5a1.496 1.496 0 002.94.4H8.79a.45.45 0 00.343-.159l2.224-2.615.324 1.12c-.41.267-.682.728-.682 1.254a1.5 1.5 0 101.5-1.5zm-9 2.2a.7.7 0 11.002-1.402A.7.7 0 013.5 13.2zm9 0a.7.7 0 11.002-1.402.7.7 0 01-.002 1.402z",
|
|
2858
|
+
clipRule: "evenodd"
|
|
2859
|
+
}));
|
|
2860
|
+
}
|
|
2861
|
+
|
|
2827
2862
|
function PlaneIcon(props) {
|
|
2828
2863
|
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
2829
2864
|
viewBox: "0 0 16 16",
|
|
@@ -2882,7 +2917,9 @@ function RunningIcon(props) {
|
|
|
2882
2917
|
})));
|
|
2883
2918
|
}
|
|
2884
2919
|
|
|
2920
|
+
/** @deprecated ScooterIcon is deprecated; use MobilityIcon instead */
|
|
2885
2921
|
function ScooterIcon(props) {
|
|
2922
|
+
console.warn('Design system warning: ScooterIcon is deprecated; use MobilityIcon instead');
|
|
2886
2923
|
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
2887
2924
|
viewBox: "0 0 16 16",
|
|
2888
2925
|
width: props.width || props.size || '1em',
|
|
@@ -2954,7 +2991,9 @@ function StrollingIcon(props) {
|
|
|
2954
2991
|
})));
|
|
2955
2992
|
}
|
|
2956
2993
|
|
|
2994
|
+
/** @deprecated SubwayIcon is deprecated; use MetroIcon instead */
|
|
2957
2995
|
function SubwayIcon(props) {
|
|
2996
|
+
console.warn('Design system warning: SubwayIcon is deprecated; use MetroIcon instead');
|
|
2958
2997
|
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
2959
2998
|
viewBox: "0 0 16 16",
|
|
2960
2999
|
width: props.width || props.size || '1em',
|
|
@@ -2963,12 +3002,12 @@ function SubwayIcon(props) {
|
|
|
2963
3002
|
inline: undefined,
|
|
2964
3003
|
color: props.color || 'currentColor'
|
|
2965
3004
|
}), /*#__PURE__*/React.createElement("path", {
|
|
2966
|
-
fill: "#
|
|
3005
|
+
fill: "#BF5826",
|
|
2967
3006
|
fillRule: "evenodd",
|
|
2968
3007
|
d: "M5.004 5v1.166h2.412V12h1.168V6.166h2.415V5z",
|
|
2969
3008
|
clipRule: "evenodd"
|
|
2970
3009
|
}), /*#__PURE__*/React.createElement("path", {
|
|
2971
|
-
fill: "#
|
|
3010
|
+
fill: "#BF5826",
|
|
2972
3011
|
d: "M8 2c3.308 0 6 2.692 6 6s-2.692 6-6 6c-3.309 0-6-2.692-6-6s2.691-6 6-6m0-1C4.14 1 1 4.14 1 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7z"
|
|
2973
3012
|
}));
|
|
2974
3013
|
}
|
|
@@ -4171,6 +4210,23 @@ function FillIcon(props) {
|
|
|
4171
4210
|
}));
|
|
4172
4211
|
}
|
|
4173
4212
|
|
|
4213
|
+
function FilterIcon(props) {
|
|
4214
|
+
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
4215
|
+
fill: "none",
|
|
4216
|
+
viewBox: "0 0 16 16",
|
|
4217
|
+
width: props.width || props.size || '1em',
|
|
4218
|
+
height: props.height || props.size || '1em',
|
|
4219
|
+
className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
4220
|
+
inline: undefined,
|
|
4221
|
+
color: props.color || 'currentColor'
|
|
4222
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4223
|
+
fill: "currentColor",
|
|
4224
|
+
fillRule: "evenodd",
|
|
4225
|
+
d: "M1.333 2c0-.368.299-.667.667-.667h12c.368 0 .667.299.667.667v2c0 .177-.07.346-.196.471L10 8.943v3.724a.667.667 0 01-.369.596l-2.666 1.333A.667.667 0 016 14V8.943L1.529 4.47A.667.667 0 011.333 4V2zm1.334.667v1.057l4.471 4.471a.667.667 0 01.195.472v4.254l1.334-.666V8.667c0-.177.07-.347.195-.472l4.471-4.471V2.667H2.667z",
|
|
4226
|
+
clipRule: "evenodd"
|
|
4227
|
+
}));
|
|
4228
|
+
}
|
|
4229
|
+
|
|
4174
4230
|
function GridViewIcon(props) {
|
|
4175
4231
|
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
4176
4232
|
viewBox: "0 0 16 16",
|
|
@@ -5314,6 +5370,7 @@ exports.FarteIcon = FarteIcon;
|
|
|
5314
5370
|
exports.FerryIcon = FerryIcon;
|
|
5315
5371
|
exports.FileIcon = FileIcon;
|
|
5316
5372
|
exports.FillIcon = FillIcon;
|
|
5373
|
+
exports.FilterIcon = FilterIcon;
|
|
5317
5374
|
exports.ForwardIcon = ForwardIcon;
|
|
5318
5375
|
exports.FullIcon = FullIcon;
|
|
5319
5376
|
exports.FunicularIcon = FunicularIcon;
|
|
@@ -5356,8 +5413,10 @@ exports.MapPinIcon = MapPinIcon;
|
|
|
5356
5413
|
exports.MastercardIcon = MastercardIcon;
|
|
5357
5414
|
exports.MenuIcon = MenuIcon;
|
|
5358
5415
|
exports.MergeProfilesIcon = MergeProfilesIcon;
|
|
5416
|
+
exports.MetroIcon = MetroIcon;
|
|
5359
5417
|
exports.MinimizeIcon = MinimizeIcon;
|
|
5360
5418
|
exports.MobileIcon = MobileIcon;
|
|
5419
|
+
exports.MobilityIcon = MobilityIcon;
|
|
5361
5420
|
exports.MoneyIcon = MoneyIcon;
|
|
5362
5421
|
exports.MountainIcon = MountainIcon;
|
|
5363
5422
|
exports.MoveAboutIcon = MoveAboutIcon;
|
package/dist/styles.css
CHANGED
|
@@ -1,57 +1,52 @@
|
|
|
1
1
|
/* DO NOT CHANGE!*/
|
|
2
2
|
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
3
3
|
:root {
|
|
4
|
-
--eds-icons: 1;
|
|
4
|
+
--eds-icons: 1;
|
|
5
|
+
}
|
|
5
6
|
|
|
6
7
|
.eds-icon.eds-icon--inline,
|
|
7
8
|
p .eds-icon {
|
|
8
9
|
position: relative;
|
|
9
|
-
top: 0.2em;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
.eds-icon path {
|
|
13
|
-
fill: currentColor;
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
.eds-contrast .eds-icon__bicycle path {
|
|
17
|
-
fill: #ffffff;
|
|
18
|
-
|
|
19
|
-
.eds-contrast .eds-icon__bus g,
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
.eds-contrast .eds-
|
|
29
|
-
fill: #6fdfff;
|
|
30
|
-
|
|
31
|
-
.eds-contrast .eds-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
.eds-contrast .eds-
|
|
41
|
-
fill: #
|
|
42
|
-
|
|
43
|
-
.eds-contrast .eds-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
.eds-contrast .eds-icon__train path {
|
|
53
|
-
fill: #42a5f5; }
|
|
54
|
-
|
|
55
|
-
.eds-contrast .eds-icon__tram g,
|
|
56
|
-
.eds-contrast .eds-icon__tram path {
|
|
57
|
-
fill: #b482fb; }
|
|
10
|
+
top: 0.2em;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.eds-icon :where(g, path) {
|
|
14
|
+
fill: currentColor;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.eds-contrast .eds-icon__bicycle :where(g, path) {
|
|
18
|
+
fill: #ffffff;
|
|
19
|
+
}
|
|
20
|
+
.eds-contrast .eds-icon__bus :where(g, path) {
|
|
21
|
+
fill: #ff6392;
|
|
22
|
+
}
|
|
23
|
+
.eds-contrast .eds-icon__cableway :where(g, path) {
|
|
24
|
+
fill: #a476e5;
|
|
25
|
+
}
|
|
26
|
+
.eds-contrast .eds-icon__carferry :where(g, path) {
|
|
27
|
+
fill: #6fdfff;
|
|
28
|
+
}
|
|
29
|
+
.eds-contrast .eds-icon__ferry :where(g, path) {
|
|
30
|
+
fill: #6fdfff;
|
|
31
|
+
}
|
|
32
|
+
.eds-contrast .eds-icon__funicular :where(g, path) {
|
|
33
|
+
fill: #a476e5;
|
|
34
|
+
}
|
|
35
|
+
.eds-contrast .eds-icon__helicopter :where(g, path) {
|
|
36
|
+
fill: #e258c3;
|
|
37
|
+
}
|
|
38
|
+
.eds-contrast .eds-icon__metro :where(g, path) {
|
|
39
|
+
fill: #f08901;
|
|
40
|
+
}
|
|
41
|
+
.eds-contrast .eds-icon__plane :where(g, path) {
|
|
42
|
+
fill: #fbafea;
|
|
43
|
+
}
|
|
44
|
+
.eds-contrast .eds-icon__taxi :where(g, path) {
|
|
45
|
+
fill: #ffffff;
|
|
46
|
+
}
|
|
47
|
+
.eds-contrast .eds-icon__train :where(g, path) {
|
|
48
|
+
fill: #42a5f5;
|
|
49
|
+
}
|
|
50
|
+
.eds-contrast .eds-icon__tram :where(g, path) {
|
|
51
|
+
fill: #b482fb;
|
|
52
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@entur/icons",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.6.0",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -26,7 +26,8 @@
|
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"react": ">=16.8.0",
|
|
29
|
-
"react-dom": ">=16.8.0"
|
|
29
|
+
"react-dom": ">=16.8.0",
|
|
30
|
+
"sass": "^1.58.0"
|
|
30
31
|
},
|
|
31
32
|
"devDependencies": {
|
|
32
33
|
"@babel/core": "^7.7.7",
|
|
@@ -45,8 +46,7 @@
|
|
|
45
46
|
"rollup": "2.6.1"
|
|
46
47
|
},
|
|
47
48
|
"dependencies": {
|
|
48
|
-
"@entur/tokens": "^3.
|
|
49
|
-
"@entur/utils": "^0.5.1"
|
|
49
|
+
"@entur/tokens": "^3.6.0"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "be56a9cea51aa1cf026d38174750f2a52e67a463"
|
|
52
52
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,564 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
## [5.4.3](https://bitbucket.org/enturas/design-system/compare/@entur/icons@5.4.2...@entur/icons@5.4.3) (2023-02-02)
|
|
7
|
-
|
|
8
|
-
**Note:** Version bump only for package @entur/icons
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
## [5.4.1](https://bitbucket.org/enturas/design-system/compare/@entur/icons@5.4.0...@entur/icons@5.4.1) (2023-01-19)
|
|
15
|
-
|
|
16
|
-
**Note:** Version bump only for package @entur/icons
|
|
17
|
-
|
|
18
|
-
# [5.4.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@5.2.1...@entur/icons@5.4.0) (2022-12-09)
|
|
19
|
-
|
|
20
|
-
### Features
|
|
21
|
-
|
|
22
|
-
- **icons:** add AKT icon ([302741a](https://bitbucket.org/enturas/design-system/commits/302741a3570cb075debe6305d49fc28057878f6e))
|
|
23
|
-
|
|
24
|
-
# [5.3.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@5.2.2...@entur/icons@5.3.0) (2022-11-24)
|
|
25
|
-
|
|
26
|
-
### Features
|
|
27
|
-
|
|
28
|
-
- **icons:** add AKT icon ([8f5cd6f](https://bitbucket.org/enturas/design-system/commits/8f5cd6f40546c83f06f5ec93921b93bc26deadce))
|
|
29
|
-
|
|
30
|
-
## [5.2.2](https://bitbucket.org/enturas/design-system/compare/@entur/icons@5.2.1...@entur/icons@5.2.2) (2022-10-31)
|
|
31
|
-
|
|
32
|
-
**Note:** Version bump only for package @entur/icons
|
|
33
|
-
|
|
34
|
-
## [5.2.1](https://bitbucket.org/enturas/design-system/compare/@entur/icons@5.2.0...@entur/icons@5.2.1) (2022-10-31)
|
|
35
|
-
|
|
36
|
-
**Note:** Version bump only for package @entur/icons
|
|
37
|
-
|
|
38
|
-
# [5.2.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@5.1.1...@entur/icons@5.2.0) (2022-10-31)
|
|
39
|
-
|
|
40
|
-
### Bug Fixes
|
|
41
|
-
|
|
42
|
-
- **unsorted icon:** fix visual bug in unsorted icon ([26184f0](https://bitbucket.org/enturas/design-system/commits/26184f06d119e8ed292ffcda663ec14f7b190e68))
|
|
43
|
-
- add deprecation comments to @entur/icons type declarations ([e1e1b14](https://bitbucket.org/enturas/design-system/commits/e1e1b14e1efed95c8ab4a5246fed84b8b2d34835))
|
|
44
|
-
|
|
45
|
-
### Features
|
|
46
|
-
|
|
47
|
-
- **icons:** add Cabin, Gym, Mountain, Playground and University icon ([d73da01](https://bitbucket.org/enturas/design-system/commits/d73da01c158edcd6015f93e343146cffbd8ff8f4))
|
|
48
|
-
|
|
49
|
-
## [5.1.1](https://bitbucket.org/enturas/design-system/compare/@entur/icons@5.1.0...@entur/icons@5.1.1) (2022-10-20)
|
|
50
|
-
|
|
51
|
-
### Bug Fixes
|
|
52
|
-
|
|
53
|
-
- **unsorted icon:** fix visual bug in unsortedIcon ([250a519](https://bitbucket.org/enturas/design-system/commits/250a519583ebf6def4f7f12b3390f05370a9de64))
|
|
54
|
-
|
|
55
|
-
# [5.1.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@5.0.0...@entur/icons@5.1.0) (2022-10-20)
|
|
56
|
-
|
|
57
|
-
### Bug Fixes
|
|
58
|
-
|
|
59
|
-
- **unsorted icon:** fix error in unsorted icon svg file ([2dbe52b](https://bitbucket.org/enturas/design-system/commits/2dbe52b0b7b039c8bd0b2f133bf2ef84bd3e16e6))
|
|
60
|
-
|
|
61
|
-
### Features
|
|
62
|
-
|
|
63
|
-
- **icons:** add sami flag icon ([ff84edf](https://bitbucket.org/enturas/design-system/commits/ff84edf6626deb77b608d6ab99280f6cbecb8f47))
|
|
64
|
-
|
|
65
|
-
# [5.0.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@4.3.3...@entur/icons@5.0.0) (2022-10-12)
|
|
66
|
-
|
|
67
|
-
### Bug Fixes
|
|
68
|
-
|
|
69
|
-
- **ReportsIcon:** add deprecation warning for ReportsIcon. Icon is replaced with CopyIcon ([4f996fc](https://bitbucket.org/enturas/design-system/commits/4f996fc455613ebd98abdb44b7f2562d3a6e9228))
|
|
70
|
-
- **ReportsIcon, CopyIcon:** change copy icon to look like reportsicon and rename existing copy icon ([4adbd49](https://bitbucket.org/enturas/design-system/commits/4adbd4917caabbfc6c4fdb1538470b52b03c67c1))
|
|
71
|
-
- **sortable table:** add icon to indicate that a column is sortable ([5b3c164](https://bitbucket.org/enturas/design-system/commits/5b3c1645ba70b85cd4fc5bc2c2ca8c429430182a))
|
|
72
|
-
|
|
73
|
-
### BREAKING CHANGES
|
|
74
|
-
|
|
75
|
-
- **ReportsIcon, CopyIcon:** If you used CopyIcon then the icon will change to look like ReportsIcon
|
|
76
|
-
- **ReportsIcon:** ReportsIcon is now deprecated in favor of the new name CopyIcon
|
|
77
|
-
|
|
78
|
-
## [4.3.3](https://bitbucket.org/enturas/design-system/compare/@entur/icons@4.3.2...@entur/icons@4.3.3) (2022-08-31)
|
|
79
|
-
|
|
80
|
-
**Note:** Version bump only for package @entur/icons
|
|
81
|
-
|
|
82
|
-
## [4.3.2](https://bitbucket.org/enturas/design-system/compare/@entur/icons@4.3.1...@entur/icons@4.3.2) (2022-08-24)
|
|
83
|
-
|
|
84
|
-
**Note:** Version bump only for package @entur/icons
|
|
85
|
-
|
|
86
|
-
## [4.3.1](https://bitbucket.org/enturas/design-system/compare/@entur/icons@4.3.0...@entur/icons@4.3.1) (2022-08-09)
|
|
87
|
-
|
|
88
|
-
**Note:** Version bump only for package @entur/icons
|
|
89
|
-
|
|
90
|
-
# [4.3.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@4.2.0...@entur/icons@4.3.0) (2022-07-05)
|
|
91
|
-
|
|
92
|
-
### Bug Fixes
|
|
93
|
-
|
|
94
|
-
- **validation exclamation icon:** fix icon colours for validation exclamation icon in react native ([4e64eb8](https://bitbucket.org/enturas/design-system/commits/4e64eb86fd1b98731b47ac040ce578e8ee0aa956))
|
|
95
|
-
|
|
96
|
-
### Features
|
|
97
|
-
|
|
98
|
-
- **icons:** add seat capacity icons to facility group ([25265da](https://bitbucket.org/enturas/design-system/commits/25265da52f929a9e830419b98f28f2fd22617612))
|
|
99
|
-
|
|
100
|
-
# [4.2.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@4.1.2...@entur/icons@4.2.0) (2022-06-24)
|
|
101
|
-
|
|
102
|
-
### Features
|
|
103
|
-
|
|
104
|
-
- **icons:** update Brakar logo icon and add Brakar without text icon ([1ccd821](https://bitbucket.org/enturas/design-system/commits/1ccd821d5ee9684573ee25e008f95e1d14ec0bce))
|
|
105
|
-
|
|
106
|
-
## [4.1.2](https://bitbucket.org/enturas/design-system/compare/@entur/icons@4.1.1...@entur/icons@4.1.2) (2022-05-04)
|
|
107
|
-
|
|
108
|
-
### Bug Fixes
|
|
109
|
-
|
|
110
|
-
- **validation exclamation icon:** fix incorrect exclamation mark color for non-contrast validation ([22deff9](https://bitbucket.org/enturas/design-system/commits/22deff9cac4f867a26a14ec51197f1c3be13d403))
|
|
111
|
-
|
|
112
|
-
## [4.1.1](https://bitbucket.org/enturas/design-system/compare/@entur/icons@4.1.0...@entur/icons@4.1.1) (2022-04-27)
|
|
113
|
-
|
|
114
|
-
**Note:** Version bump only for package @entur/icons
|
|
115
|
-
|
|
116
|
-
# [4.1.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@4.0.0...@entur/icons@4.1.0) (2022-04-20)
|
|
117
|
-
|
|
118
|
-
### Features
|
|
119
|
-
|
|
120
|
-
- **icons:** add conductor and calculator icon ([2efc907](https://bitbucket.org/enturas/design-system/commits/2efc9074f769575a31a94fbc4f2b9eb1f2e29d47))
|
|
121
|
-
|
|
122
|
-
# [4.0.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@3.5.0...@entur/icons@4.0.0) (2022-04-19)
|
|
123
|
-
|
|
124
|
-
### Bug Fixes
|
|
125
|
-
|
|
126
|
-
- **cableway icon:** fix color of cableway icon, and fix color prop in native package ([73cc942](https://bitbucket.org/enturas/design-system/commits/73cc942cf85bce77f8815e208853d64983e96d4d))
|
|
127
|
-
- **cableway icon:** update cableway icon to more correct size ([e0007e4](https://bitbucket.org/enturas/design-system/commits/e0007e471e2382be36390b0aa8caa39babf815fd))
|
|
128
|
-
|
|
129
|
-
### BREAKING CHANGES
|
|
130
|
-
|
|
131
|
-
- **cableway icon:** Icon is visualy larger, but not physically, watch out for unintended visual effect caused by this
|
|
132
|
-
|
|
133
|
-
# [3.5.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@3.4.1...@entur/icons@3.5.0) (2022-03-01)
|
|
134
|
-
|
|
135
|
-
### Features
|
|
136
|
-
|
|
137
|
-
- **icons:** add new CityBike icon ([ec8288e](https://bitbucket.org/enturas/design-system/commits/ec8288ed5d9dc122361e95362a6dab5f18acad7b))
|
|
138
|
-
|
|
139
|
-
## [3.4.1](https://bitbucket.org/enturas/design-system/compare/@entur/icons@3.4.0...@entur/icons@3.4.1) (2022-02-09)
|
|
140
|
-
|
|
141
|
-
**Note:** Version bump only for package @entur/icons
|
|
142
|
-
|
|
143
|
-
# [3.4.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@3.3.0...@entur/icons@3.4.0) (2021-11-17)
|
|
144
|
-
|
|
145
|
-
### Features
|
|
146
|
-
|
|
147
|
-
- add correspondence icon ([ee07d31](https://bitbucket.org/enturas/design-system/commits/ee07d31857ccfe0ce57be30556a2a8377bc8eb53))
|
|
148
|
-
- add ZoneIcon ([e52f648](https://bitbucket.org/enturas/design-system/commits/e52f64831b3b3a311cb85b12bce5d01b794a75b5))
|
|
149
|
-
|
|
150
|
-
# [3.3.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@3.2.0...@entur/icons@3.3.0) (2021-09-23)
|
|
151
|
-
|
|
152
|
-
### Bug Fixes
|
|
153
|
-
|
|
154
|
-
- **switch:** fix switchicon color bug ([e41f8a9](https://bitbucket.org/enturas/design-system/commits/e41f8a9721a648c2a49e674cbf8b65b1329e7558))
|
|
155
|
-
|
|
156
|
-
### Features
|
|
157
|
-
|
|
158
|
-
- add couchette icon ([7c6c6a3](https://bitbucket.org/enturas/design-system/commits/7c6c6a3ba5712b9f7546c9d20cc9451e1a0372fc))
|
|
159
|
-
- add WaterTapIcon ([80d9439](https://bitbucket.org/enturas/design-system/commits/80d9439b0f6f759f42f2c99a2e0fc8812ba81cd7))
|
|
160
|
-
- add ZvippIcon (mobility partner) ([9e9374c](https://bitbucket.org/enturas/design-system/commits/9e9374c22b806ab549430ff3ee9b123cb6a4210c))
|
|
161
|
-
|
|
162
|
-
# [3.2.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@3.1.0...@entur/icons@3.2.0) (2021-09-13)
|
|
163
|
-
|
|
164
|
-
### Features
|
|
165
|
-
|
|
166
|
-
- add CloseSmallIcon ([c606324](https://bitbucket.org/enturas/design-system/commits/c606324e3800fa99605c6ff818bd4120adf3e89e))
|
|
167
|
-
- add outlined validation icons ([403622c](https://bitbucket.org/enturas/design-system/commits/403622c9750e955b8bb8140e75266df6b9c8e973))
|
|
168
|
-
|
|
169
|
-
# [3.1.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@3.0.0...@entur/icons@3.1.0) (2021-09-07)
|
|
170
|
-
|
|
171
|
-
### Features
|
|
172
|
-
|
|
173
|
-
- **weather:** add weather icons ([1e7c585](https://bitbucket.org/enturas/design-system/commits/1e7c5856a4387578a046b8959662d96a40a05566))
|
|
174
|
-
- add MoveAbout icon ([e336ddb](https://bitbucket.org/enturas/design-system/commits/e336ddb443a402e8de4f41ec8d777b2ff12f4d0e))
|
|
175
|
-
|
|
176
|
-
# [3.0.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@2.0.2...@entur/icons@3.0.0) (2021-07-16)
|
|
177
|
-
|
|
178
|
-
### Bug Fixes
|
|
179
|
-
|
|
180
|
-
- **calendar icon:** rename from calender to calendar icon ([0177fb9](https://bitbucket.org/enturas/design-system/commits/0177fb9b89c4a1bae4f62bb42e73081ae87f78db))
|
|
181
|
-
|
|
182
|
-
### BREAKING CHANGES
|
|
183
|
-
|
|
184
|
-
- **calendar icon:** change all CalenderIcon to CalendarIcon
|
|
185
|
-
|
|
186
|
-
## [2.0.2](https://bitbucket.org/enturas/design-system/compare/@entur/icons@2.0.1...@entur/icons@2.0.2) (2021-06-25)
|
|
187
|
-
|
|
188
|
-
### Bug Fixes
|
|
189
|
-
|
|
190
|
-
- **switch:** make icon symmetric ([057053c](https://bitbucket.org/enturas/design-system/commits/057053cbb816278e77882a589f6785428baf3f17))
|
|
191
|
-
|
|
192
|
-
## [2.0.1](https://bitbucket.org/enturas/design-system/compare/@entur/icons@2.0.0...@entur/icons@2.0.1) (2021-05-05)
|
|
193
|
-
|
|
194
|
-
### Bug Fixes
|
|
195
|
-
|
|
196
|
-
- **addcard:** update add card icon look ([4282657](https://bitbucket.org/enturas/design-system/commits/4282657e7a2343eb096cc54c52c887be38e2580d))
|
|
197
|
-
- fix corrent colors for mobility partners ([c24c7ec](https://bitbucket.org/enturas/design-system/commits/c24c7ec4ab10ef7dfdd434e508a93a07501b5cb9))
|
|
198
|
-
- update card icon ([6a8156b](https://bitbucket.org/enturas/design-system/commits/6a8156bc2a8572621c1a6bd0bad6bec4742804ca))
|
|
199
|
-
|
|
200
|
-
# [2.0.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.20.0...@entur/icons@2.0.0) (2021-04-23)
|
|
201
|
-
|
|
202
|
-
### Bug Fixes
|
|
203
|
-
|
|
204
|
-
- change name for unvalid ticket icon ([8f5148f](https://bitbucket.org/enturas/design-system/commits/8f5148f06974236dc44cf7016990bd60762c747b))
|
|
205
|
-
- use correct colors on mobility partner icons ([90b3408](https://bitbucket.org/enturas/design-system/commits/90b340885fce4cd803042965cbed162ce0cc53df))
|
|
206
|
-
|
|
207
|
-
### BREAKING CHANGES
|
|
208
|
-
|
|
209
|
-
- UnvalidTicketIcon -> InvalidTicketIcon
|
|
210
|
-
|
|
211
|
-
# [1.20.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.19.0...@entur/icons@1.20.0) (2021-04-09)
|
|
212
|
-
|
|
213
|
-
### Features
|
|
214
|
-
|
|
215
|
-
- add mobility partner icons ([9898249](https://bitbucket.org/enturas/design-system/commits/98982497ed78bdb61fd08d83fbe80008df443d92))
|
|
216
|
-
|
|
217
|
-
# [1.19.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.18.0...@entur/icons@1.19.0) (2021-02-17)
|
|
218
|
-
|
|
219
|
-
### Features
|
|
220
|
-
|
|
221
|
-
- add accessibility icon ([3c71aac](https://bitbucket.org/enturas/design-system/commits/3c71aac995d0912bc6ab0c85875ce89b0701924f))
|
|
222
|
-
|
|
223
|
-
# [1.18.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.17.0...@entur/icons@1.18.0) (2021-01-29)
|
|
224
|
-
|
|
225
|
-
### Features
|
|
226
|
-
|
|
227
|
-
- add bookmark icon ([97f3fc5](https://bitbucket.org/enturas/design-system/commits/97f3fc51e1d262b75884d067fe1bc8ce6703369d))
|
|
228
|
-
|
|
229
|
-
# [1.17.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.16.0...@entur/icons@1.17.0) (2021-01-20)
|
|
230
|
-
|
|
231
|
-
### Features
|
|
232
|
-
|
|
233
|
-
- add cloud download icon ([7707066](https://bitbucket.org/enturas/design-system/commits/770706614fb07e4727d3ef29714ac64f0731e321))
|
|
234
|
-
|
|
235
|
-
# [1.16.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.15.2...@entur/icons@1.16.0) (2021-01-13)
|
|
236
|
-
|
|
237
|
-
### Bug Fixes
|
|
238
|
-
|
|
239
|
-
- update delete icon look ([b939ffb](https://bitbucket.org/enturas/design-system/commits/b939ffb20cae652dd8ae3c92ceb9b12500df5c76))
|
|
240
|
-
|
|
241
|
-
### Features
|
|
242
|
-
|
|
243
|
-
- add admin and privacy icon ([b6c891d](https://bitbucket.org/enturas/design-system/commits/b6c891d7246f447fffaf351e1c6e376ab6f8d8d7))
|
|
244
|
-
|
|
245
|
-
## [1.15.2](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.15.1...@entur/icons@1.15.2) (2020-12-04)
|
|
246
|
-
|
|
247
|
-
### Bug Fixes
|
|
248
|
-
|
|
249
|
-
- remove unused typings ([156a31d](https://bitbucket.org/enturas/design-system/commits/156a31d8015de3c88291f6620bafeb3d200f16f1))
|
|
250
|
-
|
|
251
|
-
## [1.15.1](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.15.0...@entur/icons@1.15.1) (2020-11-05)
|
|
252
|
-
|
|
253
|
-
### Bug Fixes
|
|
254
|
-
|
|
255
|
-
- **typings:** add number as possibility for size, width and height props ([a22081f](https://bitbucket.org/enturas/design-system/commits/a22081fdc6360be9d98649586d4e94573dc8c235))
|
|
256
|
-
|
|
257
|
-
# [1.15.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.14.0...@entur/icons@1.15.0) (2020-10-23)
|
|
258
|
-
|
|
259
|
-
### Features
|
|
260
|
-
|
|
261
|
-
- **icon:** add skyss icon ([42bbd50](https://bitbucket.org/enturas/design-system/commits/42bbd5027059579f0ba3b082a92dc0dfabf979f7))
|
|
262
|
-
|
|
263
|
-
# [1.14.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.13.1...@entur/icons@1.14.0) (2020-10-16)
|
|
264
|
-
|
|
265
|
-
### Bug Fixes
|
|
266
|
-
|
|
267
|
-
- **types:** add prop spread fix in typings ([58d08f4](https://bitbucket.org/enturas/design-system/commits/58d08f40897ebeac3876feb756d356ce69344dd8))
|
|
268
|
-
- fix colors for payment icons ([63a90db](https://bitbucket.org/enturas/design-system/commits/63a90db49d347e434c4a46faf08e6516edaf6569))
|
|
269
|
-
|
|
270
|
-
### Features
|
|
271
|
-
|
|
272
|
-
- add vippslogo icon ([a703253](https://bitbucket.org/enturas/design-system/commits/a703253ba99e812be2d838bf7d9c063de3b39a12))
|
|
273
|
-
- **icons:** add typings for all icons ([e55d644](https://bitbucket.org/enturas/design-system/commits/e55d644c1f961e8655b2817fd1347b5289c0b652))
|
|
274
|
-
- add animalfree icon ([a3fabde](https://bitbucket.org/enturas/design-system/commits/a3fabdeacd6fe2d91802a2d52ee429a8c08cb1b0))
|
|
275
|
-
- add mastercard icon ([3404b64](https://bitbucket.org/enturas/design-system/commits/3404b64163783bb081ac61e91307ae1c4a03095a))
|
|
276
|
-
- add vipps icon ([fc068db](https://bitbucket.org/enturas/design-system/commits/fc068dbda207722e323229975227f8d6340e68d8))
|
|
277
|
-
- add visa icon ([b2689d7](https://bitbucket.org/enturas/design-system/commits/b2689d70ff9fb1f086dcc0d7ccf7829dbf1c133b))
|
|
278
|
-
|
|
279
|
-
## [1.13.1](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.13.0...@entur/icons@1.13.1) (2020-10-09)
|
|
280
|
-
|
|
281
|
-
**Note:** Version bump only for package @entur/icons
|
|
282
|
-
|
|
283
|
-
# [1.13.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.12.2...@entur/icons@1.13.0) (2020-09-25)
|
|
284
|
-
|
|
285
|
-
### Features
|
|
286
|
-
|
|
287
|
-
- **@entur/icons:** add GitHub icon ([fa47eee](https://bitbucket.org/enturas/design-system/commits/fa47eeef111f0c3a1a4d0a71d58e8f834d84f198))
|
|
288
|
-
|
|
289
|
-
## [1.12.2](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.12.1...@entur/icons@1.12.2) (2020-09-14)
|
|
290
|
-
|
|
291
|
-
### Bug Fixes
|
|
292
|
-
|
|
293
|
-
- **validationerror:** fix casing in icon fill ([cdbe209](https://bitbucket.org/enturas/design-system/commits/cdbe2091498d123a78ffea0a14556ec37122eae3))
|
|
294
|
-
|
|
295
|
-
## [1.12.1](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.12.0...@entur/icons@1.12.1) (2020-09-02)
|
|
296
|
-
|
|
297
|
-
**Note:** Version bump only for package @entur/icons
|
|
298
|
-
|
|
299
|
-
# [1.12.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.11.0...@entur/icons@1.12.0) (2020-08-26)
|
|
300
|
-
|
|
301
|
-
### Bug Fixes
|
|
302
|
-
|
|
303
|
-
- **extend icon:** rename new icon from expand to extend ([a592d49](https://bitbucket.org/enturas/design-system/commits/a592d49baabe9daa3a6fc9171411578e88b1ddb9))
|
|
304
|
-
|
|
305
|
-
### Features
|
|
306
|
-
|
|
307
|
-
- **icons:** add expand and minimize icons ([709daea](https://bitbucket.org/enturas/design-system/commits/709daea5bccd77aa7581ce023949bd891be4a441))
|
|
308
|
-
- **new icon:** add icon for draggable ([e356e60](https://bitbucket.org/enturas/design-system/commits/e356e6007b59aab0ab38edc23d8d35d347dc75df))
|
|
309
|
-
|
|
310
|
-
# [1.11.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.10.0...@entur/icons@1.11.0) (2020-08-19)
|
|
311
|
-
|
|
312
|
-
### Bug Fixes
|
|
313
|
-
|
|
314
|
-
- **validation error icon:** adjust internal padding in svg ([608f45e](https://bitbucket.org/enturas/design-system/commits/608f45ed7bd00fd241e3134b2f8b32c9851a1cbe))
|
|
315
|
-
|
|
316
|
-
### Features
|
|
317
|
-
|
|
318
|
-
- add baby icon ([4ece207](https://bitbucket.org/enturas/design-system/commits/4ece207c25e096a0731d8db0ce67b62cc0854f39))
|
|
319
|
-
|
|
320
|
-
# [1.10.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.9.1...@entur/icons@1.10.0) (2020-08-11)
|
|
321
|
-
|
|
322
|
-
### Features
|
|
323
|
-
|
|
324
|
-
- add new icons for travel and misc ([fbb4074](https://bitbucket.org/enturas/design-system/commits/fbb40741aa9e68f16e0d725ca210cfc2aee52bf0))
|
|
325
|
-
|
|
326
|
-
## [1.9.1](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.9.0...@entur/icons@1.9.1) (2020-07-22)
|
|
327
|
-
|
|
328
|
-
### Bug Fixes
|
|
329
|
-
|
|
330
|
-
- avoid color change on icons with special colors ([f227105](https://bitbucket.org/enturas/design-system/commits/f2271051e74c137cc536b27ad0d9fcc67caa5d64))
|
|
331
|
-
- center norway flag icon position ([fff28b3](https://bitbucket.org/enturas/design-system/commits/fff28b317eed0e2628b0d798e3c158f663f0cffb))
|
|
332
|
-
- use differential and not white fill ([9ae8221](https://bitbucket.org/enturas/design-system/commits/9ae8221888ecdfa35b5ee32f452df60c726df9d9))
|
|
333
|
-
|
|
334
|
-
# [1.9.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.8.0...@entur/icons@1.9.0) (2020-07-16)
|
|
335
|
-
|
|
336
|
-
### Features
|
|
337
|
-
|
|
338
|
-
- color prop for icons works with transport icons ([1baa125](https://bitbucket.org/enturas/design-system/commits/1baa125039ef2f430fe5ea18cc9f3ea0e53031ab))
|
|
339
|
-
|
|
340
|
-
# [1.8.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.7.0...@entur/icons@1.8.0) (2020-07-03)
|
|
341
|
-
|
|
342
|
-
### Bug Fixes
|
|
343
|
-
|
|
344
|
-
- update BusIcon with new BusIcon color ([46e3448](https://bitbucket.org/enturas/design-system/commits/46e34489965f93c81eb1b8b986df3f61fd0b07bd))
|
|
345
|
-
|
|
346
|
-
### Features
|
|
347
|
-
|
|
348
|
-
- add database icon ([d96d016](https://bitbucket.org/enturas/design-system/commits/d96d016ced80e4ab5e57b04b17d6a1676c5c4f4d))
|
|
349
|
-
- add linkedin icon ([8fd0488](https://bitbucket.org/enturas/design-system/commits/8fd04880866ceefff2fde49a67c1ce67d457289f))
|
|
350
|
-
- add power icon ([a4b75cd](https://bitbucket.org/enturas/design-system/commits/a4b75cdd3dd48a116f7d0c7f2287134ee0f858b0))
|
|
351
|
-
- add select and hand pointer icons ([d1fd1d1](https://bitbucket.org/enturas/design-system/commits/d1fd1d16c0502fc7a837f4495c4fc4e3d391b65f))
|
|
352
|
-
- add standard and quiet hearing icon ([d525ac7](https://bitbucket.org/enturas/design-system/commits/d525ac792d64811f9887cc1e879bcc381cfffd72))
|
|
353
|
-
|
|
354
|
-
# [1.7.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.6.1...@entur/icons@1.7.0) (2020-06-17)
|
|
355
|
-
|
|
356
|
-
### Features
|
|
357
|
-
|
|
358
|
-
- add contrast support for travel icons ([4c1c56a](https://bitbucket.org/enturas/design-system/commits/4c1c56a4d12aee4b6a2a7a9054075335bf2a4495))
|
|
359
|
-
|
|
360
|
-
## [1.6.1](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.6.0...@entur/icons@1.6.1) (2020-05-27)
|
|
361
|
-
|
|
362
|
-
**Note:** Version bump only for package @entur/icons
|
|
363
|
-
|
|
364
|
-
# [1.6.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.5.2...@entur/icons@1.6.0) (2020-05-26)
|
|
365
|
-
|
|
366
|
-
### Features
|
|
367
|
-
|
|
368
|
-
- new icon for partner: farte ([52b991b](https://bitbucket.org/enturas/design-system/commits/52b991ba4c59ab50d7752d324ffbeb8a4f9bf324))
|
|
369
|
-
|
|
370
|
-
## [1.5.2](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.5.1...@entur/icons@1.5.2) (2020-05-20)
|
|
371
|
-
|
|
372
|
-
**Note:** Version bump only for package @entur/icons
|
|
373
|
-
|
|
374
|
-
## [1.5.1](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.5.0...@entur/icons@1.5.1) (2020-04-27)
|
|
375
|
-
|
|
376
|
-
### Bug Fixes
|
|
377
|
-
|
|
378
|
-
- fix coloring of kolumbus icon ([fa5876e](https://bitbucket.org/enturas/design-system/commits/fa5876e18e19e934afb700f86446108af7fd85c9))
|
|
379
|
-
|
|
380
|
-
# [1.5.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.4.0...@entur/icons@1.5.0) (2020-04-23)
|
|
381
|
-
|
|
382
|
-
### Bug Fixes
|
|
383
|
-
|
|
384
|
-
- change 1em to 16 for native icons ([a97b97d](https://bitbucket.org/enturas/design-system/commits/a97b97d8669bfd2f6a885a4985c0e858debe0f18))
|
|
385
|
-
|
|
386
|
-
### Features
|
|
387
|
-
|
|
388
|
-
- add purpose icon ([7b02c4e](https://bitbucket.org/enturas/design-system/commits/7b02c4e36c6428958a8ff775a2003bb92f36c2df))
|
|
389
|
-
- add value icon ([324b918](https://bitbucket.org/enturas/design-system/commits/324b918d344dd38ff51aea65a0c1174eb408616f))
|
|
390
|
-
- add vertical switch icon ([dd3eec3](https://bitbucket.org/enturas/design-system/commits/dd3eec34413d525c029ad3281af7c6e7a3212a08))
|
|
391
|
-
- add width and height props for icons ([8881baa](https://bitbucket.org/enturas/design-system/commits/8881baaabd96e41294b186cee248016057313ecc))
|
|
392
|
-
|
|
393
|
-
# [1.4.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.3.0...@entur/icons@1.4.0) (2020-04-08)
|
|
394
|
-
|
|
395
|
-
### Features
|
|
396
|
-
|
|
397
|
-
- add quit icon ([7311322](https://bitbucket.org/enturas/design-system/commits/73113222eaff3c89d89e032aab4583a03d52bfa0))
|
|
398
|
-
- adding partner icons ([84501ea](https://bitbucket.org/enturas/design-system/commits/84501ea98c109a897c643fc0faf9df3f4203b4d6))
|
|
399
|
-
|
|
400
|
-
# [1.3.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.0.0...@entur/icons@1.3.0) (2020-03-25)
|
|
401
|
-
|
|
402
|
-
### Bug Fixes
|
|
403
|
-
|
|
404
|
-
- change the tram icon to have correct color according to tokens ([251dacc](https://bitbucket.org/enturas/design-system/commits/251daccb629a7e7a6a8cbd953e681e4bf9a3429a))
|
|
405
|
-
- use currentColor for transport colors for native ([7358f14](https://bitbucket.org/enturas/design-system/commits/7358f148bda0ce8e7cba479cb650e5be39707f48))
|
|
406
|
-
|
|
407
|
-
### Features
|
|
408
|
-
|
|
409
|
-
- adding row-height icons ([ccca7ed](https://bitbucket.org/enturas/design-system/commits/ccca7eda14df5fb1a9182c36bfe359fcc885b27b))
|
|
410
|
-
- **channel icon:** and update settings and timeline icon ([dcb80b4](https://bitbucket.org/enturas/design-system/commits/dcb80b431a9738c315ddc0b705c7b3fd8328fd17))
|
|
411
|
-
- changed import module for native config ([d9c3c5f](https://bitbucket.org/enturas/design-system/commits/d9c3c5f99b0e2e76fccea3847958660f12c3bd42))
|
|
412
|
-
|
|
413
|
-
# [1.2.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.0.0...@entur/icons@1.2.0) (2020-03-25)
|
|
414
|
-
|
|
415
|
-
### Bug Fixes
|
|
416
|
-
|
|
417
|
-
- change the tram icon to have correct color according to tokens ([251dacc](https://bitbucket.org/enturas/design-system/commits/251daccb629a7e7a6a8cbd953e681e4bf9a3429a))
|
|
418
|
-
- use currentColor for transport colors for native ([7358f14](https://bitbucket.org/enturas/design-system/commits/7358f148bda0ce8e7cba479cb650e5be39707f48))
|
|
419
|
-
|
|
420
|
-
### Features
|
|
421
|
-
|
|
422
|
-
- adding row-height icons ([ccca7ed](https://bitbucket.org/enturas/design-system/commits/ccca7eda14df5fb1a9182c36bfe359fcc885b27b))
|
|
423
|
-
- **channel icon:** and update settings and timeline icon ([dcb80b4](https://bitbucket.org/enturas/design-system/commits/dcb80b431a9738c315ddc0b705c7b3fd8328fd17))
|
|
424
|
-
- changed import module for native config ([d9c3c5f](https://bitbucket.org/enturas/design-system/commits/d9c3c5f99b0e2e76fccea3847958660f12c3bd42))
|
|
425
|
-
|
|
426
|
-
# [1.1.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@1.0.0...@entur/icons@1.1.0) (2020-03-18)
|
|
427
|
-
|
|
428
|
-
### Bug Fixes
|
|
429
|
-
|
|
430
|
-
- change the tram icon to have correct color according to tokens ([251dacc](https://bitbucket.org/enturas/design-system/commits/251daccb629a7e7a6a8cbd953e681e4bf9a3429a))
|
|
431
|
-
- use currentColor for transport colors for native ([7358f14](https://bitbucket.org/enturas/design-system/commits/7358f148bda0ce8e7cba479cb650e5be39707f48))
|
|
432
|
-
|
|
433
|
-
### Features
|
|
434
|
-
|
|
435
|
-
- **channel icon:** and update settings and timeline icon ([dcb80b4](https://bitbucket.org/enturas/design-system/commits/dcb80b431a9738c315ddc0b705c7b3fd8328fd17))
|
|
436
|
-
- changed import module for native config ([d9c3c5f](https://bitbucket.org/enturas/design-system/commits/d9c3c5f99b0e2e76fccea3847958660f12c3bd42))
|
|
437
|
-
|
|
438
|
-
# [1.0.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@0.11.0...@entur/icons@1.0.0) (2020-03-05)
|
|
439
|
-
|
|
440
|
-
### Bug Fixes
|
|
441
|
-
|
|
442
|
-
- remove unused icon ([bced335](https://bitbucket.org/enturas/design-system/commits/bced335fac86c7be383468ca30adcfb6b02ed515))
|
|
443
|
-
- remove unused icons ([1199864](https://bitbucket.org/enturas/design-system/commits/1199864b81188338aa8ad4d8bdda98ffdd5096c7))
|
|
444
|
-
|
|
445
|
-
### Features
|
|
446
|
-
|
|
447
|
-
- adding new validation icons ([854644a](https://bitbucket.org/enturas/design-system/commits/854644a5dfb27d475681aa6a3a1c5f3bcc44999d))
|
|
448
|
-
- supports setting size for native icons ([74a7855](https://bitbucket.org/enturas/design-system/commits/74a7855710ab9157489615bf114ce4558e62f1aa))
|
|
449
|
-
- **icons:** changing all icons to outline styling ([2a346d0](https://bitbucket.org/enturas/design-system/commits/2a346d0873c690569d473c7f21f1a454bc088bc6))
|
|
450
|
-
|
|
451
|
-
### BREAKING CHANGES
|
|
452
|
-
|
|
453
|
-
- Removed icons: company, fineticket, periode, rescue, sanntid, salesplace, and location
|
|
454
|
-
- **icons:** Name changes for icon (old-new): standard-expand, teddy-playroom, company-city, ticket-validticket
|
|
455
|
-
|
|
456
|
-
ISSUES CLOSED: DS-269
|
|
457
|
-
|
|
458
|
-
# [0.11.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@0.10.0...@entur/icons@0.11.0) (2020-02-26)
|
|
459
|
-
|
|
460
|
-
### Features
|
|
461
|
-
|
|
462
|
-
- add icon for UK ([f896e51](https://bitbucket.org/enturas/design-system/commits/f896e5164db7f70dd9bc74429eebd3df4d536c08))
|
|
463
|
-
|
|
464
|
-
# [0.10.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@0.9.0...@entur/icons@0.10.0) (2020-02-20)
|
|
465
|
-
|
|
466
|
-
### Features
|
|
467
|
-
|
|
468
|
-
- add sleepicon ([018acf9](https://bitbucket.org/enturas/design-system/commits/018acf9ffa4b56f89f5d90cff18cf5c8117e7207))
|
|
469
|
-
|
|
470
|
-
# [0.9.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@0.8.0...@entur/icons@0.9.0) (2020-02-14)
|
|
471
|
-
|
|
472
|
-
### Bug Fixes
|
|
473
|
-
|
|
474
|
-
- update look for teddy icon ([45a2fc2](https://bitbucket.org/enturas/design-system/commits/45a2fc206ca8ccc5a004968e2c566bd1c28c6a23))
|
|
475
|
-
|
|
476
|
-
### Features
|
|
477
|
-
|
|
478
|
-
- new icons ([f50efb3](https://bitbucket.org/enturas/design-system/commits/f50efb3c7fd37c95464a362dd563dfa64126004f))
|
|
479
|
-
|
|
480
|
-
# [0.8.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@0.7.0...@entur/icons@0.8.0) (2020-02-12)
|
|
481
|
-
|
|
482
|
-
### Features
|
|
483
|
-
|
|
484
|
-
- add new icon: turnable ([3025950](https://bitbucket.org/enturas/design-system/commits/30259503234ee9351aa8f2416c37af15a1adae84))
|
|
485
|
-
|
|
486
|
-
# [0.7.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@0.6.0...@entur/icons@0.7.0) (2020-02-05)
|
|
487
|
-
|
|
488
|
-
### Features
|
|
489
|
-
|
|
490
|
-
- adding new icon: rulesicon ([07c63d7](https://bitbucket.org/enturas/design-system/commits/07c63d7cd59ee4e7fc43585edfc7f0bc4d744085))
|
|
491
|
-
|
|
492
|
-
# [0.6.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@0.5.0...@entur/icons@0.6.0) (2020-01-27)
|
|
493
|
-
|
|
494
|
-
### Features
|
|
495
|
-
|
|
496
|
-
- add redo and undo icon ([de1a001](https://bitbucket.org/enturas/design-system/commits/de1a00128e6bed5f6366b6d200789176517552d3))
|
|
497
|
-
|
|
498
|
-
# [0.5.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@0.4.5...@entur/icons@0.5.0) (2020-01-14)
|
|
499
|
-
|
|
500
|
-
### Bug Fixes
|
|
501
|
-
|
|
502
|
-
- **icons:** fix inline icon styles ([a454c62](https://bitbucket.org/enturas/design-system/commits/a454c621e87a807efa5b39605d16cc0578d49e38))
|
|
503
|
-
- include the "native" folder in the npm package ([02f398c](https://bitbucket.org/enturas/design-system/commits/02f398c2a4a489b79a2002cb745ae1fda077201a))
|
|
504
|
-
|
|
505
|
-
### Features
|
|
506
|
-
|
|
507
|
-
- **icons:** add react-native icons ([962f1a5](https://bitbucket.org/enturas/design-system/commits/962f1a543567f5a0a7b76d6b0c53f48c81343e69))
|
|
508
|
-
|
|
509
|
-
## [0.4.5](https://bitbucket.org/enturas/design-system/compare/@entur/icons@0.4.4...@entur/icons@0.4.5) (2020-01-13)
|
|
510
|
-
|
|
511
|
-
### Bug Fixes
|
|
512
|
-
|
|
513
|
-
- fix listview icon rotation ([7940940](https://bitbucket.org/enturas/design-system/commits/7940940d8629422ac72346f926ec84f2040fb529))
|
|
514
|
-
|
|
515
|
-
## [0.4.4](https://bitbucket.org/enturas/design-system/compare/@entur/icons@0.4.3...@entur/icons@0.4.4) (2020-01-08)
|
|
516
|
-
|
|
517
|
-
### Bug Fixes
|
|
518
|
-
|
|
519
|
-
- warn in development if the developer have forgotten the CSS ([e5c30fc](https://bitbucket.org/enturas/design-system/commits/e5c30fc08624ef22c02773892778abd92205c6b0))
|
|
520
|
-
|
|
521
|
-
## [0.4.3](https://bitbucket.org/enturas/design-system/compare/@entur/icons@0.4.2...@entur/icons@0.4.3) (2020-01-06)
|
|
522
|
-
|
|
523
|
-
### Bug Fixes
|
|
524
|
-
|
|
525
|
-
- **SubtractIcon, VerticalDotsIcon:** fix two rotated icons ([9cd49ee](https://bitbucket.org/enturas/design-system/commits/9cd49ee0ad24c11675c0e4ca0082aecbaef4f0d7))
|
|
526
|
-
|
|
527
|
-
## [0.4.2](https://bitbucket.org/enturas/design-system/compare/@entur/icons@0.4.1...@entur/icons@0.4.2) (2019-11-22)
|
|
528
|
-
|
|
529
|
-
**Note:** Version bump only for package @entur/icons
|
|
530
|
-
|
|
531
|
-
## [0.4.1](https://bitbucket.org/enturas/design-system/compare/@entur/icons@0.4.0...@entur/icons@0.4.1) (2019-11-14)
|
|
532
|
-
|
|
533
|
-
### Bug Fixes
|
|
534
|
-
|
|
535
|
-
- **class prefix:** fixing final class name prefixes ([bdcd590](https://bitbucket.org/enturas/design-system/commits/bdcd590407c0f3cc4a9cc02d294edcce6b106cc7))
|
|
536
|
-
- **css classnames:** fixing naming collisions with CSS classes ([a93ca43](https://bitbucket.org/enturas/design-system/commits/a93ca435d3a01d61d8f02694a672686b9e943a66))
|
|
537
|
-
|
|
538
|
-
# [0.4.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@0.3.0...@entur/icons@0.4.0) (2019-10-22)
|
|
539
|
-
|
|
540
|
-
### Bug Fixes
|
|
541
|
-
|
|
542
|
-
- **icons:** upgrade tsdx to avoid custom config for icons ([712f1cc](https://bitbucket.org/enturas/design-system/commits/712f1cccfd3f0242f3287c21b45c8d5c9ad92084))
|
|
543
|
-
|
|
544
|
-
### Features
|
|
545
|
-
|
|
546
|
-
- **icons:** Add inline and extra class support ([50dc694](https://bitbucket.org/enturas/design-system/commits/50dc694063585c4c39618bf38f1c0d2a87a3319e))
|
|
547
|
-
|
|
548
|
-
# [0.3.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@0.2.0...@entur/icons@0.3.0) (2019-10-07)
|
|
549
|
-
|
|
550
|
-
### Bug Fixes
|
|
551
|
-
|
|
552
|
-
- **icons:** update the ParkAndRide icon ([49ca013](https://bitbucket.org/enturas/design-system/commits/49ca013))
|
|
553
|
-
|
|
554
|
-
### Features
|
|
555
|
-
|
|
556
|
-
- **icons:** add new icon: SourceCodeIcon ([4409eaf](https://bitbucket.org/enturas/design-system/commits/4409eaf))
|
|
557
|
-
- **icons:** add premium seat icon, update question icon ([8d19723](https://bitbucket.org/enturas/design-system/commits/8d19723))
|
|
558
|
-
|
|
559
|
-
# 0.2.0 (2019-09-25)
|
|
560
|
-
|
|
561
|
-
### Features
|
|
562
|
-
|
|
563
|
-
- **icons:** add new package icons ([48500ae](https://bitbucket.org/enturas/design-system/commits/48500ae))
|
|
564
|
-
- add UI and transport icons ([5a5f10a](https://bitbucket.org/enturas/design-system/commits/5a5f10a))
|