vime_view_components 5.0.1 → 5.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/vime/ui/controls/caption_control.rb +2 -2
- data/lib/vime/ui/controls/fullscreen_control.rb +2 -2
- data/lib/vime/ui/controls/mute_control.rb +3 -3
- data/lib/vime/ui/controls/pip_control.rb +2 -2
- data/lib/vime/ui/controls/playback_control.rb +2 -2
- data/lib/vime/ui/controls/volume_control.rb +3 -3
- data/lib/vime/ui/settings/menu_item.rb +1 -1
- data/lib/vime/ui/settings/menu_radio.rb +1 -1
- data/lib/vime_view_components/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 514c7d62494f1cc0d3cb0a766f2582a15dd594b574eca7e754a1fa1cf541d26a
|
4
|
+
data.tar.gz: 3e38bce81ae81e8deb913f50bda22ee6e567c54ef0f51531a36a838a07318713
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a40fecb2504f468c3fd62e8ff45c193ab4cf7b70a89ad86fa432c561d5ee58f89bf1e36e385a0b9582fafe8138e745c1cc34b7f552ce3d6ac24d0b741fa4b810
|
7
|
+
data.tar.gz: 6c444acbaa954be63795aec981cb060b7f74de7ce00d3b78cef79e74f8c753aa824bb9549d4a06a11a775cf73603c9faa94ee575f78add9b838c6f6eb242e5f6
|
@@ -6,10 +6,10 @@ module Vime
|
|
6
6
|
module Ui
|
7
7
|
module Controls
|
8
8
|
class CaptionControl < Component
|
9
|
-
option :hide_icon, type: Types::String, default: -> { "
|
9
|
+
option :hide_icon, type: Types::String, default: -> { "captions-off" }
|
10
10
|
option :hide_tooltip, type: Types::Bool, default: -> { false }
|
11
11
|
option :keys, type: Types::String, default: -> { "c" }
|
12
|
-
option :show_icon, type: Types::String, default: -> { "
|
12
|
+
option :show_icon, type: Types::String, default: -> { "captions-on" }
|
13
13
|
option :tooltip_direction, type: Types::TooltipDirection, optional: true
|
14
14
|
option :tooltip_position, type: Types::TooltipPosition, default: -> { "top" }
|
15
15
|
|
@@ -6,8 +6,8 @@ module Vime
|
|
6
6
|
module Ui
|
7
7
|
module Controls
|
8
8
|
class FullscreenControl < Component
|
9
|
-
option :enter_icon, type: Types::String, default: -> { "
|
10
|
-
option :exit_icon, type: Types::String, default: -> { "
|
9
|
+
option :enter_icon, type: Types::String, default: -> { "enter-fullscreen" }
|
10
|
+
option :exit_icon, type: Types::String, default: -> { "exit-fullscreen" }
|
11
11
|
option :hide_tooltip, type: Types::Bool, default: -> { false }
|
12
12
|
option :keys, type: Types::String, optional: true, default: -> { "f" }
|
13
13
|
option :tooltip_direction, type: Types::TooltipDirection, optional: true
|
@@ -7,10 +7,10 @@ module Vime
|
|
7
7
|
module Controls
|
8
8
|
class MuteControl < Component
|
9
9
|
option :hide_tooltip, type: Types::Bool, default: -> { false }
|
10
|
-
option :high_volume_icon, type: Types::String, default: -> { "
|
10
|
+
option :high_volume_icon, type: Types::String, default: -> { "volume-high" }
|
11
11
|
option :keys, type: Types::String.optional, default: -> { "m" }
|
12
|
-
option :low_volume_icon, type: Types::String, default: -> { "
|
13
|
-
option :muted_icon, type: Types::String, default: -> { "
|
12
|
+
option :low_volume_icon, type: Types::String, default: -> { "volume-low" }
|
13
|
+
option :muted_icon, type: Types::String, default: -> { "volume-mute" }
|
14
14
|
option :tooltip_direction, type: Types::TooltipDirection, optional: true
|
15
15
|
option :tooltip_position, type: Types::TooltipPosition, default: -> { "top" }
|
16
16
|
|
@@ -6,8 +6,8 @@ module Vime
|
|
6
6
|
module Ui
|
7
7
|
module Controls
|
8
8
|
class PipControl < Component
|
9
|
-
option :enter_icon, type: Types::String, default: -> { "
|
10
|
-
option :exit_icon, type: Types::String, default: -> { "
|
9
|
+
option :enter_icon, type: Types::String, default: -> { "enter-pip" }
|
10
|
+
option :exit_icon, type: Types::String, default: -> { "exit-pip" }
|
11
11
|
option :hide_tooltip, type: Types::Bool, default: -> { false }
|
12
12
|
option :keys, type: Types::String, default: -> { "p" }
|
13
13
|
option :tooltip_direction, type: Types::TooltipDirection, optional: true
|
@@ -8,8 +8,8 @@ module Vime
|
|
8
8
|
class PlaybackControl < Component
|
9
9
|
option :hide_tooltip, type: Types::Bool, default: -> { false }
|
10
10
|
option :keys, type: Types::String.optional, default: -> { "k" }
|
11
|
-
option :play_icon, type: Types::String, default: -> { "
|
12
|
-
option :pause_icon, type: Types::String, default: -> { "
|
11
|
+
option :play_icon, type: Types::String, default: -> { "play" }
|
12
|
+
option :pause_icon, type: Types::String, default: -> { "pause" }
|
13
13
|
option :tooltip_direction, type: Types::TooltipDirection, optional: true
|
14
14
|
option :tooltip_position, type: Types::TooltipPosition, default: -> { "top" }
|
15
15
|
|
@@ -7,10 +7,10 @@ module Vime
|
|
7
7
|
module Controls
|
8
8
|
class VolumeControl < Component
|
9
9
|
option :hide_tooltip, type: Types::Bool, default: -> { false }
|
10
|
-
option :high_volume_icon, type: Types::String, default: -> { "
|
11
|
-
option :low_volume_icon, type: Types::String, default: -> { "
|
10
|
+
option :high_volume_icon, type: Types::String, default: -> { "volume-high" }
|
11
|
+
option :low_volume_icon, type: Types::String, default: -> { "volume-low" }
|
12
12
|
option :mute_keys, type: Types::String, default: -> { "m" }
|
13
|
-
option :muted_icon, type: Types::String, default: -> { "
|
13
|
+
option :muted_icon, type: Types::String, default: -> { "volume-mute" }
|
14
14
|
option :no_keyboard, type: Types::Bool, default: -> { false }
|
15
15
|
option :tooltip_direction, type: Types::TooltipDirection, optional: true
|
16
16
|
option :tooltip_position, type: Types::TooltipPosition, default: -> { "top" }
|
@@ -8,7 +8,7 @@ module Vime
|
|
8
8
|
class MenuItem < Component
|
9
9
|
option :badge, type: Types::String, optional: true
|
10
10
|
option :checked, type: Types::Bool, optional: true
|
11
|
-
option :checked_icon, type: Types::String, default: -> { "
|
11
|
+
option :checked_icon, type: Types::String, default: -> { "checkmark" }
|
12
12
|
option :expanded, type: Types::Bool, optional: true
|
13
13
|
option :hidden, type: Types::Bool, default: -> { false }
|
14
14
|
option :hint, type: Types::String, optional: true
|
@@ -8,7 +8,7 @@ module Vime
|
|
8
8
|
class MenuRadio < Component
|
9
9
|
option :badge, type: Types::String, optional: true
|
10
10
|
option :checked, type: Types::Bool, default: -> { false }
|
11
|
-
option :checked_icon, type: Types::String, default: -> { "
|
11
|
+
option :checked_icon, type: Types::String, default: -> { "checkmark" }
|
12
12
|
option :label, type: Types::String
|
13
13
|
option :value, type: Types::String
|
14
14
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vime_view_components
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.
|
4
|
+
version: 5.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Asger Behncke Jacobsen
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2021-
|
12
|
+
date: 2021-06-17 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: dry-initializer
|