Skip to content

Commit

Permalink
build artefacts for v2.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
jkafader-esnet committed Jul 3, 2024
1 parent 20d7eb5 commit 85b5e7b
Show file tree
Hide file tree
Showing 8 changed files with 151 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dist/components/MapCanvas.component.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

143 changes: 143 additions & 0 deletions dist/components/lib/purify.es.d.mts
Original file line number Diff line number Diff line change
@@ -0,0 +1,143 @@
export { purify as default };
declare function purify(root: any): {
(root: any): any;
/**
* Version label, exposed for easier checks
* if DOMPurify is up to date or not
*/
version: string;
/**
* Array of elements that DOMPurify removed during sanitation.
* Empty if nothing was removed.
*/
removed: any[];
isSupported: any;
/**
* Sanitize
* Public method providing core sanitation functionality
*
* @param {String|Node} dirty string or DOM node
* @param {Object} cfg object
*/
sanitize(dirty: string | Node, ...args: any[]): any;
/**
* Public method to set the configuration once
* setConfig
*
* @param {Object} cfg configuration object
*/
setConfig(...args: any[]): void;
/**
* Public method to remove the configuration
* clearConfig
*
*/
clearConfig(): void;
/**
* Public method to check if an attribute value is valid.
* Uses last set config, if any. Otherwise, uses config defaults.
* isValidAttribute
*
* @param {String} tag Tag name of containing element.
* @param {String} attr Attribute name.
* @param {String} value Attribute value.
* @return {Boolean} Returns true if `value` is valid. Otherwise, returns false.
*/
isValidAttribute(tag: string, attr: string, value: string): boolean;
/**
* AddHook
* Public method to add DOMPurify hooks
*
* @param {String} entryPoint entry point for the hook to add
* @param {Function} hookFunction function to execute
*/
addHook(entryPoint: string, hookFunction: Function): void;
/**
* RemoveHook
* Public method to remove a DOMPurify hook at a given entryPoint
* (pops it from the stack of hooks if more are present)
*
* @param {String} entryPoint entry point for the hook to remove
* @return {Function} removed(popped) hook
*/
removeHook(entryPoint: string): Function;
/**
* RemoveHooks
* Public method to remove all DOMPurify hooks at a given entryPoint
*
* @param {String} entryPoint entry point for the hooks to remove
*/
removeHooks(entryPoint: string): void;
/**
* RemoveAllHooks
* Public method to remove all DOMPurify hooks
*/
removeAllHooks(): void;
};
declare namespace purify {
const version: string;
const removed: any[];
const isSupported: any;
/**
* Sanitize
* Public method providing core sanitation functionality
*
* @param {String|Node} dirty string or DOM node
* @param {Object} cfg object
*/
function sanitize(dirty: string | Node, ...args: any[]): any;
/**
* Public method to set the configuration once
* setConfig
*
* @param {Object} cfg configuration object
*/
function setConfig(...args: any[]): void;
/**
* Public method to remove the configuration
* clearConfig
*
*/
function clearConfig(): void;
/**
* Public method to check if an attribute value is valid.
* Uses last set config, if any. Otherwise, uses config defaults.
* isValidAttribute
*
* @param {String} tag Tag name of containing element.
* @param {String} attr Attribute name.
* @param {String} value Attribute value.
* @return {Boolean} Returns true if `value` is valid. Otherwise, returns false.
*/
function isValidAttribute(tag: string, attr: string, value: string): boolean;
/**
* AddHook
* Public method to add DOMPurify hooks
*
* @param {String} entryPoint entry point for the hook to add
* @param {Function} hookFunction function to execute
*/
function addHook(entryPoint: string, hookFunction: Function): void;
/**
* RemoveHook
* Public method to remove a DOMPurify hook at a given entryPoint
* (pops it from the stack of hooks if more are present)
*
* @param {String} entryPoint entry point for the hook to remove
* @return {Function} removed(popped) hook
*/
function removeHook(entryPoint: string): Function;
/**
* RemoveHooks
* Public method to remove all DOMPurify hooks at a given entryPoint
*
* @param {String} entryPoint entry point for the hooks to remove
*/
function removeHooks(entryPoint: string): void;
/**
* RemoveAllHooks
* Public method to remove all DOMPurify hooks
*/
function removeAllHooks(): void;
}
//# sourceMappingURL=purify.es.d.mts.map
1 change: 1 addition & 0 deletions dist/components/lib/purify.es.d.mts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/components/lib/rubbercement.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/module.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/module.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
"path": "img/networkmap.png"
}
],
"version": "2.0.9",
"updated": "2024-05-14"
"version": "2.0.10",
"updated": "2024-07-03"
},
"dependencies": {
"grafanaDependency": ">=9.0.0",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "esnet-networkmap-panel",
"version": "2.0.9",
"version": "2.0.10",
"description": "Network Map Panel",
"repository": "https://github.com/esnet/grafana-esnet-networkmap-panel",
"scripts": {
Expand Down

0 comments on commit 85b5e7b

Please sign in to comment.