@fluid-topics/ft-search-saved-searches 1.2.63 → 1.2.64

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.
@@ -40,9 +40,6 @@ export declare class FtSearchSavedSearches extends FtSearchSavedSearches_base im
40
40
  private toFtSearchRequest;
41
41
  private toMetadataFilter;
42
42
  connectedCallback(): void;
43
- private onFocusIn;
44
- private onFocusOut;
45
- disconnectedCallback(): void;
46
43
  private onLinkClick;
47
44
  protected update(changedProperties: PropertyValues): void;
48
45
  }
@@ -46,7 +46,8 @@ class FtSearchSavedSearches extends withI18n(FtSearchComponent) {
46
46
  }
47
47
  return html `
48
48
  <a href="${searchPlaceConverter === null || searchPlaceConverter === void 0 ? void 0 : searchPlaceConverter.serialize(ftSearchRequest)}"
49
- @click="${(e) => this.onLinkClick(e, ftSearchRequest)}">
49
+ @click="${(e) => this.onLinkClick(e, ftSearchRequest)}"
50
+ aria-current="${this.isSelected(s.searchRequest)}">
50
51
  <ft-card clickable ?selected="${this.isSelected(s.searchRequest)}" part="card">
51
52
  <div slot="header">
52
53
  <ft-typography variant="title">${s.title}</ft-typography>
@@ -226,19 +227,6 @@ class FtSearchSavedSearches extends withI18n(FtSearchComponent) {
226
227
  connectedCallback() {
227
228
  super.connectedCallback();
228
229
  userAssetsActions.reloadMySearches();
229
- this.addEventListener("focusin", this.onFocusIn);
230
- this.addEventListener("focusout", this.onFocusOut);
231
- }
232
- onFocusIn(e) {
233
- this.setAttribute("aria-current", "true");
234
- }
235
- onFocusOut(e) {
236
- this.setAttribute("aria-current", "false");
237
- }
238
- disconnectedCallback() {
239
- super.disconnectedCallback();
240
- this.removeEventListener("focusin", this.onFocusIn);
241
- this.removeEventListener("focusout", this.onFocusOut);
242
230
  }
243
231
  onLinkClick(e, ftSearchRequest) {
244
232
  var _a;
@@ -1544,7 +1544,8 @@ Also for action icons.`,s.colorGray200),contentGlobalSubtle:r.extend("--ft-conte
1544
1544
  <div part="container" role="group" aria-label="${le.messages.groupLabel()}">
1545
1545
  ${(0,wl.repeat)((o=this.savedSearches)!==null&&o!==void 0?o:[],n=>n.id,n=>{let a=this.toFtSearchRequest(n.searchRequest);return a===void 0?Ue.nothing:Ue.html`
1546
1546
  <a href="${t?.serialize(a)}"
1547
- @click="${i=>this.onLinkClick(i,a)}">
1547
+ @click="${i=>this.onLinkClick(i,a)}"
1548
+ aria-current="${this.isSelected(n.searchRequest)}">
1548
1549
  <ft-card clickable ?selected="${this.isSelected(n.searchRequest)}" part="card">
1549
1550
  <div slot="header">
1550
1551
  <ft-typography variant="title">${n.title}</ft-typography>
@@ -1576,7 +1577,7 @@ Also for action icons.`,s.colorGray200),contentGlobalSubtle:r.extend("--ft-conte
1576
1577
  <ft-chip dense part="chip">
1577
1578
  <span part="metadata-label">${t}</span>
1578
1579
  <span part="metadata-values">${Array.isArray(o)?o.join(", "):o}</span>
1579
- </ft-chip>`}renderUnknownFilter(t){return t.valueFilter?this.renderValueFilter(t.label,t.valueFilter):t.dateFilter?this.renderDateFilter(t.dateFilter):t.rangeFilter?this.renderRangeFilter():Ue.nothing}renderValueFilter(t,o){return this.renderMetadata(t,o.values)}renderDateFilter(t){return this.renderMetadata(le.messages.period(),this.mapDateFilterType(t.type))}renderRangeFilter(){return this.renderMetadata(le.messages.period(),le.messages.customPeriod())}mapSortKey(t){switch(t){case"afs:relevance":return le.messages.relevance();case"ft:lastEdition":return le.messages.lastUpdate();default:return t}}mapDateFilterType(t){switch(t){case mr.LAST_WEEK:return le.messages.lastWeek();case mr.LAST_MONTH:return le.messages.lastMonth();case mr.LAST_YEAR:return le.messages.lastYear();default:return"--"}}get userHasRights(){return Lo(this.user,this.requiredRole)}get isEmpty(){var t;return((t=this.savedSearches)!==null&&t!==void 0?t:[]).length==0}isSelected(t){var o,n,a,i,c;return this.request!=null&&(0,Ke.deepEqual)(this.request.query,t.query)&&this.areFtMetadataFiltersEqual([...this.request.metadataFilters],[...(o=t.metadataFilters)!==null&&o!==void 0?o:[]].map(this.toMetadataFilter))&&(0,Ke.deepEqual)([...this.request.sort].map(this.mapFtSearchSortCriterion),[...t.sort].map(this.mapFtSearchSortCriterion))&&(0,Ke.deepEqual)(this.request.contentLocale,t.contentLocale)&&(0,Ke.deepEqual)((n=this.request.virtualField)!==null&&n!==void 0?n:"EVERYWHERE",(a=t.virtualField)!==null&&a!==void 0?a:"EVERYWHERE")&&(0,Ke.deepEqual)((i=this.request.scope)!==null&&i!==void 0?i:"DEFAULT",(c=t.scope)!==null&&c!==void 0?c:"DEFAULT")}areFtMetadataFiltersEqual(t,o){if(!(0,Ke.deepEqual)(t.map(a=>a.key).sort(),o.map(a=>a.key).sort()))return!1;let n=(a,i)=>a.key===i.key&&this.compareUnknownFilter(a,i);for(let a of t)if(!o.find(c=>n(a,c)))return!1;return!0}compareUnknownFilter(t,o){return t.valueFilter&&o.valueFilter?this.compareValueFilter(t.valueFilter,o.valueFilter):t.dateFilter&&o.dateFilter?this.compareDateFilter(t.dateFilter,o.dateFilter):t.rangeFilter&&o.rangeFilter?this.compareRangeFilter(t.rangeFilter,o.rangeFilter):!1}compareValueFilter(t,o){return t.negative===o.negative&&t.values.length===o.values.length&&t.values.every(n=>o.values.includes(n))}compareDateFilter(t,o){return t.type===o.type}compareRangeFilter(t,o){return t.from===o.from&&t.to===o.to}mapFtSearchSortCriterion(t){return{...t}}toFtSearchRequest(t){var o,n;return this.request==null?void 0:{...this.request,query:t.query,metadataFilters:(n=(o=t.metadataFilters)===null||o===void 0?void 0:o.map(this.toMetadataFilter))!==null&&n!==void 0?n:[],sort:t.sort,contentLocale:t.contentLocale,virtualField:t.virtualField,scope:t.scope}}toMetadataFilter(t){return{key:t.key,valueFilter:t.valueFilter,dateFilter:t.dateFilter,rangeFilter:t.rangeFilter}}connectedCallback(){super.connectedCallback(),ea.reloadMySearches(),this.addEventListener("focusin",this.onFocusIn),this.addEventListener("focusout",this.onFocusOut)}onFocusIn(t){this.setAttribute("aria-current","true")}onFocusOut(t){this.setAttribute("aria-current","false")}disconnectedCallback(){super.disconnectedCallback(),this.removeEventListener("focusin",this.onFocusIn),this.removeEventListener("focusout",this.onFocusOut)}onLinkClick(t,o){var n;!t.ctrlKey&&!t.metaKey&&(t.stopPropagation(),t.preventDefault(),(n=this.stateManager)===null||n===void 0||n.setRequest(o),this.click())}update(t){super.update(t),(t.has("user")||t.has("savedSearches"))&&this.savedSearches==null&&ea.reloadMySearches()}};_e.styles=Bs;_e.elementDefinitions={"ft-typography":ae,"ft-icon":ie,"ft-card":Ee,"ft-chip":J,"ft-button":Le};Ht([(0,jr.property)({type:Boolean})],_e.prototype,"showDescription",void 0);Ht([(0,jr.property)({type:Boolean})],_e.prototype,"showSearchFilters",void 0);Ht([(0,jr.property)({type:Boolean})],_e.prototype,"showSearchButton",void 0);Ht([(0,jr.property)({type:Boolean})],_e.prototype,"showAlertStatus",void 0);Ht([(0,Ke.redux)({store:Ut.name})],_e.prototype,"savedSearches",void 0);Ht([(0,Ke.redux)({store:k.name,selector:e=>{var t;return(t=e.session)===null||t===void 0?void 0:t.profile}})],_e.prototype,"user",void 0);Ht([(0,Ke.redux)({store:"search"})],_e.prototype,"request",void 0);(0,Al.customElement)("ft-search-saved-searches")(_e);})();
1580
+ </ft-chip>`}renderUnknownFilter(t){return t.valueFilter?this.renderValueFilter(t.label,t.valueFilter):t.dateFilter?this.renderDateFilter(t.dateFilter):t.rangeFilter?this.renderRangeFilter():Ue.nothing}renderValueFilter(t,o){return this.renderMetadata(t,o.values)}renderDateFilter(t){return this.renderMetadata(le.messages.period(),this.mapDateFilterType(t.type))}renderRangeFilter(){return this.renderMetadata(le.messages.period(),le.messages.customPeriod())}mapSortKey(t){switch(t){case"afs:relevance":return le.messages.relevance();case"ft:lastEdition":return le.messages.lastUpdate();default:return t}}mapDateFilterType(t){switch(t){case mr.LAST_WEEK:return le.messages.lastWeek();case mr.LAST_MONTH:return le.messages.lastMonth();case mr.LAST_YEAR:return le.messages.lastYear();default:return"--"}}get userHasRights(){return Lo(this.user,this.requiredRole)}get isEmpty(){var t;return((t=this.savedSearches)!==null&&t!==void 0?t:[]).length==0}isSelected(t){var o,n,a,i,c;return this.request!=null&&(0,Ke.deepEqual)(this.request.query,t.query)&&this.areFtMetadataFiltersEqual([...this.request.metadataFilters],[...(o=t.metadataFilters)!==null&&o!==void 0?o:[]].map(this.toMetadataFilter))&&(0,Ke.deepEqual)([...this.request.sort].map(this.mapFtSearchSortCriterion),[...t.sort].map(this.mapFtSearchSortCriterion))&&(0,Ke.deepEqual)(this.request.contentLocale,t.contentLocale)&&(0,Ke.deepEqual)((n=this.request.virtualField)!==null&&n!==void 0?n:"EVERYWHERE",(a=t.virtualField)!==null&&a!==void 0?a:"EVERYWHERE")&&(0,Ke.deepEqual)((i=this.request.scope)!==null&&i!==void 0?i:"DEFAULT",(c=t.scope)!==null&&c!==void 0?c:"DEFAULT")}areFtMetadataFiltersEqual(t,o){if(!(0,Ke.deepEqual)(t.map(a=>a.key).sort(),o.map(a=>a.key).sort()))return!1;let n=(a,i)=>a.key===i.key&&this.compareUnknownFilter(a,i);for(let a of t)if(!o.find(c=>n(a,c)))return!1;return!0}compareUnknownFilter(t,o){return t.valueFilter&&o.valueFilter?this.compareValueFilter(t.valueFilter,o.valueFilter):t.dateFilter&&o.dateFilter?this.compareDateFilter(t.dateFilter,o.dateFilter):t.rangeFilter&&o.rangeFilter?this.compareRangeFilter(t.rangeFilter,o.rangeFilter):!1}compareValueFilter(t,o){return t.negative===o.negative&&t.values.length===o.values.length&&t.values.every(n=>o.values.includes(n))}compareDateFilter(t,o){return t.type===o.type}compareRangeFilter(t,o){return t.from===o.from&&t.to===o.to}mapFtSearchSortCriterion(t){return{...t}}toFtSearchRequest(t){var o,n;return this.request==null?void 0:{...this.request,query:t.query,metadataFilters:(n=(o=t.metadataFilters)===null||o===void 0?void 0:o.map(this.toMetadataFilter))!==null&&n!==void 0?n:[],sort:t.sort,contentLocale:t.contentLocale,virtualField:t.virtualField,scope:t.scope}}toMetadataFilter(t){return{key:t.key,valueFilter:t.valueFilter,dateFilter:t.dateFilter,rangeFilter:t.rangeFilter}}connectedCallback(){super.connectedCallback(),ea.reloadMySearches()}onLinkClick(t,o){var n;!t.ctrlKey&&!t.metaKey&&(t.stopPropagation(),t.preventDefault(),(n=this.stateManager)===null||n===void 0||n.setRequest(o),this.click())}update(t){super.update(t),(t.has("user")||t.has("savedSearches"))&&this.savedSearches==null&&ea.reloadMySearches()}};_e.styles=Bs;_e.elementDefinitions={"ft-typography":ae,"ft-icon":ie,"ft-card":Ee,"ft-chip":J,"ft-button":Le};Ht([(0,jr.property)({type:Boolean})],_e.prototype,"showDescription",void 0);Ht([(0,jr.property)({type:Boolean})],_e.prototype,"showSearchFilters",void 0);Ht([(0,jr.property)({type:Boolean})],_e.prototype,"showSearchButton",void 0);Ht([(0,jr.property)({type:Boolean})],_e.prototype,"showAlertStatus",void 0);Ht([(0,Ke.redux)({store:Ut.name})],_e.prototype,"savedSearches",void 0);Ht([(0,Ke.redux)({store:k.name,selector:e=>{var t;return(t=e.session)===null||t===void 0?void 0:t.profile}})],_e.prototype,"user",void 0);Ht([(0,Ke.redux)({store:"search"})],_e.prototype,"request",void 0);(0,Al.customElement)("ft-search-saved-searches")(_e);})();
1580
1581
  /*! Bundled license information:
1581
1582
 
1582
1583
  lit-html/directives/when.js:
@@ -1587,7 +1587,8 @@ Also for action icons.`,c.colorGray200),contentGlobalSubtle:r.extend("--ft-conte
1587
1587
  <div part="container" role="group" aria-label="${ue.messages.groupLabel()}">
1588
1588
  ${xn((o=this.savedSearches)!==null&&o!==void 0?o:[],n=>n.id,n=>{let a=this.toFtSearchRequest(n.searchRequest);return a===void 0?W:M`
1589
1589
  <a href="${e?.serialize(a)}"
1590
- @click="${i=>this.onLinkClick(i,a)}">
1590
+ @click="${i=>this.onLinkClick(i,a)}"
1591
+ aria-current="${this.isSelected(n.searchRequest)}">
1591
1592
  <ft-card clickable ?selected="${this.isSelected(n.searchRequest)}" part="card">
1592
1593
  <div slot="header">
1593
1594
  <ft-typography variant="title">${n.title}</ft-typography>
@@ -1619,7 +1620,7 @@ Also for action icons.`,c.colorGray200),contentGlobalSubtle:r.extend("--ft-conte
1619
1620
  <ft-chip dense part="chip">
1620
1621
  <span part="metadata-label">${e}</span>
1621
1622
  <span part="metadata-values">${Array.isArray(o)?o.join(", "):o}</span>
1622
- </ft-chip>`}renderUnknownFilter(e){return e.valueFilter?this.renderValueFilter(e.label,e.valueFilter):e.dateFilter?this.renderDateFilter(e.dateFilter):e.rangeFilter?this.renderRangeFilter():W}renderValueFilter(e,o){return this.renderMetadata(e,o.values)}renderDateFilter(e){return this.renderMetadata(ue.messages.period(),this.mapDateFilterType(e.type))}renderRangeFilter(){return this.renderMetadata(ue.messages.period(),ue.messages.customPeriod())}mapSortKey(e){switch(e){case"afs:relevance":return ue.messages.relevance();case"ft:lastEdition":return ue.messages.lastUpdate();default:return e}}mapDateFilterType(e){switch(e){case Qe.LAST_WEEK:return ue.messages.lastWeek();case Qe.LAST_MONTH:return ue.messages.lastMonth();case Qe.LAST_YEAR:return ue.messages.lastYear();default:return"--"}}get userHasRights(){return Wo(this.user,this.requiredRole)}get isEmpty(){var e;return((e=this.savedSearches)!==null&&e!==void 0?e:[]).length==0}isSelected(e){var o,n,a,i,s;return this.request!=null&&ce(this.request.query,e.query)&&this.areFtMetadataFiltersEqual([...this.request.metadataFilters],[...(o=e.metadataFilters)!==null&&o!==void 0?o:[]].map(this.toMetadataFilter))&&ce([...this.request.sort].map(this.mapFtSearchSortCriterion),[...e.sort].map(this.mapFtSearchSortCriterion))&&ce(this.request.contentLocale,e.contentLocale)&&ce((n=this.request.virtualField)!==null&&n!==void 0?n:"EVERYWHERE",(a=e.virtualField)!==null&&a!==void 0?a:"EVERYWHERE")&&ce((i=this.request.scope)!==null&&i!==void 0?i:"DEFAULT",(s=e.scope)!==null&&s!==void 0?s:"DEFAULT")}areFtMetadataFiltersEqual(e,o){if(!ce(e.map(a=>a.key).sort(),o.map(a=>a.key).sort()))return!1;let n=(a,i)=>a.key===i.key&&this.compareUnknownFilter(a,i);for(let a of e)if(!o.find(s=>n(a,s)))return!1;return!0}compareUnknownFilter(e,o){return e.valueFilter&&o.valueFilter?this.compareValueFilter(e.valueFilter,o.valueFilter):e.dateFilter&&o.dateFilter?this.compareDateFilter(e.dateFilter,o.dateFilter):e.rangeFilter&&o.rangeFilter?this.compareRangeFilter(e.rangeFilter,o.rangeFilter):!1}compareValueFilter(e,o){return e.negative===o.negative&&e.values.length===o.values.length&&e.values.every(n=>o.values.includes(n))}compareDateFilter(e,o){return e.type===o.type}compareRangeFilter(e,o){return e.from===o.from&&e.to===o.to}mapFtSearchSortCriterion(e){return{...e}}toFtSearchRequest(e){var o,n;return this.request==null?void 0:{...this.request,query:e.query,metadataFilters:(n=(o=e.metadataFilters)===null||o===void 0?void 0:o.map(this.toMetadataFilter))!==null&&n!==void 0?n:[],sort:e.sort,contentLocale:e.contentLocale,virtualField:e.virtualField,scope:e.scope}}toMetadataFilter(e){return{key:e.key,valueFilter:e.valueFilter,dateFilter:e.dateFilter,rangeFilter:e.rangeFilter}}connectedCallback(){super.connectedCallback(),$i.reloadMySearches(),this.addEventListener("focusin",this.onFocusIn),this.addEventListener("focusout",this.onFocusOut)}onFocusIn(e){this.setAttribute("aria-current","true")}onFocusOut(e){this.setAttribute("aria-current","false")}disconnectedCallback(){super.disconnectedCallback(),this.removeEventListener("focusin",this.onFocusIn),this.removeEventListener("focusout",this.onFocusOut)}onLinkClick(e,o){var n;!e.ctrlKey&&!e.metaKey&&(e.stopPropagation(),e.preventDefault(),(n=this.stateManager)===null||n===void 0||n.setRequest(o),this.click())}update(e){super.update(e),(e.has("user")||e.has("savedSearches"))&&this.savedSearches==null&&$i.reloadMySearches()}};Pe.styles=Ul;Pe.elementDefinitions={"ft-typography":de,"ft-icon":pe,"ft-card":Ae,"ft-chip":ae,"ft-button":Le};qt([A({type:Boolean})],Pe.prototype,"showDescription",void 0);qt([A({type:Boolean})],Pe.prototype,"showSearchFilters",void 0);qt([A({type:Boolean})],Pe.prototype,"showSearchButton",void 0);qt([A({type:Boolean})],Pe.prototype,"showAlertStatus",void 0);qt([Ct({store:Gt.name})],Pe.prototype,"savedSearches",void 0);qt([Ct({store:B.name,selector:t=>{var e;return(e=t.session)===null||e===void 0?void 0:e.profile}})],Pe.prototype,"user",void 0);qt([Ct({store:"search"})],Pe.prototype,"request",void 0);ee("ft-search-saved-searches")(Pe);})();
1623
+ </ft-chip>`}renderUnknownFilter(e){return e.valueFilter?this.renderValueFilter(e.label,e.valueFilter):e.dateFilter?this.renderDateFilter(e.dateFilter):e.rangeFilter?this.renderRangeFilter():W}renderValueFilter(e,o){return this.renderMetadata(e,o.values)}renderDateFilter(e){return this.renderMetadata(ue.messages.period(),this.mapDateFilterType(e.type))}renderRangeFilter(){return this.renderMetadata(ue.messages.period(),ue.messages.customPeriod())}mapSortKey(e){switch(e){case"afs:relevance":return ue.messages.relevance();case"ft:lastEdition":return ue.messages.lastUpdate();default:return e}}mapDateFilterType(e){switch(e){case Qe.LAST_WEEK:return ue.messages.lastWeek();case Qe.LAST_MONTH:return ue.messages.lastMonth();case Qe.LAST_YEAR:return ue.messages.lastYear();default:return"--"}}get userHasRights(){return Wo(this.user,this.requiredRole)}get isEmpty(){var e;return((e=this.savedSearches)!==null&&e!==void 0?e:[]).length==0}isSelected(e){var o,n,a,i,s;return this.request!=null&&ce(this.request.query,e.query)&&this.areFtMetadataFiltersEqual([...this.request.metadataFilters],[...(o=e.metadataFilters)!==null&&o!==void 0?o:[]].map(this.toMetadataFilter))&&ce([...this.request.sort].map(this.mapFtSearchSortCriterion),[...e.sort].map(this.mapFtSearchSortCriterion))&&ce(this.request.contentLocale,e.contentLocale)&&ce((n=this.request.virtualField)!==null&&n!==void 0?n:"EVERYWHERE",(a=e.virtualField)!==null&&a!==void 0?a:"EVERYWHERE")&&ce((i=this.request.scope)!==null&&i!==void 0?i:"DEFAULT",(s=e.scope)!==null&&s!==void 0?s:"DEFAULT")}areFtMetadataFiltersEqual(e,o){if(!ce(e.map(a=>a.key).sort(),o.map(a=>a.key).sort()))return!1;let n=(a,i)=>a.key===i.key&&this.compareUnknownFilter(a,i);for(let a of e)if(!o.find(s=>n(a,s)))return!1;return!0}compareUnknownFilter(e,o){return e.valueFilter&&o.valueFilter?this.compareValueFilter(e.valueFilter,o.valueFilter):e.dateFilter&&o.dateFilter?this.compareDateFilter(e.dateFilter,o.dateFilter):e.rangeFilter&&o.rangeFilter?this.compareRangeFilter(e.rangeFilter,o.rangeFilter):!1}compareValueFilter(e,o){return e.negative===o.negative&&e.values.length===o.values.length&&e.values.every(n=>o.values.includes(n))}compareDateFilter(e,o){return e.type===o.type}compareRangeFilter(e,o){return e.from===o.from&&e.to===o.to}mapFtSearchSortCriterion(e){return{...e}}toFtSearchRequest(e){var o,n;return this.request==null?void 0:{...this.request,query:e.query,metadataFilters:(n=(o=e.metadataFilters)===null||o===void 0?void 0:o.map(this.toMetadataFilter))!==null&&n!==void 0?n:[],sort:e.sort,contentLocale:e.contentLocale,virtualField:e.virtualField,scope:e.scope}}toMetadataFilter(e){return{key:e.key,valueFilter:e.valueFilter,dateFilter:e.dateFilter,rangeFilter:e.rangeFilter}}connectedCallback(){super.connectedCallback(),$i.reloadMySearches()}onLinkClick(e,o){var n;!e.ctrlKey&&!e.metaKey&&(e.stopPropagation(),e.preventDefault(),(n=this.stateManager)===null||n===void 0||n.setRequest(o),this.click())}update(e){super.update(e),(e.has("user")||e.has("savedSearches"))&&this.savedSearches==null&&$i.reloadMySearches()}};Pe.styles=Ul;Pe.elementDefinitions={"ft-typography":de,"ft-icon":pe,"ft-card":Ae,"ft-chip":ae,"ft-button":Le};qt([A({type:Boolean})],Pe.prototype,"showDescription",void 0);qt([A({type:Boolean})],Pe.prototype,"showSearchFilters",void 0);qt([A({type:Boolean})],Pe.prototype,"showSearchButton",void 0);qt([A({type:Boolean})],Pe.prototype,"showAlertStatus",void 0);qt([Ct({store:Gt.name})],Pe.prototype,"savedSearches",void 0);qt([Ct({store:B.name,selector:t=>{var e;return(e=t.session)===null||e===void 0?void 0:e.profile}})],Pe.prototype,"user",void 0);qt([Ct({store:"search"})],Pe.prototype,"request",void 0);ee("ft-search-saved-searches")(Pe);})();
1623
1624
  /*! Bundled license information:
1624
1625
 
1625
1626
  @webcomponents/scoped-custom-element-registry/src/scoped-custom-element-registry.js:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluid-topics/ft-search-saved-searches",
3
- "version": "1.2.63",
3
+ "version": "1.2.64",
4
4
  "description": "Displays the saved searches",
5
5
  "keywords": [
6
6
  "Lit"
@@ -19,12 +19,12 @@
19
19
  "url": "ssh://git@scm.mrs.antidot.net:2222/fluidtopics/ft-web-components.git"
20
20
  },
21
21
  "dependencies": {
22
- "@fluid-topics/ft-search-context": "1.2.63",
23
- "@fluid-topics/ft-wc-utils": "1.2.63",
22
+ "@fluid-topics/ft-search-context": "1.2.64",
23
+ "@fluid-topics/ft-wc-utils": "1.2.64",
24
24
  "lit": "3.1.0"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@fluid-topics/public-api": "1.0.95"
28
28
  },
29
- "gitHead": "04f9005b2cadc3b804e208ffb54fc763a4a3b19a"
29
+ "gitHead": "0d9d231aec58aaf8b8e6d94fbabb0cd6122aaed8"
30
30
  }