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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 69a869dca430a5c3fbe7202c19d6cf548395db7aa680beb38d58767972b3fe60
4
- data.tar.gz: 49f1524184c9914208e2c5e2db79e1defe2e593241d06900323aed4e0c932569
3
+ metadata.gz: 514c7d62494f1cc0d3cb0a766f2582a15dd594b574eca7e754a1fa1cf541d26a
4
+ data.tar.gz: 3e38bce81ae81e8deb913f50bda22ee6e567c54ef0f51531a36a838a07318713
5
5
  SHA512:
6
- metadata.gz: c0762296a3631e397fa138339b0b252fdc24cb4ae95dbe4bb1d0aa133ea6b222fd0b1ae341c939919538f65857bab5a34cf1e383ddd06ca0111c9b1b3d2d7fa9
7
- data.tar.gz: f309f10152d4c93827e2f40a9dfcebf6e3ac82f2f429ac456557adc403b32a13508be8197093d1e66c02d641c37384a761804c97c8a76c60fadb656121588142
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: -> { "#vime-captions-off" }
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: -> { "#vime-captions-on" }
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: -> { "#vime-enter-fullscreen" }
10
- option :exit_icon, type: Types::String, default: -> { "#vime-exit-fullscreen" }
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: -> { "#vime-volume-high" }
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: -> { "#vime-volume-low" }
13
- option :muted_icon, type: Types::String, default: -> { "#vime-volume-mute" }
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: -> { "#vime-enter-pip" }
10
- option :exit_icon, type: Types::String, default: -> { "#vime-exit-pip" }
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: -> { "#vime-play" }
12
- option :pause_icon, type: Types::String, default: -> { "#vime-pause" }
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: -> { "#vime-volume-high" }
11
- option :low_volume_icon, type: Types::String, default: -> { "#vime-volume-low" }
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: -> { "#vime-volume-mute" }
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: -> { "#vime-checkmark" }
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: -> { "#vime-checkmark" }
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module VimeViewComponents
4
- VERSION = "5.0.1"
4
+ VERSION = "5.0.2"
5
5
  end
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.1
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-01-09 00:00:00.000000000 Z
12
+ date: 2021-06-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: dry-initializer