administrate-field-lazy_has_many 0.1.0 → 0.1.1
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/CHANGELOG.md +4 -0
- data/administrate-field-lazy_has_many.gemspec +1 -1
- data/app/assets/stylesheets/administrate-field-lazy_has_many/application.css +26 -4
- data/lib/administrate/field/lazy_has_many/version.rb +1 -1
- data/lib/administrate/field/lazy_has_many.rb +1 -1
- metadata +6 -7
- data/app/assets/stylesheets/administrate-field-lazy_has_many/components/lazy_has_many.css +0 -26
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f06b41f7991819f32fe913644b1e688511d303fe35bdf94e1b9338afa19cf68a
|
4
|
+
data.tar.gz: e1f0eb6aa1b9588d74332b098820639cbc250faed61c1044ee531cc697e4aaae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2910d40de2565dc18ac67f2aa3b8e257e27dd2fee45da8a474a8f272f5ac4188d4c674c736d5a74756a0b8b6b46a9fc37ac87c7dcc735c3f18877aa124c4fb93
|
7
|
+
data.tar.gz: ad1c43d718d11e56696665f09fcece54e8fbc2266b58b92553d2bcfcfa39163a1ad0fdc406af02a34e015c3c652243f411d83bbbb6593f9573c854a4ba460291
|
data/CHANGELOG.md
CHANGED
@@ -25,5 +25,5 @@ Gem::Specification.new do |spec|
|
|
25
25
|
spec.add_development_dependency 'bundler', '~> 2.0'
|
26
26
|
spec.add_development_dependency 'minitest', '~> 5.0'
|
27
27
|
spec.add_development_dependency 'rails'
|
28
|
-
spec.add_development_dependency 'rake', '
|
28
|
+
spec.add_development_dependency 'rake', '>= 12.3.3'
|
29
29
|
end
|
@@ -1,4 +1,26 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
.selectize-control::before{
|
2
|
+
-moz-transition: opacity 0.2s;
|
3
|
+
-webkit-transition: opacity 0.2s;
|
4
|
+
transition: opacity 0.2s;
|
5
|
+
content: " ";
|
6
|
+
z-index: 2;
|
7
|
+
position: absolute;
|
8
|
+
display: block;
|
9
|
+
top: 50%;
|
10
|
+
right: 34px;
|
11
|
+
width: 16px;
|
12
|
+
height: 16px;
|
13
|
+
margin: -8px 0 0 0;
|
14
|
+
border: 10px solid #f3f3f3;
|
15
|
+
border-top: 10px solid #5e5858;
|
16
|
+
border-radius: 50%;
|
17
|
+
opacity: 0;
|
18
|
+
animation: spin 2s linear infinite;
|
19
|
+
}
|
20
|
+
.selectize-control.loading::before{
|
21
|
+
opacity: 0.4;
|
22
|
+
}
|
23
|
+
@keyframes spin {
|
24
|
+
0% { transform: rotate(0deg); }
|
25
|
+
100% { transform: rotate(360deg); }
|
26
|
+
}
|
@@ -9,7 +9,7 @@ module Administrate
|
|
9
9
|
include LazyHasManyVersion
|
10
10
|
|
11
11
|
class Engine < ::Rails::Engine
|
12
|
-
Administrate::Engine.add_stylesheet 'administrate-field-
|
12
|
+
Administrate::Engine.add_stylesheet 'administrate-field-lazy_has_many/application'
|
13
13
|
|
14
14
|
isolate_namespace Administrate
|
15
15
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: administrate-field-lazy_has_many
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aftab Akram
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-10-
|
11
|
+
date: 2021-10-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: administrate
|
@@ -70,16 +70,16 @@ dependencies:
|
|
70
70
|
name: rake
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
|
-
- - "
|
73
|
+
- - ">="
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version:
|
75
|
+
version: 12.3.3
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
|
-
- - "
|
80
|
+
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version:
|
82
|
+
version: 12.3.3
|
83
83
|
description:
|
84
84
|
email:
|
85
85
|
- aftabakram04@gmail.com
|
@@ -96,7 +96,6 @@ files:
|
|
96
96
|
- Rakefile
|
97
97
|
- administrate-field-lazy_has_many.gemspec
|
98
98
|
- app/assets/stylesheets/administrate-field-lazy_has_many/application.css
|
99
|
-
- app/assets/stylesheets/administrate-field-lazy_has_many/components/lazy_has_many.css
|
100
99
|
- app/views/fields/lazy_belongs_to/_form.html.erb
|
101
100
|
- app/views/fields/lazy_belongs_to/_index.html.erb
|
102
101
|
- app/views/fields/lazy_belongs_to/_show.html.erb
|
@@ -1,26 +0,0 @@
|
|
1
|
-
.selectize-control::before{
|
2
|
-
-moz-transition: opacity 0.2s;
|
3
|
-
-webkit-transition: opacity 0.2s;
|
4
|
-
transition: opacity 0.2s;
|
5
|
-
content: " ";
|
6
|
-
z-index: 2;
|
7
|
-
position: absolute;
|
8
|
-
display: block;
|
9
|
-
top: 50%;
|
10
|
-
right: 34px;
|
11
|
-
width: 16px;
|
12
|
-
height: 16px;
|
13
|
-
margin: -8px 0 0 0;
|
14
|
-
border: 10px solid #f3f3f3;
|
15
|
-
border-top: 10px solid #5e5858;
|
16
|
-
border-radius: 50%;
|
17
|
-
opacity: 0;
|
18
|
-
animation: spin 2s linear infinite;
|
19
|
-
}
|
20
|
-
.selectize-control.loading::before{
|
21
|
-
opacity: 0.4;
|
22
|
-
}
|
23
|
-
@keyframes spin {
|
24
|
-
0% { transform: rotate(0deg); }
|
25
|
-
100% { transform: rotate(360deg); }
|
26
|
-
}
|