matestack-ui-bootstrap 1.4.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 (82) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +8 -0
  3. data/README.md +26 -0
  4. data/Rakefile +43 -0
  5. data/app/assets/images/avatar-placeholder.png +0 -0
  6. data/app/assets/images/icons/bootstrap-icons.svg +1 -0
  7. data/app/concepts/matestack/ui/bootstrap/apps/admin_template.rb +85 -0
  8. data/app/concepts/matestack/ui/bootstrap/components/accordion.rb +53 -0
  9. data/app/concepts/matestack/ui/bootstrap/components/alert.js +53 -0
  10. data/app/concepts/matestack/ui/bootstrap/components/alert.rb +34 -0
  11. data/app/concepts/matestack/ui/bootstrap/components/avatar.rb +27 -0
  12. data/app/concepts/matestack/ui/bootstrap/components/badge.rb +30 -0
  13. data/app/concepts/matestack/ui/bootstrap/components/breadcrumb.rb +46 -0
  14. data/app/concepts/matestack/ui/bootstrap/components/button.rb +54 -0
  15. data/app/concepts/matestack/ui/bootstrap/components/button_group.rb +36 -0
  16. data/app/concepts/matestack/ui/bootstrap/components/card.rb +100 -0
  17. data/app/concepts/matestack/ui/bootstrap/components/carousel.js +79 -0
  18. data/app/concepts/matestack/ui/bootstrap/components/carousel.rb +85 -0
  19. data/app/concepts/matestack/ui/bootstrap/components/chart.js +232 -0
  20. data/app/concepts/matestack/ui/bootstrap/components/chart.rb +71 -0
  21. data/app/concepts/matestack/ui/bootstrap/components/close.rb +30 -0
  22. data/app/concepts/matestack/ui/bootstrap/components/collapse.js +84 -0
  23. data/app/concepts/matestack/ui/bootstrap/components/collapse.rb +43 -0
  24. data/app/concepts/matestack/ui/bootstrap/components/dropdown.js +14 -0
  25. data/app/concepts/matestack/ui/bootstrap/components/dropdown.rb +116 -0
  26. data/app/concepts/matestack/ui/bootstrap/components/icon.rb +19 -0
  27. data/app/concepts/matestack/ui/bootstrap/components/list_group.rb +83 -0
  28. data/app/concepts/matestack/ui/bootstrap/components/modal.js +90 -0
  29. data/app/concepts/matestack/ui/bootstrap/components/modal.rb +106 -0
  30. data/app/concepts/matestack/ui/bootstrap/components/navbar.rb +120 -0
  31. data/app/concepts/matestack/ui/bootstrap/components/page_heading.rb +28 -0
  32. data/app/concepts/matestack/ui/bootstrap/components/pagination.rb +40 -0
  33. data/app/concepts/matestack/ui/bootstrap/components/popover.js +26 -0
  34. data/app/concepts/matestack/ui/bootstrap/components/popover.rb +92 -0
  35. data/app/concepts/matestack/ui/bootstrap/components/progress.rb +65 -0
  36. data/app/concepts/matestack/ui/bootstrap/components/scrollspy.rb +33 -0
  37. data/app/concepts/matestack/ui/bootstrap/components/section_card.rb +31 -0
  38. data/app/concepts/matestack/ui/bootstrap/components/spinner.rb +31 -0
  39. data/app/concepts/matestack/ui/bootstrap/components/tab_nav.rb +81 -0
  40. data/app/concepts/matestack/ui/bootstrap/components/tab_nav_content.rb +32 -0
  41. data/app/concepts/matestack/ui/bootstrap/components/toast.js +79 -0
  42. data/app/concepts/matestack/ui/bootstrap/components/toast.rb +99 -0
  43. data/app/concepts/matestack/ui/bootstrap/components/tooltip.js +26 -0
  44. data/app/concepts/matestack/ui/bootstrap/components/tooltip.rb +82 -0
  45. data/app/concepts/matestack/ui/bootstrap/content/collection/collection.rb +112 -0
  46. data/app/concepts/matestack/ui/bootstrap/content/collection/collection.scss +10 -0
  47. data/app/concepts/matestack/ui/bootstrap/content/collection/content.rb +101 -0
  48. data/app/concepts/matestack/ui/bootstrap/content/collection/filter.rb +33 -0
  49. data/app/concepts/matestack/ui/bootstrap/content/collection/paginate.rb +92 -0
  50. data/app/concepts/matestack/ui/bootstrap/content/figure.rb +7 -0
  51. data/app/concepts/matestack/ui/bootstrap/form/checkbox.rb +90 -0
  52. data/app/concepts/matestack/ui/bootstrap/form/date.js +38 -0
  53. data/app/concepts/matestack/ui/bootstrap/form/date.rb +98 -0
  54. data/app/concepts/matestack/ui/bootstrap/form/input.rb +123 -0
  55. data/app/concepts/matestack/ui/bootstrap/form/radio.rb +65 -0
  56. data/app/concepts/matestack/ui/bootstrap/form/select.haml +11 -0
  57. data/app/concepts/matestack/ui/bootstrap/form/select.rb +74 -0
  58. data/app/concepts/matestack/ui/bootstrap/form/submit.rb +20 -0
  59. data/app/concepts/matestack/ui/bootstrap/form/switch.rb +90 -0
  60. data/app/concepts/matestack/ui/bootstrap/layout/column.rb +47 -0
  61. data/app/concepts/matestack/ui/bootstrap/layout/container.rb +25 -0
  62. data/app/concepts/matestack/ui/bootstrap/layout/row.rb +15 -0
  63. data/app/concepts/matestack/ui/bootstrap/layout/sidebar.js +64 -0
  64. data/app/concepts/matestack/ui/bootstrap/layout/sidebar.rb +45 -0
  65. data/app/concepts/matestack/ui/bootstrap/layout/sidebar.scss +57 -0
  66. data/app/concepts/matestack/ui/bootstrap/pages/devise/sign_in.rb +40 -0
  67. data/app/concepts/matestack/ui/bootstrap/registry.rb +63 -0
  68. data/app/helpers/matestack/ui/bootstrap/application_helper.rb +13 -0
  69. data/app/javascript/matestack-ui-bootstrap/index.js +26 -0
  70. data/app/javascript/matestack-ui-bootstrap/stylesheets/matestack-ui-bootstrap.scss +65 -0
  71. data/app/javascript/packs/matestack-ui-bootstrap.js +2 -0
  72. data/config/routes.rb +2 -0
  73. data/config/webpack/development.js +5 -0
  74. data/config/webpack/environment.js +29 -0
  75. data/config/webpack/production.js +33 -0
  76. data/config/webpack/test.js +5 -0
  77. data/config/webpacker.yml +96 -0
  78. data/lib/matestack/ui/bootstrap.rb +27 -0
  79. data/lib/matestack/ui/bootstrap/engine.rb +26 -0
  80. data/lib/matestack/ui/bootstrap/version.rb +7 -0
  81. data/lib/tasks/matestack/ui/bootstrap_tasks.rake +66 -0
  82. metadata +137 -0
@@ -0,0 +1,13 @@
1
+ #https://github.com/rails/webpacker/blob/5-x-stable/docs/engines.md
2
+
3
+ require "webpacker/helper"
4
+
5
+ module MyEngine
6
+ module ApplicationHelper
7
+ include ::Webpacker::Helper
8
+
9
+ def current_webpacker_instance
10
+ MyEngine.webpacker
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,26 @@
1
+ // This file is automatically compiled by Webpack, along with any other files
2
+ // present in this directory. You're encouraged to place your actual application logic in
3
+ // a relevant structure within javascript and only use these pack files to reference
4
+ // that code so it'll be compiled.
5
+
6
+ import "./stylesheets/matestack-ui-bootstrap.scss";
7
+
8
+ import '../../concepts/matestack/ui/bootstrap/components/alert'
9
+ import '../../concepts/matestack/ui/bootstrap/components/carousel'
10
+ import '../../concepts/matestack/ui/bootstrap/components/chart'
11
+ import '../../concepts/matestack/ui/bootstrap/components/collapse'
12
+ import '../../concepts/matestack/ui/bootstrap/components/dropdown'
13
+ import '../../concepts/matestack/ui/bootstrap/components/modal'
14
+ import '../../concepts/matestack/ui/bootstrap/components/toast'
15
+ import '../../concepts/matestack/ui/bootstrap/components/popover'
16
+ import '../../concepts/matestack/ui/bootstrap/components/tooltip'
17
+ import '../../concepts/matestack/ui/bootstrap/form/date'
18
+ import '../../concepts/matestack/ui/bootstrap/layout/sidebar'
19
+ import '../../concepts/matestack/ui/bootstrap/layout/sidebar.scss'
20
+ import '../../concepts/matestack/ui/bootstrap/content/collection/collection.scss'
21
+
22
+ const MatestackUiBootstrap = {}
23
+
24
+ window.MatestackUiBootstrap = MatestackUiBootstrap
25
+
26
+ export default MatestackUiBootstrap
@@ -0,0 +1,65 @@
1
+ // Page loading state
2
+ .matestack-page-container{
3
+
4
+ .matestack-page-wrapper {
5
+ opacity: 1;
6
+ transition: opacity 0.2s ease-in-out;
7
+
8
+ &.loading {
9
+ opacity: 0;
10
+ }
11
+ }
12
+
13
+ .loading-state-element-wrapper{
14
+ opacity: 0;
15
+ transition: opacity 0.3s ease-in-out;
16
+
17
+ &.loading {
18
+ opacity: 1;
19
+ }
20
+ }
21
+
22
+ }
23
+
24
+ // Async loading state
25
+ .matestack-async-component-container{
26
+
27
+ opacity: 1;
28
+ transition: opacity 0.2s ease-in-out;
29
+
30
+ &.loading {
31
+ opacity: 0;
32
+ }
33
+
34
+ }
35
+
36
+ // Isolated loading state
37
+ .matestack-isolated-component-container{
38
+
39
+ opacity: 1;
40
+ transition: opacity 0.2s ease-in-out;
41
+
42
+ &.loading {
43
+ opacity: 0;
44
+ }
45
+
46
+ }
47
+
48
+
49
+ //Layouting
50
+
51
+ .matestack-app-wrapper{
52
+ overflow-x: hidden;
53
+ }
54
+
55
+ .content-wrapper{
56
+ position: relative;
57
+ z-index: 1;
58
+ min-height: 101vh;
59
+ transition: 0.5s;
60
+ &.sidebar-open{
61
+ @media (max-width: 992px) {
62
+ margin-left: -300px;
63
+ }
64
+ }
65
+ }
@@ -0,0 +1,2 @@
1
+ import '../matestack-ui-bootstrap/index'
2
+ export default MatestackUiBootstrap
data/config/routes.rb ADDED
@@ -0,0 +1,2 @@
1
+ Matestack::Ui::Bootstrap::Engine.routes.draw do
2
+ end
@@ -0,0 +1,5 @@
1
+ process.env.NODE_ENV = process.env.NODE_ENV || 'development'
2
+
3
+ const environment = require('./environment')
4
+
5
+ module.exports = environment.toWebpackConfig()
@@ -0,0 +1,29 @@
1
+ const { environment } = require('@rails/webpacker')
2
+
3
+ environment.config.merge({
4
+ externals: {
5
+ "matestack-ui-core": "matestack-ui-core",
6
+ "chart.js": "chart.js",
7
+ "bootstrap": "bootstrap",
8
+ "flatpickr": "flatpickr"
9
+ }
10
+ })
11
+
12
+ // Remove the digest from the output js filename.
13
+ // https://github.com/matestack/matestack-ui-core/issues/343#issuecomment-581149092
14
+ //
15
+ environment.config.set("output.filename", chunkData => {
16
+ return "[name].js"
17
+ })
18
+
19
+ // Remove the digest from the output css filename.
20
+ // https://github.com/matestack/matestack-ui-core/issues/343#issuecomment-581149092
21
+ //
22
+ // Inspect with:
23
+ //
24
+ // console.log(environment.plugins)
25
+ //
26
+ const miniCssExtractPlugin = environment.plugins.get('MiniCssExtract')
27
+ miniCssExtractPlugin.options.filename = "[name].css"
28
+
29
+ module.exports = environment
@@ -0,0 +1,33 @@
1
+ process.env.NODE_ENV = process.env.NODE_ENV || 'production'
2
+
3
+ const environment = require('./environment')
4
+
5
+ // Add `.min` to the production versions of the output files.
6
+ // https://github.com/matestack/matestack-ui-core/issues/343#issuecomment-580246554
7
+ // https://github.com/matestack/matestack-ui-core/issues/343#issuecomment-581149092
8
+ //
9
+ environment.config.set("output.filename", chunkData => {
10
+ return "[name].min.js"
11
+ })
12
+ const miniCssExtractPlugin = environment.plugins.get('MiniCssExtract')
13
+ miniCssExtractPlugin.options.filename = "[name].min.css"
14
+
15
+ // In order to have babel's es5 (ie11) transpiling be applied to all of the
16
+ // js code, it needs to be included in the loader paths.
17
+ // https://github.com/rails/webpacker/blob/master/docs/webpack.md
18
+ // https://github.com/matestack/matestack-ui-core/issues/238
19
+ //
20
+ const babelLoader = environment.loaders.get('babel')
21
+ delete babelLoader.exclude
22
+ const path = require('path')
23
+ const matestackUiBootstrapRootPath = path.resolve(__dirname, '../..')
24
+ babelLoader.include.push(path.resolve(matestackUiBootstrapRootPath, 'app/concepts/matestack/ui/bootstrap'))
25
+ babelLoader.include.push(path.resolve(matestackUiBootstrapRootPath, 'node_modules'))
26
+
27
+ // We also need to tell babel where to find matestack-ui-material if we are using `npm link`.
28
+ // Otherwise, it won't follow the symlink to `node_modules/matestack-ui-core`.
29
+ //
30
+ // const matestackUiCoreRootPath = path.resolve(require.resolve('matestack-ui-core'), '../../../')
31
+ // babelLoader.include.push(matestackUiCoreRootPath)
32
+
33
+ module.exports = environment.toWebpackConfig()
@@ -0,0 +1,5 @@
1
+ process.env.NODE_ENV = process.env.NODE_ENV || 'development'
2
+
3
+ const environment = require('./environment')
4
+
5
+ module.exports = environment.toWebpackConfig()
@@ -0,0 +1,96 @@
1
+ # Note: You must restart bin/webpack-dev-server for changes to take effect
2
+
3
+ default: &default
4
+ source_path: app/javascript
5
+ source_entry_path: packs
6
+ public_root_path: vendor/assets/javascripts
7
+ public_output_path: dist
8
+ cache_path: tmp/cache/webpacker
9
+ check_yarn_integrity: false
10
+ webpack_compile_output: true
11
+
12
+ # Additional paths webpack should lookup modules
13
+ # ['app/assets', 'engine/foo/app/assets']
14
+ additional_paths: ['node_modules']
15
+
16
+ # Reload manifest.json on all requests so we reload latest compiled packs
17
+ cache_manifest: false
18
+
19
+ # Extract and emit a css file
20
+ extract_css: true
21
+
22
+ static_assets_extensions:
23
+ - .jpg
24
+ - .jpeg
25
+ - .png
26
+ - .gif
27
+ - .tiff
28
+ - .ico
29
+ - .svg
30
+ - .eot
31
+ - .otf
32
+ - .ttf
33
+ - .woff
34
+ - .woff2
35
+
36
+ extensions:
37
+ - .mjs
38
+ - .js
39
+ - .sass
40
+ - .scss
41
+ - .css
42
+ - .module.sass
43
+ - .module.scss
44
+ - .module.css
45
+ - .png
46
+ - .svg
47
+ - .gif
48
+ - .jpeg
49
+ - .jpg
50
+
51
+ development:
52
+ <<: *default
53
+ compile: true
54
+
55
+ # Verifies that correct packages and versions are installed by inspecting package.json, yarn.lock, and node_modules
56
+ check_yarn_integrity: true
57
+
58
+ # Reference: https://webpack.js.org/configuration/dev-server/
59
+ dev_server:
60
+ https: false
61
+ host: localhost
62
+ port: 3035
63
+ public: localhost:3035
64
+ hmr: false
65
+ # Inline should be set to true if using HMR
66
+ inline: true
67
+ overlay: true
68
+ compress: true
69
+ disable_host_check: true
70
+ use_local_ip: false
71
+ quiet: false
72
+ pretty: false
73
+ headers:
74
+ 'Access-Control-Allow-Origin': '*'
75
+ watch_options:
76
+ ignored: '**/node_modules/**'
77
+
78
+
79
+ test:
80
+ <<: *default
81
+ compile: true
82
+
83
+ # Compile test packs to a separate directory
84
+ public_output_path: packs-test
85
+
86
+ production:
87
+ <<: *default
88
+
89
+ # Production depends on precompilation of packs prior to booting for performance.
90
+ compile: false
91
+
92
+ # Extract and emit a css file
93
+ extract_css: true
94
+
95
+ # Cache manifest.json for performance
96
+ cache_manifest: true
@@ -0,0 +1,27 @@
1
+ # require 'trailblazer'
2
+ # require 'trailblazer/rails'
3
+ # require 'trailblazer/cell'
4
+ # require 'cell/rails'
5
+ # require 'cell/haml'
6
+
7
+ require "matestack/ui/core"
8
+ require "matestack/ui/bootstrap/engine"
9
+
10
+ module Matestack
11
+ module Ui
12
+ module Bootstrap
13
+ # https://github.com/rails/webpacker/blob/5-x-stable/docs/engines.md
14
+ # ROOT_PATH = Pathname.new(File.expand_path("../../../../", Pathname.new(__FILE__).realpath))
15
+ ROOT_PATH = Pathname.new(File.join(__dir__, "../../../"))
16
+
17
+ class << self
18
+ def webpacker
19
+ @webpacker ||= ::Webpacker::Instance.new(
20
+ root_path: ROOT_PATH,
21
+ config_path: ROOT_PATH.join("config/webpacker.yml")
22
+ )
23
+ end
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,26 @@
1
+ module Matestack
2
+ module Ui
3
+ module Bootstrap
4
+ class Engine < ::Rails::Engine
5
+ isolate_namespace Matestack::Ui::Bootstrap
6
+
7
+ # https://github.com/rails/webpacker/blob/5-x-stable/docs/engines.md
8
+ initializer "webpacker.proxy" do |app|
9
+ insert_middleware = begin
10
+ MyEngine.webpacker.config.dev_server.present?
11
+ rescue
12
+ nil
13
+ end
14
+ next unless insert_middleware
15
+
16
+ app.middleware.insert_before(
17
+ 0, Webpacker::DevServerProxy, # "Webpacker::DevServerProxy" if Rails version < 5
18
+ ssl_verify_none: true,
19
+ webpacker: MyEngine.webpacker
20
+ )
21
+ end
22
+
23
+ end
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,7 @@
1
+ module Matestack
2
+ module Ui
3
+ module Bootstrap
4
+ VERSION = '1.4.0'
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,66 @@
1
+ # desc "Explaining what the task does"
2
+ # task :matestack_ui_bootstrap do
3
+ # # Task goes here
4
+ # end
5
+
6
+ # https://github.com/rails/webpacker/blob/5-x-stable/docs/engines.md
7
+
8
+ def ensure_log_goes_to_stdout
9
+ old_logger = Webpacker.logger
10
+ Webpacker.logger = ActiveSupport::Logger.new(STDOUT)
11
+ yield
12
+ ensure
13
+ Webpacker.logger = old_logger
14
+ end
15
+
16
+
17
+ namespace :matestack_ui_bootstrap do
18
+ namespace :webpacker do
19
+ desc "Install deps with yarn"
20
+ task :yarn_install do
21
+ Dir.chdir(File.join(__dir__, "../../../../")) do
22
+ system "yarn install --no-progress --production"
23
+ end
24
+ end
25
+
26
+ desc "Compile JavaScript packs using webpack for production with digests"
27
+ task compile: [:yarn_install, :environment] do
28
+ Webpacker.with_node_env("production") do
29
+ ensure_log_goes_to_stdout do
30
+ if Matestack::Ui::Bootstrap.webpacker.commands.compile
31
+ # Successful compilation!
32
+ else
33
+ # Failed compilation
34
+ exit!
35
+ end
36
+ end
37
+ end
38
+ end
39
+ end
40
+ end
41
+
42
+ def yarn_install_available?
43
+ rails_major = Rails::VERSION::MAJOR
44
+ rails_minor = Rails::VERSION::MINOR
45
+
46
+ rails_major > 5 || (rails_major == 5 && rails_minor >= 1)
47
+ end
48
+
49
+ def enhance_assets_precompile
50
+ # yarn:install was added in Rails 5.1
51
+ deps = yarn_install_available? ? [] : ["my_engine:webpacker:yarn_install"]
52
+ Rake::Task["assets:precompile"].enhance(deps) do
53
+ Rake::Task["my_engine:webpacker:compile"].invoke
54
+ end
55
+ end
56
+
57
+ # Compile packs after we've compiled all other assets during precompilation
58
+ skip_webpacker_precompile = %w(no false n f).include?(ENV["WEBPACKER_PRECOMPILE"])
59
+
60
+ unless skip_webpacker_precompile
61
+ if Rake::Task.task_defined?("assets:precompile")
62
+ enhance_assets_precompile
63
+ else
64
+ Rake::Task.define_task("assets:precompile" => "my_engine:webpacker:compile")
65
+ end
66
+ end
metadata ADDED
@@ -0,0 +1,137 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: matestack-ui-bootstrap
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.4.0
5
+ platform: ruby
6
+ authors:
7
+ - Jonas Jabari
8
+ - Nils Henning
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2021-02-11 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: matestack-ui-core
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: 1.4.0
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - "~>"
26
+ - !ruby/object:Gem::Version
27
+ version: 1.4.0
28
+ description: Bootstrap v5 components for Matestack UI
29
+ email:
30
+ - jonas@matestack.io
31
+ executables: []
32
+ extensions: []
33
+ extra_rdoc_files: []
34
+ files:
35
+ - LICENSE
36
+ - README.md
37
+ - 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/chart.js
53
+ - app/concepts/matestack/ui/bootstrap/components/chart.rb
54
+ - app/concepts/matestack/ui/bootstrap/components/close.rb
55
+ - app/concepts/matestack/ui/bootstrap/components/collapse.js
56
+ - app/concepts/matestack/ui/bootstrap/components/collapse.rb
57
+ - app/concepts/matestack/ui/bootstrap/components/dropdown.js
58
+ - app/concepts/matestack/ui/bootstrap/components/dropdown.rb
59
+ - app/concepts/matestack/ui/bootstrap/components/icon.rb
60
+ - app/concepts/matestack/ui/bootstrap/components/list_group.rb
61
+ - app/concepts/matestack/ui/bootstrap/components/modal.js
62
+ - app/concepts/matestack/ui/bootstrap/components/modal.rb
63
+ - app/concepts/matestack/ui/bootstrap/components/navbar.rb
64
+ - app/concepts/matestack/ui/bootstrap/components/page_heading.rb
65
+ - app/concepts/matestack/ui/bootstrap/components/pagination.rb
66
+ - app/concepts/matestack/ui/bootstrap/components/popover.js
67
+ - app/concepts/matestack/ui/bootstrap/components/popover.rb
68
+ - app/concepts/matestack/ui/bootstrap/components/progress.rb
69
+ - app/concepts/matestack/ui/bootstrap/components/scrollspy.rb
70
+ - app/concepts/matestack/ui/bootstrap/components/section_card.rb
71
+ - app/concepts/matestack/ui/bootstrap/components/spinner.rb
72
+ - app/concepts/matestack/ui/bootstrap/components/tab_nav.rb
73
+ - app/concepts/matestack/ui/bootstrap/components/tab_nav_content.rb
74
+ - app/concepts/matestack/ui/bootstrap/components/toast.js
75
+ - app/concepts/matestack/ui/bootstrap/components/toast.rb
76
+ - app/concepts/matestack/ui/bootstrap/components/tooltip.js
77
+ - app/concepts/matestack/ui/bootstrap/components/tooltip.rb
78
+ - app/concepts/matestack/ui/bootstrap/content/collection/collection.rb
79
+ - app/concepts/matestack/ui/bootstrap/content/collection/collection.scss
80
+ - app/concepts/matestack/ui/bootstrap/content/collection/content.rb
81
+ - app/concepts/matestack/ui/bootstrap/content/collection/filter.rb
82
+ - app/concepts/matestack/ui/bootstrap/content/collection/paginate.rb
83
+ - app/concepts/matestack/ui/bootstrap/content/figure.rb
84
+ - app/concepts/matestack/ui/bootstrap/form/checkbox.rb
85
+ - app/concepts/matestack/ui/bootstrap/form/date.js
86
+ - app/concepts/matestack/ui/bootstrap/form/date.rb
87
+ - app/concepts/matestack/ui/bootstrap/form/input.rb
88
+ - app/concepts/matestack/ui/bootstrap/form/radio.rb
89
+ - app/concepts/matestack/ui/bootstrap/form/select.haml
90
+ - app/concepts/matestack/ui/bootstrap/form/select.rb
91
+ - app/concepts/matestack/ui/bootstrap/form/submit.rb
92
+ - app/concepts/matestack/ui/bootstrap/form/switch.rb
93
+ - app/concepts/matestack/ui/bootstrap/layout/column.rb
94
+ - app/concepts/matestack/ui/bootstrap/layout/container.rb
95
+ - app/concepts/matestack/ui/bootstrap/layout/row.rb
96
+ - app/concepts/matestack/ui/bootstrap/layout/sidebar.js
97
+ - app/concepts/matestack/ui/bootstrap/layout/sidebar.rb
98
+ - app/concepts/matestack/ui/bootstrap/layout/sidebar.scss
99
+ - app/concepts/matestack/ui/bootstrap/pages/devise/sign_in.rb
100
+ - app/concepts/matestack/ui/bootstrap/registry.rb
101
+ - app/helpers/matestack/ui/bootstrap/application_helper.rb
102
+ - app/javascript/matestack-ui-bootstrap/index.js
103
+ - app/javascript/matestack-ui-bootstrap/stylesheets/matestack-ui-bootstrap.scss
104
+ - app/javascript/packs/matestack-ui-bootstrap.js
105
+ - config/routes.rb
106
+ - config/webpack/development.js
107
+ - config/webpack/environment.js
108
+ - config/webpack/production.js
109
+ - config/webpack/test.js
110
+ - config/webpacker.yml
111
+ - lib/matestack/ui/bootstrap.rb
112
+ - lib/matestack/ui/bootstrap/engine.rb
113
+ - lib/matestack/ui/bootstrap/version.rb
114
+ - lib/tasks/matestack/ui/bootstrap_tasks.rake
115
+ homepage: https://matestack.org
116
+ licenses: []
117
+ metadata: {}
118
+ post_install_message:
119
+ rdoc_options: []
120
+ require_paths:
121
+ - lib
122
+ required_ruby_version: !ruby/object:Gem::Requirement
123
+ requirements:
124
+ - - ">="
125
+ - !ruby/object:Gem::Version
126
+ version: '0'
127
+ required_rubygems_version: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ requirements: []
133
+ rubygems_version: 3.0.3
134
+ signing_key:
135
+ specification_version: 4
136
+ summary: Bootstrap v5 components for Matestack UI
137
+ test_files: []