From 5125c78144ac4379da9272eb44a5c8665f6930d1 Mon Sep 17 00:00:00 2001 From: Nikola Hristov Date: Sun, 9 Jun 2024 07:26:05 +0300 Subject: [PATCH] AstroCritters/v2.1.10 --- CHANGELOG.md | 4 + Documentation/.nojekyll | 2 +- Documentation/assets/highlight.css | 193 +- Documentation/assets/icons.js | 2 +- Documentation/assets/icons.svg | 182 +- Documentation/assets/navigation.js | 2 +- Documentation/assets/search.js | 6 +- Documentation/assets/style.css | 1710 ++++++++--------- .../functions/Function_Integration.Merge.html | 576 +----- .../Function_Integration.integration.html | 347 +--- Documentation/functions/Merge.merge.html | 570 +----- Documentation/index.html | 800 +------- .../interfaces/Critters.Interface-1.html | 1455 +------------- .../interfaces/Critters.Interface.html | 958 +-------- .../interfaces/Integration.Interface.html | 356 +--- .../interfaces/Option.Interface.html | 903 +-------- Documentation/modules/Critters.html | 337 +--- .../modules/Function_Integration.html | 351 +--- Documentation/modules/Integration.html | 312 +-- Documentation/modules/Merge.html | 312 +-- Documentation/modules/Option.html | 327 +--- .../variables/Critters.critters.html | 300 +-- .../Function_Integration.Default.html | 1392 +------------- .../Function_Integration.Search.html | 304 +-- Documentation/variables/Option.option.html | 1384 +------------ Target/Function/Integration.d.ts | 24 +- Target/Variable/Option.d.ts | 22 +- package.json | 2 +- 28 files changed, 1013 insertions(+), 12120 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 849e908..088619c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.1.10 + +- Cleanup + ## 2.1.9 - Cleanup diff --git a/Documentation/.nojekyll b/Documentation/.nojekyll index 9ac476e..e2ac661 100644 --- a/Documentation/.nojekyll +++ b/Documentation/.nojekyll @@ -1 +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. +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/Documentation/assets/highlight.css b/Documentation/assets/highlight.css index bd7727b..146cd45 100644 --- a/Documentation/assets/highlight.css +++ b/Documentation/assets/highlight.css @@ -1,119 +1,92 @@ :root { - --light-hl-0: #795e26; - --dark-hl-0: #dcdcaa; - --light-hl-1: #000000; - --dark-hl-1: #d4d4d4; - --light-hl-2: #a31515; - --dark-hl-2: #ce9178; - --light-hl-3: #0000ff; - --dark-hl-3: #569cd6; - --light-hl-4: #af00db; - --dark-hl-4: #c586c0; - --light-hl-5: #001080; - --dark-hl-5: #9cdcfe; - --light-hl-6: #008000; - --dark-hl-6: #6a9955; - --light-hl-7: #267f99; - --dark-hl-7: #4ec9b0; - --light-hl-8: #098658; - --dark-hl-8: #b5cea8; - --light-hl-9: #000000; - --dark-hl-9: #c8c8c8; - --light-code-background: #ffffff; - --dark-code-background: #1e1e1e; + --light-hl-0: #795E26; + --dark-hl-0: #DCDCAA; + --light-hl-1: #000000; + --dark-hl-1: #D4D4D4; + --light-hl-2: #A31515; + --dark-hl-2: #CE9178; + --light-hl-3: #0000FF; + --dark-hl-3: #569CD6; + --light-hl-4: #AF00DB; + --dark-hl-4: #C586C0; + --light-hl-5: #001080; + --dark-hl-5: #9CDCFE; + --light-hl-6: #008000; + --dark-hl-6: #6A9955; + --light-hl-7: #267F99; + --dark-hl-7: #4EC9B0; + --light-hl-8: #098658; + --dark-hl-8: #B5CEA8; + --light-hl-9: #000000; + --dark-hl-9: #C8C8C8; + --light-code-background: #FFFFFF; + --dark-code-background: #1E1E1E; } -@media (prefers-color-scheme: light) { - :root { - --hl-0: var(--light-hl-0); - --hl-1: var(--light-hl-1); - --hl-2: var(--light-hl-2); - --hl-3: var(--light-hl-3); - --hl-4: var(--light-hl-4); - --hl-5: var(--light-hl-5); - --hl-6: var(--light-hl-6); - --hl-7: var(--light-hl-7); - --hl-8: var(--light-hl-8); - --hl-9: var(--light-hl-9); - --code-background: var(--light-code-background); - } -} +@media (prefers-color-scheme: light) { :root { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --hl-8: var(--light-hl-8); + --hl-9: var(--light-hl-9); + --code-background: var(--light-code-background); +} } -@media (prefers-color-scheme: dark) { - :root { - --hl-0: var(--dark-hl-0); - --hl-1: var(--dark-hl-1); - --hl-2: var(--dark-hl-2); - --hl-3: var(--dark-hl-3); - --hl-4: var(--dark-hl-4); - --hl-5: var(--dark-hl-5); - --hl-6: var(--dark-hl-6); - --hl-7: var(--dark-hl-7); - --hl-8: var(--dark-hl-8); - --hl-9: var(--dark-hl-9); - --code-background: var(--dark-code-background); - } -} +@media (prefers-color-scheme: dark) { :root { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --hl-8: var(--dark-hl-8); + --hl-9: var(--dark-hl-9); + --code-background: var(--dark-code-background); +} } -:root[data-theme="light"] { - --hl-0: var(--light-hl-0); - --hl-1: var(--light-hl-1); - --hl-2: var(--light-hl-2); - --hl-3: var(--light-hl-3); - --hl-4: var(--light-hl-4); - --hl-5: var(--light-hl-5); - --hl-6: var(--light-hl-6); - --hl-7: var(--light-hl-7); - --hl-8: var(--light-hl-8); - --hl-9: var(--light-hl-9); - --code-background: var(--light-code-background); +:root[data-theme='light'] { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --hl-8: var(--light-hl-8); + --hl-9: var(--light-hl-9); + --code-background: var(--light-code-background); } -:root[data-theme="dark"] { - --hl-0: var(--dark-hl-0); - --hl-1: var(--dark-hl-1); - --hl-2: var(--dark-hl-2); - --hl-3: var(--dark-hl-3); - --hl-4: var(--dark-hl-4); - --hl-5: var(--dark-hl-5); - --hl-6: var(--dark-hl-6); - --hl-7: var(--dark-hl-7); - --hl-8: var(--dark-hl-8); - --hl-9: var(--dark-hl-9); - --code-background: var(--dark-code-background); +:root[data-theme='dark'] { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --hl-8: var(--dark-hl-8); + --hl-9: var(--dark-hl-9); + --code-background: var(--dark-code-background); } -.hl-0 { - color: var(--hl-0); -} -.hl-1 { - color: var(--hl-1); -} -.hl-2 { - color: var(--hl-2); -} -.hl-3 { - color: var(--hl-3); -} -.hl-4 { - color: var(--hl-4); -} -.hl-5 { - color: var(--hl-5); -} -.hl-6 { - color: var(--hl-6); -} -.hl-7 { - color: var(--hl-7); -} -.hl-8 { - color: var(--hl-8); -} -.hl-9 { - color: var(--hl-9); -} -pre, -code { - background: var(--code-background); -} +.hl-0 { color: var(--hl-0); } +.hl-1 { color: var(--hl-1); } +.hl-2 { color: var(--hl-2); } +.hl-3 { color: var(--hl-3); } +.hl-4 { color: var(--hl-4); } +.hl-5 { color: var(--hl-5); } +.hl-6 { color: var(--hl-6); } +.hl-7 { color: var(--hl-7); } +.hl-8 { color: var(--hl-8); } +.hl-9 { color: var(--hl-9); } +pre, code { background: var(--code-background); } diff --git a/Documentation/assets/icons.js b/Documentation/assets/icons.js index 714bca2..b79c9e8 100644 --- a/Documentation/assets/icons.js +++ b/Documentation/assets/icons.js @@ -12,4 +12,4 @@ }); } } -})(document.body.appendChild(document.createElementNS('http://www.w3.org/2000/svg', 'svg'))) +})(document.body.appendChild(document.createElementNS('http://www.w3.org/2000/svg', 'svg'))) \ No newline at end of file diff --git a/Documentation/assets/icons.svg b/Documentation/assets/icons.svg index 7aea288..7dead61 100644 --- a/Documentation/assets/icons.svg +++ b/Documentation/assets/icons.svg @@ -1,181 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/Documentation/assets/navigation.js b/Documentation/assets/navigation.js index 8f8244a..6bdbe6f 100644 --- a/Documentation/assets/navigation.js +++ b/Documentation/assets/navigation.js @@ -1 +1 @@ -window.navigationData = "data:application/octet-stream;base64,H4sIAAAAAAAACq2TzW6DMBCE32XPtFFTwoFrq0o5RD30GKHINUuwAiYySxQpyrtH4dcE26VVb8iMPs/OrLcXIDwThPCmBBGqEjw4MkohhLyIqwzLRffnOaU8Aw8OQsYQLj3gqchihRLCbY9ZS0KVMI4DR3RHGqqXPUBXwdX7M+vpxUXjkwFPTAn2PRqRG2d9XV4jjfRRSU6ikIv7zXvF7t/T2DrVTlPNivAdE1ZlZPJpZLb6ieXB8BcyxdPZwEbu4G1Q7bVSkhZiwdXqMS3wNZowpfgDU9gyDfxRVc6GfluMex91mmO9I3uOnS9DYBZHua2IBpEbk9cdfB7N0TTn/5BKC5r13osHM8OatpTC4Kp+m9EN1RZjtcgEAAA=" +window.navigationData = "data:application/octet-stream;base64,H4sIAAAAAAAACq2TzW6DMBCE32XPtFFTwoFrq0o5RD30GKHINUuwAiYySxQpyrtH4dcE26VVb8iMPs/OrLcXIDwThPCmBBGqEjw4MkohhLyIqwzLRffnOaU8Aw8OQsYQLj3gqchihRLCbY9ZS0KVMI4DR3RHGqqXPUBXwdX7M+vpxUXjkwFPTAn2PRqRG2d9XV4jjfRRSU6ikIv7zXvF7t/T2DrVTlPNivAdE1ZlZPJpZLb6ieXB8BcyxdPZwEbu4G1Q7bVSkhZiwdXqMS3wNZowpfgDU9gyDfxRVc6GfluMex91mmO9I3uOnS9DYBZHua2IBpEbk9cdfB7N0TTn/5BKC5r13osHM8OatpTC4Kp+m9EN1RZjtcgEAAA=" \ No newline at end of file diff --git a/Documentation/assets/search.js b/Documentation/assets/search.js index 5b0da46..972dc0b 100644 --- a/Documentation/assets/search.js +++ b/Documentation/assets/search.js @@ -1,5 +1 @@ -<<<<<<< HEAD -window.searchData = "data:application/octet-stream;base64,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"; -======= -window.searchData = "data:application/octet-stream;base64,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"; ->>>>>>> Current +window.searchData = "data:application/octet-stream;base64,H4sIAAAAAAAACs1cW2/juhH+L8pLH7Q+Em+i8la0Z4EFTtGiW7QPRrDQ2nIirGIHsr2XBvvfC0qkNGNzdHWxeZJjcWY+zjccXjzMa1Advh2D+/Vr8KXYb4N7Fgb77DkP7oO/v5yKwz4Ig3NVBvfB82F7LvPjb83Xq6fTcxmEwabMjsf8GNwHwc/Q6eCdkgNW8jWriuwzUHOgtIXBS1bl+1MHpNOvpOSqNfHp0+nHSz7KxF3bts+SlQAG44iJ1t77opxkbWUFRphcWXyE5b9km6dppp3ELNtL3dxYt3rfxWISDgud8MTHPKs2T0vArFoVUzENkPT+UG7zahG0VsWNof0jO03zmRVYHrl/HB4fJzqlFVlu/c+b0UnIWW9Ffs3Iacy3ITEtFCx20hmbw/NLWRyf8u0STKsLRZMBDo2jrCgXImxV3ADbrSm14NzfE5MjUub6STnyXO6KcrEvgZY36U6Hz32lFnm07S3h1H/m2TJ/WgVv0ZUGWvtXtMSNdScJD/6nOpyW4XQa3qIPa2ztn2yJE5tuklP68bhwZLcq3qIfG3Dub73Ej7af1Nr6Kds/LvRkp+MtutKic18siknXU8KZv3/flOftNLidzA02SlVxOuXVcdoqvBOahYDR5t3e2b0Yu3ve0P1oVW1onQB7CwnglV14fdif8mqXbTrKCvdN67K2zcTdej8zQ3buxtLSdWHU7nnY7tXW+XTcviuO74r9U14Vp3qcTwaBtmCDGK72X7eAcDk4B1H4RuYtgKCDlEEUV6cot4BwsTMcBOHZFt4CxsX2eBCGZ288E8boJNDmm5FpwJNwUJdP1TRDd06g35y3k71T6VjTw/sKj3gDmnDBNv98fpyCwwn8AhfUplet3GgHNJAJBxT73WEKCNv+F3TfWB7eqnuka8hE979llTf1UCBs+1/QfWN5eA3uka4hE93Pq+rgzXkUCifwCxxQmx5eOXvEG9C+VaJp81hlJ9+PLOBd71pxdPqGCkdmcIjvJhPGu3jZlPFCrJ1IS3cvfefXvQGDDZ8/l8WGWrr1mIdyS0Hk3095tc/KaRCA1FIAxb4s9vm/nqr8+HQot9NwXAsvhfNc7Ivn8/PvtoMfi/9OC8M7v4LFsVKd9/nHw7maOCrusOBi7+TVY/7x9KPMj095fvLut3pccy29FFC23RYmlWTlbFSUiuWU5eUhmxjQndBS8/vDcVMVL6f3WVl+zjZfpuHwSN9moL8/7KcShAVvRMsMHBeSS4HspiPY3cj0l/zHrsqe84nmodhSCOZHvio/TkQApJYCKA+Pf+Rf84kTH5BaCqDKt+dN/qEO7ibzTIPilb+BV4gjg16f9P2k3mu8W7f+zUwOVyvW+tvetaq6mJ1aFbvzvj5WcUqeCVUAaoPBh+69VQZXvFdgXaNPY9fZ4Ez2r/kuO5cnz5GsV6tt3t8dL+jJPwUM2h8qf/LBcAomVkONxdJfHNUHaGat1Ghg/aVT05DdmMDRhVUjUM6ss5oLdajsajTiuVVYs4EPFGXdCjhRozUadu9uc8F4Iiu4RiMbKOhagI2s7xqNbaDc69eO9rHFYGNCcFFt2FzE40rFxsOfWzk2G/9AIdkS5P/nYBldZja5DwuqzuZ3ZrAI7U1TMb5EbQYbMyvWZvemt4DtLdMwsrxtOgVzqt1m96K/+O0t+39sadx0AuZVys3uyEDh3FvmYGxZ3XQO5lbZze7KUNHdW6ZhdEnedB5mV+iN7sxQwd6SzTtd9zZ+/zZUNzYNHzgBmrYpblovO/8RxOFbd3LmNU2dyc2yXHjO0wbsA5E5KB7CoNhv8+/B/WvwNa+O5sv7gK34Kg3CYFfk5dbcXGwAhuag+tmoe7Dv/p1vTofKtGia/BYF4ToKebKKdPLwEK6dRP2i/qJuFlPNYtSMBeE6DmOxUhq1YqgVD8I1C3m8YlGKmnHUTAThmvuaCdRMEjYlaqWCcC18yhRqlgThWoacrxLGULMENdNBuFY+bRo1S4Nwnfiapdi5xtfa1y6+YCEm+hpjGswCYp166cJMxMbjsZ9YTIY5UPObxmzENR2xVyNmJFaURkxJbFwfM69GzEqsKY2Ylti4P+ZejZgZFlEBjYlhNTHCp5FdjBByiGBmWM2M9GrEzDCKGYaZYTUzyhfcDDPDamaSkKUrFl20xNywhG6JuWGabonZYTU73uHAMDs8InVyzA+PqVxi30QrEcehCKMVi1kozZOlYZzaDyxyH2LzQbKQMfeBu1dGWnMNrDIqTdRvau1c8UZ7/cFo52naaE9U3GivXwn3wYATUgAznCS2flWrV5qHTBmEUoQscR908wEoE2Rybt5EKxnrkBnsScij5hE3jxo10CWpvGbfRCsdN07Wicm6YbyKUgkUKCqB1m9q50hpXW8+cNEAkc1DXeBJyMjiOFq5CUmehIKtYguobYmjlafE6OM4VoUJSK59GgWOVUEleYEziTAxxFOvRpxLBKc0Xky4hmEReTXiXCKoSVfgTCLqaTf2asSZRCSURsyMMO4X3tlAYGYEnUcE5kZGZEuJuZExNaIlJkcaBgT3dVxicqThQAhvS0yPrOmR3pYXSyLDglDelpggWRPkDXSJCZKGB+ENYIkpkjVF3sCUmCJpeJDegJOYImV4kN5AUpgiZYiQzNsSc6QMEdLLkcIcKUOE9HKkMEfKECG9HCnMkTJESC9H6mLpaoiQXo4U5kjVy1cvRwpzpDSVWRWmSNUUpb7JRWGKkohsmWCKknoUeWlPMEVJPYN6aU8wRQmV4xJMUELObwnmJ5HUkiHB9CTUOja52Fok1BYkwdwkmtyEYG6SlMpGCaZGRxTbGjOjY2rG1pgYTS1jNaZFc2onojEvWpA7EY2J0dTcozEvWpE7EY2Z0dTcoy92fZrciWjMjKZWBRoTk0bkTiTFzKTUqiDFxKSM3ImkmJqUGjEpZiYV5E4kxcykFDMpZiZV5II1xcyk9P4ixdykmhpd6cWenE5o6eW2PCLXGs27h4f6OOZrXp3y7YfmWGa9DoLwNfhkT2m6A7zXn91xzP1rwOPmK87sU5nnz5/GCoMausPWSw1Awh3DdmJxKxVYC7J5xNZwLOxT2aduniyyTyvGbDueNk9h5QW3T6tXJM0zsd8nVq+2erRtp207bfWlVl9q5dK6Hepq08cM/WDe9TTteho7W5zU0ZzVddIaSNuec4c0vtJi31llbe31EdZed7oFgCY1Aekzoo3HFNuiM7xpyrCAVGfHsWW9mlx7076zqtwvBSByJAgdR4og0Hc1rZ2C7jbMa6AoNjeH/a54PLvDU2A+HTtiABXmwndeFRkaeuTA4ViwOREHCBLgABvFzEYts6OE21hJE6J/9l4i4AhEmoj6pB6LPZYkcwjIAFtXgtnJKZADEkZYtBfIQNACKaEoKfc7B/AaYJ3ZEcRd+PTruegvS0YQ113iAdAFGG9UCtjZuhWAPAI5wCLWVMDv6tpMALaTtaLcDsHkWgUaxUYTijumR/R7Z0vuwHADLFvL17kGDXpbiQ9UAMcp0nE4Tlg0dpxC9F2xCvA/iLjY5V4qYtzPK7+h315A0AMyk+sE3ihpLs2CEQYStaBGSnOT49p3IAIUbdDInrqrXiBoAX+SijqiswLYFjYzmaUJrcReTQTOB2mJ2SmZ2zgS9m9JaQR3KoBDQIcU1aGyuYcAKJAjkpwr1u/EQKp24G3GVtYfmgJfHh6vUEigT1Eh+JydNhdrkO6X0J5p21b4A2sg7JSFn7iJJaWsGy3UggOQKamZyd7xcwn0WN/xAzpAHpfU7O1uWO3aG1agV2A4K8r57n+gdmJg3FoXUIPpxdaYgCAG+Yu59SQ1jpsLsCBjdLJucncrZreIorgwqv6EczgZxqwLhJfMrDn2WJBc9oAIeinwIp9zSgisjdpbeYAi4GxJdq6Ru054YLWpSCebm5tHe3MTBBcYX5IaX80V4UuaBDArKbNVjjsagwQZu40HtRJv7iQ1qfpo7ySBboOxpaixdbRlEAA2kLLRZHGkA7P0Kasec7SgY2SWQVOuFcdbBEZuLHyyeHYkZ3oQmvZfkQApQDWnXI4ji5Hh3LNZbv4DBHA4iG1BTT/fmkpBECggumK3M/Umr4ewHoYmSIL79cPPn/8DufV9+C9aAAA="; \ No newline at end of file diff --git a/Documentation/assets/style.css b/Documentation/assets/style.css index f1e78b7..778b949 100644 --- a/Documentation/assets/style.css +++ b/Documentation/assets/style.css @@ -1,260 +1,260 @@ :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-keyword: #056bd6; - --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: #a55c0e; - --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); - --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-keyword: #3399ff; - --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: #e07d13; - --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); - --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; + /* 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-keyword: #056bd6; + --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: #a55c0e; + --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); + --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-keyword: #3399ff; + --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: #e07d13; + --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); + --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-keyword: var(--light-color-ts-keyword); - --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 { + --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-keyword: var(--light-color-ts-keyword); + --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-keyword: var(--dark-color-ts-keyword); - --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); - } + :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-keyword: var(--dark-color-ts-keyword); + --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); + color-scheme: var(--color-scheme); } body { - margin: 0; + 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-keyword: var(--light-color-ts-keyword); - --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); + --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-keyword: var(--light-color-ts-keyword); + --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-keyword: var(--dark-color-ts-keyword); - --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); + --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-keyword: var(--dark-color-ts-keyword); + --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; + display: inherit !important; } h1, @@ -263,7 +263,7 @@ h3, h4, h5, h6 { - line-height: 1.2; + line-height: 1.2; } h1 > a:not(.link), @@ -272,1141 +272,1141 @@ h3 > a:not(.link), h4 > a:not(.link), h5 > a:not(.link), h6 > a:not(.link) { - text-decoration: none; - color: var(--color-text); + text-decoration: none; + color: var(--color-text); } h1 { - font-size: 1.875rem; - margin: 0.67rem 0; + font-size: 1.875rem; + margin: 0.67rem 0; } h2 { - font-size: 1.5rem; - margin: 0.83rem 0; + font-size: 1.5rem; + margin: 0.83rem 0; } h3 { - font-size: 1.25rem; - margin: 1rem 0; + font-size: 1.25rem; + margin: 1rem 0; } h4 { - font-size: 1.05rem; - margin: 1.33rem 0; + font-size: 1.05rem; + margin: 1.33rem 0; } h5 { - font-size: 1rem; - margin: 1.5rem 0; + font-size: 1rem; + margin: 1.5rem 0; } h6 { - font-size: 0.875rem; - margin: 2.33rem 0; + font-size: 0.875rem; + margin: 2.33rem 0; } .uppercase { - text-transform: uppercase; + text-transform: uppercase; } dl, menu, ol, ul { - margin: 1em 0; + margin: 1em 0; } dd { - margin: 0 0 0 40px; + margin: 0 0 0 40px; } .container { - max-width: 1700px; - padding: 0 2rem; + max-width: 1700px; + padding: 0 2rem; } /* Footer */ footer { - border-top: 1px solid var(--color-accent); - padding-top: 1rem; - padding-bottom: 1rem; - max-height: 3.5rem; + border-top: 1px solid var(--color-accent); + padding-top: 1rem; + padding-bottom: 1rem; + max-height: 3.5rem; } .tsd-generator { - margin: 0 1em; + margin: 0 1em; } .container-main { - margin: 0 auto; - /* toolbar, footer, margin */ - min-height: calc(100vh - 41px - 56px - 4rem); + margin: 0 auto; + /* toolbar, footer, margin */ + min-height: calc(100vh - 41px - 56px - 4rem); } @keyframes fade-in { - from { - opacity: 0; - } - to { - opacity: 1; - } + from { + opacity: 0; + } + to { + opacity: 1; + } } @keyframes fade-out { - from { - opacity: 1; - visibility: visible; - } - to { - opacity: 0; - } + from { + opacity: 1; + visibility: visible; + } + to { + opacity: 0; + } } @keyframes fade-in-delayed { - 0% { - opacity: 0; - } - 33% { - opacity: 0; - } - 100% { - opacity: 1; - } + 0% { + opacity: 0; + } + 33% { + opacity: 0; + } + 100% { + opacity: 1; + } } @keyframes fade-out-delayed { - 0% { - opacity: 1; - visibility: visible; - } - 66% { - opacity: 0; - } - 100% { - opacity: 0; - } + 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); - } + 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); - } + from { + transform: translate(0, 0); + visibility: visible; + } + to { + transform: translate(100%, 0); + } } body { - background: var(--color-background); - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", - Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; - font-size: 16px; - color: var(--color-text); + background: var(--color-background); + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", + Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; + font-size: 16px; + color: var(--color-text); } a { - color: var(--color-link); - text-decoration: none; + color: var(--color-link); + text-decoration: none; } a:hover { - text-decoration: underline; + text-decoration: underline; } a.external[target="_blank"] { - background-image: var(--external-icon); - background-position: top 3px right; - background-repeat: no-repeat; - padding-right: 13px; + 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; + 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); + 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%; + padding: 0; + font-size: 100%; } pre > button { - position: absolute; - top: 10px; - right: 10px; - opacity: 0; - transition: opacity 0.1s; - box-sizing: border-box; + position: absolute; + top: 10px; + right: 10px; + opacity: 0; + transition: opacity 0.1s; + box-sizing: border-box; } pre:hover > button, pre > button.visible { - opacity: 1; + opacity: 1; } blockquote { - margin: 1em 0; - padding-left: 1em; - border-left: 4px solid gray; + margin: 1em 0; + padding-left: 1em; + border-left: 4px solid gray; } .tsd-typography { - line-height: 1.333em; + line-height: 1.333em; } .tsd-typography ul { - list-style: square; - padding: 0 0 0 20px; - margin: 0; + list-style: square; + padding: 0 0 0 20px; + margin: 0; } .tsd-typography .tsd-index-panel h3, .tsd-index-panel .tsd-typography h3, .tsd-typography h4, .tsd-typography h5, .tsd-typography h6 { - font-size: 1em; + font-size: 1em; } .tsd-typography h5, .tsd-typography h6 { - font-weight: normal; + font-weight: normal; } .tsd-typography p, .tsd-typography ul, .tsd-typography ol { - margin: 1em 0; + margin: 1em 0; } .tsd-typography table { - border-collapse: collapse; - border: none; + border-collapse: collapse; + border: none; } .tsd-typography td, .tsd-typography th { - padding: 6px 13px; - border: 1px solid var(--color-accent); + padding: 6px 13px; + border: 1px solid var(--color-accent); } .tsd-typography thead, .tsd-typography tr:nth-child(even) { - background-color: var(--color-background-secondary); + background-color: var(--color-background-secondary); } .tsd-breadcrumb { - margin: 0; - padding: 0; - color: var(--color-text-aside); + margin: 0; + padding: 0; + color: var(--color-text-aside); } .tsd-breadcrumb a { - color: var(--color-text-aside); - text-decoration: none; + color: var(--color-text-aside); + text-decoration: none; } .tsd-breadcrumb a:hover { - text-decoration: underline; + text-decoration: underline; } .tsd-breadcrumb li { - display: inline; + display: inline; } .tsd-breadcrumb li:after { - content: " / "; + content: " / "; } .tsd-comment-tags { - display: flex; - flex-direction: column; + display: flex; + flex-direction: column; } dl.tsd-comment-tag-group { - display: flex; - align-items: center; - overflow: hidden; - margin: 0.5em 0; + 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; + display: flex; + margin-right: 0.5em; + font-size: 0.875em; + font-weight: normal; } dl.tsd-comment-tag-group dd { - margin: 0; + margin: 0; } code.tsd-tag { - padding: 0.25em 0.4em; - border: 0.1em solid var(--color-accent); - margin-right: 0.25em; - font-size: 70%; + 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; + margin-left: 0.25em; } dl.tsd-comment-tag-group dd:before, dl.tsd-comment-tag-group dd:after { - content: " "; + content: " "; } dl.tsd-comment-tag-group dd pre, dl.tsd-comment-tag-group dd:after { - clear: both; + clear: both; } dl.tsd-comment-tag-group p { - margin: 0; + margin: 0; } .tsd-panel.tsd-comment .lead { - font-size: 1.1em; - line-height: 1.333em; - margin-bottom: 2em; + font-size: 1.1em; + line-height: 1.333em; + margin-bottom: 2em; } .tsd-panel.tsd-comment .lead:last-child { - margin-bottom: 0; + margin-bottom: 0; } .tsd-filter-visibility h4 { - font-size: 1rem; - padding-top: 0.75rem; - padding-bottom: 0.5rem; - margin: 0; + font-size: 1rem; + padding-top: 0.75rem; + padding-bottom: 0.5rem; + margin: 0; } .tsd-filter-item:not(:last-child) { - margin-bottom: 0.5rem; + 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; + 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; + cursor: pointer; + position: absolute; + width: 1.5em; + height: 1.5em; + opacity: 0; } .tsd-filter-input input[type="checkbox"]:disabled { - pointer-events: none; + 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. + 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; + opacity: 0.99; } .tsd-filter-input input[type="checkbox"]:focus + svg { - transform: scale(0.95); + transform: scale(0.95); } .tsd-filter-input input[type="checkbox"]:focus:not(:focus-visible) + svg { - transform: scale(1); + transform: scale(1); } .tsd-checkbox-background { - fill: var(--color-accent); + fill: var(--color-accent); } input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark { - stroke: var(--color-text); + 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; + 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); + stroke: var(--color-accent); } .tsd-theme-toggle { - padding-top: 0.75rem; + padding-top: 0.75rem; } .tsd-theme-toggle > h4 { - display: inline; - vertical-align: middle; - margin-right: 0.75rem; + display: inline; + vertical-align: middle; + margin-right: 0.75rem; } .tsd-hierarchy { - list-style: square; - margin: 0; + list-style: square; + margin: 0; } .tsd-hierarchy .target { - font-weight: bold; + font-weight: bold; } .tsd-full-hierarchy:not(:last-child) { - margin-bottom: 1em; - padding-bottom: 1em; - border-bottom: 1px solid var(--color-accent); + margin-bottom: 1em; + padding-bottom: 1em; + border-bottom: 1px solid var(--color-accent); } .tsd-full-hierarchy, .tsd-full-hierarchy ul { - list-style: none; - margin: 0; - padding: 0; + list-style: none; + margin: 0; + padding: 0; } .tsd-full-hierarchy ul { - padding-left: 1.5rem; + padding-left: 1.5rem; } .tsd-full-hierarchy a { - padding: 0.25rem 0 !important; - font-size: 1rem; - display: inline-flex; - align-items: center; - color: var(--color-text); + padding: 0.25rem 0 !important; + font-size: 1rem; + display: inline-flex; + align-items: center; + color: var(--color-text); } .tsd-panel-group.tsd-index-group { - margin-bottom: 0; + 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; + 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); - } + .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 { + 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; + -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; + 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; + position: relative; + top: -100px; } .tsd-member { - position: relative; + position: relative; } .tsd-member .tsd-anchor + h3 { - display: flex; - align-items: center; - margin-top: 0; - margin-bottom: 0; - border-bottom: none; + display: flex; + align-items: center; + margin-top: 0; + margin-bottom: 0; + border-bottom: none; } .tsd-navigation.settings { - margin: 1rem 0; + margin: 1rem 0; } .tsd-navigation > a, .tsd-navigation .tsd-accordion-summary { - width: calc(100% - 0.25rem); - display: flex; - align-items: center; + width: calc(100% - 0.25rem); + display: flex; + align-items: center; } .tsd-navigation a, .tsd-navigation summary > span, .tsd-page-navigation a { - display: flex; - width: calc(100% - 0.25rem); - align-items: center; - padding: 0.25rem; - color: var(--color-text); - text-decoration: none; - box-sizing: border-box; + display: flex; + width: calc(100% - 0.25rem); + 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); + background: var(--color-active-menu-item); } .tsd-navigation a:hover, .tsd-page-navigation a:hover { - text-decoration: underline; + text-decoration: underline; } .tsd-navigation ul, .tsd-page-navigation ul { - margin-top: 0; - margin-bottom: 0; - padding: 0; - list-style: none; + margin-top: 0; + margin-bottom: 0; + padding: 0; + list-style: none; } .tsd-navigation li, .tsd-page-navigation li { - padding: 0; - max-width: 100%; + padding: 0; + max-width: 100%; } .tsd-nested-navigation { - margin-left: 3rem; + margin-left: 3rem; } .tsd-nested-navigation > li > details { - margin-left: -1.5rem; + margin-left: -1.5rem; } .tsd-small-nested-navigation { - margin-left: 1.5rem; + margin-left: 1.5rem; } .tsd-small-nested-navigation > li > details { - margin-left: -1.5rem; + margin-left: -1.5rem; } .tsd-page-navigation ul { - padding-left: 1.75rem; + padding-left: 1.75rem; } #tsd-sidebar-links a { - margin-top: 0; - margin-bottom: 0.5rem; - line-height: 1.25rem; + margin-top: 0; + margin-bottom: 0.5rem; + line-height: 1.25rem; } #tsd-sidebar-links a:last-of-type { - margin-bottom: 0; + 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); + 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 */ + 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 */ + 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; + user-select: none; + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; - cursor: pointer; + cursor: pointer; } .tsd-accordion-summary a { - width: calc(100% - 1.5rem); + width: calc(100% - 1.5rem); } .tsd-accordion-summary > * { - margin-top: 0; - margin-bottom: 0; - padding-top: 0; - padding-bottom: 0; + margin-top: 0; + margin-bottom: 0; + padding-top: 0; + padding-bottom: 0; } .tsd-index-accordion .tsd-accordion-summary > svg { - margin-left: 0.25rem; + margin-left: 0.25rem; } .tsd-index-content > :not(:first-child) { - margin-top: 0.75rem; + margin-top: 0.75rem; } .tsd-index-heading { - margin-top: 1.5rem; - margin-bottom: 0.75rem; + 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; + 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); + transform-origin: center; + transform: scale(1.1); } .tsd-signature > .tsd-kind-icon { - margin-right: 0.8rem; + margin-right: 0.8rem; } .tsd-panel { - margin-bottom: 2.5rem; + margin-bottom: 2.5rem; } .tsd-panel.tsd-member { - margin-bottom: 4rem; + margin-bottom: 4rem; } .tsd-panel:empty { - display: none; + 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; + 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; + margin-bottom: 0; + border-bottom: none; } .tsd-panel-group { - margin: 4rem 0; + margin: 4rem 0; } .tsd-panel-group.tsd-index-group { - margin: 2rem 0; + margin: 2rem 0; } .tsd-panel-group.tsd-index-group details { - margin: 2rem 0; + margin: 2rem 0; } #tsd-search { - transition: background-color 0.2s; + transition: background-color 0.2s; } #tsd-search .title { - position: relative; - z-index: 2; + position: relative; + z-index: 2; } #tsd-search .field { - position: absolute; - left: 0; - top: 0; - right: 2.5rem; - height: 100%; + 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); + 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; + position: absolute; + overflow: hidden; + right: -40px; } #tsd-search .field input, #tsd-search .title, #tsd-toolbar-links a { - transition: opacity 0.2s; + 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); + 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 { - background-color: var(--color-background); - line-height: initial; - padding: 4px; + background-color: var(--color-background); + line-height: initial; + padding: 4px; } #tsd-search .results li:nth-child(even) { - background-color: var(--color-background-secondary); + background-color: var(--color-background-secondary); } #tsd-search .results li.state { - display: none; + display: none; } #tsd-search .results li.current:not(.no-results), #tsd-search .results li:hover:not(.no-results) { - background-color: var(--color-accent); + background-color: var(--color-accent); } #tsd-search .results a { - display: flex; - align-items: center; - padding: 0.25rem; - box-sizing: border-box; + display: flex; + align-items: center; + padding: 0.25rem; + box-sizing: border-box; } #tsd-search .results a:before { - top: 10px; + top: 10px; } #tsd-search .results span.parent { - color: var(--color-text-aside); - font-weight: normal; + color: var(--color-text-aside); + font-weight: normal; } #tsd-search.has-focus { - background-color: var(--color-accent); + background-color: var(--color-accent); } #tsd-search.has-focus .field input { - top: 0; - opacity: 1; + top: 0; + opacity: 1; } #tsd-search.has-focus .title, #tsd-search.has-focus #tsd-toolbar-links a { - z-index: 0; - opacity: 0; + z-index: 0; + opacity: 0; } #tsd-search.has-focus .results { - visibility: visible; + visibility: visible; } #tsd-search.loading .results li.state.loading { - display: block; + display: block; } #tsd-search.failure .results li.state.failure { - display: block; + display: block; } #tsd-toolbar-links { - position: absolute; - top: 0; - right: 2rem; - height: 100%; - display: flex; - align-items: center; - justify-content: flex-end; + 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; + margin-left: 1.5rem; } #tsd-toolbar-links a:hover { - text-decoration: underline; + 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; + 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-keyword { - color: var(--color-ts-keyword); - font-weight: normal; + color: var(--color-ts-keyword); + font-weight: normal; } .tsd-signature-symbol { - color: var(--color-text-aside); - font-weight: normal; + color: var(--color-text-aside); + font-weight: normal; } .tsd-signature-type { - font-style: italic; - font-weight: normal; + font-style: italic; + font-weight: normal; } .tsd-signatures { - padding: 0; - margin: 0 0 1em 0; - list-style-type: none; + 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; + 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; + border-width: 1px; } ul.tsd-parameter-list, ul.tsd-type-parameter-list { - list-style: square; - margin: 0; - padding-left: 20px; + 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; + 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; + font-size: 16px; + margin: 1em 0 0.5em 0; } .tsd-sources { - margin-top: 1rem; - font-size: 0.875em; + margin-top: 1rem; + font-size: 0.875em; } .tsd-sources a { - color: var(--color-text-aside); - text-decoration: underline; + color: var(--color-text-aside); + text-decoration: underline; } .tsd-sources ul { - list-style: none; - padding: 0; + 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; + 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; + color: var(--color-text); + text-decoration: none; } .tsd-page-toolbar a.title { - font-weight: bold; + font-weight: bold; } .tsd-page-toolbar a.title:hover { - text-decoration: underline; + text-decoration: underline; } .tsd-page-toolbar .tsd-toolbar-contents { - display: flex; - justify-content: space-between; - height: 2.5rem; - margin: 0 auto; + 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; + position: relative; + white-space: nowrap; + line-height: 40px; } .tsd-page-toolbar .table-cell:first-child { - width: 100%; + width: 100%; } .tsd-page-toolbar .tsd-toolbar-icon { - box-sizing: border-box; - line-height: 0; - padding: 12px 0; + 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; + 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; + opacity: 0.9; } .tsd-widget.active { - opacity: 1; - background-color: var(--color-accent); + opacity: 1; + background-color: var(--color-accent); } .tsd-widget.no-caption { - width: 40px; + width: 40px; } .tsd-widget.no-caption:before { - margin: 0; + margin: 0; } .tsd-widget.options, .tsd-widget.menu { - display: none; + display: none; } input[type="checkbox"] + .tsd-widget:before { - background-position: -120px 0; + background-position: -120px 0; } input[type="checkbox"]:checked + .tsd-widget:before { - background-position: -160px 0; + background-position: -160px 0; } img { - max-width: 100%; + max-width: 100%; } .tsd-anchor-icon { - display: inline-flex; - align-items: center; - margin-left: 0.5rem; - vertical-align: middle; - color: var(--color-text); + 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; + width: 1em; + height: 1em; + visibility: hidden; } .tsd-anchor-link:hover > .tsd-anchor-icon svg { - visibility: visible; + visibility: visible; } .deprecated { - text-decoration: line-through !important; + text-decoration: line-through !important; } .warning { - padding: 1rem; - color: var(--color-warning-text); - background: var(--color-background-warning); + padding: 1rem; + color: var(--color-warning-text); + background: var(--color-background-warning); } .tsd-kind-project { - color: var(--color-ts-project); + color: var(--color-ts-project); } .tsd-kind-module { - color: var(--color-ts-module); + color: var(--color-ts-module); } .tsd-kind-namespace { - color: var(--color-ts-namespace); + color: var(--color-ts-namespace); } .tsd-kind-enum { - color: var(--color-ts-enum); + color: var(--color-ts-enum); } .tsd-kind-enum-member { - color: var(--color-ts-enum-member); + color: var(--color-ts-enum-member); } .tsd-kind-variable { - color: var(--color-ts-variable); + color: var(--color-ts-variable); } .tsd-kind-function { - color: var(--color-ts-function); + color: var(--color-ts-function); } .tsd-kind-class { - color: var(--color-ts-class); + color: var(--color-ts-class); } .tsd-kind-interface { - color: var(--color-ts-interface); + color: var(--color-ts-interface); } .tsd-kind-constructor { - color: var(--color-ts-constructor); + color: var(--color-ts-constructor); } .tsd-kind-property { - color: var(--color-ts-property); + color: var(--color-ts-property); } .tsd-kind-method { - color: var(--color-ts-method); + color: var(--color-ts-method); } .tsd-kind-call-signature { - color: var(--color-ts-call-signature); + color: var(--color-ts-call-signature); } .tsd-kind-index-signature { - color: var(--color-ts-index-signature); + color: var(--color-ts-index-signature); } .tsd-kind-constructor-signature { - color: var(--color-ts-constructor-signature); + color: var(--color-ts-constructor-signature); } .tsd-kind-parameter { - color: var(--color-ts-parameter); + color: var(--color-ts-parameter); } .tsd-kind-type-literal { - color: var(--color-ts-type-literal); + color: var(--color-ts-type-literal); } .tsd-kind-type-parameter { - color: var(--color-ts-type-parameter); + color: var(--color-ts-type-parameter); } .tsd-kind-accessor { - color: var(--color-ts-accessor); + color: var(--color-ts-accessor); } .tsd-kind-get-signature { - color: var(--color-ts-get-signature); + color: var(--color-ts-get-signature); } .tsd-kind-set-signature { - color: var(--color-ts-set-signature); + color: var(--color-ts-set-signature); } .tsd-kind-type-alias { - color: var(--color-ts-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); + color: var(--color-text); } * { - scrollbar-width: thin; - scrollbar-color: var(--color-accent) var(--color-icon-background); + scrollbar-width: thin; + scrollbar-color: var(--color-accent) var(--color-icon-background); } *::-webkit-scrollbar { - width: 0.75rem; + width: 0.75rem; } *::-webkit-scrollbar-track { - background: var(--color-icon-background); + background: var(--color-icon-background); } *::-webkit-scrollbar-thumb { - background-color: var(--color-accent); - border-radius: 999rem; - border: 0.25rem solid var(--color-icon-background); + 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%; - } + .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; - } + .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; - } + .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; - } + .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/Documentation/functions/Function_Integration.Merge.html b/Documentation/functions/Function_Integration.Merge.html index e10c1b9..f6f193e 100644 --- a/Documentation/functions/Function_Integration.Merge.html +++ b/Documentation/functions/Function_Integration.Merge.html @@ -1,575 +1 @@ -<<<<<<< HEAD -Merge | astro-critters - v2.1.9
  • Type Parameters

    • Ts extends readonly unknown[]

    Parameters

    • Rest ...objects: Ts

    Returns DeepMergeHKT<Ts, Readonly<{
        DeepMergeArraysURI: "DeepMergeArraysDefaultURI";
        DeepMergeFilterValuesURI: "DeepMergeFilterValuesDefaultURI";
        DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
        DeepMergeOthersURI: "DeepMergeLeafURI";
        DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
        DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
    }>, Readonly<{
        key: PropertyKey;
        parents: readonly Readonly<Record<PropertyKey, unknown>>[];
    }>>

-======= - - - - - - - Merge | @playform/inline - v0.0.6 - - - - - - - - - - - - -
-
- -
- - -
-
-
-
-
-
- -

Function Merge

-
-
-
    - -
  • -
    -

    Type Parameters

    -
      -
    • - Ts - extends readonly unknown[] -
    • -
    -
    -
    -

    Parameters

    -
      -
    • - Rest - ...objects: - Ts -
    • -
    -
    -

    - Returns - DeepMergeHKT<Ts, Readonly<{
        DeepMergeArraysURI: "DeepMergeArraysDefaultURI";
        DeepMergeFilterValuesURI: "DeepMergeFilterValuesDefaultURI";
        DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
        DeepMergeOthersURI: "DeepMergeLeafURI";
        DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
        DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
    }>, Readonly<{
        key: PropertyKey;
        parents: readonly Readonly<Record<PropertyKey, unknown>>[];
    }>> -

    - -
  • -
-
-
-
- - -
-
- -
- - ->>>>>>> Current +Merge | astro-critters - v2.1.10
  • Type Parameters

    • Ts extends readonly unknown[]

    Parameters

    • Rest ...objects: Ts

    Returns DeepMergeHKT<Ts, Readonly<{
        DeepMergeArraysURI: "DeepMergeArraysDefaultURI";
        DeepMergeFilterValuesURI: "DeepMergeFilterValuesDefaultURI";
        DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
        DeepMergeOthersURI: "DeepMergeLeafURI";
        DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
        DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
    }>, Readonly<{
        key: PropertyKey;
        parents: readonly Readonly<Record<PropertyKey, unknown>>[];
    }>>

\ No newline at end of file diff --git a/Documentation/functions/Function_Integration.integration.html b/Documentation/functions/Function_Integration.integration.html index 7f71bb0..6af41fa 100644 --- a/Documentation/functions/Function_Integration.integration.html +++ b/Documentation/functions/Function_Integration.integration.html @@ -1,346 +1 @@ -<<<<<<< HEAD -integration | astro-critters - v2.1.9
-======= - - - - - - - integration | @playform/inline - v0.0.6 - - - - - - - - - - - - -
-
- -
- - -
-
-
-
-
-
- -

Function integration

-
-
- -
-
-
- - -
-
- -
- - ->>>>>>> Current +integration | astro-critters - v2.1.10
\ No newline at end of file diff --git a/Documentation/functions/Merge.merge.html b/Documentation/functions/Merge.merge.html index 1f42635..f729b25 100644 --- a/Documentation/functions/Merge.merge.html +++ b/Documentation/functions/Merge.merge.html @@ -1,569 +1 @@ -<<<<<<< HEAD -merge | astro-critters - v2.1.9
  • Type Parameters

    • Ts extends readonly unknown[]

    Parameters

    • Rest ...objects: Ts

    Returns DeepMergeHKT<Ts, Readonly<{
        DeepMergeArraysURI: "DeepMergeArraysDefaultURI";
        DeepMergeFilterValuesURI: "DeepMergeFilterValuesDefaultURI";
        DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
        DeepMergeOthersURI: "DeepMergeLeafURI";
        DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
        DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
    }>, Readonly<{
        key: PropertyKey;
        parents: readonly Readonly<Record<PropertyKey, unknown>>[];
    }>>

-======= - - - - - - - merge | @playform/inline - v0.0.6 - - - - - - - - - - - - -
-
- -
- - -
-
-
-
-
-
- -

Function merge

-
-
-
    - -
  • -
    -

    Type Parameters

    -
      -
    • - Ts - extends readonly unknown[] -
    • -
    -
    -
    -

    Parameters

    -
      -
    • - Rest - ...objects: - Ts -
    • -
    -
    -

    - Returns - DeepMergeHKT<Ts, Readonly<{
        DeepMergeArraysURI: "DeepMergeArraysDefaultURI";
        DeepMergeFilterValuesURI: "DeepMergeFilterValuesDefaultURI";
        DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
        DeepMergeOthersURI: "DeepMergeLeafURI";
        DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
        DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
    }>, Readonly<{
        key: PropertyKey;
        parents: readonly Readonly<Record<PropertyKey, unknown>>[];
    }>> -

    - -
  • -
-
-
-
- - -
-
- -
- - ->>>>>>> Current +merge | astro-critters - v2.1.10
  • Type Parameters

    • Ts extends readonly unknown[]

    Parameters

    • Rest ...objects: Ts

    Returns DeepMergeHKT<Ts, Readonly<{
        DeepMergeArraysURI: "DeepMergeArraysDefaultURI";
        DeepMergeFilterValuesURI: "DeepMergeFilterValuesDefaultURI";
        DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
        DeepMergeOthersURI: "DeepMergeLeafURI";
        DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
        DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
    }>, Readonly<{
        key: PropertyKey;
        parents: readonly Readonly<Record<PropertyKey, unknown>>[];
    }>>

\ No newline at end of file diff --git a/Documentation/index.html b/Documentation/index.html index 479da31..b59eebf 100644 --- a/Documentation/index.html +++ b/Documentation/index.html @@ -1,5 +1,4 @@ -<<<<<<< HEAD -astro-critters - v2.1.9

astro-critters - v2.1.9

Astro

Related —


Build
Dependency
Version


Star
Download
🗜️ Compress —

Build
Dependency
Version


Star
Download
🗻 Format —
+astro-critters - v2.1.10

astro-critters - v2.1.10

Astro

Related —


Build
Dependency
Version


Star
Download
🗜️ Compress —

Build
Dependency
Version


Star
Download
🗻 Format —

🦔 Inline —

This Astro integration brings critters to your Astro project.

@@ -68,799 +67,4 @@
export default {
integrations: [
(await import("astro-critters")).default({
Logger: 0,
}),
],
};

Changelog

See CHANGELOG.md for a history of changes to this integration.

-
-======= - - - - - - - @playform/inline - v0.0.6 - - - - - - - - - - - - -
-
- -
- - -
-
-
-
-
-
-

@playform/inline - v0.0.6

-
-
- - - - - - - - - - - -
-

- - - - Astro - -

-
-

Related —

-
-
- - - - Build -
- - - - Dependency -
- - - - Version -

-
-
- - Star
- - - - Download -
🗜️ Compress —
-
-
- - - - Build -
- - - - Dependency -
- - - - Version -

-
-
- - Star
- - - - Download -
🗻 Format —
-
- - -

- 🦔 Inline — -

-

- This - Astro integration - brings - critters - to your Astro project. -

-

- Critters is a plugin that inlines your app's - critical CSS - and lazy-loads the rest. -

-
-

Note

-

- Inline will not inline your requests, - only your statically generated build and - pre-rendered routes. -

-
- -

Installation

-

- There are two ways to add integrations to your project. - Let's try the most convenient option first! -

- -

- astro add command -

-

- Astro includes a CLI tool for adding first party - integrations: astro add. This command will: -

-
    -
  1. - (Optionally) Install all necessary dependencies and - peer dependencies -
  2. -
  3. - (Also optionally) Update your - astro.config.* file to apply this - integration -
  4. -
-

- To install Inline, run the following from - your project directory and follow the prompts: -

-

Using NPM:

-
npx astro add @playform/inline
-
-

Using Yarn:

-
yarn astro add @playform/inline
-
-

Using PNPM:

-
pnpx astro add @playform/inline
-
- -

- Install dependencies manually -

-

- First, install the Inline integration like - so: -

-
npm install -D -E @playform/inline
-
-

- Then, apply this integration to your - astro.config.* file using the - integrations property: -

-
export default {
integrations: [(await import("@playform/inline")).default()],
}; -
- -

Getting started

-

- Critters will now automatically inline the critical CSS - of your HTML files. -

- -

Default Inlining

-

- You can override any of the default options from the - configuration of: -

- -

or disable them entirely:

-
export default {
integrations: [
(await import("@playform/inline")).default({
Critters: false,
}),
],
}; -
- -

- Add Multiple Paths -

-

- You can add multiple paths to inline by specifying an - array as the Path variable. -

-

- astro.config.ts -

-
export default {
integrations: [
(await import("@playform/inline")).default({
Path: ["./Target", "./Build"],
}),
],
}; -
- -

- Input-Output Mapping -

-

- You can also provide a map of paths for different input - output directories. -

-

- astro.config.ts -

-
export default {
integrations: [
(await import("@playform/inline")).default({
Path: new Map([["./Source", "./Target"]]),
}),
],
}; -
-

Or an array of the two.

-

- astro.config.ts -

-
export default {
integrations: [
(await import("@playform/inline")).default({
Path: [
// Inline Target
"./Target",
// Inline Target one more time into a different directory
new Map([["./Target", "./TargetInline"]]),
],
}),
],
}; -
- -

File Filtering

-

- You can filter files to exclude specific ones from - inlining. A filter can be an array of regular - expressions or a single match. You can also use - functions to match on file names: -

-

- astro.config.ts -

-
export default {
integrations: [
(await import("@playform/inline")).default({
Exclude: [
"File.html",
(File: string) => File === "./Target/index.html",
],
}),
],
}; -
- -

- Controlling Logging -

-

- You can control the logging level by setting the - Logger parameter. The default value is - 2, but you can set it to 0 if - you don't want to see debug messages: -

-
export default {
integrations: [
(await import("@playform/inline")).default({
Logger: 0,
}),
],
}; -
- -

Changelog

-

- See CHANGELOG.md for a - history of changes to this integration. -

-
-
-
- - -
-
-
-

- Generated using - TypeDoc -

-
-
- - ->>>>>>> Current +
\ No newline at end of file diff --git a/Documentation/interfaces/Critters.Interface-1.html b/Documentation/interfaces/Critters.Interface-1.html index 86bd992..93a9b22 100644 --- a/Documentation/interfaces/Critters.Interface-1.html +++ b/Documentation/interfaces/Critters.Interface-1.html @@ -1,5 +1,4 @@ -<<<<<<< HEAD -Interface | astro-critters - v2.1.9
interface Interface {
    additionalStylesheets?: string[];
    compress?: boolean;
    external?: boolean;
    fonts?: boolean;
    inlineFonts?: boolean;
    inlineThreshold?: number;
    keyframes?: string;
    logLevel?: "info" | "warn" | "error" | "trace" | "debug" | "silent";
    logger?: Interface;
    mergeStylesheets?: boolean;
    minimumExternalSize?: number;
    noscriptFallback?: boolean;
    path?: string;
    preload?: "body" | "media" | "swap" | "js" | "js-lazy";
    preloadFonts?: boolean;
    pruneSource?: boolean;
    publicPath?: string;
    reduceInlineStyles?: boolean;
}

Properties

additionalStylesheets? +Interface | astro-critters - v2.1.10
interface Interface {
    additionalStylesheets?: string[];
    compress?: boolean;
    external?: boolean;
    fonts?: boolean;
    inlineFonts?: boolean;
    inlineThreshold?: number;
    keyframes?: string;
    logLevel?: "info" | "warn" | "error" | "trace" | "debug" | "silent";
    logger?: Interface;
    mergeStylesheets?: boolean;
    minimumExternalSize?: number;
    noscriptFallback?: boolean;
    path?: string;
    preload?: "body" | "media" | "swap" | "js" | "js-lazy";
    preloadFonts?: boolean;
    pruneSource?: boolean;
    publicPath?: string;
    reduceInlineStyles?: boolean;
}

Properties

additionalStylesheets?: string[]
compress?: boolean
external?: boolean
fonts?: boolean
inlineFonts?: boolean
inlineThreshold?: number
keyframes?: string
logLevel?: "info" | "warn" | "error" | "trace" | "debug" | "silent"
logger?: Interface
mergeStylesheets?: boolean
minimumExternalSize?: number
noscriptFallback?: boolean
path?: string
preload?: "body" | "media" | "swap" | "js" | "js-lazy"
preloadFonts?: boolean
pruneSource?: boolean
publicPath?: string
reduceInlineStyles?: boolean
-======= - - - - - - - Interface | @playform/inline - v0.0.6 - - - - - - - - - - - - -
-
- -
- - -
-
-
-
-
-
- -

Interface Interface

-
-
- interface Interface - {
    additionalStylesheets?: string[];
    compress?: boolean;
    external?: boolean;
    fonts?: boolean;
    inlineFonts?: boolean;
    inlineThreshold?: number;
    keyframes?: string;
    logLevel?: "info" | "warn" | "error" | "trace" | "debug" | "silent";
    logger?: Interface;
    mergeStylesheets?: boolean;
    minimumExternalSize?: number;
    noscriptFallback?: boolean;
    path?: string;
    preload?: "body" | "media" | "swap" | "js" | "js-lazy";
    preloadFonts?: boolean;
    pruneSource?: boolean;
    publicPath?: string;
    reduceInlineStyles?: boolean;
} -
- -
-
-
- - - - -
-
-
-
-

Properties

-
- - -
- additionalStylesheets?: - string[] -
- -
-
- - -
- compress?: - boolean -
- -
-
- - -
- external?: - boolean -
- -
-
- - -
- fonts?: - boolean -
- -
-
- - -
- inlineFonts?: - boolean -
- -
-
- - -
- inlineThreshold?: - number -
- -
-
- - -
- keyframes?: - string -
- -
-
- - -
- logLevel?: - "info" | "warn" | "error" | "trace" | "debug" | "silent" -
- -
-
- - -
- logger?: - Interface -
- -
-
- - -
- mergeStylesheets?: - boolean -
- -
-
- - -
- minimumExternalSize?: - number -
- -
-
- - -
- noscriptFallback?: - boolean -
- -
-
- - -
- path?: - string -
- -
-
- - -
- preload?: - "body" | "media" | "swap" | "js" | "js-lazy" -
- -
-
- - -
- preloadFonts?: - boolean -
- -
-
- - -
- pruneSource?: - boolean -
- -
-
- - -
- publicPath?: - string -
- -
-
- - -
- reduceInlineStyles?: - boolean -
- -
-
-
-
- - -
-
-
-

- Generated using - TypeDoc -

-
-
- - ->>>>>>> Current +

Properties

additionalStylesheets?: string[]
compress?: boolean
external?: boolean
fonts?: boolean
inlineFonts?: boolean
inlineThreshold?: number
keyframes?: string
logLevel?: "info" | "warn" | "error" | "trace" | "debug" | "silent"
logger?: Interface
mergeStylesheets?: boolean
minimumExternalSize?: number
noscriptFallback?: boolean
path?: string
preload?: "body" | "media" | "swap" | "js" | "js-lazy"
preloadFonts?: boolean
pruneSource?: boolean
publicPath?: string
reduceInlineStyles?: boolean
\ No newline at end of file diff --git a/Documentation/interfaces/Critters.Interface.html b/Documentation/interfaces/Critters.Interface.html index d301bad..ab9de91 100644 --- a/Documentation/interfaces/Critters.Interface.html +++ b/Documentation/interfaces/Critters.Interface.html @@ -1,960 +1,6 @@ -<<<<<<< HEAD -Interface | astro-critters - v2.1.9
interface Interface {
    debug?: ((message) => void);
    error?: ((message) => void);
    info?: ((message) => void);
    trace?: ((message) => void);
    warn?: ((message) => void);
}

Properties

debug? +Interface | astro-critters - v2.1.10
interface Interface {
    debug?: ((message) => void);
    error?: ((message) => void);
    info?: ((message) => void);
    trace?: ((message) => void);
    warn?: ((message) => void);
}

Properties

debug?: ((message) => void)

Type declaration

    • (message): void
    • Parameters

      • message: string

      Returns void

error?: ((message) => void)

Type declaration

    • (message): void
    • Parameters

      • message: string

      Returns void

info?: ((message) => void)

Type declaration

    • (message): void
    • Parameters

      • message: string

      Returns void

trace?: ((message) => void)

Type declaration

    • (message): void
    • Parameters

      • message: string

      Returns void

warn?: ((message) => void)

Type declaration

    • (message): void
    • Parameters

      • message: string

      Returns void

-======= - - - - - - - Interface | @playform/inline - v0.0.6 - - - - - - - - - - - - -
-
- -
- - -
-
-
-
-
-
- -

Interface Interface

-
-
- interface Interface - {
    debug?: ((message) => void);
    error?: ((message) => void);
    info?: ((message) => void);
    trace?: ((message) => void);
    warn?: ((message) => void);
} -
- -
-
-
- - - -
-
-

- Properties -

- -
-
-
-
-
-
-

Properties

-
- - -
- debug?: - ((message) => void) -
-
-

Type declaration

-
    -
  • -
      -
    • - (message): void -
    • -
    • -
      -

      - Parameters -

      -
        -
      • - message: - string -
      • -
      -
      -

      - Returns - void -

      -
    • -
    -
  • -
-
- -
-
- - -
- error?: - ((message) => void) -
-
-

Type declaration

-
    -
  • -
      -
    • - (message): void -
    • -
    • -
      -

      - Parameters -

      -
        -
      • - message: - string -
      • -
      -
      -

      - Returns - void -

      -
    • -
    -
  • -
-
- -
-
- - -
- info?: - ((message) => void) -
-
-

Type declaration

-
    -
  • -
      -
    • - (message): void -
    • -
    • -
      -

      - Parameters -

      -
        -
      • - message: - string -
      • -
      -
      -

      - Returns - void -

      -
    • -
    -
  • -
-
- -
-
- - -
- trace?: - ((message) => void) -
-
-

Type declaration

-
    -
  • -
      -
    • - (message): void -
    • -
    • -
      -

      - Parameters -

      -
        -
      • - message: - string -
      • -
      -
      -

      - Returns - void -

      -
    • -
    -
  • -
-
- -
-
- - -
- warn?: - ((message) => void) -
-
-

Type declaration

-
    -
  • -
      -
    • - (message): void -
    • -
    • -
      -

      - Parameters -

      -
        -
      • - message: - string -
      • -
      -
      -

      - Returns - void -

      -
    • -
    -
  • -
-
- -
-
-
-
- - -
-
-
-

- Generated using - TypeDoc -

-
-
- - ->>>>>>> Current +

Properties

debug?: ((message) => void)

Type declaration

    • (message): void
    • Parameters

      • message: string

      Returns void

error?: ((message) => void)

Type declaration

    • (message): void
    • Parameters

      • message: string

      Returns void

info?: ((message) => void)

Type declaration

    • (message): void
    • Parameters

      • message: string

      Returns void

trace?: ((message) => void)

Type declaration

    • (message): void
    • Parameters

      • message: string

      Returns void

warn?: ((message) => void)

Type declaration

    • (message): void
    • Parameters

      • message: string

      Returns void

\ No newline at end of file diff --git a/Documentation/interfaces/Integration.Interface.html b/Documentation/interfaces/Integration.Interface.html index 9bef8ad..4860c31 100644 --- a/Documentation/interfaces/Integration.Interface.html +++ b/Documentation/interfaces/Integration.Interface.html @@ -1,355 +1 @@ -<<<<<<< HEAD -Interface | astro-critters - v2.1.9
interface Interface ((Option) => AstroIntegration)
-======= - - - - - - - Interface | @playform/inline - v0.0.6 - - - - - - - - - - - - -
-
- -
- - -
-
-
-
-
-
- -

Interface Interface

-
-
- interface Interface - ((Option) => AstroIntegration) -
-
- -
-
-
- - -
-
- -
- - ->>>>>>> Current +Interface | astro-critters - v2.1.10
interface Interface ((Option) => AstroIntegration)
\ No newline at end of file diff --git a/Documentation/interfaces/Option.Interface.html b/Documentation/interfaces/Option.Interface.html index 0cedcbb..f8cb66d 100644 --- a/Documentation/interfaces/Option.Interface.html +++ b/Documentation/interfaces/Option.Interface.html @@ -1,5 +1,4 @@ -<<<<<<< HEAD -Interface | astro-critters - v2.1.9
interface Interface {
    Action?: boolean | default;
    Cache?: boolean | default;
    Critters?: boolean | Interface;
    Exclude?: boolean | Type | Type[] | Set<Type>;
    File?: string | boolean | string[];
    Logger?: boolean | Type;
    Path?: boolean | Type | Type[] | Set<Type>;
}

Hierarchy

  • default
    • Interface

Properties

Action? +Interface | astro-critters - v2.1.10
interface Interface {
    Action?: boolean | default;
    Cache?: boolean | default;
    Critters?: boolean | Interface;
    Exclude?: boolean | Type | Type[] | Set<Type>;
    File?: string | boolean | string[];
    Logger?: boolean | Type;
    Path?: boolean | Type | Type[] | Set<Type>;
}

Hierarchy

  • default
    • Interface

Properties

Properties

Action?: boolean | default

Action pipe configuration.

-
Cache?: boolean | default

Configuration for the target cache.

+
Cache?: boolean | default

Configuration for the target cache.

Default

{ Search: "./", Folder: "./Cache" }
 
-
Critters?: boolean | Interface
Exclude?: boolean | Type | Type[] | Set<Type>

Criteria for excluding files.

-
File?: string | boolean | string[]

File patterns to be matched.

-
Logger?: boolean | Type

Debugging level.

+
Critters?: boolean | Interface
Exclude?: boolean | Type | Type[] | Set<Type>

Criteria for excluding files.

+
File?: string | boolean | string[]

File patterns to be matched.

+
Logger?: boolean | Type

Debugging level.

Default

2
-=======
-
-
-	
-		
-		
-		
-		Interface | @playform/inline - v0.0.6
-		
-		
-		
-		
-		
-		
-		
-		
-		
-	
-	
-		
-		
-
- -
- - -
-
-
-
-
-
- -

Interface Interface

-
-
- interface Interface - {
    Action?: boolean | default;
    Cache?: boolean | default;
    Critters?: boolean | Interface;
    Exclude?: boolean | Type | Type[] | Set<Type>;
    File?: string | boolean | string[];
    Logger?: boolean | Type;
    Path?: boolean | Type | Type[] | Set<Type>;
} -
-
-

Hierarchy

-
    -
  • - default -
      -
    • Interface
    • -
    -
  • -
-
- -
-
-
- - - - -
-
-
-
-

Properties

-
- - -
- Action?: - boolean | default -
-
-

Action pipe configuration.

-
-
- -
-
- - -
- Cache?: - boolean | default -
-
-

Configuration for the target cache.

-
-
-

Default

-
{ Search: "./", Folder: "./Cache" }
 
-
- -
-
- - -
- Critters?: - boolean | Interface -
- -
-
- - -
- Exclude?: - boolean | Type | Type[] | Set<Type> -
-
-

Criteria for excluding files.

-
-
- -
-
- - -
- File?: - string | boolean | string[] -
-
-

File patterns to be matched.

-
-
- -
-
- - -
- Logger?: - boolean | Type -
-
-

Debugging level.

-
-
-

Default

-
2
->>>>>>> Current
+
Path?: boolean | Type | Type[] | Set<Type>

Configuration for the target path(s).

+

Default

"./Target"
 
-
- -
-
- - -
- Path?: - boolean | Type | Type[] | Set<Type> -
-
-

Configuration for the target path(s).

-
-
-

Default

-
"./Target"
-
-<<<<<<< HEAD -
-======= -
- -
-
-
-
- - -
-
-
-

- Generated using - TypeDoc -

-
-
- - ->>>>>>> Current +
\ No newline at end of file diff --git a/Documentation/modules/Critters.html b/Documentation/modules/Critters.html index 974ee84..3b5ad77 100644 --- a/Documentation/modules/Critters.html +++ b/Documentation/modules/Critters.html @@ -1,337 +1,4 @@ -<<<<<<< HEAD -Critters | astro-critters - v2.1.9

Module Critters

Index

Interfaces

Interface +Critters | astro-critters - v2.1.10
-======= - - - - - - - Critters | @playform/inline - v0.0.6 - - - - - - - - - - - - -
-
- -
- - -
-
-
-
-
-
- -

Module Critters

-
- -
-
-

Index

-
-

Interfaces

- -
-
-

Variables

- -
-
-
-
-
- - -
-
-
-

- Generated using - TypeDoc -

-
-
- - ->>>>>>> Current +
\ No newline at end of file diff --git a/Documentation/modules/Function_Integration.html b/Documentation/modules/Function_Integration.html index 2cf8f7a..81faeb0 100644 --- a/Documentation/modules/Function_Integration.html +++ b/Documentation/modules/Function_Integration.html @@ -1,352 +1,5 @@ -<<<<<<< HEAD -Function/Integration | astro-critters - v2.1.9

Module Function/Integration

Index

Variables

Default +Function/Integration | astro-critters - v2.1.10
-======= - - - - - - - Function/Integration | @playform/inline - v0.0.6 - - - - - - - - - - - - -
-
- -
- - -
-
-
-
-
-
- -

Module Function/Integration

-
- -
-
-

Index

-
-

Variables

- -
-
-

Functions

- -
-
-
-
-
- - -
-
-
-

- Generated using - TypeDoc -

-
-
- - ->>>>>>> Current +
\ No newline at end of file diff --git a/Documentation/modules/Integration.html b/Documentation/modules/Integration.html index 1762ee1..790a1ce 100644 --- a/Documentation/modules/Integration.html +++ b/Documentation/modules/Integration.html @@ -1,310 +1,2 @@ -<<<<<<< HEAD -Integration | astro-critters - v2.1.9
-======= - - - - - - - Integration | @playform/inline - v0.0.6 - - - - - - - - - - - - -
-
- -
- - -
-
-
-
-
-
- -

Module Integration

-
- -
-
-

Index

-
-

Interfaces

- -
-
-
-
-
- - -
-
-
-

- Generated using - TypeDoc -

-
-
- - ->>>>>>> Current +Integration | astro-critters - v2.1.10
\ No newline at end of file diff --git a/Documentation/modules/Merge.html b/Documentation/modules/Merge.html index b73236d..6102f40 100644 --- a/Documentation/modules/Merge.html +++ b/Documentation/modules/Merge.html @@ -1,310 +1,2 @@ -<<<<<<< HEAD -Merge | astro-critters - v2.1.9
-======= - - - - - - - Merge | @playform/inline - v0.0.6 - - - - - - - - - - - - -
-
- -
- - -
-
-
-
-
-
- -

Module Merge

-
- -
-
-

Index

-
-

Functions

- -
-
-
-
-
- - -
-
-
-

- Generated using - TypeDoc -

-
-
- - ->>>>>>> Current +Merge | astro-critters - v2.1.10
\ No newline at end of file diff --git a/Documentation/modules/Option.html b/Documentation/modules/Option.html index 8f8e716..1d084de 100644 --- a/Documentation/modules/Option.html +++ b/Documentation/modules/Option.html @@ -1,326 +1,3 @@ -<<<<<<< HEAD -Option | astro-critters - v2.1.9

Index

Interfaces

Interface +Option | astro-critters - v2.1.10
-======= - - - - - - - Option | @playform/inline - v0.0.6 - - - - - - - - - - - - -
-
- -
- - -
-
-
-
-
-
- -

Module Option

-
- -
-
-

Index

-
-

Interfaces

- -
-
-

Variables

- -
-
-
-
-
- - -
-
-
-

- Generated using - TypeDoc -

-
-
- - ->>>>>>> Current +
\ No newline at end of file diff --git a/Documentation/variables/Critters.critters.html b/Documentation/variables/Critters.critters.html index 8fc0053..75afdb1 100644 --- a/Documentation/variables/Critters.critters.html +++ b/Documentation/variables/Critters.critters.html @@ -1,299 +1 @@ -<<<<<<< HEAD -critters | astro-critters - v2.1.9
-======= - - - - - - - critters | @playform/inline - v0.0.6 - - - - - - - - - - - - -
-
- -
- - -
-
-
-
-
-
- -

Variable critters

-
-
- critters: - Interface -
- -
-
- - -
-
-
-

- Generated using - TypeDoc -

-
-
- - ->>>>>>> Current +critters | astro-critters - v2.1.10
\ No newline at end of file diff --git a/Documentation/variables/Function_Integration.Default.html b/Documentation/variables/Function_Integration.Default.html index 1f0a7e1..8b76a47 100644 --- a/Documentation/variables/Function_Integration.Default.html +++ b/Documentation/variables/Function_Integration.Default.html @@ -1,1391 +1 @@ -<<<<<<< HEAD -Default | astro-critters - v2.1.9
Default: {
    Action: {
        Accomplished: false;
        Changed: ((Plan) => Promise<default>);
        Failed: ((On) => Promise<string>);
        Fulfilled: ((__namedParameters) => Promise<string | false>);
        Passed: ((On) => Promise<true>);
        Read: ((__namedParameters) => Promise<string>);
        Wrote: ((__namedParameters) => Promise<Type>);
    };
    Cache: {
        Folder: string;
        Search: string;
    };
    Critters: Interface;
    Exclude: false;
    File: string;
    Logger: 2;
    Path: string;
}

Type declaration

  • Action: {
        Accomplished: false;
        Changed: ((Plan) => Promise<default>);
        Failed: ((On) => Promise<string>);
        Fulfilled: ((__namedParameters) => Promise<string | false>);
        Passed: ((On) => Promise<true>);
        Read: ((__namedParameters) => Promise<string>);
        Wrote: ((__namedParameters) => Promise<Type>);
    }
    • Accomplished: false
    • Changed: ((Plan) => Promise<default>)
        • (Plan): Promise<default>
        • Parameters

          • Plan: default

          Returns Promise<default>

    • Failed: ((On) => Promise<string>)
    • Fulfilled: ((__namedParameters) => Promise<string | false>)
        • (__namedParameters): Promise<string | false>
        • Parameters

          • __namedParameters: default

          Returns Promise<string | false>

    • Passed: ((On) => Promise<true>)
    • Read: ((__namedParameters) => Promise<string>)
        • (__namedParameters): Promise<string>
        • Parameters

          • __namedParameters: default

          Returns Promise<string>

    • Wrote: ((__namedParameters) => Promise<Type>)
        • (__namedParameters): Promise<Type>
        • Parameters

          • __namedParameters: default

          Returns Promise<Type>

  • Cache: {
        Folder: string;
        Search: string;
    }
    • Folder: string
    • Search: string
  • Critters: Interface
  • Exclude: false
  • File: string
  • Logger: 2
  • Path: string
-======= - - - - - - - Default | @playform/inline - v0.0.6 - - - - - - - - - - - - -
-
- -
- - -
-
-
-
-
-
- -

Variable Default

-
-
- Default: - {
    Action: {
        Accomplished: false;
        Changed: ((Plan) => Promise<default>);
        Failed: ((On) => Promise<string>);
        Fulfilled: ((__namedParameters) => Promise<string | false>);
        Passed: ((On) => Promise<true>);
        Read: ((__namedParameters) => Promise<string>);
        Wrote: ((__namedParameters) => Promise<Type>);
    };
    Cache: {
        Folder: string;
        Search: string;
    };
    Critters: Interface;
    Exclude: false;
    File: string;
    Logger: 2;
    Path: string;
} -
-
-

Type declaration

-
    -
  • -
    - Action: {
        Accomplished: false;
        Changed: ((Plan) - => Promise<default>);
        Failed: ((On) - => Promise<string>);
        Fulfilled: ((__namedParameters) - => Promise<string | false>);
        Passed: ((On) - => Promise<true>);
        Read: ((__namedParameters) - => Promise<string>);
        Wrote: ((__namedParameters) - => Promise<Type>);
    } -
    -
      -
    • -
      - Accomplished: false -
      -
    • -
    • -
      - Changed: ((Plan) - => Promise<default>) -
      -
        -
      • -
          -
        • - (Plan): Promise<default> -
        • -
        • -
          -

          - Parameters -

          -
            -
          • - Plan: - default -
          • -
          -
          -

          - Returns - Promise<default> -

          -
        • -
        -
      • -
      -
    • -
    • -
      - Failed: ((On) - => Promise<string>) -
      -
        -
      • -
          -
        • - (On): Promise<string> -
        • -
        • -
          -

          - Parameters -

          -
            -
          • - On: - default -
          • -
          -
          -

          - Returns - Promise<string> -

          -
        • -
        -
      • -
      -
    • -
    • -
      - Fulfilled: ((__namedParameters) - => Promise<string - | false>) -
      -
        -
      • -
          -
        • - (__namedParameters): Promise<string - | false> -
        • -
        • -
          -

          - Parameters -

          -
            -
          • - __namedParameters: - default -
          • -
          -
          -

          - Returns - Promise<string - | false> -

          -
        • -
        -
      • -
      -
    • -
    • -
      - Passed: ((On) - => Promise<true>) -
      -
        -
      • -
          -
        • - (On): Promise<true> -
        • -
        • -
          -

          - Parameters -

          -
            -
          • - On: - default -
          • -
          -
          -

          - Returns - Promise<true> -

          -
        • -
        -
      • -
      -
    • -
    • -
      - Read: ((__namedParameters) - => Promise<string>) -
      -
        -
      • -
          -
        • - (__namedParameters): Promise<string> -
        • -
        • -
          -

          - Parameters -

          -
            -
          • - __namedParameters: - default -
          • -
          -
          -

          - Returns - Promise<string> -

          -
        • -
        -
      • -
      -
    • -
    • -
      - Wrote: ((__namedParameters) - => Promise<Type>) -
      -
        -
      • -
          -
        • - (__namedParameters): Promise<Type> -
        • -
        • -
          -

          - Parameters -

          -
            -
          • - __namedParameters: - default -
          • -
          -
          -

          - Returns - Promise<Type> -

          -
        • -
        -
      • -
      -
    • -
    -
  • -
  • -
    - Cache: {
        Folder: string;
        Search: string;
    } -
    -
      -
    • -
      - Folder: string -
      -
    • -
    • -
      - Search: string -
      -
    • -
    -
  • -
  • -
    - Critters: Interface -
    -
  • -
  • -
    - Exclude: false -
    -
  • -
  • -
    - File: string -
    -
  • -
  • -
    - Logger: 2 -
    -
  • -
  • -
    - Path: string -
    -
  • -
-
- -
-
- - -
-
-
-

- Generated using - TypeDoc -

-
-
- - ->>>>>>> Current +Default | astro-critters - v2.1.10
Default: {
    Action: {
        Accomplished: false;
        Changed: ((Plan) => Promise<default>);
        Failed: ((On) => Promise<string>);
        Fulfilled: ((__namedParameters) => Promise<string | false>);
        Passed: ((On) => Promise<true>);
        Read: ((__namedParameters) => Promise<string>);
        Wrote: ((__namedParameters) => Promise<Type>);
    };
    Cache: {
        Folder: string;
        Search: string;
    };
    Critters: Interface;
    Exclude: false;
    File: string;
    Logger: 2;
    Path: string;
}

Type declaration

  • Action: {
        Accomplished: false;
        Changed: ((Plan) => Promise<default>);
        Failed: ((On) => Promise<string>);
        Fulfilled: ((__namedParameters) => Promise<string | false>);
        Passed: ((On) => Promise<true>);
        Read: ((__namedParameters) => Promise<string>);
        Wrote: ((__namedParameters) => Promise<Type>);
    }
    • Accomplished: false
    • Changed: ((Plan) => Promise<default>)
        • (Plan): Promise<default>
        • Parameters

          • Plan: default

          Returns Promise<default>

    • Failed: ((On) => Promise<string>)
    • Fulfilled: ((__namedParameters) => Promise<string | false>)
        • (__namedParameters): Promise<string | false>
        • Parameters

          • __namedParameters: default

          Returns Promise<string | false>

    • Passed: ((On) => Promise<true>)
    • Read: ((__namedParameters) => Promise<string>)
        • (__namedParameters): Promise<string>
        • Parameters

          • __namedParameters: default

          Returns Promise<string>

    • Wrote: ((__namedParameters) => Promise<Type>)
        • (__namedParameters): Promise<Type>
        • Parameters

          • __namedParameters: default

          Returns Promise<Type>

  • Cache: {
        Folder: string;
        Search: string;
    }
    • Folder: string
    • Search: string
  • Critters: Interface
  • Exclude: false
  • File: string
  • Logger: 2
  • Path: string
\ No newline at end of file diff --git a/Documentation/variables/Function_Integration.Search.html b/Documentation/variables/Function_Integration.Search.html index fb244a5..ca8f0b6 100644 --- a/Documentation/variables/Function_Integration.Search.html +++ b/Documentation/variables/Function_Integration.Search.html @@ -1,303 +1 @@ -<<<<<<< HEAD -Search | astro-critters - v2.1.9
-======= - - - - - - - Search | @playform/inline - v0.0.6 - - - - - - - - - - - - -
-
- -
- - -
-
-
-
-
-
- -

Variable Search

-
-
- Search: - string -
- -
-
- - -
-
-
-

- Generated using - TypeDoc -

-
-
- - ->>>>>>> Current +Search | astro-critters - v2.1.10
\ No newline at end of file diff --git a/Documentation/variables/Option.option.html b/Documentation/variables/Option.option.html index 7b91dd2..8c2d2c4 100644 --- a/Documentation/variables/Option.option.html +++ b/Documentation/variables/Option.option.html @@ -1,1383 +1 @@ -<<<<<<< HEAD -option | astro-critters - v2.1.9
option: {
    Action: {
        Accomplished: false;
        Changed: ((Plan) => Promise<default>);
        Failed: ((On) => Promise<string>);
        Fulfilled: ((__namedParameters) => Promise<string | false>);
        Passed: ((On) => Promise<true>);
        Read: ((__namedParameters) => Promise<string>);
        Wrote: ((__namedParameters) => Promise<Type>);
    };
    Cache: {
        Folder: string;
        Search: string;
    };
    Critters: Interface;
    Exclude: false;
    File: string;
    Logger: 2;
    Path: string;
}

Type declaration

  • Action: {
        Accomplished: false;
        Changed: ((Plan) => Promise<default>);
        Failed: ((On) => Promise<string>);
        Fulfilled: ((__namedParameters) => Promise<string | false>);
        Passed: ((On) => Promise<true>);
        Read: ((__namedParameters) => Promise<string>);
        Wrote: ((__namedParameters) => Promise<Type>);
    }
    • Accomplished: false
    • Changed: ((Plan) => Promise<default>)
        • (Plan): Promise<default>
        • Parameters

          • Plan: default

          Returns Promise<default>

    • Failed: ((On) => Promise<string>)
    • Fulfilled: ((__namedParameters) => Promise<string | false>)
        • (__namedParameters): Promise<string | false>
        • Parameters

          • __namedParameters: default

          Returns Promise<string | false>

    • Passed: ((On) => Promise<true>)
    • Read: ((__namedParameters) => Promise<string>)
        • (__namedParameters): Promise<string>
        • Parameters

          • __namedParameters: default

          Returns Promise<string>

    • Wrote: ((__namedParameters) => Promise<Type>)
        • (__namedParameters): Promise<Type>
        • Parameters

          • __namedParameters: default

          Returns Promise<Type>

  • Cache: {
        Folder: string;
        Search: string;
    }
    • Folder: string
    • Search: string
  • Critters: Interface
  • Exclude: false
  • File: string
  • Logger: 2
  • Path: string
-======= - - - - - - - option | @playform/inline - v0.0.6 - - - - - - - - - - - - -
-
- -
- - -
-
-
-
-
-
- -

Variable option

-
-
- option: - {
    Action: {
        Accomplished: false;
        Changed: ((Plan) => Promise<default>);
        Failed: ((On) => Promise<string>);
        Fulfilled: ((__namedParameters) => Promise<string | false>);
        Passed: ((On) => Promise<true>);
        Read: ((__namedParameters) => Promise<string>);
        Wrote: ((__namedParameters) => Promise<Type>);
    };
    Cache: {
        Folder: string;
        Search: string;
    };
    Critters: Interface;
    Exclude: false;
    File: string;
    Logger: 2;
    Path: string;
} -
-
-

Type declaration

-
    -
  • -
    - Action: {
        Accomplished: false;
        Changed: ((Plan) - => Promise<default>);
        Failed: ((On) - => Promise<string>);
        Fulfilled: ((__namedParameters) - => Promise<string | false>);
        Passed: ((On) - => Promise<true>);
        Read: ((__namedParameters) - => Promise<string>);
        Wrote: ((__namedParameters) - => Promise<Type>);
    } -
    -
      -
    • -
      - Accomplished: false -
      -
    • -
    • -
      - Changed: ((Plan) - => Promise<default>) -
      -
        -
      • -
          -
        • - (Plan): Promise<default> -
        • -
        • -
          -

          - Parameters -

          -
            -
          • - Plan: - default -
          • -
          -
          -

          - Returns - Promise<default> -

          -
        • -
        -
      • -
      -
    • -
    • -
      - Failed: ((On) - => Promise<string>) -
      -
        -
      • -
          -
        • - (On): Promise<string> -
        • -
        • -
          -

          - Parameters -

          -
            -
          • - On: - default -
          • -
          -
          -

          - Returns - Promise<string> -

          -
        • -
        -
      • -
      -
    • -
    • -
      - Fulfilled: ((__namedParameters) - => Promise<string - | false>) -
      -
        -
      • -
          -
        • - (__namedParameters): Promise<string - | false> -
        • -
        • -
          -

          - Parameters -

          -
            -
          • - __namedParameters: - default -
          • -
          -
          -

          - Returns - Promise<string - | false> -

          -
        • -
        -
      • -
      -
    • -
    • -
      - Passed: ((On) - => Promise<true>) -
      -
        -
      • -
          -
        • - (On): Promise<true> -
        • -
        • -
          -

          - Parameters -

          -
            -
          • - On: - default -
          • -
          -
          -

          - Returns - Promise<true> -

          -
        • -
        -
      • -
      -
    • -
    • -
      - Read: ((__namedParameters) - => Promise<string>) -
      -
        -
      • -
          -
        • - (__namedParameters): Promise<string> -
        • -
        • -
          -

          - Parameters -

          -
            -
          • - __namedParameters: - default -
          • -
          -
          -

          - Returns - Promise<string> -

          -
        • -
        -
      • -
      -
    • -
    • -
      - Wrote: ((__namedParameters) - => Promise<Type>) -
      -
        -
      • -
          -
        • - (__namedParameters): Promise<Type> -
        • -
        • -
          -

          - Parameters -

          -
            -
          • - __namedParameters: - default -
          • -
          -
          -

          - Returns - Promise<Type> -

          -
        • -
        -
      • -
      -
    • -
    -
  • -
  • -
    - Cache: {
        Folder: string;
        Search: string;
    } -
    -
      -
    • -
      - Folder: string -
      -
    • -
    • -
      - Search: string -
      -
    • -
    -
  • -
  • -
    - Critters: Interface -
    -
  • -
  • -
    - Exclude: false -
    -
  • -
  • -
    - File: string -
    -
  • -
  • -
    - Logger: 2 -
    -
  • -
  • -
    - Path: string -
    -
  • -
-
- -
-
- - -
-
-
-

- Generated using - TypeDoc -

-
-
- - ->>>>>>> Current +option | astro-critters - v2.1.10
option: {
    Action: {
        Accomplished: false;
        Changed: ((Plan) => Promise<default>);
        Failed: ((On) => Promise<string>);
        Fulfilled: ((__namedParameters) => Promise<string | false>);
        Passed: ((On) => Promise<true>);
        Read: ((__namedParameters) => Promise<string>);
        Wrote: ((__namedParameters) => Promise<Type>);
    };
    Cache: {
        Folder: string;
        Search: string;
    };
    Critters: Interface;
    Exclude: false;
    File: string;
    Logger: 2;
    Path: string;
}

Type declaration

  • Action: {
        Accomplished: false;
        Changed: ((Plan) => Promise<default>);
        Failed: ((On) => Promise<string>);
        Fulfilled: ((__namedParameters) => Promise<string | false>);
        Passed: ((On) => Promise<true>);
        Read: ((__namedParameters) => Promise<string>);
        Wrote: ((__namedParameters) => Promise<Type>);
    }
    • Accomplished: false
    • Changed: ((Plan) => Promise<default>)
        • (Plan): Promise<default>
        • Parameters

          • Plan: default

          Returns Promise<default>

    • Failed: ((On) => Promise<string>)
    • Fulfilled: ((__namedParameters) => Promise<string | false>)
        • (__namedParameters): Promise<string | false>
        • Parameters

          • __namedParameters: default

          Returns Promise<string | false>

    • Passed: ((On) => Promise<true>)
    • Read: ((__namedParameters) => Promise<string>)
        • (__namedParameters): Promise<string>
        • Parameters

          • __namedParameters: default

          Returns Promise<string>

    • Wrote: ((__namedParameters) => Promise<Type>)
        • (__namedParameters): Promise<Type>
        • Parameters

          • __namedParameters: default

          Returns Promise<Type>

  • Cache: {
        Folder: string;
        Search: string;
    }
    • Folder: string
    • Search: string
  • Critters: Interface
  • Exclude: false
  • File: string
  • Logger: 2
  • Path: string
\ No newline at end of file diff --git a/Target/Function/Integration.d.ts b/Target/Function/Integration.d.ts index 03249c1..990df2c 100644 --- a/Target/Function/Integration.d.ts +++ b/Target/Function/Integration.d.ts @@ -6,16 +6,26 @@ declare const _default: Interface; export default _default; import type Interface from "../Interface/Integration.js"; export declare const Default: { - Critters: import("../Interface/Critters.js").default; + File: string; + Cache: { + Search: string; + Folder: string; + }; + Path: string; + Logger: 2; Action: { - Failed: (On: any) => Promise; - Fulfilled: ({ File }: { - File: any; - }) => Promise; - Accomplished: boolean; + Accomplished: false; + Failed: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise; + Fulfilled: ({ File }: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise; + Read: ({ Input }: import("@playform/pipe/Target/Interface/File.js").default) => Promise; + Wrote: ({ Buffer }: import("@playform/pipe/Target/Interface/File.js").default) => Promise; + Passed: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise; + Changed: (Plan: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise; }; + Exclude: false; + Critters: import("../Interface/Critters.js").default; }; -export declare const Search: any; +export declare const Search: string; export declare const Merge: (...objects: Ts) => import("deepmerge-ts").DeepMergeHKT Promise; - Fulfilled: ({ File }: { - File: any; - }) => Promise; - Accomplished: boolean; + Accomplished: false; + Failed: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise; + Fulfilled: ({ File }: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise; + Read: ({ Input }: import("@playform/pipe/Target/Interface/File.js").default) => Promise; + Wrote: ({ Buffer }: import("@playform/pipe/Target/Interface/File.js").default) => Promise; + Passed: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise; + Changed: (Plan: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise; }; + Exclude: false; + Critters: import("../Interface/Critters.js").default; }; export default _default; diff --git a/package.json b/package.json index c6ae84f..e35c618 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "astro-critters", - "version": "2.1.9", + "version": "2.1.10", "private": false, "description": "🦔 Inline —", "keywords": [