cm-admin 1.5.9 → 1.5.11

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: 94f9ea02b086e8af0391fd20f7022e27ac569120264a1c3a35933df453ee1116
4
- data.tar.gz: eecd4a2bfdbfd0c5a8638749fdcb6b3fdd196fed10469703caead69daee4febd
3
+ metadata.gz: 8d46388e08f654f888bb33807afaa1eccf7911831f5a47aec2c2ca8051c1e8ea
4
+ data.tar.gz: 79be71a21dc68d7118465c6abbddbf500d68744564d3ea2a002af138e065a41c
5
5
  SHA512:
6
- metadata.gz: c624e3c088c6bf3d19e10a45708a376baffb539911f8a0a7f984f2fae763f3e4a746e9d2a7f70f68944d24423d6969a7c50f08d3300fc45ac3c520608f403542
7
- data.tar.gz: 953765a6b3bf55d8b8dbd85a105469007f107238773562543f8ffc7c97104a6b6529dcbb4580addda3c997ce2036d056887ba72ec103f24a95d0cfb7061a86fa
6
+ metadata.gz: 8fc060fb6bc652c9e3b6abec4d55724aec3af6bb95d37e6827f9ce8e0d71ecce427a96abda152a39c5e3be9c344a3c9f74bf9d4c76c375fe228b2fb9fd779dca
7
+ data.tar.gz: d67ce654a076de309bdb53bf8fd62e90ac839f144ac9e8c2861be231b87db122fad71f65536a19e09ff018c81ae5a4048a1f38769d1fdab776d0885a237d44ec
@@ -0,0 +1,61 @@
1
+ # .github/workflows/push_gem.yml
2
+ name: Push Gem
3
+
4
+ on:
5
+ workflow_dispatch:
6
+ inputs:
7
+ bump_type:
8
+ type: choice
9
+ description: "Bump Type ( Choosing None will bump build number and keep the same version )"
10
+ default: "patch"
11
+ options:
12
+ - patch
13
+ - minor
14
+ - major
15
+
16
+
17
+ permissions:
18
+ contents: read
19
+
20
+ jobs:
21
+ push:
22
+ name: Push gem to RubyGems.org
23
+ runs-on: ubuntu-latest
24
+
25
+ permissions:
26
+ id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
27
+ contents: write # IMPORTANT: this permission is required for `rake release` to push the release tag
28
+
29
+ steps:
30
+ # Set up
31
+ - uses: actions/checkout@v4
32
+
33
+ - name: set git config
34
+ env:
35
+ GH_TOKEN: ${{ github.token }}
36
+ run: |
37
+ git config --global user.email "${GITHUB_ACTOR_ID}+${GITHUB_ACTOR}@users.noreply.github.com"
38
+ git config --global user.name "$(gh api /users/${GITHUB_ACTOR} | jq .name -r)"
39
+ git config -l
40
+
41
+
42
+ - name: Set up Ruby
43
+ uses: ruby/setup-ruby@v1
44
+ with:
45
+ bundler-cache: true
46
+ ruby-version: ruby
47
+
48
+ - name: Install the gem-release
49
+ run: gem install gem-release
50
+
51
+ - name: Remove lock on bundle
52
+ run: bundle config set frozen false
53
+
54
+ - name: Bump the gem
55
+ run: gem bump ${{ github.events.inputs.bump_type }}
56
+
57
+ - name: Commit the new version
58
+ run: git push
59
+
60
+ # Release
61
+ - uses: rubygems/release-gem@v1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cm-admin (1.5.9)
4
+ cm-admin (1.5.10)
5
5
  caxlsx_rails
6
6
  cocoon (~> 1.2.15)
7
7
  csv-importer (~> 0.8.2)
@@ -130,6 +130,7 @@ GEM
130
130
  marcel (1.0.4)
131
131
  method_source (1.1.0)
132
132
  mini_mime (1.1.5)
133
+ mini_portile2 (2.8.7)
133
134
  minitest (5.18.1)
134
135
  net-imap (0.4.11)
135
136
  date
@@ -141,8 +142,13 @@ GEM
141
142
  net-smtp (0.5.0)
142
143
  net-protocol
143
144
  nio4r (2.7.3)
145
+ nokogiri (1.16.5)
146
+ mini_portile2 (~> 2.8.2)
147
+ racc (~> 1.4)
144
148
  nokogiri (1.16.5-arm64-darwin)
145
149
  racc (~> 1.4)
150
+ nokogiri (1.16.5-x86_64-linux)
151
+ racc (~> 1.4)
146
152
  pagy (4.11.0)
147
153
  parallel (1.22.1)
148
154
  parser (3.1.2.1)
@@ -250,6 +256,8 @@ GEM
250
256
  PLATFORMS
251
257
  arm64-darwin-20
252
258
  arm64-darwin-22
259
+ arm64-darwin-23
260
+ ruby
253
261
  x86_64-linux
254
262
 
255
263
  DEPENDENCIES
@@ -265,4 +273,4 @@ DEPENDENCIES
265
273
  slim
266
274
 
267
275
  BUNDLED WITH
268
- 2.2.33
276
+ 2.5.13
@@ -16,8 +16,8 @@
16
16
  border-radius: $radius-4;
17
17
  z-index: 1;
18
18
  &.table-export-popup {
19
- top: 36px;
20
- right: 40px;
19
+ top: -5px;
20
+ right: 50px;
21
21
  width: 156px;
22
22
  padding: 8px 0;
23
23
  .popup-option {
@@ -29,7 +29,7 @@
29
29
  margin-left: 32px;
30
30
  cursor: pointer;
31
31
  &::before {
32
- content: '';
32
+ content: "";
33
33
  position: absolute;
34
34
  top: -5px;
35
35
  left: -16px;
@@ -78,7 +78,9 @@
78
78
  &:focus {
79
79
  border-color: $brand-color !important;
80
80
  outline: 0 !important;
81
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6) !important;
81
+ box-shadow:
82
+ inset 0 1px 1px rgba(0, 0, 0, 0.075),
83
+ 0 0 8px rgba(102, 175, 233, 0.6) !important;
82
84
  }
83
85
  }
84
86
 
@@ -95,7 +97,9 @@
95
97
  &:focus {
96
98
  border-color: $brand-color;
97
99
  outline: 0;
98
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
100
+ box-shadow:
101
+ inset 0 1px 1px rgba(0, 0, 0, 0.075),
102
+ 0 0 8px rgba(102, 175, 233, 0.6);
99
103
  }
100
104
  .select2-selection__rendered {
101
105
  color: #555555;
@@ -192,3 +196,10 @@
192
196
  }
193
197
  }
194
198
  }
199
+
200
+ //TODO: Fixing the filter search height by overriding. But this needs to be fixed on auth. The auth .form-control class styles causing this issue
201
+ .filter-search {
202
+ input {
203
+ height: 31px;
204
+ }
205
+ }
@@ -77,7 +77,7 @@
77
77
  border-bottom: 1px solid var(--bs-border-color);
78
78
  &:hover {
79
79
  .row-action-tool {
80
- visibility: visible;
80
+ display: inline;
81
81
  }
82
82
  }
83
83
  }
@@ -110,7 +110,7 @@
110
110
  z-index: 3 !important;
111
111
  background: transparent;
112
112
  .row-action-tool {
113
- visibility: hidden;
113
+ display: none;
114
114
  position: relative;
115
115
  .popup-card {
116
116
  .popup-option {
@@ -1,3 +1,3 @@
1
1
  module CmAdmin
2
- VERSION = '1.5.9'
2
+ VERSION = '1.5.11'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cm-admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.9
4
+ version: 1.5.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - sajinmp
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2024-06-10 00:00:00.000000000 Z
13
+ date: 2024-06-14 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: caxlsx_rails
@@ -168,6 +168,7 @@ files:
168
168
  - ".github/ISSUE_TEMPLATE/config.yml"
169
169
  - ".github/ISSUE_TEMPLATE/feature_request.md"
170
170
  - ".github/workflows/linters.yml"
171
+ - ".github/workflows/push_gem.yml"
171
172
  - ".gitignore"
172
173
  - ".reek.yml"
173
174
  - ".rspec"
@@ -498,7 +499,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
498
499
  - !ruby/object:Gem::Version
499
500
  version: '0'
500
501
  requirements: []
501
- rubygems_version: 3.2.3
502
+ rubygems_version: 3.5.13
502
503
  signing_key:
503
504
  specification_version: 4
504
505
  summary: CmAdmin is a robust gem designed to assist in creating admin panels for Rails