From d797009add68b692afe029d200f5732a8e3c5d05 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 14 Jul 2024 09:42:54 +0000 Subject: [PATCH] deploy: ad849dac42c7026b1d43a1355f7a314cb1691586 --- .nojekyll | 1 + assets/highlight.css | 43 + assets/main.js | 58 + assets/search.js | 1 + assets/style.css | 1367 ++++++++++++++++++++++++ functions/conjugationVerb.html | 89 ++ functions/conjugationVerbFlat.html | 89 ++ functions/declensionAdjective.html | 89 ++ functions/declensionAdjectiveFlat.html | 89 ++ functions/declensionNoun.html | 97 ++ functions/declensionNounFlat.html | 97 ++ functions/declensionNounSimple.html | 91 ++ functions/declensionNumeral.html | 87 ++ functions/declensionNumeralFlat.html | 87 ++ functions/declensionPronoun.html | 87 ++ functions/declensionPronounFlat.html | 87 ++ functions/parsePos.html | 85 ++ functions/transliterate.html | 89 ++ index.html | 134 +++ interfaces/SteenNumeralParadigm.html | 131 +++ interfaces/SteenPronounParadigm.html | 131 +++ modules.html | 122 +++ types/Adjective.html | 81 ++ types/Adverb.html | 81 ++ types/Conjunction.html | 81 ++ types/FlavorisationBCP47Code.html | 76 ++ types/Interjection.html | 81 ++ types/InterslavicBCP47Code.html | 76 ++ types/Noun.html | 97 ++ types/Numeral.html | 97 ++ types/PartOfSpeech.html | 76 ++ types/Particle.html | 81 ++ types/Phrase.html | 81 ++ types/Prefix.html | 81 ++ types/Preposition.html | 81 ++ types/Pronoun.html | 99 ++ types/SteenAdjectiveParadigm.html | 87 ++ types/SteenNounParadigm.html | 95 ++ types/SteenVerbParadigm.html | 131 +++ types/Suffix.html | 81 ++ types/Verb.html | 93 ++ variables/FlavorisationBCP47.html | 121 +++ variables/Glagolitic.html | 173 +++ variables/InterslavicBCP47.html | 89 ++ 44 files changed, 5190 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 functions/conjugationVerb.html create mode 100644 functions/conjugationVerbFlat.html create mode 100644 functions/declensionAdjective.html create mode 100644 functions/declensionAdjectiveFlat.html create mode 100644 functions/declensionNoun.html create mode 100644 functions/declensionNounFlat.html create mode 100644 functions/declensionNounSimple.html create mode 100644 functions/declensionNumeral.html create mode 100644 functions/declensionNumeralFlat.html create mode 100644 functions/declensionPronoun.html create mode 100644 functions/declensionPronounFlat.html create mode 100644 functions/parsePos.html create mode 100644 functions/transliterate.html create mode 100644 index.html create mode 100644 interfaces/SteenNumeralParadigm.html create mode 100644 interfaces/SteenPronounParadigm.html create mode 100644 modules.html create mode 100644 types/Adjective.html create mode 100644 types/Adverb.html create mode 100644 types/Conjunction.html create mode 100644 types/FlavorisationBCP47Code.html create mode 100644 types/Interjection.html create mode 100644 types/InterslavicBCP47Code.html create mode 100644 types/Noun.html create mode 100644 types/Numeral.html create mode 100644 types/PartOfSpeech.html create mode 100644 types/Particle.html create mode 100644 types/Phrase.html create mode 100644 types/Prefix.html create mode 100644 types/Preposition.html create mode 100644 types/Pronoun.html create mode 100644 types/SteenAdjectiveParadigm.html create mode 100644 types/SteenNounParadigm.html create mode 100644 types/SteenVerbParadigm.html create mode 100644 types/Suffix.html create mode 100644 types/Verb.html create mode 100644 variables/FlavorisationBCP47.html create mode 100644 variables/Glagolitic.html create mode 100644 variables/InterslavicBCP47.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..ad862c5 --- /dev/null +++ b/assets/highlight.css @@ -0,0 +1,43 @@ +:root { + --light-hl-0: #001080; + --dark-hl-0: #9CDCFE; + --light-hl-1: #000000; + --dark-hl-1: #D4D4D4; + --light-hl-2: #A31515; + --dark-hl-2: #CE9178; + --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); + --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); + --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); + --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); + --code-background: var(--dark-code-background); +} + +.hl-0 { color: var(--hl-0); } +.hl-1 { color: var(--hl-1); } +.hl-2 { color: var(--hl-2); } +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..799acdf --- /dev/null +++ b/assets/search.js @@ -0,0 +1 @@ +window.searchData = JSON.parse("{\"rows\":[{\"kind\":64,\"name\":\"transliterate\",\"url\":\"functions/transliterate.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"declensionAdjectiveFlat\",\"url\":\"functions/declensionAdjectiveFlat.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"declensionAdjective\",\"url\":\"functions/declensionAdjective.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"SteenAdjectiveParadigm\",\"url\":\"types/SteenAdjectiveParadigm.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/SteenAdjectiveParadigm.html#__type\",\"classes\":\"\",\"parent\":\"SteenAdjectiveParadigm\"},{\"kind\":1024,\"name\":\"singular\",\"url\":\"types/SteenAdjectiveParadigm.html#__type.singular\",\"classes\":\"\",\"parent\":\"SteenAdjectiveParadigm.__type\"},{\"kind\":1024,\"name\":\"plural\",\"url\":\"types/SteenAdjectiveParadigm.html#__type.plural\",\"classes\":\"\",\"parent\":\"SteenAdjectiveParadigm.__type\"},{\"kind\":1024,\"name\":\"comparison\",\"url\":\"types/SteenAdjectiveParadigm.html#__type.comparison\",\"classes\":\"\",\"parent\":\"SteenAdjectiveParadigm.__type\"},{\"kind\":32,\"name\":\"InterslavicBCP47\",\"url\":\"variables/InterslavicBCP47.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/InterslavicBCP47.html#__type\",\"classes\":\"\",\"parent\":\"InterslavicBCP47\"},{\"kind\":1024,\"name\":\"Generic\",\"url\":\"variables/InterslavicBCP47.html#__type.Generic\",\"classes\":\"\",\"parent\":\"InterslavicBCP47.__type\"},{\"kind\":1024,\"name\":\"Latin\",\"url\":\"variables/InterslavicBCP47.html#__type.Latin\",\"classes\":\"\",\"parent\":\"InterslavicBCP47.__type\"},{\"kind\":1024,\"name\":\"Cyrillic\",\"url\":\"variables/InterslavicBCP47.html#__type.Cyrillic\",\"classes\":\"\",\"parent\":\"InterslavicBCP47.__type\"},{\"kind\":1024,\"name\":\"Glagolitic\",\"url\":\"variables/InterslavicBCP47.html#__type.Glagolitic\",\"classes\":\"\",\"parent\":\"InterslavicBCP47.__type\"},{\"kind\":1024,\"name\":\"IPA\",\"url\":\"variables/InterslavicBCP47.html#__type.IPA\",\"classes\":\"\",\"parent\":\"InterslavicBCP47.__type\"},{\"kind\":4194304,\"name\":\"InterslavicBCP47Code\",\"url\":\"types/InterslavicBCP47Code.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"FlavorisationBCP47\",\"url\":\"variables/FlavorisationBCP47.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/FlavorisationBCP47.html#__type\",\"classes\":\"\",\"parent\":\"FlavorisationBCP47\"},{\"kind\":1024,\"name\":\"ASCII\",\"url\":\"variables/FlavorisationBCP47.html#__type.ASCII\",\"classes\":\"\",\"parent\":\"FlavorisationBCP47.__type\"},{\"kind\":1024,\"name\":\"LatinEtymological\",\"url\":\"variables/FlavorisationBCP47.html#__type.LatinEtymological\",\"classes\":\"\",\"parent\":\"FlavorisationBCP47.__type\"},{\"kind\":1024,\"name\":\"LatinNorthern\",\"url\":\"variables/FlavorisationBCP47.html#__type.LatinNorthern\",\"classes\":\"\",\"parent\":\"FlavorisationBCP47.__type\"},{\"kind\":1024,\"name\":\"LatinSlovianto\",\"url\":\"variables/FlavorisationBCP47.html#__type.LatinSlovianto\",\"classes\":\"\",\"parent\":\"FlavorisationBCP47.__type\"},{\"kind\":1024,\"name\":\"LatinSouthern\",\"url\":\"variables/FlavorisationBCP47.html#__type.LatinSouthern\",\"classes\":\"\",\"parent\":\"FlavorisationBCP47.__type\"},{\"kind\":1024,\"name\":\"Polish\",\"url\":\"variables/FlavorisationBCP47.html#__type.Polish\",\"classes\":\"\",\"parent\":\"FlavorisationBCP47.__type\"},{\"kind\":1024,\"name\":\"GlagoliticEtymological\",\"url\":\"variables/FlavorisationBCP47.html#__type.GlagoliticEtymological\",\"classes\":\"\",\"parent\":\"FlavorisationBCP47.__type\"},{\"kind\":1024,\"name\":\"GlagoliticNorthern\",\"url\":\"variables/FlavorisationBCP47.html#__type.GlagoliticNorthern\",\"classes\":\"\",\"parent\":\"FlavorisationBCP47.__type\"},{\"kind\":1024,\"name\":\"GlagoliticSlovianto\",\"url\":\"variables/FlavorisationBCP47.html#__type.GlagoliticSlovianto\",\"classes\":\"\",\"parent\":\"FlavorisationBCP47.__type\"},{\"kind\":1024,\"name\":\"GlagoliticSouthern\",\"url\":\"variables/FlavorisationBCP47.html#__type.GlagoliticSouthern\",\"classes\":\"\",\"parent\":\"FlavorisationBCP47.__type\"},{\"kind\":1024,\"name\":\"CyrillicEtymological\",\"url\":\"variables/FlavorisationBCP47.html#__type.CyrillicEtymological\",\"classes\":\"\",\"parent\":\"FlavorisationBCP47.__type\"},{\"kind\":1024,\"name\":\"CyrillicIotated\",\"url\":\"variables/FlavorisationBCP47.html#__type.CyrillicIotated\",\"classes\":\"\",\"parent\":\"FlavorisationBCP47.__type\"},{\"kind\":1024,\"name\":\"CyrillicIotatedExtended\",\"url\":\"variables/FlavorisationBCP47.html#__type.CyrillicIotatedExtended\",\"classes\":\"\",\"parent\":\"FlavorisationBCP47.__type\"},{\"kind\":1024,\"name\":\"CyrillicNorthern\",\"url\":\"variables/FlavorisationBCP47.html#__type.CyrillicNorthern\",\"classes\":\"\",\"parent\":\"FlavorisationBCP47.__type\"},{\"kind\":1024,\"name\":\"CyrillicSlovianto\",\"url\":\"variables/FlavorisationBCP47.html#__type.CyrillicSlovianto\",\"classes\":\"\",\"parent\":\"FlavorisationBCP47.__type\"},{\"kind\":1024,\"name\":\"CyrillicSouthern\",\"url\":\"variables/FlavorisationBCP47.html#__type.CyrillicSouthern\",\"classes\":\"\",\"parent\":\"FlavorisationBCP47.__type\"},{\"kind\":1024,\"name\":\"Generic\",\"url\":\"variables/FlavorisationBCP47.html#__type.Generic\",\"classes\":\"\",\"parent\":\"FlavorisationBCP47.__type\"},{\"kind\":1024,\"name\":\"Latin\",\"url\":\"variables/FlavorisationBCP47.html#__type.Latin\",\"classes\":\"\",\"parent\":\"FlavorisationBCP47.__type\"},{\"kind\":1024,\"name\":\"Cyrillic\",\"url\":\"variables/FlavorisationBCP47.html#__type.Cyrillic\",\"classes\":\"\",\"parent\":\"FlavorisationBCP47.__type\"},{\"kind\":1024,\"name\":\"Glagolitic\",\"url\":\"variables/FlavorisationBCP47.html#__type.Glagolitic\",\"classes\":\"\",\"parent\":\"FlavorisationBCP47.__type\"},{\"kind\":1024,\"name\":\"IPA\",\"url\":\"variables/FlavorisationBCP47.html#__type.IPA\",\"classes\":\"\",\"parent\":\"FlavorisationBCP47.__type\"},{\"kind\":4194304,\"name\":\"FlavorisationBCP47Code\",\"url\":\"types/FlavorisationBCP47Code.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"Glagolitic\",\"url\":\"variables/Glagolitic.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/Glagolitic.html#__type\",\"classes\":\"\",\"parent\":\"Glagolitic\"},{\"kind\":1024,\"name\":\"Azu\",\"url\":\"variables/Glagolitic.html#__type.Azu\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Buky\",\"url\":\"variables/Glagolitic.html#__type.Buky\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Vedi\",\"url\":\"variables/Glagolitic.html#__type.Vedi\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Glagoli\",\"url\":\"variables/Glagolitic.html#__type.Glagoli\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Dobro\",\"url\":\"variables/Glagolitic.html#__type.Dobro\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Yestu\",\"url\":\"variables/Glagolitic.html#__type.Yestu\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Zhivete\",\"url\":\"variables/Glagolitic.html#__type.Zhivete\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Dzelo\",\"url\":\"variables/Glagolitic.html#__type.Dzelo\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Zemlja\",\"url\":\"variables/Glagolitic.html#__type.Zemlja\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Izhe\",\"url\":\"variables/Glagolitic.html#__type.Izhe\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Initial_Izhe\",\"url\":\"variables/Glagolitic.html#__type.Initial_Izhe\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"I\",\"url\":\"variables/Glagolitic.html#__type.I\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Djervi\",\"url\":\"variables/Glagolitic.html#__type.Djervi\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Kako\",\"url\":\"variables/Glagolitic.html#__type.Kako\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Ljudije\",\"url\":\"variables/Glagolitic.html#__type.Ljudije\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Myslite\",\"url\":\"variables/Glagolitic.html#__type.Myslite\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Nashi\",\"url\":\"variables/Glagolitic.html#__type.Nashi\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Onu\",\"url\":\"variables/Glagolitic.html#__type.Onu\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Pokoji\",\"url\":\"variables/Glagolitic.html#__type.Pokoji\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Ritsi\",\"url\":\"variables/Glagolitic.html#__type.Ritsi\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Slovo\",\"url\":\"variables/Glagolitic.html#__type.Slovo\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Tvrido\",\"url\":\"variables/Glagolitic.html#__type.Tvrido\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Uku\",\"url\":\"variables/Glagolitic.html#__type.Uku\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Fritu\",\"url\":\"variables/Glagolitic.html#__type.Fritu\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Heru\",\"url\":\"variables/Glagolitic.html#__type.Heru\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Otu\",\"url\":\"variables/Glagolitic.html#__type.Otu\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Pe\",\"url\":\"variables/Glagolitic.html#__type.Pe\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Shta\",\"url\":\"variables/Glagolitic.html#__type.Shta\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Tsi\",\"url\":\"variables/Glagolitic.html#__type.Tsi\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Chrivi\",\"url\":\"variables/Glagolitic.html#__type.Chrivi\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Sha\",\"url\":\"variables/Glagolitic.html#__type.Sha\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Yeru\",\"url\":\"variables/Glagolitic.html#__type.Yeru\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Yeri\",\"url\":\"variables/Glagolitic.html#__type.Yeri\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Yati\",\"url\":\"variables/Glagolitic.html#__type.Yati\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Spidery_Ha\",\"url\":\"variables/Glagolitic.html#__type.Spidery_Ha\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Yu\",\"url\":\"variables/Glagolitic.html#__type.Yu\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Small_Yus\",\"url\":\"variables/Glagolitic.html#__type.Small_Yus\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Small_Yus_with_Tail\",\"url\":\"variables/Glagolitic.html#__type.Small_Yus_with_Tail\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Yo\",\"url\":\"variables/Glagolitic.html#__type.Yo\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Iotated_Small_Yus\",\"url\":\"variables/Glagolitic.html#__type.Iotated_Small_Yus\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Big_Yus\",\"url\":\"variables/Glagolitic.html#__type.Big_Yus\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Iotated_Big_Yus\",\"url\":\"variables/Glagolitic.html#__type.Iotated_Big_Yus\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Fita\",\"url\":\"variables/Glagolitic.html#__type.Fita\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Izhitsa\",\"url\":\"variables/Glagolitic.html#__type.Izhitsa\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Shtapic\",\"url\":\"variables/Glagolitic.html#__type.Shtapic\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Trokutasti_A\",\"url\":\"variables/Glagolitic.html#__type.Trokutasti_A\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":1024,\"name\":\"Latinate_Myslite\",\"url\":\"variables/Glagolitic.html#__type.Latinate_Myslite\",\"classes\":\"\",\"parent\":\"Glagolitic.__type\"},{\"kind\":64,\"name\":\"declensionNounFlat\",\"url\":\"functions/declensionNounFlat.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"declensionNoun\",\"url\":\"functions/declensionNoun.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"SteenNounParadigm\",\"url\":\"types/SteenNounParadigm.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/SteenNounParadigm.html#__type\",\"classes\":\"\",\"parent\":\"SteenNounParadigm\"},{\"kind\":1024,\"name\":\"nom\",\"url\":\"types/SteenNounParadigm.html#__type.nom\",\"classes\":\"\",\"parent\":\"SteenNounParadigm.__type\"},{\"kind\":1024,\"name\":\"acc\",\"url\":\"types/SteenNounParadigm.html#__type.acc\",\"classes\":\"\",\"parent\":\"SteenNounParadigm.__type\"},{\"kind\":1024,\"name\":\"gen\",\"url\":\"types/SteenNounParadigm.html#__type.gen\",\"classes\":\"\",\"parent\":\"SteenNounParadigm.__type\"},{\"kind\":1024,\"name\":\"loc\",\"url\":\"types/SteenNounParadigm.html#__type.loc\",\"classes\":\"\",\"parent\":\"SteenNounParadigm.__type\"},{\"kind\":1024,\"name\":\"dat\",\"url\":\"types/SteenNounParadigm.html#__type.dat\",\"classes\":\"\",\"parent\":\"SteenNounParadigm.__type\"},{\"kind\":1024,\"name\":\"ins\",\"url\":\"types/SteenNounParadigm.html#__type.ins\",\"classes\":\"\",\"parent\":\"SteenNounParadigm.__type\"},{\"kind\":1024,\"name\":\"voc\",\"url\":\"types/SteenNounParadigm.html#__type.voc\",\"classes\":\"\",\"parent\":\"SteenNounParadigm.__type\"},{\"kind\":64,\"name\":\"declensionNounSimple\",\"url\":\"functions/declensionNounSimple.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"declensionNumeralFlat\",\"url\":\"functions/declensionNumeralFlat.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"declensionNumeral\",\"url\":\"functions/declensionNumeral.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"SteenNumeralParadigm\",\"url\":\"interfaces/SteenNumeralParadigm.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/SteenNumeralParadigm.html#type\",\"classes\":\"\",\"parent\":\"SteenNumeralParadigm\"},{\"kind\":1024,\"name\":\"columns\",\"url\":\"interfaces/SteenNumeralParadigm.html#columns\",\"classes\":\"\",\"parent\":\"SteenNumeralParadigm\"},{\"kind\":1024,\"name\":\"cases\",\"url\":\"interfaces/SteenNumeralParadigm.html#cases\",\"classes\":\"\",\"parent\":\"SteenNumeralParadigm\"},{\"kind\":1024,\"name\":\"casesSingular\",\"url\":\"interfaces/SteenNumeralParadigm.html#casesSingular\",\"classes\":\"\",\"parent\":\"SteenNumeralParadigm\"},{\"kind\":1024,\"name\":\"casesPlural\",\"url\":\"interfaces/SteenNumeralParadigm.html#casesPlural\",\"classes\":\"\",\"parent\":\"SteenNumeralParadigm\"},{\"kind\":64,\"name\":\"parsePos\",\"url\":\"functions/parsePos.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"PartOfSpeech\",\"url\":\"types/PartOfSpeech.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"Adjective\",\"url\":\"types/Adjective.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Adjective.html#__type\",\"classes\":\"\",\"parent\":\"Adjective\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/Adjective.html#__type.name\",\"classes\":\"\",\"parent\":\"Adjective.__type\"},{\"kind\":4194304,\"name\":\"Adverb\",\"url\":\"types/Adverb.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Adverb.html#__type\",\"classes\":\"\",\"parent\":\"Adverb\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/Adverb.html#__type.name\",\"classes\":\"\",\"parent\":\"Adverb.__type\"},{\"kind\":4194304,\"name\":\"Conjunction\",\"url\":\"types/Conjunction.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Conjunction.html#__type\",\"classes\":\"\",\"parent\":\"Conjunction\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/Conjunction.html#__type.name\",\"classes\":\"\",\"parent\":\"Conjunction.__type\"},{\"kind\":4194304,\"name\":\"Interjection\",\"url\":\"types/Interjection.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Interjection.html#__type\",\"classes\":\"\",\"parent\":\"Interjection\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/Interjection.html#__type.name\",\"classes\":\"\",\"parent\":\"Interjection.__type\"},{\"kind\":4194304,\"name\":\"Noun\",\"url\":\"types/Noun.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Noun.html#__type\",\"classes\":\"\",\"parent\":\"Noun\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/Noun.html#__type.name\",\"classes\":\"\",\"parent\":\"Noun.__type\"},{\"kind\":1024,\"name\":\"gender\",\"url\":\"types/Noun.html#__type.gender\",\"classes\":\"\",\"parent\":\"Noun.__type\"},{\"kind\":1024,\"name\":\"masculine\",\"url\":\"types/Noun.html#__type.masculine\",\"classes\":\"\",\"parent\":\"Noun.__type\"},{\"kind\":1024,\"name\":\"animate\",\"url\":\"types/Noun.html#__type.animate\",\"classes\":\"\",\"parent\":\"Noun.__type\"},{\"kind\":1024,\"name\":\"feminine\",\"url\":\"types/Noun.html#__type.feminine\",\"classes\":\"\",\"parent\":\"Noun.__type\"},{\"kind\":1024,\"name\":\"neuter\",\"url\":\"types/Noun.html#__type.neuter\",\"classes\":\"\",\"parent\":\"Noun.__type\"},{\"kind\":1024,\"name\":\"singular\",\"url\":\"types/Noun.html#__type.singular\",\"classes\":\"\",\"parent\":\"Noun.__type\"},{\"kind\":1024,\"name\":\"plural\",\"url\":\"types/Noun.html#__type.plural\",\"classes\":\"\",\"parent\":\"Noun.__type\"},{\"kind\":1024,\"name\":\"indeclinable\",\"url\":\"types/Noun.html#__type.indeclinable\",\"classes\":\"\",\"parent\":\"Noun.__type\"},{\"kind\":4194304,\"name\":\"Numeral\",\"url\":\"types/Numeral.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Numeral.html#__type\",\"classes\":\"\",\"parent\":\"Numeral\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/Numeral.html#__type.name\",\"classes\":\"\",\"parent\":\"Numeral.__type\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/Numeral.html#__type.type\",\"classes\":\"\",\"parent\":\"Numeral.__type\"},{\"kind\":1024,\"name\":\"cardinal\",\"url\":\"types/Numeral.html#__type.cardinal\",\"classes\":\"\",\"parent\":\"Numeral.__type\"},{\"kind\":1024,\"name\":\"collective\",\"url\":\"types/Numeral.html#__type.collective\",\"classes\":\"\",\"parent\":\"Numeral.__type\"},{\"kind\":1024,\"name\":\"differential\",\"url\":\"types/Numeral.html#__type.differential\",\"classes\":\"\",\"parent\":\"Numeral.__type\"},{\"kind\":1024,\"name\":\"fractional\",\"url\":\"types/Numeral.html#__type.fractional\",\"classes\":\"\",\"parent\":\"Numeral.__type\"},{\"kind\":1024,\"name\":\"multiplicative\",\"url\":\"types/Numeral.html#__type.multiplicative\",\"classes\":\"\",\"parent\":\"Numeral.__type\"},{\"kind\":1024,\"name\":\"ordinal\",\"url\":\"types/Numeral.html#__type.ordinal\",\"classes\":\"\",\"parent\":\"Numeral.__type\"},{\"kind\":1024,\"name\":\"substantivized\",\"url\":\"types/Numeral.html#__type.substantivized\",\"classes\":\"\",\"parent\":\"Numeral.__type\"},{\"kind\":4194304,\"name\":\"Particle\",\"url\":\"types/Particle.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Particle.html#__type\",\"classes\":\"\",\"parent\":\"Particle\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/Particle.html#__type.name\",\"classes\":\"\",\"parent\":\"Particle.__type\"},{\"kind\":4194304,\"name\":\"Phrase\",\"url\":\"types/Phrase.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Phrase.html#__type\",\"classes\":\"\",\"parent\":\"Phrase\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/Phrase.html#__type.name\",\"classes\":\"\",\"parent\":\"Phrase.__type\"},{\"kind\":4194304,\"name\":\"Prefix\",\"url\":\"types/Prefix.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Prefix.html#__type\",\"classes\":\"\",\"parent\":\"Prefix\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/Prefix.html#__type.name\",\"classes\":\"\",\"parent\":\"Prefix.__type\"},{\"kind\":4194304,\"name\":\"Preposition\",\"url\":\"types/Preposition.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Preposition.html#__type\",\"classes\":\"\",\"parent\":\"Preposition\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/Preposition.html#__type.name\",\"classes\":\"\",\"parent\":\"Preposition.__type\"},{\"kind\":4194304,\"name\":\"Pronoun\",\"url\":\"types/Pronoun.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Pronoun.html#__type\",\"classes\":\"\",\"parent\":\"Pronoun\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/Pronoun.html#__type.name\",\"classes\":\"\",\"parent\":\"Pronoun.__type\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/Pronoun.html#__type.type\",\"classes\":\"\",\"parent\":\"Pronoun.__type\"},{\"kind\":1024,\"name\":\"demonstrative\",\"url\":\"types/Pronoun.html#__type.demonstrative\",\"classes\":\"\",\"parent\":\"Pronoun.__type\"},{\"kind\":1024,\"name\":\"indefinite\",\"url\":\"types/Pronoun.html#__type.indefinite\",\"classes\":\"\",\"parent\":\"Pronoun.__type\"},{\"kind\":1024,\"name\":\"interrogative\",\"url\":\"types/Pronoun.html#__type.interrogative\",\"classes\":\"\",\"parent\":\"Pronoun.__type\"},{\"kind\":1024,\"name\":\"personal\",\"url\":\"types/Pronoun.html#__type.personal\",\"classes\":\"\",\"parent\":\"Pronoun.__type\"},{\"kind\":1024,\"name\":\"possessive\",\"url\":\"types/Pronoun.html#__type.possessive\",\"classes\":\"\",\"parent\":\"Pronoun.__type\"},{\"kind\":1024,\"name\":\"reciprocal\",\"url\":\"types/Pronoun.html#__type.reciprocal\",\"classes\":\"\",\"parent\":\"Pronoun.__type\"},{\"kind\":1024,\"name\":\"reflexive\",\"url\":\"types/Pronoun.html#__type.reflexive\",\"classes\":\"\",\"parent\":\"Pronoun.__type\"},{\"kind\":1024,\"name\":\"relative\",\"url\":\"types/Pronoun.html#__type.relative\",\"classes\":\"\",\"parent\":\"Pronoun.__type\"},{\"kind\":4194304,\"name\":\"Suffix\",\"url\":\"types/Suffix.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Suffix.html#__type\",\"classes\":\"\",\"parent\":\"Suffix\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/Suffix.html#__type.name\",\"classes\":\"\",\"parent\":\"Suffix.__type\"},{\"kind\":4194304,\"name\":\"Verb\",\"url\":\"types/Verb.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Verb.html#__type\",\"classes\":\"\",\"parent\":\"Verb\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/Verb.html#__type.name\",\"classes\":\"\",\"parent\":\"Verb.__type\"},{\"kind\":1024,\"name\":\"auxiliary\",\"url\":\"types/Verb.html#__type.auxiliary\",\"classes\":\"\",\"parent\":\"Verb.__type\"},{\"kind\":1024,\"name\":\"imperfective\",\"url\":\"types/Verb.html#__type.imperfective\",\"classes\":\"\",\"parent\":\"Verb.__type\"},{\"kind\":1024,\"name\":\"intransitive\",\"url\":\"types/Verb.html#__type.intransitive\",\"classes\":\"\",\"parent\":\"Verb.__type\"},{\"kind\":1024,\"name\":\"perfective\",\"url\":\"types/Verb.html#__type.perfective\",\"classes\":\"\",\"parent\":\"Verb.__type\"},{\"kind\":1024,\"name\":\"reflexive\",\"url\":\"types/Verb.html#__type.reflexive\",\"classes\":\"\",\"parent\":\"Verb.__type\"},{\"kind\":1024,\"name\":\"transitive\",\"url\":\"types/Verb.html#__type.transitive\",\"classes\":\"\",\"parent\":\"Verb.__type\"},{\"kind\":64,\"name\":\"declensionPronounFlat\",\"url\":\"functions/declensionPronounFlat.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"declensionPronoun\",\"url\":\"functions/declensionPronoun.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"SteenPronounParadigm\",\"url\":\"interfaces/SteenPronounParadigm.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/SteenPronounParadigm.html#type\",\"classes\":\"\",\"parent\":\"SteenPronounParadigm\"},{\"kind\":1024,\"name\":\"columns\",\"url\":\"interfaces/SteenPronounParadigm.html#columns\",\"classes\":\"\",\"parent\":\"SteenPronounParadigm\"},{\"kind\":1024,\"name\":\"cases\",\"url\":\"interfaces/SteenPronounParadigm.html#cases\",\"classes\":\"\",\"parent\":\"SteenPronounParadigm\"},{\"kind\":1024,\"name\":\"casesSingular\",\"url\":\"interfaces/SteenPronounParadigm.html#casesSingular\",\"classes\":\"\",\"parent\":\"SteenPronounParadigm\"},{\"kind\":1024,\"name\":\"casesPlural\",\"url\":\"interfaces/SteenPronounParadigm.html#casesPlural\",\"classes\":\"\",\"parent\":\"SteenPronounParadigm\"},{\"kind\":64,\"name\":\"conjugationVerbFlat\",\"url\":\"functions/conjugationVerbFlat.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"conjugationVerb\",\"url\":\"functions/conjugationVerb.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"SteenVerbParadigm\",\"url\":\"types/SteenVerbParadigm.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/SteenVerbParadigm.html#__type\",\"classes\":\"\",\"parent\":\"SteenVerbParadigm\"},{\"kind\":1024,\"name\":\"infinitive\",\"url\":\"types/SteenVerbParadigm.html#__type.infinitive\",\"classes\":\"\",\"parent\":\"SteenVerbParadigm.__type\"},{\"kind\":1024,\"name\":\"present\",\"url\":\"types/SteenVerbParadigm.html#__type.present\",\"classes\":\"\",\"parent\":\"SteenVerbParadigm.__type\"},{\"kind\":1024,\"name\":\"imperfect\",\"url\":\"types/SteenVerbParadigm.html#__type.imperfect\",\"classes\":\"\",\"parent\":\"SteenVerbParadigm.__type\"},{\"kind\":1024,\"name\":\"perfect\",\"url\":\"types/SteenVerbParadigm.html#__type.perfect\",\"classes\":\"\",\"parent\":\"SteenVerbParadigm.__type\"},{\"kind\":1024,\"name\":\"pluperfect\",\"url\":\"types/SteenVerbParadigm.html#__type.pluperfect\",\"classes\":\"\",\"parent\":\"SteenVerbParadigm.__type\"},{\"kind\":1024,\"name\":\"future\",\"url\":\"types/SteenVerbParadigm.html#__type.future\",\"classes\":\"\",\"parent\":\"SteenVerbParadigm.__type\"},{\"kind\":1024,\"name\":\"conditional\",\"url\":\"types/SteenVerbParadigm.html#__type.conditional\",\"classes\":\"\",\"parent\":\"SteenVerbParadigm.__type\"},{\"kind\":1024,\"name\":\"imperative\",\"url\":\"types/SteenVerbParadigm.html#__type.imperative\",\"classes\":\"\",\"parent\":\"SteenVerbParadigm.__type\"},{\"kind\":1024,\"name\":\"prap\",\"url\":\"types/SteenVerbParadigm.html#__type.prap\",\"classes\":\"\",\"parent\":\"SteenVerbParadigm.__type\"},{\"kind\":1024,\"name\":\"prpp\",\"url\":\"types/SteenVerbParadigm.html#__type.prpp\",\"classes\":\"\",\"parent\":\"SteenVerbParadigm.__type\"},{\"kind\":1024,\"name\":\"pfap\",\"url\":\"types/SteenVerbParadigm.html#__type.pfap\",\"classes\":\"\",\"parent\":\"SteenVerbParadigm.__type\"},{\"kind\":1024,\"name\":\"pfpp\",\"url\":\"types/SteenVerbParadigm.html#__type.pfpp\",\"classes\":\"\",\"parent\":\"SteenVerbParadigm.__type\"},{\"kind\":1024,\"name\":\"gerund\",\"url\":\"types/SteenVerbParadigm.html#__type.gerund\",\"classes\":\"\",\"parent\":\"SteenVerbParadigm.__type\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,49.273]],[\"comment/0\",[]],[\"name/1\",[1,49.273]],[\"comment/1\",[]],[\"name/2\",[2,49.273]],[\"comment/2\",[]],[\"name/3\",[3,49.273]],[\"comment/3\",[]],[\"name/4\",[4,23.623]],[\"comment/4\",[]],[\"name/5\",[5,44.164]],[\"comment/5\",[]],[\"name/6\",[6,44.164]],[\"comment/6\",[]],[\"name/7\",[7,49.273]],[\"comment/7\",[]],[\"name/8\",[8,49.273]],[\"comment/8\",[]],[\"name/9\",[4,23.623]],[\"comment/9\",[]],[\"name/10\",[9,44.164]],[\"comment/10\",[]],[\"name/11\",[10,44.164]],[\"comment/11\",[]],[\"name/12\",[11,44.164]],[\"comment/12\",[]],[\"name/13\",[12,40.8]],[\"comment/13\",[]],[\"name/14\",[13,44.164]],[\"comment/14\",[]],[\"name/15\",[14,49.273]],[\"comment/15\",[]],[\"name/16\",[15,49.273]],[\"comment/16\",[]],[\"name/17\",[4,23.623]],[\"comment/17\",[]],[\"name/18\",[16,49.273]],[\"comment/18\",[]],[\"name/19\",[17,49.273]],[\"comment/19\",[]],[\"name/20\",[18,49.273]],[\"comment/20\",[]],[\"name/21\",[19,49.273]],[\"comment/21\",[]],[\"name/22\",[20,49.273]],[\"comment/22\",[]],[\"name/23\",[21,49.273]],[\"comment/23\",[]],[\"name/24\",[22,49.273]],[\"comment/24\",[]],[\"name/25\",[23,49.273]],[\"comment/25\",[]],[\"name/26\",[24,49.273]],[\"comment/26\",[]],[\"name/27\",[25,49.273]],[\"comment/27\",[]],[\"name/28\",[26,49.273]],[\"comment/28\",[]],[\"name/29\",[27,49.273]],[\"comment/29\",[]],[\"name/30\",[28,49.273]],[\"comment/30\",[]],[\"name/31\",[29,49.273]],[\"comment/31\",[]],[\"name/32\",[30,49.273]],[\"comment/32\",[]],[\"name/33\",[31,49.273]],[\"comment/33\",[]],[\"name/34\",[9,44.164]],[\"comment/34\",[]],[\"name/35\",[10,44.164]],[\"comment/35\",[]],[\"name/36\",[11,44.164]],[\"comment/36\",[]],[\"name/37\",[12,40.8]],[\"comment/37\",[]],[\"name/38\",[13,44.164]],[\"comment/38\",[]],[\"name/39\",[32,49.273]],[\"comment/39\",[]],[\"name/40\",[12,40.8]],[\"comment/40\",[]],[\"name/41\",[4,23.623]],[\"comment/41\",[]],[\"name/42\",[33,49.273]],[\"comment/42\",[]],[\"name/43\",[34,49.273]],[\"comment/43\",[]],[\"name/44\",[35,49.273]],[\"comment/44\",[]],[\"name/45\",[36,49.273]],[\"comment/45\",[]],[\"name/46\",[37,49.273]],[\"comment/46\",[]],[\"name/47\",[38,49.273]],[\"comment/47\",[]],[\"name/48\",[39,49.273]],[\"comment/48\",[]],[\"name/49\",[40,49.273]],[\"comment/49\",[]],[\"name/50\",[41,49.273]],[\"comment/50\",[]],[\"name/51\",[42,49.273]],[\"comment/51\",[]],[\"name/52\",[43,49.273]],[\"comment/52\",[]],[\"name/53\",[44,49.273]],[\"comment/53\",[]],[\"name/54\",[45,49.273]],[\"comment/54\",[]],[\"name/55\",[46,49.273]],[\"comment/55\",[]],[\"name/56\",[47,49.273]],[\"comment/56\",[]],[\"name/57\",[48,49.273]],[\"comment/57\",[]],[\"name/58\",[49,49.273]],[\"comment/58\",[]],[\"name/59\",[50,49.273]],[\"comment/59\",[]],[\"name/60\",[51,49.273]],[\"comment/60\",[]],[\"name/61\",[52,49.273]],[\"comment/61\",[]],[\"name/62\",[53,49.273]],[\"comment/62\",[]],[\"name/63\",[54,49.273]],[\"comment/63\",[]],[\"name/64\",[55,49.273]],[\"comment/64\",[]],[\"name/65\",[56,49.273]],[\"comment/65\",[]],[\"name/66\",[57,49.273]],[\"comment/66\",[]],[\"name/67\",[58,49.273]],[\"comment/67\",[]],[\"name/68\",[59,49.273]],[\"comment/68\",[]],[\"name/69\",[60,49.273]],[\"comment/69\",[]],[\"name/70\",[61,49.273]],[\"comment/70\",[]],[\"name/71\",[62,49.273]],[\"comment/71\",[]],[\"name/72\",[63,49.273]],[\"comment/72\",[]],[\"name/73\",[64,49.273]],[\"comment/73\",[]],[\"name/74\",[65,49.273]],[\"comment/74\",[]],[\"name/75\",[66,49.273]],[\"comment/75\",[]],[\"name/76\",[67,49.273]],[\"comment/76\",[]],[\"name/77\",[68,49.273]],[\"comment/77\",[]],[\"name/78\",[69,49.273]],[\"comment/78\",[]],[\"name/79\",[70,49.273]],[\"comment/79\",[]],[\"name/80\",[71,49.273]],[\"comment/80\",[]],[\"name/81\",[72,49.273]],[\"comment/81\",[]],[\"name/82\",[73,49.273]],[\"comment/82\",[]],[\"name/83\",[74,49.273]],[\"comment/83\",[]],[\"name/84\",[75,49.273]],[\"comment/84\",[]],[\"name/85\",[76,49.273]],[\"comment/85\",[]],[\"name/86\",[77,49.273]],[\"comment/86\",[]],[\"name/87\",[78,49.273]],[\"comment/87\",[]],[\"name/88\",[79,49.273]],[\"comment/88\",[]],[\"name/89\",[80,49.273]],[\"comment/89\",[]],[\"name/90\",[81,49.273]],[\"comment/90\",[]],[\"name/91\",[82,49.273]],[\"comment/91\",[]],[\"name/92\",[4,23.623]],[\"comment/92\",[]],[\"name/93\",[83,49.273]],[\"comment/93\",[]],[\"name/94\",[84,49.273]],[\"comment/94\",[]],[\"name/95\",[85,49.273]],[\"comment/95\",[]],[\"name/96\",[86,49.273]],[\"comment/96\",[]],[\"name/97\",[87,49.273]],[\"comment/97\",[]],[\"name/98\",[88,49.273]],[\"comment/98\",[]],[\"name/99\",[89,49.273]],[\"comment/99\",[]],[\"name/100\",[90,49.273]],[\"comment/100\",[]],[\"name/101\",[91,49.273]],[\"comment/101\",[]],[\"name/102\",[92,49.273]],[\"comment/102\",[]],[\"name/103\",[93,49.273]],[\"comment/103\",[]],[\"name/104\",[94,38.286]],[\"comment/104\",[]],[\"name/105\",[95,44.164]],[\"comment/105\",[]],[\"name/106\",[96,44.164]],[\"comment/106\",[]],[\"name/107\",[97,44.164]],[\"comment/107\",[]],[\"name/108\",[98,44.164]],[\"comment/108\",[]],[\"name/109\",[99,49.273]],[\"comment/109\",[]],[\"name/110\",[100,49.273]],[\"comment/110\",[]],[\"name/111\",[101,49.273]],[\"comment/111\",[]],[\"name/112\",[4,23.623]],[\"comment/112\",[]],[\"name/113\",[102,27.3]],[\"comment/113\",[]],[\"name/114\",[103,49.273]],[\"comment/114\",[]],[\"name/115\",[4,23.623]],[\"comment/115\",[]],[\"name/116\",[102,27.3]],[\"comment/116\",[]],[\"name/117\",[104,49.273]],[\"comment/117\",[]],[\"name/118\",[4,23.623]],[\"comment/118\",[]],[\"name/119\",[102,27.3]],[\"comment/119\",[]],[\"name/120\",[105,49.273]],[\"comment/120\",[]],[\"name/121\",[4,23.623]],[\"comment/121\",[]],[\"name/122\",[102,27.3]],[\"comment/122\",[]],[\"name/123\",[106,49.273]],[\"comment/123\",[]],[\"name/124\",[4,23.623]],[\"comment/124\",[]],[\"name/125\",[102,27.3]],[\"comment/125\",[]],[\"name/126\",[107,49.273]],[\"comment/126\",[]],[\"name/127\",[108,49.273]],[\"comment/127\",[]],[\"name/128\",[109,49.273]],[\"comment/128\",[]],[\"name/129\",[110,49.273]],[\"comment/129\",[]],[\"name/130\",[111,49.273]],[\"comment/130\",[]],[\"name/131\",[5,44.164]],[\"comment/131\",[]],[\"name/132\",[6,44.164]],[\"comment/132\",[]],[\"name/133\",[112,49.273]],[\"comment/133\",[]],[\"name/134\",[113,49.273]],[\"comment/134\",[]],[\"name/135\",[4,23.623]],[\"comment/135\",[]],[\"name/136\",[102,27.3]],[\"comment/136\",[]],[\"name/137\",[94,38.286]],[\"comment/137\",[]],[\"name/138\",[114,49.273]],[\"comment/138\",[]],[\"name/139\",[115,49.273]],[\"comment/139\",[]],[\"name/140\",[116,49.273]],[\"comment/140\",[]],[\"name/141\",[117,49.273]],[\"comment/141\",[]],[\"name/142\",[118,49.273]],[\"comment/142\",[]],[\"name/143\",[119,49.273]],[\"comment/143\",[]],[\"name/144\",[120,49.273]],[\"comment/144\",[]],[\"name/145\",[121,49.273]],[\"comment/145\",[]],[\"name/146\",[4,23.623]],[\"comment/146\",[]],[\"name/147\",[102,27.3]],[\"comment/147\",[]],[\"name/148\",[122,49.273]],[\"comment/148\",[]],[\"name/149\",[4,23.623]],[\"comment/149\",[]],[\"name/150\",[102,27.3]],[\"comment/150\",[]],[\"name/151\",[123,49.273]],[\"comment/151\",[]],[\"name/152\",[4,23.623]],[\"comment/152\",[]],[\"name/153\",[102,27.3]],[\"comment/153\",[]],[\"name/154\",[124,49.273]],[\"comment/154\",[]],[\"name/155\",[4,23.623]],[\"comment/155\",[]],[\"name/156\",[102,27.3]],[\"comment/156\",[]],[\"name/157\",[125,49.273]],[\"comment/157\",[]],[\"name/158\",[4,23.623]],[\"comment/158\",[]],[\"name/159\",[102,27.3]],[\"comment/159\",[]],[\"name/160\",[94,38.286]],[\"comment/160\",[]],[\"name/161\",[126,49.273]],[\"comment/161\",[]],[\"name/162\",[127,49.273]],[\"comment/162\",[]],[\"name/163\",[128,49.273]],[\"comment/163\",[]],[\"name/164\",[129,49.273]],[\"comment/164\",[]],[\"name/165\",[130,49.273]],[\"comment/165\",[]],[\"name/166\",[131,49.273]],[\"comment/166\",[]],[\"name/167\",[132,44.164]],[\"comment/167\",[]],[\"name/168\",[133,49.273]],[\"comment/168\",[]],[\"name/169\",[134,49.273]],[\"comment/169\",[]],[\"name/170\",[4,23.623]],[\"comment/170\",[]],[\"name/171\",[102,27.3]],[\"comment/171\",[]],[\"name/172\",[135,49.273]],[\"comment/172\",[]],[\"name/173\",[4,23.623]],[\"comment/173\",[]],[\"name/174\",[102,27.3]],[\"comment/174\",[]],[\"name/175\",[136,49.273]],[\"comment/175\",[]],[\"name/176\",[137,49.273]],[\"comment/176\",[]],[\"name/177\",[138,49.273]],[\"comment/177\",[]],[\"name/178\",[139,49.273]],[\"comment/178\",[]],[\"name/179\",[132,44.164]],[\"comment/179\",[]],[\"name/180\",[140,49.273]],[\"comment/180\",[]],[\"name/181\",[141,49.273]],[\"comment/181\",[]],[\"name/182\",[142,49.273]],[\"comment/182\",[]],[\"name/183\",[143,49.273]],[\"comment/183\",[]],[\"name/184\",[94,38.286]],[\"comment/184\",[]],[\"name/185\",[95,44.164]],[\"comment/185\",[]],[\"name/186\",[96,44.164]],[\"comment/186\",[]],[\"name/187\",[97,44.164]],[\"comment/187\",[]],[\"name/188\",[98,44.164]],[\"comment/188\",[]],[\"name/189\",[144,49.273]],[\"comment/189\",[]],[\"name/190\",[145,49.273]],[\"comment/190\",[]],[\"name/191\",[146,49.273]],[\"comment/191\",[]],[\"name/192\",[4,23.623]],[\"comment/192\",[]],[\"name/193\",[147,49.273]],[\"comment/193\",[]],[\"name/194\",[148,49.273]],[\"comment/194\",[]],[\"name/195\",[149,49.273]],[\"comment/195\",[]],[\"name/196\",[150,49.273]],[\"comment/196\",[]],[\"name/197\",[151,49.273]],[\"comment/197\",[]],[\"name/198\",[152,49.273]],[\"comment/198\",[]],[\"name/199\",[153,49.273]],[\"comment/199\",[]],[\"name/200\",[154,49.273]],[\"comment/200\",[]],[\"name/201\",[155,49.273]],[\"comment/201\",[]],[\"name/202\",[156,49.273]],[\"comment/202\",[]],[\"name/203\",[157,49.273]],[\"comment/203\",[]],[\"name/204\",[158,49.273]],[\"comment/204\",[]],[\"name/205\",[159,49.273]],[\"comment/205\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":4,\"name\":{\"4\":{},\"9\":{},\"17\":{},\"41\":{},\"92\":{},\"112\":{},\"115\":{},\"118\":{},\"121\":{},\"124\":{},\"135\":{},\"146\":{},\"149\":{},\"152\":{},\"155\":{},\"158\":{},\"170\":{},\"173\":{},\"192\":{}},\"comment\":{}}],[\"acc\",{\"_index\":84,\"name\":{\"94\":{}},\"comment\":{}}],[\"adjective\",{\"_index\":101,\"name\":{\"111\":{}},\"comment\":{}}],[\"adverb\",{\"_index\":103,\"name\":{\"114\":{}},\"comment\":{}}],[\"animate\",{\"_index\":109,\"name\":{\"128\":{}},\"comment\":{}}],[\"ascii\",{\"_index\":16,\"name\":{\"18\":{}},\"comment\":{}}],[\"auxiliary\",{\"_index\":136,\"name\":{\"175\":{}},\"comment\":{}}],[\"azu\",{\"_index\":33,\"name\":{\"42\":{}},\"comment\":{}}],[\"big_yus\",{\"_index\":73,\"name\":{\"82\":{}},\"comment\":{}}],[\"buky\",{\"_index\":34,\"name\":{\"43\":{}},\"comment\":{}}],[\"cardinal\",{\"_index\":114,\"name\":{\"138\":{}},\"comment\":{}}],[\"cases\",{\"_index\":96,\"name\":{\"106\":{},\"186\":{}},\"comment\":{}}],[\"casesplural\",{\"_index\":98,\"name\":{\"108\":{},\"188\":{}},\"comment\":{}}],[\"casessingular\",{\"_index\":97,\"name\":{\"107\":{},\"187\":{}},\"comment\":{}}],[\"chrivi\",{\"_index\":62,\"name\":{\"71\":{}},\"comment\":{}}],[\"collective\",{\"_index\":115,\"name\":{\"139\":{}},\"comment\":{}}],[\"columns\",{\"_index\":95,\"name\":{\"105\":{},\"185\":{}},\"comment\":{}}],[\"comparison\",{\"_index\":7,\"name\":{\"7\":{}},\"comment\":{}}],[\"conditional\",{\"_index\":153,\"name\":{\"199\":{}},\"comment\":{}}],[\"conjugationverb\",{\"_index\":145,\"name\":{\"190\":{}},\"comment\":{}}],[\"conjugationverbflat\",{\"_index\":144,\"name\":{\"189\":{}},\"comment\":{}}],[\"conjunction\",{\"_index\":104,\"name\":{\"117\":{}},\"comment\":{}}],[\"cyrillic\",{\"_index\":11,\"name\":{\"12\":{},\"36\":{}},\"comment\":{}}],[\"cyrillicetymological\",{\"_index\":26,\"name\":{\"28\":{}},\"comment\":{}}],[\"cyrilliciotated\",{\"_index\":27,\"name\":{\"29\":{}},\"comment\":{}}],[\"cyrilliciotatedextended\",{\"_index\":28,\"name\":{\"30\":{}},\"comment\":{}}],[\"cyrillicnorthern\",{\"_index\":29,\"name\":{\"31\":{}},\"comment\":{}}],[\"cyrillicslovianto\",{\"_index\":30,\"name\":{\"32\":{}},\"comment\":{}}],[\"cyrillicsouthern\",{\"_index\":31,\"name\":{\"33\":{}},\"comment\":{}}],[\"dat\",{\"_index\":87,\"name\":{\"97\":{}},\"comment\":{}}],[\"declensionadjective\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"declensionadjectiveflat\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"declensionnoun\",{\"_index\":81,\"name\":{\"90\":{}},\"comment\":{}}],[\"declensionnounflat\",{\"_index\":80,\"name\":{\"89\":{}},\"comment\":{}}],[\"declensionnounsimple\",{\"_index\":90,\"name\":{\"100\":{}},\"comment\":{}}],[\"declensionnumeral\",{\"_index\":92,\"name\":{\"102\":{}},\"comment\":{}}],[\"declensionnumeralflat\",{\"_index\":91,\"name\":{\"101\":{}},\"comment\":{}}],[\"declensionpronoun\",{\"_index\":142,\"name\":{\"182\":{}},\"comment\":{}}],[\"declensionpronounflat\",{\"_index\":141,\"name\":{\"181\":{}},\"comment\":{}}],[\"demonstrative\",{\"_index\":126,\"name\":{\"161\":{}},\"comment\":{}}],[\"differential\",{\"_index\":116,\"name\":{\"140\":{}},\"comment\":{}}],[\"djervi\",{\"_index\":45,\"name\":{\"54\":{}},\"comment\":{}}],[\"dobro\",{\"_index\":37,\"name\":{\"46\":{}},\"comment\":{}}],[\"dzelo\",{\"_index\":40,\"name\":{\"49\":{}},\"comment\":{}}],[\"feminine\",{\"_index\":110,\"name\":{\"129\":{}},\"comment\":{}}],[\"fita\",{\"_index\":75,\"name\":{\"84\":{}},\"comment\":{}}],[\"flavorisationbcp47\",{\"_index\":15,\"name\":{\"16\":{}},\"comment\":{}}],[\"flavorisationbcp47code\",{\"_index\":32,\"name\":{\"39\":{}},\"comment\":{}}],[\"fractional\",{\"_index\":117,\"name\":{\"141\":{}},\"comment\":{}}],[\"fritu\",{\"_index\":56,\"name\":{\"65\":{}},\"comment\":{}}],[\"future\",{\"_index\":152,\"name\":{\"198\":{}},\"comment\":{}}],[\"gen\",{\"_index\":85,\"name\":{\"95\":{}},\"comment\":{}}],[\"gender\",{\"_index\":107,\"name\":{\"126\":{}},\"comment\":{}}],[\"generic\",{\"_index\":9,\"name\":{\"10\":{},\"34\":{}},\"comment\":{}}],[\"gerund\",{\"_index\":159,\"name\":{\"205\":{}},\"comment\":{}}],[\"glagoli\",{\"_index\":36,\"name\":{\"45\":{}},\"comment\":{}}],[\"glagolitic\",{\"_index\":12,\"name\":{\"13\":{},\"37\":{},\"40\":{}},\"comment\":{}}],[\"glagoliticetymological\",{\"_index\":22,\"name\":{\"24\":{}},\"comment\":{}}],[\"glagoliticnorthern\",{\"_index\":23,\"name\":{\"25\":{}},\"comment\":{}}],[\"glagoliticslovianto\",{\"_index\":24,\"name\":{\"26\":{}},\"comment\":{}}],[\"glagoliticsouthern\",{\"_index\":25,\"name\":{\"27\":{}},\"comment\":{}}],[\"heru\",{\"_index\":57,\"name\":{\"66\":{}},\"comment\":{}}],[\"i\",{\"_index\":44,\"name\":{\"53\":{}},\"comment\":{}}],[\"imperative\",{\"_index\":154,\"name\":{\"200\":{}},\"comment\":{}}],[\"imperfect\",{\"_index\":149,\"name\":{\"195\":{}},\"comment\":{}}],[\"imperfective\",{\"_index\":137,\"name\":{\"176\":{}},\"comment\":{}}],[\"indeclinable\",{\"_index\":112,\"name\":{\"133\":{}},\"comment\":{}}],[\"indefinite\",{\"_index\":127,\"name\":{\"162\":{}},\"comment\":{}}],[\"infinitive\",{\"_index\":147,\"name\":{\"193\":{}},\"comment\":{}}],[\"initial_izhe\",{\"_index\":43,\"name\":{\"52\":{}},\"comment\":{}}],[\"ins\",{\"_index\":88,\"name\":{\"98\":{}},\"comment\":{}}],[\"interjection\",{\"_index\":105,\"name\":{\"120\":{}},\"comment\":{}}],[\"interrogative\",{\"_index\":128,\"name\":{\"163\":{}},\"comment\":{}}],[\"interslavicbcp47\",{\"_index\":8,\"name\":{\"8\":{}},\"comment\":{}}],[\"interslavicbcp47code\",{\"_index\":14,\"name\":{\"15\":{}},\"comment\":{}}],[\"intransitive\",{\"_index\":138,\"name\":{\"177\":{}},\"comment\":{}}],[\"iotated_big_yus\",{\"_index\":74,\"name\":{\"83\":{}},\"comment\":{}}],[\"iotated_small_yus\",{\"_index\":72,\"name\":{\"81\":{}},\"comment\":{}}],[\"ipa\",{\"_index\":13,\"name\":{\"14\":{},\"38\":{}},\"comment\":{}}],[\"izhe\",{\"_index\":42,\"name\":{\"51\":{}},\"comment\":{}}],[\"izhitsa\",{\"_index\":76,\"name\":{\"85\":{}},\"comment\":{}}],[\"kako\",{\"_index\":46,\"name\":{\"55\":{}},\"comment\":{}}],[\"latin\",{\"_index\":10,\"name\":{\"11\":{},\"35\":{}},\"comment\":{}}],[\"latinate_myslite\",{\"_index\":79,\"name\":{\"88\":{}},\"comment\":{}}],[\"latinetymological\",{\"_index\":17,\"name\":{\"19\":{}},\"comment\":{}}],[\"latinnorthern\",{\"_index\":18,\"name\":{\"20\":{}},\"comment\":{}}],[\"latinslovianto\",{\"_index\":19,\"name\":{\"21\":{}},\"comment\":{}}],[\"latinsouthern\",{\"_index\":20,\"name\":{\"22\":{}},\"comment\":{}}],[\"ljudije\",{\"_index\":47,\"name\":{\"56\":{}},\"comment\":{}}],[\"loc\",{\"_index\":86,\"name\":{\"96\":{}},\"comment\":{}}],[\"masculine\",{\"_index\":108,\"name\":{\"127\":{}},\"comment\":{}}],[\"multiplicative\",{\"_index\":118,\"name\":{\"142\":{}},\"comment\":{}}],[\"myslite\",{\"_index\":48,\"name\":{\"57\":{}},\"comment\":{}}],[\"name\",{\"_index\":102,\"name\":{\"113\":{},\"116\":{},\"119\":{},\"122\":{},\"125\":{},\"136\":{},\"147\":{},\"150\":{},\"153\":{},\"156\":{},\"159\":{},\"171\":{},\"174\":{}},\"comment\":{}}],[\"nashi\",{\"_index\":49,\"name\":{\"58\":{}},\"comment\":{}}],[\"neuter\",{\"_index\":111,\"name\":{\"130\":{}},\"comment\":{}}],[\"nom\",{\"_index\":83,\"name\":{\"93\":{}},\"comment\":{}}],[\"noun\",{\"_index\":106,\"name\":{\"123\":{}},\"comment\":{}}],[\"numeral\",{\"_index\":113,\"name\":{\"134\":{}},\"comment\":{}}],[\"onu\",{\"_index\":50,\"name\":{\"59\":{}},\"comment\":{}}],[\"ordinal\",{\"_index\":119,\"name\":{\"143\":{}},\"comment\":{}}],[\"otu\",{\"_index\":58,\"name\":{\"67\":{}},\"comment\":{}}],[\"parsepos\",{\"_index\":99,\"name\":{\"109\":{}},\"comment\":{}}],[\"particle\",{\"_index\":121,\"name\":{\"145\":{}},\"comment\":{}}],[\"partofspeech\",{\"_index\":100,\"name\":{\"110\":{}},\"comment\":{}}],[\"pe\",{\"_index\":59,\"name\":{\"68\":{}},\"comment\":{}}],[\"perfect\",{\"_index\":150,\"name\":{\"196\":{}},\"comment\":{}}],[\"perfective\",{\"_index\":139,\"name\":{\"178\":{}},\"comment\":{}}],[\"personal\",{\"_index\":129,\"name\":{\"164\":{}},\"comment\":{}}],[\"pfap\",{\"_index\":157,\"name\":{\"203\":{}},\"comment\":{}}],[\"pfpp\",{\"_index\":158,\"name\":{\"204\":{}},\"comment\":{}}],[\"phrase\",{\"_index\":122,\"name\":{\"148\":{}},\"comment\":{}}],[\"pluperfect\",{\"_index\":151,\"name\":{\"197\":{}},\"comment\":{}}],[\"plural\",{\"_index\":6,\"name\":{\"6\":{},\"132\":{}},\"comment\":{}}],[\"pokoji\",{\"_index\":51,\"name\":{\"60\":{}},\"comment\":{}}],[\"polish\",{\"_index\":21,\"name\":{\"23\":{}},\"comment\":{}}],[\"possessive\",{\"_index\":130,\"name\":{\"165\":{}},\"comment\":{}}],[\"prap\",{\"_index\":155,\"name\":{\"201\":{}},\"comment\":{}}],[\"prefix\",{\"_index\":123,\"name\":{\"151\":{}},\"comment\":{}}],[\"preposition\",{\"_index\":124,\"name\":{\"154\":{}},\"comment\":{}}],[\"present\",{\"_index\":148,\"name\":{\"194\":{}},\"comment\":{}}],[\"pronoun\",{\"_index\":125,\"name\":{\"157\":{}},\"comment\":{}}],[\"prpp\",{\"_index\":156,\"name\":{\"202\":{}},\"comment\":{}}],[\"reciprocal\",{\"_index\":131,\"name\":{\"166\":{}},\"comment\":{}}],[\"reflexive\",{\"_index\":132,\"name\":{\"167\":{},\"179\":{}},\"comment\":{}}],[\"relative\",{\"_index\":133,\"name\":{\"168\":{}},\"comment\":{}}],[\"ritsi\",{\"_index\":52,\"name\":{\"61\":{}},\"comment\":{}}],[\"sha\",{\"_index\":63,\"name\":{\"72\":{}},\"comment\":{}}],[\"shta\",{\"_index\":60,\"name\":{\"69\":{}},\"comment\":{}}],[\"shtapic\",{\"_index\":77,\"name\":{\"86\":{}},\"comment\":{}}],[\"singular\",{\"_index\":5,\"name\":{\"5\":{},\"131\":{}},\"comment\":{}}],[\"slovo\",{\"_index\":53,\"name\":{\"62\":{}},\"comment\":{}}],[\"small_yus\",{\"_index\":69,\"name\":{\"78\":{}},\"comment\":{}}],[\"small_yus_with_tail\",{\"_index\":70,\"name\":{\"79\":{}},\"comment\":{}}],[\"spidery_ha\",{\"_index\":67,\"name\":{\"76\":{}},\"comment\":{}}],[\"steenadjectiveparadigm\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"steennounparadigm\",{\"_index\":82,\"name\":{\"91\":{}},\"comment\":{}}],[\"steennumeralparadigm\",{\"_index\":93,\"name\":{\"103\":{}},\"comment\":{}}],[\"steenpronounparadigm\",{\"_index\":143,\"name\":{\"183\":{}},\"comment\":{}}],[\"steenverbparadigm\",{\"_index\":146,\"name\":{\"191\":{}},\"comment\":{}}],[\"substantivized\",{\"_index\":120,\"name\":{\"144\":{}},\"comment\":{}}],[\"suffix\",{\"_index\":134,\"name\":{\"169\":{}},\"comment\":{}}],[\"transitive\",{\"_index\":140,\"name\":{\"180\":{}},\"comment\":{}}],[\"transliterate\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"trokutasti_a\",{\"_index\":78,\"name\":{\"87\":{}},\"comment\":{}}],[\"tsi\",{\"_index\":61,\"name\":{\"70\":{}},\"comment\":{}}],[\"tvrido\",{\"_index\":54,\"name\":{\"63\":{}},\"comment\":{}}],[\"type\",{\"_index\":94,\"name\":{\"104\":{},\"137\":{},\"160\":{},\"184\":{}},\"comment\":{}}],[\"uku\",{\"_index\":55,\"name\":{\"64\":{}},\"comment\":{}}],[\"vedi\",{\"_index\":35,\"name\":{\"44\":{}},\"comment\":{}}],[\"verb\",{\"_index\":135,\"name\":{\"172\":{}},\"comment\":{}}],[\"voc\",{\"_index\":89,\"name\":{\"99\":{}},\"comment\":{}}],[\"yati\",{\"_index\":66,\"name\":{\"75\":{}},\"comment\":{}}],[\"yeri\",{\"_index\":65,\"name\":{\"74\":{}},\"comment\":{}}],[\"yeru\",{\"_index\":64,\"name\":{\"73\":{}},\"comment\":{}}],[\"yestu\",{\"_index\":38,\"name\":{\"47\":{}},\"comment\":{}}],[\"yo\",{\"_index\":71,\"name\":{\"80\":{}},\"comment\":{}}],[\"yu\",{\"_index\":68,\"name\":{\"77\":{}},\"comment\":{}}],[\"zemlja\",{\"_index\":41,\"name\":{\"50\":{}},\"comment\":{}}],[\"zhivete\",{\"_index\":39,\"name\":{\"48\":{}},\"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/functions/conjugationVerb.html b/functions/conjugationVerb.html new file mode 100644 index 0000000..89ad559 --- /dev/null +++ b/functions/conjugationVerb.html @@ -0,0 +1,89 @@ +conjugationVerb | @interslavic/utils
+
+ +
+ +
\ No newline at end of file diff --git a/functions/conjugationVerbFlat.html b/functions/conjugationVerbFlat.html new file mode 100644 index 0000000..4f4e123 --- /dev/null +++ b/functions/conjugationVerbFlat.html @@ -0,0 +1,89 @@ +conjugationVerbFlat | @interslavic/utils
+
+ +
+
+
+
+ +

Function conjugationVerbFlat

+
+
    + +
  • +
    +

    Parameters

    +
      +
    • +
      inf: string
    • +
    • +
      rawPts: string
    • +
    • +
      Optional partOfSpeech: string
    +

    Returns string[]

+
+
\ No newline at end of file diff --git a/functions/declensionAdjective.html b/functions/declensionAdjective.html new file mode 100644 index 0000000..fefb687 --- /dev/null +++ b/functions/declensionAdjective.html @@ -0,0 +1,89 @@ +declensionAdjective | @interslavic/utils
+
+ +
+ +
\ No newline at end of file diff --git a/functions/declensionAdjectiveFlat.html b/functions/declensionAdjectiveFlat.html new file mode 100644 index 0000000..495ca2f --- /dev/null +++ b/functions/declensionAdjectiveFlat.html @@ -0,0 +1,89 @@ +declensionAdjectiveFlat | @interslavic/utils
+
+ +
+
+
+
+ +

Function declensionAdjectiveFlat

+
+
    + +
  • +
    +

    Parameters

    +
      +
    • +
      adj: string
    • +
    • +
      postfix: string
    • +
    • +
      Optional partOfSpeech: string
    +

    Returns string[]

+
+
\ No newline at end of file diff --git a/functions/declensionNoun.html b/functions/declensionNoun.html new file mode 100644 index 0000000..be78763 --- /dev/null +++ b/functions/declensionNoun.html @@ -0,0 +1,97 @@ +declensionNoun | @interslavic/utils
+
+ +
+
+
+
+ +

Function declensionNoun

+
+
    + +
  • +
    +

    Parameters

    +
      +
    • +
      rawNoun: string
    • +
    • +
      rawAdd: string
    • +
    • +
      originGender: "masculine" | "feminine" | "neuter" | "masculineOrFeminine"
    • +
    • +
      animated: boolean
    • +
    • +
      isPlural: boolean
    • +
    • +
      isSingular: boolean
    • +
    • +
      isIndeclinable: boolean
    +

    Returns SteenNounParadigm | null

+
+
\ No newline at end of file diff --git a/functions/declensionNounFlat.html b/functions/declensionNounFlat.html new file mode 100644 index 0000000..96832bd --- /dev/null +++ b/functions/declensionNounFlat.html @@ -0,0 +1,97 @@ +declensionNounFlat | @interslavic/utils
+
+ +
+
+
+
+ +

Function declensionNounFlat

+
+
    + +
  • +
    +

    Parameters

    +
      +
    • +
      rawNoun: string
    • +
    • +
      rawAdd: string
    • +
    • +
      originGender: "masculine" | "feminine" | "neuter" | "masculineOrFeminine"
    • +
    • +
      animated: boolean
    • +
    • +
      isPlural: boolean
    • +
    • +
      isSingular: boolean
    • +
    • +
      isIndeclinable: boolean
    +

    Returns string[]

+
+
\ No newline at end of file diff --git a/functions/declensionNounSimple.html b/functions/declensionNounSimple.html new file mode 100644 index 0000000..228697c --- /dev/null +++ b/functions/declensionNounSimple.html @@ -0,0 +1,91 @@ +declensionNounSimple | @interslavic/utils
+
+ +
+
+
+
+ +

Function declensionNounSimple

+
+
+
+
\ No newline at end of file diff --git a/functions/declensionNumeral.html b/functions/declensionNumeral.html new file mode 100644 index 0000000..f2ebf18 --- /dev/null +++ b/functions/declensionNumeral.html @@ -0,0 +1,87 @@ +declensionNumeral | @interslavic/utils
+
+ +
+ +
\ No newline at end of file diff --git a/functions/declensionNumeralFlat.html b/functions/declensionNumeralFlat.html new file mode 100644 index 0000000..feca357 --- /dev/null +++ b/functions/declensionNumeralFlat.html @@ -0,0 +1,87 @@ +declensionNumeralFlat | @interslavic/utils
+
+ +
+ +
\ No newline at end of file diff --git a/functions/declensionPronoun.html b/functions/declensionPronoun.html new file mode 100644 index 0000000..43175b8 --- /dev/null +++ b/functions/declensionPronoun.html @@ -0,0 +1,87 @@ +declensionPronoun | @interslavic/utils
+
+ +
+ +
\ No newline at end of file diff --git a/functions/declensionPronounFlat.html b/functions/declensionPronounFlat.html new file mode 100644 index 0000000..ec9b70e --- /dev/null +++ b/functions/declensionPronounFlat.html @@ -0,0 +1,87 @@ +declensionPronounFlat | @interslavic/utils
+
+ +
+ +
\ No newline at end of file diff --git a/functions/parsePos.html b/functions/parsePos.html new file mode 100644 index 0000000..6245980 --- /dev/null +++ b/functions/parsePos.html @@ -0,0 +1,85 @@ +parsePos | @interslavic/utils
+
+ +
+ +
\ No newline at end of file diff --git a/functions/transliterate.html b/functions/transliterate.html new file mode 100644 index 0000000..e57cb62 --- /dev/null +++ b/functions/transliterate.html @@ -0,0 +1,89 @@ +transliterate | @interslavic/utils
+
+ +
+ +
\ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..fdeff60 --- /dev/null +++ b/index.html @@ -0,0 +1,134 @@ +@interslavic/utils
+
+ +
+
+
+
+

@interslavic/utils

+

@interslavic/utils

npm version +Build Status +Coverage Status

+

This package contains various JavaScript utilities for Interslavic language to work with BCP 47 codes, transliteration, declension, conjugation, etc.

+

Installation

To install in your project, use:

+
npm install @interslavic/utils --save
+
+

Overview

Reference is automatically generated at: https://medzuslovjansky.github.io/js-utils

+

Constants

    +
  • InterslavicBCP47 - primary BCP 47 codes for Interslavic like isv and its variants per used alphabets.
  • +
  • FlavorisationBCP47 - all possible BCP 47 codes for Interslavic with flavorisations applied like Northern, Southern, Slovianto, etc.
  • +
  • Glagolitic - collection of named constants for Glagolitic letters, e.g. Glagolitic.AZU, Glagolitic.BUKY, etc.
  • +
+

Functions

Transliteration

    +
  • transliterate - transliterate text from one alphabet to another using BCP 47 codes
  • +
+

Part of speech

    +
  • parsePos - parse tags like f., v.tr. impf., etc. into an object with convenient properties
  • +
+

Adjectives

    +
  • declensionAdjective - declension of adjectives into an object form.
  • +
  • declensionAdjectiveFlat - declension of adjectives into an array of strings.
  • +
+

Nouns

    +
  • declensionNoun - declension of nouns into an object form.
  • +
  • declensionNounFlat - declension of nouns into an array of strings.
  • +
+

Numerals

    +
  • declensionNumeral - declension of numerals into an object form.
  • +
  • declensionNumeralFlat - declension of numerals into an array of strings.
  • +
+

Pronouns

    +
  • declensionPronoun - declension of pronouns into an object form.
  • +
  • declensionPronounFlat - declension of pronouns into an array of strings.
  • +
+

Verbs

    +
  • conjugationVerb - conjugation of verbs into an object form.
  • +
  • conjugationVerbFlat - conjugation of verbs into an array of strings.
  • +
+
+
+
\ No newline at end of file diff --git a/interfaces/SteenNumeralParadigm.html b/interfaces/SteenNumeralParadigm.html new file mode 100644 index 0000000..a3043ab --- /dev/null +++ b/interfaces/SteenNumeralParadigm.html @@ -0,0 +1,131 @@ +SteenNumeralParadigm | @interslavic/utils
+
+ +
+
+
+
+ +

Interface SteenNumeralParadigm

+
+
+

Deprecated

+
+

Hierarchy

+
    +
  • SteenNumeralParadigm
+
+
+
+ +
+
+

Properties

+
+ +
cases?: Record<string, any>
+
+ +
casesPlural?: Record<string, any>
+
+ +
casesSingular?: Record<string, any>
+
+ +
columns?: string[]
+
+ +
type: string
+
+
\ No newline at end of file diff --git a/interfaces/SteenPronounParadigm.html b/interfaces/SteenPronounParadigm.html new file mode 100644 index 0000000..d4250f1 --- /dev/null +++ b/interfaces/SteenPronounParadigm.html @@ -0,0 +1,131 @@ +SteenPronounParadigm | @interslavic/utils
+
+ +
+
+
+
+ +

Interface SteenPronounParadigm

+
+
+

Deprecated

+
+

Hierarchy

+
    +
  • SteenPronounParadigm
+
+
+
+ +
+
+

Properties

+
+ +
cases?: Record<string, any>
+
+ +
casesPlural?: Record<string, any>
+
+ +
casesSingular?: Record<string, any>
+
+ +
columns?: string[]
+
+ +
type: string
+
+
\ No newline at end of file diff --git a/modules.html b/modules.html new file mode 100644 index 0000000..14c6a88 --- /dev/null +++ b/modules.html @@ -0,0 +1,122 @@ +@interslavic/utils
+
+ +
+ +
\ No newline at end of file diff --git a/types/Adjective.html b/types/Adjective.html new file mode 100644 index 0000000..7749e3d --- /dev/null +++ b/types/Adjective.html @@ -0,0 +1,81 @@ +Adjective | @interslavic/utils
+
+ +
+ +
\ No newline at end of file diff --git a/types/Adverb.html b/types/Adverb.html new file mode 100644 index 0000000..c2e7a58 --- /dev/null +++ b/types/Adverb.html @@ -0,0 +1,81 @@ +Adverb | @interslavic/utils
+
+ +
+ +
\ No newline at end of file diff --git a/types/Conjunction.html b/types/Conjunction.html new file mode 100644 index 0000000..22d1f42 --- /dev/null +++ b/types/Conjunction.html @@ -0,0 +1,81 @@ +Conjunction | @interslavic/utils
+
+ +
+ +
\ No newline at end of file diff --git a/types/FlavorisationBCP47Code.html b/types/FlavorisationBCP47Code.html new file mode 100644 index 0000000..2203608 --- /dev/null +++ b/types/FlavorisationBCP47Code.html @@ -0,0 +1,76 @@ +FlavorisationBCP47Code | @interslavic/utils
+
+ +
+ +
\ No newline at end of file diff --git a/types/Interjection.html b/types/Interjection.html new file mode 100644 index 0000000..86c1e66 --- /dev/null +++ b/types/Interjection.html @@ -0,0 +1,81 @@ +Interjection | @interslavic/utils
+
+ +
+ +
\ No newline at end of file diff --git a/types/InterslavicBCP47Code.html b/types/InterslavicBCP47Code.html new file mode 100644 index 0000000..ec8c8dd --- /dev/null +++ b/types/InterslavicBCP47Code.html @@ -0,0 +1,76 @@ +InterslavicBCP47Code | @interslavic/utils
+
+ +
+ +
\ No newline at end of file diff --git a/types/Noun.html b/types/Noun.html new file mode 100644 index 0000000..ec8b5e5 --- /dev/null +++ b/types/Noun.html @@ -0,0 +1,97 @@ +Noun | @interslavic/utils
+
+ +
+
+
+
+ +

Type alias Noun

+
Noun: {
    animate: boolean;
    feminine: boolean;
    gender: "masculine" | "feminine" | "neuter" | "masculineOrFeminine";
    indeclinable: boolean;
    masculine: boolean;
    name: "noun";
    neuter: boolean;
    plural: boolean;
    singular: boolean;
}
+
+

Type declaration

+
    +
  • +
    animate: boolean
  • +
  • +
    feminine: boolean
  • +
  • +
    gender: "masculine" | "feminine" | "neuter" | "masculineOrFeminine"
  • +
  • +
    indeclinable: boolean
  • +
  • +
    masculine: boolean
  • +
  • +
    name: "noun"
  • +
  • +
    neuter: boolean
  • +
  • +
    plural: boolean
  • +
  • +
    singular: boolean
+
+
\ No newline at end of file diff --git a/types/Numeral.html b/types/Numeral.html new file mode 100644 index 0000000..bc0d792 --- /dev/null +++ b/types/Numeral.html @@ -0,0 +1,97 @@ +Numeral | @interslavic/utils
+
+ +
+
+
+
+ +

Type alias Numeral

+
Numeral: {
    cardinal: boolean;
    collective: boolean;
    differential: boolean;
    fractional: boolean;
    multiplicative: boolean;
    name: "numeral";
    ordinal: boolean;
    substantivized: boolean;
    type: "cardinal" | "collective" | "differential" | "fractional" | "multiplicative" | "ordinal" | "substantivized";
}
+
+

Type declaration

+
    +
  • +
    cardinal: boolean
  • +
  • +
    collective: boolean
  • +
  • +
    differential: boolean
  • +
  • +
    fractional: boolean
  • +
  • +
    multiplicative: boolean
  • +
  • +
    name: "numeral"
  • +
  • +
    ordinal: boolean
  • +
  • +
    substantivized: boolean
  • +
  • +
    type: "cardinal" | "collective" | "differential" | "fractional" | "multiplicative" | "ordinal" | "substantivized"
+
+
\ No newline at end of file diff --git a/types/PartOfSpeech.html b/types/PartOfSpeech.html new file mode 100644 index 0000000..371cc33 --- /dev/null +++ b/types/PartOfSpeech.html @@ -0,0 +1,76 @@ +PartOfSpeech | @interslavic/utils
+
+ +
+ +
\ No newline at end of file diff --git a/types/Particle.html b/types/Particle.html new file mode 100644 index 0000000..8840e72 --- /dev/null +++ b/types/Particle.html @@ -0,0 +1,81 @@ +Particle | @interslavic/utils
+
+ +
+ +
\ No newline at end of file diff --git a/types/Phrase.html b/types/Phrase.html new file mode 100644 index 0000000..9c2956a --- /dev/null +++ b/types/Phrase.html @@ -0,0 +1,81 @@ +Phrase | @interslavic/utils
+
+ +
+ +
\ No newline at end of file diff --git a/types/Prefix.html b/types/Prefix.html new file mode 100644 index 0000000..1917d5a --- /dev/null +++ b/types/Prefix.html @@ -0,0 +1,81 @@ +Prefix | @interslavic/utils
+
+ +
+ +
\ No newline at end of file diff --git a/types/Preposition.html b/types/Preposition.html new file mode 100644 index 0000000..6594154 --- /dev/null +++ b/types/Preposition.html @@ -0,0 +1,81 @@ +Preposition | @interslavic/utils
+
+ +
+ +
\ No newline at end of file diff --git a/types/Pronoun.html b/types/Pronoun.html new file mode 100644 index 0000000..c60de86 --- /dev/null +++ b/types/Pronoun.html @@ -0,0 +1,99 @@ +Pronoun | @interslavic/utils
+
+ +
+
+
+
+ +

Type alias Pronoun

+
Pronoun: {
    demonstrative: boolean;
    indefinite: boolean;
    interrogative: boolean;
    name: "pronoun";
    personal: boolean;
    possessive: boolean;
    reciprocal: boolean;
    reflexive: boolean;
    relative: boolean;
    type: "demonstrative" | "indefinite" | "interrogative" | "personal" | "possessive" | "reciprocal" | "reflexive" | "relative";
}
+
+

Type declaration

+
    +
  • +
    demonstrative: boolean
  • +
  • +
    indefinite: boolean
  • +
  • +
    interrogative: boolean
  • +
  • +
    name: "pronoun"
  • +
  • +
    personal: boolean
  • +
  • +
    possessive: boolean
  • +
  • +
    reciprocal: boolean
  • +
  • +
    reflexive: boolean
  • +
  • +
    relative: boolean
  • +
  • +
    type: "demonstrative" | "indefinite" | "interrogative" | "personal" | "possessive" | "reciprocal" | "reflexive" | "relative"
+
+
\ No newline at end of file diff --git a/types/SteenAdjectiveParadigm.html b/types/SteenAdjectiveParadigm.html new file mode 100644 index 0000000..af06f14 --- /dev/null +++ b/types/SteenAdjectiveParadigm.html @@ -0,0 +1,87 @@ +SteenAdjectiveParadigm | @interslavic/utils
+
+ +
+
+
+
+ +

Type alias SteenAdjectiveParadigm

+
SteenAdjectiveParadigm: {
    comparison: SteenAdjectiveParadigm$Comparison;
    plural: SteenAdjectiveParadigm$Case;
    singular: SteenAdjectiveParadigm$Case;
}
+
+

Type declaration

+
    +
  • +
    comparison: SteenAdjectiveParadigm$Comparison
  • +
  • +
    plural: SteenAdjectiveParadigm$Case
  • +
  • +
    singular: SteenAdjectiveParadigm$Case
+
+

Deprecated

+
+
\ No newline at end of file diff --git a/types/SteenNounParadigm.html b/types/SteenNounParadigm.html new file mode 100644 index 0000000..9d1257d --- /dev/null +++ b/types/SteenNounParadigm.html @@ -0,0 +1,95 @@ +SteenNounParadigm | @interslavic/utils
+
+ +
+
+
+
+ +

Type alias SteenNounParadigm

+
SteenNounParadigm: {
    acc: [string | null, string | null];
    dat: [string | null, string | null];
    gen: [string | null, string | null];
    ins: [string | null, string | null];
    loc: [string | null, string | null];
    nom: [string | null, string | null];
    voc: [string | null, string | null];
}
+
+

Type declaration

+
    +
  • +
    acc: [string | null, string | null]
  • +
  • +
    dat: [string | null, string | null]
  • +
  • +
    gen: [string | null, string | null]
  • +
  • +
    ins: [string | null, string | null]
  • +
  • +
    loc: [string | null, string | null]
  • +
  • +
    nom: [string | null, string | null]
  • +
  • +
    voc: [string | null, string | null]
+
+

Deprecated

+
+
\ No newline at end of file diff --git a/types/SteenVerbParadigm.html b/types/SteenVerbParadigm.html new file mode 100644 index 0000000..40dfaff --- /dev/null +++ b/types/SteenVerbParadigm.html @@ -0,0 +1,131 @@ +SteenVerbParadigm | @interslavic/utils
+
+ +
+
+
+
+ +

Type alias SteenVerbParadigm

+
SteenVerbParadigm: {
    conditional: [string, string, string, string, string, string, string, string, string?];
    future: [string, string, string, string, string, string];
    gerund: string;
    imperative: string;
    imperfect: [string, string, string, string, string, string];
    infinitive: string;
    perfect: [string, string, string, string, string, string, string, string, string?];
    pfap?: string;
    pfpp?: string;
    pluperfect: [string, string, string, string, string, string, string, string, string?];
    prap?: string;
    present: [string, string, string, string, string, string, string?];
    prpp?: string;
}
+
+

Type declaration

+
    +
  • +
    conditional: [string, string, string, string, string, string, string, string, string?]
  • +
  • +
    future: [string, string, string, string, string, string]
  • +
  • +
    gerund: string
  • +
  • +
    imperative: string
  • +
  • +
    imperfect: [string, string, string, string, string, string]
  • +
  • +
    infinitive: string
  • +
  • +
    perfect: [string, string, string, string, string, string, string, string, string?]
  • +
  • +
    Optional pfap?: string
    +

    Past active participle, derived from perfective verbs.

    +
    +
    +

    Example

    'sdělavši'
    +
    +
  • +
  • +
    Optional pfpp?: string
    +

    Past passive participle (bookish)

    +
    +
    +

    Example

    'dělany'
    +
    +
  • +
  • +
    pluperfect: [string, string, string, string, string, string, string, string, string?]
  • +
  • +
    Optional prap?: string
    +

    Present active participle, derived from imperfective verbs.

    +
    +
    +

    Example

    'dělajući'
    +
    +
  • +
  • +
    present: [string, string, string, string, string, string, string?]
  • +
  • +
    Optional prpp?: string
    +

    Present passive participle (uncommon)

    +
    +
    +

    Example

    'dělajemy'
    +
    +
+
+

Deprecated

+
+
\ No newline at end of file diff --git a/types/Suffix.html b/types/Suffix.html new file mode 100644 index 0000000..482d167 --- /dev/null +++ b/types/Suffix.html @@ -0,0 +1,81 @@ +Suffix | @interslavic/utils
+
+ +
+ +
\ No newline at end of file diff --git a/types/Verb.html b/types/Verb.html new file mode 100644 index 0000000..0d9511e --- /dev/null +++ b/types/Verb.html @@ -0,0 +1,93 @@ +Verb | @interslavic/utils
+
+ +
+
+
+
+ +

Type alias Verb

+
Verb: {
    auxiliary: boolean;
    imperfective: boolean;
    intransitive: boolean;
    name: "verb";
    perfective: boolean;
    reflexive: boolean;
    transitive: boolean;
}
+
+

Type declaration

+
    +
  • +
    auxiliary: boolean
  • +
  • +
    imperfective: boolean
  • +
  • +
    intransitive: boolean
  • +
  • +
    name: "verb"
  • +
  • +
    perfective: boolean
  • +
  • +
    reflexive: boolean
  • +
  • +
    transitive: boolean
+
+
\ No newline at end of file diff --git a/variables/FlavorisationBCP47.html b/variables/FlavorisationBCP47.html new file mode 100644 index 0000000..76c71cb --- /dev/null +++ b/variables/FlavorisationBCP47.html @@ -0,0 +1,121 @@ +FlavorisationBCP47 | @interslavic/utils
+
+ +
+
+
+
+ +

Variable FlavorisationBCP47Const

+
FlavorisationBCP47: {
    ASCII: "isv-Latn-x-ascii";
    Cyrillic: "isv-Cyrl";
    CyrillicEtymological: "isv-Cyrl-x-etymolog";
    CyrillicIotated: "isv-Cyrl-x-iotated";
    CyrillicIotatedExtended: "isv-Cyrl-x-iotated-ext";
    CyrillicNorthern: "isv-Cyrl-x-northern";
    CyrillicSlovianto: "isv-Cyrl-x-sloviant";
    CyrillicSouthern: "isv-Cyrl-x-southern";
    Generic: "isv";
    Glagolitic: "isv-Glag";
    GlagoliticEtymological: "isv-Glag-x-etymolog";
    GlagoliticNorthern: "isv-Glag-x-northern";
    GlagoliticSlovianto: "isv-Glag-x-sloviant";
    GlagoliticSouthern: "isv-Glag-x-southern";
    IPA: "isv-x-fonipa";
    Latin: "isv-Latn";
    LatinEtymological: "isv-Latn-x-etymolog";
    LatinNorthern: "isv-Latn-x-northern";
    LatinSlovianto: "isv-Latn-x-sloviant";
    LatinSouthern: "isv-Latn-x-southern";
    Polish: "isv-Latn-PL";
} = ...
+
+

Type declaration

+
    +
  • +
    Readonly ASCII: "isv-Latn-x-ascii"
  • +
  • +
    Readonly Cyrillic: "isv-Cyrl"
  • +
  • +
    Readonly CyrillicEtymological: "isv-Cyrl-x-etymolog"
  • +
  • +
    Readonly CyrillicIotated: "isv-Cyrl-x-iotated"
  • +
  • +
    Readonly CyrillicIotatedExtended: "isv-Cyrl-x-iotated-ext"
  • +
  • +
    Readonly CyrillicNorthern: "isv-Cyrl-x-northern"
  • +
  • +
    Readonly CyrillicSlovianto: "isv-Cyrl-x-sloviant"
  • +
  • +
    Readonly CyrillicSouthern: "isv-Cyrl-x-southern"
  • +
  • +
    Readonly Generic: "isv"
  • +
  • +
    Readonly Glagolitic: "isv-Glag"
  • +
  • +
    Readonly GlagoliticEtymological: "isv-Glag-x-etymolog"
  • +
  • +
    Readonly GlagoliticNorthern: "isv-Glag-x-northern"
  • +
  • +
    Readonly GlagoliticSlovianto: "isv-Glag-x-sloviant"
  • +
  • +
    Readonly GlagoliticSouthern: "isv-Glag-x-southern"
  • +
  • +
    Readonly IPA: "isv-x-fonipa"
  • +
  • +
    Readonly Latin: "isv-Latn"
  • +
  • +
    Readonly LatinEtymological: "isv-Latn-x-etymolog"
  • +
  • +
    Readonly LatinNorthern: "isv-Latn-x-northern"
  • +
  • +
    Readonly LatinSlovianto: "isv-Latn-x-sloviant"
  • +
  • +
    Readonly LatinSouthern: "isv-Latn-x-southern"
  • +
  • +
    Readonly Polish: "isv-Latn-PL"
+
+
\ No newline at end of file diff --git a/variables/Glagolitic.html b/variables/Glagolitic.html new file mode 100644 index 0000000..32e66e7 --- /dev/null +++ b/variables/Glagolitic.html @@ -0,0 +1,173 @@ +Glagolitic | @interslavic/utils
+
+ +
+
+
+
+ +

Variable GlagoliticConst

+
Glagolitic: {
    Azu: string;
    Big_Yus: string;
    Buky: string;
    Chrivi: string;
    Djervi: string;
    Dobro: string;
    Dzelo: string;
    Fita: string;
    Fritu: string;
    Glagoli: string;
    Heru: string;
    I: string;
    Initial_Izhe: string;
    Iotated_Big_Yus: string;
    Iotated_Small_Yus: string;
    Izhe: string;
    Izhitsa: string;
    Kako: string;
    Latinate_Myslite: string;
    Ljudije: string;
    Myslite: string;
    Nashi: string;
    Onu: string;
    Otu: string;
    Pe: string;
    Pokoji: string;
    Ritsi: string;
    Sha: string;
    Shta: string;
    Shtapic: string;
    Slovo: string;
    Small_Yus: string;
    Small_Yus_with_Tail: string;
    Spidery_Ha: string;
    Trokutasti_A: string;
    Tsi: string;
    Tvrido: string;
    Uku: string;
    Vedi: string;
    Yati: string;
    Yeri: string;
    Yeru: string;
    Yestu: string;
    Yo: string;
    Yu: string;
    Zemlja: string;
    Zhivete: string;
} = ...
+
+

Type declaration

+
    +
  • +
    Azu: string
  • +
  • +
    Big_Yus: string
  • +
  • +
    Buky: string
  • +
  • +
    Chrivi: string
  • +
  • +
    Djervi: string
  • +
  • +
    Dobro: string
  • +
  • +
    Dzelo: string
  • +
  • +
    Fita: string
  • +
  • +
    Fritu: string
  • +
  • +
    Glagoli: string
  • +
  • +
    Heru: string
  • +
  • +
    I: string
  • +
  • +
    Initial_Izhe: string
  • +
  • +
    Iotated_Big_Yus: string
  • +
  • +
    Iotated_Small_Yus: string
  • +
  • +
    Izhe: string
  • +
  • +
    Izhitsa: string
  • +
  • +
    Kako: string
  • +
  • +
    Latinate_Myslite: string
  • +
  • +
    Ljudije: string
  • +
  • +
    Myslite: string
  • +
  • +
    Nashi: string
  • +
  • +
    Onu: string
  • +
  • +
    Otu: string
  • +
  • +
    Pe: string
  • +
  • +
    Pokoji: string
  • +
  • +
    Ritsi: string
  • +
  • +
    Sha: string
  • +
  • +
    Shta: string
  • +
  • +
    Shtapic: string
  • +
  • +
    Slovo: string
  • +
  • +
    Small_Yus: string
  • +
  • +
    Small_Yus_with_Tail: string
  • +
  • +
    Spidery_Ha: string
  • +
  • +
    Trokutasti_A: string
  • +
  • +
    Tsi: string
  • +
  • +
    Tvrido: string
  • +
  • +
    Uku: string
  • +
  • +
    Vedi: string
  • +
  • +
    Yati: string
  • +
  • +
    Yeri: string
  • +
  • +
    Yeru: string
  • +
  • +
    Yestu: string
  • +
  • +
    Yo: string
  • +
  • +
    Yu: string
  • +
  • +
    Zemlja: string
  • +
  • +
    Zhivete: string
+
+
\ No newline at end of file diff --git a/variables/InterslavicBCP47.html b/variables/InterslavicBCP47.html new file mode 100644 index 0000000..0ecac48 --- /dev/null +++ b/variables/InterslavicBCP47.html @@ -0,0 +1,89 @@ +InterslavicBCP47 | @interslavic/utils
+
+ +
+
+
+
+ +

Variable InterslavicBCP47Const

+
InterslavicBCP47: {
    Cyrillic: "isv-Cyrl";
    Generic: "isv";
    Glagolitic: "isv-Glag";
    IPA: "isv-x-fonipa";
    Latin: "isv-Latn";
} = ...
+
+

Type declaration

+
    +
  • +
    Readonly Cyrillic: "isv-Cyrl"
  • +
  • +
    Readonly Generic: "isv"
  • +
  • +
    Readonly Glagolitic: "isv-Glag"
  • +
  • +
    Readonly IPA: "isv-x-fonipa"
  • +
  • +
    Readonly Latin: "isv-Latn"
+
+
\ No newline at end of file