active_element 0.0.9 → 0.0.10

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: f4d28d28ac920165e5c9c80981ffa6c1d165cd6a625e41f887adf3f93534459f
4
- data.tar.gz: bfa35553e5303ef8edec759eca6411a0af4c41dfd8b0eaea05334276ad7e121b
3
+ metadata.gz: 6bb5a62660b8be1c2159d39aa81322af18d9f2df93306fe320853edec9e11cfe
4
+ data.tar.gz: 22e6d034873936f67c4bd674865119caf232b5894864dae02a1a21ecfddd331e
5
5
  SHA512:
6
- metadata.gz: 9804b1aed67d46c950ab9a5a1352534f9c67766c519ff818bd9db885063e3aac6191e08d335783ff038d38dff50b31f5813d454448f52105b31ab2871a10ef2a
7
- data.tar.gz: d93fb9ff37a73b9f4b648b5b63f37b0cd5c4a0650e06261f24ef4ffc094f3c099c43e661f38dca89a7348eb15aac63f94c029892e546c9ecb25751d4925bfa49
6
+ metadata.gz: 662fbfb4a5e57396e6577f8b7d014fc1e47d9cc40481c13b20d21679ad5f2cb44822df29e07e0bf1cb086057dfacb219070e920bb083e9a91e2a470ee4709bad
7
+ data.tar.gz: dced5cd83abd57790c0908b13a175816b6a686a9ace98ff00017e4c3f7e876b88d3aeea5527d8d8753c3687a700a48e6e2c77f5db1aba84361774fae50b9a1e0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- active_element (0.0.9)
4
+ active_element (0.0.10)
5
5
  bootstrap (~> 5.3.0alpha3)
6
6
  kaminari (~> 1.2)
7
7
  paintbrush (~> 0.1.2)
@@ -149,7 +149,7 @@ GEM
149
149
  racc (~> 1.4)
150
150
  orm_adapter (0.5.0)
151
151
  paint (2.3.0)
152
- paintbrush (0.1.2)
152
+ paintbrush (0.1.3)
153
153
  parallel (1.23.0)
154
154
  parser (3.2.2.1)
155
155
  ast (~> 2.4.1)
@@ -192,7 +192,7 @@ GEM
192
192
  actionpack (>= 5.2)
193
193
  railties (>= 5.2)
194
194
  rexml (3.2.5)
195
- rouge (4.1.1)
195
+ rouge (4.1.2)
196
196
  rspec (3.12.0)
197
197
  rspec-core (~> 3.12.0)
198
198
  rspec-expectations (~> 3.12.0)
@@ -270,7 +270,7 @@ GEM
270
270
  i18n (>= 0.5)
271
271
  paint (~> 2.0)
272
272
  thor (1.2.2)
273
- tilt (2.1.0)
273
+ tilt (2.2.0)
274
274
  timeout (0.3.2)
275
275
  tzinfo (2.0.6)
276
276
  concurrent-ruby (~> 1.0)
@@ -6,6 +6,7 @@
6
6
  transition: height 0.5s ease-in-out, background-position 0.8s ease-in-out;
7
7
  background-position: right 1.2rem center;
8
8
  background-repeat: no-repeat;
9
+ z-index: 2000;
9
10
 
10
11
  &.shrink {
11
12
  height: 3rem;
@@ -19,6 +20,11 @@
19
20
  }
20
21
  }
21
22
 
23
+ .main.content {
24
+ top: 10rem;
25
+ position: relative;
26
+ }
27
+
22
28
  td.action-column {
23
29
  width: 2rem;
24
30
  }
@@ -1,4 +1,4 @@
1
- <div class="application-menu sticky-top navbar navbar-dark bg-dark navbar-expand-lg">
1
+ <div class="application-menu position-fixed w-100 navbar navbar-dark bg-dark navbar-expand-lg">
2
2
  <%= render partial: 'active_element/theme/select' %>
3
3
  <div class="container p-0">
4
4
  <a class="navbar-brand" href="#"><%= ActiveElement.application_title %></a>
@@ -49,7 +49,7 @@
49
49
 
50
50
  <%= render_active_element_hook 'active_element/before_content' %>
51
51
 
52
- <div class="content p-3 m-3">
52
+ <div class="main content position-relative ms-5 me-5">
53
53
  <%= yield %>
54
54
  </div>
55
55
 
@@ -33,10 +33,6 @@ module ActiveElement
33
33
 
34
34
  def boolean_value
35
35
  value_from_record
36
- component.controller.render_to_string(
37
- partial: 'active_element/components/fields/boolean',
38
- locals: { value: value_from_record }
39
- )
40
36
  end
41
37
 
42
38
  def geometry_value
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActiveElement
4
- VERSION = '0.0.9'
4
+ VERSION = '0.0.10'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_element
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bob Farrell
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-05-31 00:00:00.000000000 Z
11
+ date: 2023-06-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bootstrap