activeadmin_blaze_theme 0.7.10 → 1.1.0

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: f1b6d87b900c42ffc7a7b4a7a33ae6acaf67e53c34ef574774016549cbef66c2
4
- data.tar.gz: 42889705731dc8f37c37af61bd5f88ef7ad819ea610c7045dd5c040d4ea924d0
3
+ metadata.gz: 4da21232d763d121ae8653ac56f5634f8c5c78bf20b91af65005c6210964d54d
4
+ data.tar.gz: fc96ab517d3e4496f5c1d29369f113e7aed9aacd860b8513bd4c30025f6ca41d
5
5
  SHA512:
6
- metadata.gz: ab3212dc089edd18f07ecb58cda6b6df0a3996df2aec511e0eb7340dccc7e0a7f31a8de7cd5ebb2b89927fbbcbb29b265dffe5ea45fc0f8bb336626e2413c139
7
- data.tar.gz: 02d14553a44b076631ab4a14d08a76dc806a3068abc68ad7fd7e76c17c835fb0e8360ea5adcd2b0fcdd122fe7f7bca635e512624d88285607fb2a97003fac0a2
6
+ metadata.gz: 9b1874f54e37a2e45bb0ec08c99f4454452fb5b2a67e25fc3a5fb67a8cfd98f7a34730ed4ad15046bfebd36396f3de11cfadf9fe0ae89c1ac22df91571eaa76c
7
+ data.tar.gz: 1001b09d8a2824f294ace9d5b954fe45ded15522834814d3eb9cb06a5c48269bc57ce1aa4830d75b0cc8fc93f7f47dcacf906732cf2a1c46c8c5365f5342fc2d
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2020 Mattia Roccoberton
1
+ Copyright (c) 2020-2022 Mattia Roccoberton
2
2
 
3
3
  MIT License
4
4
 
data/README.md CHANGED
@@ -2,7 +2,8 @@
2
2
  [![gem version](https://badge.fury.io/rb/activeadmin_blaze_theme.svg)](https://badge.fury.io/rb/activeadmin_blaze_theme)
3
3
  [![gem downloads](https://badgen.net/rubygems/dt/activeadmin_blaze_theme)](https://rubygems.org/gems/activeadmin_blaze_theme)
4
4
  [![linters](https://github.com/blocknotes/activeadmin_blaze_theme/actions/workflows/linters.yml/badge.svg)](https://github.com/blocknotes/activeadmin_blaze_theme/actions/workflows/linters.yml)
5
- [![specs](https://github.com/blocknotes/activeadmin_blaze_theme/actions/workflows/specs.yml/badge.svg)](https://github.com/blocknotes/activeadmin_blaze_theme/actions/workflows/specs.yml)
5
+ [![specs Rails 6.1](https://github.com/blocknotes/activeadmin_blaze_theme/actions/workflows/specs_rails6.1.yml/badge.svg)](https://github.com/blocknotes/activeadmin_blaze_theme/actions/workflows/specs_rails6.1.yml)
6
+ [![specs Rails 7.0](https://github.com/blocknotes/activeadmin_blaze_theme/actions/workflows/specs_rails7.0.yml/badge.svg)](https://github.com/blocknotes/activeadmin_blaze_theme/actions/workflows/specs_rails7.0.yml)
6
7
 
7
8
  A theme for Active Admin based on [Blaze CSS](http://blazecss.com) 3.x
8
9
 
@@ -250,6 +251,10 @@ Index:
250
251
  Edit:
251
252
  ![edit](extra/edit.png)
252
253
 
254
+ ## Changelog
255
+
256
+ The changelog is available [here](CHANGELOG.md).
257
+
253
258
  ## Do you like it? Star it!
254
259
 
255
260
  If you use this component just star it. A developer is more motivated to improve a project when there is some interest. My other [Active Admin components](https://github.com/blocknotes?utf8=✓&tab=repositories&q=activeadmin&type=source).
@@ -31,6 +31,8 @@ body.active_admin {
31
31
  }
32
32
  .ui-datepicker {
33
33
  > .ui-datepicker-header {
34
+ background-color: $bg-header;
35
+ background-image: none;
34
36
  border-bottom: 0 none;
35
37
  border-radius: 0;
36
38
  height: auto;
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActiveAdminBlazeTheme
4
- VERSION = '0.7.10'
4
+ VERSION = '1.1.0'
5
5
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "activeadmin_blaze_theme",
3
- "version": "0.7.6",
3
+ "version": "1.1.0",
4
4
  "description": "A theme for Active Admin based on Blaze CSS 3.x",
5
5
  "author": "Mattia Roccoberton <mat@blocknot.es>",
6
6
  "license": "MIT",
metadata CHANGED
@@ -1,29 +1,49 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activeadmin_blaze_theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.10
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mattia Roccoberton
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-06 00:00:00.000000000 Z
11
+ date: 2023-10-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activeadmin
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '2.0'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '4'
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
25
28
  - !ruby/object:Gem::Version
26
29
  version: '2.0'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '4'
33
+ - !ruby/object:Gem::Dependency
34
+ name: appraisal
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '2.4'
40
+ type: :development
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '2.4'
27
47
  description: An ActiveAdmin theme based on Blaze CSS UI toolkit
28
48
  email:
29
49
  - mat@blocknot.es
@@ -121,6 +141,9 @@ homepage: https://github.com/blocknotes/activeadmin_blaze_theme
121
141
  licenses:
122
142
  - MIT
123
143
  metadata:
144
+ homepage_uri: https://github.com/blocknotes/activeadmin_blaze_theme
145
+ source_code_uri: https://github.com/blocknotes/activeadmin_blaze_theme
146
+ changelog_uri: https://github.com/blocknotes/activeadmin_blaze_theme/blob/main/CHANGELOG.md
124
147
  rubygems_mfa_required: 'true'
125
148
  post_install_message:
126
149
  rdoc_options: []
@@ -130,14 +153,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
130
153
  requirements:
131
154
  - - ">="
132
155
  - !ruby/object:Gem::Version
133
- version: '0'
156
+ version: 2.7.0
134
157
  required_rubygems_version: !ruby/object:Gem::Requirement
135
158
  requirements:
136
159
  - - ">="
137
160
  - !ruby/object:Gem::Version
138
161
  version: '0'
139
162
  requirements: []
140
- rubygems_version: 3.1.6
163
+ rubygems_version: 3.4.19
141
164
  signing_key:
142
165
  specification_version: 4
143
166
  summary: ActiveAdmin Blaze Theme