card-mod-bootstrap 0.12.0 → 0.13.3
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/{lib/javascript → assets/script}/bootstrap_modal_decko.js +0 -0
- data/assets/script/manifest.yml +18 -0
- data/assets/script/script_colorpicker.js.coffee +3 -0
- data/{lib/javascript → assets/script}/script_load_select2.js.coffee +0 -0
- data/assets/script/script_pointer_config.js.coffee +80 -0
- data/assets/script/script_pointer_list_editor.js.coffee +67 -0
- 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/stylesheets/font_awesome.css +6 -6
- data/lib/stylesheets/material_icons.css +4 -4
- data/locales/en.yml +3 -0
- 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 +3 -3
- data/set/all/bootstrap/icon.rb +1 -1
- data/set/self/font_awesome.rb +1 -1
- data/set/self/material_icons.rb +1 -1
- data/set/self/script_load_select2.rb +1 -1
- data/set/self/style_bootstrap_colorpicker.rb +1 -1
- data/set/self/style_select2.rb +1 -1
- metadata +64 -43
- data/set/self/script_bootstrap.rb +0 -12
- data/set/self/script_select2.rb +0 -12
@@ -0,0 +1,223 @@
|
|
1
|
+
// script_pointer_config.js.coffee
|
2
|
+
(function() {
|
3
|
+
var permissionsContent, pointerContent;
|
4
|
+
|
5
|
+
$.extend(decko.editorContentFunctionMap, {
|
6
|
+
'select.pointer-select': function() {
|
7
|
+
return pointerContent(this.val());
|
8
|
+
},
|
9
|
+
'select.pointer-multiselect': function() {
|
10
|
+
return pointerContent(this.val());
|
11
|
+
},
|
12
|
+
'.pointer-radio-list': function() {
|
13
|
+
return pointerContent(this.find('input:checked').val());
|
14
|
+
},
|
15
|
+
'.pointer-list-ul': function() {
|
16
|
+
return pointerContent(this.find('input').map(function() {
|
17
|
+
return $(this).val();
|
18
|
+
}));
|
19
|
+
},
|
20
|
+
'.pointer-link-list-ul': function() {
|
21
|
+
return decko.linkListContent(this.find('.input-group'));
|
22
|
+
},
|
23
|
+
'._nest-list-ul': function() {
|
24
|
+
return decko.nestListContent(this.find('.input-group'));
|
25
|
+
},
|
26
|
+
'.pointer-checkbox-list': function() {
|
27
|
+
return pointerContent(this.find('input:checked').map(function() {
|
28
|
+
return $(this).val();
|
29
|
+
}));
|
30
|
+
},
|
31
|
+
'.pointer-select-list': function() {
|
32
|
+
return pointerContent(this.find('.pointer-select select').map(function() {
|
33
|
+
return $(this).val();
|
34
|
+
}));
|
35
|
+
},
|
36
|
+
'._pointer-filtered-list': function() {
|
37
|
+
return pointerContent(this.find('._filtered-list-item').map(function() {
|
38
|
+
return $(this).data('cardName');
|
39
|
+
}));
|
40
|
+
},
|
41
|
+
'._pointer-list': function() {
|
42
|
+
return pointerContent(this.find('._pointer-item').map(function() {
|
43
|
+
return $(this).val();
|
44
|
+
}));
|
45
|
+
},
|
46
|
+
'.perm-editor': function() {
|
47
|
+
return permissionsContent(this);
|
48
|
+
}
|
49
|
+
});
|
50
|
+
|
51
|
+
decko.editorInitFunctionMap['.pointer-list-editor'] = function() {
|
52
|
+
this.sortable({
|
53
|
+
handle: '.handle',
|
54
|
+
cancel: ''
|
55
|
+
});
|
56
|
+
return decko.initPointerList(this.find('input'));
|
57
|
+
};
|
58
|
+
|
59
|
+
decko.editorInitFunctionMap['._pointer-filtered-list'] = function() {
|
60
|
+
return this.sortable({
|
61
|
+
handle: '._handle',
|
62
|
+
cancel: ''
|
63
|
+
});
|
64
|
+
};
|
65
|
+
|
66
|
+
$.extend(decko, {
|
67
|
+
initPointerList: function(input) {
|
68
|
+
return decko.initAutoCardPlete(input);
|
69
|
+
},
|
70
|
+
initAutoCardPlete: function(input) {
|
71
|
+
var optionsCard, path;
|
72
|
+
optionsCard = input.data('options-card');
|
73
|
+
if (!optionsCard) {
|
74
|
+
return;
|
75
|
+
}
|
76
|
+
path = optionsCard + '.json?view=name_match';
|
77
|
+
return input.autocomplete({
|
78
|
+
source: decko.slotPath(path)
|
79
|
+
});
|
80
|
+
},
|
81
|
+
pointerContent: function(vals) {
|
82
|
+
var list;
|
83
|
+
list = $.map($.makeArray(vals), function(v) {
|
84
|
+
if (v) {
|
85
|
+
return '[[' + v + ']]';
|
86
|
+
}
|
87
|
+
});
|
88
|
+
return $.makeArray(list).join("\n");
|
89
|
+
},
|
90
|
+
linkListContent: function(input_groups) {
|
91
|
+
var list, vals;
|
92
|
+
vals = input_groups.map(function() {
|
93
|
+
var title, v;
|
94
|
+
v = $(this).find('input._reference').val();
|
95
|
+
title = $(this).find('input._title').val();
|
96
|
+
if (title.length > 0) {
|
97
|
+
v += "|" + title;
|
98
|
+
}
|
99
|
+
return v;
|
100
|
+
});
|
101
|
+
list = $.map($.makeArray(vals), function(v) {
|
102
|
+
if (v) {
|
103
|
+
return '[[' + v + ']]';
|
104
|
+
}
|
105
|
+
});
|
106
|
+
return $.makeArray(list).join("\n");
|
107
|
+
},
|
108
|
+
nestListContent: function(input_groups) {
|
109
|
+
var list, vals;
|
110
|
+
vals = input_groups.map(function() {
|
111
|
+
var options, v;
|
112
|
+
v = $(this).find('input._reference').val();
|
113
|
+
options = $(this).find('input._nest-options').val();
|
114
|
+
if (options.length > 0) {
|
115
|
+
v += "|" + options;
|
116
|
+
}
|
117
|
+
return v;
|
118
|
+
});
|
119
|
+
list = $.map($.makeArray(vals), function(v) {
|
120
|
+
if (v) {
|
121
|
+
return '{{' + v + '}}';
|
122
|
+
}
|
123
|
+
});
|
124
|
+
return $.makeArray(list).join("\n");
|
125
|
+
}
|
126
|
+
});
|
127
|
+
|
128
|
+
pointerContent = function(vals) {
|
129
|
+
return decko.pointerContent(vals);
|
130
|
+
};
|
131
|
+
|
132
|
+
permissionsContent = function(ed) {
|
133
|
+
var groups, indivs;
|
134
|
+
if (ed.find('#inherit').is(':checked')) {
|
135
|
+
return '_left';
|
136
|
+
}
|
137
|
+
groups = ed.find('.perm-group input:checked').map(function() {
|
138
|
+
return $(this).val();
|
139
|
+
});
|
140
|
+
indivs = ed.find('.perm-indiv input').map(function() {
|
141
|
+
return $(this).val();
|
142
|
+
});
|
143
|
+
return pointerContent($.makeArray(groups).concat($.makeArray(indivs)));
|
144
|
+
};
|
145
|
+
|
146
|
+
}).call(this);
|
147
|
+
|
148
|
+
// script_pointer_list_editor.js.coffee
|
149
|
+
(function() {
|
150
|
+
$(window).ready(function() {
|
151
|
+
$('body').on('click', '._pointer-item-add', function(event) {
|
152
|
+
decko.addPointerItem(this);
|
153
|
+
return event.preventDefault();
|
154
|
+
});
|
155
|
+
$('body').on('keydown', '.pointer-item-text', function(event) {
|
156
|
+
if (event.key === 'Enter') {
|
157
|
+
decko.addPointerItem(this);
|
158
|
+
return event.preventDefault();
|
159
|
+
}
|
160
|
+
});
|
161
|
+
$('body').on('keyup', '.pointer-item-text', function(_event) {
|
162
|
+
return decko.updateAddItemButton(this);
|
163
|
+
});
|
164
|
+
return $('body').on('click', '.pointer-item-delete', function() {
|
165
|
+
var item, list;
|
166
|
+
item = $(this).closest('li');
|
167
|
+
list = item.closest('ul');
|
168
|
+
if (list.find('.pointer-li').length > 1) {
|
169
|
+
item.remove();
|
170
|
+
} else {
|
171
|
+
item.find('input').val('');
|
172
|
+
}
|
173
|
+
return decko.updateAddItemButton(list);
|
174
|
+
});
|
175
|
+
});
|
176
|
+
|
177
|
+
decko.slotReady(function(slot) {
|
178
|
+
return slot.find('.pointer-list-editor').each(function() {
|
179
|
+
return decko.updateAddItemButton(this);
|
180
|
+
});
|
181
|
+
});
|
182
|
+
|
183
|
+
$.extend(decko, {
|
184
|
+
addPointerItem: function(el) {
|
185
|
+
var newInput, slot;
|
186
|
+
slot = $(el).slot();
|
187
|
+
slot.trigger("slotDestroy");
|
188
|
+
newInput = decko.nextPointerInput(decko.lastPointerItem(el));
|
189
|
+
newInput.val('');
|
190
|
+
slot.trigger("slotReady");
|
191
|
+
decko.initializeEditors(slot);
|
192
|
+
newInput.first().focus();
|
193
|
+
decko.updateAddItemButton(el);
|
194
|
+
return decko.initPointerList(newInput);
|
195
|
+
},
|
196
|
+
nextPointerInput: function(lastItem) {
|
197
|
+
var all_empty, i, input, lastInputs, len, newItem;
|
198
|
+
lastInputs = lastItem.find('input');
|
199
|
+
all_empty = true;
|
200
|
+
for (i = 0, len = lastInputs.length; i < len; i++) {
|
201
|
+
input = lastInputs[i];
|
202
|
+
all_empty = all_empty && $(input).val() === '';
|
203
|
+
}
|
204
|
+
if (all_empty) {
|
205
|
+
return lastInputs;
|
206
|
+
}
|
207
|
+
newItem = lastItem.clone();
|
208
|
+
lastItem.after(newItem);
|
209
|
+
newItem.attr("data-index", parseInt(lastItem.attr("data-index") + 1));
|
210
|
+
return newItem.find('input');
|
211
|
+
},
|
212
|
+
lastPointerItem: function(el) {
|
213
|
+
return $(el).closest('.content-editor').find('.pointer-li:last');
|
214
|
+
},
|
215
|
+
updateAddItemButton: function(el) {
|
216
|
+
var button, disabled;
|
217
|
+
button = $(el).closest('.content-editor').find('._pointer-item-add');
|
218
|
+
disabled = decko.lastPointerItem(el).find('input').val() === '';
|
219
|
+
return button.prop('disabled', disabled);
|
220
|
+
}
|
221
|
+
});
|
222
|
+
|
223
|
+
}).call(this);
|
@@ -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 {
|
data/locales/en.yml
ADDED
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
|
@@ -37,7 +37,7 @@
|
|
37
37
|
# content which will trigger the updates of other machines that use this card.
|
38
38
|
|
39
39
|
include_set Abstract::Machine
|
40
|
-
include_set
|
40
|
+
include_set Abstract::Scss
|
41
41
|
include_set Abstract::CodeFile
|
42
42
|
include_set Abstract::SkinBox
|
43
43
|
|
@@ -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
data/set/self/font_awesome.rb
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
include_set Abstract::CodeFile
|
2
|
-
|
2
|
+
basket[:style_libraries] << :font_awesome
|
data/set/self/material_icons.rb
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
include_set Abstract::CodeFile
|
2
|
-
|
2
|
+
basket[:style_libraries] << :material_icons
|
@@ -1,2 +1,2 @@
|
|
1
1
|
include_set Abstract::CodeFile
|
2
|
-
|
2
|
+
basket[:script_mods] << :script_load_select2
|
data/set/self/style_select2.rb
CHANGED
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.3
|
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-09-24 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.3
|
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.3
|
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.3
|
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.3
|
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.3
|
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.3
|
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.3
|
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.3
|
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.3
|
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.3
|
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.3
|
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.3
|
85
99
|
description: ''
|
86
100
|
email:
|
87
101
|
- info@decko.org
|
@@ -89,6 +103,12 @@ executables: []
|
|
89
103
|
extensions: []
|
90
104
|
extra_rdoc_files: []
|
91
105
|
files:
|
106
|
+
- assets/script/bootstrap_modal_decko.js
|
107
|
+
- assets/script/manifest.yml
|
108
|
+
- assets/script/script_colorpicker.js.coffee
|
109
|
+
- assets/script/script_load_select2.js.coffee
|
110
|
+
- assets/script/script_pointer_config.js.coffee
|
111
|
+
- assets/script/script_pointer_list_editor.js.coffee
|
92
112
|
- db/migrate_core_cards/20170719163733_update_bootswatch_themes_to_4_beta.rb
|
93
113
|
- db/migrate_core_cards/20170726111053_add_bootstrap_mixins.rb
|
94
114
|
- db/migrate_core_cards/20170726145012_select2.rb
|
@@ -103,6 +123,8 @@ files:
|
|
103
123
|
- db/migrate_core_cards/20180516153037_add_style_select2_card.rb
|
104
124
|
- db/migrate_core_cards/20180601133753_migrate_skins.rb
|
105
125
|
- db/migrate_core_cards/20181129140917_fix_skin_images.rb
|
126
|
+
- db/migrate_core_cards/20200809112346_add_mod_card.rb
|
127
|
+
- db/migrate_core_cards/20201129140917_remove_script_cards.rb
|
106
128
|
- db/migrate_core_cards/data/20181108181219_migrate_classic_skins_to_bootstrap.rb
|
107
129
|
- db/migrate_core_cards/data/custom_theme/cards.scss
|
108
130
|
- db/migrate_core_cards/data/custom_theme/colors.scss
|
@@ -166,6 +188,8 @@ files:
|
|
166
188
|
- file/minty_skin_image/image-medium.png
|
167
189
|
- file/minty_skin_image/image-original.png
|
168
190
|
- file/minty_skin_image/image-small.png
|
191
|
+
- file/mod_bootstrap_script_bootstrap_machine_output/file.js
|
192
|
+
- file/mod_bootstrap_script_pointer_machine_output/file.js
|
169
193
|
- file/paper_skin_image/image-icon.png
|
170
194
|
- file/paper_skin_image/image-large.png
|
171
195
|
- file/paper_skin_image/image-medium.png
|
@@ -243,40 +267,39 @@ files:
|
|
243
267
|
- lib/card/bootstrapper.rb
|
244
268
|
- lib/card/lazy_tab.rb
|
245
269
|
- lib/card/tab.rb
|
246
|
-
- lib/javascript/bootstrap_modal_decko.js
|
247
|
-
- lib/javascript/script_load_select2.js.coffee
|
248
270
|
- lib/javascript/smartmenu.js
|
249
271
|
- lib/stylesheets/font_awesome.css
|
250
272
|
- lib/stylesheets/material_icons.css
|
251
273
|
- lib/stylesheets/smartmenu.css
|
252
274
|
- lib/stylesheets/style_bootstrap_cards.scss
|
253
275
|
- lib/stylesheets/style_select2_bootstrap.scss
|
254
|
-
-
|
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/
|
276
|
+
- locales/en.yml
|
277
|
+
- public/fonts/MaterialIcons-Regular.eot
|
278
|
+
- public/fonts/MaterialIcons-Regular.ijmap
|
279
|
+
- public/fonts/MaterialIcons-Regular.svg
|
280
|
+
- public/fonts/MaterialIcons-Regular.ttf
|
281
|
+
- public/fonts/MaterialIcons-Regular.woff
|
282
|
+
- public/fonts/MaterialIcons-Regular.woff2
|
283
|
+
- public/fonts/fa-brands-400.eot
|
284
|
+
- public/fonts/fa-brands-400.svg
|
285
|
+
- public/fonts/fa-brands-400.ttf
|
286
|
+
- public/fonts/fa-brands-400.woff
|
287
|
+
- public/fonts/fa-brands-400.woff2
|
288
|
+
- public/fonts/fa-regular-400.eot
|
289
|
+
- public/fonts/fa-regular-400.svg
|
290
|
+
- public/fonts/fa-regular-400.ttf
|
291
|
+
- public/fonts/fa-regular-400.woff
|
292
|
+
- public/fonts/fa-regular-400.woff2
|
293
|
+
- public/fonts/fa-solid-900.eot
|
294
|
+
- public/fonts/fa-solid-900.svg
|
295
|
+
- public/fonts/fa-solid-900.ttf
|
296
|
+
- public/fonts/fa-solid-900.woff
|
297
|
+
- public/fonts/fa-solid-900.woff2
|
298
|
+
- public/fonts/glyphicons-halflings-regular.eot
|
299
|
+
- public/fonts/glyphicons-halflings-regular.svg
|
300
|
+
- public/fonts/glyphicons-halflings-regular.ttf
|
301
|
+
- public/fonts/glyphicons-halflings-regular.woff
|
302
|
+
- public/fonts/glyphicons-halflings-regular.woff2
|
280
303
|
- set/abstract/bootstrap_code_file.rb
|
281
304
|
- set/abstract/bootswatch_theme.rb
|
282
305
|
- set/abstract/bootswatch_theme/html_views.rb
|
@@ -301,9 +324,7 @@ files:
|
|
301
324
|
- set/self/bootstrap_functions.rb
|
302
325
|
- set/self/font_awesome.rb
|
303
326
|
- set/self/material_icons.rb
|
304
|
-
- set/self/script_bootstrap.rb
|
305
327
|
- set/self/script_load_select2.rb
|
306
|
-
- set/self/script_select2.rb
|
307
328
|
- set/self/smartmenu_css.rb
|
308
329
|
- set/self/smartmenu_js.rb
|
309
330
|
- set/self/style_bootstrap_cards.rb
|
@@ -2994,7 +3015,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
2994
3015
|
- !ruby/object:Gem::Version
|
2995
3016
|
version: '0'
|
2996
3017
|
requirements: []
|
2997
|
-
rubygems_version: 3.
|
3018
|
+
rubygems_version: 3.1.6
|
2998
3019
|
signing_key:
|
2999
3020
|
specification_version: 4
|
3000
3021
|
summary: Bootstrap
|
@@ -1,12 +0,0 @@
|
|
1
|
-
include_set Abstract::CodeFile
|
2
|
-
Self::ScriptLibraries.add_item :script_bootstrap
|
3
|
-
|
4
|
-
def source_dir
|
5
|
-
""
|
6
|
-
end
|
7
|
-
|
8
|
-
def source_files
|
9
|
-
%w[vendor/bootstrap/dist/js/bootstrap.bundle.js
|
10
|
-
lib/javascript/bootstrap_modal_decko.js
|
11
|
-
vendor/bootstrap-colorpicker/dist/js/bootstrap-colorpicker.min.js]
|
12
|
-
end
|