administrate-bootstrap-theme 0.2.2 → 1.0.0

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.
Files changed (66) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +64 -32
  3. data/app/assets/javascripts/administrate-bootstrap-theme/{bootstrap/bootstrap.bundle.js → bootstrap.bundle.js} +910 -857
  4. data/app/assets/stylesheets/administrate-bootstrap-theme/_base.scss +2 -14
  5. data/app/assets/stylesheets/administrate-bootstrap-theme/_variables.scss +4 -0
  6. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_card.scss +7 -6
  7. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_carousel.scss +2 -2
  8. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_dropdown.scss +4 -4
  9. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_functions.scss +94 -3
  10. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_grid.scss +11 -0
  11. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_helpers.scss +2 -0
  12. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_images.scss +1 -1
  13. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_mixins.scss +1 -0
  14. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_modal.scss +5 -15
  15. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_navbar.scss +30 -1
  16. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_offcanvas.scss +8 -2
  17. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_placeholders.scss +51 -0
  18. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_popover.scss +10 -10
  19. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_reboot.scss +12 -8
  20. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_root.scss +39 -2
  21. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_tables.scss +1 -1
  22. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_toasts.scss +3 -3
  23. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_tooltip.scss +4 -4
  24. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_transitions.scss +6 -0
  25. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_utilities.scss +44 -8
  26. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_variables.scss +189 -24
  27. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/bootstrap-grid.scss +1 -1
  28. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/bootstrap-reboot.scss +1 -1
  29. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/bootstrap-utilities.scss +1 -1
  30. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/bootstrap.scss +2 -1
  31. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/forms/_floating-labels.scss +3 -1
  32. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/forms/_form-check.scss +1 -1
  33. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/forms/_form-control.scss +1 -1
  34. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/forms/_form-range.scss +1 -1
  35. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/forms/_form-select.scss +3 -0
  36. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/helpers/_stacks.scss +15 -0
  37. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/helpers/_vr.scss +8 -0
  38. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/mixins/_backdrop.scss +14 -0
  39. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/mixins/_buttons.scss +1 -1
  40. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/mixins/_grid.scss +33 -8
  41. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/mixins/_utilities.scss +27 -6
  42. data/app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/vendor/_rfs.scss +55 -13
  43. data/app/assets/stylesheets/administrate-bootstrap-theme/colors/_autumn.scss +8 -0
  44. data/app/assets/stylesheets/administrate-bootstrap-theme/colors/_default.scss +8 -0
  45. data/app/assets/stylesheets/administrate-bootstrap-theme/colors/_forest.scss +9 -0
  46. data/app/assets/stylesheets/administrate-bootstrap-theme/colors/_industrial.scss +8 -0
  47. data/app/assets/stylesheets/administrate-bootstrap-theme/colors/_water.scss +8 -0
  48. data/app/assets/stylesheets/administrate-bootstrap-theme/components/_content_body.scss +21 -1
  49. data/app/assets/stylesheets/administrate-bootstrap-theme/components/_content_header.scss +1 -1
  50. data/app/assets/stylesheets/administrate-bootstrap-theme/components/_form.scss +2 -0
  51. data/app/assets/stylesheets/administrate-bootstrap-theme/components/_navigation.scss +26 -3
  52. data/app/assets/stylesheets/administrate-bootstrap-theme/components/_pagination.scss +1 -1
  53. data/app/assets/stylesheets/administrate-bootstrap-theme/fonts/_lato.scss +5 -0
  54. data/app/assets/stylesheets/administrate-bootstrap-theme/fonts/_montserrat.scss +5 -0
  55. data/app/assets/stylesheets/administrate-bootstrap-theme/fonts/_open_sans.scss +5 -0
  56. data/app/assets/stylesheets/administrate-bootstrap-theme/fonts/_roboto.scss +5 -0
  57. data/app/assets/stylesheets/administrate-bootstrap-theme/fonts/_source_sans_pro.scss +5 -0
  58. data/app/assets/stylesheets/administrate-bootstrap-theme/theme.scss +10 -61
  59. data/lib/administrate-bootstrap-theme/version.rb +2 -1
  60. data/lib/generators/administrate_bootstrap_theme/install/USAGE +10 -0
  61. data/lib/generators/administrate_bootstrap_theme/install/install_generator.rb +33 -0
  62. data/package.json +2 -3
  63. metadata +38 -10
  64. data/app/assets/javascripts/administrate-bootstrap-theme/flatpickr/flatpickr.js +0 -2673
  65. data/app/assets/javascripts/administrate-bootstrap-theme/theme.js +0 -22
  66. data/app/assets/stylesheets/administrate-bootstrap-theme/flatpickr/flatpickr.scss +0 -791
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: administrate-bootstrap-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mattia Roccoberton
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-15 00:00:00.000000000 Z
11
+ date: 2021-12-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: administrate
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0.14'
27
+ - !ruby/object:Gem::Dependency
28
+ name: sassc
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 2.3.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 2.3.0
27
41
  description: 'A Bootstrap theme for Administrate: clean design, easy to install, customizable'
28
42
  email:
29
43
  - mat@blocknot.es
@@ -34,9 +48,7 @@ files:
34
48
  - MIT-LICENSE
35
49
  - README.md
36
50
  - app/assets/config/administrate-bootstrap-theme_manifest.js
37
- - app/assets/javascripts/administrate-bootstrap-theme/bootstrap/bootstrap.bundle.js
38
- - app/assets/javascripts/administrate-bootstrap-theme/flatpickr/flatpickr.js
39
- - app/assets/javascripts/administrate-bootstrap-theme/theme.js
51
+ - app/assets/javascripts/administrate-bootstrap-theme/bootstrap.bundle.js
40
52
  - app/assets/stylesheets/administrate-bootstrap-theme/_base.scss
41
53
  - app/assets/stylesheets/administrate-bootstrap-theme/_variables.scss
42
54
  - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_accordion.scss
@@ -62,6 +74,7 @@ files:
62
74
  - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_navbar.scss
63
75
  - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_offcanvas.scss
64
76
  - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_pagination.scss
77
+ - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_placeholders.scss
65
78
  - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_popover.scss
66
79
  - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_progress.scss
67
80
  - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/_reboot.scss
@@ -91,10 +104,13 @@ files:
91
104
  - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/helpers/_colored-links.scss
92
105
  - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/helpers/_position.scss
93
106
  - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/helpers/_ratio.scss
107
+ - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/helpers/_stacks.scss
94
108
  - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/helpers/_stretched-link.scss
95
109
  - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/helpers/_text-truncation.scss
96
110
  - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/helpers/_visually-hidden.scss
111
+ - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/helpers/_vr.scss
97
112
  - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/mixins/_alert.scss
113
+ - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/mixins/_backdrop.scss
98
114
  - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/mixins/_border-radius.scss
99
115
  - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/mixins/_box-shadow.scss
100
116
  - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/mixins/_breakpoints.scss
@@ -120,16 +136,27 @@ files:
120
136
  - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/mixins/_visually-hidden.scss
121
137
  - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/utilities/_api.scss
122
138
  - app/assets/stylesheets/administrate-bootstrap-theme/bootstrap/vendor/_rfs.scss
139
+ - app/assets/stylesheets/administrate-bootstrap-theme/colors/_autumn.scss
140
+ - app/assets/stylesheets/administrate-bootstrap-theme/colors/_default.scss
141
+ - app/assets/stylesheets/administrate-bootstrap-theme/colors/_forest.scss
142
+ - app/assets/stylesheets/administrate-bootstrap-theme/colors/_industrial.scss
143
+ - app/assets/stylesheets/administrate-bootstrap-theme/colors/_water.scss
123
144
  - app/assets/stylesheets/administrate-bootstrap-theme/components/_content_body.scss
124
145
  - app/assets/stylesheets/administrate-bootstrap-theme/components/_content_header.scss
125
146
  - app/assets/stylesheets/administrate-bootstrap-theme/components/_form.scss
126
147
  - app/assets/stylesheets/administrate-bootstrap-theme/components/_navigation.scss
127
148
  - app/assets/stylesheets/administrate-bootstrap-theme/components/_pagination.scss
128
- - app/assets/stylesheets/administrate-bootstrap-theme/flatpickr/flatpickr.scss
149
+ - app/assets/stylesheets/administrate-bootstrap-theme/fonts/_lato.scss
150
+ - app/assets/stylesheets/administrate-bootstrap-theme/fonts/_montserrat.scss
151
+ - app/assets/stylesheets/administrate-bootstrap-theme/fonts/_open_sans.scss
152
+ - app/assets/stylesheets/administrate-bootstrap-theme/fonts/_roboto.scss
153
+ - app/assets/stylesheets/administrate-bootstrap-theme/fonts/_source_sans_pro.scss
129
154
  - app/assets/stylesheets/administrate-bootstrap-theme/theme.scss
130
155
  - lib/administrate-bootstrap-theme.rb
131
156
  - lib/administrate-bootstrap-theme/engine.rb
132
157
  - lib/administrate-bootstrap-theme/version.rb
158
+ - lib/generators/administrate_bootstrap_theme/install/USAGE
159
+ - lib/generators/administrate_bootstrap_theme/install/install_generator.rb
133
160
  - package.json
134
161
  homepage: https://github.com/blocknotes/administrate-bootstrap-theme
135
162
  licenses:
@@ -137,7 +164,8 @@ licenses:
137
164
  metadata:
138
165
  homepage_uri: https://github.com/blocknotes/administrate-bootstrap-theme
139
166
  source_code_uri: https://github.com/blocknotes/administrate-bootstrap-theme
140
- post_install_message:
167
+ rubygems_mfa_required: 'true'
168
+ post_install_message:
141
169
  rdoc_options: []
142
170
  require_paths:
143
171
  - lib
@@ -152,8 +180,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
152
180
  - !ruby/object:Gem::Version
153
181
  version: '0'
154
182
  requirements: []
155
- rubygems_version: 3.1.4
156
- signing_key:
183
+ rubygems_version: 3.0.3.1
184
+ signing_key:
157
185
  specification_version: 4
158
186
  summary: Administrate Bootstrap Theme
159
187
  test_files: []