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 +4 -4
- data/lib/isomorfeus-react.rb +2 -2
- data/lib/isomorfeus/{config.rb → react_config.rb} +0 -0
- data/lib/isomorfeus_react/lucid_app/mixin.rb +2 -2
- data/lib/isomorfeus_react/lucid_component/mixin.rb +2 -2
- data/lib/isomorfeus_react/lucid_func/mixin.rb +2 -2
- data/lib/isomorfeus_react_material/lucid_material/app/mixin.rb +2 -2
- data/lib/isomorfeus_react_material/lucid_material/component/mixin.rb +2 -2
- data/lib/isomorfeus_react_material/lucid_material/func/mixin.rb +2 -2
- data/lib/react/version.rb +1 -1
- metadata +5 -6
- data/lib/isomorfeus_react/lucid_component/environment_support.rb +0 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0b0036481e21b2135112831ebf7aee76c904bcd48b3974f1011ca602131f8cc8
|
|
4
|
+
data.tar.gz: fa116a1c8b7d2a24f81e4c112141c23350e6d0eb2bafe028e1e6f2e7f1edcca4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: efe98461b8ec364858ab1b96a09c5b1fc0425089dedf7de79739ff8794a5324c3af31f6adafb412dbe0302b01ac2d1c6f829ea5a6456453c79cb938f49492056
|
|
7
|
+
data.tar.gz: 8de49d95da87fd8e9038378e3f10497ac6cab5d02840ee1a14aa8d97ee97bef7530a56add6df06b4001f6287d464a49027ee4922037aa4b03f299670eee247f8
|
data/lib/isomorfeus-react.rb
CHANGED
|
@@ -14,7 +14,7 @@ if RUBY_ENGINE == 'opal'
|
|
|
14
14
|
require 'browser/element'
|
|
15
15
|
end
|
|
16
16
|
|
|
17
|
-
require 'isomorfeus/
|
|
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/
|
|
138
|
+
require 'isomorfeus/react_config'
|
|
139
139
|
|
|
140
140
|
# props
|
|
141
141
|
require 'isomorfeus/props/validate_hash_proxy'
|
|
File without changes
|
|
@@ -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(::
|
|
9
|
-
base.include(::
|
|
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(::
|
|
9
|
-
base.include(::
|
|
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(::
|
|
9
|
-
base.include(::
|
|
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(::
|
|
10
|
-
base.include(::
|
|
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(::
|
|
10
|
-
base.include(::
|
|
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(::
|
|
10
|
-
base.include(::
|
|
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
|
data/lib/react/version.rb
CHANGED
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.
|
|
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-
|
|
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.
|
|
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.
|
|
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
|