matestack-ui-bootstrap 1.5.1 → 3.0.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +17 -5
- data/README.md +36 -60
- data/lib/matestack/ui/bootstrap/base_component.rb +11 -0
- data/lib/matestack/ui/bootstrap/base_vue_js_component.rb +11 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/accordion.rb +18 -16
- data/lib/matestack/ui/bootstrap/components/alert.js +58 -0
- data/lib/matestack/ui/bootstrap/components/alert.rb +43 -0
- data/lib/matestack/ui/bootstrap/components/avatar.rb +27 -0
- data/lib/matestack/ui/bootstrap/components/badge.rb +32 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/breadcrumb.rb +12 -10
- data/lib/matestack/ui/bootstrap/components/button.rb +71 -0
- data/lib/matestack/ui/bootstrap/components/button_group.rb +36 -0
- data/lib/matestack/ui/bootstrap/components/card.rb +105 -0
- data/lib/matestack/ui/bootstrap/components/carousel.js +84 -0
- data/lib/matestack/ui/bootstrap/components/carousel.rb +103 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/close.rb +10 -9
- data/lib/matestack/ui/bootstrap/components/collapse.js +89 -0
- data/lib/matestack/ui/bootstrap/components/collapse.rb +54 -0
- data/lib/matestack/ui/bootstrap/components/dropdown.js +19 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/dropdown.rb +29 -25
- data/lib/matestack/ui/bootstrap/components/icon.rb +21 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/list_group.rb +32 -29
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/modal.js +32 -28
- data/lib/matestack/ui/bootstrap/components/modal.rb +121 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/navbar.rb +39 -30
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/page_heading.rb +7 -5
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/pagination.rb +11 -9
- data/lib/matestack/ui/bootstrap/components/popover.js +30 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/popover.rb +25 -21
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/progress.rb +19 -19
- data/lib/matestack/ui/bootstrap/components/scrollspy.rb +50 -0
- data/lib/matestack/ui/bootstrap/components/section_card.rb +33 -0
- data/lib/matestack/ui/bootstrap/components/spinner.rb +35 -0
- data/lib/matestack/ui/bootstrap/components/tab_nav.rb +79 -0
- data/lib/matestack/ui/bootstrap/components/tab_nav_content.rb +35 -0
- data/lib/matestack/ui/bootstrap/components/toast.js +89 -0
- data/lib/matestack/ui/bootstrap/components/toast.rb +113 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/tooltip.js +9 -6
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/tooltip.rb +20 -18
- data/{app/concepts → lib}/matestack/ui/bootstrap/content/figure.rb +4 -2
- data/{app/concepts → lib}/matestack/ui/bootstrap/content/smart_collection/collection.rb +22 -16
- data/{app/concepts → lib}/matestack/ui/bootstrap/content/smart_collection/collection.scss +0 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/content/smart_collection/content.rb +38 -21
- data/{app/concepts → lib}/matestack/ui/bootstrap/content/smart_collection/filter.rb +6 -2
- data/{app/concepts → lib}/matestack/ui/bootstrap/content/smart_collection/paginate.rb +16 -11
- data/lib/matestack/ui/bootstrap/form/checkbox.rb +88 -0
- data/lib/matestack/ui/bootstrap/form/input.rb +116 -0
- data/lib/matestack/ui/bootstrap/form/radio.rb +55 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/form/select.rb +18 -10
- data/lib/matestack/ui/bootstrap/form/submit.rb +20 -0
- data/lib/matestack/ui/bootstrap/form/switch.rb +30 -0
- data/lib/matestack/ui/bootstrap/form/textarea.rb +47 -0
- data/lib/matestack/ui/bootstrap/index.js +40 -0
- data/lib/matestack/ui/bootstrap/initialize.rb +3 -0
- data/lib/matestack/ui/bootstrap/layout/column.rb +49 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/layout/container.rb +12 -9
- data/lib/matestack/ui/bootstrap/layout/row.rb +25 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/layout/sidebar.js +10 -6
- data/lib/matestack/ui/bootstrap/layout/sidebar.rb +43 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/layout/sidebar.scss +0 -0
- data/{app/concepts/matestack/ui/bootstrap/apps → lib/matestack/ui/bootstrap/layouts}/admin_template.rb +18 -13
- data/lib/matestack/ui/bootstrap/registry.rb +173 -0
- data/{app/javascript/matestack-ui-bootstrap → lib/matestack/ui/bootstrap}/stylesheets/matestack-ui-bootstrap.scss +0 -0
- data/lib/matestack/ui/bootstrap/version.rb +1 -1
- data/lib/matestack/ui/bootstrap.rb +99 -17
- metadata +85 -80
- data/app/assets/images/avatar-placeholder.png +0 -0
- data/app/assets/images/icons/bootstrap-icons.svg +0 -1
- data/app/concepts/matestack/ui/bootstrap/components/alert.js +0 -53
- data/app/concepts/matestack/ui/bootstrap/components/alert.rb +0 -34
- data/app/concepts/matestack/ui/bootstrap/components/avatar.rb +0 -27
- data/app/concepts/matestack/ui/bootstrap/components/badge.rb +0 -30
- data/app/concepts/matestack/ui/bootstrap/components/button.rb +0 -69
- data/app/concepts/matestack/ui/bootstrap/components/button_group.rb +0 -36
- data/app/concepts/matestack/ui/bootstrap/components/card.rb +0 -100
- data/app/concepts/matestack/ui/bootstrap/components/carousel.js +0 -79
- data/app/concepts/matestack/ui/bootstrap/components/carousel.rb +0 -86
- data/app/concepts/matestack/ui/bootstrap/components/collapse.js +0 -84
- data/app/concepts/matestack/ui/bootstrap/components/collapse.rb +0 -43
- data/app/concepts/matestack/ui/bootstrap/components/dropdown.js +0 -14
- data/app/concepts/matestack/ui/bootstrap/components/icon.rb +0 -19
- data/app/concepts/matestack/ui/bootstrap/components/modal.rb +0 -106
- data/app/concepts/matestack/ui/bootstrap/components/popover.js +0 -26
- data/app/concepts/matestack/ui/bootstrap/components/scrollspy.rb +0 -48
- data/app/concepts/matestack/ui/bootstrap/components/section_card.rb +0 -31
- data/app/concepts/matestack/ui/bootstrap/components/spinner.rb +0 -31
- data/app/concepts/matestack/ui/bootstrap/components/tab_nav.rb +0 -83
- data/app/concepts/matestack/ui/bootstrap/components/tab_nav_content.rb +0 -32
- data/app/concepts/matestack/ui/bootstrap/components/toast.js +0 -85
- data/app/concepts/matestack/ui/bootstrap/components/toast.rb +0 -99
- data/app/concepts/matestack/ui/bootstrap/form/checkbox.rb +0 -99
- data/app/concepts/matestack/ui/bootstrap/form/input.rb +0 -112
- data/app/concepts/matestack/ui/bootstrap/form/radio.rb +0 -57
- data/app/concepts/matestack/ui/bootstrap/form/submit.rb +0 -21
- data/app/concepts/matestack/ui/bootstrap/form/switch.rb +0 -99
- data/app/concepts/matestack/ui/bootstrap/layout/column.rb +0 -47
- data/app/concepts/matestack/ui/bootstrap/layout/row.rb +0 -15
- data/app/concepts/matestack/ui/bootstrap/layout/sidebar.rb +0 -45
- data/app/concepts/matestack/ui/bootstrap/pages/devise/sign_in.rb +0 -40
- data/app/concepts/matestack/ui/bootstrap/registry.rb +0 -61
- data/app/helpers/matestack/ui/bootstrap/application_helper.rb +0 -17
- data/app/javascript/matestack-ui-bootstrap/index.js +0 -24
- data/app/javascript/packs/matestack-ui-bootstrap.js +0 -2
- data/app/matestack/bootstrap/form/submit.rb +0 -20
- data/config/routes.rb +0 -2
- data/config/webpack/development.js +0 -5
- data/config/webpack/environment.js +0 -29
- data/config/webpack/production.js +0 -33
- data/config/webpack/test.js +0 -5
- data/config/webpacker.yml +0 -96
- data/lib/matestack/ui/bootstrap/engine.rb +0 -26
@@ -1,27 +1,109 @@
|
|
1
|
-
# require 'trailblazer'
|
2
|
-
# require 'trailblazer/rails'
|
3
|
-
# require 'trailblazer/cell'
|
4
|
-
# require 'cell/rails'
|
5
|
-
# require 'cell/haml'
|
6
|
-
|
7
1
|
require "matestack/ui/core"
|
8
|
-
require "matestack/ui/
|
2
|
+
require "matestack/ui/vue_js"
|
3
|
+
|
4
|
+
base_path = 'matestack/ui/bootstrap'
|
5
|
+
require "#{base_path}/version"
|
6
|
+
|
7
|
+
module Matestack
|
8
|
+
module Ui
|
9
|
+
module Bootstrap
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
require "#{base_path}/base_component"
|
15
|
+
require "#{base_path}/base_vue_js_component"
|
16
|
+
|
17
|
+
module Matestack
|
18
|
+
module Ui
|
19
|
+
module Bootstrap
|
20
|
+
module Layouts
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
require "#{base_path}/layouts/admin_template"
|
9
26
|
|
10
27
|
module Matestack
|
11
28
|
module Ui
|
12
29
|
module Bootstrap
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
30
|
+
module Layout
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
require "#{base_path}/layout/row"
|
36
|
+
require "#{base_path}/layout/column"
|
37
|
+
require "#{base_path}/layout/container"
|
38
|
+
require "#{base_path}/layout/sidebar"
|
39
|
+
|
40
|
+
module Matestack
|
41
|
+
module Ui
|
42
|
+
module Bootstrap
|
43
|
+
module Components
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
require "#{base_path}/components/collapse"
|
49
|
+
require "#{base_path}/components/navbar"
|
50
|
+
require "#{base_path}/components/page_heading"
|
51
|
+
require "#{base_path}/components/section_card"
|
52
|
+
require "#{base_path}/components/carousel"
|
53
|
+
require "#{base_path}/components/tooltip"
|
54
|
+
require "#{base_path}/components/alert"
|
55
|
+
require "#{base_path}/components/breadcrumb"
|
56
|
+
require "#{base_path}/components/tab_nav"
|
57
|
+
require "#{base_path}/components/progress"
|
58
|
+
require "#{base_path}/components/toast"
|
59
|
+
require "#{base_path}/components/accordion"
|
60
|
+
require "#{base_path}/components/avatar"
|
61
|
+
require "#{base_path}/components/close"
|
62
|
+
require "#{base_path}/components/card"
|
63
|
+
require "#{base_path}/components/dropdown"
|
64
|
+
require "#{base_path}/components/modal"
|
65
|
+
require "#{base_path}/components/list_group"
|
66
|
+
require "#{base_path}/components/scrollspy"
|
67
|
+
require "#{base_path}/components/button"
|
68
|
+
require "#{base_path}/components/spinner"
|
69
|
+
require "#{base_path}/components/pagination"
|
70
|
+
require "#{base_path}/components/tab_nav_content"
|
71
|
+
require "#{base_path}/components/popover"
|
72
|
+
require "#{base_path}/components/badge"
|
73
|
+
require "#{base_path}/components/button_group"
|
74
|
+
require "#{base_path}/components/icon"
|
75
|
+
|
76
|
+
module Matestack
|
77
|
+
module Ui
|
78
|
+
module Bootstrap
|
79
|
+
module Content
|
80
|
+
module SmartCollection
|
23
81
|
end
|
24
82
|
end
|
25
83
|
end
|
26
84
|
end
|
27
85
|
end
|
86
|
+
require "#{base_path}/content/figure"
|
87
|
+
require "#{base_path}/content/smart_collection/collection"
|
88
|
+
require "#{base_path}/content/smart_collection/content"
|
89
|
+
require "#{base_path}/content/smart_collection/filter"
|
90
|
+
require "#{base_path}/content/smart_collection/paginate"
|
91
|
+
|
92
|
+
module Matestack
|
93
|
+
module Ui
|
94
|
+
module Bootstrap
|
95
|
+
module Form
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
100
|
+
require "#{base_path}/form/checkbox"
|
101
|
+
require "#{base_path}/form/input"
|
102
|
+
require "#{base_path}/form/textarea"
|
103
|
+
require "#{base_path}/form/radio"
|
104
|
+
require "#{base_path}/form/select"
|
105
|
+
require "#{base_path}/form/submit"
|
106
|
+
require "#{base_path}/form/switch"
|
107
|
+
|
108
|
+
require "#{base_path}/registry"
|
109
|
+
require "#{base_path}/initialize"
|
metadata
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: matestack-ui-bootstrap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 3.0.0.rc1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jonas Jabari
|
8
|
-
- Nils Henning
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2022-02-15 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: matestack-ui-core
|
@@ -17,14 +16,28 @@ dependencies:
|
|
17
16
|
requirements:
|
18
17
|
- - "~>"
|
19
18
|
- !ruby/object:Gem::Version
|
20
|
-
version:
|
19
|
+
version: 3.0.0.rc2
|
21
20
|
type: :runtime
|
22
21
|
prerelease: false
|
23
22
|
version_requirements: !ruby/object:Gem::Requirement
|
24
23
|
requirements:
|
25
24
|
- - "~>"
|
26
25
|
- !ruby/object:Gem::Version
|
27
|
-
version:
|
26
|
+
version: 3.0.0.rc2
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: matestack-ui-vuejs
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 3.0.0.rc2
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 3.0.0.rc2
|
28
41
|
description: Bootstrap v5 components for Matestack UI
|
29
42
|
email:
|
30
43
|
- jonas@matestack.io
|
@@ -35,81 +48,73 @@ files:
|
|
35
48
|
- LICENSE
|
36
49
|
- README.md
|
37
50
|
- Rakefile
|
38
|
-
- app/assets/images/avatar-placeholder.png
|
39
|
-
- app/assets/images/icons/bootstrap-icons.svg
|
40
|
-
- app/concepts/matestack/ui/bootstrap/apps/admin_template.rb
|
41
|
-
- app/concepts/matestack/ui/bootstrap/components/accordion.rb
|
42
|
-
- app/concepts/matestack/ui/bootstrap/components/alert.js
|
43
|
-
- app/concepts/matestack/ui/bootstrap/components/alert.rb
|
44
|
-
- app/concepts/matestack/ui/bootstrap/components/avatar.rb
|
45
|
-
- app/concepts/matestack/ui/bootstrap/components/badge.rb
|
46
|
-
- app/concepts/matestack/ui/bootstrap/components/breadcrumb.rb
|
47
|
-
- app/concepts/matestack/ui/bootstrap/components/button.rb
|
48
|
-
- app/concepts/matestack/ui/bootstrap/components/button_group.rb
|
49
|
-
- app/concepts/matestack/ui/bootstrap/components/card.rb
|
50
|
-
- app/concepts/matestack/ui/bootstrap/components/carousel.js
|
51
|
-
- app/concepts/matestack/ui/bootstrap/components/carousel.rb
|
52
|
-
- app/concepts/matestack/ui/bootstrap/components/close.rb
|
53
|
-
- app/concepts/matestack/ui/bootstrap/components/collapse.js
|
54
|
-
- app/concepts/matestack/ui/bootstrap/components/collapse.rb
|
55
|
-
- app/concepts/matestack/ui/bootstrap/components/dropdown.js
|
56
|
-
- app/concepts/matestack/ui/bootstrap/components/dropdown.rb
|
57
|
-
- app/concepts/matestack/ui/bootstrap/components/icon.rb
|
58
|
-
- app/concepts/matestack/ui/bootstrap/components/list_group.rb
|
59
|
-
- app/concepts/matestack/ui/bootstrap/components/modal.js
|
60
|
-
- app/concepts/matestack/ui/bootstrap/components/modal.rb
|
61
|
-
- app/concepts/matestack/ui/bootstrap/components/navbar.rb
|
62
|
-
- app/concepts/matestack/ui/bootstrap/components/page_heading.rb
|
63
|
-
- app/concepts/matestack/ui/bootstrap/components/pagination.rb
|
64
|
-
- app/concepts/matestack/ui/bootstrap/components/popover.js
|
65
|
-
- app/concepts/matestack/ui/bootstrap/components/popover.rb
|
66
|
-
- app/concepts/matestack/ui/bootstrap/components/progress.rb
|
67
|
-
- app/concepts/matestack/ui/bootstrap/components/scrollspy.rb
|
68
|
-
- app/concepts/matestack/ui/bootstrap/components/section_card.rb
|
69
|
-
- app/concepts/matestack/ui/bootstrap/components/spinner.rb
|
70
|
-
- app/concepts/matestack/ui/bootstrap/components/tab_nav.rb
|
71
|
-
- app/concepts/matestack/ui/bootstrap/components/tab_nav_content.rb
|
72
|
-
- app/concepts/matestack/ui/bootstrap/components/toast.js
|
73
|
-
- app/concepts/matestack/ui/bootstrap/components/toast.rb
|
74
|
-
- app/concepts/matestack/ui/bootstrap/components/tooltip.js
|
75
|
-
- app/concepts/matestack/ui/bootstrap/components/tooltip.rb
|
76
|
-
- app/concepts/matestack/ui/bootstrap/content/figure.rb
|
77
|
-
- app/concepts/matestack/ui/bootstrap/content/smart_collection/collection.rb
|
78
|
-
- app/concepts/matestack/ui/bootstrap/content/smart_collection/collection.scss
|
79
|
-
- app/concepts/matestack/ui/bootstrap/content/smart_collection/content.rb
|
80
|
-
- app/concepts/matestack/ui/bootstrap/content/smart_collection/filter.rb
|
81
|
-
- app/concepts/matestack/ui/bootstrap/content/smart_collection/paginate.rb
|
82
|
-
- app/concepts/matestack/ui/bootstrap/form/checkbox.rb
|
83
|
-
- app/concepts/matestack/ui/bootstrap/form/input.rb
|
84
|
-
- app/concepts/matestack/ui/bootstrap/form/radio.rb
|
85
|
-
- app/concepts/matestack/ui/bootstrap/form/select.rb
|
86
|
-
- app/concepts/matestack/ui/bootstrap/form/submit.rb
|
87
|
-
- app/concepts/matestack/ui/bootstrap/form/switch.rb
|
88
|
-
- app/concepts/matestack/ui/bootstrap/layout/column.rb
|
89
|
-
- app/concepts/matestack/ui/bootstrap/layout/container.rb
|
90
|
-
- app/concepts/matestack/ui/bootstrap/layout/row.rb
|
91
|
-
- app/concepts/matestack/ui/bootstrap/layout/sidebar.js
|
92
|
-
- app/concepts/matestack/ui/bootstrap/layout/sidebar.rb
|
93
|
-
- app/concepts/matestack/ui/bootstrap/layout/sidebar.scss
|
94
|
-
- app/concepts/matestack/ui/bootstrap/pages/devise/sign_in.rb
|
95
|
-
- app/concepts/matestack/ui/bootstrap/registry.rb
|
96
|
-
- app/helpers/matestack/ui/bootstrap/application_helper.rb
|
97
|
-
- app/javascript/matestack-ui-bootstrap/index.js
|
98
|
-
- app/javascript/matestack-ui-bootstrap/stylesheets/matestack-ui-bootstrap.scss
|
99
|
-
- app/javascript/packs/matestack-ui-bootstrap.js
|
100
|
-
- app/matestack/bootstrap/form/submit.rb
|
101
|
-
- config/routes.rb
|
102
|
-
- config/webpack/development.js
|
103
|
-
- config/webpack/environment.js
|
104
|
-
- config/webpack/production.js
|
105
|
-
- config/webpack/test.js
|
106
|
-
- config/webpacker.yml
|
107
51
|
- lib/matestack/ui/bootstrap.rb
|
108
|
-
- lib/matestack/ui/bootstrap/
|
52
|
+
- lib/matestack/ui/bootstrap/base_component.rb
|
53
|
+
- lib/matestack/ui/bootstrap/base_vue_js_component.rb
|
54
|
+
- lib/matestack/ui/bootstrap/components/accordion.rb
|
55
|
+
- lib/matestack/ui/bootstrap/components/alert.js
|
56
|
+
- lib/matestack/ui/bootstrap/components/alert.rb
|
57
|
+
- lib/matestack/ui/bootstrap/components/avatar.rb
|
58
|
+
- lib/matestack/ui/bootstrap/components/badge.rb
|
59
|
+
- lib/matestack/ui/bootstrap/components/breadcrumb.rb
|
60
|
+
- lib/matestack/ui/bootstrap/components/button.rb
|
61
|
+
- lib/matestack/ui/bootstrap/components/button_group.rb
|
62
|
+
- lib/matestack/ui/bootstrap/components/card.rb
|
63
|
+
- lib/matestack/ui/bootstrap/components/carousel.js
|
64
|
+
- lib/matestack/ui/bootstrap/components/carousel.rb
|
65
|
+
- lib/matestack/ui/bootstrap/components/close.rb
|
66
|
+
- lib/matestack/ui/bootstrap/components/collapse.js
|
67
|
+
- lib/matestack/ui/bootstrap/components/collapse.rb
|
68
|
+
- lib/matestack/ui/bootstrap/components/dropdown.js
|
69
|
+
- lib/matestack/ui/bootstrap/components/dropdown.rb
|
70
|
+
- lib/matestack/ui/bootstrap/components/icon.rb
|
71
|
+
- lib/matestack/ui/bootstrap/components/list_group.rb
|
72
|
+
- lib/matestack/ui/bootstrap/components/modal.js
|
73
|
+
- lib/matestack/ui/bootstrap/components/modal.rb
|
74
|
+
- lib/matestack/ui/bootstrap/components/navbar.rb
|
75
|
+
- lib/matestack/ui/bootstrap/components/page_heading.rb
|
76
|
+
- lib/matestack/ui/bootstrap/components/pagination.rb
|
77
|
+
- lib/matestack/ui/bootstrap/components/popover.js
|
78
|
+
- lib/matestack/ui/bootstrap/components/popover.rb
|
79
|
+
- lib/matestack/ui/bootstrap/components/progress.rb
|
80
|
+
- lib/matestack/ui/bootstrap/components/scrollspy.rb
|
81
|
+
- lib/matestack/ui/bootstrap/components/section_card.rb
|
82
|
+
- lib/matestack/ui/bootstrap/components/spinner.rb
|
83
|
+
- lib/matestack/ui/bootstrap/components/tab_nav.rb
|
84
|
+
- lib/matestack/ui/bootstrap/components/tab_nav_content.rb
|
85
|
+
- lib/matestack/ui/bootstrap/components/toast.js
|
86
|
+
- lib/matestack/ui/bootstrap/components/toast.rb
|
87
|
+
- lib/matestack/ui/bootstrap/components/tooltip.js
|
88
|
+
- lib/matestack/ui/bootstrap/components/tooltip.rb
|
89
|
+
- lib/matestack/ui/bootstrap/content/figure.rb
|
90
|
+
- lib/matestack/ui/bootstrap/content/smart_collection/collection.rb
|
91
|
+
- lib/matestack/ui/bootstrap/content/smart_collection/collection.scss
|
92
|
+
- lib/matestack/ui/bootstrap/content/smart_collection/content.rb
|
93
|
+
- lib/matestack/ui/bootstrap/content/smart_collection/filter.rb
|
94
|
+
- lib/matestack/ui/bootstrap/content/smart_collection/paginate.rb
|
95
|
+
- lib/matestack/ui/bootstrap/form/checkbox.rb
|
96
|
+
- lib/matestack/ui/bootstrap/form/input.rb
|
97
|
+
- lib/matestack/ui/bootstrap/form/radio.rb
|
98
|
+
- lib/matestack/ui/bootstrap/form/select.rb
|
99
|
+
- lib/matestack/ui/bootstrap/form/submit.rb
|
100
|
+
- lib/matestack/ui/bootstrap/form/switch.rb
|
101
|
+
- lib/matestack/ui/bootstrap/form/textarea.rb
|
102
|
+
- lib/matestack/ui/bootstrap/index.js
|
103
|
+
- lib/matestack/ui/bootstrap/initialize.rb
|
104
|
+
- lib/matestack/ui/bootstrap/layout/column.rb
|
105
|
+
- lib/matestack/ui/bootstrap/layout/container.rb
|
106
|
+
- lib/matestack/ui/bootstrap/layout/row.rb
|
107
|
+
- lib/matestack/ui/bootstrap/layout/sidebar.js
|
108
|
+
- lib/matestack/ui/bootstrap/layout/sidebar.rb
|
109
|
+
- lib/matestack/ui/bootstrap/layout/sidebar.scss
|
110
|
+
- lib/matestack/ui/bootstrap/layouts/admin_template.rb
|
111
|
+
- lib/matestack/ui/bootstrap/registry.rb
|
112
|
+
- lib/matestack/ui/bootstrap/stylesheets/matestack-ui-bootstrap.scss
|
109
113
|
- lib/matestack/ui/bootstrap/version.rb
|
110
114
|
- lib/tasks/matestack/ui/bootstrap_tasks.rake
|
111
|
-
homepage: https://matestack.
|
112
|
-
licenses:
|
115
|
+
homepage: https://matestack.io
|
116
|
+
licenses:
|
117
|
+
- MIT
|
113
118
|
metadata: {}
|
114
119
|
post_install_message:
|
115
120
|
rdoc_options: []
|
@@ -122,11 +127,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
122
127
|
version: '0'
|
123
128
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
124
129
|
requirements:
|
125
|
-
- - "
|
130
|
+
- - ">"
|
126
131
|
- !ruby/object:Gem::Version
|
127
|
-
version:
|
132
|
+
version: 1.3.1
|
128
133
|
requirements: []
|
129
|
-
rubygems_version: 3.
|
134
|
+
rubygems_version: 3.1.4
|
130
135
|
signing_key:
|
131
136
|
specification_version: 4
|
132
137
|
summary: Bootstrap v5 components for Matestack UI
|
Binary file
|