blacklight-spotlight 4.7.0 → 4.7.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/app/assets/javascripts/spotlight/spotlight.esm.js +4 -4
- data/app/assets/javascripts/spotlight/spotlight.esm.js.map +1 -1
- data/app/assets/javascripts/spotlight/spotlight.js +4 -4
- data/app/assets/javascripts/spotlight/spotlight.js.map +1 -1
- data/app/assets/stylesheets/spotlight/#_accessibility.scss# +12 -0
- data/app/javascript/spotlight/admin/blocks/browse_block.js +1 -1
- data/app/javascript/spotlight/admin/blocks/browse_group_categories_block.js +1 -1
- data/app/javascript/spotlight/admin/blocks/resources_block.js +1 -1
- data/app/javascript/spotlight/admin/blocks/uploaded_items_block.js +1 -1
- data/lib/spotlight/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ebea908eb8ae3ba884d61eb1b965f382443e87d479fd297f29c7f290f2bd5566
|
|
4
|
+
data.tar.gz: 2d73d341ada846d8870482711d63a020405185b3f3d75b8809f42ab67354790f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3d9909da016ef1d4ac572ad2e1306b4cfe8fb9ed85e6f737d33e2619fcc71c7e4b2398ef71d4a04ed6ec7978821d1bf97d650958dc7e407c1823e59ea04910d5
|
|
7
|
+
data.tar.gz: 0d05c74d317579c3981ca44a93668c432ff786db7ec215315849eec0a095fa8f0e69dd98b032bdd6c696438790439686a4fd2c0e4fbfe99fa037f1258305e18f
|
|
@@ -5990,7 +5990,7 @@ Spotlight$1.Block.Resources = (function(){
|
|
|
5990
5990
|
}
|
|
5991
5991
|
var resource_id = data.slug || data.id;
|
|
5992
5992
|
var markup = `
|
|
5993
|
-
<li class="field form-inline dd-item dd3-item" data-resource-id="${resource_id}" data-id="${index}" id="${this.formId(
|
|
5993
|
+
<li class="field form-inline dd-item dd3-item" data-resource-id="${resource_id}" data-id="${index}" id="${this.formId(index)}">
|
|
5994
5994
|
<input type="hidden" name="item[${index}][id]" value="${resource_id}" />
|
|
5995
5995
|
<input type="hidden" name="item[${index}][title]" value="${data.title}" />
|
|
5996
5996
|
${this._itemPanelIiifFields(index, data)}
|
|
@@ -6193,7 +6193,7 @@ SirTrevor.Blocks.Browse = (function(){
|
|
|
6193
6193
|
}
|
|
6194
6194
|
var resource_id = data.slug || data.id;
|
|
6195
6195
|
var markup = `
|
|
6196
|
-
<li class="field form-inline dd-item dd3-item" data-resource-id="${resource_id}" data-id="${index}" id="${this.formId(
|
|
6196
|
+
<li class="field form-inline dd-item dd3-item" data-resource-id="${resource_id}" data-id="${index}" id="${this.formId(index)}">
|
|
6197
6197
|
<input type="hidden" name="item[${index}][id]" value="${resource_id}" />
|
|
6198
6198
|
<input type="hidden" name="item[${index}][full_title]" value="${(data.full_title || data.title)}" />
|
|
6199
6199
|
<input data-property="weight" type="hidden" name="item[${index}][weight]" value="${data.weight}" />
|
|
@@ -6290,7 +6290,7 @@ SirTrevor.Blocks.BrowseGroupCategories = (function(){
|
|
|
6290
6290
|
}
|
|
6291
6291
|
var resource_id = data.slug || data.id;
|
|
6292
6292
|
var markup = `
|
|
6293
|
-
<li class="field form-inline dd-item dd3-item" data-resource-id="${resource_id}" data-id="${index}" id="${this.formId(
|
|
6293
|
+
<li class="field form-inline dd-item dd3-item" data-resource-id="${resource_id}" data-id="${index}" id="${this.formId(index)}">
|
|
6294
6294
|
<input type="hidden" name="item[${index}][id]" value="${resource_id}" />
|
|
6295
6295
|
<input type="hidden" name="item[${index}][title]" value="${data.title}" />
|
|
6296
6296
|
<input data-property="weight" type="hidden" name="item[${index}][weight]" value="${data.weight}" />
|
|
@@ -6902,7 +6902,7 @@ SirTrevor.Blocks.UploadedItems = (function(){
|
|
|
6902
6902
|
var dataUrl = data.url || data.file.url;
|
|
6903
6903
|
|
|
6904
6904
|
var markup = `
|
|
6905
|
-
<li class="field form-inline dd-item dd3-item" data-id="${index}" id="${this.formId(
|
|
6905
|
+
<li class="field form-inline dd-item dd3-item" data-id="${index}" id="${this.formId(index)}">
|
|
6906
6906
|
<input type="hidden" name="item[${index}][id]" value="${dataId}" />
|
|
6907
6907
|
<input type="hidden" name="item[${index}][title]" value="${dataTitle}" />
|
|
6908
6908
|
<input type="hidden" name="item[${index}][url]" data-item-grid-thumbnail="true" value="${dataUrl}"/>
|