@entur/icons 4.0.0 → 4.1.2

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/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [4.1.2](https://bitbucket.org/enturas/design-system/compare/@entur/icons@4.1.1...@entur/icons@4.1.2) (2022-05-04)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **validation exclamation icon:** fix incorrect exclamation mark color for non-contrast validation ([22deff9](https://bitbucket.org/enturas/design-system/commits/22deff9cac4f867a26a14ec51197f1c3be13d403))
11
+
12
+ ## [4.1.1](https://bitbucket.org/enturas/design-system/compare/@entur/icons@4.1.0...@entur/icons@4.1.1) (2022-04-27)
13
+
14
+ **Note:** Version bump only for package @entur/icons
15
+
16
+ # [4.1.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@4.0.0...@entur/icons@4.1.0) (2022-04-20)
17
+
18
+ ### Features
19
+
20
+ - **icons:** add conductor and calculator icon ([2efc907](https://bitbucket.org/enturas/design-system/commits/2efc9074f769575a31a94fbc4f2b9eb1f2e29d47))
21
+
6
22
  # [4.0.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@3.5.0...@entur/icons@4.0.0) (2022-04-19)
7
23
 
8
24
  ### Bug Fixes
package/dist/index.d.ts CHANGED
@@ -122,6 +122,7 @@ export declare const TwitterIcon: React.FC<IconProps>;
122
122
  export declare const VimeoIcon: React.FC<IconProps>;
123
123
  export declare const YoutubeIcon: React.FC<IconProps>;
124
124
  export declare const BatteryIcon: React.FC<IconProps>;
125
+ export declare const CalculatorIcon: React.FC<IconProps>;
125
126
  export declare const CameraIcon: React.FC<IconProps>;
126
127
  export declare const DatabaseIcon: React.FC<IconProps>;
127
128
  export declare const DesktopIcon: React.FC<IconProps>;
@@ -169,6 +170,7 @@ export declare const TramIcon: React.FC<IconProps>;
169
170
  export declare const WalkingIcon: React.FC<IconProps>;
170
171
  export declare const AdditionalZonesTicketIcon: React.FC<IconProps>;
171
172
  export declare const CityIcon: React.FC<IconProps>;
173
+ export declare const ConductorIcon: React.FC<IconProps>;
172
174
  export declare const CorrespondenceIcon: React.FC<IconProps>;
173
175
  export declare const DestinationIcon: React.FC<IconProps>;
174
176
  export declare const EnvironmentIcon: React.FC<IconProps>;
package/dist/index.esm.js CHANGED
@@ -2071,6 +2071,44 @@ function BatteryIcon(props) {
2071
2071
  }));
2072
2072
  }
2073
2073
 
2074
+ function CalculatorIcon(props) {
2075
+ return /*#__PURE__*/createElement("svg", _extends({}, props, {
2076
+ fill: "none",
2077
+ viewBox: "0 0 16 16",
2078
+ width: props.width || props.size || '1em',
2079
+ height: props.height || props.size || '1em',
2080
+ className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
2081
+ inline: undefined,
2082
+ color: props.color || 'currentColor'
2083
+ }), /*#__PURE__*/createElement("path", {
2084
+ fill: "currentColor",
2085
+ d: "M7.5 6.5H9V8H7.5V6.5z"
2086
+ }), /*#__PURE__*/createElement("path", {
2087
+ fill: "currentColor",
2088
+ d: "M5 6.5h1.5V8H5V6.5z"
2089
+ }), /*#__PURE__*/createElement("path", {
2090
+ fill: "currentColor",
2091
+ d: "M7.5 9H9v1.5H7.5V9z"
2092
+ }), /*#__PURE__*/createElement("path", {
2093
+ fill: "currentColor",
2094
+ d: "M5 9h1.5v1.5H5V9z"
2095
+ }), /*#__PURE__*/createElement("path", {
2096
+ fill: "currentColor",
2097
+ d: "M7.5 11.5H9V13H7.5v-1.5z"
2098
+ }), /*#__PURE__*/createElement("path", {
2099
+ fill: "currentColor",
2100
+ d: "M5 11.5h1.5V13H5v-1.5z"
2101
+ }), /*#__PURE__*/createElement("path", {
2102
+ fill: "currentColor",
2103
+ d: "M10 6.5h1V13h-1V6.5z"
2104
+ }), /*#__PURE__*/createElement("path", {
2105
+ fill: "currentColor",
2106
+ fillRule: "evenodd",
2107
+ d: "M11.29 1c.947 0 1.71.805 1.71 1.793v10.414c0 .988-.763 1.793-1.71 1.793H4.71C3.764 15 3 14.195 3 13.207V2.793C3 1.805 3.763 1 4.71 1h6.58zm-7.062 9.371v2.836c0 .258.173.468.396.512l.087.008h6.579c.264 0 .482-.23.482-.52l-.001-2.836V5.5H4.228v4.871zm0-5.871h7.543V2.794a.51.51 0 00-.395-.513l-.086-.008H4.71c-.264 0-.482.23-.482.52V4.5z",
2108
+ clipRule: "evenodd"
2109
+ }));
2110
+ }
2111
+
2074
2112
  function CameraIcon(props) {
2075
2113
  return /*#__PURE__*/createElement("svg", _extends({}, props, {
2076
2114
  viewBox: "0 0 16 16",
@@ -2887,6 +2925,23 @@ function CityIcon(props) {
2887
2925
  }));
2888
2926
  }
2889
2927
 
2928
+ function ConductorIcon(props) {
2929
+ return /*#__PURE__*/createElement("svg", _extends({}, props, {
2930
+ fill: "none",
2931
+ viewBox: "0 0 16 16",
2932
+ width: props.width || props.size || '1em',
2933
+ height: props.height || props.size || '1em',
2934
+ className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
2935
+ inline: undefined,
2936
+ color: props.color || 'currentColor'
2937
+ }), /*#__PURE__*/createElement("path", {
2938
+ fill: "currentColor",
2939
+ fillRule: "evenodd",
2940
+ d: "M7.827 1.37c.115-.02.231-.02.346 0l2.6.433c.506.085.877.523.877 1.036V4.1c0 .37-.19.694-.479.881.211.45.329.953.329 1.484 0 1.178-.582 2.22-1.474 2.854 2.458.798 4.28 3.009 4.474 5.681H13c-.228-2.392-1.931-4.31-4.263-4.648l-.097.251a.596.596 0 01-.306.323.418.418 0 01.054.126l.576 2.304a.4.4 0 01-.03.276l-.576 1.152a.4.4 0 01-.716 0l-.576-1.152a.4.4 0 01-.03-.276l.576-2.304a.418.418 0 01.054-.126.596.596 0 01-.306-.323l-.097-.25C4.932 10.688 3.228 12.607 3 15H1.5c.203-2.664 2.023-4.879 4.476-5.68a3.496 3.496 0 01-1.22-4.17H3.5v-1.3h.85V2.839c0-.513.371-.951.877-1.036l2.6-.433zm.933 3.78h1.004a2.2 2.2 0 11-3.529 0H7.24a.998.998 0 001.52 0zm0-1.3a.998.998 0 00-1.52 0H5.65v-.8L8 2.66l2.35.392v.799H8.76z",
2941
+ clipRule: "evenodd"
2942
+ }));
2943
+ }
2944
+
2890
2945
  function CorrespondenceIcon(props) {
2891
2946
  return /*#__PURE__*/createElement("svg", _extends({}, props, {
2892
2947
  viewBox: "0 0 16 16",
@@ -4494,14 +4549,18 @@ function ValidationExclamationIcon(props) {
4494
4549
  viewBox: "0 0 16 16",
4495
4550
  width: props.width || props.size || '1em',
4496
4551
  height: props.height || props.size || '1em',
4497
- className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
4552
+ className: 'eds-icon__ValidationExclamationIcon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
4498
4553
  inline: undefined,
4499
4554
  color: props.color || 'currentColor'
4555
+ }), /*#__PURE__*/createElement("circle", {
4556
+ cx: 8,
4557
+ cy: 8,
4558
+ r: 4.38,
4559
+ fill: "#181c56"
4500
4560
  }), /*#__PURE__*/createElement("path", {
4501
- fill: "currentColor",
4561
+ fill: "#181c56",
4502
4562
  fillRule: "evenodd",
4503
- d: "M8 1C4.15 1 1 4.15 1 8s3.15 7 7 7 7-3.15 7-7-3.15-7-7-7zm-.7 3h1.4v5.1H7.3V4zm.705 8.25a.875.875 0 110-1.75.875.875 0 010 1.75z",
4504
- clipRule: "evenodd"
4563
+ d: "M8 1a7 7 0 107 7 7 7 0 00-7-7zm-.7 3h1.4v5.1H7.3zm.7 8.25a.88.88 0 11.87-.87.87.87 0 01-.87.87z"
4505
4564
  }));
4506
4565
  }
4507
4566
 
@@ -4846,4 +4905,4 @@ function ZoomOutIcon(props) {
4846
4905
  }));
4847
4906
  }
4848
4907
 
4849
- export { 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, BrightnessIcon, BugIcon, BulletListIcon, BusIcon, BusShelterIcon, CablewayIcon, CalendarIcon, CameraIcon, CarIcon, CardIcon, CarferryIcon, ChannelsIcon, ChatIcon, CheckIcon, CityBikeIcon, CityIcon, ClockIcon, CloseIcon, CloseSmallIcon, ClosedLockIcon, CloudDownloadIcon, CloudIcon, CloudLightningIcon, CloudRainIcon, CloudSnowIcon, CoffeeIcon, CollapsedIcon, ColorPickerIcon, CommentIcon, 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, ForwardIcon, FunicularIcon, GOAIcon, GithubIcon, GoalIcon, GoogleIcon, GridViewIcon, 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, MapIcon, MapPinIcon, MastercardIcon, MenuIcon, MergeProfilesIcon, MinimizeIcon, MobileIcon, MoneyIcon, MoveAboutIcon, NewIcon, NightIcon, NorwayIcon, NumberListIcon, OpenedLockIcon, OrganizationIcon, OsloBysykkelIcon, OstfoldIcon, OutlinedValidationCheckIcon, OutlinedValidationErrorIcon, OutlinedValidationExclamationIcon, OutlinedValidationInfoIcon, PackageIcon, ParkAndRideIcon, ParkIcon, ParkingGarageIcon, PhoneIcon, PlaneIcon, PlayIcon, 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, SaveIcon, ScooterIcon, ScopeIcon, SearchIcon, SeatIcon, SelectIcon, SendIcon, SettingsIcon, ShareIcon, ShoppingCartIcon, SkiIcon, SkypeIcon, SkyssIcon, SleepIcon, SourceCodeIcon, StandardIcon, 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, UnlinkIcon, 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 };
4908
+ export { 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, BrightnessIcon, BugIcon, BulletListIcon, BusIcon, BusShelterIcon, 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, ForwardIcon, FunicularIcon, GOAIcon, GithubIcon, GoalIcon, GoogleIcon, GridViewIcon, 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, MapIcon, MapPinIcon, MastercardIcon, MenuIcon, MergeProfilesIcon, MinimizeIcon, MobileIcon, MoneyIcon, MoveAboutIcon, NewIcon, NightIcon, NorwayIcon, NumberListIcon, OpenedLockIcon, OrganizationIcon, OsloBysykkelIcon, OstfoldIcon, OutlinedValidationCheckIcon, OutlinedValidationErrorIcon, OutlinedValidationExclamationIcon, OutlinedValidationInfoIcon, PackageIcon, ParkAndRideIcon, ParkIcon, ParkingGarageIcon, PhoneIcon, PlaneIcon, PlayIcon, 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, SaveIcon, ScooterIcon, ScopeIcon, SearchIcon, SeatIcon, SelectIcon, SendIcon, SettingsIcon, ShareIcon, ShoppingCartIcon, SkiIcon, SkypeIcon, SkyssIcon, SleepIcon, SourceCodeIcon, StandardIcon, 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, UnlinkIcon, 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 };
@@ -1864,6 +1864,42 @@ function BatteryIcon(props) {
1864
1864
  }));
1865
1865
  }
1866
1866
 
1867
+ function CalculatorIcon(props) {
1868
+ return /*#__PURE__*/createElement(Svg, _extends({}, props, {
1869
+ fill: "none",
1870
+ viewBox: "0 0 16 16",
1871
+ width: props.width || props.size || 16,
1872
+ height: props.height || props.size || 16,
1873
+ color: props.color || '#181C56'
1874
+ }), /*#__PURE__*/createElement(Path, {
1875
+ fill: "currentColor",
1876
+ d: "M7.5 6.5H9V8H7.5V6.5z"
1877
+ }), /*#__PURE__*/createElement(Path, {
1878
+ fill: "currentColor",
1879
+ d: "M5 6.5h1.5V8H5V6.5z"
1880
+ }), /*#__PURE__*/createElement(Path, {
1881
+ fill: "currentColor",
1882
+ d: "M7.5 9H9v1.5H7.5V9z"
1883
+ }), /*#__PURE__*/createElement(Path, {
1884
+ fill: "currentColor",
1885
+ d: "M5 9h1.5v1.5H5V9z"
1886
+ }), /*#__PURE__*/createElement(Path, {
1887
+ fill: "currentColor",
1888
+ d: "M7.5 11.5H9V13H7.5v-1.5z"
1889
+ }), /*#__PURE__*/createElement(Path, {
1890
+ fill: "currentColor",
1891
+ d: "M5 11.5h1.5V13H5v-1.5z"
1892
+ }), /*#__PURE__*/createElement(Path, {
1893
+ fill: "currentColor",
1894
+ d: "M10 6.5h1V13h-1V6.5z"
1895
+ }), /*#__PURE__*/createElement(Path, {
1896
+ fill: "currentColor",
1897
+ fillRule: "evenodd",
1898
+ d: "M11.29 1c.947 0 1.71.805 1.71 1.793v10.414c0 .988-.763 1.793-1.71 1.793H4.71C3.764 15 3 14.195 3 13.207V2.793C3 1.805 3.763 1 4.71 1h6.58zm-7.062 9.371v2.836c0 .258.173.468.396.512l.087.008h6.579c.264 0 .482-.23.482-.52l-.001-2.836V5.5H4.228v4.871zm0-5.871h7.543V2.794a.51.51 0 00-.395-.513l-.086-.008H4.71c-.264 0-.482.23-.482.52V4.5z",
1899
+ clipRule: "evenodd"
1900
+ }));
1901
+ }
1902
+
1867
1903
  function CameraIcon(props) {
1868
1904
  return /*#__PURE__*/createElement(Svg, _extends({}, props, {
1869
1905
  viewBox: "0 0 16 16",
@@ -2586,6 +2622,21 @@ function CityIcon(props) {
2586
2622
  }));
2587
2623
  }
2588
2624
 
2625
+ function ConductorIcon(props) {
2626
+ return /*#__PURE__*/createElement(Svg, _extends({}, props, {
2627
+ fill: "none",
2628
+ viewBox: "0 0 16 16",
2629
+ width: props.width || props.size || 16,
2630
+ height: props.height || props.size || 16,
2631
+ color: props.color || '#181C56'
2632
+ }), /*#__PURE__*/createElement(Path, {
2633
+ fill: "currentColor",
2634
+ fillRule: "evenodd",
2635
+ d: "M7.827 1.37c.115-.02.231-.02.346 0l2.6.433c.506.085.877.523.877 1.036V4.1c0 .37-.19.694-.479.881.211.45.329.953.329 1.484 0 1.178-.582 2.22-1.474 2.854 2.458.798 4.28 3.009 4.474 5.681H13c-.228-2.392-1.931-4.31-4.263-4.648l-.097.251a.596.596 0 01-.306.323.418.418 0 01.054.126l.576 2.304a.4.4 0 01-.03.276l-.576 1.152a.4.4 0 01-.716 0l-.576-1.152a.4.4 0 01-.03-.276l.576-2.304a.418.418 0 01.054-.126.596.596 0 01-.306-.323l-.097-.25C4.932 10.688 3.228 12.607 3 15H1.5c.203-2.664 2.023-4.879 4.476-5.68a3.496 3.496 0 01-1.22-4.17H3.5v-1.3h.85V2.839c0-.513.371-.951.877-1.036l2.6-.433zm.933 3.78h1.004a2.2 2.2 0 11-3.529 0H7.24a.998.998 0 001.52 0zm0-1.3a.998.998 0 00-1.52 0H5.65v-.8L8 2.66l2.35.392v.799H8.76z",
2636
+ clipRule: "evenodd"
2637
+ }));
2638
+ }
2639
+
2589
2640
  function CorrespondenceIcon(props) {
2590
2641
  return /*#__PURE__*/createElement(Svg, _extends({}, props, {
2591
2642
  viewBox: "0 0 16 16",
@@ -4004,11 +4055,15 @@ function ValidationExclamationIcon(props) {
4004
4055
  width: props.width || props.size || 16,
4005
4056
  height: props.height || props.size || 16,
4006
4057
  color: props.color || '#181C56'
4058
+ }), /*#__PURE__*/createElement(Circle, {
4059
+ cx: 8,
4060
+ cy: 8,
4061
+ r: 4.38,
4062
+ fill: "#181c56"
4007
4063
  }), /*#__PURE__*/createElement(Path, {
4008
- fill: "currentColor",
4064
+ fill: "#181c56",
4009
4065
  fillRule: "evenodd",
4010
- d: "M8 1C4.15 1 1 4.15 1 8s3.15 7 7 7 7-3.15 7-7-3.15-7-7-7zm-.7 3h1.4v5.1H7.3V4zm.705 8.25a.875.875 0 110-1.75.875.875 0 010 1.75z",
4011
- clipRule: "evenodd"
4066
+ d: "M8 1a7 7 0 107 7 7 7 0 00-7-7zm-.7 3h1.4v5.1H7.3zm.7 8.25a.88.88 0 11.87-.87.87.87 0 01-.87.87z"
4012
4067
  }));
4013
4068
  }
4014
4069
 
@@ -4321,4 +4376,4 @@ function ZoomOutIcon(props) {
4321
4376
  }));
4322
4377
  }
4323
4378
 
4324
- export { 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, BrightnessIcon, BugIcon, BulletListIcon, BusIcon, BusShelterIcon, CablewayIcon, CalendarIcon, CameraIcon, CarIcon, CardIcon, CarferryIcon, ChannelsIcon, ChatIcon, CheckIcon, CityBikeIcon, CityIcon, ClockIcon, CloseIcon, CloseSmallIcon, ClosedLockIcon, CloudDownloadIcon, CloudIcon, CloudLightningIcon, CloudRainIcon, CloudSnowIcon, CoffeeIcon, CollapsedIcon, ColorPickerIcon, CommentIcon, 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, ForwardIcon, FunicularIcon, GOAIcon, GithubIcon, GoalIcon, GoogleIcon, GridViewIcon, 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, MapIcon, MapPinIcon, MastercardIcon, MenuIcon, MergeProfilesIcon, MinimizeIcon, MobileIcon, MoneyIcon, MoveAboutIcon, NewIcon, NightIcon, NorwayIcon, NumberListIcon, OpenedLockIcon, OrganizationIcon, OsloBysykkelIcon, OstfoldIcon, OutlinedValidationCheckIcon, OutlinedValidationErrorIcon, OutlinedValidationExclamationIcon, OutlinedValidationInfoIcon, PackageIcon, ParkAndRideIcon, ParkIcon, ParkingGarageIcon, PhoneIcon, PlaneIcon, PlayIcon, 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, SaveIcon, ScooterIcon, ScopeIcon, SearchIcon, SeatIcon, SelectIcon, SendIcon, SettingsIcon, ShareIcon, ShoppingCartIcon, SkiIcon, SkypeIcon, SkyssIcon, SleepIcon, SourceCodeIcon, StandardIcon, 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, UnlinkIcon, 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 };
4379
+ export { 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, BrightnessIcon, BugIcon, BulletListIcon, BusIcon, BusShelterIcon, 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, ForwardIcon, FunicularIcon, GOAIcon, GithubIcon, GoalIcon, GoogleIcon, GridViewIcon, 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, MapIcon, MapPinIcon, MastercardIcon, MenuIcon, MergeProfilesIcon, MinimizeIcon, MobileIcon, MoneyIcon, MoveAboutIcon, NewIcon, NightIcon, NorwayIcon, NumberListIcon, OpenedLockIcon, OrganizationIcon, OsloBysykkelIcon, OstfoldIcon, OutlinedValidationCheckIcon, OutlinedValidationErrorIcon, OutlinedValidationExclamationIcon, OutlinedValidationInfoIcon, PackageIcon, ParkAndRideIcon, ParkIcon, ParkingGarageIcon, PhoneIcon, PlaneIcon, PlayIcon, 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, SaveIcon, ScooterIcon, ScopeIcon, SearchIcon, SeatIcon, SelectIcon, SendIcon, SettingsIcon, ShareIcon, ShoppingCartIcon, SkiIcon, SkypeIcon, SkyssIcon, SleepIcon, SourceCodeIcon, StandardIcon, 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, UnlinkIcon, 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
@@ -2075,6 +2075,44 @@ function BatteryIcon(props) {
2075
2075
  }));
2076
2076
  }
2077
2077
 
2078
+ function CalculatorIcon(props) {
2079
+ return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
2080
+ fill: "none",
2081
+ viewBox: "0 0 16 16",
2082
+ width: props.width || props.size || '1em',
2083
+ height: props.height || props.size || '1em',
2084
+ className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
2085
+ inline: undefined,
2086
+ color: props.color || 'currentColor'
2087
+ }), /*#__PURE__*/React.createElement("path", {
2088
+ fill: "currentColor",
2089
+ d: "M7.5 6.5H9V8H7.5V6.5z"
2090
+ }), /*#__PURE__*/React.createElement("path", {
2091
+ fill: "currentColor",
2092
+ d: "M5 6.5h1.5V8H5V6.5z"
2093
+ }), /*#__PURE__*/React.createElement("path", {
2094
+ fill: "currentColor",
2095
+ d: "M7.5 9H9v1.5H7.5V9z"
2096
+ }), /*#__PURE__*/React.createElement("path", {
2097
+ fill: "currentColor",
2098
+ d: "M5 9h1.5v1.5H5V9z"
2099
+ }), /*#__PURE__*/React.createElement("path", {
2100
+ fill: "currentColor",
2101
+ d: "M7.5 11.5H9V13H7.5v-1.5z"
2102
+ }), /*#__PURE__*/React.createElement("path", {
2103
+ fill: "currentColor",
2104
+ d: "M5 11.5h1.5V13H5v-1.5z"
2105
+ }), /*#__PURE__*/React.createElement("path", {
2106
+ fill: "currentColor",
2107
+ d: "M10 6.5h1V13h-1V6.5z"
2108
+ }), /*#__PURE__*/React.createElement("path", {
2109
+ fill: "currentColor",
2110
+ fillRule: "evenodd",
2111
+ d: "M11.29 1c.947 0 1.71.805 1.71 1.793v10.414c0 .988-.763 1.793-1.71 1.793H4.71C3.764 15 3 14.195 3 13.207V2.793C3 1.805 3.763 1 4.71 1h6.58zm-7.062 9.371v2.836c0 .258.173.468.396.512l.087.008h6.579c.264 0 .482-.23.482-.52l-.001-2.836V5.5H4.228v4.871zm0-5.871h7.543V2.794a.51.51 0 00-.395-.513l-.086-.008H4.71c-.264 0-.482.23-.482.52V4.5z",
2112
+ clipRule: "evenodd"
2113
+ }));
2114
+ }
2115
+
2078
2116
  function CameraIcon(props) {
2079
2117
  return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
2080
2118
  viewBox: "0 0 16 16",
@@ -2891,6 +2929,23 @@ function CityIcon(props) {
2891
2929
  }));
2892
2930
  }
2893
2931
 
2932
+ function ConductorIcon(props) {
2933
+ return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
2934
+ fill: "none",
2935
+ viewBox: "0 0 16 16",
2936
+ width: props.width || props.size || '1em',
2937
+ height: props.height || props.size || '1em',
2938
+ className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
2939
+ inline: undefined,
2940
+ color: props.color || 'currentColor'
2941
+ }), /*#__PURE__*/React.createElement("path", {
2942
+ fill: "currentColor",
2943
+ fillRule: "evenodd",
2944
+ d: "M7.827 1.37c.115-.02.231-.02.346 0l2.6.433c.506.085.877.523.877 1.036V4.1c0 .37-.19.694-.479.881.211.45.329.953.329 1.484 0 1.178-.582 2.22-1.474 2.854 2.458.798 4.28 3.009 4.474 5.681H13c-.228-2.392-1.931-4.31-4.263-4.648l-.097.251a.596.596 0 01-.306.323.418.418 0 01.054.126l.576 2.304a.4.4 0 01-.03.276l-.576 1.152a.4.4 0 01-.716 0l-.576-1.152a.4.4 0 01-.03-.276l.576-2.304a.418.418 0 01.054-.126.596.596 0 01-.306-.323l-.097-.25C4.932 10.688 3.228 12.607 3 15H1.5c.203-2.664 2.023-4.879 4.476-5.68a3.496 3.496 0 01-1.22-4.17H3.5v-1.3h.85V2.839c0-.513.371-.951.877-1.036l2.6-.433zm.933 3.78h1.004a2.2 2.2 0 11-3.529 0H7.24a.998.998 0 001.52 0zm0-1.3a.998.998 0 00-1.52 0H5.65v-.8L8 2.66l2.35.392v.799H8.76z",
2945
+ clipRule: "evenodd"
2946
+ }));
2947
+ }
2948
+
2894
2949
  function CorrespondenceIcon(props) {
2895
2950
  return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
2896
2951
  viewBox: "0 0 16 16",
@@ -4498,14 +4553,18 @@ function ValidationExclamationIcon(props) {
4498
4553
  viewBox: "0 0 16 16",
4499
4554
  width: props.width || props.size || '1em',
4500
4555
  height: props.height || props.size || '1em',
4501
- className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
4556
+ className: 'eds-icon__ValidationExclamationIcon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
4502
4557
  inline: undefined,
4503
4558
  color: props.color || 'currentColor'
4559
+ }), /*#__PURE__*/React.createElement("circle", {
4560
+ cx: 8,
4561
+ cy: 8,
4562
+ r: 4.38,
4563
+ fill: "#181c56"
4504
4564
  }), /*#__PURE__*/React.createElement("path", {
4505
- fill: "currentColor",
4565
+ fill: "#181c56",
4506
4566
  fillRule: "evenodd",
4507
- d: "M8 1C4.15 1 1 4.15 1 8s3.15 7 7 7 7-3.15 7-7-3.15-7-7-7zm-.7 3h1.4v5.1H7.3V4zm.705 8.25a.875.875 0 110-1.75.875.875 0 010 1.75z",
4508
- clipRule: "evenodd"
4567
+ d: "M8 1a7 7 0 107 7 7 7 0 00-7-7zm-.7 3h1.4v5.1H7.3zm.7 8.25a.88.88 0 11.87-.87.87.87 0 01-.87.87z"
4509
4568
  }));
4510
4569
  }
4511
4570
 
@@ -4884,6 +4943,7 @@ exports.BulletListIcon = BulletListIcon;
4884
4943
  exports.BusIcon = BusIcon;
4885
4944
  exports.BusShelterIcon = BusShelterIcon;
4886
4945
  exports.CablewayIcon = CablewayIcon;
4946
+ exports.CalculatorIcon = CalculatorIcon;
4887
4947
  exports.CalendarIcon = CalendarIcon;
4888
4948
  exports.CameraIcon = CameraIcon;
4889
4949
  exports.CarIcon = CarIcon;
@@ -4907,6 +4967,7 @@ exports.CoffeeIcon = CoffeeIcon;
4907
4967
  exports.CollapsedIcon = CollapsedIcon;
4908
4968
  exports.ColorPickerIcon = ColorPickerIcon;
4909
4969
  exports.CommentIcon = CommentIcon;
4970
+ exports.ConductorIcon = ConductorIcon;
4910
4971
  exports.ConfigurationIcon = ConfigurationIcon;
4911
4972
  exports.ContactsIcon = ContactsIcon;
4912
4973
  exports.CopyIcon = CopyIcon;
package/dist/styles.css CHANGED
@@ -55,3 +55,9 @@ p .eds-icon {
55
55
  .eds-contrast .eds-icon__tram g,
56
56
  .eds-contrast .eds-icon__tram path {
57
57
  fill: #b482fb; }
58
+
59
+ .eds-icon__ValidationExclamationIcon path {
60
+ fill: currentColor; }
61
+
62
+ .eds-icon__ValidationExclamationIcon circle {
63
+ fill-opacity: 0; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@entur/icons",
3
- "version": "4.0.0",
3
+ "version": "4.1.2",
4
4
  "license": "EUPL-1.2",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
@@ -32,6 +32,7 @@
32
32
  "@babel/core": "^7.7.7",
33
33
  "@babel/preset-env": "^7.7.7",
34
34
  "@babel/preset-react": "^7.7.4",
35
+ "@rollup/plugin-babel": "^5.3.1",
35
36
  "@rollup/plugin-node-resolve": "^7.0.0",
36
37
  "@svgr/core": "^5.0.1",
37
38
  "@svgr/plugin-jsx": "^5.0.1",
@@ -41,12 +42,11 @@
41
42
  "case": "^1.6.2",
42
43
  "fs-extra": "9.0.0",
43
44
  "rimraf": "3.0.2",
44
- "rollup": "2.6.1",
45
- "rollup-plugin-babel": "4.4.0"
45
+ "rollup": "2.6.1"
46
46
  },
47
47
  "dependencies": {
48
- "@entur/tokens": "^3.3.1",
48
+ "@entur/tokens": "^3.3.2",
49
49
  "@entur/utils": "^0.4.3"
50
50
  },
51
- "gitHead": "f760e1b8cfdc14231bd6391a8d82dfed1d71daa4"
51
+ "gitHead": "0fba0071ad9dc75cc68b72b846f5bab78be12449"
52
52
  }