card-mod-bootstrap 0.11.6 → 0.13.1
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/db/migrate_core_cards/20180423160231_migrate_customized_bootstrap_skin.rb +1 -1
- data/db/migrate_core_cards/20200809112346_add_mod_card.rb +7 -0
- data/db/migrate_core_cards/20201129140917_remove_script_cards.rb +9 -0
- data/file/mod_bootstrap_script_bootstrap_machine_output/file.js +25 -0
- data/file/mod_bootstrap_script_pointer_machine_output/file.js +223 -0
- data/lib/card/bootstrap.rb +17 -0
- data/lib/card/bootstrap/basic_tags.rb +26 -0
- data/lib/card/bootstrap/component.rb +110 -0
- data/lib/card/bootstrap/component/carousel.rb +78 -0
- data/lib/card/bootstrap/component/form.rb +67 -0
- data/lib/card/bootstrap/component/horizontal_form.rb +65 -0
- data/lib/card/bootstrap/component/layout.rb +107 -0
- data/lib/card/bootstrap/component/panel.rb +11 -0
- data/lib/{bootstrap/component/component_class.rb → card/bootstrap/component_klass.rb} +5 -4
- data/lib/card/bootstrap/component_loader.rb +30 -0
- data/lib/card/bootstrap/content.rb +42 -0
- data/lib/card/bootstrap/delegate.rb +18 -0
- data/lib/card/bootstrap/old_component.rb +108 -0
- data/lib/card/bootstrap/tag_method.rb +56 -0
- data/lib/card/bootstrapper.rb +17 -0
- data/lib/card/tab.rb +8 -1
- data/lib/stylesheets/font_awesome.css +6 -6
- data/lib/stylesheets/material_icons.css +4 -4
- data/public/{assets/fonts → fonts}/MaterialIcons-Regular.eot +0 -0
- data/public/{assets/fonts → fonts}/MaterialIcons-Regular.ijmap +0 -0
- data/public/{assets/fonts → fonts}/MaterialIcons-Regular.svg +0 -0
- data/public/{assets/fonts → fonts}/MaterialIcons-Regular.ttf +0 -0
- data/public/{assets/fonts → fonts}/MaterialIcons-Regular.woff +0 -0
- data/public/{assets/fonts → fonts}/MaterialIcons-Regular.woff2 +0 -0
- data/public/{assets/fonts → fonts}/fa-brands-400.eot +0 -0
- data/public/{assets/fonts → fonts}/fa-brands-400.svg +0 -0
- data/public/{assets/fonts → fonts}/fa-brands-400.ttf +0 -0
- data/public/{assets/fonts → fonts}/fa-brands-400.woff +0 -0
- data/public/{assets/fonts → fonts}/fa-brands-400.woff2 +0 -0
- data/public/{assets/fonts → fonts}/fa-regular-400.eot +0 -0
- data/public/{assets/fonts → fonts}/fa-regular-400.svg +0 -0
- data/public/{assets/fonts → fonts}/fa-regular-400.ttf +0 -0
- data/public/{assets/fonts → fonts}/fa-regular-400.woff +0 -0
- data/public/{assets/fonts → fonts}/fa-regular-400.woff2 +0 -0
- data/public/{assets/fonts → fonts}/fa-solid-900.eot +0 -0
- data/public/{assets/fonts → fonts}/fa-solid-900.svg +0 -0
- data/public/{assets/fonts → fonts}/fa-solid-900.ttf +0 -0
- data/public/{assets/fonts → fonts}/fa-solid-900.woff +0 -0
- data/public/{assets/fonts → fonts}/fa-solid-900.woff2 +0 -0
- data/public/{assets/fonts → fonts}/glyphicons-halflings-regular.eot +0 -0
- data/public/{assets/fonts → fonts}/glyphicons-halflings-regular.svg +0 -0
- data/public/{assets/fonts → fonts}/glyphicons-halflings-regular.ttf +0 -0
- data/public/{assets/fonts → fonts}/glyphicons-halflings-regular.woff +0 -0
- data/public/{assets/fonts → fonts}/glyphicons-halflings-regular.woff2 +0 -0
- data/set/abstract/bootswatch_theme.rb +2 -2
- data/set/all/bootstrap/icon.rb +3 -1
- metadata +72 -58
- data/lib/bootstrap.rb +0 -18
- data/lib/bootstrap/basic_tags.rb +0 -26
- data/lib/bootstrap/component.rb +0 -108
- data/lib/bootstrap/component/carousel.rb +0 -76
- data/lib/bootstrap/component/form.rb +0 -65
- data/lib/bootstrap/component/horizontal_form.rb +0 -63
- data/lib/bootstrap/component/layout.rb +0 -105
- data/lib/bootstrap/component/panel.rb +0 -9
- data/lib/bootstrap/component_loader.rb +0 -28
- data/lib/bootstrap/content.rb +0 -40
- data/lib/bootstrap/delegate.rb +0 -16
- data/lib/bootstrap/old_component.rb +0 -103
- data/lib/bootstrap/tag_method.rb +0 -54
- data/lib/bootstrapper.rb +0 -16
- data/lib/javascript/bootstrap_modal_decko.js +0 -27
- data/lib/javascript/script_load_select2.js.coffee +0 -55
- data/set/self/script_bootstrap.rb +0 -12
- data/set/self/script_select2.rb +0 -12
@@ -0,0 +1,108 @@
|
|
1
|
+
class Card
|
2
|
+
class Bootstrap
|
3
|
+
# not-yet-obviated component handling
|
4
|
+
class OldComponent < Component
|
5
|
+
include Content
|
6
|
+
|
7
|
+
def initialize context, *args, &block
|
8
|
+
@context = context
|
9
|
+
@content = ["".html_safe]
|
10
|
+
@args = args
|
11
|
+
@child_args = []
|
12
|
+
@append = []
|
13
|
+
@wrap = []
|
14
|
+
@build_block = block
|
15
|
+
end
|
16
|
+
|
17
|
+
class << self
|
18
|
+
def render format, *args, &block
|
19
|
+
new(format, *args, &block).render
|
20
|
+
end
|
21
|
+
|
22
|
+
# Like add_tag_method but always generates a div tag
|
23
|
+
# The tag option is not available
|
24
|
+
def add_div_method name, html_class, opts={}, &tag_block
|
25
|
+
add_tag_method name, html_class, opts.merge(tag: :div), &tag_block
|
26
|
+
end
|
27
|
+
|
28
|
+
# Defines a method that generates a html tag
|
29
|
+
# @param name [Symbol, String] the name of the method. If no :tag option in
|
30
|
+
# tag_opts is defined then the name is also the name of the tag that the method
|
31
|
+
# generates
|
32
|
+
# @param html_class [String] a html class that is added to tag. Use nil if you
|
33
|
+
# don't want a html_class
|
34
|
+
# @param tag_opts [Hash] additional argument that will be added to the tag
|
35
|
+
# @option tag_opts [Symbol, String] tag the name of the tag
|
36
|
+
# @example
|
37
|
+
# add_tag_method :link, "known-link", tag: :a, id: "uniq-link"
|
38
|
+
# link # => <a class="known-link" id="uniq-link"></a>
|
39
|
+
def add_tag_method name, html_class, tag_opts={}, &tag_block
|
40
|
+
define_method name do |*args, &block|
|
41
|
+
process_tag tag_opts[:tag] || name do
|
42
|
+
content, opts, new_child_args = standardize_args args, &tag_block
|
43
|
+
add_classes opts, html_class, tag_opts.delete(:optional_classes)
|
44
|
+
if (attributes = tag_opts.delete(:attributes))
|
45
|
+
opts.merge! attributes
|
46
|
+
end
|
47
|
+
|
48
|
+
content = with_child_args new_child_args do
|
49
|
+
generate_content content,
|
50
|
+
tag_opts[:content_processor],
|
51
|
+
&block
|
52
|
+
end
|
53
|
+
|
54
|
+
[content, opts]
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
alias_method :def_div_method, :add_div_method
|
60
|
+
alias_method :def_tag_method, :add_tag_method
|
61
|
+
end
|
62
|
+
|
63
|
+
def render
|
64
|
+
@rendered = begin
|
65
|
+
render_content
|
66
|
+
@content[-1]
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
private
|
71
|
+
|
72
|
+
def process_tag tag_name, &content_block
|
73
|
+
@content.push "".html_safe
|
74
|
+
@append << []
|
75
|
+
@wrap << []
|
76
|
+
|
77
|
+
opts = process_content(&content_block)
|
78
|
+
process_collected_content tag_name, opts
|
79
|
+
process_append
|
80
|
+
""
|
81
|
+
end
|
82
|
+
|
83
|
+
# include BasicTags
|
84
|
+
def html content
|
85
|
+
add_content String(content).html_safe
|
86
|
+
""
|
87
|
+
end
|
88
|
+
|
89
|
+
add_div_method :div, nil do |opts, extra_args|
|
90
|
+
prepend_class opts, extra_args.first if extra_args.present?
|
91
|
+
opts
|
92
|
+
end
|
93
|
+
|
94
|
+
add_div_method :span, nil do |opts, extra_args|
|
95
|
+
prepend_class opts, extra_args.first if extra_args.present?
|
96
|
+
opts
|
97
|
+
end
|
98
|
+
|
99
|
+
add_tag_method :tag, nil, tag: :yield do |opts, extra_args|
|
100
|
+
prepend_class opts, extra_args[1] if extra_args[1].present?
|
101
|
+
opts[:tag] = extra_args[0]
|
102
|
+
opts
|
103
|
+
end
|
104
|
+
|
105
|
+
include Delegate
|
106
|
+
end
|
107
|
+
end
|
108
|
+
end
|
@@ -0,0 +1,56 @@
|
|
1
|
+
class Card
|
2
|
+
class Bootstrap
|
3
|
+
# support html tag generation
|
4
|
+
class TagMethod
|
5
|
+
include Content
|
6
|
+
|
7
|
+
def initialize component, name, html_class, tag_opts={}, &tag_block
|
8
|
+
@component = component
|
9
|
+
@name = name
|
10
|
+
@html_class = html_class
|
11
|
+
@tag_opts = tag_opts
|
12
|
+
@tag_block = tag_block
|
13
|
+
@append = []
|
14
|
+
@wrap = []
|
15
|
+
@xm = Builder::XmlMarkup.new
|
16
|
+
end
|
17
|
+
|
18
|
+
def call *_args, &content_block
|
19
|
+
component.content.push "".html_safe
|
20
|
+
|
21
|
+
opts = process_content(&content_block)
|
22
|
+
process_collected_content tag_name, opts
|
23
|
+
process_append
|
24
|
+
""
|
25
|
+
end
|
26
|
+
|
27
|
+
def method_missing method, *args, &block
|
28
|
+
return super unless respond_to_missing? method
|
29
|
+
|
30
|
+
@component.send method, *args, &block
|
31
|
+
end
|
32
|
+
|
33
|
+
def respond_to_missing? method, _include_private=false
|
34
|
+
@component.respond_to? method
|
35
|
+
end
|
36
|
+
|
37
|
+
def prepend &block
|
38
|
+
tmp = @content.pop
|
39
|
+
instance_exec(&block)
|
40
|
+
@content << tmp
|
41
|
+
end
|
42
|
+
|
43
|
+
def wrap &block
|
44
|
+
instance_exec(&block)
|
45
|
+
end
|
46
|
+
|
47
|
+
def append &block
|
48
|
+
@append[-1] << block
|
49
|
+
end
|
50
|
+
|
51
|
+
def wrapInner tag=nil, &block
|
52
|
+
@wrap[-1] << (block_given? ? block : tag)
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
class Card
|
2
|
+
module Bootstrapper
|
3
|
+
extend Bootstrap::ComponentLoader
|
4
|
+
|
5
|
+
def bootstrap
|
6
|
+
@bootstrap ||= Bootstrap.new(self)
|
7
|
+
end
|
8
|
+
|
9
|
+
def bs *args, &block
|
10
|
+
bootstrap.render(*args, &block)
|
11
|
+
end
|
12
|
+
|
13
|
+
components.each do |component|
|
14
|
+
delegate component, to: :bootstrap, prefix: :bs
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
data/lib/card/tab.rb
CHANGED
@@ -5,11 +5,18 @@ class Card
|
|
5
5
|
class << self
|
6
6
|
def tab_objects format, tab_hash, active_name, klass=nil
|
7
7
|
klass ||= Card::Tab
|
8
|
-
active_name
|
8
|
+
active_name = active active_name, tab_hash.keys
|
9
9
|
tab_hash.map do |name, config|
|
10
10
|
klass.new format, name, active_name, config
|
11
11
|
end
|
12
12
|
end
|
13
|
+
|
14
|
+
private
|
15
|
+
|
16
|
+
def active requested, keys
|
17
|
+
r = requested.to_name
|
18
|
+
r && keys.find { |k| k.to_name == r } || keys.first
|
19
|
+
end
|
13
20
|
end
|
14
21
|
|
15
22
|
delegate :add_class, :wrap_with, :unique_id, :link_to, to: :format
|
@@ -4588,8 +4588,8 @@ readers do not read off random characters that represent icons */
|
|
4588
4588
|
font-style: normal;
|
4589
4589
|
font-weight: 400;
|
4590
4590
|
font-display: block;
|
4591
|
-
src: url([[/
|
4592
|
-
src: url([[/
|
4591
|
+
src: url([[/mod/bootstrap/fonts/fa-brands-400.eot]]);
|
4592
|
+
src: url([[/mod/bootstrap/fonts/fa-brands-400.eot?#iefix]]) format("embedded-opentype"), url([[/mod/bootstrap/fonts/fa-brands-400.woff2]]) format("woff2"), url([[/mod/bootstrap/fonts/fa-brands-400.woff]]) format("woff"), url([[/mod/bootstrap/fonts/fa-brands-400.ttf]]) format("truetype"), url([[/mod/bootstrap/fonts/fa-brands-400.svg#fontawesome]]) format("svg"); }
|
4593
4593
|
|
4594
4594
|
.fab {
|
4595
4595
|
font-family: 'Font Awesome 5 Brands';
|
@@ -4599,8 +4599,8 @@ readers do not read off random characters that represent icons */
|
|
4599
4599
|
font-style: normal;
|
4600
4600
|
font-weight: 400;
|
4601
4601
|
font-display: block;
|
4602
|
-
src: url([[/
|
4603
|
-
src: url([[/
|
4602
|
+
src: url([[/mod/bootstrap/fonts/fa-regular-400.eot]]);
|
4603
|
+
src: url([[/mod/bootstrap/fonts/fa-regular-400.eot?#iefix]]) format("embedded-opentype"), url([[/mod/bootstrap/fonts/fa-regular-400.woff2]]) format("woff2"), url([[/mod/bootstrap/fonts/fa-regular-400.woff]]) format("woff"), url([[/mod/bootstrap/fonts/fa-regular-400.ttf]]) format("truetype"), url([[/mod/bootstrap/fonts/fa-regular-400.svg#fontawesome]]) format("svg"); }
|
4604
4604
|
|
4605
4605
|
.far {
|
4606
4606
|
font-family: 'FontAwesome';
|
@@ -4610,8 +4610,8 @@ readers do not read off random characters that represent icons */
|
|
4610
4610
|
font-style: normal;
|
4611
4611
|
font-weight: 900;
|
4612
4612
|
font-display: block;
|
4613
|
-
src: url([[/
|
4614
|
-
src: url([[/
|
4613
|
+
src: url([[/mod/bootstrap/fonts/fa-solid-900.eot]]);
|
4614
|
+
src: url([[/mod/bootstrap/fonts/fa-solid-900.eot?#iefix]]) format("embedded-opentype"), url([[/mod/bootstrap/fonts/fa-solid-900.woff2]]) format("woff2"), url([[/mod/bootstrap/fonts/fa-solid-900.woff]]) format("woff"), url([[/mod/bootstrap/fonts/fa-solid-900.ttf]]) format("truetype"), url([[/mod/bootstrap/fonts/fa-solid-900.svg#fontawesome]]) format("svg"); }
|
4615
4615
|
|
4616
4616
|
.fa,
|
4617
4617
|
.fas {
|
@@ -2,12 +2,12 @@
|
|
2
2
|
font-family: 'Material Icons';
|
3
3
|
font-style: normal;
|
4
4
|
font-weight: 400;
|
5
|
-
src: url([[/
|
5
|
+
src: url([[/mod/bootstrap/fonts/MaterialIcons-Regular.eot]]); /* For IE6-8 */
|
6
6
|
src: local('Material Icons'),
|
7
7
|
local('MaterialIcons-Regular'),
|
8
|
-
url([[/
|
9
|
-
url([[/
|
10
|
-
url([[/
|
8
|
+
url([[/mod/bootstrap/fonts/MaterialIcons-Regular.woff2]]) format('woff2'),
|
9
|
+
url([[/mod/bootstrap/fonts/MaterialIcons-Regular.woff]]) format('woff'),
|
10
|
+
url([[/mod/bootstrap/fonts/MaterialIcons-Regular.ttf]]) format('truetype');
|
11
11
|
}
|
12
12
|
|
13
13
|
.material-icons {
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -77,14 +77,14 @@ def after_engine output
|
|
77
77
|
Card::Auth.as_bot { update! db_content: output }
|
78
78
|
end
|
79
79
|
|
80
|
-
# needed to make the
|
80
|
+
# needed to make the refresh_assets method work with these cards
|
81
81
|
def source_files
|
82
82
|
extended_input_cards.map do |i_card|
|
83
83
|
i_card.try(:source_files)
|
84
84
|
end.flatten.compact
|
85
85
|
end
|
86
86
|
|
87
|
-
# needed to make the
|
87
|
+
# needed to make the refresh_assets method work with these cards
|
88
88
|
def existing_source_paths
|
89
89
|
extended_input_cards.map do |i_card|
|
90
90
|
i_card.try(:existing_source_paths)
|
data/set/all/bootstrap/icon.rb
CHANGED
@@ -96,7 +96,9 @@ format :html do
|
|
96
96
|
end
|
97
97
|
|
98
98
|
def font_awesome_icon_tag icon, opts={}
|
99
|
-
|
99
|
+
|
100
|
+
prepend_class opts,
|
101
|
+
"fa#{'b' if opts.delete :brand} fa-#{icon_class(:font_awesome, icon)}"
|
100
102
|
wrap_with :i, "", opts
|
101
103
|
end
|
102
104
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: card-mod-bootstrap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.13.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ethan McCutchen
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2021-
|
13
|
+
date: 2021-08-06 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: card
|
@@ -18,70 +18,84 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - '='
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 1.
|
21
|
+
version: 1.103.1
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
26
|
- - '='
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version: 1.
|
28
|
+
version: 1.103.1
|
29
|
+
- !ruby/object:Gem::Dependency
|
30
|
+
name: card-mod-assets
|
31
|
+
requirement: !ruby/object:Gem::Requirement
|
32
|
+
requirements:
|
33
|
+
- - '='
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: 0.13.1
|
36
|
+
type: :runtime
|
37
|
+
prerelease: false
|
38
|
+
version_requirements: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - '='
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 0.13.1
|
29
43
|
- !ruby/object:Gem::Dependency
|
30
44
|
name: card-mod-edit
|
31
45
|
requirement: !ruby/object:Gem::Requirement
|
32
46
|
requirements:
|
33
47
|
- - '='
|
34
48
|
- !ruby/object:Gem::Version
|
35
|
-
version: 0.
|
49
|
+
version: 0.13.1
|
36
50
|
type: :runtime
|
37
51
|
prerelease: false
|
38
52
|
version_requirements: !ruby/object:Gem::Requirement
|
39
53
|
requirements:
|
40
54
|
- - '='
|
41
55
|
- !ruby/object:Gem::Version
|
42
|
-
version: 0.
|
56
|
+
version: 0.13.1
|
43
57
|
- !ruby/object:Gem::Dependency
|
44
58
|
name: card-mod-bar_and_box
|
45
59
|
requirement: !ruby/object:Gem::Requirement
|
46
60
|
requirements:
|
47
61
|
- - '='
|
48
62
|
- !ruby/object:Gem::Version
|
49
|
-
version: 0.
|
63
|
+
version: 0.13.1
|
50
64
|
type: :runtime
|
51
65
|
prerelease: false
|
52
66
|
version_requirements: !ruby/object:Gem::Requirement
|
53
67
|
requirements:
|
54
68
|
- - '='
|
55
69
|
- !ruby/object:Gem::Version
|
56
|
-
version: 0.
|
70
|
+
version: 0.13.1
|
57
71
|
- !ruby/object:Gem::Dependency
|
58
72
|
name: card-mod-style
|
59
73
|
requirement: !ruby/object:Gem::Requirement
|
60
74
|
requirements:
|
61
75
|
- - '='
|
62
76
|
- !ruby/object:Gem::Version
|
63
|
-
version: 0.
|
77
|
+
version: 0.13.1
|
64
78
|
type: :runtime
|
65
79
|
prerelease: false
|
66
80
|
version_requirements: !ruby/object:Gem::Requirement
|
67
81
|
requirements:
|
68
82
|
- - '='
|
69
83
|
- !ruby/object:Gem::Version
|
70
|
-
version: 0.
|
84
|
+
version: 0.13.1
|
71
85
|
- !ruby/object:Gem::Dependency
|
72
86
|
name: card-mod-script
|
73
87
|
requirement: !ruby/object:Gem::Requirement
|
74
88
|
requirements:
|
75
89
|
- - '='
|
76
90
|
- !ruby/object:Gem::Version
|
77
|
-
version: 0.
|
91
|
+
version: 0.13.1
|
78
92
|
type: :runtime
|
79
93
|
prerelease: false
|
80
94
|
version_requirements: !ruby/object:Gem::Requirement
|
81
95
|
requirements:
|
82
96
|
- - '='
|
83
97
|
- !ruby/object:Gem::Version
|
84
|
-
version: 0.
|
98
|
+
version: 0.13.1
|
85
99
|
description: ''
|
86
100
|
email:
|
87
101
|
- info@decko.org
|
@@ -103,6 +117,8 @@ files:
|
|
103
117
|
- db/migrate_core_cards/20180516153037_add_style_select2_card.rb
|
104
118
|
- db/migrate_core_cards/20180601133753_migrate_skins.rb
|
105
119
|
- db/migrate_core_cards/20181129140917_fix_skin_images.rb
|
120
|
+
- db/migrate_core_cards/20200809112346_add_mod_card.rb
|
121
|
+
- db/migrate_core_cards/20201129140917_remove_script_cards.rb
|
106
122
|
- db/migrate_core_cards/data/20181108181219_migrate_classic_skins_to_bootstrap.rb
|
107
123
|
- db/migrate_core_cards/data/custom_theme/cards.scss
|
108
124
|
- db/migrate_core_cards/data/custom_theme/colors.scss
|
@@ -166,6 +182,8 @@ files:
|
|
166
182
|
- file/minty_skin_image/image-medium.png
|
167
183
|
- file/minty_skin_image/image-original.png
|
168
184
|
- file/minty_skin_image/image-small.png
|
185
|
+
- file/mod_bootstrap_script_bootstrap_machine_output/file.js
|
186
|
+
- file/mod_bootstrap_script_pointer_machine_output/file.js
|
169
187
|
- file/paper_skin_image/image-icon.png
|
170
188
|
- file/paper_skin_image/image-large.png
|
171
189
|
- file/paper_skin_image/image-medium.png
|
@@ -226,57 +244,55 @@ files:
|
|
226
244
|
- file/yeti_skin_image/image-medium.png
|
227
245
|
- file/yeti_skin_image/image-original.png
|
228
246
|
- file/yeti_skin_image/image-small.png
|
229
|
-
- lib/bootstrap.rb
|
230
|
-
- lib/bootstrap/basic_tags.rb
|
231
|
-
- lib/bootstrap/component.rb
|
232
|
-
- lib/bootstrap/component/carousel.rb
|
233
|
-
- lib/bootstrap/component/
|
234
|
-
- lib/bootstrap/component/
|
235
|
-
- lib/bootstrap/component/
|
236
|
-
- lib/bootstrap/component/
|
237
|
-
- lib/bootstrap/
|
238
|
-
- lib/bootstrap/component_loader.rb
|
239
|
-
- lib/bootstrap/content.rb
|
240
|
-
- lib/bootstrap/delegate.rb
|
241
|
-
- lib/bootstrap/old_component.rb
|
242
|
-
- lib/bootstrap/tag_method.rb
|
243
|
-
- lib/bootstrapper.rb
|
247
|
+
- lib/card/bootstrap.rb
|
248
|
+
- lib/card/bootstrap/basic_tags.rb
|
249
|
+
- lib/card/bootstrap/component.rb
|
250
|
+
- lib/card/bootstrap/component/carousel.rb
|
251
|
+
- lib/card/bootstrap/component/form.rb
|
252
|
+
- lib/card/bootstrap/component/horizontal_form.rb
|
253
|
+
- lib/card/bootstrap/component/layout.rb
|
254
|
+
- lib/card/bootstrap/component/panel.rb
|
255
|
+
- lib/card/bootstrap/component_klass.rb
|
256
|
+
- lib/card/bootstrap/component_loader.rb
|
257
|
+
- lib/card/bootstrap/content.rb
|
258
|
+
- lib/card/bootstrap/delegate.rb
|
259
|
+
- lib/card/bootstrap/old_component.rb
|
260
|
+
- lib/card/bootstrap/tag_method.rb
|
261
|
+
- lib/card/bootstrapper.rb
|
244
262
|
- lib/card/lazy_tab.rb
|
245
263
|
- lib/card/tab.rb
|
246
|
-
- lib/javascript/bootstrap_modal_decko.js
|
247
|
-
- lib/javascript/script_load_select2.js.coffee
|
248
264
|
- lib/javascript/smartmenu.js
|
249
265
|
- lib/stylesheets/font_awesome.css
|
250
266
|
- lib/stylesheets/material_icons.css
|
251
267
|
- lib/stylesheets/smartmenu.css
|
252
268
|
- lib/stylesheets/style_bootstrap_cards.scss
|
253
269
|
- lib/stylesheets/style_select2_bootstrap.scss
|
254
|
-
- public/
|
255
|
-
- public/
|
256
|
-
- public/
|
257
|
-
- public/
|
258
|
-
- public/
|
259
|
-
- public/
|
260
|
-
- public/
|
261
|
-
- public/
|
262
|
-
- public/
|
263
|
-
- public/
|
264
|
-
- public/
|
265
|
-
- public/
|
266
|
-
- public/
|
267
|
-
- public/
|
268
|
-
- public/
|
269
|
-
- public/
|
270
|
-
- public/
|
271
|
-
- public/
|
272
|
-
- public/
|
273
|
-
- public/
|
274
|
-
- public/
|
275
|
-
- public/
|
276
|
-
- public/
|
277
|
-
- public/
|
278
|
-
- public/
|
279
|
-
- public/
|
270
|
+
- public/fonts/MaterialIcons-Regular.eot
|
271
|
+
- public/fonts/MaterialIcons-Regular.ijmap
|
272
|
+
- public/fonts/MaterialIcons-Regular.svg
|
273
|
+
- public/fonts/MaterialIcons-Regular.ttf
|
274
|
+
- public/fonts/MaterialIcons-Regular.woff
|
275
|
+
- public/fonts/MaterialIcons-Regular.woff2
|
276
|
+
- public/fonts/fa-brands-400.eot
|
277
|
+
- public/fonts/fa-brands-400.svg
|
278
|
+
- public/fonts/fa-brands-400.ttf
|
279
|
+
- public/fonts/fa-brands-400.woff
|
280
|
+
- public/fonts/fa-brands-400.woff2
|
281
|
+
- public/fonts/fa-regular-400.eot
|
282
|
+
- public/fonts/fa-regular-400.svg
|
283
|
+
- public/fonts/fa-regular-400.ttf
|
284
|
+
- public/fonts/fa-regular-400.woff
|
285
|
+
- public/fonts/fa-regular-400.woff2
|
286
|
+
- public/fonts/fa-solid-900.eot
|
287
|
+
- public/fonts/fa-solid-900.svg
|
288
|
+
- public/fonts/fa-solid-900.ttf
|
289
|
+
- public/fonts/fa-solid-900.woff
|
290
|
+
- public/fonts/fa-solid-900.woff2
|
291
|
+
- public/fonts/glyphicons-halflings-regular.eot
|
292
|
+
- public/fonts/glyphicons-halflings-regular.svg
|
293
|
+
- public/fonts/glyphicons-halflings-regular.ttf
|
294
|
+
- public/fonts/glyphicons-halflings-regular.woff
|
295
|
+
- public/fonts/glyphicons-halflings-regular.woff2
|
280
296
|
- set/abstract/bootstrap_code_file.rb
|
281
297
|
- set/abstract/bootswatch_theme.rb
|
282
298
|
- set/abstract/bootswatch_theme/html_views.rb
|
@@ -301,9 +317,7 @@ files:
|
|
301
317
|
- set/self/bootstrap_functions.rb
|
302
318
|
- set/self/font_awesome.rb
|
303
319
|
- set/self/material_icons.rb
|
304
|
-
- set/self/script_bootstrap.rb
|
305
320
|
- set/self/script_load_select2.rb
|
306
|
-
- set/self/script_select2.rb
|
307
321
|
- set/self/smartmenu_css.rb
|
308
322
|
- set/self/smartmenu_js.rb
|
309
323
|
- set/self/style_bootstrap_cards.rb
|
@@ -2994,7 +3008,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
2994
3008
|
- !ruby/object:Gem::Version
|
2995
3009
|
version: '0'
|
2996
3010
|
requirements: []
|
2997
|
-
rubygems_version: 3.1.
|
3011
|
+
rubygems_version: 3.1.6
|
2998
3012
|
signing_key:
|
2999
3013
|
specification_version: 4
|
3000
3014
|
summary: Bootstrap
|