lotus_admin 1.4.1 → 1.4.2
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/README.md +7 -0
- data/app/assets/javascripts/lotus_admin/application.js +2 -0
- data/app/assets/javascripts/lotus_admin/customizations.js.coffee +2 -0
- data/app/assets/stylesheets/lotus_admin/_customizations.scss +2 -0
- data/app/assets/stylesheets/lotus_admin/application.css.scss +2 -0
- data/lib/lotus_admin/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f875dee3e17523cc5bbfa81c52e4b9fe17cb8c6cc3bb2616edd8178b1c084ee2
|
|
4
|
+
data.tar.gz: 6180d4fe36ed58adffee854b395836ca62cbd3917956db8632464263db53b449
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fb90f06dc01af25524ad013876c92fd8a38ab6786a42f3a98fc0092784aab930c21154d023ba5f8d4703521545925a0edbd52420db7b13e4c9f59b3c3b85603c
|
|
7
|
+
data.tar.gz: b844b0fbaf29cbabba47a12965f6c61ba7021b65ce37fbc007816903d3d339a00554c644954358b2ba6e883c213704337124a2a53cfc716c8b43783c50d4f5ad
|
data/README.md
CHANGED
|
@@ -53,6 +53,13 @@ There are many partials and SCSS variables that can be overwritten to customize
|
|
|
53
53
|
|
|
54
54
|
To get started, provide any SCSS variables in a file at `app/assets/stylesheets/lotus_admin/_variables.scss`.
|
|
55
55
|
|
|
56
|
+
There are two assets that can be overwritten as needed to inject dependencies and custom functionality.
|
|
57
|
+
|
|
58
|
+
* `app/assets/stylesheets/lotus_admin/customizations.scss`
|
|
59
|
+
* `app/assets/javascripts/lotus_admin/customizations.js`
|
|
60
|
+
|
|
61
|
+
Feel free to install any 3rd party libraries for front end work in these and customize!
|
|
62
|
+
|
|
56
63
|
## Configuration
|
|
57
64
|
You may configure the engine by providing an initializer:
|
|
58
65
|
|
data/lib/lotus_admin/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lotus_admin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Millsaps-Brewer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-03
|
|
11
|
+
date: 2020-04-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -365,8 +365,10 @@ files:
|
|
|
365
365
|
- app/assets/config/lotus_admin_manifest.js
|
|
366
366
|
- app/assets/images/lotus_admin/profile-menu.png
|
|
367
367
|
- app/assets/javascripts/lotus_admin/application.js
|
|
368
|
+
- app/assets/javascripts/lotus_admin/customizations.js.coffee
|
|
368
369
|
- app/assets/javascripts/lotus_admin/datepickers.js.coffee
|
|
369
370
|
- app/assets/javascripts/lotus_admin/filters.js.coffee
|
|
371
|
+
- app/assets/stylesheets/lotus_admin/_customizations.scss
|
|
370
372
|
- app/assets/stylesheets/lotus_admin/_variables.scss
|
|
371
373
|
- app/assets/stylesheets/lotus_admin/application.css.scss
|
|
372
374
|
- app/assets/stylesheets/lotus_admin/components/_alerts.scss
|