ontotext-yasgui-web-component 1.6.1 → 1.6.2

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.
@@ -47074,20 +47074,20 @@ class Parsers {
47074
47074
  * Parses a geo code literal string into a GeoJSON Point geometry.
47075
47075
  *
47076
47076
  * Supports multiple geocode URI schemes:
47077
- * - http://opengis.net/ont/geocode/OpenLocationCode - Open Location Code (Plus Codes)
47078
- * - http://opengis.net/ont/geocode/GeoURI - RFC 5870 geo URI (e.g., geo:lat,lon or geo:lat,lon,alt).
47077
+ * - http://www.opengis.net/ont/geocode/OpenLocationCode - Open Location Code (Plus Codes)
47078
+ * - http://www.opengis.net/ont/geocode/GeoURI - RFC 5870 geo URI (e.g., geo:lat,lon or geo:lat,lon,alt).
47079
47079
  * The geo: scheme prefix is matched case-insensitively. Optional RFC 5870 parameters
47080
47080
  * (e.g., ;u=10, ;crs=wgs84) are stripped before parsing.
47081
47081
  * Returns null if any of latitude, longitude, or (when present) altitude are not finite numbers.
47082
- * - http://opengis.net/ont/geocode/GeoHash - Geohash encoding
47083
- * - http://opengis.net/ont/geocode/GeoHash-36 - Geohash-36 encoding
47082
+ * - http://www.opengis.net/ont/geocode/GeoHash - Geohash encoding
47083
+ * - http://www.opengis.net/ont/geocode/GeoHash-36 - Geohash-36 encoding
47084
47084
  *
47085
47085
  * @param geocode - A geocode literal string, optionally prefixed with a URI in angle brackets.
47086
47086
  * @returns A GeoJSON Point geometry, or `null` if the scheme is not supported or coordinates are invalid.
47087
47087
  */
47088
47088
  static parseGeoCode(geocode) {
47089
47089
  const { uri: geocodeuri, value } = Parsers.extractUriPrefix(geocode.trim());
47090
- if (geocodeuri === 'http://opengis.net/ont/geocode/OpenLocationCode') {
47090
+ if (geocodeuri === 'http://www.opengis.net/ont/geocode/OpenLocationCode') {
47091
47091
  try {
47092
47092
  const decoded = OpenLocationCode.decode(value);
47093
47093
  return { 'type': 'Point', 'coordinates': [decoded.longitudeCenter, decoded.latitudeCenter] };
@@ -47097,7 +47097,7 @@ class Parsers {
47097
47097
  return null;
47098
47098
  }
47099
47099
  }
47100
- if (geocodeuri === 'http://opengis.net/ont/geocode/GeoURI') {
47100
+ if (geocodeuri === 'http://www.opengis.net/ont/geocode/GeoURI') {
47101
47101
  // Strip the "geo:" scheme prefix (case-insensitive per RFC 5870) then isolate the
47102
47102
  // coordinate triple before any optional parameters (e.g. ";u=10", ";crs=wgs84").
47103
47103
  const geoValue = value.replace(/^geo:/i, '');
@@ -47123,7 +47123,7 @@ class Parsers {
47123
47123
  console.warn('Failed to parse GeoURI literal: unexpected coordinate format.', geocode);
47124
47124
  return null;
47125
47125
  }
47126
- if (geocodeuri === 'http://opengis.net/ont/geocode/GeoHash') {
47126
+ if (geocodeuri === 'http://www.opengis.net/ont/geocode/GeoHash') {
47127
47127
  try {
47128
47128
  const decoded = GeoHash.decode(value);
47129
47129
  return { 'type': 'Point', 'coordinates': [decoded.longitude, decoded.latitude] };
@@ -47133,7 +47133,7 @@ class Parsers {
47133
47133
  return null;
47134
47134
  }
47135
47135
  }
47136
- if (geocodeuri === 'http://opengis.net/ont/geocode/GeoHash-36') {
47136
+ if (geocodeuri === 'http://www.opengis.net/ont/geocode/GeoHash-36') {
47137
47137
  try {
47138
47138
  const decoded = GeoHash.decodeBase36(value);
47139
47139
  return { 'type': 'Point', 'coordinates': [decoded.longitude, decoded.latitude] };
@@ -128,20 +128,20 @@ export class Parsers {
128
128
  * Parses a geo code literal string into a GeoJSON Point geometry.
129
129
  *
130
130
  * Supports multiple geocode URI schemes:
131
- * - http://opengis.net/ont/geocode/OpenLocationCode - Open Location Code (Plus Codes)
132
- * - http://opengis.net/ont/geocode/GeoURI - RFC 5870 geo URI (e.g., geo:lat,lon or geo:lat,lon,alt).
131
+ * - http://www.opengis.net/ont/geocode/OpenLocationCode - Open Location Code (Plus Codes)
132
+ * - http://www.opengis.net/ont/geocode/GeoURI - RFC 5870 geo URI (e.g., geo:lat,lon or geo:lat,lon,alt).
133
133
  * The geo: scheme prefix is matched case-insensitively. Optional RFC 5870 parameters
134
134
  * (e.g., ;u=10, ;crs=wgs84) are stripped before parsing.
135
135
  * Returns null if any of latitude, longitude, or (when present) altitude are not finite numbers.
136
- * - http://opengis.net/ont/geocode/GeoHash - Geohash encoding
137
- * - http://opengis.net/ont/geocode/GeoHash-36 - Geohash-36 encoding
136
+ * - http://www.opengis.net/ont/geocode/GeoHash - Geohash encoding
137
+ * - http://www.opengis.net/ont/geocode/GeoHash-36 - Geohash-36 encoding
138
138
  *
139
139
  * @param geocode - A geocode literal string, optionally prefixed with a URI in angle brackets.
140
140
  * @returns A GeoJSON Point geometry, or `null` if the scheme is not supported or coordinates are invalid.
141
141
  */
142
142
  static parseGeoCode(geocode) {
143
143
  const { uri: geocodeuri, value } = Parsers.extractUriPrefix(geocode.trim());
144
- if (geocodeuri === 'http://opengis.net/ont/geocode/OpenLocationCode') {
144
+ if (geocodeuri === 'http://www.opengis.net/ont/geocode/OpenLocationCode') {
145
145
  try {
146
146
  const decoded = OpenLocationCode.decode(value);
147
147
  return { 'type': 'Point', 'coordinates': [decoded.longitudeCenter, decoded.latitudeCenter] };
@@ -151,7 +151,7 @@ export class Parsers {
151
151
  return null;
152
152
  }
153
153
  }
154
- if (geocodeuri === 'http://opengis.net/ont/geocode/GeoURI') {
154
+ if (geocodeuri === 'http://www.opengis.net/ont/geocode/GeoURI') {
155
155
  // Strip the "geo:" scheme prefix (case-insensitive per RFC 5870) then isolate the
156
156
  // coordinate triple before any optional parameters (e.g. ";u=10", ";crs=wgs84").
157
157
  const geoValue = value.replace(/^geo:/i, '');
@@ -177,7 +177,7 @@ export class Parsers {
177
177
  console.warn('Failed to parse GeoURI literal: unexpected coordinate format.', geocode);
178
178
  return null;
179
179
  }
180
- if (geocodeuri === 'http://opengis.net/ont/geocode/GeoHash') {
180
+ if (geocodeuri === 'http://www.opengis.net/ont/geocode/GeoHash') {
181
181
  try {
182
182
  const decoded = GeoHash.decode(value);
183
183
  return { 'type': 'Point', 'coordinates': [decoded.longitude, decoded.latitude] };
@@ -187,7 +187,7 @@ export class Parsers {
187
187
  return null;
188
188
  }
189
189
  }
190
- if (geocodeuri === 'http://opengis.net/ont/geocode/GeoHash-36') {
190
+ if (geocodeuri === 'http://www.opengis.net/ont/geocode/GeoHash-36') {
191
191
  try {
192
192
  const decoded = GeoHash.decodeBase36(value);
193
193
  return { 'type': 'Point', 'coordinates': [decoded.longitude, decoded.latitude] };
@@ -46007,20 +46007,20 @@ class Parsers {
46007
46007
  * Parses a geo code literal string into a GeoJSON Point geometry.
46008
46008
  *
46009
46009
  * Supports multiple geocode URI schemes:
46010
- * - http://opengis.net/ont/geocode/OpenLocationCode - Open Location Code (Plus Codes)
46011
- * - http://opengis.net/ont/geocode/GeoURI - RFC 5870 geo URI (e.g., geo:lat,lon or geo:lat,lon,alt).
46010
+ * - http://www.opengis.net/ont/geocode/OpenLocationCode - Open Location Code (Plus Codes)
46011
+ * - http://www.opengis.net/ont/geocode/GeoURI - RFC 5870 geo URI (e.g., geo:lat,lon or geo:lat,lon,alt).
46012
46012
  * The geo: scheme prefix is matched case-insensitively. Optional RFC 5870 parameters
46013
46013
  * (e.g., ;u=10, ;crs=wgs84) are stripped before parsing.
46014
46014
  * Returns null if any of latitude, longitude, or (when present) altitude are not finite numbers.
46015
- * - http://opengis.net/ont/geocode/GeoHash - Geohash encoding
46016
- * - http://opengis.net/ont/geocode/GeoHash-36 - Geohash-36 encoding
46015
+ * - http://www.opengis.net/ont/geocode/GeoHash - Geohash encoding
46016
+ * - http://www.opengis.net/ont/geocode/GeoHash-36 - Geohash-36 encoding
46017
46017
  *
46018
46018
  * @param geocode - A geocode literal string, optionally prefixed with a URI in angle brackets.
46019
46019
  * @returns A GeoJSON Point geometry, or `null` if the scheme is not supported or coordinates are invalid.
46020
46020
  */
46021
46021
  static parseGeoCode(geocode) {
46022
46022
  const { uri: geocodeuri, value } = Parsers.extractUriPrefix(geocode.trim());
46023
- if (geocodeuri === 'http://opengis.net/ont/geocode/OpenLocationCode') {
46023
+ if (geocodeuri === 'http://www.opengis.net/ont/geocode/OpenLocationCode') {
46024
46024
  try {
46025
46025
  const decoded = OpenLocationCode.decode(value);
46026
46026
  return { 'type': 'Point', 'coordinates': [decoded.longitudeCenter, decoded.latitudeCenter] };
@@ -46030,7 +46030,7 @@ class Parsers {
46030
46030
  return null;
46031
46031
  }
46032
46032
  }
46033
- if (geocodeuri === 'http://opengis.net/ont/geocode/GeoURI') {
46033
+ if (geocodeuri === 'http://www.opengis.net/ont/geocode/GeoURI') {
46034
46034
  // Strip the "geo:" scheme prefix (case-insensitive per RFC 5870) then isolate the
46035
46035
  // coordinate triple before any optional parameters (e.g. ";u=10", ";crs=wgs84").
46036
46036
  const geoValue = value.replace(/^geo:/i, '');
@@ -46056,7 +46056,7 @@ class Parsers {
46056
46056
  console.warn('Failed to parse GeoURI literal: unexpected coordinate format.', geocode);
46057
46057
  return null;
46058
46058
  }
46059
- if (geocodeuri === 'http://opengis.net/ont/geocode/GeoHash') {
46059
+ if (geocodeuri === 'http://www.opengis.net/ont/geocode/GeoHash') {
46060
46060
  try {
46061
46061
  const decoded = GeoHash.decode(value);
46062
46062
  return { 'type': 'Point', 'coordinates': [decoded.longitude, decoded.latitude] };
@@ -46066,7 +46066,7 @@ class Parsers {
46066
46066
  return null;
46067
46067
  }
46068
46068
  }
46069
- if (geocodeuri === 'http://opengis.net/ont/geocode/GeoHash-36') {
46069
+ if (geocodeuri === 'http://www.opengis.net/ont/geocode/GeoHash-36') {
46070
46070
  try {
46071
46071
  const decoded = GeoHash.decodeBase36(value);
46072
46072
  return { 'type': 'Point', 'coordinates': [decoded.longitude, decoded.latitude] };
@@ -47070,20 +47070,20 @@ class Parsers {
47070
47070
  * Parses a geo code literal string into a GeoJSON Point geometry.
47071
47071
  *
47072
47072
  * Supports multiple geocode URI schemes:
47073
- * - http://opengis.net/ont/geocode/OpenLocationCode - Open Location Code (Plus Codes)
47074
- * - http://opengis.net/ont/geocode/GeoURI - RFC 5870 geo URI (e.g., geo:lat,lon or geo:lat,lon,alt).
47073
+ * - http://www.opengis.net/ont/geocode/OpenLocationCode - Open Location Code (Plus Codes)
47074
+ * - http://www.opengis.net/ont/geocode/GeoURI - RFC 5870 geo URI (e.g., geo:lat,lon or geo:lat,lon,alt).
47075
47075
  * The geo: scheme prefix is matched case-insensitively. Optional RFC 5870 parameters
47076
47076
  * (e.g., ;u=10, ;crs=wgs84) are stripped before parsing.
47077
47077
  * Returns null if any of latitude, longitude, or (when present) altitude are not finite numbers.
47078
- * - http://opengis.net/ont/geocode/GeoHash - Geohash encoding
47079
- * - http://opengis.net/ont/geocode/GeoHash-36 - Geohash-36 encoding
47078
+ * - http://www.opengis.net/ont/geocode/GeoHash - Geohash encoding
47079
+ * - http://www.opengis.net/ont/geocode/GeoHash-36 - Geohash-36 encoding
47080
47080
  *
47081
47081
  * @param geocode - A geocode literal string, optionally prefixed with a URI in angle brackets.
47082
47082
  * @returns A GeoJSON Point geometry, or `null` if the scheme is not supported or coordinates are invalid.
47083
47083
  */
47084
47084
  static parseGeoCode(geocode) {
47085
47085
  const { uri: geocodeuri, value } = Parsers.extractUriPrefix(geocode.trim());
47086
- if (geocodeuri === 'http://opengis.net/ont/geocode/OpenLocationCode') {
47086
+ if (geocodeuri === 'http://www.opengis.net/ont/geocode/OpenLocationCode') {
47087
47087
  try {
47088
47088
  const decoded = OpenLocationCode.decode(value);
47089
47089
  return { 'type': 'Point', 'coordinates': [decoded.longitudeCenter, decoded.latitudeCenter] };
@@ -47093,7 +47093,7 @@ class Parsers {
47093
47093
  return null;
47094
47094
  }
47095
47095
  }
47096
- if (geocodeuri === 'http://opengis.net/ont/geocode/GeoURI') {
47096
+ if (geocodeuri === 'http://www.opengis.net/ont/geocode/GeoURI') {
47097
47097
  // Strip the "geo:" scheme prefix (case-insensitive per RFC 5870) then isolate the
47098
47098
  // coordinate triple before any optional parameters (e.g. ";u=10", ";crs=wgs84").
47099
47099
  const geoValue = value.replace(/^geo:/i, '');
@@ -47119,7 +47119,7 @@ class Parsers {
47119
47119
  console.warn('Failed to parse GeoURI literal: unexpected coordinate format.', geocode);
47120
47120
  return null;
47121
47121
  }
47122
- if (geocodeuri === 'http://opengis.net/ont/geocode/GeoHash') {
47122
+ if (geocodeuri === 'http://www.opengis.net/ont/geocode/GeoHash') {
47123
47123
  try {
47124
47124
  const decoded = GeoHash.decode(value);
47125
47125
  return { 'type': 'Point', 'coordinates': [decoded.longitude, decoded.latitude] };
@@ -47129,7 +47129,7 @@ class Parsers {
47129
47129
  return null;
47130
47130
  }
47131
47131
  }
47132
- if (geocodeuri === 'http://opengis.net/ont/geocode/GeoHash-36') {
47132
+ if (geocodeuri === 'http://www.opengis.net/ont/geocode/GeoHash-36') {
47133
47133
  try {
47134
47134
  const decoded = GeoHash.decodeBase36(value);
47135
47135
  return { 'type': 'Point', 'coordinates': [decoded.longitude, decoded.latitude] };
@@ -1 +1 @@
1
- import{p as e,b as n}from"./p-d802a944.js";(()=>{const n=import.meta.url,o={};return""!==n&&(o.resourcesUrl=new URL(".",n).href),e(o)})().then((e=>n([["p-ba82401e",[[0,"ontotext-download-as",{translationService:[16],nameLabelKey:[1,"name-label-key"],tooltipLabelKey:[1,"tooltip-label-key"],items:[16],pluginName:[1,"plugin-name"],query:[1],infer:[4],sameAs:[4,"same-as"]}]]],["p-c938a5cc",[[0,"alert-box",{type:[1],message:[1],noIcon:[4,"no-icon"],noButton:[4,"no-button"],isVisible:[32]}]]],["p-ed5dba6b",[[0,"copy-resource-link-button",{uri:[1],classes:[1]}]]],["p-aa55c3f9",[[4,"loader-component",{timeFormattingService:[16],showQueryProgress:[4,"show-query-progress"],message:[1],additionalMessage:[1,"additional-message"],size:[1],hidden:[4],queryProgress:[32]}]]],["p-0decaf90",[[0,"ontotext-editable-text-field",{value:[1025],edit:[1028],translationService:[16]},[[8,"click","handleClickOutside"],[4,"keydown","keydownListener"]]]]],["p-bf4a074b",[[0,"ontotext-explain-plan",{binding:[16],forHtml:[4,"for-html"],translationService:[16]}]]],["p-c9579f42",[[0,"ontotext-pagination",{pageNumber:[2,"page-number"],pageSize:[2,"page-size"],totalElements:[2,"total-elements"],pageElements:[2,"page-elements"],hasMorePages:[4,"has-more-pages"]}]]],["p-f98d8595",[[0,"query-split-button",{yasqe:[8],translationService:[16],eventService:[16],querySplitOpen:[32]},[[10,"click","onWindowClick"],[11,"scroll","onWindowScroll"],[8,"keydown","onKeyDown"],[9,"resize","onWindowResize"]]]]],["p-7acb44d6",[[0,"ontotext-yasgui",{config:[16],language:[1],savedQueryConfig:[16],saveQueryData:[32],savedQueryData:[32],deleteQueryData:[32],isVerticalOrientation:[32],renderingMode:[32],showSaveQueryDialog:[32],showSavedQueriesPopup:[32],showSavedQueriesPopupTarget:[32],showConfirmationDialog:[32],showShareQueryDialog:[32],showCopyResourceLinkDialog:[32],copiedResourceLink:[32],loaderMessage:[32],additionalLoaderMessage:[32],yasqeBtnLabel:[32],yasguiBtnLabel:[32],yasrBtnLabel:[32],showKeyboardShortcutsDialog:[32],changeRenderMode:[64],setTheme:[64],setQuery:[64],query:[64],getQuery:[64],isQueryValid:[64],openTab:[64],getQueryMode:[64],getQueryType:[64],getEmbeddedResultAsJson:[64],getEmbeddedResultAsCSV:[64],hideYasqeActionButton:[64],showYasqeActionButton:[64],getOngoingRequestsInfo:[64],abortQuery:[64],abortAllRequests:[64],reInitYasgui:[64],isQueryDirty:[64]},[[9,"resize","onResize"],[8,"beforeunload","onBeforeunloadHandler"],[0,"internalCreateSavedQueryEvent","saveQueryHandler"],[0,"internalSaveQueryEvent","createSavedQueryHandler"],[0,"internalUpdateQueryEvent","updateSavedQueryHandler"],[0,"internalSaveQueryDialogClosedEvent","closeSaveDialogHandler"],[0,"internalShowSavedQueriesEvent","showSavedQueriesHandler"],[0,"internalSaveQuerySelectedEvent","savedQuerySelectedHandler"],[0,"internalEditSavedQueryEvent","editSavedQueryHandler"],[0,"internalSavedQuerySelectedForDeleteEvent","savedQuerySelectedForEditHandler"],[0,"internalConfirmationApprovedEvent","deleteSavedQueryHandler"],[0,"internalConfirmationRejectedEvent","closeSavedQueryDeleteConfirmationHandler"],[0,"internalCloseSavedQueriesPopupEvent","closeSavedQueriesPopupHandler"],[0,"internalSavedQuerySelectedForShareEvent","savedQuerySelectedForShareHandler"],[0,"internalShareQueryEvent","shareQueryHandler"],[0,"internalExplainQueryEvent","explainQueryHandler"],[0,"internalYasqeDropdownActionSelected","onYasqeDropdownActionSelected"],[0,"internalQueryShareLinkCopiedEvent","savedQueryShareLinkCopiedHandler"],[0,"internalShareQueryDialogClosedEvent","closeShareQueryDialogHandler"],[0,"internalResourceLinkDialogClosedEvent","resourceLinkDialogClosedHandler"],[0,"internalResourceLinkCopiedEvent","resourceLinkCopiedHandler"],[0,"internalShowResourceCopyLinkDialogEvent","showResourceCopyLinkDialogHandler"],[0,"internalDownloadAsEvent","onDownloadAsEventHandler"],[0,"internalNotificationMessageEvent","notificationMessageHandler"],[0,"internalQueryEvent","onQuery"],[0,"internalQueryExecuted","onInternalQueryExecuted"],[0,"internalCountQueryEvent","onCountQuery"],[0,"internalCountQueryResponseEvent","onCountQueryResponse"],[0,"internalRequestAbortedEvent","onQueryAborted"],[0,"internalKeyboardShortcutsClickedEvent","onShortcutsOpenEvent"]]],[0,"copy-resource-link-dialog",{serviceFactory:[16],resourceLink:[1,"resource-link"]}],[0,"share-query-dialog",{config:[16],serviceFactory:[16]}],[0,"keyboard-shortcuts-dialog",{open:[4],items:[16],translationService:[16]},[[8,"keydown","keydownListener"]]],[0,"save-query-dialog",{serviceFactory:[16],data:[16],queryName:[32],originalQueryName:[32],query:[32],isPublic:[32],isNew:[32],isSaveAllowed:[32]},[[8,"keydown","keydownListener"]]],[0,"confirmation-dialog",{translationService:[16],config:[16]},[[8,"keydown","keydownListener"]]],[0,"saved-queries-popup",{config:[16],serviceFactory:[16]},[[8,"click","onWindowResize"],[8,"keydown","keydownListener"]]],[0,"copy-link-dialog",{config:[16],serviceFactory:[16],copyLinkEventsObserver:[16],classes:[1]}],[4,"yasgui-tooltip",{yasguiDataTooltip:[1,"yasgui-data-tooltip"],placement:[1],showOnClick:[4,"show-on-click"]}],[4,"ontotext-dialog-web-component",{config:[16]},[[4,"keydown","keydownListener"]]]]],["p-b32aca4e",[[0,"ontotext-dropdown",{translationService:[16],nameLabelKey:[1,"name-label-key"],tooltipLabelKey:[1,"tooltip-label-key"],items:[16],iconClass:[1,"icon-class"],open:[32],showTooltip:[32]},[[8,"keydown","keydownListener"],[8,"click","mouseClickListener"]]]]]],e)));
1
+ import{p as e,b as n}from"./p-d802a944.js";(()=>{const n=import.meta.url,o={};return""!==n&&(o.resourcesUrl=new URL(".",n).href),e(o)})().then((e=>n([["p-ba82401e",[[0,"ontotext-download-as",{translationService:[16],nameLabelKey:[1,"name-label-key"],tooltipLabelKey:[1,"tooltip-label-key"],items:[16],pluginName:[1,"plugin-name"],query:[1],infer:[4],sameAs:[4,"same-as"]}]]],["p-c938a5cc",[[0,"alert-box",{type:[1],message:[1],noIcon:[4,"no-icon"],noButton:[4,"no-button"],isVisible:[32]}]]],["p-ed5dba6b",[[0,"copy-resource-link-button",{uri:[1],classes:[1]}]]],["p-aa55c3f9",[[4,"loader-component",{timeFormattingService:[16],showQueryProgress:[4,"show-query-progress"],message:[1],additionalMessage:[1,"additional-message"],size:[1],hidden:[4],queryProgress:[32]}]]],["p-0decaf90",[[0,"ontotext-editable-text-field",{value:[1025],edit:[1028],translationService:[16]},[[8,"click","handleClickOutside"],[4,"keydown","keydownListener"]]]]],["p-bf4a074b",[[0,"ontotext-explain-plan",{binding:[16],forHtml:[4,"for-html"],translationService:[16]}]]],["p-c9579f42",[[0,"ontotext-pagination",{pageNumber:[2,"page-number"],pageSize:[2,"page-size"],totalElements:[2,"total-elements"],pageElements:[2,"page-elements"],hasMorePages:[4,"has-more-pages"]}]]],["p-f98d8595",[[0,"query-split-button",{yasqe:[8],translationService:[16],eventService:[16],querySplitOpen:[32]},[[10,"click","onWindowClick"],[11,"scroll","onWindowScroll"],[8,"keydown","onKeyDown"],[9,"resize","onWindowResize"]]]]],["p-22dbfb20",[[0,"ontotext-yasgui",{config:[16],language:[1],savedQueryConfig:[16],saveQueryData:[32],savedQueryData:[32],deleteQueryData:[32],isVerticalOrientation:[32],renderingMode:[32],showSaveQueryDialog:[32],showSavedQueriesPopup:[32],showSavedQueriesPopupTarget:[32],showConfirmationDialog:[32],showShareQueryDialog:[32],showCopyResourceLinkDialog:[32],copiedResourceLink:[32],loaderMessage:[32],additionalLoaderMessage:[32],yasqeBtnLabel:[32],yasguiBtnLabel:[32],yasrBtnLabel:[32],showKeyboardShortcutsDialog:[32],changeRenderMode:[64],setTheme:[64],setQuery:[64],query:[64],getQuery:[64],isQueryValid:[64],openTab:[64],getQueryMode:[64],getQueryType:[64],getEmbeddedResultAsJson:[64],getEmbeddedResultAsCSV:[64],hideYasqeActionButton:[64],showYasqeActionButton:[64],getOngoingRequestsInfo:[64],abortQuery:[64],abortAllRequests:[64],reInitYasgui:[64],isQueryDirty:[64]},[[9,"resize","onResize"],[8,"beforeunload","onBeforeunloadHandler"],[0,"internalCreateSavedQueryEvent","saveQueryHandler"],[0,"internalSaveQueryEvent","createSavedQueryHandler"],[0,"internalUpdateQueryEvent","updateSavedQueryHandler"],[0,"internalSaveQueryDialogClosedEvent","closeSaveDialogHandler"],[0,"internalShowSavedQueriesEvent","showSavedQueriesHandler"],[0,"internalSaveQuerySelectedEvent","savedQuerySelectedHandler"],[0,"internalEditSavedQueryEvent","editSavedQueryHandler"],[0,"internalSavedQuerySelectedForDeleteEvent","savedQuerySelectedForEditHandler"],[0,"internalConfirmationApprovedEvent","deleteSavedQueryHandler"],[0,"internalConfirmationRejectedEvent","closeSavedQueryDeleteConfirmationHandler"],[0,"internalCloseSavedQueriesPopupEvent","closeSavedQueriesPopupHandler"],[0,"internalSavedQuerySelectedForShareEvent","savedQuerySelectedForShareHandler"],[0,"internalShareQueryEvent","shareQueryHandler"],[0,"internalExplainQueryEvent","explainQueryHandler"],[0,"internalYasqeDropdownActionSelected","onYasqeDropdownActionSelected"],[0,"internalQueryShareLinkCopiedEvent","savedQueryShareLinkCopiedHandler"],[0,"internalShareQueryDialogClosedEvent","closeShareQueryDialogHandler"],[0,"internalResourceLinkDialogClosedEvent","resourceLinkDialogClosedHandler"],[0,"internalResourceLinkCopiedEvent","resourceLinkCopiedHandler"],[0,"internalShowResourceCopyLinkDialogEvent","showResourceCopyLinkDialogHandler"],[0,"internalDownloadAsEvent","onDownloadAsEventHandler"],[0,"internalNotificationMessageEvent","notificationMessageHandler"],[0,"internalQueryEvent","onQuery"],[0,"internalQueryExecuted","onInternalQueryExecuted"],[0,"internalCountQueryEvent","onCountQuery"],[0,"internalCountQueryResponseEvent","onCountQueryResponse"],[0,"internalRequestAbortedEvent","onQueryAborted"],[0,"internalKeyboardShortcutsClickedEvent","onShortcutsOpenEvent"]]],[0,"copy-resource-link-dialog",{serviceFactory:[16],resourceLink:[1,"resource-link"]}],[0,"share-query-dialog",{config:[16],serviceFactory:[16]}],[0,"keyboard-shortcuts-dialog",{open:[4],items:[16],translationService:[16]},[[8,"keydown","keydownListener"]]],[0,"save-query-dialog",{serviceFactory:[16],data:[16],queryName:[32],originalQueryName:[32],query:[32],isPublic:[32],isNew:[32],isSaveAllowed:[32]},[[8,"keydown","keydownListener"]]],[0,"confirmation-dialog",{translationService:[16],config:[16]},[[8,"keydown","keydownListener"]]],[0,"saved-queries-popup",{config:[16],serviceFactory:[16]},[[8,"click","onWindowResize"],[8,"keydown","keydownListener"]]],[0,"copy-link-dialog",{config:[16],serviceFactory:[16],copyLinkEventsObserver:[16],classes:[1]}],[4,"yasgui-tooltip",{yasguiDataTooltip:[1,"yasgui-data-tooltip"],placement:[1],showOnClick:[4,"show-on-click"]}],[4,"ontotext-dialog-web-component",{config:[16]},[[4,"keydown","keydownListener"]]]]],["p-b32aca4e",[[0,"ontotext-dropdown",{translationService:[16],nameLabelKey:[1,"name-label-key"],tooltipLabelKey:[1,"tooltip-label-key"],items:[16],iconClass:[1,"icon-class"],open:[32],showTooltip:[32]},[[8,"keydown","keydownListener"],[8,"click","mouseClickListener"]]]]]],e)));