@worksafevictoria/wcl7.5 1.8.0-beta.13 → 1.8.0-beta.15
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.
- package/lib/utility.js +0 -2
- package/package.json +1 -1
- package/src/components/Common/CardGrid/index.vue +0 -3
- package/src/components/Common/CardGridItem/index.vue +0 -3
- package/src/components/SubComponents/ResourceGroup/index.vue +2 -1
- package/src/components/SubComponents/Search/SearchListing/index.vue +0 -2
- package/src/components/SubComponents/Search/index.vue +0 -2
package/lib/utility.js
CHANGED
|
@@ -35,8 +35,6 @@ function isGovSite(url) {
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
function navigateToPath(path, newTab, nuxtRouter) {
|
|
38
|
-
debugger
|
|
39
|
-
|
|
40
38
|
const url = String(path).startsWith('www.') ? `http://${path}` : path
|
|
41
39
|
const isAbsolute = isAbsoluteUrl(url)
|
|
42
40
|
const router = nuxtRouter ? nuxtRouter : this.$router
|
package/package.json
CHANGED
|
@@ -227,7 +227,6 @@ export default {
|
|
|
227
227
|
},
|
|
228
228
|
methods: {
|
|
229
229
|
cardTitleSelected(selectedCard, ev) {
|
|
230
|
-
debugger;
|
|
231
230
|
this.clearCards();
|
|
232
231
|
selectedCard.selected = !!!selectedCard.selected;
|
|
233
232
|
const selectedCardModelIndex = this.getChildIndex(selectedCard);
|
|
@@ -239,8 +238,6 @@ export default {
|
|
|
239
238
|
});
|
|
240
239
|
},
|
|
241
240
|
cardSelected(selectedCard, ev) {
|
|
242
|
-
debugger;
|
|
243
|
-
console.log("cardSelected selectedCard :- ", selectedCard);
|
|
244
241
|
this.clearCards();
|
|
245
242
|
selectedCard.selected = !!!selectedCard.selected;
|
|
246
243
|
const selectedCardModelIndex = this.getChildIndex(selectedCard);
|
|
@@ -401,8 +401,6 @@ export default {
|
|
|
401
401
|
},
|
|
402
402
|
methods: {
|
|
403
403
|
cardClicked(ev) {
|
|
404
|
-
debugger;
|
|
405
|
-
|
|
406
404
|
if (this.isSelectable) {
|
|
407
405
|
this.parentGrid.cardSelected(this, ev);
|
|
408
406
|
}
|
|
@@ -412,7 +410,6 @@ export default {
|
|
|
412
410
|
}
|
|
413
411
|
},
|
|
414
412
|
cardTitleClicked(ev) {
|
|
415
|
-
debugger;
|
|
416
413
|
if (this.isCardTitleSelectable) {
|
|
417
414
|
this.parentGrid.cardTitleSelected(this, ev);
|
|
418
415
|
}
|
|
@@ -284,7 +284,8 @@ export default {
|
|
|
284
284
|
this.type === "paragraph--resource_group" ||
|
|
285
285
|
this.type === "paragraph--resource_list"
|
|
286
286
|
) {
|
|
287
|
-
allCards.cards = this.sortByDate(allCards.cards);
|
|
287
|
+
// allCards.cards = this.sortByDate(allCards.cards);
|
|
288
|
+
allCards.cards = allCards.cards;
|
|
288
289
|
}
|
|
289
290
|
}
|
|
290
291
|
return allCards;
|