changed
VERSION
|
@@ -1 1 @@
|
1
|
- 0.2.8
|
1
|
0.2.9
|
changed
hex_metadata.config
|
@@ -140,6 140,7 @@
|
140
140
|
<<"lib_ex/moon/icons/media_tuner.ex">>,
|
141
141
|
<<"lib_ex/moon/icons/arrows_right_curved.ex">>,
|
142
142
|
<<"lib_ex/moon/icons/media_mice_alternative.ex">>,
|
143
|
<<"lib_ex/moon/icons/travel_train.ex">>,
|
143
144
|
<<"lib_ex/moon/icons/sport_nordic_combined.ex">>,
|
144
145
|
<<"lib_ex/moon/icons/files_stickers.ex">>,
|
145
146
|
<<"lib_ex/moon/icons/time_calendar_alternative.ex">>,
|
|
@@ -343,6 344,7 @@
|
343
344
|
<<"lib_ex/moon/icons/software_shutdown.ex">>,
|
344
345
|
<<"lib_ex/moon/icons/notifications_app.ex">>,
|
345
346
|
<<"lib_ex/moon/icons/devices_mac.ex">>,<<"lib_ex/moon/icons/shop_card.ex">>,
|
347
|
<<"lib_ex/moon/icons/travel_bus.ex">>,
|
346
348
|
<<"lib_ex/moon/icons/software_bug.ex">>,
|
347
349
|
<<"lib_ex/moon/icons/arrows_sorting.ex">>,
|
348
350
|
<<"lib_ex/moon/icons/generic_pending.ex">>,
|
|
@@ -1715,6 1717,7 @@
|
1715
1717
|
<<"priv/static/svgs/icons_new/generic-check-rounded.svg">>,
|
1716
1718
|
<<"priv/static/svgs/icons_new/files-stickers.svg">>,
|
1717
1719
|
<<"priv/static/svgs/icons_new/text-table-alternative.svg">>,
|
1720
|
<<"priv/static/svgs/icons_new/travel-bus.svg">>,
|
1718
1721
|
<<"priv/static/svgs/icons_new/media-js.svg">>,
|
1719
1722
|
<<"priv/static/svgs/icons_new/sport-golf.svg">>,
|
1720
1723
|
<<"priv/static/svgs/icons_new/arrows-refresh.svg">>,
|
|
@@ -1722,6 1725,7 @@
|
1722
1725
|
<<"priv/static/svgs/icons_new/sport-rugby.svg">>,
|
1723
1726
|
<<"priv/static/svgs/icons_new/generic-bet.svg">>,
|
1724
1727
|
<<"priv/static/svgs/icons_new/arrows-up.svg">>,
|
1728
|
<<"priv/static/svgs/icons_new/travel-train.svg">>,
|
1725
1729
|
<<"priv/static/svgs/icons_new/other-claps.svg">>,
|
1726
1730
|
<<"priv/static/svgs/icons_new/security-lock.svg">>,
|
1727
1731
|
<<"priv/static/svgs/icons_new/generic-user-swapping.svg">>,
|
|
@@ -2158,4 2162,4 @@
|
2158
2162
|
{<<"optional">>,false},
|
2159
2163
|
{<<"repository">>,<<"hexpm">>},
|
2160
2164
|
{<<"requirement">>,<<">= 0.9.1">>}]]}.
|
2161
|
- {<<"version">>,<<"0.2.8">>}.
|
2165
|
{<<"version">>,<<"0.2.9">>}.
|
added
lib_ex/moon/icons/travel_bus.ex
|
@@ -0,0 1,32 @@
|
1
|
defmodule Moon.Icons.TravelBus do
|
2
|
@moduledoc false
|
3
|
use MoonIcons.StatelessComponent
|
4
|
|
5
|
prop(click, :event)
|
6
|
prop(class, :css_class)
|
7
|
|
8
|
# All the other props below are deprecated!
|
9
|
# Please use only tailwind classes and the class prop
|
10
|
prop(font_size, :string)
|
11
|
prop(color, :string, values: colors())
|
12
|
prop(background_color, :string, values: colors())
|
13
|
|
14
|
def render(assigns) do
|
15
|
~F"""
|
16
|
<svg
|
17
|
class={
|
18
|
"moon-icon fill-none",
|
19
|
@class,
|
20
|
"text-#{@color}": @color,
|
21
|
"bg-#{@background_color}": @background_color,
|
22
|
"text-#{@font_size}": @font_size,
|
23
|
"cursor-pointer": @click
|
24
|
}
|
25
|
:on-click={@click}
|
26
|
style={get_style(color: @color, background_color: @background_color, font_size: @font_size)}
|
27
|
>
|
28
|
<use href="/moon_icons/svgs/icons_new/travel-bus.svg#item" />
|
29
|
</svg>
|
30
|
"""
|
31
|
end
|
32
|
end
|
added
lib_ex/moon/icons/travel_train.ex
|
@@ -0,0 1,32 @@
|
1
|
defmodule Moon.Icons.TravelTrain do
|
2
|
@moduledoc false
|
3
|
use MoonIcons.StatelessComponent
|
4
|
|
5
|
prop(click, :event)
|
6
|
prop(class, :css_class)
|
7
|
|
8
|
# All the other props below are deprecated!
|
9
|
# Please use only tailwind classes and the class prop
|
10
|
prop(font_size, :string)
|
11
|
prop(color, :string, values: colors())
|
12
|
prop(background_color, :string, values: colors())
|
13
|
|
14
|
def render(assigns) do
|
15
|
~F"""
|
16
|
<svg
|
17
|
class={
|
18
|
"moon-icon fill-none",
|
19
|
@class,
|
20
|
"text-#{@color}": @color,
|
21
|
"bg-#{@background_color}": @background_color,
|
22
|
"text-#{@font_size}": @font_size,
|
23
|
"cursor-pointer": @click
|
24
|
}
|
25
|
:on-click={@click}
|
26
|
style={get_style(color: @color, background_color: @background_color, font_size: @font_size)}
|
27
|
>
|
28
|
<use href="/moon_icons/svgs/icons_new/travel-train.svg#item" />
|
29
|
</svg>
|
30
|
"""
|
31
|
end
|
32
|
end
|
changed
lib_ex/moon_icons/helpers/icons.ex
|
@@ -455,6 455,7 @@ defmodule MoonIcons.Helpers.Icons do
|
455
455
|
travel_beach_chair
|
456
456
|
travel_bed
|
457
457
|
travel_bill
|
458
|
travel_bus
|
458
459
|
travel_hotel
|
459
460
|
travel_luggage
|
460
461
|
travel_meal
|
|
@@ -466,6 467,7 @@ defmodule MoonIcons.Helpers.Icons do
|
466
467
|
travel_seats
|
467
468
|
travel_suitcase
|
468
469
|
travel_swimming_pool
|
470
|
travel_train
|
469
471
|
travel_wi_fi
|
470
472
|
travel_yacht
|
471
473
|
)
|
|
@@ -988,6 990,7 @@ defmodule MoonIcons.Helpers.Icons do
|
988
990
|
travel_beach_chair
|
989
991
|
travel_bed
|
990
992
|
travel_bill
|
993
|
travel_bus
|
991
994
|
travel_hotel
|
992
995
|
travel_luggage
|
993
996
|
travel_meal
|
|
@@ -999,6 1002,7 @@ defmodule MoonIcons.Helpers.Icons do
|
999
1002
|
travel_seats
|
1000
1003
|
travel_suitcase
|
1001
1004
|
travel_swimming_pool
|
1005
|
travel_train
|
1002
1006
|
travel_wi_fi
|
1003
1007
|
travel_yacht
|
1004
1008
|
)
|
changed
priv/static/svgs/icons_new/controls-clear.svg
|
@@ -1,3 1,4 @@
|
1
1
|
<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><symbol id="item" viewBox="0 0 32 32" >
|
2
2
|
<path d="M11.5455 9.31826L11.5456 9.31834L11.553 9.31124L11.6929 9.1774C12.238 8.74854 12.9067 8.5 13.5585 8.5H24.0082C25.5854 8.5 26.7908 9.69651 26.7478 11.1351L26.7476 11.1425V11.15V20.85C26.7476 22.3034 25.5295 23.5 23.956 23.5H13.5585C12.884 23.5 12.2252 23.2866 11.7016 22.8309L11.553 22.6888L11.5531 22.6887L11.5455 22.6817L5.07089 16.7356C4.86223 16.5341 4.7583 16.2678 4.7583 16C4.7583 15.7322 4.86223 15.4659 5.07088 15.2645L11.5455 9.31826Z" stroke="currentColor" stroke-linecap="round"/>
|
3
|
- </symbol></svg>
|
3
|
<path d="M14.9253 13L20.8465 18.6569M14.9253 18.6569L20.8465 13" stroke="currentColor" stroke-linecap="round"/>
|
4
|
</symbol></svg>
|
|
\ No newline at end of file
|
added
priv/static/svgs/icons_new/travel-bus.svg
|
@@ -0,0 1,3 @@
|
1
|
<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><symbol id="item" viewBox="0 0 32 32" >
|
2
|
<path d="M13.36 7.23913C13.0839 7.23913 12.86 7.46299 12.86 7.73913C12.86 8.01527 13.0839 8.23913 13.36 8.23913V7.23913ZM18.64 8.23913C18.9161 8.23913 19.14 8.01527 19.14 7.73913C19.14 7.46299 18.9161 7.23913 18.64 7.23913V8.23913ZM12.48 20.7174C12.2039 20.7174 11.98 20.9412 11.98 21.2174C11.98 21.4935 12.2039 21.7174 12.48 21.7174V20.7174ZM19.52 21.7174C19.7961 21.7174 20.02 21.4935 20.02 21.2174C20.02 20.9412 19.7961 20.7174 19.52 20.7174V21.7174ZM6.91739 16.8298C6.65528 16.7428 6.37234 16.8849 6.28542 17.147C6.19849 17.4091 6.34051 17.692 6.60261 17.7789L6.91739 16.8298ZM7.4024 17.5174L7.24501 17.992L7.24598 17.9923L7.4024 17.5174ZM24.5932 17.5174L24.7496 17.9923L24.7506 17.992L24.5932 17.5174ZM25.393 17.7789C25.6551 17.692 25.7971 17.4091 25.7102 17.147C25.6233 16.8849 25.3403 16.7428 25.0782 16.8298L25.393 17.7789ZM13.36 8.23913H18.64V7.23913H13.36V8.23913ZM6.76 9.97826H25.24V8.97826H6.76V9.97826ZM12.48 21.7174H19.52V20.7174H12.48V21.7174ZM21.22 23.8261V25.1304H22.22V23.8261H21.22ZM21.22 25.1304C21.22 25.8904 21.8455 26.5 22.6 26.5V25.5C22.3865 25.5 22.22 25.3269 22.22 25.1304H21.22ZM22.6 26.5H23.48V25.5H22.6V26.5ZM23.48 26.5C24.2345 26.5 24.86 25.8904 24.86 25.1304H23.86C23.86 25.3269 23.6935 25.5 23.48 25.5V26.5ZM24.86 25.1304V23.8261H23.86V25.1304H24.86ZM7.14 23.8261V25.1304H8.14V23.8261H7.14ZM7.14 25.1304C7.14 25.8904 7.7655 26.5 8.52 26.5V25.5C8.3065 25.5 8.14 25.3269 8.14 25.1304H7.14ZM8.52 26.5H9.4V25.5H8.52V26.5ZM9.4 26.5C10.1545 26.5 10.78 25.8904 10.78 25.1304H9.78C9.78 25.3269 9.6135 25.5 9.4 25.5V26.5ZM10.78 25.1304V23.8261H9.78V25.1304H10.78ZM9.34 21.2174C9.34 21.4159 9.17551 21.587 8.96 21.587V22.587C9.71651 22.587 10.34 21.9794 10.34 21.2174H9.34ZM8.96 21.587C8.74449 21.587 8.58 21.4159 8.58 21.2174H7.58C7.58 21.9794 8.20349 22.587 8.96 22.587V21.587ZM8.58 21.2174C8.58 21.0189 8.74449 20.8478 8.96 20.8478V19.8478C8.20349 19.8478 7.58 20.4554 7.58 21.2174H8.58ZM8.96 20.8478C9.17551 20.8478 9.34 21.0189 9.34 21.2174H10.34C10.34 20.4554 9.71651 19.8478 8.96 19.8478V20.8478ZM23.42 21.2174C23.42 21.4159 23.2555 21.587 23.04 21.587V22.587C23.7965 22.587 24.42 21.9794 24.42 21.2174H23.42ZM23.04 21.587C22.8245 21.587 22.66 21.4159 22.66 21.2174H21.66C21.66 21.9794 22.2835 22.587 23.04 22.587V21.587ZM22.66 21.2174C22.66 21.0189 22.8245 20.8478 23.04 20.8478V19.8478C22.2835 19.8478 21.66 20.4554 21.66 21.2174H22.66ZM23.04 20.8478C23.2555 20.8478 23.42 21.0189 23.42 21.2174H24.42C24.42 20.4554 23.7965 19.8478 23.04 19.8478V20.8478ZM9.4 6.5H22.6V5.5H9.4V6.5ZM22.6 6.5C23.7859 6.5 24.74 7.45131 24.74 8.6087H25.74C25.74 6.88782 24.3269 5.5 22.6 5.5V6.5ZM24.74 8.6087V22.9565H25.74V8.6087H24.74ZM24.74 22.9565C24.74 23.153 24.5735 23.3261 24.36 23.3261V24.3261C25.1145 24.3261 25.74 23.7165 25.74 22.9565H24.74ZM24.36 23.3261H7.64V24.3261H24.36V23.3261ZM7.64 23.3261C7.4265 23.3261 7.26 23.153 7.26 22.9565H6.26C6.26 23.7165 6.8855 24.3261 7.64 24.3261V23.3261ZM7.26 22.9565V8.6087H6.26V22.9565H7.26ZM7.26 8.6087C7.26 7.45131 8.2141 6.5 9.4 6.5V5.5C7.6731 5.5 6.26 6.88782 6.26 8.6087H7.26ZM6.76 14.1957H5.88V15.1957H6.76V14.1957ZM5.88 14.1957C5.6665 14.1957 5.5 14.0226 5.5 13.8261H4.5C4.5 14.5861 5.1255 15.1957 5.88 15.1957V14.1957ZM5.5 13.8261V11.2174H4.5V13.8261H5.5ZM5.5 11.2174C5.5 11.0209 5.6665 10.8478 5.88 10.8478V9.84783C5.1255 9.84783 4.5 10.4574 4.5 11.2174H5.5ZM5.88 10.8478H6.76V9.84783H5.88V10.8478ZM25.24 10.8478H26.12V9.84783H25.24V10.8478ZM26.12 10.8478C26.3335 10.8478 26.5 11.0209 26.5 11.2174H27.5C27.5 10.4574 26.8745 9.84783 26.12 9.84783V10.8478ZM26.5 11.2174V13.8261H27.5V11.2174H26.5ZM26.5 13.8261C26.5 14.0226 26.3335 14.1957 26.12 14.1957V15.1957C26.8745 15.1957 27.5 14.5861 27.5 13.8261H26.5ZM26.12 14.1957H25.24V15.1957H26.12V14.1957ZM6.60261 17.7789L7.24501 17.992L7.55979 17.0428L6.91739 16.8298L6.60261 17.7789ZM7.24598 17.9923C7.74625 18.1571 8.26991 18.2391 8.7928 18.2391V17.2391C8.37408 17.2391 7.95615 17.1734 7.55882 17.0425L7.24598 17.9923ZM8.7928 18.2391H23.2028V17.2391H8.7928V18.2391ZM23.2028 18.2391C23.7257 18.2391 24.2494 18.1571 24.7496 17.9923L24.4368 17.0425C24.0394 17.1734 23.6215 17.2391 23.2028 17.2391V18.2391ZM24.7506 17.992L25.393 17.7789L25.0782 16.8298L24.4358 17.0428L24.7506 17.992Z" fill="currentColor"/>
|
3
|
</symbol></svg>
|
|
\ No newline at end of file
|
added
priv/static/svgs/icons_new/travel-train.svg
|
@@ -0,0 1,3 @@
|
1
|
<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><symbol id="item" viewBox="0 0 32 32" >
|
2
|
<path d="M12.2985 24.2335C12.4965 24.041 12.501 23.7245 12.3085 23.5265C12.116 23.3285 11.7995 23.324 11.6015 23.5165L12.2985 24.2335ZM8.90146 26.1415C8.70347 26.334 8.69901 26.6505 8.8915 26.8485C9.084 27.0465 9.40055 27.051 9.59854 26.8585L8.90146 26.1415ZM20.3985 23.5165C20.2005 23.324 19.884 23.3285 19.6915 23.5265C19.499 23.7245 19.5035 24.041 19.7015 24.2335L20.3985 23.5165ZM22.4015 26.8585C22.5995 27.051 22.916 27.0465 23.1085 26.8485C23.301 26.6505 23.2965 26.334 23.0985 26.1415L22.4015 26.8585ZM8.8 9.875V9.375C8.52386 9.375 8.3 9.59886 8.3 9.875H8.8ZM23.2 9.875H23.7C23.7 9.59886 23.4761 9.375 23.2 9.375V9.875ZM23.2 16V16.5C23.4761 16.5 23.7 16.2761 23.7 16H23.2ZM8.8 16H8.3C8.3 16.2761 8.52386 16.5 8.8 16.5V16ZM12.4 7.625C12.1239 7.625 11.9 7.84886 11.9 8.125C11.9 8.40114 12.1239 8.625 12.4 8.625V7.625ZM19.6 8.625C19.8761 8.625 20.1 8.40114 20.1 8.125C20.1 7.84886 19.8761 7.625 19.6 7.625V8.625ZM10.15 25.125C9.87386 25.125 9.65 25.3489 9.65 25.625C9.65 25.9011 9.87386 26.125 10.15 26.125V25.125ZM21.85 26.125C22.1261 26.125 22.35 25.9011 22.35 25.625C22.35 25.3489 22.1261 25.125 21.85 25.125V26.125ZM21.4 24.375C23.6518 24.375 25.5 22.5981 25.5 20.375H24.5C24.5 22.0194 23.1262 23.375 21.4 23.375V24.375ZM25.5 20.375V10.3125H24.5V20.375H25.5ZM25.5 10.3125C25.5 9.22614 25.3871 7.81574 24.0176 6.72588C22.6969 5.67482 20.2987 5 16 5V6C20.2513 6 22.3531 6.67924 23.3949 7.50834C24.3879 8.29864 24.5 9.29449 24.5 10.3125H25.5ZM16 5C11.7013 5 9.3031 5.67482 7.9824 6.72588C6.61295 7.81574 6.5 9.22614 6.5 10.3125H7.5C7.5 9.29449 7.61205 8.29864 8.6051 7.50834C9.6469 6.67924 11.7487 6 16 6V5ZM6.5 10.3125V20.375H7.5V10.3125H6.5ZM6.5 20.375C6.5 22.5981 8.34823 24.375 10.6 24.375V23.375C8.87377 23.375 7.5 22.0194 7.5 20.375H6.5ZM10.6 24.375H21.4V23.375H10.6V24.375ZM11.45 19.0625C11.45 19.498 11.0828 19.875 10.6 19.875V20.875C11.6084 20.875 12.45 20.0767 12.45 19.0625H11.45ZM10.6 19.875C10.1172 19.875 9.75 19.498 9.75 19.0625H8.75C8.75 20.0767 9.59164 20.875 10.6 20.875V19.875ZM9.75 19.0625C9.75 18.627 10.1172 18.25 10.6 18.25V17.25C9.59164 17.25 8.75 18.0483 8.75 19.0625H9.75ZM10.6 18.25C11.0828 18.25 11.45 18.627 11.45 19.0625H12.45C12.45 18.0483 11.6084 17.25 10.6 17.25V18.25ZM22.25 19.0625C22.25 19.498 21.8828 19.875 21.4 19.875V20.875C22.4084 20.875 23.25 20.0767 23.25 19.0625H22.25ZM21.4 19.875C20.9172 19.875 20.55 19.498 20.55 19.0625H19.55C19.55 20.0767 20.3916 20.875 21.4 20.875V19.875ZM20.55 19.0625C20.55 18.627 20.9172 18.25 21.4 18.25V17.25C20.3916 17.25 19.55 18.0483 19.55 19.0625H20.55ZM21.4 18.25C21.8828 18.25 22.25 18.627 22.25 19.0625H23.25C23.25 18.0483 22.4084 17.25 21.4 17.25V18.25ZM11.6015 23.5165L8.90146 26.1415L9.59854 26.8585L12.2985 24.2335L11.6015 23.5165ZM19.7015 24.2335L22.4015 26.8585L23.0985 26.1415L20.3985 23.5165L19.7015 24.2335ZM8.8 10.375H23.2V9.375H8.8V10.375ZM22.7 9.875V16H23.7V9.875H22.7ZM23.2 15.5H8.8V16.5H23.2V15.5ZM9.3 16V9.875H8.3V16H9.3ZM12.4 8.625H19.6V7.625H12.4V8.625ZM10.15 26.125H21.85V25.125H10.15V26.125Z" fill="currentColor"/>
|
3
|
</symbol></svg>
|
|
\ No newline at end of file
|