administrate-bootstrap-theme 0.1.0 → 0.1.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (112) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +25 -11
  3. data/Rakefile +10 -14
  4. data/app/assets/config/administrate-bootstrap-theme_manifest.js +1 -0
  5. data/app/assets/javascripts/administrate-bootstrap-theme/theme.js +2 -0
  6. data/app/assets/stylesheets/administrate-bootstrap-theme/_base.scss +17 -1
  7. data/app/assets/stylesheets/administrate-bootstrap-theme/components/_content_body.scss +17 -3
  8. data/app/assets/stylesheets/administrate-bootstrap-theme/components/_form.scss +52 -16
  9. data/app/assets/stylesheets/administrate-bootstrap-theme/theme.scss +12 -0
  10. data/lib/administrate-bootstrap-theme/engine.rb +2 -0
  11. data/lib/administrate-bootstrap-theme/version.rb +1 -1
  12. data/node_modules/bootstrap/js/src/alert.js +141 -0
  13. data/node_modules/bootstrap/js/src/base-component.js +46 -0
  14. data/node_modules/bootstrap/js/src/button.js +95 -0
  15. data/node_modules/bootstrap/js/src/carousel.js +624 -0
  16. data/node_modules/bootstrap/js/src/collapse.js +410 -0
  17. data/node_modules/bootstrap/js/src/dom/data.js +57 -0
  18. data/node_modules/bootstrap/js/src/dom/event-handler.js +331 -0
  19. data/node_modules/bootstrap/js/src/dom/manipulator.js +80 -0
  20. data/node_modules/bootstrap/js/src/dom/selector-engine.js +75 -0
  21. data/node_modules/bootstrap/js/src/dropdown.js +543 -0
  22. data/node_modules/bootstrap/js/src/modal.js +582 -0
  23. data/node_modules/bootstrap/js/src/offcanvas.js +279 -0
  24. data/node_modules/bootstrap/js/src/popover.js +171 -0
  25. data/node_modules/bootstrap/js/src/scrollspy.js +319 -0
  26. data/node_modules/bootstrap/js/src/tab.js +220 -0
  27. data/node_modules/bootstrap/js/src/toast.js +219 -0
  28. data/node_modules/bootstrap/js/src/tooltip.js +802 -0
  29. data/node_modules/bootstrap/js/src/util/index.js +253 -0
  30. data/node_modules/bootstrap/js/src/util/sanitizer.js +127 -0
  31. data/node_modules/bootstrap/js/src/util/scrollbar.js +70 -0
  32. data/node_modules/bootstrap/scss/_accordion.scss +116 -0
  33. data/node_modules/bootstrap/scss/_alert.scss +57 -0
  34. data/node_modules/bootstrap/scss/_badge.scss +29 -0
  35. data/node_modules/bootstrap/scss/_breadcrumb.scss +28 -0
  36. data/node_modules/bootstrap/scss/_button-group.scss +139 -0
  37. data/node_modules/bootstrap/scss/_buttons.scss +111 -0
  38. data/node_modules/bootstrap/scss/_card.scss +215 -0
  39. data/node_modules/bootstrap/scss/_carousel.scss +229 -0
  40. data/node_modules/bootstrap/scss/_close.scss +40 -0
  41. data/node_modules/bootstrap/scss/_containers.scss +41 -0
  42. data/node_modules/bootstrap/scss/_dropdown.scss +246 -0
  43. data/node_modules/bootstrap/scss/_forms.scss +9 -0
  44. data/node_modules/bootstrap/scss/_functions.scss +205 -0
  45. data/node_modules/bootstrap/scss/_grid.scss +22 -0
  46. data/node_modules/bootstrap/scss/_helpers.scss +7 -0
  47. data/node_modules/bootstrap/scss/_images.scss +42 -0
  48. data/node_modules/bootstrap/scss/_list-group.scss +174 -0
  49. data/node_modules/bootstrap/scss/_mixins.scss +41 -0
  50. data/node_modules/bootstrap/scss/_modal.scss +237 -0
  51. data/node_modules/bootstrap/scss/_nav.scss +139 -0
  52. data/node_modules/bootstrap/scss/_navbar.scss +306 -0
  53. data/node_modules/bootstrap/scss/_offcanvas.scss +77 -0
  54. data/node_modules/bootstrap/scss/_pagination.scss +64 -0
  55. data/node_modules/bootstrap/scss/_popover.scss +158 -0
  56. data/node_modules/bootstrap/scss/_progress.scss +48 -0
  57. data/node_modules/bootstrap/scss/_reboot.scss +621 -0
  58. data/node_modules/bootstrap/scss/_root.scss +16 -0
  59. data/node_modules/bootstrap/scss/_spinners.scss +69 -0
  60. data/node_modules/bootstrap/scss/_tables.scss +150 -0
  61. data/node_modules/bootstrap/scss/_toasts.scss +51 -0
  62. data/node_modules/bootstrap/scss/_tooltip.scss +115 -0
  63. data/node_modules/bootstrap/scss/_transitions.scss +21 -0
  64. data/node_modules/bootstrap/scss/_type.scss +104 -0
  65. data/node_modules/bootstrap/scss/_utilities.scss +594 -0
  66. data/node_modules/bootstrap/scss/_variables.scss +1464 -0
  67. data/node_modules/bootstrap/scss/bootstrap-grid.scss +65 -0
  68. data/node_modules/bootstrap/scss/bootstrap-reboot.scss +15 -0
  69. data/node_modules/bootstrap/scss/bootstrap-utilities.scss +18 -0
  70. data/node_modules/bootstrap/scss/bootstrap.scss +52 -0
  71. data/node_modules/bootstrap/scss/forms/_floating-labels.scss +61 -0
  72. data/node_modules/bootstrap/scss/forms/_form-check.scss +152 -0
  73. data/node_modules/bootstrap/scss/forms/_form-control.scss +219 -0
  74. data/node_modules/bootstrap/scss/forms/_form-range.scss +91 -0
  75. data/node_modules/bootstrap/scss/forms/_form-select.scss +67 -0
  76. data/node_modules/bootstrap/scss/forms/_form-text.scss +11 -0
  77. data/node_modules/bootstrap/scss/forms/_input-group.scss +121 -0
  78. data/node_modules/bootstrap/scss/forms/_labels.scss +36 -0
  79. data/node_modules/bootstrap/scss/forms/_validation.scss +12 -0
  80. data/node_modules/bootstrap/scss/helpers/_clearfix.scss +3 -0
  81. data/node_modules/bootstrap/scss/helpers/_colored-links.scss +12 -0
  82. data/node_modules/bootstrap/scss/helpers/_position.scss +30 -0
  83. data/node_modules/bootstrap/scss/helpers/_ratio.scss +26 -0
  84. data/node_modules/bootstrap/scss/helpers/_stretched-link.scss +15 -0
  85. data/node_modules/bootstrap/scss/helpers/_text-truncation.scss +7 -0
  86. data/node_modules/bootstrap/scss/helpers/_visually-hidden.scss +8 -0
  87. data/node_modules/bootstrap/scss/mixins/_alert.scss +11 -0
  88. data/node_modules/bootstrap/scss/mixins/_border-radius.scss +78 -0
  89. data/node_modules/bootstrap/scss/mixins/_box-shadow.scss +18 -0
  90. data/node_modules/bootstrap/scss/mixins/_breakpoints.scss +127 -0
  91. data/node_modules/bootstrap/scss/mixins/_buttons.scss +133 -0
  92. data/node_modules/bootstrap/scss/mixins/_caret.scss +64 -0
  93. data/node_modules/bootstrap/scss/mixins/_clearfix.scss +9 -0
  94. data/node_modules/bootstrap/scss/mixins/_container.scss +9 -0
  95. data/node_modules/bootstrap/scss/mixins/_deprecate.scss +10 -0
  96. data/node_modules/bootstrap/scss/mixins/_forms.scss +134 -0
  97. data/node_modules/bootstrap/scss/mixins/_gradients.scss +47 -0
  98. data/node_modules/bootstrap/scss/mixins/_grid.scss +120 -0
  99. data/node_modules/bootstrap/scss/mixins/_image.scss +16 -0
  100. data/node_modules/bootstrap/scss/mixins/_list-group.scss +24 -0
  101. data/node_modules/bootstrap/scss/mixins/_lists.scss +7 -0
  102. data/node_modules/bootstrap/scss/mixins/_pagination.scss +31 -0
  103. data/node_modules/bootstrap/scss/mixins/_reset-text.scss +17 -0
  104. data/node_modules/bootstrap/scss/mixins/_resize.scss +6 -0
  105. data/node_modules/bootstrap/scss/mixins/_table-variants.scss +21 -0
  106. data/node_modules/bootstrap/scss/mixins/_text-truncate.scss +8 -0
  107. data/node_modules/bootstrap/scss/mixins/_transition.scss +26 -0
  108. data/node_modules/bootstrap/scss/mixins/_utilities.scss +68 -0
  109. data/node_modules/bootstrap/scss/mixins/_visually-hidden.scss +29 -0
  110. data/node_modules/bootstrap/scss/utilities/_api.scss +47 -0
  111. data/node_modules/bootstrap/scss/vendor/_rfs.scss +312 -0
  112. metadata +106 -19
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.1.0
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mattia Roccoberton
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-04-18 00:00:00.000000000 Z
11
+ date: 2021-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: administrate
@@ -16,28 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0.15'
19
+ version: '0.14'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '0.15'
27
- - !ruby/object:Gem::Dependency
28
- name: rubocop
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: '0.90'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: '0.90'
26
+ version: '0.14'
41
27
  description: A Bootstrap theme for Administrate
42
28
  email:
43
29
  - mat@blocknot.es
@@ -49,6 +35,7 @@ files:
49
35
  - README.md
50
36
  - Rakefile
51
37
  - app/assets/config/administrate-bootstrap-theme_manifest.js
38
+ - app/assets/javascripts/administrate-bootstrap-theme/theme.js
52
39
  - app/assets/stylesheets/administrate-bootstrap-theme/_base.scss
53
40
  - app/assets/stylesheets/administrate-bootstrap-theme/_variables.scss
54
41
  - app/assets/stylesheets/administrate-bootstrap-theme/components/_content_body.scss
@@ -60,6 +47,106 @@ files:
60
47
  - lib/administrate-bootstrap-theme.rb
61
48
  - lib/administrate-bootstrap-theme/engine.rb
62
49
  - lib/administrate-bootstrap-theme/version.rb
50
+ - node_modules/bootstrap/js/src/alert.js
51
+ - node_modules/bootstrap/js/src/base-component.js
52
+ - node_modules/bootstrap/js/src/button.js
53
+ - node_modules/bootstrap/js/src/carousel.js
54
+ - node_modules/bootstrap/js/src/collapse.js
55
+ - node_modules/bootstrap/js/src/dom/data.js
56
+ - node_modules/bootstrap/js/src/dom/event-handler.js
57
+ - node_modules/bootstrap/js/src/dom/manipulator.js
58
+ - node_modules/bootstrap/js/src/dom/selector-engine.js
59
+ - node_modules/bootstrap/js/src/dropdown.js
60
+ - node_modules/bootstrap/js/src/modal.js
61
+ - node_modules/bootstrap/js/src/offcanvas.js
62
+ - node_modules/bootstrap/js/src/popover.js
63
+ - node_modules/bootstrap/js/src/scrollspy.js
64
+ - node_modules/bootstrap/js/src/tab.js
65
+ - node_modules/bootstrap/js/src/toast.js
66
+ - node_modules/bootstrap/js/src/tooltip.js
67
+ - node_modules/bootstrap/js/src/util/index.js
68
+ - node_modules/bootstrap/js/src/util/sanitizer.js
69
+ - node_modules/bootstrap/js/src/util/scrollbar.js
70
+ - node_modules/bootstrap/scss/_accordion.scss
71
+ - node_modules/bootstrap/scss/_alert.scss
72
+ - node_modules/bootstrap/scss/_badge.scss
73
+ - node_modules/bootstrap/scss/_breadcrumb.scss
74
+ - node_modules/bootstrap/scss/_button-group.scss
75
+ - node_modules/bootstrap/scss/_buttons.scss
76
+ - node_modules/bootstrap/scss/_card.scss
77
+ - node_modules/bootstrap/scss/_carousel.scss
78
+ - node_modules/bootstrap/scss/_close.scss
79
+ - node_modules/bootstrap/scss/_containers.scss
80
+ - node_modules/bootstrap/scss/_dropdown.scss
81
+ - node_modules/bootstrap/scss/_forms.scss
82
+ - node_modules/bootstrap/scss/_functions.scss
83
+ - node_modules/bootstrap/scss/_grid.scss
84
+ - node_modules/bootstrap/scss/_helpers.scss
85
+ - node_modules/bootstrap/scss/_images.scss
86
+ - node_modules/bootstrap/scss/_list-group.scss
87
+ - node_modules/bootstrap/scss/_mixins.scss
88
+ - node_modules/bootstrap/scss/_modal.scss
89
+ - node_modules/bootstrap/scss/_nav.scss
90
+ - node_modules/bootstrap/scss/_navbar.scss
91
+ - node_modules/bootstrap/scss/_offcanvas.scss
92
+ - node_modules/bootstrap/scss/_pagination.scss
93
+ - node_modules/bootstrap/scss/_popover.scss
94
+ - node_modules/bootstrap/scss/_progress.scss
95
+ - node_modules/bootstrap/scss/_reboot.scss
96
+ - node_modules/bootstrap/scss/_root.scss
97
+ - node_modules/bootstrap/scss/_spinners.scss
98
+ - node_modules/bootstrap/scss/_tables.scss
99
+ - node_modules/bootstrap/scss/_toasts.scss
100
+ - node_modules/bootstrap/scss/_tooltip.scss
101
+ - node_modules/bootstrap/scss/_transitions.scss
102
+ - node_modules/bootstrap/scss/_type.scss
103
+ - node_modules/bootstrap/scss/_utilities.scss
104
+ - node_modules/bootstrap/scss/_variables.scss
105
+ - node_modules/bootstrap/scss/bootstrap-grid.scss
106
+ - node_modules/bootstrap/scss/bootstrap-reboot.scss
107
+ - node_modules/bootstrap/scss/bootstrap-utilities.scss
108
+ - node_modules/bootstrap/scss/bootstrap.scss
109
+ - node_modules/bootstrap/scss/forms/_floating-labels.scss
110
+ - node_modules/bootstrap/scss/forms/_form-check.scss
111
+ - node_modules/bootstrap/scss/forms/_form-control.scss
112
+ - node_modules/bootstrap/scss/forms/_form-range.scss
113
+ - node_modules/bootstrap/scss/forms/_form-select.scss
114
+ - node_modules/bootstrap/scss/forms/_form-text.scss
115
+ - node_modules/bootstrap/scss/forms/_input-group.scss
116
+ - node_modules/bootstrap/scss/forms/_labels.scss
117
+ - node_modules/bootstrap/scss/forms/_validation.scss
118
+ - node_modules/bootstrap/scss/helpers/_clearfix.scss
119
+ - node_modules/bootstrap/scss/helpers/_colored-links.scss
120
+ - node_modules/bootstrap/scss/helpers/_position.scss
121
+ - node_modules/bootstrap/scss/helpers/_ratio.scss
122
+ - node_modules/bootstrap/scss/helpers/_stretched-link.scss
123
+ - node_modules/bootstrap/scss/helpers/_text-truncation.scss
124
+ - node_modules/bootstrap/scss/helpers/_visually-hidden.scss
125
+ - node_modules/bootstrap/scss/mixins/_alert.scss
126
+ - node_modules/bootstrap/scss/mixins/_border-radius.scss
127
+ - node_modules/bootstrap/scss/mixins/_box-shadow.scss
128
+ - node_modules/bootstrap/scss/mixins/_breakpoints.scss
129
+ - node_modules/bootstrap/scss/mixins/_buttons.scss
130
+ - node_modules/bootstrap/scss/mixins/_caret.scss
131
+ - node_modules/bootstrap/scss/mixins/_clearfix.scss
132
+ - node_modules/bootstrap/scss/mixins/_container.scss
133
+ - node_modules/bootstrap/scss/mixins/_deprecate.scss
134
+ - node_modules/bootstrap/scss/mixins/_forms.scss
135
+ - node_modules/bootstrap/scss/mixins/_gradients.scss
136
+ - node_modules/bootstrap/scss/mixins/_grid.scss
137
+ - node_modules/bootstrap/scss/mixins/_image.scss
138
+ - node_modules/bootstrap/scss/mixins/_list-group.scss
139
+ - node_modules/bootstrap/scss/mixins/_lists.scss
140
+ - node_modules/bootstrap/scss/mixins/_pagination.scss
141
+ - node_modules/bootstrap/scss/mixins/_reset-text.scss
142
+ - node_modules/bootstrap/scss/mixins/_resize.scss
143
+ - node_modules/bootstrap/scss/mixins/_table-variants.scss
144
+ - node_modules/bootstrap/scss/mixins/_text-truncate.scss
145
+ - node_modules/bootstrap/scss/mixins/_transition.scss
146
+ - node_modules/bootstrap/scss/mixins/_utilities.scss
147
+ - node_modules/bootstrap/scss/mixins/_visually-hidden.scss
148
+ - node_modules/bootstrap/scss/utilities/_api.scss
149
+ - node_modules/bootstrap/scss/vendor/_rfs.scss
63
150
  homepage: https://github.com/blocknotes/administrate-bootstrap-theme
64
151
  licenses:
65
152
  - MIT
@@ -81,7 +168,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
168
  - !ruby/object:Gem::Version
82
169
  version: '0'
83
170
  requirements: []
84
- rubygems_version: 3.1.4
171
+ rubygems_version: 3.0.3
85
172
  signing_key:
86
173
  specification_version: 4
87
174
  summary: Bootstrap Administrate Theme