isomorfeus-react 16.12.22 → 16.12.23

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d65c796b51f3f092183c852451e9b6f6f5ccaf317ebf8b86bae0e9e5b5cf153c
4
- data.tar.gz: b5c052732a73c91f17b40822a92739508bfb0eae3214015e801d535385f67820
3
+ metadata.gz: 0b0036481e21b2135112831ebf7aee76c904bcd48b3974f1011ca602131f8cc8
4
+ data.tar.gz: fa116a1c8b7d2a24f81e4c112141c23350e6d0eb2bafe028e1e6f2e7f1edcca4
5
5
  SHA512:
6
- metadata.gz: 0d96621250130c607b767a62b5110dd7d9ff77a26a7d21f7c3ca848e304af9dca76a093620b17bfb585fd7696ab5faeccd27ff677fe04cff06f67c7ea64203af
7
- data.tar.gz: d79bc09fa47a16b566877ca6e4621c6ae4516d5c473eca02f11d0a73c953b3cad9c7e6b3b4e8e116a325c4bfee34bb8fd55c9d43898a763d92f48f439725b12d
6
+ metadata.gz: efe98461b8ec364858ab1b96a09c5b1fc0425089dedf7de79739ff8794a5324c3af31f6adafb412dbe0302b01ac2d1c6f829ea5a6456453c79cb938f49492056
7
+ data.tar.gz: 8de49d95da87fd8e9038378e3f10497ac6cab5d02840ee1a14aa8d97ee97bef7530a56add6df06b4001f6287d464a49027ee4922037aa4b03f299670eee247f8
@@ -14,7 +14,7 @@ if RUBY_ENGINE == 'opal'
14
14
  require 'browser/element'
15
15
  end
16
16
 
17
- require 'isomorfeus/config'
17
+ require 'isomorfeus/react_config'
18
18
 
19
19
  # allow mounting of components
20
20
  if Isomorfeus.on_browser?
@@ -135,7 +135,7 @@ else
135
135
  require 'isomorfeus-redux'
136
136
  require 'isomorfeus-speednode'
137
137
  require 'react/version'
138
- require 'isomorfeus/config'
138
+ require 'isomorfeus/react_config'
139
139
 
140
140
  # props
141
141
  require 'isomorfeus/props/validate_hash_proxy'
@@ -5,8 +5,8 @@ module LucidApp
5
5
  base.extend(::LucidApp::NativeLucidComponentConstructor)
6
6
  base.extend(::LucidApp::NativeComponentConstructor)
7
7
  base.extend(::LucidPropDeclaration::Mixin)
8
- base.extend(::LucidComponent::EnvironmentSupport)
9
- base.include(::LucidComponent::EnvironmentSupport)
8
+ base.extend(::Isomorfeus::ExecutionEnvironmentHelpers)
9
+ base.include(::Isomorfeus::ExecutionEnvironmentHelpers)
10
10
  base.include(::React::Component::Elements)
11
11
  base.include(::React::Component::Api)
12
12
  base.include(::React::Component::Callbacks)
@@ -5,8 +5,8 @@ module LucidComponent
5
5
  base.extend(::LucidComponent::NativeLucidComponentConstructor)
6
6
  base.extend(::LucidComponent::NativeComponentConstructor)
7
7
  base.extend(::LucidPropDeclaration::Mixin)
8
- base.extend(::LucidComponent::EnvironmentSupport)
9
- base.include(::LucidComponent::EnvironmentSupport)
8
+ base.extend(::Isomorfeus::ExecutionEnvironmentHelpers)
9
+ base.include(::Isomorfeus::ExecutionEnvironmentHelpers)
10
10
  base.include(::React::Component::Elements)
11
11
  base.include(::React::Component::Api)
12
12
  base.include(::React::Component::Callbacks)
@@ -5,8 +5,8 @@ module LucidFunc
5
5
  base.include(::React::Component::Features)
6
6
  base.include(::LucidFunc::Initializer)
7
7
  base.include(::React::FunctionComponent::Api)
8
- base.extend(::LucidComponent::EnvironmentSupport)
9
- base.include(::LucidComponent::EnvironmentSupport)
8
+ base.extend(::Isomorfeus::ExecutionEnvironmentHelpers)
9
+ base.include(::Isomorfeus::ExecutionEnvironmentHelpers)
10
10
  base.extend(::LucidFunc::NativeComponentConstructor)
11
11
  base.include(::LucidComponent::Api)
12
12
  end
@@ -6,8 +6,8 @@ module LucidMaterial
6
6
  base.extend(::LucidApp::NativeLucidComponentConstructor)
7
7
  base.extend(::LucidMaterial::App::NativeComponentConstructor)
8
8
  base.extend(::LucidPropDeclaration::Mixin)
9
- base.extend(::LucidComponent::EnvironmentSupport)
10
- base.include(::LucidComponent::EnvironmentSupport)
9
+ base.extend(::Isomorfeus::ExecutionEnvironmentHelpers)
10
+ base.include(::Isomorfeus::ExecutionEnvironmentHelpers)
11
11
  base.include(::React::Component::Elements)
12
12
  base.include(::React::Component::Api)
13
13
  base.include(::React::Component::Callbacks)
@@ -6,8 +6,8 @@ module LucidMaterial
6
6
  base.extend(::LucidComponent::NativeLucidComponentConstructor)
7
7
  base.extend(::LucidMaterial::Component::NativeComponentConstructor)
8
8
  base.extend(::LucidPropDeclaration::Mixin)
9
- base.extend(::LucidComponent::EnvironmentSupport)
10
- base.include(::LucidComponent::EnvironmentSupport)
9
+ base.extend(::Isomorfeus::ExecutionEnvironmentHelpers)
10
+ base.include(::Isomorfeus::ExecutionEnvironmentHelpers)
11
11
  base.include(::React::Component::Elements)
12
12
  base.include(::React::Component::Api)
13
13
  base.include(::React::Component::Callbacks)
@@ -6,8 +6,8 @@ module LucidMaterial
6
6
  base.include(::React::Component::Features)
7
7
  base.include(::LucidFunc::Initializer)
8
8
  base.include(::React::FunctionComponent::Api)
9
- base.extend(::LucidComponent::EnvironmentSupport)
10
- base.include(::LucidComponent::EnvironmentSupport)
9
+ base.extend(::Isomorfeus::ExecutionEnvironmentHelpers)
10
+ base.include(::Isomorfeus::ExecutionEnvironmentHelpers)
11
11
  base.extend(::LucidMaterial::Func::NativeComponentConstructor)
12
12
  base.include(::LucidComponent::Api)
13
13
  end
@@ -1,3 +1,3 @@
1
1
  module React
2
- VERSION = '16.12.22'
2
+ VERSION = '16.12.23'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: isomorfeus-react
3
3
  version: !ruby/object:Gem::Version
4
- version: 16.12.22
4
+ version: 16.12.23
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Biedermann
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-02-20 00:00:00.000000000 Z
11
+ date: 2020-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby
@@ -100,14 +100,14 @@ dependencies:
100
100
  requirements:
101
101
  - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: 4.0.18
103
+ version: 4.0.21
104
104
  type: :runtime
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - "~>"
109
109
  - !ruby/object:Gem::Version
110
- version: 4.0.18
110
+ version: 4.0.21
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: isomorfeus-speednode
113
113
  requirement: !ruby/object:Gem::Requirement
@@ -196,9 +196,9 @@ files:
196
196
  - lib/browser/iterable.rb
197
197
  - lib/isomorfeus-react-material-ui.rb
198
198
  - lib/isomorfeus-react.rb
199
- - lib/isomorfeus/config.rb
200
199
  - lib/isomorfeus/props/validate_hash_proxy.rb
201
200
  - lib/isomorfeus/props/validator.rb
201
+ - lib/isomorfeus/react_config.rb
202
202
  - lib/isomorfeus/react_view_helper.rb
203
203
  - lib/isomorfeus/thread_local_cache.rb
204
204
  - lib/isomorfeus/top_level.rb
@@ -216,7 +216,6 @@ files:
216
216
  - lib/isomorfeus_react/lucid_component/class_store_proxy.rb
217
217
  - lib/isomorfeus_react/lucid_component/component_class_store_defaults.rb
218
218
  - lib/isomorfeus_react/lucid_component/component_instance_store_defaults.rb
219
- - lib/isomorfeus_react/lucid_component/environment_support.rb
220
219
  - lib/isomorfeus_react/lucid_component/initializer.rb
221
220
  - lib/isomorfeus_react/lucid_component/instance_store_proxy.rb
222
221
  - lib/isomorfeus_react/lucid_component/mixin.rb
@@ -1,11 +0,0 @@
1
- module LucidComponent
2
- module EnvironmentSupport
3
- def on_browser?
4
- Isomorfeus.on_browser?
5
- end
6
-
7
- def on_ssr?
8
- Isomorfeus.on_ssr?
9
- end
10
- end
11
- end