From c51c4bec3bf193b62c668490711325d05ef0d5d6 Mon Sep 17 00:00:00 2001 From: TechQuery Date: Sun, 30 Jul 2023 23:20:38 +0000 Subject: [PATCH] deploy: 49d8f16f3177bcb11500cc33b144fd627cfa03f7 --- .nojekyll | 1 + assets/highlight.css | 127 ++ assets/main.js | 58 + assets/search.js | 1 + assets/style.css | 1367 ++++++++++++++++++++++ classes/ClickBoundary.html | 219 ++++ classes/Dialog.html | 178 +++ classes/DialogClose.html | 137 +++ classes/Editor.html | 231 ++++ classes/MonthCalendar.html | 238 ++++ classes/PageNav.html | 258 ++++ classes/TypeEcho.html | 204 ++++ functions/Avatar-1.html | 113 ++ functions/CodeBlock.html | 111 ++ functions/EditorHTML-1.html | 113 ++ functions/Icon-1.html | 113 ++ functions/Loading-1.html | 114 ++ functions/Nameplate-1.html | 113 ++ functions/OpenMap-1.html | 113 ++ functions/Option-1.html | 113 ++ functions/OverlayBox-1.html | 116 ++ functions/Select-1.html | 113 ++ functions/SpinnerButton-1.html | 113 ++ functions/TableSpinner-1.html | 113 ++ functions/TimeDistance-1.html | 113 ++ functions/animate.html | 111 ++ functions/text2color.html | 113 ++ index.html | 193 +++ interfaces/AvatarProps.html | 128 ++ interfaces/DialogProps.html | 131 +++ interfaces/Location.html | 178 +++ interfaces/MarkerMeta.html | 135 +++ interfaces/MonthCalendarProps.html | 155 +++ interfaces/OpenMapProps.html | 819 +++++++++++++ interfaces/OverlayBoxProps.html | 135 +++ interfaces/PageNavProps.html | 148 +++ interfaces/ReverseItem.html | 192 +++ interfaces/SearchItem.html | 213 ++++ interfaces/SelectProps.html | 186 +++ interfaces/SpinnerButtonProps.html | 129 ++ modules.html | 180 +++ modules/Avatar.html | 113 ++ modules/EditorHTML.html | 113 ++ modules/Icon.html | 113 ++ modules/Loading.html | 113 ++ modules/Nameplate.html | 113 ++ modules/OpenMap.html | 113 ++ modules/Option.html | 113 ++ modules/OverlayBox.html | 117 ++ modules/Select.html | 113 ++ modules/SpinnerButton.html | 113 ++ modules/TableSpinner.html | 113 ++ modules/TimeDistance.html | 113 ++ types/ClickBoundaryProps.html | 133 +++ types/CodeBlockProps.html | 107 ++ types/CoordinateValue.html | 102 ++ types/EditorHTMLProps.html | 109 ++ types/EditorProps.html | 111 ++ types/IconProps.html | 102 ++ types/LeafLetComponent.html | 102 ++ types/LoadingProps.html | 105 ++ types/MapEvent.html | 107 ++ types/NameplateProps.html | 109 ++ types/OptionProps.html | 111 ++ types/TableSpinnerProps.html | 107 ++ types/TimeDistanceProps.html | 115 ++ types/TypeEchoProps.html | 111 ++ types/VariantColor.html | 102 ++ variables/Avatar.displayName.html | 107 ++ variables/EditorHTML.displayName.html | 107 ++ variables/Icon.displayName.html | 107 ++ variables/Loading.displayName.html | 107 ++ variables/Nameplate.displayName.html | 107 ++ variables/OpenMap.displayName.html | 107 ++ variables/Option.displayName.html | 107 ++ variables/OverlayBox.displayName.html | 107 ++ variables/Select.displayName.html | 107 ++ variables/SpinnerButton.displayName.html | 107 ++ variables/TableSpinner.displayName.html | 107 ++ variables/TimeDistance.displayName.html | 107 ++ variables/VariantColors.html | 102 ++ variables/parser.html | 102 ++ 82 files changed, 12117 insertions(+) create mode 100644 .nojekyll create mode 100644 assets/highlight.css create mode 100644 assets/main.js create mode 100644 assets/search.js create mode 100644 assets/style.css create mode 100644 classes/ClickBoundary.html create mode 100644 classes/Dialog.html create mode 100644 classes/DialogClose.html create mode 100644 classes/Editor.html create mode 100644 classes/MonthCalendar.html create mode 100644 classes/PageNav.html create mode 100644 classes/TypeEcho.html create mode 100644 functions/Avatar-1.html create mode 100644 functions/CodeBlock.html create mode 100644 functions/EditorHTML-1.html create mode 100644 functions/Icon-1.html create mode 100644 functions/Loading-1.html create mode 100644 functions/Nameplate-1.html create mode 100644 functions/OpenMap-1.html create mode 100644 functions/Option-1.html create mode 100644 functions/OverlayBox-1.html create mode 100644 functions/Select-1.html create mode 100644 functions/SpinnerButton-1.html create mode 100644 functions/TableSpinner-1.html create mode 100644 functions/TimeDistance-1.html create mode 100644 functions/animate.html create mode 100644 functions/text2color.html create mode 100644 index.html create mode 100644 interfaces/AvatarProps.html create mode 100644 interfaces/DialogProps.html create mode 100644 interfaces/Location.html create mode 100644 interfaces/MarkerMeta.html create mode 100644 interfaces/MonthCalendarProps.html create mode 100644 interfaces/OpenMapProps.html create mode 100644 interfaces/OverlayBoxProps.html create mode 100644 interfaces/PageNavProps.html create mode 100644 interfaces/ReverseItem.html create mode 100644 interfaces/SearchItem.html create mode 100644 interfaces/SelectProps.html create mode 100644 interfaces/SpinnerButtonProps.html create mode 100644 modules.html create mode 100644 modules/Avatar.html create mode 100644 modules/EditorHTML.html create mode 100644 modules/Icon.html create mode 100644 modules/Loading.html create mode 100644 modules/Nameplate.html create mode 100644 modules/OpenMap.html create mode 100644 modules/Option.html create mode 100644 modules/OverlayBox.html create mode 100644 modules/Select.html create mode 100644 modules/SpinnerButton.html create mode 100644 modules/TableSpinner.html create mode 100644 modules/TimeDistance.html create mode 100644 types/ClickBoundaryProps.html create mode 100644 types/CodeBlockProps.html create mode 100644 types/CoordinateValue.html create mode 100644 types/EditorHTMLProps.html create mode 100644 types/EditorProps.html create mode 100644 types/IconProps.html create mode 100644 types/LeafLetComponent.html create mode 100644 types/LoadingProps.html create mode 100644 types/MapEvent.html create mode 100644 types/NameplateProps.html create mode 100644 types/OptionProps.html create mode 100644 types/TableSpinnerProps.html create mode 100644 types/TimeDistanceProps.html create mode 100644 types/TypeEchoProps.html create mode 100644 types/VariantColor.html create mode 100644 variables/Avatar.displayName.html create mode 100644 variables/EditorHTML.displayName.html create mode 100644 variables/Icon.displayName.html create mode 100644 variables/Loading.displayName.html create mode 100644 variables/Nameplate.displayName.html create mode 100644 variables/OpenMap.displayName.html create mode 100644 variables/Option.displayName.html create mode 100644 variables/OverlayBox.displayName.html create mode 100644 variables/Select.displayName.html create mode 100644 variables/SpinnerButton.displayName.html create mode 100644 variables/TableSpinner.displayName.html create mode 100644 variables/TimeDistance.displayName.html create mode 100644 variables/VariantColors.html create mode 100644 variables/parser.html diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..e2ac661 --- /dev/null +++ b/.nojekyll @@ -0,0 +1 @@ +TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false. \ No newline at end of file diff --git a/assets/highlight.css b/assets/highlight.css new file mode 100644 index 0000000..fee2596 --- /dev/null +++ b/assets/highlight.css @@ -0,0 +1,127 @@ +:root { + --light-hl-0: #800000; + --dark-hl-0: #808080; + --light-hl-1: #800000; + --dark-hl-1: #569CD6; + --light-hl-2: #000000; + --dark-hl-2: #D4D4D4; + --light-hl-3: #E50000; + --dark-hl-3: #9CDCFE; + --light-hl-4: #0000FF; + --dark-hl-4: #CE9178; + --light-hl-5: #AF00DB; + --dark-hl-5: #C586C0; + --light-hl-6: #001080; + --dark-hl-6: #9CDCFE; + --light-hl-7: #A31515; + --dark-hl-7: #CE9178; + --light-hl-8: #0000FF; + --dark-hl-8: #569CD6; + --light-hl-9: #267F99; + --dark-hl-9: #4EC9B0; + --light-hl-10: #795E26; + --dark-hl-10: #DCDCAA; + --light-hl-11: #000000FF; + --dark-hl-11: #D4D4D4; + --light-hl-12: #0070C1; + --dark-hl-12: #4FC1FF; + --light-hl-13: #098658; + --dark-hl-13: #B5CEA8; + --light-hl-14: #008000; + --dark-hl-14: #6A9955; + --light-code-background: #FFFFFF; + --dark-code-background: #1E1E1E; +} + +@media (prefers-color-scheme: light) { :root { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --hl-8: var(--light-hl-8); + --hl-9: var(--light-hl-9); + --hl-10: var(--light-hl-10); + --hl-11: var(--light-hl-11); + --hl-12: var(--light-hl-12); + --hl-13: var(--light-hl-13); + --hl-14: var(--light-hl-14); + --code-background: var(--light-code-background); +} } + +@media (prefers-color-scheme: dark) { :root { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --hl-8: var(--dark-hl-8); + --hl-9: var(--dark-hl-9); + --hl-10: var(--dark-hl-10); + --hl-11: var(--dark-hl-11); + --hl-12: var(--dark-hl-12); + --hl-13: var(--dark-hl-13); + --hl-14: var(--dark-hl-14); + --code-background: var(--dark-code-background); +} } + +:root[data-theme='light'] { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --hl-8: var(--light-hl-8); + --hl-9: var(--light-hl-9); + --hl-10: var(--light-hl-10); + --hl-11: var(--light-hl-11); + --hl-12: var(--light-hl-12); + --hl-13: var(--light-hl-13); + --hl-14: var(--light-hl-14); + --code-background: var(--light-code-background); +} + +:root[data-theme='dark'] { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --hl-8: var(--dark-hl-8); + --hl-9: var(--dark-hl-9); + --hl-10: var(--dark-hl-10); + --hl-11: var(--dark-hl-11); + --hl-12: var(--dark-hl-12); + --hl-13: var(--dark-hl-13); + --hl-14: var(--dark-hl-14); + --code-background: var(--dark-code-background); +} + +.hl-0 { color: var(--hl-0); } +.hl-1 { color: var(--hl-1); } +.hl-2 { color: var(--hl-2); } +.hl-3 { color: var(--hl-3); } +.hl-4 { color: var(--hl-4); } +.hl-5 { color: var(--hl-5); } +.hl-6 { color: var(--hl-6); } +.hl-7 { color: var(--hl-7); } +.hl-8 { color: var(--hl-8); } +.hl-9 { color: var(--hl-9); } +.hl-10 { color: var(--hl-10); } +.hl-11 { color: var(--hl-11); } +.hl-12 { color: var(--hl-12); } +.hl-13 { color: var(--hl-13); } +.hl-14 { color: var(--hl-14); } +pre, code { background: var(--code-background); } diff --git a/assets/main.js b/assets/main.js new file mode 100644 index 0000000..4c8fa61 --- /dev/null +++ b/assets/main.js @@ -0,0 +1,58 @@ +"use strict"; +"use strict";(()=>{var Se=Object.create;var re=Object.defineProperty;var we=Object.getOwnPropertyDescriptor;var Te=Object.getOwnPropertyNames;var ke=Object.getPrototypeOf,Qe=Object.prototype.hasOwnProperty;var Pe=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var Ie=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Te(e))!Qe.call(t,i)&&i!==r&&re(t,i,{get:()=>e[i],enumerable:!(n=we(e,i))||n.enumerable});return t};var Ce=(t,e,r)=>(r=t!=null?Se(ke(t)):{},Ie(e||!t||!t.__esModule?re(r,"default",{value:t,enumerable:!0}):r,t));var ae=Pe((se,oe)=>{(function(){var t=function(e){var r=new t.Builder;return r.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),r.searchPipeline.add(t.stemmer),e.call(r,r),r.build()};t.version="2.3.9";t.utils={},t.utils.warn=function(e){return function(r){e.console&&console.warn&&console.warn(r)}}(this),t.utils.asString=function(e){return e==null?"":e.toString()},t.utils.clone=function(e){if(e==null)return e;for(var r=Object.create(null),n=Object.keys(e),i=0;i0){var d=t.utils.clone(r)||{};d.position=[a,u],d.index=s.length,s.push(new t.Token(n.slice(a,o),d))}a=o+1}}return s},t.tokenizer.separator=/[\s\-]+/;t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions=Object.create(null),t.Pipeline.registerFunction=function(e,r){r in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+r),e.label=r,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var r=e.label&&e.label in this.registeredFunctions;r||t.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index. +`,e)},t.Pipeline.load=function(e){var r=new t.Pipeline;return e.forEach(function(n){var i=t.Pipeline.registeredFunctions[n];if(i)r.add(i);else throw new Error("Cannot load unregistered function: "+n)}),r},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(r){t.Pipeline.warnIfFunctionNotRegistered(r),this._stack.push(r)},this)},t.Pipeline.prototype.after=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");n=n+1,this._stack.splice(n,0,r)},t.Pipeline.prototype.before=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");this._stack.splice(n,0,r)},t.Pipeline.prototype.remove=function(e){var r=this._stack.indexOf(e);r!=-1&&this._stack.splice(r,1)},t.Pipeline.prototype.run=function(e){for(var r=this._stack.length,n=0;n1&&(oe&&(n=s),o!=e);)i=n-r,s=r+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(ol?d+=2:a==l&&(r+=n[u+1]*i[d+1],u+=2,d+=2);return r},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),r=1,n=0;r0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new t.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),i.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}if(s.str.length==0&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&i.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if("*"in s.node.edges)var u=s.node.edges["*"];else{var u=new t.TokenSet;s.node.edges["*"]=u}s.str.length==1&&(u.final=!0),i.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var d=s.str.charAt(0),m=s.str.charAt(1),y;m in s.node.edges?y=s.node.edges[m]:(y=new t.TokenSet,s.node.edges[m]=y),s.str.length==1&&(y.final=!0),i.push({node:y,editsRemaining:s.editsRemaining-1,str:d+s.str.slice(2)})}}}return n},t.TokenSet.fromString=function(e){for(var r=new t.TokenSet,n=r,i=0,s=e.length;i=e;r--){var n=this.uncheckedNodes[r],i=n.child.toString();i in this.minimizedNodes?n.parent.edges[n.char]=this.minimizedNodes[i]:(n.child._str=i,this.minimizedNodes[i]=n.child),this.uncheckedNodes.pop()}};t.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},t.Index.prototype.search=function(e){return this.query(function(r){var n=new t.QueryParser(e,r);n.parse()})},t.Index.prototype.query=function(e){for(var r=new t.Query(this.fields),n=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),l=0;l1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,r){var n=e[this._ref],i=Object.keys(this._fields);this._documents[n]=r||{},this.documentCount+=1;for(var s=0;s=this.length)return t.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},t.QueryLexer.prototype.width=function(){return this.pos-this.start},t.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},t.QueryLexer.prototype.backup=function(){this.pos-=1},t.QueryLexer.prototype.acceptDigitRun=function(){var e,r;do e=this.next(),r=e.charCodeAt(0);while(r>47&&r<58);e!=t.QueryLexer.EOS&&this.backup()},t.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(t.QueryLexer.TERM)),e.ignore(),e.more())return t.QueryLexer.lexText},t.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.EDIT_DISTANCE),t.QueryLexer.lexText},t.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.BOOST),t.QueryLexer.lexText},t.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(t.QueryLexer.TERM)},t.QueryLexer.termSeparator=t.tokenizer.separator,t.QueryLexer.lexText=function(e){for(;;){var r=e.next();if(r==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(r.charCodeAt(0)==92){e.escapeCharacter();continue}if(r==":")return t.QueryLexer.lexField;if(r=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(r=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(r=="+"&&e.width()===1||r=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(r.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,r){this.lexer=new t.QueryLexer(e),this.query=r,this.currentClause={},this.lexemeIdx=0},t.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=t.QueryParser.parseClause;e;)e=e(this);return this.query},t.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},t.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},t.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},t.QueryParser.parseClause=function(e){var r=e.peekLexeme();if(r!=null)switch(r.type){case t.QueryLexer.PRESENCE:return t.QueryParser.parsePresence;case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expected either a field or a term, found "+r.type;throw r.str.length>=1&&(n+=" with value '"+r.str+"'"),new t.QueryParseError(n,r.start,r.end)}},t.QueryParser.parsePresence=function(e){var r=e.consumeLexeme();if(r!=null){switch(r.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var n="unrecognised presence operator'"+r.str+"'";throw new t.QueryParseError(n,r.start,r.end)}var i=e.peekLexeme();if(i==null){var n="expecting term or field, found nothing";throw new t.QueryParseError(n,r.start,r.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(n,i.start,i.end)}}},t.QueryParser.parseField=function(e){var r=e.consumeLexeme();if(r!=null){if(e.query.allFields.indexOf(r.str)==-1){var n=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+r.str+"', possible fields: "+n;throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.fields=[r.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,r.start,r.end)}switch(s.type){case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var i="expecting term, found '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseTerm=function(e){var r=e.consumeLexeme();if(r!=null){e.currentClause.term=r.str.toLowerCase(),r.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var n=e.peekLexeme();if(n==null){e.nextClause();return}switch(n.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+n.type+"'";throw new t.QueryParseError(i,n.start,n.end)}}},t.QueryParser.parseEditDistance=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="edit distance must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.editDistance=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseBoost=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="boost must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.boost=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},function(e,r){typeof define=="function"&&define.amd?define(r):typeof se=="object"?oe.exports=r():e.lunr=r()}(this,function(){return t})})()});var ne=[];function G(t,e){ne.push({selector:e,constructor:t})}var U=class{constructor(){this.alwaysVisibleMember=null;this.createComponents(document.body),this.ensureActivePageVisible(),this.ensureFocusedElementVisible(),this.listenForCodeCopies(),window.addEventListener("hashchange",()=>this.ensureFocusedElementVisible())}createComponents(e){ne.forEach(r=>{e.querySelectorAll(r.selector).forEach(n=>{n.dataset.hasInstance||(new r.constructor({el:n,app:this}),n.dataset.hasInstance=String(!0))})})}filterChanged(){this.ensureFocusedElementVisible()}ensureActivePageVisible(){let e=document.querySelector(".tsd-navigation .current"),r=e?.parentElement;for(;r&&!r.classList.contains(".tsd-navigation");)r instanceof HTMLDetailsElement&&(r.open=!0),r=r.parentElement;if(e){let n=e.getBoundingClientRect().top-document.documentElement.clientHeight/4;document.querySelector(".site-menu").scrollTop=n}}ensureFocusedElementVisible(){if(this.alwaysVisibleMember&&(this.alwaysVisibleMember.classList.remove("always-visible"),this.alwaysVisibleMember.firstElementChild.remove(),this.alwaysVisibleMember=null),!location.hash)return;let e=document.getElementById(location.hash.substring(1));if(!e)return;let r=e.parentElement;for(;r&&r.tagName!=="SECTION";)r=r.parentElement;if(r&&r.offsetParent==null){this.alwaysVisibleMember=r,r.classList.add("always-visible");let n=document.createElement("p");n.classList.add("warning"),n.textContent="This member is normally hidden due to your filter settings.",r.prepend(n)}}listenForCodeCopies(){document.querySelectorAll("pre > button").forEach(e=>{let r;e.addEventListener("click",()=>{e.previousElementSibling instanceof HTMLElement&&navigator.clipboard.writeText(e.previousElementSibling.innerText.trim()),e.textContent="Copied!",e.classList.add("visible"),clearTimeout(r),r=setTimeout(()=>{e.classList.remove("visible"),r=setTimeout(()=>{e.textContent="Copy"},100)},1e3)})})}};var ie=(t,e=100)=>{let r;return()=>{clearTimeout(r),r=setTimeout(()=>t(),e)}};var ce=Ce(ae());function de(){let t=document.getElementById("tsd-search");if(!t)return;let e=document.getElementById("tsd-search-script");t.classList.add("loading"),e&&(e.addEventListener("error",()=>{t.classList.remove("loading"),t.classList.add("failure")}),e.addEventListener("load",()=>{t.classList.remove("loading"),t.classList.add("ready")}),window.searchData&&t.classList.remove("loading"));let r=document.querySelector("#tsd-search input"),n=document.querySelector("#tsd-search .results");if(!r||!n)throw new Error("The input field or the result list wrapper was not found");let i=!1;n.addEventListener("mousedown",()=>i=!0),n.addEventListener("mouseup",()=>{i=!1,t.classList.remove("has-focus")}),r.addEventListener("focus",()=>t.classList.add("has-focus")),r.addEventListener("blur",()=>{i||(i=!1,t.classList.remove("has-focus"))});let s={base:t.dataset.base+"/"};Oe(t,n,r,s)}function Oe(t,e,r,n){r.addEventListener("input",ie(()=>{Re(t,e,r,n)},200));let i=!1;r.addEventListener("keydown",s=>{i=!0,s.key=="Enter"?Fe(e,r):s.key=="Escape"?r.blur():s.key=="ArrowUp"?ue(e,-1):s.key==="ArrowDown"?ue(e,1):i=!1}),r.addEventListener("keypress",s=>{i&&s.preventDefault()}),document.body.addEventListener("keydown",s=>{s.altKey||s.ctrlKey||s.metaKey||!r.matches(":focus")&&s.key==="/"&&(r.focus(),s.preventDefault())})}function _e(t,e){t.index||window.searchData&&(e.classList.remove("loading"),e.classList.add("ready"),t.data=window.searchData,t.index=ce.Index.load(window.searchData.index))}function Re(t,e,r,n){if(_e(n,t),!n.index||!n.data)return;e.textContent="";let i=r.value.trim(),s=i?n.index.search(`*${i}*`):[];for(let o=0;oa.score-o.score);for(let o=0,a=Math.min(10,s.length);o${le(l.parent,i)}.${u}`);let d=document.createElement("li");d.classList.value=l.classes??"";let m=document.createElement("a");m.href=n.base+l.url,m.innerHTML=u,d.append(m),e.appendChild(d)}}function ue(t,e){let r=t.querySelector(".current");if(!r)r=t.querySelector(e==1?"li:first-child":"li:last-child"),r&&r.classList.add("current");else{let n=r;if(e===1)do n=n.nextElementSibling??void 0;while(n instanceof HTMLElement&&n.offsetParent==null);else do n=n.previousElementSibling??void 0;while(n instanceof HTMLElement&&n.offsetParent==null);n&&(r.classList.remove("current"),n.classList.add("current"))}}function Fe(t,e){let r=t.querySelector(".current");if(r||(r=t.querySelector("li:first-child")),r){let n=r.querySelector("a");n&&(window.location.href=n.href),e.blur()}}function le(t,e){if(e==="")return t;let r=t.toLocaleLowerCase(),n=e.toLocaleLowerCase(),i=[],s=0,o=r.indexOf(n);for(;o!=-1;)i.push(K(t.substring(s,o)),`${K(t.substring(o,o+n.length))}`),s=o+n.length,o=r.indexOf(n,s);return i.push(K(t.substring(s))),i.join("")}var Me={"&":"&","<":"<",">":">","'":"'",'"':"""};function K(t){return t.replace(/[&<>"'"]/g,e=>Me[e])}var P=class{constructor(e){this.el=e.el,this.app=e.app}};var M="mousedown",fe="mousemove",N="mouseup",J={x:0,y:0},he=!1,ee=!1,De=!1,D=!1,pe=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(pe?"is-mobile":"not-mobile");pe&&"ontouchstart"in document.documentElement&&(De=!0,M="touchstart",fe="touchmove",N="touchend");document.addEventListener(M,t=>{ee=!0,D=!1;let e=M=="touchstart"?t.targetTouches[0]:t;J.y=e.pageY||0,J.x=e.pageX||0});document.addEventListener(fe,t=>{if(ee&&!D){let e=M=="touchstart"?t.targetTouches[0]:t,r=J.x-(e.pageX||0),n=J.y-(e.pageY||0);D=Math.sqrt(r*r+n*n)>10}});document.addEventListener(N,()=>{ee=!1});document.addEventListener("click",t=>{he&&(t.preventDefault(),t.stopImmediatePropagation(),he=!1)});var X=class extends P{constructor(r){super(r);this.className=this.el.dataset.toggle||"",this.el.addEventListener(N,n=>this.onPointerUp(n)),this.el.addEventListener("click",n=>n.preventDefault()),document.addEventListener(M,n=>this.onDocumentPointerDown(n)),document.addEventListener(N,n=>this.onDocumentPointerUp(n))}setActive(r){if(this.active==r)return;this.active=r,document.documentElement.classList.toggle("has-"+this.className,r),this.el.classList.toggle("active",r);let n=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(n),setTimeout(()=>document.documentElement.classList.remove(n),500)}onPointerUp(r){D||(this.setActive(!0),r.preventDefault())}onDocumentPointerDown(r){if(this.active){if(r.target.closest(".col-sidebar, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(r){if(!D&&this.active&&r.target.closest(".col-sidebar")){let n=r.target.closest("a");if(n){let i=window.location.href;i.indexOf("#")!=-1&&(i=i.substring(0,i.indexOf("#"))),n.href.substring(0,i.length)==i&&setTimeout(()=>this.setActive(!1),250)}}}};var te;try{te=localStorage}catch{te={getItem(){return null},setItem(){}}}var Q=te;var me=document.head.appendChild(document.createElement("style"));me.dataset.for="filters";var Y=class extends P{constructor(r){super(r);this.key=`filter-${this.el.name}`,this.value=this.el.checked,this.el.addEventListener("change",()=>{this.setLocalStorage(this.el.checked)}),this.setLocalStorage(this.fromLocalStorage()),me.innerHTML+=`html:not(.${this.key}) .tsd-is-${this.el.name} { display: none; } +`}fromLocalStorage(){let r=Q.getItem(this.key);return r?r==="true":this.el.checked}setLocalStorage(r){Q.setItem(this.key,r.toString()),this.value=r,this.handleValueChange()}handleValueChange(){this.el.checked=this.value,document.documentElement.classList.toggle(this.key,this.value),this.app.filterChanged(),document.querySelectorAll(".tsd-index-section").forEach(r=>{r.style.display="block";let n=Array.from(r.querySelectorAll(".tsd-index-link")).every(i=>i.offsetParent==null);r.style.display=n?"none":"block"})}};var Z=class extends P{constructor(r){super(r);this.summary=this.el.querySelector(".tsd-accordion-summary"),this.icon=this.summary.querySelector("svg"),this.key=`tsd-accordion-${this.summary.dataset.key??this.summary.textContent.trim().replace(/\s+/g,"-").toLowerCase()}`;let n=Q.getItem(this.key);this.el.open=n?n==="true":this.el.open,this.el.addEventListener("toggle",()=>this.update()),this.update()}update(){this.icon.style.transform=`rotate(${this.el.open?0:-90}deg)`,Q.setItem(this.key,this.el.open.toString())}};function ve(t){let e=Q.getItem("tsd-theme")||"os";t.value=e,ye(e),t.addEventListener("change",()=>{Q.setItem("tsd-theme",t.value),ye(t.value)})}function ye(t){document.documentElement.dataset.theme=t}de();G(X,"a[data-toggle]");G(Z,".tsd-index-accordion");G(Y,".tsd-filter-item input[type=checkbox]");var ge=document.getElementById("tsd-theme");ge&&ve(ge);var Ae=new U;Object.defineProperty(window,"app",{value:Ae});document.querySelectorAll("summary a").forEach(t=>{t.addEventListener("click",()=>{location.assign(t.href)})});})(); +/*! Bundled license information: + +lunr/lunr.js: + (** + * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9 + * Copyright (C) 2020 Oliver Nightingale + * @license MIT + *) + (*! + * lunr.utils + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Set + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.tokenizer + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Pipeline + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Vector + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.stemmer + * Copyright (C) 2020 Oliver Nightingale + * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt + *) + (*! + * lunr.stopWordFilter + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.trimmer + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.TokenSet + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Index + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Builder + * Copyright (C) 2020 Oliver Nightingale + *) +*/ diff --git a/assets/search.js b/assets/search.js new file mode 100644 index 0000000..a3c7ec3 --- /dev/null +++ b/assets/search.js @@ -0,0 +1 @@ +window.searchData = JSON.parse("{\"rows\":[{\"kind\":64,\"name\":\"animate\",\"url\":\"functions/animate.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"AvatarProps\",\"url\":\"interfaces/AvatarProps.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"size\",\"url\":\"interfaces/AvatarProps.html#size\",\"classes\":\"\",\"parent\":\"AvatarProps\"},{\"kind\":64,\"name\":\"Avatar\",\"url\":\"functions/Avatar-1.html\",\"classes\":\"\"},{\"kind\":4,\"name\":\"Avatar\",\"url\":\"modules/Avatar.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"displayName\",\"url\":\"variables/Avatar.displayName.html\",\"classes\":\"\",\"parent\":\"Avatar\"},{\"kind\":4194304,\"name\":\"ClickBoundaryProps\",\"url\":\"types/ClickBoundaryProps.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"ClickBoundary\",\"url\":\"classes/ClickBoundary.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"root\",\"url\":\"classes/ClickBoundary.html#root\",\"classes\":\"\",\"parent\":\"ClickBoundary\"},{\"kind\":2048,\"name\":\"switchClick\",\"url\":\"classes/ClickBoundary.html#switchClick\",\"classes\":\"\",\"parent\":\"ClickBoundary\"},{\"kind\":2048,\"name\":\"componentDidMount\",\"url\":\"classes/ClickBoundary.html#componentDidMount\",\"classes\":\"\",\"parent\":\"ClickBoundary\"},{\"kind\":2048,\"name\":\"componentWillUnmount\",\"url\":\"classes/ClickBoundary.html#componentWillUnmount\",\"classes\":\"\",\"parent\":\"ClickBoundary\"},{\"kind\":2048,\"name\":\"render\",\"url\":\"classes/ClickBoundary.html#render\",\"classes\":\"\",\"parent\":\"ClickBoundary\"},{\"kind\":64,\"name\":\"CodeBlock\",\"url\":\"functions/CodeBlock.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"CodeBlockProps\",\"url\":\"types/CodeBlockProps.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"text2color\",\"url\":\"functions/text2color.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"VariantColor\",\"url\":\"types/VariantColor.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"VariantColors\",\"url\":\"variables/VariantColors.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"DialogClose\",\"url\":\"classes/DialogClose.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/DialogClose.html#constructor\",\"classes\":\"\",\"parent\":\"DialogClose\"},{\"kind\":256,\"name\":\"DialogProps\",\"url\":\"interfaces/DialogProps.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"defer\",\"url\":\"interfaces/DialogProps.html#defer\",\"classes\":\"\",\"parent\":\"DialogProps\"},{\"kind\":128,\"name\":\"Dialog\",\"url\":\"classes/Dialog.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Dialog.html#constructor\",\"classes\":\"\",\"parent\":\"Dialog\"},{\"kind\":1024,\"name\":\"defer\",\"url\":\"classes/Dialog.html#defer\",\"classes\":\"\",\"parent\":\"Dialog\"},{\"kind\":1024,\"name\":\"Component\",\"url\":\"classes/Dialog.html#Component\",\"classes\":\"\",\"parent\":\"Dialog\"},{\"kind\":2048,\"name\":\"open\",\"url\":\"classes/Dialog.html#open\",\"classes\":\"\",\"parent\":\"Dialog\"},{\"kind\":4194304,\"name\":\"EditorProps\",\"url\":\"types/EditorProps.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"Editor\",\"url\":\"classes/Editor.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"displayName\",\"url\":\"classes/Editor.html#displayName\",\"classes\":\"\",\"parent\":\"Editor\"},{\"kind\":2048,\"name\":\"getDerivedStateFromProps\",\"url\":\"classes/Editor.html#getDerivedStateFromProps\",\"classes\":\"\",\"parent\":\"Editor\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"classes/Editor.html#state\",\"classes\":\"\",\"parent\":\"Editor\"},{\"kind\":2048,\"name\":\"save\",\"url\":\"classes/Editor.html#save\",\"classes\":\"\",\"parent\":\"Editor\"},{\"kind\":2048,\"name\":\"render\",\"url\":\"classes/Editor.html#render\",\"classes\":\"\",\"parent\":\"Editor\"},{\"kind\":32,\"name\":\"parser\",\"url\":\"variables/parser.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"EditorHTMLProps\",\"url\":\"types/EditorHTMLProps.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"EditorHTML\",\"url\":\"functions/EditorHTML-1.html\",\"classes\":\"\"},{\"kind\":4,\"name\":\"EditorHTML\",\"url\":\"modules/EditorHTML.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"displayName\",\"url\":\"variables/EditorHTML.displayName.html\",\"classes\":\"\",\"parent\":\"EditorHTML\"},{\"kind\":4194304,\"name\":\"IconProps\",\"url\":\"types/IconProps.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"Icon\",\"url\":\"functions/Icon-1.html\",\"classes\":\"\"},{\"kind\":4,\"name\":\"Icon\",\"url\":\"modules/Icon.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"displayName\",\"url\":\"variables/Icon.displayName.html\",\"classes\":\"\",\"parent\":\"Icon\"},{\"kind\":4194304,\"name\":\"LoadingProps\",\"url\":\"types/LoadingProps.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"Loading\",\"url\":\"functions/Loading-1.html\",\"classes\":\"\"},{\"kind\":4,\"name\":\"Loading\",\"url\":\"modules/Loading.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"displayName\",\"url\":\"variables/Loading.displayName.html\",\"classes\":\"\",\"parent\":\"Loading\"},{\"kind\":256,\"name\":\"MonthCalendarProps\",\"url\":\"interfaces/MonthCalendarProps.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"headBg\",\"url\":\"interfaces/MonthCalendarProps.html#headBg\",\"classes\":\"\",\"parent\":\"MonthCalendarProps\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/MonthCalendarProps.html#value\",\"classes\":\"\",\"parent\":\"MonthCalendarProps\"},{\"kind\":1024,\"name\":\"onChange\",\"url\":\"interfaces/MonthCalendarProps.html#onChange\",\"classes\":\"\",\"parent\":\"MonthCalendarProps\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/MonthCalendarProps.html#onChange.__type\",\"classes\":\"\",\"parent\":\"MonthCalendarProps.onChange\"},{\"kind\":128,\"name\":\"MonthCalendar\",\"url\":\"classes/MonthCalendar.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"displayName\",\"url\":\"classes/MonthCalendar.html#displayName\",\"classes\":\"\",\"parent\":\"MonthCalendar\"},{\"kind\":1024,\"name\":\"currentDate\",\"url\":\"classes/MonthCalendar.html#currentDate\",\"classes\":\"\",\"parent\":\"MonthCalendar\"},{\"kind\":262144,\"name\":\"dateGrid\",\"url\":\"classes/MonthCalendar.html#dateGrid\",\"classes\":\"\",\"parent\":\"MonthCalendar\"},{\"kind\":2048,\"name\":\"changeMonth\",\"url\":\"classes/MonthCalendar.html#changeMonth\",\"classes\":\"\",\"parent\":\"MonthCalendar\"},{\"kind\":2048,\"name\":\"renderDate\",\"url\":\"classes/MonthCalendar.html#renderDate\",\"classes\":\"\",\"parent\":\"MonthCalendar\"},{\"kind\":2048,\"name\":\"render\",\"url\":\"classes/MonthCalendar.html#render\",\"classes\":\"\",\"parent\":\"MonthCalendar\"},{\"kind\":4194304,\"name\":\"NameplateProps\",\"url\":\"types/NameplateProps.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"Nameplate\",\"url\":\"functions/Nameplate-1.html\",\"classes\":\"\"},{\"kind\":4,\"name\":\"Nameplate\",\"url\":\"modules/Nameplate.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"displayName\",\"url\":\"variables/Nameplate.displayName.html\",\"classes\":\"\",\"parent\":\"Nameplate\"},{\"kind\":4194304,\"name\":\"LeafLetComponent\",\"url\":\"types/LeafLetComponent.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"MapEvent\",\"url\":\"types/MapEvent.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"MarkerMeta\",\"url\":\"interfaces/MarkerMeta.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"tooltip\",\"url\":\"interfaces/MarkerMeta.html#tooltip\",\"classes\":\"\",\"parent\":\"MarkerMeta\"},{\"kind\":1024,\"name\":\"popup\",\"url\":\"interfaces/MarkerMeta.html#popup\",\"classes\":\"\",\"parent\":\"MarkerMeta\"},{\"kind\":256,\"name\":\"OpenMapProps\",\"url\":\"interfaces/OpenMapProps.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"tileLayerURL\",\"url\":\"interfaces/OpenMapProps.html#tileLayerURL\",\"classes\":\"\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"attribution\",\"url\":\"interfaces/OpenMapProps.html#attribution\",\"classes\":\"\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"renderTileLayer\",\"url\":\"interfaces/OpenMapProps.html#renderTileLayer\",\"classes\":\"\",\"parent\":\"OpenMapProps\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/OpenMapProps.html#renderTileLayer.__type-2\",\"classes\":\"\",\"parent\":\"OpenMapProps.renderTileLayer\"},{\"kind\":1024,\"name\":\"markers\",\"url\":\"interfaces/OpenMapProps.html#markers\",\"classes\":\"\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/OpenMapProps.html#title\",\"classes\":\"\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"interfaces/OpenMapProps.html#address\",\"classes\":\"\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onChange\",\"url\":\"interfaces/OpenMapProps.html#onChange\",\"classes\":\"\",\"parent\":\"OpenMapProps\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/OpenMapProps.html#onChange.__type\",\"classes\":\"\",\"parent\":\"OpenMapProps.onChange\"},{\"kind\":1024,\"name\":\"onTileLayerBaselayerChange\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerBaselayerChange\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerOverlayadd\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerOverlayadd\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerOverlayremove\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerOverlayremove\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerLayeradd\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerLayeradd\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerLayerremove\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerLayerremove\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerZoomlevelsChange\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerZoomlevelsChange\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerUnLoad\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerUnLoad\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerViewReset\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerViewReset\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerLoad\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerLoad\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerZoomstart\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerZoomstart\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerMovestart\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerMovestart\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerZoom\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerZoom\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerMove\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerMove\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerZoomend\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerZoomend\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerMoveend\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerMoveend\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerAutopanstart\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerAutopanstart\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerDragStart\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerDragStart\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerDrag\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerDrag\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerAdd\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerAdd\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerRemove\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerRemove\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerLoading\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerLoading\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerError\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerError\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerUpdate\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerUpdate\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerDown\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerDown\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerPreDrag\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerPreDrag\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerResize\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerResize\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerPopupopen\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerPopupopen\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerPopupClose\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerPopupClose\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerTooltipopen\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerTooltipopen\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerTooltipClose\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerTooltipClose\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerLocationError\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerLocationError\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerLocationfound\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerLocationfound\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerClick\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerClick\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerDblClick\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerDblClick\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerMouseDown\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerMouseDown\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerMouseUp\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerMouseUp\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerMouseOver\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerMouseOver\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerMouseOut\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerMouseOut\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerMouseMove\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerMouseMove\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerContextmenu\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerContextmenu\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerPreClick\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerPreClick\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerKeypress\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerKeypress\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerKeydown\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerKeydown\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerKeyup\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerKeyup\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerZoomanim\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerZoomanim\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerDragEnd\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerDragEnd\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerTileunLoad\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerTileunLoad\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerTileLoadstart\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerTileLoadstart\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerTileLoad\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerTileLoad\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerTileAbort\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerTileAbort\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onTileLayerTileError\",\"url\":\"interfaces/OpenMapProps.html#onTileLayerTileError\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerBaselayerChange\",\"url\":\"interfaces/OpenMapProps.html#onMarkerBaselayerChange\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerOverlayadd\",\"url\":\"interfaces/OpenMapProps.html#onMarkerOverlayadd\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerOverlayremove\",\"url\":\"interfaces/OpenMapProps.html#onMarkerOverlayremove\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerLayeradd\",\"url\":\"interfaces/OpenMapProps.html#onMarkerLayeradd\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerLayerremove\",\"url\":\"interfaces/OpenMapProps.html#onMarkerLayerremove\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerZoomlevelsChange\",\"url\":\"interfaces/OpenMapProps.html#onMarkerZoomlevelsChange\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerUnLoad\",\"url\":\"interfaces/OpenMapProps.html#onMarkerUnLoad\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerViewReset\",\"url\":\"interfaces/OpenMapProps.html#onMarkerViewReset\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerLoad\",\"url\":\"interfaces/OpenMapProps.html#onMarkerLoad\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerZoomstart\",\"url\":\"interfaces/OpenMapProps.html#onMarkerZoomstart\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerMovestart\",\"url\":\"interfaces/OpenMapProps.html#onMarkerMovestart\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerZoom\",\"url\":\"interfaces/OpenMapProps.html#onMarkerZoom\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerMove\",\"url\":\"interfaces/OpenMapProps.html#onMarkerMove\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerZoomend\",\"url\":\"interfaces/OpenMapProps.html#onMarkerZoomend\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerMoveend\",\"url\":\"interfaces/OpenMapProps.html#onMarkerMoveend\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerAutopanstart\",\"url\":\"interfaces/OpenMapProps.html#onMarkerAutopanstart\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerDragStart\",\"url\":\"interfaces/OpenMapProps.html#onMarkerDragStart\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerDrag\",\"url\":\"interfaces/OpenMapProps.html#onMarkerDrag\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerAdd\",\"url\":\"interfaces/OpenMapProps.html#onMarkerAdd\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerRemove\",\"url\":\"interfaces/OpenMapProps.html#onMarkerRemove\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerLoading\",\"url\":\"interfaces/OpenMapProps.html#onMarkerLoading\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerError\",\"url\":\"interfaces/OpenMapProps.html#onMarkerError\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerUpdate\",\"url\":\"interfaces/OpenMapProps.html#onMarkerUpdate\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerDown\",\"url\":\"interfaces/OpenMapProps.html#onMarkerDown\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerPreDrag\",\"url\":\"interfaces/OpenMapProps.html#onMarkerPreDrag\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerResize\",\"url\":\"interfaces/OpenMapProps.html#onMarkerResize\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerPopupopen\",\"url\":\"interfaces/OpenMapProps.html#onMarkerPopupopen\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerPopupClose\",\"url\":\"interfaces/OpenMapProps.html#onMarkerPopupClose\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerTooltipopen\",\"url\":\"interfaces/OpenMapProps.html#onMarkerTooltipopen\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerTooltipClose\",\"url\":\"interfaces/OpenMapProps.html#onMarkerTooltipClose\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerLocationError\",\"url\":\"interfaces/OpenMapProps.html#onMarkerLocationError\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerLocationfound\",\"url\":\"interfaces/OpenMapProps.html#onMarkerLocationfound\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerClick\",\"url\":\"interfaces/OpenMapProps.html#onMarkerClick\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerDblClick\",\"url\":\"interfaces/OpenMapProps.html#onMarkerDblClick\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerMouseDown\",\"url\":\"interfaces/OpenMapProps.html#onMarkerMouseDown\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerMouseUp\",\"url\":\"interfaces/OpenMapProps.html#onMarkerMouseUp\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerMouseOver\",\"url\":\"interfaces/OpenMapProps.html#onMarkerMouseOver\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerMouseOut\",\"url\":\"interfaces/OpenMapProps.html#onMarkerMouseOut\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerMouseMove\",\"url\":\"interfaces/OpenMapProps.html#onMarkerMouseMove\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerContextmenu\",\"url\":\"interfaces/OpenMapProps.html#onMarkerContextmenu\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerPreClick\",\"url\":\"interfaces/OpenMapProps.html#onMarkerPreClick\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerKeypress\",\"url\":\"interfaces/OpenMapProps.html#onMarkerKeypress\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerKeydown\",\"url\":\"interfaces/OpenMapProps.html#onMarkerKeydown\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerKeyup\",\"url\":\"interfaces/OpenMapProps.html#onMarkerKeyup\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerZoomanim\",\"url\":\"interfaces/OpenMapProps.html#onMarkerZoomanim\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerDragEnd\",\"url\":\"interfaces/OpenMapProps.html#onMarkerDragEnd\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerTileunLoad\",\"url\":\"interfaces/OpenMapProps.html#onMarkerTileunLoad\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerTileLoadstart\",\"url\":\"interfaces/OpenMapProps.html#onMarkerTileLoadstart\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerTileLoad\",\"url\":\"interfaces/OpenMapProps.html#onMarkerTileLoad\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerTileAbort\",\"url\":\"interfaces/OpenMapProps.html#onMarkerTileAbort\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"onMarkerTileError\",\"url\":\"interfaces/OpenMapProps.html#onMarkerTileError\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":1024,\"name\":\"mapRef\",\"url\":\"interfaces/OpenMapProps.html#mapRef\",\"classes\":\"tsd-is-inherited\",\"parent\":\"OpenMapProps\"},{\"kind\":4194304,\"name\":\"CoordinateValue\",\"url\":\"types/CoordinateValue.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"Location\",\"url\":\"interfaces/Location.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"place_id\",\"url\":\"interfaces/Location.html#place_id\",\"classes\":\"\",\"parent\":\"Location\"},{\"kind\":1024,\"name\":\"osm_id\",\"url\":\"interfaces/Location.html#osm_id\",\"classes\":\"\",\"parent\":\"Location\"},{\"kind\":1024,\"name\":\"osm_type\",\"url\":\"interfaces/Location.html#osm_type\",\"classes\":\"\",\"parent\":\"Location\"},{\"kind\":1024,\"name\":\"boundingbox\",\"url\":\"interfaces/Location.html#boundingbox\",\"classes\":\"\",\"parent\":\"Location\"},{\"kind\":1024,\"name\":\"lat\",\"url\":\"interfaces/Location.html#lat\",\"classes\":\"\",\"parent\":\"Location\"},{\"kind\":1024,\"name\":\"lon\",\"url\":\"interfaces/Location.html#lon\",\"classes\":\"\",\"parent\":\"Location\"},{\"kind\":1024,\"name\":\"display_name\",\"url\":\"interfaces/Location.html#display_name\",\"classes\":\"\",\"parent\":\"Location\"},{\"kind\":1024,\"name\":\"licence\",\"url\":\"interfaces/Location.html#licence\",\"classes\":\"\",\"parent\":\"Location\"},{\"kind\":256,\"name\":\"ReverseItem\",\"url\":\"interfaces/ReverseItem.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"address\",\"url\":\"interfaces/ReverseItem.html#address\",\"classes\":\"\",\"parent\":\"ReverseItem\"},{\"kind\":1024,\"name\":\"place_id\",\"url\":\"interfaces/ReverseItem.html#place_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReverseItem\"},{\"kind\":1024,\"name\":\"osm_id\",\"url\":\"interfaces/ReverseItem.html#osm_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReverseItem\"},{\"kind\":1024,\"name\":\"osm_type\",\"url\":\"interfaces/ReverseItem.html#osm_type\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReverseItem\"},{\"kind\":1024,\"name\":\"boundingbox\",\"url\":\"interfaces/ReverseItem.html#boundingbox\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReverseItem\"},{\"kind\":1024,\"name\":\"lat\",\"url\":\"interfaces/ReverseItem.html#lat\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReverseItem\"},{\"kind\":1024,\"name\":\"lon\",\"url\":\"interfaces/ReverseItem.html#lon\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReverseItem\"},{\"kind\":1024,\"name\":\"display_name\",\"url\":\"interfaces/ReverseItem.html#display_name\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReverseItem\"},{\"kind\":1024,\"name\":\"licence\",\"url\":\"interfaces/ReverseItem.html#licence\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ReverseItem\"},{\"kind\":256,\"name\":\"SearchItem\",\"url\":\"interfaces/SearchItem.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/SearchItem.html#type\",\"classes\":\"\",\"parent\":\"SearchItem\"},{\"kind\":1024,\"name\":\"class\",\"url\":\"interfaces/SearchItem.html#class\",\"classes\":\"\",\"parent\":\"SearchItem\"},{\"kind\":1024,\"name\":\"icon\",\"url\":\"interfaces/SearchItem.html#icon\",\"classes\":\"\",\"parent\":\"SearchItem\"},{\"kind\":1024,\"name\":\"importance\",\"url\":\"interfaces/SearchItem.html#importance\",\"classes\":\"\",\"parent\":\"SearchItem\"},{\"kind\":1024,\"name\":\"place_id\",\"url\":\"interfaces/SearchItem.html#place_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"SearchItem\"},{\"kind\":1024,\"name\":\"osm_id\",\"url\":\"interfaces/SearchItem.html#osm_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"SearchItem\"},{\"kind\":1024,\"name\":\"osm_type\",\"url\":\"interfaces/SearchItem.html#osm_type\",\"classes\":\"tsd-is-inherited\",\"parent\":\"SearchItem\"},{\"kind\":1024,\"name\":\"boundingbox\",\"url\":\"interfaces/SearchItem.html#boundingbox\",\"classes\":\"tsd-is-inherited\",\"parent\":\"SearchItem\"},{\"kind\":1024,\"name\":\"lat\",\"url\":\"interfaces/SearchItem.html#lat\",\"classes\":\"tsd-is-inherited\",\"parent\":\"SearchItem\"},{\"kind\":1024,\"name\":\"lon\",\"url\":\"interfaces/SearchItem.html#lon\",\"classes\":\"tsd-is-inherited\",\"parent\":\"SearchItem\"},{\"kind\":1024,\"name\":\"display_name\",\"url\":\"interfaces/SearchItem.html#display_name\",\"classes\":\"tsd-is-inherited\",\"parent\":\"SearchItem\"},{\"kind\":1024,\"name\":\"licence\",\"url\":\"interfaces/SearchItem.html#licence\",\"classes\":\"tsd-is-inherited\",\"parent\":\"SearchItem\"},{\"kind\":64,\"name\":\"OpenMap\",\"url\":\"functions/OpenMap-1.html\",\"classes\":\"\"},{\"kind\":4,\"name\":\"OpenMap\",\"url\":\"modules/OpenMap.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"displayName\",\"url\":\"variables/OpenMap.displayName.html\",\"classes\":\"\",\"parent\":\"OpenMap\"},{\"kind\":256,\"name\":\"OverlayBoxProps\",\"url\":\"interfaces/OverlayBoxProps.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/OverlayBoxProps.html#title\",\"classes\":\"\",\"parent\":\"OverlayBoxProps\"},{\"kind\":1024,\"name\":\"detail\",\"url\":\"interfaces/OverlayBoxProps.html#detail\",\"classes\":\"\",\"parent\":\"OverlayBoxProps\"},{\"kind\":64,\"name\":\"OverlayBox\",\"url\":\"functions/OverlayBox-1.html\",\"classes\":\"\"},{\"kind\":4,\"name\":\"OverlayBox\",\"url\":\"modules/OverlayBox.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"displayName\",\"url\":\"variables/OverlayBox.displayName.html\",\"classes\":\"\",\"parent\":\"OverlayBox\"},{\"kind\":256,\"name\":\"PageNavProps\",\"url\":\"interfaces/PageNavProps.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"depth\",\"url\":\"interfaces/PageNavProps.html#depth\",\"classes\":\"\",\"parent\":\"PageNavProps\"},{\"kind\":1024,\"name\":\"onItemClick\",\"url\":\"interfaces/PageNavProps.html#onItemClick\",\"classes\":\"\",\"parent\":\"PageNavProps\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PageNavProps.html#onItemClick.__type\",\"classes\":\"\",\"parent\":\"PageNavProps.onItemClick\"},{\"kind\":128,\"name\":\"PageNav\",\"url\":\"classes/PageNav.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"displayName\",\"url\":\"classes/PageNav.html#displayName\",\"classes\":\"\",\"parent\":\"PageNav\"},{\"kind\":1024,\"name\":\"list\",\"url\":\"classes/PageNav.html#list\",\"classes\":\"\",\"parent\":\"PageNav\"},{\"kind\":1024,\"name\":\"scrollY\",\"url\":\"classes/PageNav.html#scrollY\",\"classes\":\"\",\"parent\":\"PageNav\"},{\"kind\":262144,\"name\":\"currentActiveId\",\"url\":\"classes/PageNav.html#currentActiveId\",\"classes\":\"\",\"parent\":\"PageNav\"},{\"kind\":2048,\"name\":\"updateScrollY\",\"url\":\"classes/PageNav.html#updateScrollY\",\"classes\":\"\",\"parent\":\"PageNav\"},{\"kind\":2048,\"name\":\"componentDidMount\",\"url\":\"classes/PageNav.html#componentDidMount\",\"classes\":\"\",\"parent\":\"PageNav\"},{\"kind\":2048,\"name\":\"componentWillUnmount\",\"url\":\"classes/PageNav.html#componentWillUnmount\",\"classes\":\"\",\"parent\":\"PageNav\"},{\"kind\":2048,\"name\":\"renderLink\",\"url\":\"classes/PageNav.html#renderLink\",\"classes\":\"\",\"parent\":\"PageNav\"},{\"kind\":2048,\"name\":\"render\",\"url\":\"classes/PageNav.html#render\",\"classes\":\"\",\"parent\":\"PageNav\"},{\"kind\":4194304,\"name\":\"OptionProps\",\"url\":\"types/OptionProps.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"Option\",\"url\":\"functions/Option-1.html\",\"classes\":\"\"},{\"kind\":4,\"name\":\"Option\",\"url\":\"modules/Option.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"displayName\",\"url\":\"variables/Option.displayName.html\",\"classes\":\"\",\"parent\":\"Option\"},{\"kind\":256,\"name\":\"SelectProps\",\"url\":\"interfaces/SelectProps.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"onChange\",\"url\":\"interfaces/SelectProps.html#onChange\",\"classes\":\"\",\"parent\":\"SelectProps\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/SelectProps.html#onChange.__type\",\"classes\":\"\",\"parent\":\"SelectProps.onChange\"},{\"kind\":1024,\"name\":\"valueRender\",\"url\":\"interfaces/SelectProps.html#valueRender\",\"classes\":\"\",\"parent\":\"SelectProps\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/SelectProps.html#valueRender.__type-2\",\"classes\":\"\",\"parent\":\"SelectProps.valueRender\"},{\"kind\":1024,\"name\":\"className\",\"url\":\"interfaces/SelectProps.html#className\",\"classes\":\"tsd-is-inherited\",\"parent\":\"SelectProps\"},{\"kind\":1024,\"name\":\"style\",\"url\":\"interfaces/SelectProps.html#style\",\"classes\":\"tsd-is-inherited\",\"parent\":\"SelectProps\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/SelectProps.html#value\",\"classes\":\"tsd-is-inherited\",\"parent\":\"SelectProps\"},{\"kind\":64,\"name\":\"Select\",\"url\":\"functions/Select-1.html\",\"classes\":\"\"},{\"kind\":4,\"name\":\"Select\",\"url\":\"modules/Select.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"displayName\",\"url\":\"variables/Select.displayName.html\",\"classes\":\"\",\"parent\":\"Select\"},{\"kind\":256,\"name\":\"SpinnerButtonProps\",\"url\":\"interfaces/SpinnerButtonProps.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"loading\",\"url\":\"interfaces/SpinnerButtonProps.html#loading\",\"classes\":\"\",\"parent\":\"SpinnerButtonProps\"},{\"kind\":64,\"name\":\"SpinnerButton\",\"url\":\"functions/SpinnerButton-1.html\",\"classes\":\"\"},{\"kind\":4,\"name\":\"SpinnerButton\",\"url\":\"modules/SpinnerButton.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"displayName\",\"url\":\"variables/SpinnerButton.displayName.html\",\"classes\":\"\",\"parent\":\"SpinnerButton\"},{\"kind\":4194304,\"name\":\"TableSpinnerProps\",\"url\":\"types/TableSpinnerProps.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"TableSpinner\",\"url\":\"functions/TableSpinner-1.html\",\"classes\":\"\"},{\"kind\":4,\"name\":\"TableSpinner\",\"url\":\"modules/TableSpinner.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"displayName\",\"url\":\"variables/TableSpinner.displayName.html\",\"classes\":\"\",\"parent\":\"TableSpinner\"},{\"kind\":4194304,\"name\":\"TimeDistanceProps\",\"url\":\"types/TimeDistanceProps.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"TimeDistance\",\"url\":\"functions/TimeDistance-1.html\",\"classes\":\"\"},{\"kind\":4,\"name\":\"TimeDistance\",\"url\":\"modules/TimeDistance.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"displayName\",\"url\":\"variables/TimeDistance.displayName.html\",\"classes\":\"\",\"parent\":\"TimeDistance\"},{\"kind\":4194304,\"name\":\"TypeEchoProps\",\"url\":\"types/TypeEchoProps.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"TypeEcho\",\"url\":\"classes/TypeEcho.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"displayName\",\"url\":\"classes/TypeEcho.html#displayName\",\"classes\":\"\",\"parent\":\"TypeEcho\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"classes/TypeEcho.html#state\",\"classes\":\"\",\"parent\":\"TypeEcho\"},{\"kind\":1024,\"name\":\"init\",\"url\":\"classes/TypeEcho.html#init\",\"classes\":\"\",\"parent\":\"TypeEcho\"},{\"kind\":2048,\"name\":\"render\",\"url\":\"classes/TypeEcho.html#render\",\"classes\":\"\",\"parent\":\"TypeEcho\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,52.003]],[\"comment/0\",[]],[\"name/1\",[1,52.003]],[\"comment/1\",[]],[\"name/2\",[2,52.003]],[\"comment/2\",[]],[\"name/3\",[3,46.895]],[\"comment/3\",[]],[\"name/4\",[3,46.895]],[\"comment/4\",[]],[\"name/5\",[4,28.024]],[\"comment/5\",[]],[\"name/6\",[5,52.003]],[\"comment/6\",[]],[\"name/7\",[6,52.003]],[\"comment/7\",[]],[\"name/8\",[7,52.003]],[\"comment/8\",[]],[\"name/9\",[8,52.003]],[\"comment/9\",[]],[\"name/10\",[9,46.895]],[\"comment/10\",[]],[\"name/11\",[10,46.895]],[\"comment/11\",[]],[\"name/12\",[11,39.011]],[\"comment/12\",[]],[\"name/13\",[12,52.003]],[\"comment/13\",[]],[\"name/14\",[13,52.003]],[\"comment/14\",[]],[\"name/15\",[14,52.003]],[\"comment/15\",[]],[\"name/16\",[15,52.003]],[\"comment/16\",[]],[\"name/17\",[16,52.003]],[\"comment/17\",[]],[\"name/18\",[17,52.003]],[\"comment/18\",[]],[\"name/19\",[18,46.895]],[\"comment/19\",[]],[\"name/20\",[19,52.003]],[\"comment/20\",[]],[\"name/21\",[20,46.895]],[\"comment/21\",[]],[\"name/22\",[21,52.003]],[\"comment/22\",[]],[\"name/23\",[18,46.895]],[\"comment/23\",[]],[\"name/24\",[20,46.895]],[\"comment/24\",[]],[\"name/25\",[22,52.003]],[\"comment/25\",[]],[\"name/26\",[23,52.003]],[\"comment/26\",[]],[\"name/27\",[24,52.003]],[\"comment/27\",[]],[\"name/28\",[25,52.003]],[\"comment/28\",[]],[\"name/29\",[4,28.024]],[\"comment/29\",[]],[\"name/30\",[26,52.003]],[\"comment/30\",[]],[\"name/31\",[27,46.895]],[\"comment/31\",[]],[\"name/32\",[28,52.003]],[\"comment/32\",[]],[\"name/33\",[11,39.011]],[\"comment/33\",[]],[\"name/34\",[29,52.003]],[\"comment/34\",[]],[\"name/35\",[30,52.003]],[\"comment/35\",[]],[\"name/36\",[31,46.895]],[\"comment/36\",[]],[\"name/37\",[31,46.895]],[\"comment/37\",[]],[\"name/38\",[4,28.024]],[\"comment/38\",[]],[\"name/39\",[32,52.003]],[\"comment/39\",[]],[\"name/40\",[33,43.53]],[\"comment/40\",[]],[\"name/41\",[33,43.53]],[\"comment/41\",[]],[\"name/42\",[4,28.024]],[\"comment/42\",[]],[\"name/43\",[34,52.003]],[\"comment/43\",[]],[\"name/44\",[35,43.53]],[\"comment/44\",[]],[\"name/45\",[35,43.53]],[\"comment/45\",[]],[\"name/46\",[4,28.024]],[\"comment/46\",[]],[\"name/47\",[36,52.003]],[\"comment/47\",[]],[\"name/48\",[37,52.003]],[\"comment/48\",[]],[\"name/49\",[38,46.895]],[\"comment/49\",[]],[\"name/50\",[39,43.53]],[\"comment/50\",[]],[\"name/51\",[40,37.34]],[\"comment/51\",[]],[\"name/52\",[41,52.003]],[\"comment/52\",[]],[\"name/53\",[4,28.024]],[\"comment/53\",[]],[\"name/54\",[42,52.003]],[\"comment/54\",[]],[\"name/55\",[43,52.003]],[\"comment/55\",[]],[\"name/56\",[44,52.003]],[\"comment/56\",[]],[\"name/57\",[45,52.003]],[\"comment/57\",[]],[\"name/58\",[11,39.011]],[\"comment/58\",[]],[\"name/59\",[46,52.003]],[\"comment/59\",[]],[\"name/60\",[47,46.895]],[\"comment/60\",[]],[\"name/61\",[47,46.895]],[\"comment/61\",[]],[\"name/62\",[4,28.024]],[\"comment/62\",[]],[\"name/63\",[48,52.003]],[\"comment/63\",[]],[\"name/64\",[49,52.003]],[\"comment/64\",[]],[\"name/65\",[50,52.003]],[\"comment/65\",[]],[\"name/66\",[51,52.003]],[\"comment/66\",[]],[\"name/67\",[52,52.003]],[\"comment/67\",[]],[\"name/68\",[53,52.003]],[\"comment/68\",[]],[\"name/69\",[54,52.003]],[\"comment/69\",[]],[\"name/70\",[55,52.003]],[\"comment/70\",[]],[\"name/71\",[56,52.003]],[\"comment/71\",[]],[\"name/72\",[40,37.34]],[\"comment/72\",[]],[\"name/73\",[57,52.003]],[\"comment/73\",[]],[\"name/74\",[58,46.895]],[\"comment/74\",[]],[\"name/75\",[59,46.895]],[\"comment/75\",[]],[\"name/76\",[39,43.53]],[\"comment/76\",[]],[\"name/77\",[40,37.34]],[\"comment/77\",[]],[\"name/78\",[60,52.003]],[\"comment/78\",[]],[\"name/79\",[61,52.003]],[\"comment/79\",[]],[\"name/80\",[62,52.003]],[\"comment/80\",[]],[\"name/81\",[63,52.003]],[\"comment/81\",[]],[\"name/82\",[64,52.003]],[\"comment/82\",[]],[\"name/83\",[65,52.003]],[\"comment/83\",[]],[\"name/84\",[66,52.003]],[\"comment/84\",[]],[\"name/85\",[67,52.003]],[\"comment/85\",[]],[\"name/86\",[68,52.003]],[\"comment/86\",[]],[\"name/87\",[69,52.003]],[\"comment/87\",[]],[\"name/88\",[70,52.003]],[\"comment/88\",[]],[\"name/89\",[71,52.003]],[\"comment/89\",[]],[\"name/90\",[72,52.003]],[\"comment/90\",[]],[\"name/91\",[73,52.003]],[\"comment/91\",[]],[\"name/92\",[74,52.003]],[\"comment/92\",[]],[\"name/93\",[75,52.003]],[\"comment/93\",[]],[\"name/94\",[76,52.003]],[\"comment/94\",[]],[\"name/95\",[77,52.003]],[\"comment/95\",[]],[\"name/96\",[78,52.003]],[\"comment/96\",[]],[\"name/97\",[79,52.003]],[\"comment/97\",[]],[\"name/98\",[80,52.003]],[\"comment/98\",[]],[\"name/99\",[81,52.003]],[\"comment/99\",[]],[\"name/100\",[82,52.003]],[\"comment/100\",[]],[\"name/101\",[83,52.003]],[\"comment/101\",[]],[\"name/102\",[84,52.003]],[\"comment/102\",[]],[\"name/103\",[85,52.003]],[\"comment/103\",[]],[\"name/104\",[86,52.003]],[\"comment/104\",[]],[\"name/105\",[87,52.003]],[\"comment/105\",[]],[\"name/106\",[88,52.003]],[\"comment/106\",[]],[\"name/107\",[89,52.003]],[\"comment/107\",[]],[\"name/108\",[90,52.003]],[\"comment/108\",[]],[\"name/109\",[91,52.003]],[\"comment/109\",[]],[\"name/110\",[92,52.003]],[\"comment/110\",[]],[\"name/111\",[93,52.003]],[\"comment/111\",[]],[\"name/112\",[94,52.003]],[\"comment/112\",[]],[\"name/113\",[95,52.003]],[\"comment/113\",[]],[\"name/114\",[96,52.003]],[\"comment/114\",[]],[\"name/115\",[97,52.003]],[\"comment/115\",[]],[\"name/116\",[98,52.003]],[\"comment/116\",[]],[\"name/117\",[99,52.003]],[\"comment/117\",[]],[\"name/118\",[100,52.003]],[\"comment/118\",[]],[\"name/119\",[101,52.003]],[\"comment/119\",[]],[\"name/120\",[102,52.003]],[\"comment/120\",[]],[\"name/121\",[103,52.003]],[\"comment/121\",[]],[\"name/122\",[104,52.003]],[\"comment/122\",[]],[\"name/123\",[105,52.003]],[\"comment/123\",[]],[\"name/124\",[106,52.003]],[\"comment/124\",[]],[\"name/125\",[107,52.003]],[\"comment/125\",[]],[\"name/126\",[108,52.003]],[\"comment/126\",[]],[\"name/127\",[109,52.003]],[\"comment/127\",[]],[\"name/128\",[110,52.003]],[\"comment/128\",[]],[\"name/129\",[111,52.003]],[\"comment/129\",[]],[\"name/130\",[112,52.003]],[\"comment/130\",[]],[\"name/131\",[113,52.003]],[\"comment/131\",[]],[\"name/132\",[114,52.003]],[\"comment/132\",[]],[\"name/133\",[115,52.003]],[\"comment/133\",[]],[\"name/134\",[116,52.003]],[\"comment/134\",[]],[\"name/135\",[117,52.003]],[\"comment/135\",[]],[\"name/136\",[118,52.003]],[\"comment/136\",[]],[\"name/137\",[119,52.003]],[\"comment/137\",[]],[\"name/138\",[120,52.003]],[\"comment/138\",[]],[\"name/139\",[121,52.003]],[\"comment/139\",[]],[\"name/140\",[122,52.003]],[\"comment/140\",[]],[\"name/141\",[123,52.003]],[\"comment/141\",[]],[\"name/142\",[124,52.003]],[\"comment/142\",[]],[\"name/143\",[125,52.003]],[\"comment/143\",[]],[\"name/144\",[126,52.003]],[\"comment/144\",[]],[\"name/145\",[127,52.003]],[\"comment/145\",[]],[\"name/146\",[128,52.003]],[\"comment/146\",[]],[\"name/147\",[129,52.003]],[\"comment/147\",[]],[\"name/148\",[130,52.003]],[\"comment/148\",[]],[\"name/149\",[131,52.003]],[\"comment/149\",[]],[\"name/150\",[132,52.003]],[\"comment/150\",[]],[\"name/151\",[133,52.003]],[\"comment/151\",[]],[\"name/152\",[134,52.003]],[\"comment/152\",[]],[\"name/153\",[135,52.003]],[\"comment/153\",[]],[\"name/154\",[136,52.003]],[\"comment/154\",[]],[\"name/155\",[137,52.003]],[\"comment/155\",[]],[\"name/156\",[138,52.003]],[\"comment/156\",[]],[\"name/157\",[139,52.003]],[\"comment/157\",[]],[\"name/158\",[140,52.003]],[\"comment/158\",[]],[\"name/159\",[141,52.003]],[\"comment/159\",[]],[\"name/160\",[142,52.003]],[\"comment/160\",[]],[\"name/161\",[143,52.003]],[\"comment/161\",[]],[\"name/162\",[144,52.003]],[\"comment/162\",[]],[\"name/163\",[145,52.003]],[\"comment/163\",[]],[\"name/164\",[146,52.003]],[\"comment/164\",[]],[\"name/165\",[147,52.003]],[\"comment/165\",[]],[\"name/166\",[148,52.003]],[\"comment/166\",[]],[\"name/167\",[149,52.003]],[\"comment/167\",[]],[\"name/168\",[150,52.003]],[\"comment/168\",[]],[\"name/169\",[151,52.003]],[\"comment/169\",[]],[\"name/170\",[152,52.003]],[\"comment/170\",[]],[\"name/171\",[153,52.003]],[\"comment/171\",[]],[\"name/172\",[154,52.003]],[\"comment/172\",[]],[\"name/173\",[155,52.003]],[\"comment/173\",[]],[\"name/174\",[156,52.003]],[\"comment/174\",[]],[\"name/175\",[157,52.003]],[\"comment/175\",[]],[\"name/176\",[158,52.003]],[\"comment/176\",[]],[\"name/177\",[159,52.003]],[\"comment/177\",[]],[\"name/178\",[160,52.003]],[\"comment/178\",[]],[\"name/179\",[161,52.003]],[\"comment/179\",[]],[\"name/180\",[162,52.003]],[\"comment/180\",[]],[\"name/181\",[163,52.003]],[\"comment/181\",[]],[\"name/182\",[164,52.003]],[\"comment/182\",[]],[\"name/183\",[165,43.53]],[\"comment/183\",[]],[\"name/184\",[166,43.53]],[\"comment/184\",[]],[\"name/185\",[167,43.53]],[\"comment/185\",[]],[\"name/186\",[168,43.53]],[\"comment/186\",[]],[\"name/187\",[169,43.53]],[\"comment/187\",[]],[\"name/188\",[170,43.53]],[\"comment/188\",[]],[\"name/189\",[171,43.53]],[\"comment/189\",[]],[\"name/190\",[172,43.53]],[\"comment/190\",[]],[\"name/191\",[173,52.003]],[\"comment/191\",[]],[\"name/192\",[59,46.895]],[\"comment/192\",[]],[\"name/193\",[165,43.53]],[\"comment/193\",[]],[\"name/194\",[166,43.53]],[\"comment/194\",[]],[\"name/195\",[167,43.53]],[\"comment/195\",[]],[\"name/196\",[168,43.53]],[\"comment/196\",[]],[\"name/197\",[169,43.53]],[\"comment/197\",[]],[\"name/198\",[170,43.53]],[\"comment/198\",[]],[\"name/199\",[171,43.53]],[\"comment/199\",[]],[\"name/200\",[172,43.53]],[\"comment/200\",[]],[\"name/201\",[174,52.003]],[\"comment/201\",[]],[\"name/202\",[175,52.003]],[\"comment/202\",[]],[\"name/203\",[176,52.003]],[\"comment/203\",[]],[\"name/204\",[33,43.53]],[\"comment/204\",[]],[\"name/205\",[177,52.003]],[\"comment/205\",[]],[\"name/206\",[165,43.53]],[\"comment/206\",[]],[\"name/207\",[166,43.53]],[\"comment/207\",[]],[\"name/208\",[167,43.53]],[\"comment/208\",[]],[\"name/209\",[168,43.53]],[\"comment/209\",[]],[\"name/210\",[169,43.53]],[\"comment/210\",[]],[\"name/211\",[170,43.53]],[\"comment/211\",[]],[\"name/212\",[171,43.53]],[\"comment/212\",[]],[\"name/213\",[172,43.53]],[\"comment/213\",[]],[\"name/214\",[178,46.895]],[\"comment/214\",[]],[\"name/215\",[178,46.895]],[\"comment/215\",[]],[\"name/216\",[4,28.024]],[\"comment/216\",[]],[\"name/217\",[179,52.003]],[\"comment/217\",[]],[\"name/218\",[58,46.895]],[\"comment/218\",[]],[\"name/219\",[180,52.003]],[\"comment/219\",[]],[\"name/220\",[181,46.895]],[\"comment/220\",[]],[\"name/221\",[181,46.895]],[\"comment/221\",[]],[\"name/222\",[4,28.024]],[\"comment/222\",[]],[\"name/223\",[182,52.003]],[\"comment/223\",[]],[\"name/224\",[183,52.003]],[\"comment/224\",[]],[\"name/225\",[184,52.003]],[\"comment/225\",[]],[\"name/226\",[40,37.34]],[\"comment/226\",[]],[\"name/227\",[185,52.003]],[\"comment/227\",[]],[\"name/228\",[4,28.024]],[\"comment/228\",[]],[\"name/229\",[186,52.003]],[\"comment/229\",[]],[\"name/230\",[187,52.003]],[\"comment/230\",[]],[\"name/231\",[188,52.003]],[\"comment/231\",[]],[\"name/232\",[189,52.003]],[\"comment/232\",[]],[\"name/233\",[9,46.895]],[\"comment/233\",[]],[\"name/234\",[10,46.895]],[\"comment/234\",[]],[\"name/235\",[190,52.003]],[\"comment/235\",[]],[\"name/236\",[11,39.011]],[\"comment/236\",[]],[\"name/237\",[191,52.003]],[\"comment/237\",[]],[\"name/238\",[192,46.895]],[\"comment/238\",[]],[\"name/239\",[192,46.895]],[\"comment/239\",[]],[\"name/240\",[4,28.024]],[\"comment/240\",[]],[\"name/241\",[193,52.003]],[\"comment/241\",[]],[\"name/242\",[39,43.53]],[\"comment/242\",[]],[\"name/243\",[40,37.34]],[\"comment/243\",[]],[\"name/244\",[194,52.003]],[\"comment/244\",[]],[\"name/245\",[40,37.34]],[\"comment/245\",[]],[\"name/246\",[195,52.003]],[\"comment/246\",[]],[\"name/247\",[196,52.003]],[\"comment/247\",[]],[\"name/248\",[38,46.895]],[\"comment/248\",[]],[\"name/249\",[197,46.895]],[\"comment/249\",[]],[\"name/250\",[197,46.895]],[\"comment/250\",[]],[\"name/251\",[4,28.024]],[\"comment/251\",[]],[\"name/252\",[198,52.003]],[\"comment/252\",[]],[\"name/253\",[35,43.53]],[\"comment/253\",[]],[\"name/254\",[199,46.895]],[\"comment/254\",[]],[\"name/255\",[199,46.895]],[\"comment/255\",[]],[\"name/256\",[4,28.024]],[\"comment/256\",[]],[\"name/257\",[200,52.003]],[\"comment/257\",[]],[\"name/258\",[201,46.895]],[\"comment/258\",[]],[\"name/259\",[201,46.895]],[\"comment/259\",[]],[\"name/260\",[4,28.024]],[\"comment/260\",[]],[\"name/261\",[202,52.003]],[\"comment/261\",[]],[\"name/262\",[203,46.895]],[\"comment/262\",[]],[\"name/263\",[203,46.895]],[\"comment/263\",[]],[\"name/264\",[4,28.024]],[\"comment/264\",[]],[\"name/265\",[204,52.003]],[\"comment/265\",[]],[\"name/266\",[205,52.003]],[\"comment/266\",[]],[\"name/267\",[4,28.024]],[\"comment/267\",[]],[\"name/268\",[27,46.895]],[\"comment/268\",[]],[\"name/269\",[206,52.003]],[\"comment/269\",[]],[\"name/270\",[11,39.011]],[\"comment/270\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":40,\"name\":{\"51\":{},\"72\":{},\"77\":{},\"226\":{},\"243\":{},\"245\":{}},\"comment\":{}}],[\"address\",{\"_index\":59,\"name\":{\"75\":{},\"192\":{}},\"comment\":{}}],[\"animate\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"attribution\",{\"_index\":55,\"name\":{\"70\":{}},\"comment\":{}}],[\"avatar\",{\"_index\":3,\"name\":{\"3\":{},\"4\":{}},\"comment\":{}}],[\"avatarprops\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"boundingbox\",{\"_index\":168,\"name\":{\"186\":{},\"196\":{},\"209\":{}},\"comment\":{}}],[\"changemonth\",{\"_index\":44,\"name\":{\"56\":{}},\"comment\":{}}],[\"class\",{\"_index\":176,\"name\":{\"203\":{}},\"comment\":{}}],[\"classname\",{\"_index\":195,\"name\":{\"246\":{}},\"comment\":{}}],[\"clickboundary\",{\"_index\":6,\"name\":{\"7\":{}},\"comment\":{}}],[\"clickboundaryprops\",{\"_index\":5,\"name\":{\"6\":{}},\"comment\":{}}],[\"codeblock\",{\"_index\":12,\"name\":{\"13\":{}},\"comment\":{}}],[\"codeblockprops\",{\"_index\":13,\"name\":{\"14\":{}},\"comment\":{}}],[\"component\",{\"_index\":22,\"name\":{\"25\":{}},\"comment\":{}}],[\"componentdidmount\",{\"_index\":9,\"name\":{\"10\":{},\"233\":{}},\"comment\":{}}],[\"componentwillunmount\",{\"_index\":10,\"name\":{\"11\":{},\"234\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":18,\"name\":{\"19\":{},\"23\":{}},\"comment\":{}}],[\"coordinatevalue\",{\"_index\":163,\"name\":{\"181\":{}},\"comment\":{}}],[\"currentactiveid\",{\"_index\":188,\"name\":{\"231\":{}},\"comment\":{}}],[\"currentdate\",{\"_index\":42,\"name\":{\"54\":{}},\"comment\":{}}],[\"dategrid\",{\"_index\":43,\"name\":{\"55\":{}},\"comment\":{}}],[\"defer\",{\"_index\":20,\"name\":{\"21\":{},\"24\":{}},\"comment\":{}}],[\"depth\",{\"_index\":183,\"name\":{\"224\":{}},\"comment\":{}}],[\"detail\",{\"_index\":180,\"name\":{\"219\":{}},\"comment\":{}}],[\"dialog\",{\"_index\":21,\"name\":{\"22\":{}},\"comment\":{}}],[\"dialogclose\",{\"_index\":17,\"name\":{\"18\":{}},\"comment\":{}}],[\"dialogprops\",{\"_index\":19,\"name\":{\"20\":{}},\"comment\":{}}],[\"display_name\",{\"_index\":171,\"name\":{\"189\":{},\"199\":{},\"212\":{}},\"comment\":{}}],[\"displayname\",{\"_index\":4,\"name\":{\"5\":{},\"29\":{},\"38\":{},\"42\":{},\"46\":{},\"53\":{},\"62\":{},\"216\":{},\"222\":{},\"228\":{},\"240\":{},\"251\":{},\"256\":{},\"260\":{},\"264\":{},\"267\":{}},\"comment\":{}}],[\"editor\",{\"_index\":25,\"name\":{\"28\":{}},\"comment\":{}}],[\"editorhtml\",{\"_index\":31,\"name\":{\"36\":{},\"37\":{}},\"comment\":{}}],[\"editorhtmlprops\",{\"_index\":30,\"name\":{\"35\":{}},\"comment\":{}}],[\"editorprops\",{\"_index\":24,\"name\":{\"27\":{}},\"comment\":{}}],[\"getderivedstatefromprops\",{\"_index\":26,\"name\":{\"30\":{}},\"comment\":{}}],[\"headbg\",{\"_index\":37,\"name\":{\"48\":{}},\"comment\":{}}],[\"icon\",{\"_index\":33,\"name\":{\"40\":{},\"41\":{},\"204\":{}},\"comment\":{}}],[\"iconprops\",{\"_index\":32,\"name\":{\"39\":{}},\"comment\":{}}],[\"importance\",{\"_index\":177,\"name\":{\"205\":{}},\"comment\":{}}],[\"init\",{\"_index\":206,\"name\":{\"269\":{}},\"comment\":{}}],[\"lat\",{\"_index\":169,\"name\":{\"187\":{},\"197\":{},\"210\":{}},\"comment\":{}}],[\"leafletcomponent\",{\"_index\":48,\"name\":{\"63\":{}},\"comment\":{}}],[\"licence\",{\"_index\":172,\"name\":{\"190\":{},\"200\":{},\"213\":{}},\"comment\":{}}],[\"list\",{\"_index\":186,\"name\":{\"229\":{}},\"comment\":{}}],[\"loading\",{\"_index\":35,\"name\":{\"44\":{},\"45\":{},\"253\":{}},\"comment\":{}}],[\"loadingprops\",{\"_index\":34,\"name\":{\"43\":{}},\"comment\":{}}],[\"location\",{\"_index\":164,\"name\":{\"182\":{}},\"comment\":{}}],[\"lon\",{\"_index\":170,\"name\":{\"188\":{},\"198\":{},\"211\":{}},\"comment\":{}}],[\"mapevent\",{\"_index\":49,\"name\":{\"64\":{}},\"comment\":{}}],[\"mapref\",{\"_index\":162,\"name\":{\"180\":{}},\"comment\":{}}],[\"markermeta\",{\"_index\":50,\"name\":{\"65\":{}},\"comment\":{}}],[\"markers\",{\"_index\":57,\"name\":{\"73\":{}},\"comment\":{}}],[\"monthcalendar\",{\"_index\":41,\"name\":{\"52\":{}},\"comment\":{}}],[\"monthcalendarprops\",{\"_index\":36,\"name\":{\"47\":{}},\"comment\":{}}],[\"nameplate\",{\"_index\":47,\"name\":{\"60\":{},\"61\":{}},\"comment\":{}}],[\"nameplateprops\",{\"_index\":46,\"name\":{\"59\":{}},\"comment\":{}}],[\"onchange\",{\"_index\":39,\"name\":{\"50\":{},\"76\":{},\"242\":{}},\"comment\":{}}],[\"onitemclick\",{\"_index\":184,\"name\":{\"225\":{}},\"comment\":{}}],[\"onmarkeradd\",{\"_index\":129,\"name\":{\"147\":{}},\"comment\":{}}],[\"onmarkerautopanstart\",{\"_index\":126,\"name\":{\"144\":{}},\"comment\":{}}],[\"onmarkerbaselayerchange\",{\"_index\":111,\"name\":{\"129\":{}},\"comment\":{}}],[\"onmarkerclick\",{\"_index\":143,\"name\":{\"161\":{}},\"comment\":{}}],[\"onmarkercontextmenu\",{\"_index\":150,\"name\":{\"168\":{}},\"comment\":{}}],[\"onmarkerdblclick\",{\"_index\":144,\"name\":{\"162\":{}},\"comment\":{}}],[\"onmarkerdown\",{\"_index\":134,\"name\":{\"152\":{}},\"comment\":{}}],[\"onmarkerdrag\",{\"_index\":128,\"name\":{\"146\":{}},\"comment\":{}}],[\"onmarkerdragend\",{\"_index\":156,\"name\":{\"174\":{}},\"comment\":{}}],[\"onmarkerdragstart\",{\"_index\":127,\"name\":{\"145\":{}},\"comment\":{}}],[\"onmarkererror\",{\"_index\":132,\"name\":{\"150\":{}},\"comment\":{}}],[\"onmarkerkeydown\",{\"_index\":153,\"name\":{\"171\":{}},\"comment\":{}}],[\"onmarkerkeypress\",{\"_index\":152,\"name\":{\"170\":{}},\"comment\":{}}],[\"onmarkerkeyup\",{\"_index\":154,\"name\":{\"172\":{}},\"comment\":{}}],[\"onmarkerlayeradd\",{\"_index\":114,\"name\":{\"132\":{}},\"comment\":{}}],[\"onmarkerlayerremove\",{\"_index\":115,\"name\":{\"133\":{}},\"comment\":{}}],[\"onmarkerload\",{\"_index\":119,\"name\":{\"137\":{}},\"comment\":{}}],[\"onmarkerloading\",{\"_index\":131,\"name\":{\"149\":{}},\"comment\":{}}],[\"onmarkerlocationerror\",{\"_index\":141,\"name\":{\"159\":{}},\"comment\":{}}],[\"onmarkerlocationfound\",{\"_index\":142,\"name\":{\"160\":{}},\"comment\":{}}],[\"onmarkermousedown\",{\"_index\":145,\"name\":{\"163\":{}},\"comment\":{}}],[\"onmarkermousemove\",{\"_index\":149,\"name\":{\"167\":{}},\"comment\":{}}],[\"onmarkermouseout\",{\"_index\":148,\"name\":{\"166\":{}},\"comment\":{}}],[\"onmarkermouseover\",{\"_index\":147,\"name\":{\"165\":{}},\"comment\":{}}],[\"onmarkermouseup\",{\"_index\":146,\"name\":{\"164\":{}},\"comment\":{}}],[\"onmarkermove\",{\"_index\":123,\"name\":{\"141\":{}},\"comment\":{}}],[\"onmarkermoveend\",{\"_index\":125,\"name\":{\"143\":{}},\"comment\":{}}],[\"onmarkermovestart\",{\"_index\":121,\"name\":{\"139\":{}},\"comment\":{}}],[\"onmarkeroverlayadd\",{\"_index\":112,\"name\":{\"130\":{}},\"comment\":{}}],[\"onmarkeroverlayremove\",{\"_index\":113,\"name\":{\"131\":{}},\"comment\":{}}],[\"onmarkerpopupclose\",{\"_index\":138,\"name\":{\"156\":{}},\"comment\":{}}],[\"onmarkerpopupopen\",{\"_index\":137,\"name\":{\"155\":{}},\"comment\":{}}],[\"onmarkerpreclick\",{\"_index\":151,\"name\":{\"169\":{}},\"comment\":{}}],[\"onmarkerpredrag\",{\"_index\":135,\"name\":{\"153\":{}},\"comment\":{}}],[\"onmarkerremove\",{\"_index\":130,\"name\":{\"148\":{}},\"comment\":{}}],[\"onmarkerresize\",{\"_index\":136,\"name\":{\"154\":{}},\"comment\":{}}],[\"onmarkertileabort\",{\"_index\":160,\"name\":{\"178\":{}},\"comment\":{}}],[\"onmarkertileerror\",{\"_index\":161,\"name\":{\"179\":{}},\"comment\":{}}],[\"onmarkertileload\",{\"_index\":159,\"name\":{\"177\":{}},\"comment\":{}}],[\"onmarkertileloadstart\",{\"_index\":158,\"name\":{\"176\":{}},\"comment\":{}}],[\"onmarkertileunload\",{\"_index\":157,\"name\":{\"175\":{}},\"comment\":{}}],[\"onmarkertooltipclose\",{\"_index\":140,\"name\":{\"158\":{}},\"comment\":{}}],[\"onmarkertooltipopen\",{\"_index\":139,\"name\":{\"157\":{}},\"comment\":{}}],[\"onmarkerunload\",{\"_index\":117,\"name\":{\"135\":{}},\"comment\":{}}],[\"onmarkerupdate\",{\"_index\":133,\"name\":{\"151\":{}},\"comment\":{}}],[\"onmarkerviewreset\",{\"_index\":118,\"name\":{\"136\":{}},\"comment\":{}}],[\"onmarkerzoom\",{\"_index\":122,\"name\":{\"140\":{}},\"comment\":{}}],[\"onmarkerzoomanim\",{\"_index\":155,\"name\":{\"173\":{}},\"comment\":{}}],[\"onmarkerzoomend\",{\"_index\":124,\"name\":{\"142\":{}},\"comment\":{}}],[\"onmarkerzoomlevelschange\",{\"_index\":116,\"name\":{\"134\":{}},\"comment\":{}}],[\"onmarkerzoomstart\",{\"_index\":120,\"name\":{\"138\":{}},\"comment\":{}}],[\"ontilelayeradd\",{\"_index\":78,\"name\":{\"96\":{}},\"comment\":{}}],[\"ontilelayerautopanstart\",{\"_index\":75,\"name\":{\"93\":{}},\"comment\":{}}],[\"ontilelayerbaselayerchange\",{\"_index\":60,\"name\":{\"78\":{}},\"comment\":{}}],[\"ontilelayerclick\",{\"_index\":92,\"name\":{\"110\":{}},\"comment\":{}}],[\"ontilelayercontextmenu\",{\"_index\":99,\"name\":{\"117\":{}},\"comment\":{}}],[\"ontilelayerdblclick\",{\"_index\":93,\"name\":{\"111\":{}},\"comment\":{}}],[\"ontilelayerdown\",{\"_index\":83,\"name\":{\"101\":{}},\"comment\":{}}],[\"ontilelayerdrag\",{\"_index\":77,\"name\":{\"95\":{}},\"comment\":{}}],[\"ontilelayerdragend\",{\"_index\":105,\"name\":{\"123\":{}},\"comment\":{}}],[\"ontilelayerdragstart\",{\"_index\":76,\"name\":{\"94\":{}},\"comment\":{}}],[\"ontilelayererror\",{\"_index\":81,\"name\":{\"99\":{}},\"comment\":{}}],[\"ontilelayerkeydown\",{\"_index\":102,\"name\":{\"120\":{}},\"comment\":{}}],[\"ontilelayerkeypress\",{\"_index\":101,\"name\":{\"119\":{}},\"comment\":{}}],[\"ontilelayerkeyup\",{\"_index\":103,\"name\":{\"121\":{}},\"comment\":{}}],[\"ontilelayerlayeradd\",{\"_index\":63,\"name\":{\"81\":{}},\"comment\":{}}],[\"ontilelayerlayerremove\",{\"_index\":64,\"name\":{\"82\":{}},\"comment\":{}}],[\"ontilelayerload\",{\"_index\":68,\"name\":{\"86\":{}},\"comment\":{}}],[\"ontilelayerloading\",{\"_index\":80,\"name\":{\"98\":{}},\"comment\":{}}],[\"ontilelayerlocationerror\",{\"_index\":90,\"name\":{\"108\":{}},\"comment\":{}}],[\"ontilelayerlocationfound\",{\"_index\":91,\"name\":{\"109\":{}},\"comment\":{}}],[\"ontilelayermousedown\",{\"_index\":94,\"name\":{\"112\":{}},\"comment\":{}}],[\"ontilelayermousemove\",{\"_index\":98,\"name\":{\"116\":{}},\"comment\":{}}],[\"ontilelayermouseout\",{\"_index\":97,\"name\":{\"115\":{}},\"comment\":{}}],[\"ontilelayermouseover\",{\"_index\":96,\"name\":{\"114\":{}},\"comment\":{}}],[\"ontilelayermouseup\",{\"_index\":95,\"name\":{\"113\":{}},\"comment\":{}}],[\"ontilelayermove\",{\"_index\":72,\"name\":{\"90\":{}},\"comment\":{}}],[\"ontilelayermoveend\",{\"_index\":74,\"name\":{\"92\":{}},\"comment\":{}}],[\"ontilelayermovestart\",{\"_index\":70,\"name\":{\"88\":{}},\"comment\":{}}],[\"ontilelayeroverlayadd\",{\"_index\":61,\"name\":{\"79\":{}},\"comment\":{}}],[\"ontilelayeroverlayremove\",{\"_index\":62,\"name\":{\"80\":{}},\"comment\":{}}],[\"ontilelayerpopupclose\",{\"_index\":87,\"name\":{\"105\":{}},\"comment\":{}}],[\"ontilelayerpopupopen\",{\"_index\":86,\"name\":{\"104\":{}},\"comment\":{}}],[\"ontilelayerpreclick\",{\"_index\":100,\"name\":{\"118\":{}},\"comment\":{}}],[\"ontilelayerpredrag\",{\"_index\":84,\"name\":{\"102\":{}},\"comment\":{}}],[\"ontilelayerremove\",{\"_index\":79,\"name\":{\"97\":{}},\"comment\":{}}],[\"ontilelayerresize\",{\"_index\":85,\"name\":{\"103\":{}},\"comment\":{}}],[\"ontilelayertileabort\",{\"_index\":109,\"name\":{\"127\":{}},\"comment\":{}}],[\"ontilelayertileerror\",{\"_index\":110,\"name\":{\"128\":{}},\"comment\":{}}],[\"ontilelayertileload\",{\"_index\":108,\"name\":{\"126\":{}},\"comment\":{}}],[\"ontilelayertileloadstart\",{\"_index\":107,\"name\":{\"125\":{}},\"comment\":{}}],[\"ontilelayertileunload\",{\"_index\":106,\"name\":{\"124\":{}},\"comment\":{}}],[\"ontilelayertooltipclose\",{\"_index\":89,\"name\":{\"107\":{}},\"comment\":{}}],[\"ontilelayertooltipopen\",{\"_index\":88,\"name\":{\"106\":{}},\"comment\":{}}],[\"ontilelayerunload\",{\"_index\":66,\"name\":{\"84\":{}},\"comment\":{}}],[\"ontilelayerupdate\",{\"_index\":82,\"name\":{\"100\":{}},\"comment\":{}}],[\"ontilelayerviewreset\",{\"_index\":67,\"name\":{\"85\":{}},\"comment\":{}}],[\"ontilelayerzoom\",{\"_index\":71,\"name\":{\"89\":{}},\"comment\":{}}],[\"ontilelayerzoomanim\",{\"_index\":104,\"name\":{\"122\":{}},\"comment\":{}}],[\"ontilelayerzoomend\",{\"_index\":73,\"name\":{\"91\":{}},\"comment\":{}}],[\"ontilelayerzoomlevelschange\",{\"_index\":65,\"name\":{\"83\":{}},\"comment\":{}}],[\"ontilelayerzoomstart\",{\"_index\":69,\"name\":{\"87\":{}},\"comment\":{}}],[\"open\",{\"_index\":23,\"name\":{\"26\":{}},\"comment\":{}}],[\"openmap\",{\"_index\":178,\"name\":{\"214\":{},\"215\":{}},\"comment\":{}}],[\"openmapprops\",{\"_index\":53,\"name\":{\"68\":{}},\"comment\":{}}],[\"option\",{\"_index\":192,\"name\":{\"238\":{},\"239\":{}},\"comment\":{}}],[\"optionprops\",{\"_index\":191,\"name\":{\"237\":{}},\"comment\":{}}],[\"osm_id\",{\"_index\":166,\"name\":{\"184\":{},\"194\":{},\"207\":{}},\"comment\":{}}],[\"osm_type\",{\"_index\":167,\"name\":{\"185\":{},\"195\":{},\"208\":{}},\"comment\":{}}],[\"overlaybox\",{\"_index\":181,\"name\":{\"220\":{},\"221\":{}},\"comment\":{}}],[\"overlayboxprops\",{\"_index\":179,\"name\":{\"217\":{}},\"comment\":{}}],[\"pagenav\",{\"_index\":185,\"name\":{\"227\":{}},\"comment\":{}}],[\"pagenavprops\",{\"_index\":182,\"name\":{\"223\":{}},\"comment\":{}}],[\"parser\",{\"_index\":29,\"name\":{\"34\":{}},\"comment\":{}}],[\"place_id\",{\"_index\":165,\"name\":{\"183\":{},\"193\":{},\"206\":{}},\"comment\":{}}],[\"popup\",{\"_index\":52,\"name\":{\"67\":{}},\"comment\":{}}],[\"render\",{\"_index\":11,\"name\":{\"12\":{},\"33\":{},\"58\":{},\"236\":{},\"270\":{}},\"comment\":{}}],[\"renderdate\",{\"_index\":45,\"name\":{\"57\":{}},\"comment\":{}}],[\"renderlink\",{\"_index\":190,\"name\":{\"235\":{}},\"comment\":{}}],[\"rendertilelayer\",{\"_index\":56,\"name\":{\"71\":{}},\"comment\":{}}],[\"reverseitem\",{\"_index\":173,\"name\":{\"191\":{}},\"comment\":{}}],[\"root\",{\"_index\":7,\"name\":{\"8\":{}},\"comment\":{}}],[\"save\",{\"_index\":28,\"name\":{\"32\":{}},\"comment\":{}}],[\"scrolly\",{\"_index\":187,\"name\":{\"230\":{}},\"comment\":{}}],[\"searchitem\",{\"_index\":174,\"name\":{\"201\":{}},\"comment\":{}}],[\"select\",{\"_index\":197,\"name\":{\"249\":{},\"250\":{}},\"comment\":{}}],[\"selectprops\",{\"_index\":193,\"name\":{\"241\":{}},\"comment\":{}}],[\"size\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"spinnerbutton\",{\"_index\":199,\"name\":{\"254\":{},\"255\":{}},\"comment\":{}}],[\"spinnerbuttonprops\",{\"_index\":198,\"name\":{\"252\":{}},\"comment\":{}}],[\"state\",{\"_index\":27,\"name\":{\"31\":{},\"268\":{}},\"comment\":{}}],[\"style\",{\"_index\":196,\"name\":{\"247\":{}},\"comment\":{}}],[\"switchclick\",{\"_index\":8,\"name\":{\"9\":{}},\"comment\":{}}],[\"tablespinner\",{\"_index\":201,\"name\":{\"258\":{},\"259\":{}},\"comment\":{}}],[\"tablespinnerprops\",{\"_index\":200,\"name\":{\"257\":{}},\"comment\":{}}],[\"text2color\",{\"_index\":14,\"name\":{\"15\":{}},\"comment\":{}}],[\"tilelayerurl\",{\"_index\":54,\"name\":{\"69\":{}},\"comment\":{}}],[\"timedistance\",{\"_index\":203,\"name\":{\"262\":{},\"263\":{}},\"comment\":{}}],[\"timedistanceprops\",{\"_index\":202,\"name\":{\"261\":{}},\"comment\":{}}],[\"title\",{\"_index\":58,\"name\":{\"74\":{},\"218\":{}},\"comment\":{}}],[\"tooltip\",{\"_index\":51,\"name\":{\"66\":{}},\"comment\":{}}],[\"type\",{\"_index\":175,\"name\":{\"202\":{}},\"comment\":{}}],[\"typeecho\",{\"_index\":205,\"name\":{\"266\":{}},\"comment\":{}}],[\"typeechoprops\",{\"_index\":204,\"name\":{\"265\":{}},\"comment\":{}}],[\"updatescrolly\",{\"_index\":189,\"name\":{\"232\":{}},\"comment\":{}}],[\"value\",{\"_index\":38,\"name\":{\"49\":{},\"248\":{}},\"comment\":{}}],[\"valuerender\",{\"_index\":194,\"name\":{\"244\":{}},\"comment\":{}}],[\"variantcolor\",{\"_index\":15,\"name\":{\"16\":{}},\"comment\":{}}],[\"variantcolors\",{\"_index\":16,\"name\":{\"17\":{}},\"comment\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/assets/style.css b/assets/style.css new file mode 100644 index 0000000..18b4f8f --- /dev/null +++ b/assets/style.css @@ -0,0 +1,1367 @@ +:root { + /* Light */ + --light-color-background: #f2f4f8; + --light-color-background-secondary: #eff0f1; + --light-color-warning-text: #222; + --light-color-background-warning: #e6e600; + --light-color-icon-background: var(--light-color-background); + --light-color-accent: #c5c7c9; + --light-color-active-menu-item: var(--light-color-accent); + --light-color-text: #222; + --light-color-text-aside: #6e6e6e; + --light-color-link: #1f70c2; + + --light-color-ts-project: #b111c9; + --light-color-ts-module: var(--light-color-ts-project); + --light-color-ts-namespace: var(--light-color-ts-project); + --light-color-ts-enum: #7e6f15; + --light-color-ts-enum-member: var(--light-color-ts-enum); + --light-color-ts-variable: #4760ec; + --light-color-ts-function: #572be7; + --light-color-ts-class: #1f70c2; + --light-color-ts-interface: #108024; + --light-color-ts-constructor: var(--light-color-ts-class); + --light-color-ts-property: var(--light-color-ts-variable); + --light-color-ts-method: var(--light-color-ts-function); + --light-color-ts-call-signature: var(--light-color-ts-method); + --light-color-ts-index-signature: var(--light-color-ts-property); + --light-color-ts-constructor-signature: var(--light-color-ts-constructor); + --light-color-ts-parameter: var(--light-color-ts-variable); + /* type literal not included as links will never be generated to it */ + --light-color-ts-type-parameter: var(--light-color-ts-type-alias); + --light-color-ts-accessor: var(--light-color-ts-property); + --light-color-ts-get-signature: var(--light-color-ts-accessor); + --light-color-ts-set-signature: var(--light-color-ts-accessor); + /* object literal not included as it is not used and will be removed in 0.25 */ + --light-color-ts-type-alias: #d51270; + /* reference not included as links will be colored with the kind that it points to */ + + --light-external-icon: url("data:image/svg+xml;utf8,"); + --light-color-scheme: light; + + /* Dark */ + --dark-color-background: #2b2e33; + --dark-color-background-secondary: #1e2024; + --dark-color-background-warning: #bebe00; + --dark-color-warning-text: #222; + --dark-color-icon-background: var(--dark-color-background-secondary); + --dark-color-accent: #9096a2; + --dark-color-active-menu-item: #5d5d6a; + --dark-color-text: #f5f5f5; + --dark-color-text-aside: #dddddd; + --dark-color-link: #00aff4; + + --dark-color-ts-project: #e358ff; + --dark-color-ts-module: var(--dark-color-ts-project); + --dark-color-ts-namespace: var(--dark-color-ts-project); + --dark-color-ts-enum: #f4d93e; + --dark-color-ts-enum-member: var(--dark-color-ts-enum); + --dark-color-ts-variable: #798dff; + --dark-color-ts-function: #a280ff; + --dark-color-ts-class: #8ac4ff; + --dark-color-ts-interface: #6cff87; + --dark-color-ts-constructor: var(--dark-color-ts-class); + --dark-color-ts-property: var(--dark-color-ts-variable); + --dark-color-ts-method: var(--dark-color-ts-function); + --dark-color-ts-call-signature: var(--dark-color-ts-method); + --dark-color-ts-index-signature: var(--dark-color-ts-property); + --dark-color-ts-constructor-signature: var(--dark-color-ts-constructor); + --dark-color-ts-parameter: var(--dark-color-ts-variable); + /* type literal not included as links will never be generated to it */ + --dark-color-ts-type-parameter: var(--dark-color-ts-type-alias); + --dark-color-ts-accessor: var(--dark-color-ts-property); + --dark-color-ts-get-signature: var(--dark-color-ts-accessor); + --dark-color-ts-set-signature: var(--dark-color-ts-accessor); + /* object literal not included as it is not used and will be removed in 0.25 */ + --dark-color-ts-type-alias: #ff6492; + /* reference not included as links will be colored with the kind that it points to */ + + --dark-external-icon: url("data:image/svg+xml;utf8,"); + --dark-color-scheme: dark; +} + +@media (prefers-color-scheme: light) { + :root { + --color-background: var(--light-color-background); + --color-background-secondary: var(--light-color-background-secondary); + --color-background-warning: var(--light-color-background-warning); + --color-warning-text: var(--light-color-warning-text); + --color-icon-background: var(--light-color-icon-background); + --color-accent: var(--light-color-accent); + --color-active-menu-item: var(--light-color-active-menu-item); + --color-text: var(--light-color-text); + --color-text-aside: var(--light-color-text-aside); + --color-link: var(--light-color-link); + + --color-ts-module: var(--light-color-ts-module); + --color-ts-namespace: var(--light-color-ts-namespace); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-enum-member: var(--light-color-ts-enum-member); + --color-ts-variable: var(--light-color-ts-variable); + --color-ts-function: var(--light-color-ts-function); + --color-ts-class: var(--light-color-ts-class); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-constructor: var(--light-color-ts-constructor); + --color-ts-property: var(--light-color-ts-property); + --color-ts-method: var(--light-color-ts-method); + --color-ts-call-signature: var(--light-color-ts-call-signature); + --color-ts-index-signature: var(--light-color-ts-index-signature); + --color-ts-constructor-signature: var( + --light-color-ts-constructor-signature + ); + --color-ts-parameter: var(--light-color-ts-parameter); + --color-ts-type-parameter: var(--light-color-ts-type-parameter); + --color-ts-accessor: var(--light-color-ts-accessor); + --color-ts-get-signature: var(--light-color-ts-get-signature); + --color-ts-set-signature: var(--light-color-ts-set-signature); + --color-ts-type-alias: var(--light-color-ts-type-alias); + + --external-icon: var(--light-external-icon); + --color-scheme: var(--light-color-scheme); + } +} + +@media (prefers-color-scheme: dark) { + :root { + --color-background: var(--dark-color-background); + --color-background-secondary: var(--dark-color-background-secondary); + --color-background-warning: var(--dark-color-background-warning); + --color-warning-text: var(--dark-color-warning-text); + --color-icon-background: var(--dark-color-icon-background); + --color-accent: var(--dark-color-accent); + --color-active-menu-item: var(--dark-color-active-menu-item); + --color-text: var(--dark-color-text); + --color-text-aside: var(--dark-color-text-aside); + --color-link: var(--dark-color-link); + + --color-ts-module: var(--dark-color-ts-module); + --color-ts-namespace: var(--dark-color-ts-namespace); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-enum-member: var(--dark-color-ts-enum-member); + --color-ts-variable: var(--dark-color-ts-variable); + --color-ts-function: var(--dark-color-ts-function); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-constructor: var(--dark-color-ts-constructor); + --color-ts-property: var(--dark-color-ts-property); + --color-ts-method: var(--dark-color-ts-method); + --color-ts-call-signature: var(--dark-color-ts-call-signature); + --color-ts-index-signature: var(--dark-color-ts-index-signature); + --color-ts-constructor-signature: var( + --dark-color-ts-constructor-signature + ); + --color-ts-parameter: var(--dark-color-ts-parameter); + --color-ts-type-parameter: var(--dark-color-ts-type-parameter); + --color-ts-accessor: var(--dark-color-ts-accessor); + --color-ts-get-signature: var(--dark-color-ts-get-signature); + --color-ts-set-signature: var(--dark-color-ts-set-signature); + --color-ts-type-alias: var(--dark-color-ts-type-alias); + + --external-icon: var(--dark-external-icon); + --color-scheme: var(--dark-color-scheme); + } +} + +html { + color-scheme: var(--color-scheme); +} + +body { + margin: 0; +} + +:root[data-theme="light"] { + --color-background: var(--light-color-background); + --color-background-secondary: var(--light-color-background-secondary); + --color-background-warning: var(--light-color-background-warning); + --color-warning-text: var(--light-color-warning-text); + --color-icon-background: var(--light-color-icon-background); + --color-accent: var(--light-color-accent); + --color-active-menu-item: var(--light-color-active-menu-item); + --color-text: var(--light-color-text); + --color-text-aside: var(--light-color-text-aside); + --color-link: var(--light-color-link); + + --color-ts-module: var(--light-color-ts-module); + --color-ts-namespace: var(--light-color-ts-namespace); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-enum-member: var(--light-color-ts-enum-member); + --color-ts-variable: var(--light-color-ts-variable); + --color-ts-function: var(--light-color-ts-function); + --color-ts-class: var(--light-color-ts-class); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-constructor: var(--light-color-ts-constructor); + --color-ts-property: var(--light-color-ts-property); + --color-ts-method: var(--light-color-ts-method); + --color-ts-call-signature: var(--light-color-ts-call-signature); + --color-ts-index-signature: var(--light-color-ts-index-signature); + --color-ts-constructor-signature: var( + --light-color-ts-constructor-signature + ); + --color-ts-parameter: var(--light-color-ts-parameter); + --color-ts-type-parameter: var(--light-color-ts-type-parameter); + --color-ts-accessor: var(--light-color-ts-accessor); + --color-ts-get-signature: var(--light-color-ts-get-signature); + --color-ts-set-signature: var(--light-color-ts-set-signature); + --color-ts-type-alias: var(--light-color-ts-type-alias); + + --external-icon: var(--light-external-icon); + --color-scheme: var(--light-color-scheme); +} + +:root[data-theme="dark"] { + --color-background: var(--dark-color-background); + --color-background-secondary: var(--dark-color-background-secondary); + --color-background-warning: var(--dark-color-background-warning); + --color-warning-text: var(--dark-color-warning-text); + --color-icon-background: var(--dark-color-icon-background); + --color-accent: var(--dark-color-accent); + --color-active-menu-item: var(--dark-color-active-menu-item); + --color-text: var(--dark-color-text); + --color-text-aside: var(--dark-color-text-aside); + --color-link: var(--dark-color-link); + + --color-ts-module: var(--dark-color-ts-module); + --color-ts-namespace: var(--dark-color-ts-namespace); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-enum-member: var(--dark-color-ts-enum-member); + --color-ts-variable: var(--dark-color-ts-variable); + --color-ts-function: var(--dark-color-ts-function); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-constructor: var(--dark-color-ts-constructor); + --color-ts-property: var(--dark-color-ts-property); + --color-ts-method: var(--dark-color-ts-method); + --color-ts-call-signature: var(--dark-color-ts-call-signature); + --color-ts-index-signature: var(--dark-color-ts-index-signature); + --color-ts-constructor-signature: var( + --dark-color-ts-constructor-signature + ); + --color-ts-parameter: var(--dark-color-ts-parameter); + --color-ts-type-parameter: var(--dark-color-ts-type-parameter); + --color-ts-accessor: var(--dark-color-ts-accessor); + --color-ts-get-signature: var(--dark-color-ts-get-signature); + --color-ts-set-signature: var(--dark-color-ts-set-signature); + --color-ts-type-alias: var(--dark-color-ts-type-alias); + + --external-icon: var(--dark-external-icon); + --color-scheme: var(--dark-color-scheme); +} + +.always-visible, +.always-visible .tsd-signatures { + display: inherit !important; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + line-height: 1.2; +} + +h1 > a, +h2 > a, +h3 > a, +h4 > a, +h5 > a, +h6 > a { + text-decoration: none; + color: var(--color-text); +} + +h1 { + font-size: 1.875rem; + margin: 0.67rem 0; +} + +h2 { + font-size: 1.5rem; + margin: 0.83rem 0; +} + +h3 { + font-size: 1.25rem; + margin: 1rem 0; +} + +h4 { + font-size: 1.05rem; + margin: 1.33rem 0; +} + +h5 { + font-size: 1rem; + margin: 1.5rem 0; +} + +h6 { + font-size: 0.875rem; + margin: 2.33rem 0; +} + +.uppercase { + text-transform: uppercase; +} + +dl, +menu, +ol, +ul { + margin: 1em 0; +} + +dd { + margin: 0 0 0 40px; +} + +.container { + max-width: 1700px; + padding: 0 2rem; +} + +/* Footer */ +.tsd-generator { + border-top: 1px solid var(--color-accent); + padding-top: 1rem; + padding-bottom: 1rem; + max-height: 3.5rem; +} + +.tsd-generator > p { + margin-top: 0; + margin-bottom: 0; + padding: 0 1rem; +} + +.container-main { + margin: 0 auto; + /* toolbar, footer, margin */ + min-height: calc(100vh - 41px - 56px - 4rem); +} + +@keyframes fade-in { + from { + opacity: 0; + } + to { + opacity: 1; + } +} +@keyframes fade-out { + from { + opacity: 1; + visibility: visible; + } + to { + opacity: 0; + } +} +@keyframes fade-in-delayed { + 0% { + opacity: 0; + } + 33% { + opacity: 0; + } + 100% { + opacity: 1; + } +} +@keyframes fade-out-delayed { + 0% { + opacity: 1; + visibility: visible; + } + 66% { + opacity: 0; + } + 100% { + opacity: 0; + } +} +@keyframes pop-in-from-right { + from { + transform: translate(100%, 0); + } + to { + transform: translate(0, 0); + } +} +@keyframes pop-out-to-right { + from { + transform: translate(0, 0); + visibility: visible; + } + to { + transform: translate(100%, 0); + } +} +body { + background: var(--color-background); + font-family: "Segoe UI", sans-serif; + font-size: 16px; + color: var(--color-text); +} + +a { + color: var(--color-link); + text-decoration: none; +} +a:hover { + text-decoration: underline; +} +a.external[target="_blank"] { + background-image: var(--external-icon); + background-position: top 3px right; + background-repeat: no-repeat; + padding-right: 13px; +} + +code, +pre { + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + padding: 0.2em; + margin: 0; + font-size: 0.875rem; + border-radius: 0.8em; +} + +pre { + position: relative; + white-space: pre; + white-space: pre-wrap; + word-wrap: break-word; + padding: 10px; + border: 1px solid var(--color-accent); +} +pre code { + padding: 0; + font-size: 100%; +} +pre > button { + position: absolute; + top: 10px; + right: 10px; + opacity: 0; + transition: opacity 0.1s; + box-sizing: border-box; +} +pre:hover > button, +pre > button.visible { + opacity: 1; +} + +blockquote { + margin: 1em 0; + padding-left: 1em; + border-left: 4px solid gray; +} + +.tsd-typography { + line-height: 1.333em; +} +.tsd-typography ul { + list-style: square; + padding: 0 0 0 20px; + margin: 0; +} +.tsd-typography h4, +.tsd-typography .tsd-index-panel h3, +.tsd-index-panel .tsd-typography h3, +.tsd-typography h5, +.tsd-typography h6 { + font-size: 1em; + margin: 0; +} +.tsd-typography h5, +.tsd-typography h6 { + font-weight: normal; +} +.tsd-typography p, +.tsd-typography ul, +.tsd-typography ol { + margin: 1em 0; +} + +.tsd-breadcrumb { + margin: 0; + padding: 0; + color: var(--color-text-aside); +} +.tsd-breadcrumb a { + color: var(--color-text-aside); + text-decoration: none; +} +.tsd-breadcrumb a:hover { + text-decoration: underline; +} +.tsd-breadcrumb li { + display: inline; +} +.tsd-breadcrumb li:after { + content: " / "; +} + +.tsd-comment-tags { + display: flex; + flex-direction: column; +} +dl.tsd-comment-tag-group { + display: flex; + align-items: center; + overflow: hidden; + margin: 0.5em 0; +} +dl.tsd-comment-tag-group dt { + display: flex; + margin-right: 0.5em; + font-size: 0.875em; + font-weight: normal; +} +dl.tsd-comment-tag-group dd { + margin: 0; +} +code.tsd-tag { + padding: 0.25em 0.4em; + border: 0.1em solid var(--color-accent); + margin-right: 0.25em; + font-size: 70%; +} +h1 code.tsd-tag:first-of-type { + margin-left: 0.25em; +} + +dl.tsd-comment-tag-group dd:before, +dl.tsd-comment-tag-group dd:after { + content: " "; +} +dl.tsd-comment-tag-group dd pre, +dl.tsd-comment-tag-group dd:after { + clear: both; +} +dl.tsd-comment-tag-group p { + margin: 0; +} + +.tsd-panel.tsd-comment .lead { + font-size: 1.1em; + line-height: 1.333em; + margin-bottom: 2em; +} +.tsd-panel.tsd-comment .lead:last-child { + margin-bottom: 0; +} + +.tsd-filter-visibility h4 { + font-size: 1rem; + padding-top: 0.75rem; + padding-bottom: 0.5rem; + margin: 0; +} +.tsd-filter-item:not(:last-child) { + margin-bottom: 0.5rem; +} +.tsd-filter-input { + display: flex; + width: fit-content; + width: -moz-fit-content; + align-items: center; + user-select: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + cursor: pointer; +} +.tsd-filter-input input[type="checkbox"] { + cursor: pointer; + position: absolute; + width: 1.5em; + height: 1.5em; + opacity: 0; +} +.tsd-filter-input input[type="checkbox"]:disabled { + pointer-events: none; +} +.tsd-filter-input svg { + cursor: pointer; + width: 1.5em; + height: 1.5em; + margin-right: 0.5em; + border-radius: 0.33em; + /* Leaving this at full opacity breaks event listeners on Firefox. + Don't remove unless you know what you're doing. */ + opacity: 0.99; +} +.tsd-filter-input input[type="checkbox"]:focus + svg { + transform: scale(0.95); +} +.tsd-filter-input input[type="checkbox"]:focus:not(:focus-visible) + svg { + transform: scale(1); +} +.tsd-checkbox-background { + fill: var(--color-accent); +} +input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark { + stroke: var(--color-text); +} +.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background { + fill: var(--color-background); + stroke: var(--color-accent); + stroke-width: 0.25rem; +} +.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark { + stroke: var(--color-accent); +} + +.tsd-theme-toggle { + padding-top: 0.75rem; +} +.tsd-theme-toggle > h4 { + display: inline; + vertical-align: middle; + margin-right: 0.75rem; +} + +.tsd-hierarchy { + list-style: square; + margin: 0; +} +.tsd-hierarchy .target { + font-weight: bold; +} + +.tsd-panel-group.tsd-index-group { + margin-bottom: 0; +} +.tsd-index-panel .tsd-index-list { + list-style: none; + line-height: 1.333em; + margin: 0; + padding: 0.25rem 0 0 0; + overflow: hidden; + display: grid; + grid-template-columns: repeat(3, 1fr); + column-gap: 1rem; + grid-template-rows: auto; +} +@media (max-width: 1024px) { + .tsd-index-panel .tsd-index-list { + grid-template-columns: repeat(2, 1fr); + } +} +@media (max-width: 768px) { + .tsd-index-panel .tsd-index-list { + grid-template-columns: repeat(1, 1fr); + } +} +.tsd-index-panel .tsd-index-list li { + -webkit-page-break-inside: avoid; + -moz-page-break-inside: avoid; + -ms-page-break-inside: avoid; + -o-page-break-inside: avoid; + page-break-inside: avoid; +} + +.tsd-flag { + display: inline-block; + padding: 0.25em 0.4em; + border-radius: 4px; + color: var(--color-comment-tag-text); + background-color: var(--color-comment-tag); + text-indent: 0; + font-size: 75%; + line-height: 1; + font-weight: normal; +} + +.tsd-anchor { + position: relative; + top: -100px; +} + +.tsd-member { + position: relative; +} +.tsd-member .tsd-anchor + h3 { + display: flex; + align-items: center; + margin-top: 0; + margin-bottom: 0; + border-bottom: none; +} + +.tsd-navigation.settings { + margin: 1rem 0; +} +.tsd-navigation > a, +.tsd-navigation .tsd-accordion-summary { + width: calc(100% - 0.5rem); +} +.tsd-navigation a, +.tsd-navigation summary > span, +.tsd-page-navigation a { + display: inline-flex; + align-items: center; + padding: 0.25rem; + color: var(--color-text); + text-decoration: none; + box-sizing: border-box; +} +.tsd-navigation a.current, +.tsd-page-navigation a.current { + background: var(--color-active-menu-item); +} +.tsd-navigation a:hover, +.tsd-page-navigation a:hover { + text-decoration: underline; +} +.tsd-navigation ul, +.tsd-page-navigation ul { + margin-top: 0; + margin-bottom: 0; + padding: 0; + list-style: none; +} +.tsd-navigation li, +.tsd-page-navigation li { + padding: 0; + max-width: 100%; +} +.tsd-nested-navigation { + margin-left: 3rem; +} +.tsd-nested-navigation > li > details { + margin-left: -1.5rem; +} +.tsd-small-nested-navigation { + margin-left: 1.5rem; +} +.tsd-small-nested-navigation > li > details { + margin-left: -1.5rem; +} + +.tsd-nested-navigation > li > a, +.tsd-nested-navigation > li > span { + width: calc(100% - 1.75rem - 0.5rem); +} + +.tsd-page-navigation ul { + padding-left: 1.75rem; +} + +#tsd-sidebar-links a { + margin-top: 0; + margin-bottom: 0.5rem; + line-height: 1.25rem; +} +#tsd-sidebar-links a:last-of-type { + margin-bottom: 0; +} + +a.tsd-index-link { + padding: 0.25rem 0 !important; + font-size: 1rem; + line-height: 1.25rem; + display: inline-flex; + align-items: center; + color: var(--color-text); +} +.tsd-accordion-summary { + list-style-type: none; /* hide marker on non-safari */ + outline: none; /* broken on safari, so just hide it */ +} +.tsd-accordion-summary::-webkit-details-marker { + display: none; /* hide marker on safari */ +} +.tsd-accordion-summary, +.tsd-accordion-summary a { + user-select: none; + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + + cursor: pointer; +} +.tsd-accordion-summary a { + width: calc(100% - 1.5rem); +} +.tsd-accordion-summary > * { + margin-top: 0; + margin-bottom: 0; + padding-top: 0; + padding-bottom: 0; +} +.tsd-index-accordion .tsd-accordion-summary > svg { + margin-left: 0.25rem; +} +.tsd-index-content > :not(:first-child) { + margin-top: 0.75rem; +} +.tsd-index-heading { + margin-top: 1.5rem; + margin-bottom: 0.75rem; +} + +.tsd-kind-icon { + margin-right: 0.5rem; + width: 1.25rem; + height: 1.25rem; + min-width: 1.25rem; + min-height: 1.25rem; +} +.tsd-kind-icon path { + transform-origin: center; + transform: scale(1.1); +} +.tsd-signature > .tsd-kind-icon { + margin-right: 0.8rem; +} + +.tsd-panel { + margin-bottom: 2.5rem; +} +.tsd-panel.tsd-member { + margin-bottom: 4rem; +} +.tsd-panel:empty { + display: none; +} +.tsd-panel > h1, +.tsd-panel > h2, +.tsd-panel > h3 { + margin: 1.5rem -1.5rem 0.75rem -1.5rem; + padding: 0 1.5rem 0.75rem 1.5rem; +} +.tsd-panel > h1.tsd-before-signature, +.tsd-panel > h2.tsd-before-signature, +.tsd-panel > h3.tsd-before-signature { + margin-bottom: 0; + border-bottom: none; +} + +.tsd-panel-group { + margin: 4rem 0; +} +.tsd-panel-group.tsd-index-group { + margin: 2rem 0; +} +.tsd-panel-group.tsd-index-group details { + margin: 2rem 0; +} + +#tsd-search { + transition: background-color 0.2s; +} +#tsd-search .title { + position: relative; + z-index: 2; +} +#tsd-search .field { + position: absolute; + left: 0; + top: 0; + right: 2.5rem; + height: 100%; +} +#tsd-search .field input { + box-sizing: border-box; + position: relative; + top: -50px; + z-index: 1; + width: 100%; + padding: 0 10px; + opacity: 0; + outline: 0; + border: 0; + background: transparent; + color: var(--color-text); +} +#tsd-search .field label { + position: absolute; + overflow: hidden; + right: -40px; +} +#tsd-search .field input, +#tsd-search .title, +#tsd-toolbar-links a { + transition: opacity 0.2s; +} +#tsd-search .results { + position: absolute; + visibility: hidden; + top: 40px; + width: 100%; + margin: 0; + padding: 0; + list-style: none; + box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); +} +#tsd-search .results li { + padding: 0 10px; + background-color: var(--color-background); +} +#tsd-search .results li:nth-child(even) { + background-color: var(--color-background-secondary); +} +#tsd-search .results li.state { + display: none; +} +#tsd-search .results li.current, +#tsd-search .results li:hover { + background-color: var(--color-accent); +} +#tsd-search .results a { + display: block; +} +#tsd-search .results a:before { + top: 10px; +} +#tsd-search .results span.parent { + color: var(--color-text-aside); + font-weight: normal; +} +#tsd-search.has-focus { + background-color: var(--color-accent); +} +#tsd-search.has-focus .field input { + top: 0; + opacity: 1; +} +#tsd-search.has-focus .title, +#tsd-search.has-focus #tsd-toolbar-links a { + z-index: 0; + opacity: 0; +} +#tsd-search.has-focus .results { + visibility: visible; +} +#tsd-search.loading .results li.state.loading { + display: block; +} +#tsd-search.failure .results li.state.failure { + display: block; +} + +#tsd-toolbar-links { + position: absolute; + top: 0; + right: 2rem; + height: 100%; + display: flex; + align-items: center; + justify-content: flex-end; +} +#tsd-toolbar-links a { + margin-left: 1.5rem; +} +#tsd-toolbar-links a:hover { + text-decoration: underline; +} + +.tsd-signature { + margin: 0 0 1rem 0; + padding: 1rem 0.5rem; + border: 1px solid var(--color-accent); + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + font-size: 14px; + overflow-x: auto; +} + +.tsd-signature-symbol { + color: var(--color-text-aside); + font-weight: normal; +} + +.tsd-signature-type { + font-style: italic; + font-weight: normal; +} + +.tsd-signatures { + padding: 0; + margin: 0 0 1em 0; + list-style-type: none; +} +.tsd-signatures .tsd-signature { + margin: 0; + border-color: var(--color-accent); + border-width: 1px 0; + transition: background-color 0.1s; +} +.tsd-description .tsd-signatures .tsd-signature { + border-width: 1px; +} + +ul.tsd-parameter-list, +ul.tsd-type-parameter-list { + list-style: square; + margin: 0; + padding-left: 20px; +} +ul.tsd-parameter-list > li.tsd-parameter-signature, +ul.tsd-type-parameter-list > li.tsd-parameter-signature { + list-style: none; + margin-left: -20px; +} +ul.tsd-parameter-list h5, +ul.tsd-type-parameter-list h5 { + font-size: 16px; + margin: 1em 0 0.5em 0; +} +.tsd-sources { + margin-top: 1rem; + font-size: 0.875em; +} +.tsd-sources a { + color: var(--color-text-aside); + text-decoration: underline; +} +.tsd-sources ul { + list-style: none; + padding: 0; +} + +.tsd-page-toolbar { + position: sticky; + z-index: 1; + top: 0; + left: 0; + width: 100%; + color: var(--color-text); + background: var(--color-background-secondary); + border-bottom: 1px var(--color-accent) solid; + transition: transform 0.3s ease-in-out; +} +.tsd-page-toolbar a { + color: var(--color-text); + text-decoration: none; +} +.tsd-page-toolbar a.title { + font-weight: bold; +} +.tsd-page-toolbar a.title:hover { + text-decoration: underline; +} +.tsd-page-toolbar .tsd-toolbar-contents { + display: flex; + justify-content: space-between; + height: 2.5rem; + margin: 0 auto; +} +.tsd-page-toolbar .table-cell { + position: relative; + white-space: nowrap; + line-height: 40px; +} +.tsd-page-toolbar .table-cell:first-child { + width: 100%; +} +.tsd-page-toolbar .tsd-toolbar-icon { + box-sizing: border-box; + line-height: 0; + padding: 12px 0; +} + +.tsd-widget { + display: inline-block; + overflow: hidden; + opacity: 0.8; + height: 40px; + transition: opacity 0.1s, background-color 0.2s; + vertical-align: bottom; + cursor: pointer; +} +.tsd-widget:hover { + opacity: 0.9; +} +.tsd-widget.active { + opacity: 1; + background-color: var(--color-accent); +} +.tsd-widget.no-caption { + width: 40px; +} +.tsd-widget.no-caption:before { + margin: 0; +} + +.tsd-widget.options, +.tsd-widget.menu { + display: none; +} +input[type="checkbox"] + .tsd-widget:before { + background-position: -120px 0; +} +input[type="checkbox"]:checked + .tsd-widget:before { + background-position: -160px 0; +} + +img { + max-width: 100%; +} + +.tsd-anchor-icon { + display: inline-flex; + align-items: center; + margin-left: 0.5rem; + vertical-align: middle; + color: var(--color-text); +} + +.tsd-anchor-icon svg { + width: 1em; + height: 1em; + visibility: hidden; +} + +.tsd-anchor-link:hover > .tsd-anchor-icon svg { + visibility: visible; +} + +.deprecated { + text-decoration: line-through; +} + +.warning { + padding: 1rem; + color: var(--color-warning-text); + background: var(--color-background-warning); +} + +.tsd-kind-project { + color: var(--color-ts-project); +} +.tsd-kind-module { + color: var(--color-ts-module); +} +.tsd-kind-namespace { + color: var(--color-ts-namespace); +} +.tsd-kind-enum { + color: var(--color-ts-enum); +} +.tsd-kind-enum-member { + color: var(--color-ts-enum-member); +} +.tsd-kind-variable { + color: var(--color-ts-variable); +} +.tsd-kind-function { + color: var(--color-ts-function); +} +.tsd-kind-class { + color: var(--color-ts-class); +} +.tsd-kind-interface { + color: var(--color-ts-interface); +} +.tsd-kind-constructor { + color: var(--color-ts-constructor); +} +.tsd-kind-property { + color: var(--color-ts-property); +} +.tsd-kind-method { + color: var(--color-ts-method); +} +.tsd-kind-call-signature { + color: var(--color-ts-call-signature); +} +.tsd-kind-index-signature { + color: var(--color-ts-index-signature); +} +.tsd-kind-constructor-signature { + color: var(--color-ts-constructor-signature); +} +.tsd-kind-parameter { + color: var(--color-ts-parameter); +} +.tsd-kind-type-literal { + color: var(--color-ts-type-literal); +} +.tsd-kind-type-parameter { + color: var(--color-ts-type-parameter); +} +.tsd-kind-accessor { + color: var(--color-ts-accessor); +} +.tsd-kind-get-signature { + color: var(--color-ts-get-signature); +} +.tsd-kind-set-signature { + color: var(--color-ts-set-signature); +} +.tsd-kind-type-alias { + color: var(--color-ts-type-alias); +} + +/* if we have a kind icon, don't color the text by kind */ +.tsd-kind-icon ~ span { + color: var(--color-text); +} + +* { + scrollbar-width: thin; + scrollbar-color: var(--color-accent) var(--color-icon-background); +} + +*::-webkit-scrollbar { + width: 0.75rem; +} + +*::-webkit-scrollbar-track { + background: var(--color-icon-background); +} + +*::-webkit-scrollbar-thumb { + background-color: var(--color-accent); + border-radius: 999rem; + border: 0.25rem solid var(--color-icon-background); +} + +/* mobile */ +@media (max-width: 769px) { + .tsd-widget.options, + .tsd-widget.menu { + display: inline-block; + } + + .container-main { + display: flex; + } + html .col-content { + float: none; + max-width: 100%; + width: 100%; + } + html .col-sidebar { + position: fixed !important; + overflow-y: auto; + -webkit-overflow-scrolling: touch; + z-index: 1024; + top: 0 !important; + bottom: 0 !important; + left: auto !important; + right: 0 !important; + padding: 1.5rem 1.5rem 0 0; + width: 75vw; + visibility: hidden; + background-color: var(--color-background); + transform: translate(100%, 0); + } + html .col-sidebar > *:last-child { + padding-bottom: 20px; + } + html .overlay { + content: ""; + display: block; + position: fixed; + z-index: 1023; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-color: rgba(0, 0, 0, 0.75); + visibility: hidden; + } + + .to-has-menu .overlay { + animation: fade-in 0.4s; + } + + .to-has-menu .col-sidebar { + animation: pop-in-from-right 0.4s; + } + + .from-has-menu .overlay { + animation: fade-out 0.4s; + } + + .from-has-menu .col-sidebar { + animation: pop-out-to-right 0.4s; + } + + .has-menu body { + overflow: hidden; + } + .has-menu .overlay { + visibility: visible; + } + .has-menu .col-sidebar { + visibility: visible; + transform: translate(0, 0); + display: flex; + flex-direction: column; + gap: 1.5rem; + max-height: 100vh; + padding: 1rem 2rem; + } + .has-menu .tsd-navigation { + max-height: 100%; + } +} + +/* one sidebar */ +@media (min-width: 770px) { + .container-main { + display: grid; + grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); + grid-template-areas: "sidebar content"; + margin: 2rem auto; + } + + .col-sidebar { + grid-area: sidebar; + } + .col-content { + grid-area: content; + padding: 0 1rem; + } +} +@media (min-width: 770px) and (max-width: 1399px) { + .col-sidebar { + max-height: calc(100vh - 2rem - 42px); + overflow: auto; + position: sticky; + top: 42px; + padding-top: 1rem; + } + .site-menu { + margin-top: 1rem; + } +} + +/* two sidebars */ +@media (min-width: 1200px) { + .container-main { + grid-template-columns: minmax(0, 1fr) minmax(0, 2.5fr) minmax(0, 20rem); + grid-template-areas: "sidebar content toc"; + } + + .col-sidebar { + display: contents; + } + + .page-menu { + grid-area: toc; + padding-left: 1rem; + } + .site-menu { + grid-area: sidebar; + } + + .site-menu { + margin-top: 1rem 0; + } + + .page-menu, + .site-menu { + max-height: calc(100vh - 2rem - 42px); + overflow: auto; + position: sticky; + top: 42px; + } +} diff --git a/classes/ClickBoundary.html b/classes/ClickBoundary.html new file mode 100644 index 0000000..9cb6b9d --- /dev/null +++ b/classes/ClickBoundary.html @@ -0,0 +1,219 @@ +ClickBoundary | Idea React
+
+ +
+
+
+
+ +

Class ClickBoundary

+
+

Hierarchy

+
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Methods

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
root: RefObject<HTMLDivElement> = ...
+
+

Methods

+
+ +
+
+ +
+
+ +
+
+ +
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/classes/Dialog.html b/classes/Dialog.html new file mode 100644 index 0000000..2a2e01d --- /dev/null +++ b/classes/Dialog.html @@ -0,0 +1,178 @@ +Dialog | Idea React
+
+ +
+
+
+
+ +

Class Dialog<T>

+
+

Type Parameters

+
    +
  • +

    T = any

+
+

Hierarchy

+
    +
  • Dialog
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Methods

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
Component: FC
+
+ +
defer?: Defer<T>
+
+

Methods

+
+ +
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/classes/DialogClose.html b/classes/DialogClose.html new file mode 100644 index 0000000..70a78ec --- /dev/null +++ b/classes/DialogClose.html @@ -0,0 +1,137 @@ +DialogClose | Idea React
+
+ +
+
+
+
+ +

Class DialogClose

+
+

Hierarchy

+
+
+
+
+ +
+
+

Constructors

+
+
+

Constructors

+
+ +
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/classes/Editor.html b/classes/Editor.html new file mode 100644 index 0000000..3cb49fc --- /dev/null +++ b/classes/Editor.html @@ -0,0 +1,231 @@ +Editor | Idea React
+
+ +
+
+
+
+ +

Class Editor

+
+

Hierarchy

+
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Methods

+
+
+

Constructors

+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      props: {
          defaultValue: string;
          name: string;
          tools: Record<string, ComponentClass<{}, any>>;
      } | Readonly<{
          defaultValue: string;
          name: string;
          tools: Record<string, ComponentClass<{}, any>>;
      }>
    +

    Returns Editor

  • + +
  • +
    +

    Parameters

    +
      +
    • +
      props: {
          defaultValue: string;
          name: string;
          tools: Record<string, ComponentClass<{}, any>>;
      }
      +
        +
      • +
        defaultValue: string
      • +
      • +
        name: string
      • +
      • +
        tools: Record<string, ComponentClass<{}, any>>
    • +
    • +
      context: any
    +

    Returns Editor

    +
+
+

Properties

+
+ +
state: Readonly<State> = ...
+
+ +
displayName: string = 'Editor'
+
+

Methods

+
+ +
    + +
  • +

    Returns Element

+
+ +
+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      __namedParameters: {
          defaultValue: string;
          name: string;
          tools: Record<string, ComponentClass<{}, any>>;
      }
      +
        +
      • +
        defaultValue: string
      • +
      • +
        name: string
      • +
      • +
        tools: Record<string, ComponentClass<{}, any>>
    • +
    • +
      __namedParameters: State
    +

    Returns State

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/classes/MonthCalendar.html b/classes/MonthCalendar.html new file mode 100644 index 0000000..e274cd8 --- /dev/null +++ b/classes/MonthCalendar.html @@ -0,0 +1,238 @@ +MonthCalendar | Idea React
+
+ +
+
+
+
+ +

Class MonthCalendar

+
+ +
+
+

Hierarchy

+
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Accessors

+
+
+

Methods

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
currentDate: Date = ...
+
+ +
displayName: string = 'MonthCalendar'
+
+

Accessors

+
+ +
+
+

Methods

+
+ +
+
+ +
+
+ +
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/classes/PageNav.html b/classes/PageNav.html new file mode 100644 index 0000000..7ed895a --- /dev/null +++ b/classes/PageNav.html @@ -0,0 +1,258 @@ +PageNav | Idea React
+
+ +
+
+
+
+ +

Class PageNav

+
+

Hierarchy

+
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Accessors

+
+
+

Methods

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
list: HeadingMeta[] = []
+
+ +
scrollY: number = 0
+
+ +
displayName: string = 'PageNav'
+
+

Accessors

+
+ +
+
+

Methods

+
+ +
    + +
  • +

    Returns void

+
+ +
    + +
  • +

    Returns void

+
+ +
    + +
  • +

    Returns Element

+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      __namedParameters: HeadingMeta
    +

    Returns Element

+
+ +
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/classes/TypeEcho.html b/classes/TypeEcho.html new file mode 100644 index 0000000..1090800 --- /dev/null +++ b/classes/TypeEcho.html @@ -0,0 +1,204 @@ +TypeEcho | Idea React
+
+ +
+
+
+
+ +

Class TypeEcho

+
+

Hierarchy

+
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Methods

+
+
+

Constructors

+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      props: {
          className?: string;
          intervals?: number;
          text: string;
      } | Readonly<{
          className?: string;
          intervals?: number;
          text: string;
      }>
    +

    Returns TypeEcho

  • + +
  • +
    +

    Parameters

    +
      +
    • +
      props: {
          className?: string;
          intervals?: number;
          text: string;
      }
      +
        +
      • +
        Optional className?: string
      • +
      • +
        Optional intervals?: number
      • +
      • +
        text: string
    • +
    • +
      context: any
    +

    Returns TypeEcho

    +
+
+

Properties

+
+ +
init: RefCallback<HTMLPreElement> = ...
+
+ +
state: Readonly<State> = ...
+
+ +
displayName: string = 'TypeEcho'
+
+

Methods

+
+ +
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/functions/Avatar-1.html b/functions/Avatar-1.html new file mode 100644 index 0000000..aaf420d --- /dev/null +++ b/functions/Avatar-1.html @@ -0,0 +1,113 @@ +Avatar | Idea React
+
+ +
+
+
+
+ +

Function Avatar

+
+
    + +
  • +
    +

    Parameters

    +
      +
    • +
      props: PropsWithChildren<AvatarProps>
    • +
    • +
      Optional context: any
    +

    Returns ReactElement<any, any>

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/functions/CodeBlock.html b/functions/CodeBlock.html new file mode 100644 index 0000000..0db5440 --- /dev/null +++ b/functions/CodeBlock.html @@ -0,0 +1,111 @@ +CodeBlock | Idea React
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/functions/EditorHTML-1.html b/functions/EditorHTML-1.html new file mode 100644 index 0000000..801c3d5 --- /dev/null +++ b/functions/EditorHTML-1.html @@ -0,0 +1,113 @@ +EditorHTML | Idea React
+
+ +
+
+
+
+ +

Function EditorHTML

+
+
    + +
  • +
    +

    Parameters

    +
      +
    • +
      props: PropsWithChildren<{
          className?: string;
          data: string;
      }>
    • +
    • +
      Optional context: any
    +

    Returns ReactElement<any, any>

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/functions/Icon-1.html b/functions/Icon-1.html new file mode 100644 index 0000000..cff9e93 --- /dev/null +++ b/functions/Icon-1.html @@ -0,0 +1,113 @@ +Icon | Idea React
+
+ +
+
+
+
+ +

Function Icon

+
+
    + +
  • +
    +

    Parameters

    +
      +
    • +
      props: PropsWithChildren<HTMLAttributes<HTMLSpanElement> & {
          name: string;
          size?: number;
      }>
    • +
    • +
      Optional context: any
    +

    Returns ReactElement<any, any>

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/functions/Loading-1.html b/functions/Loading-1.html new file mode 100644 index 0000000..661afc1 --- /dev/null +++ b/functions/Loading-1.html @@ -0,0 +1,114 @@ +Loading | Idea React
+
+ +
+
+
+
+ +

Function Loading

+
+
    + +
  • +
    +

    Parameters

    +
      +
    • +
      props: {}
      +
      • +
      • +
        Optional context: any
      +

      Returns ReactElement<any, any>

    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/functions/Nameplate-1.html b/functions/Nameplate-1.html new file mode 100644 index 0000000..b3c345d --- /dev/null +++ b/functions/Nameplate-1.html @@ -0,0 +1,113 @@ +Nameplate | Idea React
    +
    + +
    +
    +
    +
    + +

    Function Nameplate

    +
    +
      + +
    • +
      +

      Parameters

      +
        +
      • +
        props: PropsWithChildren<{
            avatar: string;
            name: string;
        }>
      • +
      • +
        Optional context: any
      +

      Returns ReactElement<any, any>

    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/functions/OpenMap-1.html b/functions/OpenMap-1.html new file mode 100644 index 0000000..f0da350 --- /dev/null +++ b/functions/OpenMap-1.html @@ -0,0 +1,113 @@ +OpenMap | Idea React
    +
    + +
    +
    +
    +
    + +

    Function OpenMap

    +
    +
      + +
    • +
      +

      Parameters

      +
        +
      • +
        props: PropsWithChildren<OpenMapProps>
      • +
      • +
        Optional context: any
      +

      Returns ReactElement<any, any>

    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/functions/Option-1.html b/functions/Option-1.html new file mode 100644 index 0000000..b520789 --- /dev/null +++ b/functions/Option-1.html @@ -0,0 +1,113 @@ +Option | Idea React
    +
    + +
    +
    +
    +
    + +

    Function Option

    +
    +
      + +
    • +
      +

      Parameters

      +
        +
      • +
        props: PropsWithChildren<OptionProps>
      • +
      • +
        Optional context: any
      +

      Returns ReactElement<any, any>

    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/functions/OverlayBox-1.html b/functions/OverlayBox-1.html new file mode 100644 index 0000000..cb24827 --- /dev/null +++ b/functions/OverlayBox-1.html @@ -0,0 +1,116 @@ +OverlayBox | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/functions/Select-1.html b/functions/Select-1.html new file mode 100644 index 0000000..55c7313 --- /dev/null +++ b/functions/Select-1.html @@ -0,0 +1,113 @@ +Select | Idea React
    +
    + +
    +
    +
    +
    + +

    Function Select

    +
    +
      + +
    • +
      +

      Parameters

      +
        +
      • +
        props: PropsWithChildren<SelectProps>
      • +
      • +
        Optional context: any
      +

      Returns ReactElement<any, any>

    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/functions/SpinnerButton-1.html b/functions/SpinnerButton-1.html new file mode 100644 index 0000000..1eedf3e --- /dev/null +++ b/functions/SpinnerButton-1.html @@ -0,0 +1,113 @@ +SpinnerButton | Idea React
    +
    + +
    +
    +
    +
    + +

    Function SpinnerButton

    +
    +
      + +
    • +
      +

      Parameters

      +
      +

      Returns ReactElement<any, any>

    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/functions/TableSpinner-1.html b/functions/TableSpinner-1.html new file mode 100644 index 0000000..510591f --- /dev/null +++ b/functions/TableSpinner-1.html @@ -0,0 +1,113 @@ +TableSpinner | Idea React
    +
    + +
    +
    +
    +
    + +

    Function TableSpinner

    +
    +
      + +
    • +
      +

      Parameters

      +
        +
      • +
        props: PropsWithChildren<{
            colSpan: number;
        }>
      • +
      • +
        Optional context: any
      +

      Returns ReactElement<any, any>

    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/functions/TimeDistance-1.html b/functions/TimeDistance-1.html new file mode 100644 index 0000000..7eada5d --- /dev/null +++ b/functions/TimeDistance-1.html @@ -0,0 +1,113 @@ +TimeDistance | Idea React
    +
    + +
    +
    +
    +
    + +

    Function TimeDistance

    +
    +
      + +
    • +
      +

      Parameters

      +
        +
      • +
        props: PropsWithChildren<{
            afterWord?: string;
            beforeWord?: string;
            className?: string;
            date: TimeData;
            unitWords?: Record<string, string>;
        }>
      • +
      • +
        Optional context: any
      +

      Returns ReactElement<any, any>

    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/functions/animate.html b/functions/animate.html new file mode 100644 index 0000000..a660da0 --- /dev/null +++ b/functions/animate.html @@ -0,0 +1,111 @@ +animate | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/functions/text2color.html b/functions/text2color.html new file mode 100644 index 0000000..8ebddeb --- /dev/null +++ b/functions/text2color.html @@ -0,0 +1,113 @@ +text2color | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..ad90acf --- /dev/null +++ b/index.html @@ -0,0 +1,193 @@ +Idea React
    +
    + +
    +
    +
    +
    +

    Idea React

    +

    Idea React

    A React advanced components library based on TypeScript & Bootstrap, built by idea2app remote developers team.

    +

    NPM Dependency +CI & CD

    +

    NPM

    + +

    Content

    Components

      +
    1. Time Distance
    2. +
    3. Icon
    4. +
    5. Avatar
    6. +
    7. Nameplate
    8. +
    9. Type Echo
    10. +
    11. Click Boundary
    12. +
    13. Spinner Button
    14. +
    15. Select
    16. +
    17. Month Calendar
    18. +
    19. Code Block
    20. +
    21. Page Nav
    22. +
    23. Editor
    24. +
    25. Editor HTML
    26. +
    27. Open Map
    28. +
    29. Table Spinner
    30. +
    31. Loading
    32. +
    33. Overlay Box
    34. +
    35. Dialog
    36. +
    +

    Data components

    Table, List & Form components around Data models, have been migrated to https://github.com/idea2app/MobX-RESTful-table, since Idea-React v1.0.0.

    +

    Utilities

      +
    1. text2color
    2. +
    3. animate()
    4. +
    +

    Usage

    Scaffolds

      +
    1. MobX: demo & usage
    2. +
    3. Next.js: demo & usage
    4. +
    +

    CSS on CDN

    <link
    rel="stylesheet"
    href="https://unpkg.com/bootstrap@5.3.1/dist/css/bootstrap.min.css"
    />
    <link
    rel="stylesheet"
    href="https://unpkg.com/bootstrap-icons@1.10.5/font/bootstrap-icons.css"
    />
    <link
    rel="stylesheet"
    href="https://unpkg.com/animate.css@4.1.1/animate.min.css"
    />
    <link
    rel="stylesheet"
    href="https://unpkg.com/prismjs@1.29.0/themes/prism.min.css"
    />
    <link
    rel="stylesheet"
    href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
    /> +
    +

    Dialog

    import { formToJSON } from 'web-utility';
    import { PureComponent } from 'react';
    import { Button, Form, Modal } from 'react-bootstrap';
    import { Dialog, DialogClose } from 'idea-react';

    export class ExamplePage extends PureComponent {
    inputDialog = new Dialog<Record<'a' | 'b', number>>(({ defer }) => (
    <Modal show={!!defer} onHide={() => defer?.reject(new DialogClose())}>
    <Modal.Header>Dialog</Modal.Header>
    <Modal.Body>
    <Form
    id="input-dialog"
    onSubmit={event => {
    event.preventDefault();

    defer?.resolve(formToJSON(event.currentTarget));
    }}
    onReset={() => defer?.reject(new DialogClose())}
    >
    <Form.Group>
    <Form.Label>A</Form.Label>
    <Form.Control type="number" name="a" />
    </Form.Group>
    <Form.Group>
    <Form.Label>B</Form.Label>
    <Form.Control type="number" name="b" />
    </Form.Group>
    </Form>
    </Modal.Body>
    <Modal.Footer className="d-flex justify-content-end gap-3">
    <Button form="input-dialog" type="submit">
    √
    </Button>
    <Button form="input-dialog" type="reset" variant="danger">
    ×
    </Button>
    </Modal.Footer>
    </Modal>
    ));

    someLogic = async () => {
    try {
    const data = await this.inputDialog.open();

    alert(JSON.stringify(data, null, 4));
    } catch (error) {
    if (error instanceof DialogClose) console.warn(error.message);
    }
    };

    render() {
    return (
    <>
    <Button onClick={this.someLogic}>open Dialog</Button>

    <this.inputDialog.Component />
    </>
    );
    }
    } +
    +

    Open Map

    Common example

    China map in China Open-source Map project

    +
    import { FC } from 'react';
    import { OpenMap, OpenMapProps } from 'idea-react';

    export const ChinaMap: FC<OpenMapProps> = props => (
    <OpenMap center={[34.32, 108.55]} zoom={4} {...props} />
    ); +
    +

    Use in Next.js

    import ChinaMap from '../../components/ChinaMap';

    export default function ExampleMap() {
    return (
    typeof window !== 'undefined' && (
    <ChinaMap
    markers={[
    {
    position: [34.32, 108.55],
    tooltip: 'Geo Center of China'
    }
    ]}
    onMarkerClick={console.log}
    />
    )
    );
    } +
    +

    Development

    Publish

      +
    1. update version in package.json file

      +
    2. +
    3. add Git tag

      +
    4. +
    +
    git tag vx.xx.x  # such as v0.23.0
    +
    +
      +
    1. review tag
    2. +
    +
    git tag
    +
    +
      +
    1. publish code with tag version
    2. +
    +
    git push origin master --tags  # push all branches and tags on master
    +
    +
    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/interfaces/AvatarProps.html b/interfaces/AvatarProps.html new file mode 100644 index 0000000..8a890f8 --- /dev/null +++ b/interfaces/AvatarProps.html @@ -0,0 +1,128 @@ +AvatarProps | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/interfaces/DialogProps.html b/interfaces/DialogProps.html new file mode 100644 index 0000000..5151bf1 --- /dev/null +++ b/interfaces/DialogProps.html @@ -0,0 +1,131 @@ +DialogProps | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/interfaces/Location.html b/interfaces/Location.html new file mode 100644 index 0000000..3ecefb3 --- /dev/null +++ b/interfaces/Location.html @@ -0,0 +1,178 @@ +Location | Idea React
    +
    + +
    +
    +
    +
    + +

    Interface Location

    +
    +

    Hierarchy

    +
    +
    +
    +
    + +
    +
    +

    Properties

    +
    + +
    boundingbox: [`${number}.${number}`, `${number}.${number}`, `${number}.${number}`, `${number}.${number}`]
    +
    + +
    display_name: string
    +
    + +
    lat: `${number}.${number}`
    +
    + +
    licence: string
    +
    + +
    lon: `${number}.${number}`
    +
    + +
    osm_id: number
    +
    + +
    osm_type: "relation"
    +
    + +
    place_id: number
    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/interfaces/MarkerMeta.html b/interfaces/MarkerMeta.html new file mode 100644 index 0000000..6e20f27 --- /dev/null +++ b/interfaces/MarkerMeta.html @@ -0,0 +1,135 @@ +MarkerMeta | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/interfaces/MonthCalendarProps.html b/interfaces/MonthCalendarProps.html new file mode 100644 index 0000000..c636838 --- /dev/null +++ b/interfaces/MonthCalendarProps.html @@ -0,0 +1,155 @@ +MonthCalendarProps | Idea React
    +
    + +
    +
    +
    +
    + +

    Interface MonthCalendarProps

    +
    +

    Hierarchy

    +
      +
    • Omit<TableProps, "onChange"> +
        +
      • MonthCalendarProps
    +
    +
    +
    + +
    +
    +

    Properties

    +
    +
    +

    Properties

    +
    + +
    headBg?: Color
    +
    + +
    onChange?: ((value) => any)
    +
    +

    Type declaration

    +
      +
    • +
        +
      • (value): any
      • +
      • +
        +

        Parameters

        +
          +
        • +
          value: DateData
        +

        Returns any

    +
    + +
    value?: DateData[]
    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/interfaces/OpenMapProps.html b/interfaces/OpenMapProps.html new file mode 100644 index 0000000..e434802 --- /dev/null +++ b/interfaces/OpenMapProps.html @@ -0,0 +1,819 @@ +OpenMapProps | Idea React
    +
    + +
    +
    +
    +
    + +

    Interface OpenMapProps

    +
    +

    Hierarchy

    +
      +
    • Pick<MapContainerProps, "className" | "style" | "center" | "zoom">
    • +
    • MapEvent<"TileLayer">
    • +
    • MapEvent<"Marker">
    • +
    • Partial<MapExposerProps> +
        +
      • OpenMapProps
    +
    +
    +
    + +
    +
    +

    Properties

    +
    address? +attribution? +mapRef? +markers? +onChange? +onMarkerAdd +onMarkerAutopanstart +onMarkerBaselayerChange +onMarkerClick +onMarkerContextmenu +onMarkerDblClick +onMarkerDown +onMarkerDrag +onMarkerDragEnd +onMarkerDragStart +onMarkerError +onMarkerKeydown +onMarkerKeypress +onMarkerKeyup +onMarkerLayeradd +onMarkerLayerremove +onMarkerLoad +onMarkerLoading +onMarkerLocationError +onMarkerLocationfound +onMarkerMouseDown +onMarkerMouseMove +onMarkerMouseOut +onMarkerMouseOver +onMarkerMouseUp +onMarkerMove +onMarkerMoveend +onMarkerMovestart +onMarkerOverlayadd +onMarkerOverlayremove +onMarkerPopupClose +onMarkerPopupopen +onMarkerPreClick +onMarkerPreDrag +onMarkerRemove +onMarkerResize +onMarkerTileAbort +onMarkerTileError +onMarkerTileLoad +onMarkerTileLoadstart +onMarkerTileunLoad +onMarkerTooltipClose +onMarkerTooltipopen +onMarkerUnLoad +onMarkerUpdate +onMarkerViewReset +onMarkerZoom +onMarkerZoomanim +onMarkerZoomend +onMarkerZoomlevelsChange +onMarkerZoomstart +onTileLayerAdd +onTileLayerAutopanstart +onTileLayerBaselayerChange +onTileLayerClick +onTileLayerContextmenu +onTileLayerDblClick +onTileLayerDown +onTileLayerDrag +onTileLayerDragEnd +onTileLayerDragStart +onTileLayerError +onTileLayerKeydown +onTileLayerKeypress +onTileLayerKeyup +onTileLayerLayeradd +onTileLayerLayerremove +onTileLayerLoad +onTileLayerLoading +onTileLayerLocationError +onTileLayerLocationfound +onTileLayerMouseDown +onTileLayerMouseMove +onTileLayerMouseOut +onTileLayerMouseOver +onTileLayerMouseUp +onTileLayerMove +onTileLayerMoveend +onTileLayerMovestart +onTileLayerOverlayadd +onTileLayerOverlayremove +onTileLayerPopupClose +onTileLayerPopupopen +onTileLayerPreClick +onTileLayerPreDrag +onTileLayerRemove +onTileLayerResize +onTileLayerTileAbort +onTileLayerTileError +onTileLayerTileLoad +onTileLayerTileLoadstart +onTileLayerTileunLoad +onTileLayerTooltipClose +onTileLayerTooltipopen +onTileLayerUnLoad +onTileLayerUpdate +onTileLayerViewReset +onTileLayerZoom +onTileLayerZoomanim +onTileLayerZoomend +onTileLayerZoomlevelsChange +onTileLayerZoomstart +renderTileLayer? +tileLayerURL? +title? +
    +
    +

    Properties

    +
    + +
    address?: string
    +
    + +
    attribution?: ReactNode
    +
    + +
    mapRef?: RefCallback<Map>
    +
    + +
    markers?: MarkerMeta[]
    +
    + +
    onChange?: ((data) => any)
    +
    +

    Type declaration

    +
    +
    + +
    onMarkerAdd: LeafletEventHandlerFn
    +
    + +
    onMarkerAutopanstart: LeafletEventHandlerFn
    +
    + +
    onMarkerBaselayerChange: LayersControlEventHandlerFn
    +
    + +
    onMarkerClick: LeafletMouseEventHandlerFn
    +
    + +
    onMarkerContextmenu: LeafletMouseEventHandlerFn
    +
    + +
    onMarkerDblClick: LeafletMouseEventHandlerFn
    +
    + +
    onMarkerDown: LeafletEventHandlerFn
    +
    + +
    onMarkerDrag: LeafletEventHandlerFn
    +
    + +
    onMarkerDragEnd: DragEndEventHandlerFn
    +
    + +
    onMarkerDragStart: LeafletEventHandlerFn
    +
    + +
    onMarkerError: LeafletEventHandlerFn
    +
    + +
    onMarkerKeydown: LeafletKeyboardEventHandlerFn
    +
    + +
    onMarkerKeypress: LeafletKeyboardEventHandlerFn
    +
    + +
    onMarkerKeyup: LeafletKeyboardEventHandlerFn
    +
    + +
    onMarkerLayeradd: LayerEventHandlerFn
    +
    + +
    onMarkerLayerremove: LayerEventHandlerFn
    +
    + +
    onMarkerLoad: LeafletEventHandlerFn
    +
    + +
    onMarkerLoading: LeafletEventHandlerFn
    +
    + +
    onMarkerLocationError: ErrorEventHandlerFn
    +
    + +
    onMarkerLocationfound: LocationEventHandlerFn
    +
    + +
    onMarkerMouseDown: LeafletMouseEventHandlerFn
    +
    + +
    onMarkerMouseMove: LeafletMouseEventHandlerFn
    +
    + +
    onMarkerMouseOut: LeafletMouseEventHandlerFn
    +
    + +
    onMarkerMouseOver: LeafletMouseEventHandlerFn
    +
    + +
    onMarkerMouseUp: LeafletMouseEventHandlerFn
    +
    + +
    onMarkerMove: LeafletEventHandlerFn
    +
    + +
    onMarkerMoveend: LeafletEventHandlerFn
    +
    + +
    onMarkerMovestart: LeafletEventHandlerFn
    +
    + +
    onMarkerOverlayadd: LayersControlEventHandlerFn
    +
    + +
    onMarkerOverlayremove: LayersControlEventHandlerFn
    +
    + +
    onMarkerPopupClose: PopupEventHandlerFn
    +
    + +
    onMarkerPopupopen: PopupEventHandlerFn
    +
    + +
    onMarkerPreClick: LeafletMouseEventHandlerFn
    +
    + +
    onMarkerPreDrag: LeafletEventHandlerFn
    +
    + +
    onMarkerRemove: LeafletEventHandlerFn
    +
    + +
    onMarkerResize: ResizeEventHandlerFn
    +
    + +
    onMarkerTileAbort: TileEventHandlerFn
    +
    + +
    onMarkerTileError: TileErrorEventHandlerFn
    +
    + +
    onMarkerTileLoad: TileEventHandlerFn
    +
    + +
    onMarkerTileLoadstart: TileEventHandlerFn
    +
    + +
    onMarkerTileunLoad: TileEventHandlerFn
    +
    + +
    onMarkerTooltipClose: TooltipEventHandlerFn
    +
    + +
    onMarkerTooltipopen: TooltipEventHandlerFn
    +
    + +
    onMarkerUnLoad: LeafletEventHandlerFn
    +
    + +
    onMarkerUpdate: LeafletEventHandlerFn
    +
    + +
    onMarkerViewReset: LeafletEventHandlerFn
    +
    + +
    onMarkerZoom: LeafletEventHandlerFn
    +
    + +
    onMarkerZoomanim: ZoomAnimEventHandlerFn
    +
    + +
    onMarkerZoomend: LeafletEventHandlerFn
    +
    + +
    onMarkerZoomlevelsChange: LeafletEventHandlerFn
    +
    + +
    onMarkerZoomstart: LeafletEventHandlerFn
    +
    + +
    onTileLayerAdd: LeafletEventHandlerFn
    +
    + +
    onTileLayerAutopanstart: LeafletEventHandlerFn
    +
    + +
    onTileLayerBaselayerChange: LayersControlEventHandlerFn
    +
    + +
    onTileLayerClick: LeafletMouseEventHandlerFn
    +
    + +
    onTileLayerContextmenu: LeafletMouseEventHandlerFn
    +
    + +
    onTileLayerDblClick: LeafletMouseEventHandlerFn
    +
    + +
    onTileLayerDown: LeafletEventHandlerFn
    +
    + +
    onTileLayerDrag: LeafletEventHandlerFn
    +
    + +
    onTileLayerDragEnd: DragEndEventHandlerFn
    +
    + +
    onTileLayerDragStart: LeafletEventHandlerFn
    +
    + +
    onTileLayerError: LeafletEventHandlerFn
    +
    + +
    onTileLayerKeydown: LeafletKeyboardEventHandlerFn
    +
    + +
    onTileLayerKeypress: LeafletKeyboardEventHandlerFn
    +
    + +
    onTileLayerKeyup: LeafletKeyboardEventHandlerFn
    +
    + +
    onTileLayerLayeradd: LayerEventHandlerFn
    +
    + +
    onTileLayerLayerremove: LayerEventHandlerFn
    +
    + +
    onTileLayerLoad: LeafletEventHandlerFn
    +
    + +
    onTileLayerLoading: LeafletEventHandlerFn
    +
    + +
    onTileLayerLocationError: ErrorEventHandlerFn
    +
    + +
    onTileLayerLocationfound: LocationEventHandlerFn
    +
    + +
    onTileLayerMouseDown: LeafletMouseEventHandlerFn
    +
    + +
    onTileLayerMouseMove: LeafletMouseEventHandlerFn
    +
    + +
    onTileLayerMouseOut: LeafletMouseEventHandlerFn
    +
    + +
    onTileLayerMouseOver: LeafletMouseEventHandlerFn
    +
    + +
    onTileLayerMouseUp: LeafletMouseEventHandlerFn
    +
    + +
    onTileLayerMove: LeafletEventHandlerFn
    +
    + +
    onTileLayerMoveend: LeafletEventHandlerFn
    +
    + +
    onTileLayerMovestart: LeafletEventHandlerFn
    +
    + +
    onTileLayerOverlayadd: LayersControlEventHandlerFn
    +
    + +
    onTileLayerOverlayremove: LayersControlEventHandlerFn
    +
    + +
    onTileLayerPopupClose: PopupEventHandlerFn
    +
    + +
    onTileLayerPopupopen: PopupEventHandlerFn
    +
    + +
    onTileLayerPreClick: LeafletMouseEventHandlerFn
    +
    + +
    onTileLayerPreDrag: LeafletEventHandlerFn
    +
    + +
    onTileLayerRemove: LeafletEventHandlerFn
    +
    + +
    onTileLayerResize: ResizeEventHandlerFn
    +
    + +
    onTileLayerTileAbort: TileEventHandlerFn
    +
    + +
    onTileLayerTileError: TileErrorEventHandlerFn
    +
    + +
    onTileLayerTileLoad: TileEventHandlerFn
    +
    + +
    onTileLayerTileLoadstart: TileEventHandlerFn
    +
    + +
    onTileLayerTileunLoad: TileEventHandlerFn
    +
    + +
    onTileLayerTooltipClose: TooltipEventHandlerFn
    +
    + +
    onTileLayerTooltipopen: TooltipEventHandlerFn
    +
    + +
    onTileLayerUnLoad: LeafletEventHandlerFn
    +
    + +
    onTileLayerUpdate: LeafletEventHandlerFn
    +
    + +
    onTileLayerViewReset: LeafletEventHandlerFn
    +
    + +
    onTileLayerZoom: LeafletEventHandlerFn
    +
    + +
    onTileLayerZoomanim: ZoomAnimEventHandlerFn
    +
    + +
    onTileLayerZoomend: LeafletEventHandlerFn
    +
    + +
    onTileLayerZoomlevelsChange: LeafletEventHandlerFn
    +
    + +
    onTileLayerZoomstart: LeafletEventHandlerFn
    +
    + +
    renderTileLayer?: ((eventHandlers) => ReactNode)
    +
    +

    Type declaration

    +
      +
    • +
        +
      • (eventHandlers): ReactNode
      • +
      • +
        +

        Parameters

        +
          +
        • +
          eventHandlers: LeafletEventHandlerFnMap
        +

        Returns ReactNode

    +
    + +
    tileLayerURL?: string
    +
    + +
    title?: string
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/interfaces/OverlayBoxProps.html b/interfaces/OverlayBoxProps.html new file mode 100644 index 0000000..9818e1f --- /dev/null +++ b/interfaces/OverlayBoxProps.html @@ -0,0 +1,135 @@ +OverlayBoxProps | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/interfaces/PageNavProps.html b/interfaces/PageNavProps.html new file mode 100644 index 0000000..75a8519 --- /dev/null +++ b/interfaces/PageNavProps.html @@ -0,0 +1,148 @@ +PageNavProps | Idea React
    +
    + +
    +
    +
    +
    + +

    Interface PageNavProps

    +
    +

    Hierarchy

    +
      +
    • NavProps +
        +
      • PageNavProps
    +
    +
    +
    + +
    +
    +

    Properties

    +
    +
    +

    Properties

    +
    + +
    depth?: number
    +
    + +
    onItemClick?: ((item) => any)
    +
    +

    Type declaration

    +
      +
    • +
        +
      • (item): any
      • +
      • +
        +

        Parameters

        +
          +
        • +
          item: HeadingMeta
        +

        Returns any

    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/interfaces/ReverseItem.html b/interfaces/ReverseItem.html new file mode 100644 index 0000000..ec20409 --- /dev/null +++ b/interfaces/ReverseItem.html @@ -0,0 +1,192 @@ +ReverseItem | Idea React
    +
    + +
    +
    +
    +
    + +

    Interface ReverseItem

    +
    +

    Hierarchy

    +
    +
    +
    +
    + +
    +
    +

    Properties

    +
    + +
    address: Record<"ISO3166-2-lvl4" | "country_code" | "country", string> & Partial<Record<"state" | "state_district" | "town" | "village" | "road" | "neighbourhood" | "building" | "house_number" | "amenity" | "postcode", string>>
    +
    + +
    boundingbox: [`${number}.${number}`, `${number}.${number}`, `${number}.${number}`, `${number}.${number}`]
    +
    + +
    display_name: string
    +
    + +
    lat: `${number}.${number}`
    +
    + +
    licence: string
    +
    + +
    lon: `${number}.${number}`
    +
    + +
    osm_id: number
    +
    + +
    osm_type: "relation"
    +
    + +
    place_id: number
    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/interfaces/SearchItem.html b/interfaces/SearchItem.html new file mode 100644 index 0000000..7eb8f2a --- /dev/null +++ b/interfaces/SearchItem.html @@ -0,0 +1,213 @@ +SearchItem | Idea React
    +
    + +
    +
    +
    +
    + +

    Interface SearchItem

    +
    +

    Hierarchy

    +
    +
    +
    +
    + +
    +
    +

    Properties

    +
    + +
    boundingbox: [`${number}.${number}`, `${number}.${number}`, `${number}.${number}`, `${number}.${number}`]
    +
    + +
    class: "boundary"
    +
    + +
    display_name: string
    +
    + +
    icon: number
    +
    + +
    importance: number
    +
    + +
    lat: `${number}.${number}`
    +
    + +
    licence: string
    +
    + +
    lon: `${number}.${number}`
    +
    + +
    osm_id: number
    +
    + +
    osm_type: "relation"
    +
    + +
    place_id: number
    +
    + +
    type: "administrative"
    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/interfaces/SelectProps.html b/interfaces/SelectProps.html new file mode 100644 index 0000000..f22a2dc --- /dev/null +++ b/interfaces/SelectProps.html @@ -0,0 +1,186 @@ +SelectProps | Idea React
    +
    + +
    +
    +
    +
    + +

    Interface SelectProps

    +
    +

    Hierarchy

    +
      +
    • OptionProps
    • +
    • Pick<DropdownButtonProps, "variant" | "menuVariant"> +
        +
      • SelectProps
    +
    +
    +
    + +
    +
    +

    Properties

    +
    + +
    className?: string
    +
    + +
    onChange?: ((value) => any)
    +
    +

    Type declaration

    +
      +
    • +
        +
      • (value): any
      • +
      • +
        +

        Parameters

        +
          +
        • +
          value: string
        +

        Returns any

    +
    + +
    style?: CSSProperties
    +
    + +
    value?: string
    +
    + +
    valueRender?: ((value) => ReactNode)
    +
    +

    Type declaration

    +
      +
    • +
        +
      • (value): ReactNode
      • +
      • +
        +

        Parameters

        +
          +
        • +
          value: string
        +

        Returns ReactNode

    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/interfaces/SpinnerButtonProps.html b/interfaces/SpinnerButtonProps.html new file mode 100644 index 0000000..26fcfb3 --- /dev/null +++ b/interfaces/SpinnerButtonProps.html @@ -0,0 +1,129 @@ +SpinnerButtonProps | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/modules.html b/modules.html new file mode 100644 index 0000000..2420197 --- /dev/null +++ b/modules.html @@ -0,0 +1,180 @@ +Idea React
    +
    + +
    +
    + +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/modules/Avatar.html b/modules/Avatar.html new file mode 100644 index 0000000..0fb5f3e --- /dev/null +++ b/modules/Avatar.html @@ -0,0 +1,113 @@ +Avatar | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/modules/EditorHTML.html b/modules/EditorHTML.html new file mode 100644 index 0000000..7b84b29 --- /dev/null +++ b/modules/EditorHTML.html @@ -0,0 +1,113 @@ +EditorHTML | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/modules/Icon.html b/modules/Icon.html new file mode 100644 index 0000000..3e48c57 --- /dev/null +++ b/modules/Icon.html @@ -0,0 +1,113 @@ +Icon | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/modules/Loading.html b/modules/Loading.html new file mode 100644 index 0000000..14e3f45 --- /dev/null +++ b/modules/Loading.html @@ -0,0 +1,113 @@ +Loading | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/modules/Nameplate.html b/modules/Nameplate.html new file mode 100644 index 0000000..c3b8a25 --- /dev/null +++ b/modules/Nameplate.html @@ -0,0 +1,113 @@ +Nameplate | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/modules/OpenMap.html b/modules/OpenMap.html new file mode 100644 index 0000000..0318265 --- /dev/null +++ b/modules/OpenMap.html @@ -0,0 +1,113 @@ +OpenMap | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/modules/Option.html b/modules/Option.html new file mode 100644 index 0000000..0eea42f --- /dev/null +++ b/modules/Option.html @@ -0,0 +1,113 @@ +Option | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/modules/OverlayBox.html b/modules/OverlayBox.html new file mode 100644 index 0000000..8a41df8 --- /dev/null +++ b/modules/OverlayBox.html @@ -0,0 +1,117 @@ +OverlayBox | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/modules/Select.html b/modules/Select.html new file mode 100644 index 0000000..44df674 --- /dev/null +++ b/modules/Select.html @@ -0,0 +1,113 @@ +Select | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/modules/SpinnerButton.html b/modules/SpinnerButton.html new file mode 100644 index 0000000..02fa139 --- /dev/null +++ b/modules/SpinnerButton.html @@ -0,0 +1,113 @@ +SpinnerButton | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/modules/TableSpinner.html b/modules/TableSpinner.html new file mode 100644 index 0000000..ec15978 --- /dev/null +++ b/modules/TableSpinner.html @@ -0,0 +1,113 @@ +TableSpinner | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/modules/TimeDistance.html b/modules/TimeDistance.html new file mode 100644 index 0000000..a972b88 --- /dev/null +++ b/modules/TimeDistance.html @@ -0,0 +1,113 @@ +TimeDistance | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/types/ClickBoundaryProps.html b/types/ClickBoundaryProps.html new file mode 100644 index 0000000..3886846 --- /dev/null +++ b/types/ClickBoundaryProps.html @@ -0,0 +1,133 @@ +ClickBoundaryProps | Idea React
    +
    + +
    +
    +
    +
    + +

    Type alias ClickBoundaryProps

    +
    ClickBoundaryProps: PropsWithChildren<{
        className?: string;
        onInnerClick?: ((event) => any);
        onOuterClick?: ((event) => any);
    }>
    +
    +

    Type declaration

    +
      +
    • +
      Optional className?: string
    • +
    • +
      Optional onInnerClick?: ((event) => any)
      +
        +
      • +
          +
        • (event): any
        • +
        • +
          +

          Parameters

          +
          +

          Returns any

    • +
    • +
      Optional onOuterClick?: ((event) => any)
      +
        +
      • +
          +
        • (event): any
        • +
        • +
          +

          Parameters

          +
          +

          Returns any

    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/types/CodeBlockProps.html b/types/CodeBlockProps.html new file mode 100644 index 0000000..882e1f2 --- /dev/null +++ b/types/CodeBlockProps.html @@ -0,0 +1,107 @@ +CodeBlockProps | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/types/CoordinateValue.html b/types/CoordinateValue.html new file mode 100644 index 0000000..92a2a42 --- /dev/null +++ b/types/CoordinateValue.html @@ -0,0 +1,102 @@ +CoordinateValue | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/types/EditorHTMLProps.html b/types/EditorHTMLProps.html new file mode 100644 index 0000000..fbe1707 --- /dev/null +++ b/types/EditorHTMLProps.html @@ -0,0 +1,109 @@ +EditorHTMLProps | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/types/EditorProps.html b/types/EditorProps.html new file mode 100644 index 0000000..4ed635f --- /dev/null +++ b/types/EditorProps.html @@ -0,0 +1,111 @@ +EditorProps | Idea React
    +
    + +
    +
    +
    +
    + +

    Type alias EditorProps

    +
    EditorProps: PropsWithoutRef<{
        defaultValue: string;
        name: string;
        tools: Record<string, ComponentClass>;
    }>
    +
    +

    Type declaration

    +
      +
    • +
      defaultValue: string
    • +
    • +
      name: string
    • +
    • +
      tools: Record<string, ComponentClass>
    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/types/IconProps.html b/types/IconProps.html new file mode 100644 index 0000000..690d54c --- /dev/null +++ b/types/IconProps.html @@ -0,0 +1,102 @@ +IconProps | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/types/LeafLetComponent.html b/types/LeafLetComponent.html new file mode 100644 index 0000000..044ac3d --- /dev/null +++ b/types/LeafLetComponent.html @@ -0,0 +1,102 @@ +LeafLetComponent | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/types/LoadingProps.html b/types/LoadingProps.html new file mode 100644 index 0000000..f990b4c --- /dev/null +++ b/types/LoadingProps.html @@ -0,0 +1,105 @@ +LoadingProps | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/types/MapEvent.html b/types/MapEvent.html new file mode 100644 index 0000000..743fb40 --- /dev/null +++ b/types/MapEvent.html @@ -0,0 +1,107 @@ +MapEvent | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/types/NameplateProps.html b/types/NameplateProps.html new file mode 100644 index 0000000..9208f2e --- /dev/null +++ b/types/NameplateProps.html @@ -0,0 +1,109 @@ +NameplateProps | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/types/OptionProps.html b/types/OptionProps.html new file mode 100644 index 0000000..c984917 --- /dev/null +++ b/types/OptionProps.html @@ -0,0 +1,111 @@ +OptionProps | Idea React
    +
    + +
    +
    +
    +
    + +

    Type alias OptionProps

    +
    OptionProps: PropsWithChildren<{
        className?: string;
        style?: CSSProperties;
        value?: string;
    }>
    +
    +

    Type declaration

    +
      +
    • +
      Optional className?: string
    • +
    • +
      Optional style?: CSSProperties
    • +
    • +
      Optional value?: string
    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/types/TableSpinnerProps.html b/types/TableSpinnerProps.html new file mode 100644 index 0000000..793fcdd --- /dev/null +++ b/types/TableSpinnerProps.html @@ -0,0 +1,107 @@ +TableSpinnerProps | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/types/TimeDistanceProps.html b/types/TimeDistanceProps.html new file mode 100644 index 0000000..c0d5b4b --- /dev/null +++ b/types/TimeDistanceProps.html @@ -0,0 +1,115 @@ +TimeDistanceProps | Idea React
    +
    + +
    +
    +
    +
    + +

    Type alias TimeDistanceProps

    +
    TimeDistanceProps: PropsWithoutRef<{
        afterWord?: string;
        beforeWord?: string;
        className?: string;
        date: TimeData;
        unitWords?: Record<string, string>;
    }>
    +
    +

    Type declaration

    +
      +
    • +
      Optional afterWord?: string
    • +
    • +
      Optional beforeWord?: string
    • +
    • +
      Optional className?: string
    • +
    • +
      date: TimeData
    • +
    • +
      Optional unitWords?: Record<string, string>
    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/types/TypeEchoProps.html b/types/TypeEchoProps.html new file mode 100644 index 0000000..0f7d316 --- /dev/null +++ b/types/TypeEchoProps.html @@ -0,0 +1,111 @@ +TypeEchoProps | Idea React
    +
    + +
    +
    +
    +
    + +

    Type alias TypeEchoProps

    +
    TypeEchoProps: PropsWithoutRef<{
        className?: string;
        intervals?: number;
        text: string;
    }>
    +
    +

    Type declaration

    +
      +
    • +
      Optional className?: string
    • +
    • +
      Optional intervals?: number
    • +
    • +
      text: string
    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/types/VariantColor.html b/types/VariantColor.html new file mode 100644 index 0000000..1586d87 --- /dev/null +++ b/types/VariantColor.html @@ -0,0 +1,102 @@ +VariantColor | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/variables/Avatar.displayName.html b/variables/Avatar.displayName.html new file mode 100644 index 0000000..4264f16 --- /dev/null +++ b/variables/Avatar.displayName.html @@ -0,0 +1,107 @@ +displayName | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/variables/EditorHTML.displayName.html b/variables/EditorHTML.displayName.html new file mode 100644 index 0000000..1fc2d40 --- /dev/null +++ b/variables/EditorHTML.displayName.html @@ -0,0 +1,107 @@ +displayName | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/variables/Icon.displayName.html b/variables/Icon.displayName.html new file mode 100644 index 0000000..379237b --- /dev/null +++ b/variables/Icon.displayName.html @@ -0,0 +1,107 @@ +displayName | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/variables/Loading.displayName.html b/variables/Loading.displayName.html new file mode 100644 index 0000000..e673530 --- /dev/null +++ b/variables/Loading.displayName.html @@ -0,0 +1,107 @@ +displayName | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/variables/Nameplate.displayName.html b/variables/Nameplate.displayName.html new file mode 100644 index 0000000..5fa798f --- /dev/null +++ b/variables/Nameplate.displayName.html @@ -0,0 +1,107 @@ +displayName | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/variables/OpenMap.displayName.html b/variables/OpenMap.displayName.html new file mode 100644 index 0000000..c6c2df4 --- /dev/null +++ b/variables/OpenMap.displayName.html @@ -0,0 +1,107 @@ +displayName | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/variables/Option.displayName.html b/variables/Option.displayName.html new file mode 100644 index 0000000..1f49c29 --- /dev/null +++ b/variables/Option.displayName.html @@ -0,0 +1,107 @@ +displayName | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/variables/OverlayBox.displayName.html b/variables/OverlayBox.displayName.html new file mode 100644 index 0000000..9703303 --- /dev/null +++ b/variables/OverlayBox.displayName.html @@ -0,0 +1,107 @@ +displayName | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/variables/Select.displayName.html b/variables/Select.displayName.html new file mode 100644 index 0000000..91cbe90 --- /dev/null +++ b/variables/Select.displayName.html @@ -0,0 +1,107 @@ +displayName | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/variables/SpinnerButton.displayName.html b/variables/SpinnerButton.displayName.html new file mode 100644 index 0000000..3e3a56d --- /dev/null +++ b/variables/SpinnerButton.displayName.html @@ -0,0 +1,107 @@ +displayName | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/variables/TableSpinner.displayName.html b/variables/TableSpinner.displayName.html new file mode 100644 index 0000000..7c9dee8 --- /dev/null +++ b/variables/TableSpinner.displayName.html @@ -0,0 +1,107 @@ +displayName | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/variables/TimeDistance.displayName.html b/variables/TimeDistance.displayName.html new file mode 100644 index 0000000..5083507 --- /dev/null +++ b/variables/TimeDistance.displayName.html @@ -0,0 +1,107 @@ +displayName | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/variables/VariantColors.html b/variables/VariantColors.html new file mode 100644 index 0000000..f682ed2 --- /dev/null +++ b/variables/VariantColors.html @@ -0,0 +1,102 @@ +VariantColors | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/variables/parser.html b/variables/parser.html new file mode 100644 index 0000000..1199493 --- /dev/null +++ b/variables/parser.html @@ -0,0 +1,102 @@ +parser | Idea React
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file