From b065e3a03cfd73a35b118bc900d8b7036b65c381 Mon Sep 17 00:00:00 2001 From: tabuna Date: Tue, 26 Mar 2024 20:44:30 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20agoalofa?= =?UTF-8?q?life/orchid-fields@1faf8322be096f6cf2004e21ab936a4fcc945ec7=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/dependabot.yml | 25 +++ .github/workflows/deploy.yml | 35 +++ 404/index.html | 83 ++++++++ assets/build/css/main.css | 4 + assets/build/css/main.css.map | 1 + assets/build/js/main.js | 3 + assets/build/js/main.js.LICENSE.txt | 7 + assets/build/js/main.js.map | 1 + assets/build/mix-manifest.json | 4 + assets/fields/audio/audio.gif | Bin 0 -> 81823 bytes assets/fields/avatar/single.png | Bin 0 -> 224261 bytes assets/fields/avatar/table.png | Bin 0 -> 650926 bytes assets/fields/image_zoom/image_zoom.gif | Bin 0 -> 4970715 bytes assets/fields/range/big.png | Bin 0 -> 27182 bytes assets/fields/range/flat.png | Bin 0 -> 77746 bytes assets/fields/range/modern.png | Bin 0 -> 20589 bytes assets/fields/range/range.gif | Bin 0 -> 2240997 bytes assets/fields/range/round.png | Bin 0 -> 88391 bytes assets/fields/range/sharp.png | Bin 0 -> 75615 bytes assets/fields/range/square.png | Bin 0 -> 72937 bytes assets/fields/rate/rate.gif | Bin 0 -> 450145 bytes assets/fields/rate/rate.mov | Bin 0 -> 1082864 bytes assets/images/jigsaw.png | Bin 0 -> 26060 bytes assets/img/docsearch.png | Bin 0 -> 74316 bytes assets/img/github.svg | 3 + assets/img/icon-stack.svg | 16 ++ assets/img/icon-terminal.svg | 15 ++ assets/img/icon-window.svg | 20 ++ assets/img/logo-large.svg | 34 +++ assets/img/logo.png | Bin 0 -> 551 bytes assets/img/logo.svg | 61 ++++++ assets/img/magnifying-glass.svg | 8 + docs/algolia-docsearch/index.html | 255 ++++++++++++++++++++++ docs/custom-404-page/index.html | 215 +++++++++++++++++++ docs/customizing-your-site/index.html | 269 ++++++++++++++++++++++++ docs/fields/audio/index.html | 210 ++++++++++++++++++ docs/fields/avatar/index.html | 222 +++++++++++++++++++ docs/fields/image_zoom/index.html | 217 +++++++++++++++++++ docs/fields/range/index.html | 245 +++++++++++++++++++++ docs/fields/rate/index.html | 226 ++++++++++++++++++++ docs/getting-started/index.html | 200 ++++++++++++++++++ docs/how-make-custom/index.html | 196 +++++++++++++++++ docs/install/index.html | 208 ++++++++++++++++++ docs/navigation/index.html | 219 +++++++++++++++++++ favicon.ico | Bin 0 -> 2389 bytes index.html | 119 +++++++++++ sitemap.xml | 68 ++++++ 47 files changed, 3189 insertions(+) create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/deploy.yml create mode 100644 404/index.html create mode 100644 assets/build/css/main.css create mode 100644 assets/build/css/main.css.map create mode 100644 assets/build/js/main.js create mode 100644 assets/build/js/main.js.LICENSE.txt create mode 100644 assets/build/js/main.js.map create mode 100644 assets/build/mix-manifest.json create mode 100644 assets/fields/audio/audio.gif create mode 100644 assets/fields/avatar/single.png create mode 100644 assets/fields/avatar/table.png create mode 100644 assets/fields/image_zoom/image_zoom.gif create mode 100644 assets/fields/range/big.png create mode 100644 assets/fields/range/flat.png create mode 100644 assets/fields/range/modern.png create mode 100644 assets/fields/range/range.gif create mode 100644 assets/fields/range/round.png create mode 100644 assets/fields/range/sharp.png create mode 100644 assets/fields/range/square.png create mode 100644 assets/fields/rate/rate.gif create mode 100644 assets/fields/rate/rate.mov create mode 100644 assets/images/jigsaw.png create mode 100644 assets/img/docsearch.png create mode 100644 assets/img/github.svg create mode 100644 assets/img/icon-stack.svg create mode 100644 assets/img/icon-terminal.svg create mode 100644 assets/img/icon-window.svg create mode 100644 assets/img/logo-large.svg create mode 100644 assets/img/logo.png create mode 100644 assets/img/logo.svg create mode 100644 assets/img/magnifying-glass.svg create mode 100644 docs/algolia-docsearch/index.html create mode 100644 docs/custom-404-page/index.html create mode 100644 docs/customizing-your-site/index.html create mode 100644 docs/fields/audio/index.html create mode 100644 docs/fields/avatar/index.html create mode 100644 docs/fields/image_zoom/index.html create mode 100644 docs/fields/range/index.html create mode 100644 docs/fields/rate/index.html create mode 100644 docs/getting-started/index.html create mode 100644 docs/how-make-custom/index.html create mode 100644 docs/install/index.html create mode 100644 docs/navigation/index.html create mode 100644 favicon.ico create mode 100644 index.html create mode 100644 sitemap.xml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..88f6408 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,25 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + + # Maintain dependencies for npm + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly" + + # Maintain dependencies for Composer + - package-ecosystem: "composer" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..bc7d6cc --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,35 @@ +name: Jigsaw deploy + +on: + push: + branches: + - docs + +jobs: + build-and-deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout 🛎️ + uses: actions/checkout@v3 + + - name: Setup PHP 🔧 + uses: shivammathur/setup-php@v2 + with: + php-version: 8.1 + extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick + coverage: none + tools: composer:v2 + + - name: Install and Build 🔧 + run: | + composer install --no-interaction --prefer-dist --optimize-autoloader --no-dev + npm install --force + npm run prod + + - name: Deploy 🚀 + uses: JamesIves/github-pages-deploy-action@v4 + with: + single-commit: true + token: ${{ secrets.ACCESS_TOKEN }} + branch: gh-pages + folder: build_production/ diff --git a/404/index.html b/404/index.html new file mode 100644 index 0000000..2e90432 --- /dev/null +++ b/404/index.html @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + Extra Fields + + + + + + + + + + + + + + + +
+
+

404

+ +

Page not found

+ +
+ +

+ Need to update this page? See the Jigsaw documentation. +

+
+
+ + + + + + + diff --git a/assets/build/css/main.css b/assets/build/css/main.css new file mode 100644 index 0000000..13f325b --- /dev/null +++ b/assets/build/css/main.css @@ -0,0 +1,4 @@ +.hljs-comment,.hljs-quote{color:#696969}.hljs-deletion,.hljs-name,.hljs-regexp,.hljs-selector-class,.hljs-selector-id,.hljs-tag,.hljs-template-variable,.hljs-variable{color:#d91e18}.hljs-attribute,.hljs-built_in,.hljs-builtin-name,.hljs-link,.hljs-literal,.hljs-meta,.hljs-number,.hljs-params,.hljs-type{color:#aa5d00}.hljs-addition,.hljs-bullet,.hljs-string,.hljs-symbol{color:green}.hljs-section,.hljs-title{color:#007faa}.hljs-keyword,.hljs-selector-tag{color:#7928a1}.hljs{background:#fefefe;color:#545454;display:block;overflow-x:auto;padding:.5em}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}@media screen and (-ms-high-contrast:active){.hljs-addition,.hljs-attribute,.hljs-built_in,.hljs-builtin-name,.hljs-bullet,.hljs-comment,.hljs-link,.hljs-literal,.hljs-meta,.hljs-number,.hljs-params,.hljs-quote,.hljs-string,.hljs-symbol,.hljs-type{color:highlight}.hljs-keyword,.hljs-selector-tag{font-weight:700}} +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{-webkit-text-size-adjust:100%;line-height:1.15}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:transparent;background-image:none}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}fieldset,ol,ul{margin:0;padding:0}ol,ul{list-style:none}html{font-family:Nunito Sans;line-height:1.5}*,:after,:before{border:0 solid #e2e8f0;box-sizing:border-box}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#a0aec0}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#a0aec0}input::placeholder,textarea::placeholder{color:#a0aec0}[role=button],button{cursor:pointer}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{color:inherit;line-height:inherit;padding:0}code,kbd,pre,samp{font-family:monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}body{font-size:17px}a{color:#3182ce;color:rgba(49,130,206,var(--text-opacity));font-weight:600;text-decoration:none}a,a:hover{--text-opacity:1}a:hover{color:#2c5282;color:rgba(44,82,130,var(--text-opacity))}blockquote{--border-opacity:1;--text-opacity:1;border-color:#63b3ed;border-color:rgba(99,179,237,var(--border-opacity));border-left-width:4px;color:#2d3748;color:rgba(45,55,72,var(--text-opacity));font-size:1.125rem;font-style:italic;font-weight:400;margin-bottom:2rem;margin-top:2rem;padding-left:1.5rem}code{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity));border-radius:.25rem;font-size:.925rem;padding:1px .5rem}code.hljs{background-color:transparent;padding:0}code.hljs .hljs-comment,code.hljs .hljs-keyword,code.hljs .hljs-meta{font-style:normal;font-weight:400}h1,h2,h3,h4,h5,h6{--text-opacity:1;color:#1a202c;color:rgba(26,32,44,var(--text-opacity));line-height:1.25;margin-bottom:1rem;margin-top:2rem}h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child,h6:first-child{margin-top:0}h1{font-size:2.625rem;font-weight:800}h2{font-size:2.125rem}h2,h3{font-weight:700}h3{font-size:1.75rem}h4{font-size:1.5rem}h4,h5{font-weight:400}h5{font-size:1.25rem}h6{font-size:1.125rem;font-weight:300}hr{--border-opacity:1;border-bottom-width:1px;border-color:#bee3f8;border-color:rgba(190,227,248,var(--border-opacity));border-radius:9999px;margin-bottom:3rem;margin-top:3rem}li ol,li ul{margin-bottom:0;margin-top:0}ol,ul{margin-bottom:1rem;margin-top:1rem}ol{list-style-type:decimal}p{margin-bottom:.75rem;margin-top:.75rem}@media (min-width:768px){p{margin-bottom:1.5rem;margin-top:1.5rem}}pre{--bg-opacity:1;background-color:#edf2f7;background-color:rgba(237,242,247,var(--bg-opacity));border-radius:.25rem;box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);font-size:1rem;line-height:1.75;margin-bottom:1.5rem;margin-top:1.5rem;overflow-x:auto;padding:1rem}pre code{background-color:transparent;display:block;padding:0}::-moz-selection{--bg-opacity:1;--text-opacity:1;background-color:#4299e1;background-color:rgba(66,153,225,var(--bg-opacity));color:#fff;color:rgba(255,255,255,var(--text-opacity))}::selection{--bg-opacity:1;--text-opacity:1;background-color:#4299e1;background-color:rgba(66,153,225,var(--bg-opacity));color:#fff;color:rgba(255,255,255,var(--text-opacity))}.nav-menu{--bg-opacity:1;background-color:#edf2f7;background-color:rgba(237,242,247,var(--bg-opacity));box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);margin:-3rem -2rem 2rem;padding:2rem 1rem 1rem;width:auto}@media (min-width:1024px){.nav-menu{background-color:transparent;border-bottom-width:0;box-shadow:none;display:block;margin-left:-1rem;margin-right:-1rem;margin-top:.25rem;padding-left:0;padding-right:1rem;padding-top:0;width:25%}}.nav-menu__item{--text-opacity:1;color:#2d3748;color:rgba(45,55,72,var(--text-opacity));display:block;font-size:.925rem;margin-bottom:.75rem;margin-top:0;text-decoration:none}.docsearch-input{background-image:url(/assets/img/magnifying-glass.svg);background-position:.8em;background-repeat:no-repeat;text-indent:1.2em}@media (min-width:1024px){.docsearch-input:focus{width:66.666667%}}@media (min-width:1280px){.docsearch-input:focus{width:50%}}.docsearch-input__wrapper{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity));left:0;margin-top:1.75rem;padding-left:1rem;padding-right:1rem;position:absolute;top:0;width:100%;z-index:10}@media (min-width:768px){.docsearch-input__wrapper{margin-top:0;padding-left:0;padding-right:0;position:relative}}.algolia-autocomplete{text-align:right;width:100%}.algolia-autocomplete .ds-dropdown-menu{max-width:750px!important;min-width:auto!important;width:100%}.algolia-autocomplete .ds-dropdown-menu .algolia-docsearch-suggestion .algolia-docsearch-suggestion--content{width:100%}@media (min-width:768px){.algolia-autocomplete .ds-dropdown-menu .algolia-docsearch-suggestion .algolia-docsearch-suggestion--content{width:66.666667%}}.algolia-autocomplete .ds-dropdown-menu .algolia-docsearch-suggestion .algolia-docsearch-suggestion--text{font-weight:400;line-height:1.4}.algolia-autocomplete .ds-dropdown-menu .algolia-docsearch-suggestion .algolia-docsearch-suggestion--wrapper{padding-bottom:.75rem;padding-top:.75rem}.algolia-autocomplete .ds-dropdown-menu .algolia-docsearch-suggestion .algolia-docsearch-suggestion--subcategory-column{display:none}@media (min-width:768px){.algolia-autocomplete .ds-dropdown-menu .algolia-docsearch-suggestion .algolia-docsearch-suggestion--subcategory-column{display:inline-block;width:33.333333%}}.bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.bg-gray-100{--bg-opacity:1;background-color:#f7fafc;background-color:rgba(247,250,252,var(--bg-opacity))}.bg-gray-400{--bg-opacity:1;background-color:#cbd5e0;background-color:rgba(203,213,224,var(--bg-opacity))}.bg-blue-500{--bg-opacity:1;background-color:#4299e1;background-color:rgba(66,153,225,var(--bg-opacity))}.bg-purple{--bg-opacity:1;background-color:#272531;background-color:rgba(39,37,49,var(--bg-opacity))}.hover\:bg-gray-600:hover{--bg-opacity:1;background-color:#718096;background-color:rgba(113,128,150,var(--bg-opacity))}.hover\:bg-blue-100:hover{--bg-opacity:1;background-color:#ebf8ff;background-color:rgba(235,248,255,var(--bg-opacity))}.hover\:bg-blue-600:hover{--bg-opacity:1;background-color:#3182ce;background-color:rgba(49,130,206,var(--bg-opacity))}.border-gray-500{--border-opacity:1;border-color:#a0aec0;border-color:rgba(160,174,192,var(--border-opacity))}.border-blue-500{--border-opacity:1;border-color:#4299e1;border-color:rgba(66,153,225,var(--border-opacity))}.focus\:border-blue-400:focus{--border-opacity:1;border-color:#63b3ed;border-color:rgba(99,179,237,var(--border-opacity))}.rounded{border-radius:.25rem}.rounded-md{border-radius:.375rem}.rounded-lg{border-radius:2rem}.rounded-full{border-radius:9999px}.border{border-width:1px}.block{display:block}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.hidden{display:none}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.flex-1{flex:1 1 0%}.flex-auto{flex:1 1 auto}.font-sans{font-family:Nunito Sans}.font-light{font-weight:300}.font-normal{font-weight:400}.font-semibold{font-weight:600}.h-4{height:1rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-24{height:6rem}.h-full{height:100%}.text-sm{font-size:.925rem}.text-lg{font-size:1.125rem}.text-xl{font-size:1.25rem}.text-2xl{font-size:1.5rem}.text-3xl{font-size:1.75rem}.text-6xl{font-size:10rem}.leading-none{line-height:1}.leading-normal{line-height:1.6}.m-auto{margin:auto}.my-0{margin-bottom:0;margin-top:0}.mx-3{margin-left:.75rem;margin-right:.75rem}.my-8{margin-bottom:2rem;margin-top:2rem}.my-10{margin-bottom:2.5rem;margin-top:2.5rem}.mx-auto{margin-left:auto;margin-right:auto}.-mx-2{margin-left:-.5rem;margin-right:-.5rem}.-mx-4{margin-left:-1rem;margin-right:-1rem}.mb-0{margin-bottom:0}.mb-2{margin-bottom:.5rem}.mr-3{margin-right:.75rem}.mt-4{margin-top:1rem}.mr-4{margin-right:1rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.mb-10{margin-bottom:2.5rem}.mt-12{margin-top:3rem}.mt-32{margin-top:8rem}.mt-40{margin-top:10rem}.ml-auto{margin-left:auto}.-mt-px{margin-top:-1px}.max-w-none{max-width:none}.max-w-lg{max-width:32rem}.max-w-6xl{max-width:72rem}.max-w-8xl{max-width:88rem}.min-h-screen{min-height:100vh}.focus\:outline-none:focus,.outline-none{outline:2px solid transparent;outline-offset:2px}.p-3{padding:.75rem}.p-5{padding:1.25rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-4{padding-bottom:1rem;padding-top:1rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-10{padding-bottom:2.5rem;padding-top:2.5rem}.pb-0{padding-bottom:0}.pr-4{padding-right:1rem}.pl-4{padding-left:1rem}.pt-6{padding-top:1.5rem}.pr-7{padding-right:1.75rem}.pb-16{padding-bottom:4rem}.static{position:static}.absolute{position:absolute}.relative{position:relative}.shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.fill-current{fill:currentColor}.text-center{text-align:center}.text-right{text-align:right}.text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.text-gray-600{--text-opacity:1;color:#718096;color:rgba(113,128,150,var(--text-opacity))}.text-gray-700{--text-opacity:1;color:#4a5568;color:rgba(74,85,104,var(--text-opacity))}.text-gray-800{--text-opacity:1;color:#2d3748;color:rgba(45,55,72,var(--text-opacity))}.text-gray-900{--text-opacity:1;color:#1a202c;color:rgba(26,32,44,var(--text-opacity))}.text-blue-500{--text-opacity:1;color:#4299e1;color:rgba(66,153,225,var(--text-opacity))}.text-blue-900{--text-opacity:1;color:#2a4365;color:rgba(42,67,101,var(--text-opacity))}.hover\:text-white:hover{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.hover\:text-blue-500:hover{--text-opacity:1;color:#4299e1;color:rgba(66,153,225,var(--text-opacity))}.hover\:text-blue-600:hover{--text-opacity:1;color:#3182ce;color:rgba(49,130,206,var(--text-opacity))}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.break-words{word-wrap:break-word;overflow-wrap:break-word}.w-4{width:1rem}.w-12{width:3rem}.w-2\/5{width:40%}.w-full{width:100%}@-webkit-keyframes spin{to{transform:rotate(1turn)}}@keyframes spin{to{transform:rotate(1turn)}}@-webkit-keyframes ping{75%,to{opacity:0;transform:scale(2)}}@keyframes ping{75%,to{opacity:0;transform:scale(2)}}@-webkit-keyframes pulse{50%{opacity:.5}}@keyframes pulse{50%{opacity:.5}}@-webkit-keyframes bounce{0%,to{-webkit-animation-timing-function:cubic-bezier(.8,0,1,1);animation-timing-function:cubic-bezier(.8,0,1,1);transform:translateY(-25%)}50%{-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1);transform:none}}@keyframes bounce{0%,to{-webkit-animation-timing-function:cubic-bezier(.8,0,1,1);animation-timing-function:cubic-bezier(.8,0,1,1);transform:translateY(-25%)}50%{-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1);transform:none}}.animate-pulse{-webkit-animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite;animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.transition-fast{transition:all .2s ease-out}@media (min-width:640px){.sm\:container{width:100%}@media (min-width:640px){.sm\:container{max-width:640px}}@media (min-width:768px){.sm\:container{max-width:768px}}@media (min-width:1024px){.sm\:container{max-width:1024px}}@media (min-width:1280px){.sm\:container{max-width:1280px}}.sm\:block{display:block}}@media (min-width:768px){.md\:container{width:100%}@media (min-width:640px){.md\:container{max-width:640px}}@media (min-width:768px){.md\:container{max-width:768px}}@media (min-width:1024px){.md\:container{max-width:1024px}}@media (min-width:1280px){.md\:container{max-width:1280px}}.md\:block{display:block}.md\:flex{display:flex}.md\:hidden{display:none}.md\:flex-row{flex-direction:row}.md\:h-5{height:1.25rem}.md\:text-2xl{font-size:1.5rem}.md\:mr-2{margin-right:.5rem}.md\:px-8{padding-left:2rem;padding-right:2rem}.md\:py-12{padding-bottom:3rem;padding-top:3rem}.md\:pl-10{padding-left:2.5rem}.md\:w-1\/3{width:33.333333%}}@media (min-width:1024px){.lg\:container{width:100%}@media (min-width:640px){.lg\:container{max-width:640px}}@media (min-width:768px){.lg\:container{max-width:768px}}@media (min-width:1024px){.lg\:container{max-width:1024px}}@media (min-width:1280px){.lg\:container{max-width:1280px}}.lg\:block{display:block}.lg\:hidden{display:none}.lg\:flex-row{flex-direction:row}.lg\:mb-0{margin-bottom:0}.lg\:mb-24{margin-bottom:6rem}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:pl-4{padding-left:1rem}.lg\:w-1\/2{width:50%}.lg\:w-3\/5{width:60%}}@media (min-width:1280px){.xl\:container{width:100%}@media (min-width:640px){.xl\:container{max-width:640px}}@media (min-width:768px){.xl\:container{max-width:768px}}@media (min-width:1024px){.xl\:container{max-width:1024px}}@media (min-width:1280px){.xl\:container{max-width:1280px}}.xl\:w-1\/3{width:33.333333%}} + +/*# sourceMappingURL=main.css.map*/ \ No newline at end of file diff --git a/assets/build/css/main.css.map b/assets/build/css/main.css.map new file mode 100644 index 0000000..f24708a --- /dev/null +++ b/assets/build/css/main.css.map @@ -0,0 +1 @@ +{"version":3,"file":"css/main.css","mappings":"AAKA,0BAEE,aACF,CAGA,+HAQE,aACF,CAeA,2HACE,aACF,CAGA,sDAIE,WACF,CAGA,0BAEE,aACF,CAGA,iCAEE,aACF,CAEA,MAGE,kBAAmB,CACnB,aAAc,CAHd,aAAc,CACd,eAAgB,CAGhB,YACF,CAEA,eACE,iBACF,CAEA,aACE,eACF,CAEA,6CACE,2MAeM,eACJ,CAEA,iCAEI,eACJ,CACJ,C;AClGA,ozFACA,8OCDA,KACI,cDIJ,CCDA,EDQA,6FADA,CCFI,UDGJ,gBAEA,CCLI,QDGJ,uDAEA,CCAA,WDFA,qSAaA,CCAA,KDbA,qJAqBA,CCAA,UDrBA,sCA0BA,CCDI,qEDzBJ,iCAgCA,CCCA,kBDjCA,2HA4CA,CCAI,0FD5CJ,YAoDA,CCHA,GDjDA,kCAyDA,CCHA,GDtDA,kBA8DA,CCHA,MD3DA,eAmEA,CCRA,GD3DA,iBAmEA,CCHA,GDhEA,gBAwEA,CCHA,MDrEA,eA6EA,CCRA,GDrEA,iBA6EA,CCHA,GD1EA,kCAkFA,CCHA,GD/EA,4KAyFA,CCFI,YDvFJ,4BA8FA,CCDA,MD7FA,kCAmGA,CCDA,GDlGA,uBAuGA,CCDA,EDtGA,sCA2GA,CCFI,yBAHJ,EDtGA,sCA+GE,CACF,CCFA,ID9GA,uRA2HA,CCHI,SDxHJ,oDAgIA,CCDA,iBD/HA,mKAqIA,CCNA,YD/HA,mKAqIA,CEjJA,UFYA,wNAiJA,CElJI,0BAXJ,UFYA,iMA8JE,CACF,CElJA,gBFbA,8JAwKA,CGpLA,iBACI,uDACA,yBACA,4BACA,iBHuLJ,CGrLI,0BACI,uBHKR,gBAmLE,CACF,CGpLI,0BACI,uBHDR,SAwLE,CACF,CGnLI,0BHNJ,sMAmMA,CGnLQ,yBAVJ,0BHNJ,6DAyME,CACF,CGlLA,sBHxBA,2BA+MA,CGnLI,wCAGI,0BACA,yBHhCR,UAoNA,CGjLY,6GHnCZ,UAuNA,CGjLgB,yBAHJ,6GHnCZ,gBA2NE,CACF,CGjLY,0GH3CZ,gBG8CgB,eHkLhB,CG/KY,6GHjDZ,wCAmOA,CG9KY,wHHrDZ,YAsOA,CG9KgB,yBAHJ,wHHrDZ,qCA2OE,CACF,CA5OA,y7LIZA,yBJCA,kQAWA,0BIZA,yBJCA,kQAWA,0VIZA,0BJCA,kQAWA,mQIZA,0BJCA,kQAWA,8B","sources":["webpack:///./node_modules/highlight.js/styles/a11y-light.css","webpack:///./source/_assets/sass/main.scss","webpack:///./source/_assets/sass/_base.scss","webpack:///./source/_assets/sass/_navigation.scss","webpack:///./source/_assets/sass/_search.scss","webpack:///"],"sourcesContent":["/* a11y-light theme */\n/* Based on the Tomorrow Night Eighties theme: https://github.com/isagalaev/highlight.js/blob/master/src/styles/tomorrow-night-eighties.css */\n/* @author: ericwbailey */\n\n/* Comment */\n.hljs-comment,\n.hljs-quote {\n color: #696969;\n}\n\n/* Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-tag,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class,\n.hljs-regexp,\n.hljs-deletion {\n color: #d91e18;\n}\n\n/* Orange */\n.hljs-number,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params,\n.hljs-meta,\n.hljs-link {\n color: #aa5d00;\n}\n\n/* Yellow */\n.hljs-attribute {\n color: #aa5d00;\n}\n\n/* Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-addition {\n color: #008000;\n}\n\n/* Blue */\n.hljs-title,\n.hljs-section {\n color: #007faa;\n}\n\n/* Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n color: #7928a1;\n}\n\n.hljs {\n display: block;\n overflow-x: auto;\n background: #fefefe;\n color: #545454;\n padding: 0.5em;\n}\n\n.hljs-emphasis {\n font-style: italic;\n}\n\n.hljs-strong {\n font-weight: bold;\n}\n\n@media screen and (-ms-high-contrast: active) {\n .hljs-addition,\n .hljs-attribute,\n .hljs-built_in,\n .hljs-builtin-name,\n .hljs-bullet,\n .hljs-comment,\n .hljs-link,\n .hljs-literal,\n .hljs-meta,\n .hljs-number,\n .hljs-params,\n .hljs-string,\n .hljs-symbol,\n .hljs-type,\n .hljs-quote {\n color: highlight;\n }\n\n .hljs-keyword,\n .hljs-selector-tag {\n font-weight: bold;\n }\n}\n","@tailwind base;\n@tailwind components;\n\n// Code syntax highlighting,\n// powered by https://highlightjs.org\n@import '~highlight.js/styles/a11y-light.css';\n\n@import 'base';\n@import 'navigation';\n@import 'documentation';\n@import 'search';\n\n@tailwind utilities;\n","body {\n font-size: 17px;\n}\n\na {\n @apply .font-semibold;\n @apply .no-underline;\n @apply .text-blue-600;\n\n &:hover {\n @apply .text-blue-800;\n }\n}\n\nblockquote {\n @apply .border-blue-400;\n @apply .border-l-4;\n @apply .font-normal;\n @apply .italic;\n @apply .my-8;\n @apply .pl-6;\n @apply .text-gray-800;\n @apply .text-lg;\n}\n\ncode {\n @apply .bg-gray-300;\n @apply .px-2;\n @apply .py-px;\n @apply .rounded;\n @apply .text-sm;\n}\n\ncode.hljs {\n @apply .bg-transparent;\n @apply .p-0;\n\n .hljs-comment,\n .hljs-keyword,\n .hljs-meta {\n @apply .font-normal;\n @apply .not-italic;\n }\n}\n\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n @apply .leading-tight;\n @apply .mb-4;\n @apply .mt-8;\n @apply .text-gray-900;\n\n &:first-child {\n @apply .mt-0;\n }\n}\n\nh1 {\n @apply .font-extrabold;\n @apply .text-5xl;\n}\n\nh2 {\n @apply .font-bold;\n @apply .text-4xl;\n}\n\nh3 {\n @apply .font-bold;\n @apply .text-3xl;\n}\n\nh4 {\n @apply .font-normal;\n @apply .text-2xl;\n}\n\nh5 {\n @apply .font-normal;\n @apply .text-xl;\n}\n\nh6 {\n @apply .font-light;\n @apply .text-lg;\n}\n\nhr {\n @apply .border-b;\n @apply .border-blue-200;\n @apply .my-12;\n @apply .rounded-full;\n}\n\nli {\n ul,\n ol {\n @apply .my-0;\n }\n}\n\nol,\nul {\n @apply .my-4;\n}\n\nol {\n @apply .list-decimal;\n}\n\np {\n @apply .my-3;\n\n @screen md {\n @apply .my-6;\n }\n}\n\npre {\n @apply .bg-gray-200;\n @apply .leading-loose;\n @apply .my-6;\n @apply .overflow-x-auto;\n @apply .p-4;\n @apply .rounded;\n @apply .shadow;\n @apply .text-base;\n\n code {\n @apply .bg-transparent;\n @apply .block;\n @apply .p-0;\n }\n}\n\n::selection {\n @apply .bg-blue-500;\n @apply .text-white;\n}\n",".nav-menu {\n @apply .-mt-12;\n @apply .-mx-8;\n @apply .bg-gray-200;\n @apply .mb-8;\n @apply .pb-4;\n @apply .pt-8;\n @apply .px-4;\n @apply .shadow;\n @apply .w-auto;\n\n @screen lg {\n @apply .-mx-4;\n @apply .bg-transparent;\n @apply .block;\n @apply .border-b-0;\n @apply .mt-1;\n @apply .pl-0;\n @apply .pr-4;\n @apply .pt-0;\n @apply .shadow-none;\n @apply .w-1/4;\n }\n}\n\n.nav-menu__item {\n @apply .block;\n @apply .no-underline;\n @apply .mb-3;\n @apply .mt-0;\n @apply .text-gray-800;\n @apply .text-sm;\n}\n",".docsearch-input {\n background-image: url('/assets/img/magnifying-glass.svg');\n background-position: 0.8em;\n background-repeat: no-repeat;\n text-indent: 1.2em;\n\n @screen lg {\n &:focus {\n @apply .w-2/3;\n }\n }\n\n @screen xl {\n &:focus {\n @apply .w-1/2;\n }\n }\n\n &__wrapper {\n @apply absolute;\n @apply bg-white;\n @apply mt-7;\n @apply left-0;\n @apply top-0;\n @apply px-4;\n @apply w-full;\n @apply z-10;\n\n @screen md {\n @apply mt-0;\n @apply px-0;\n @apply relative;\n }\n }\n}\n\n.algolia-autocomplete {\n @apply .text-right;\n @apply .w-full;\n\n .ds-dropdown-menu {\n @apply .w-full;\n\n max-width: 750px !important;\n min-width: auto !important;\n\n .algolia-docsearch-suggestion {\n .algolia-docsearch-suggestion--content {\n @apply .w-full;\n\n @screen md {\n @apply .w-2/3;\n }\n }\n\n .algolia-docsearch-suggestion--text {\n @apply .font-normal;\n\n line-height: 1.4;\n }\n\n .algolia-docsearch-suggestion--wrapper {\n @apply .py-3;\n }\n\n .algolia-docsearch-suggestion--subcategory-column {\n @apply .hidden;\n\n @screen md {\n @apply .w-1/3;\n @apply .inline-block;\n }\n }\n }\n }\n}\n"],"names":[],"sourceRoot":""} \ No newline at end of file diff --git a/assets/build/js/main.js b/assets/build/js/main.js new file mode 100644 index 0000000..0e91026 --- /dev/null +++ b/assets/build/js/main.js @@ -0,0 +1,3 @@ +/*! For license information please see main.js.LICENSE.txt */ +(()=>{var e,t={1580:(e,t,n)=>{var r=n(4155);e.exports=l;var i=n(3733),s=n(3753),o=n(9437),a=n(4475),c=r.env.RESET_APP_DATA_TIMER&&parseInt(r.env.RESET_APP_DATA_TIMER,10)||12e4;function l(e,t,r){var s=n(1227)("algoliasearch"),o=n(1530),a=n(5826),c=n(7164),l="Usage: algoliasearch(applicationID, apiKey, opts)";if(!0!==r._allowEmptyCredentials&&!e)throw new i.AlgoliaSearchError("Please provide an application ID. "+l);if(!0!==r._allowEmptyCredentials&&!t)throw new i.AlgoliaSearchError("Please provide an API key. "+l);this.applicationID=e,this.apiKey=t,this.hosts={read:[],write:[]},r=r||{},this._timeouts=r.timeouts||{connect:1e3,read:2e3,write:3e4},r.timeout&&(this._timeouts.connect=this._timeouts.read=this._timeouts.write=r.timeout);var h=r.protocol||"https:";if(/:$/.test(h)||(h+=":"),"http:"!==h&&"https:"!==h)throw new i.AlgoliaSearchError("protocol must be `http:` or `https:` (was `"+r.protocol+"`)");if(this._checkAppIdData(),r.hosts)a(r.hosts)?(this.hosts.read=o(r.hosts),this.hosts.write=o(r.hosts)):(this.hosts.read=o(r.hosts.read),this.hosts.write=o(r.hosts.write));else{var d=c(this._shuffleResult,(function(t){return e+"-"+t+".algolianet.com"})),p=(!1===r.dsn?"":"-dsn")+".algolia.net";this.hosts.read=[this.applicationID+p].concat(d),this.hosts.write=[this.applicationID+".algolia.net"].concat(d)}this.hosts.read=c(this.hosts.read,u(h)),this.hosts.write=c(this.hosts.write,u(h)),this.extraHeaders={},this.cache=r._cache||{},this._ua=r._ua,this._useCache=!(void 0!==r._useCache&&!r._cache)||r._useCache,this._useRequestCache=this._useCache&&r._useRequestCache,this._useFallback=void 0===r.useFallback||r.useFallback,this._setTimeout=r._setTimeout,s("init done, %j",this)}function u(e){return function(t){return e+"//"+t.toLowerCase()}}function h(e){if(void 0===Array.prototype.toJSON)return JSON.stringify(e);var t=Array.prototype.toJSON;delete Array.prototype.toJSON;var n=JSON.stringify(e);return Array.prototype.toJSON=t,n}function d(e){var t={};for(var n in e){var r;if(Object.prototype.hasOwnProperty.call(e,n))r="x-algolia-api-key"===n||"x-algolia-application-id"===n?"**hidden for security purposes**":e[n],t[n]=r}return t}l.prototype.initIndex=function(e){return new o(this,e)},l.prototype.setExtraHeader=function(e,t){this.extraHeaders[e.toLowerCase()]=t},l.prototype.getExtraHeader=function(e){return this.extraHeaders[e.toLowerCase()]},l.prototype.unsetExtraHeader=function(e){delete this.extraHeaders[e.toLowerCase()]},l.prototype.addAlgoliaAgent=function(e){var t="; "+e;-1===this._ua.indexOf(t)&&(this._ua+=t)},l.prototype._jsonRequest=function(e){this._checkAppIdData();var t,r,o,a=n(1227)("algoliasearch:"+e.url),c=e.additionalUA||"",l=e.cache,u=this,p=0,f=!1,g=u._useFallback&&u._request.fallback&&e.fallback;this.apiKey.length>500&&void 0!==e.body&&(void 0!==e.body.params||void 0!==e.body.requests)?(e.body.apiKey=this.apiKey,o=this._computeRequestHeaders({additionalUA:c,withApiKey:!1,headers:e.headers})):o=this._computeRequestHeaders({additionalUA:c,headers:e.headers}),void 0!==e.body&&(t=h(e.body)),a("request start");var m=[];function b(e,t,n){return u._useCache&&e&&t&&void 0!==t[n]}function v(t,n){if(b(u._useRequestCache,l,r)&&t.catch((function(){delete l[r]})),"function"!=typeof e.callback)return t.then(n);t.then((function(t){s((function(){e.callback(null,n(t))}),u._setTimeout||setTimeout)}),(function(t){s((function(){e.callback(t)}),u._setTimeout||setTimeout)}))}if(u._useCache&&u._useRequestCache&&(r=e.url),u._useCache&&u._useRequestCache&&t&&(r+="_body_"+t),b(u._useRequestCache,l,r)){a("serving request from cache");var y=l[r];return v("function"!=typeof y.then?u._promise.resolve({responseText:y}):y,(function(e){return JSON.parse(e.responseText)}))}var w=function n(s,v){u._checkAppIdData();var y=new Date;if(u._useCache&&!u._useRequestCache&&(r=e.url),u._useCache&&!u._useRequestCache&&t&&(r+="_body_"+v.body),b(!u._useRequestCache,l,r)){a("serving response from cache");var w=l[r];return u._promise.resolve({body:JSON.parse(w),responseText:w})}if(p>=u.hosts[e.hostType].length)return!g||f?(a("could not get any response"),u._promise.reject(new i.AlgoliaSearchError("Cannot connect to the AlgoliaSearch API. Send an email to support@algolia.com to report and resolve the issue. Application id was: "+u.applicationID,{debugData:m}))):(a("switching to fallback"),p=0,v.method=e.fallback.method,v.url=e.fallback.url,v.jsonBody=e.fallback.body,v.jsonBody&&(v.body=h(v.jsonBody)),o=u._computeRequestHeaders({additionalUA:c,headers:e.headers}),v.timeouts=u._getTimeoutsForRequest(e.hostType),u._setHostIndexByType(0,e.hostType),f=!0,n(u._request.fallback,v));var _=u._getHostByType(e.hostType),x=_+v.url,E={body:v.body,jsonBody:v.jsonBody,method:v.method,headers:o,timeouts:v.timeouts,debug:a,forceAuthHeaders:v.forceAuthHeaders};return a("method: %s, url: %s, headers: %j, timeouts: %d",E.method,x,E.headers,E.timeouts),s===u._request.fallback&&a("using fallback"),s.call(u,x,E).then((function(e){var n=e&&e.body&&e.body.message&&e.body.status||e.statusCode||e&&e.body&&200;a("received response: statusCode: %s, computed statusCode: %d, headers: %j",e.statusCode,n,e.headers);var s=2===Math.floor(n/100),c=new Date;if(m.push({currentHost:_,headers:d(o),content:t||null,contentLength:void 0!==t?t.length:null,method:v.method,timeouts:v.timeouts,url:v.url,startTime:y,endTime:c,duration:c-y,statusCode:n}),s)return u._useCache&&!u._useRequestCache&&l&&(l[r]=e.responseText),{responseText:e.responseText,body:e.body};if(4!==Math.floor(n/100))return p+=1,S();a("unrecoverable error");var h=new i.AlgoliaSearchError(e.body&&e.body.message,{debugData:m,statusCode:n});return u._promise.reject(h)}),(function(r){a("error: %s, stack: %s",r.message,r.stack);var c=new Date;m.push({currentHost:_,headers:d(o),content:t||null,contentLength:void 0!==t?t.length:null,method:v.method,timeouts:v.timeouts,url:v.url,startTime:y,endTime:c,duration:c-y}),r instanceof i.AlgoliaSearchError||(r=new i.Unknown(r&&r.message,r));if(p+=1,r instanceof i.Unknown||r instanceof i.UnparsableJSON||p>=u.hosts[e.hostType].length&&(f||!g))return r.debugData=m,u._promise.reject(r);if(r instanceof i.RequestTimeout)return a("retrying request with higher timeout"),u._incrementHostIndex(e.hostType),u._incrementTimeoutMultipler(),v.timeouts=u._getTimeoutsForRequest(e.hostType),n(s,v);return S()}));function S(){return a("retrying request"),u._incrementHostIndex(e.hostType),n(s,v)}}(u._request,{url:e.url,method:e.method,body:t,jsonBody:e.body,timeouts:u._getTimeoutsForRequest(e.hostType),forceAuthHeaders:e.forceAuthHeaders});return u._useCache&&u._useRequestCache&&l&&(l[r]=w),v(w,(function(e){return e.body}))},l.prototype._getSearchParams=function(e,t){if(null==e)return t;for(var n in e)null!==n&&void 0!==e[n]&&e.hasOwnProperty(n)&&(t+=""===t?"":"&",t+=n+"="+encodeURIComponent("[object Array]"===Object.prototype.toString.call(e[n])?h(e[n]):e[n]));return t},l.prototype._computeRequestHeaders=function(e){var t=n(9804),r={"x-algolia-agent":e.additionalUA?this._ua+"; "+e.additionalUA:this._ua,"x-algolia-application-id":this.applicationID};return!1!==e.withApiKey&&(r["x-algolia-api-key"]=this.apiKey),this.userToken&&(r["x-algolia-usertoken"]=this.userToken),this.securityTags&&(r["x-algolia-tagfilters"]=this.securityTags),t(this.extraHeaders,(function(e,t){r[t]=e})),e.headers&&t(e.headers,(function(e,t){r[t]=e})),r},l.prototype.search=function(e,t,r){var i=n(5826),s=n(7164);if(!i(e))throw new Error("Usage: client.search(arrayOfQueries[, callback])");"function"==typeof t?(r=t,t={}):void 0===t&&(t={});var o=this,a={requests:s(e,(function(e){var t="";return void 0!==e.query&&(t+="query="+encodeURIComponent(e.query)),{indexName:e.indexName,params:o._getSearchParams(e.params,t)}}))},c=s(a.requests,(function(e,t){return t+"="+encodeURIComponent("/1/indexes/"+encodeURIComponent(e.indexName)+"?"+e.params)})).join("&");return void 0!==t.strategy&&(a.strategy=t.strategy),this._jsonRequest({cache:this.cache,method:"POST",url:"/1/indexes/*/queries",body:a,hostType:"read",fallback:{method:"GET",url:"/1/indexes/*",body:{params:c}},callback:r})},l.prototype.searchForFacetValues=function(e){var t=n(5826),r=n(7164),i="Usage: client.searchForFacetValues([{indexName, params: {facetName, facetQuery, ...params}}, ...queries])";if(!t(e))throw new Error(i);var s=this;return s._promise.all(r(e,(function(e){if(!e||void 0===e.indexName||void 0===e.params.facetName||void 0===e.params.facetQuery)throw new Error(i);var t=n(1530),r=n(3076),o=e.indexName,a=e.params,c=a.facetName,l=r(t(a),(function(e){return"facetName"===e})),u=s._getSearchParams(l,"");return s._jsonRequest({cache:s.cache,method:"POST",url:"/1/indexes/"+encodeURIComponent(o)+"/facets/"+encodeURIComponent(c)+"/query",hostType:"read",body:{params:u}})})))},l.prototype.setSecurityTags=function(e){if("[object Array]"===Object.prototype.toString.call(e)){for(var t=[],n=0;nc?this._resetInitialAppIdData(e):e},l.prototype._resetInitialAppIdData=function(e){var t=e||{};return t.hostIndexes={read:0,write:0},t.timeoutMultiplier=1,t.shuffleResult=t.shuffleResult||function(e){var t,n,r=e.length;for(;0!==r;)n=Math.floor(Math.random()*r),t=e[r-=1],e[r]=e[n],e[n]=t;return e}([1,2,3]),this._setAppIdData(t)},l.prototype._cacheAppIdData=function(e){this._hostIndexes=e.hostIndexes,this._timeoutMultiplier=e.timeoutMultiplier,this._shuffleResult=e.shuffleResult},l.prototype._partialAppIdDataUpdate=function(e){var t=n(9804),r=this._getAppIdData();return t(e,(function(e,t){r[t]=e})),this._setAppIdData(r)},l.prototype._getHostByType=function(e){return this.hosts[e][this._getHostIndexByType(e)]},l.prototype._getTimeoutMultiplier=function(){return this._timeoutMultiplier},l.prototype._getHostIndexByType=function(e){return this._hostIndexes[e]},l.prototype._setHostIndexByType=function(e,t){var r=n(1530)(this._hostIndexes);return r[t]=e,this._partialAppIdDataUpdate({hostIndexes:r}),e},l.prototype._incrementHostIndex=function(e){return this._setHostIndexByType((this._getHostIndexByType(e)+1)%this.hosts[e].length,e)},l.prototype._incrementTimeoutMultipler=function(){var e=Math.max(this._timeoutMultiplier+1,4);return this._partialAppIdDataUpdate({timeoutMultiplier:e})},l.prototype._getTimeoutsForRequest=function(e){return{connect:this._timeouts.connect*this._timeoutMultiplier,complete:this._timeouts[e]*this._timeoutMultiplier}}},9437:(e,t,n)=>{var r=n(148),i=n(3043),s=n(137);function o(e,t){this.indexName=t,this.as=e,this.typeAheadArgs=null,this.typeAheadValueOption=null,this.cache={}}e.exports=o,o.prototype.clearCache=function(){this.cache={}},o.prototype.search=r("query"),o.prototype.similarSearch=i(r("similarQuery"),s("index.similarSearch(query[, callback])","index.search({ similarQuery: query }[, callback])")),o.prototype.browse=function(e,t,r){var i,s,o=n(1004),a=this;0===arguments.length||1===arguments.length&&"function"==typeof arguments[0]?(i=0,r=arguments[0],e=void 0):"number"==typeof arguments[0]?(i=arguments[0],"number"==typeof arguments[1]?s=arguments[1]:"function"==typeof arguments[1]&&(r=arguments[1],s=void 0),e=void 0,t=void 0):"object"==typeof arguments[0]?("function"==typeof arguments[1]&&(r=arguments[1]),t=arguments[0],e=void 0):"string"==typeof arguments[0]&&"function"==typeof arguments[1]&&(r=arguments[1],t=void 0),t=o({},t||{},{page:i,hitsPerPage:s,query:e});var c=this.as._getSearchParams(t,"");return this.as._jsonRequest({method:"POST",url:"/1/indexes/"+encodeURIComponent(a.indexName)+"/browse",body:{params:c},hostType:"read",callback:r})},o.prototype.browseFrom=function(e,t){return this.as._jsonRequest({method:"POST",url:"/1/indexes/"+encodeURIComponent(this.indexName)+"/browse",body:{cursor:e},hostType:"read",callback:t})},o.prototype.searchForFacetValues=function(e,t){var r=n(1530),i=n(3076);if(void 0===e.facetName||void 0===e.facetQuery)throw new Error("Usage: index.searchForFacetValues({facetName, facetQuery, ...params}[, callback])");var s=e.facetName,o=i(r(e),(function(e){return"facetName"===e})),a=this.as._getSearchParams(o,"");return this.as._jsonRequest({method:"POST",url:"/1/indexes/"+encodeURIComponent(this.indexName)+"/facets/"+encodeURIComponent(s)+"/query",hostType:"read",body:{params:a},callback:t})},o.prototype.searchFacet=i((function(e,t){return this.searchForFacetValues(e,t)}),s("index.searchFacet(params[, callback])","index.searchForFacetValues(params[, callback])")),o.prototype._search=function(e,t,n,r){return this.as._jsonRequest({cache:this.cache,method:"POST",url:t||"/1/indexes/"+encodeURIComponent(this.indexName)+"/query",body:{params:e},hostType:"read",fallback:{method:"GET",url:"/1/indexes/"+encodeURIComponent(this.indexName),body:{params:e}},callback:n,additionalUA:r})},o.prototype.getObject=function(e,t,n){var r=this;1!==arguments.length&&"function"!=typeof t||(n=t,t=void 0);var i="";if(void 0!==t){i="?attributes=";for(var s=0;s{"use strict";var r=n(1580),i=n(8779);e.exports=i(r,"Browser (lite)")},8779:(e,t,n)=>{"use strict";var r=n(8908),i=r.Promise||n(2702).Promise;e.exports=function(e,t){var s=n(5717),o=n(3733),a=n(660),c=n(3970),l=n(4504);function u(e,t,r){return(r=n(1530)(r||{}))._ua=r._ua||u.ua,new d(e,t,r)}t=t||"",u.version=n(4572),u.ua="Algolia for JavaScript ("+u.version+"); "+t,u.initPlaces=l(u),r.__algolia={debug:n(1227),algoliasearch:u};var h={hasXMLHttpRequest:"XMLHttpRequest"in r,hasXDomainRequest:"XDomainRequest"in r};function d(){e.apply(this,arguments)}return h.hasXMLHttpRequest&&(h.cors="withCredentials"in new XMLHttpRequest),s(d,e),d.prototype._request=function(e,t){return new i((function(n,r){if(h.cors||h.hasXDomainRequest){e=a(e,t.headers);var i,s,c=t.body,l=h.cors?new XMLHttpRequest:new XDomainRequest,u=!1;i=setTimeout(d,t.timeouts.connect),l.onprogress=function(){u||p()},"onreadystatechange"in l&&(l.onreadystatechange=function(){!u&&l.readyState>1&&p()}),l.onload=function(){if(s)return;var e;clearTimeout(i);try{e={body:JSON.parse(l.responseText),responseText:l.responseText,statusCode:l.status,headers:l.getAllResponseHeaders&&l.getAllResponseHeaders()||{}}}catch(t){e=new o.UnparsableJSON({more:l.responseText})}e instanceof o.UnparsableJSON?r(e):n(e)},l.onerror=function(e){if(s)return;clearTimeout(i),r(new o.Network({more:e}))},l instanceof XMLHttpRequest?(l.open(t.method,e,!0),t.forceAuthHeaders&&(l.setRequestHeader("x-algolia-application-id",t.headers["x-algolia-application-id"]),l.setRequestHeader("x-algolia-api-key",t.headers["x-algolia-api-key"]))):l.open(t.method,e),h.cors&&(c&&("POST"===t.method?l.setRequestHeader("content-type","application/x-www-form-urlencoded"):l.setRequestHeader("content-type","application/json")),l.setRequestHeader("accept","application/json")),c?l.send(c):l.send()}else r(new o.Network("CORS not supported"));function d(){s=!0,l.abort(),r(new o.RequestTimeout)}function p(){u=!0,clearTimeout(i),i=setTimeout(d,t.timeouts.complete)}}))},d.prototype._request.fallback=function(e,t){return e=a(e,t.headers),new i((function(n,r){c(e,t,(function(e,t){e?r(e):n(t)}))}))},d.prototype._promise={reject:function(e){return i.reject(e)},resolve:function(e){return i.resolve(e)},delay:function(e){return new i((function(t){setTimeout(t,e)}))},all:function(e){return i.all(e)}},u}},660:(e,t,n)=>{"use strict";e.exports=function(e,t){/\?/.test(e)?e+="&":e+="?";return e+r(t)};var r=n(8795)},3970:(e,t,n)=>{"use strict";e.exports=function(e,t,n){if("GET"!==t.method)return void n(new Error("Method "+t.method+" "+e+" is not supported by JSONP."));t.debug("JSONP: start");var s=!1,o=!1;i+=1;var a=document.getElementsByTagName("head")[0],c=document.createElement("script"),l="algoliaJSONP_"+i,u=!1;window[l]=function(e){!function(){try{delete window[l],delete window[l+"_loaded"]}catch(e){window[l]=window[l+"_loaded"]=void 0}}(),o?t.debug("JSONP: Late answer, ignoring"):(s=!0,p(),n(null,{body:e,responseText:JSON.stringify(e)}))},e+="&callback="+l,t.jsonBody&&t.jsonBody.params&&(e+="&"+t.jsonBody.params);var h=setTimeout((function(){t.debug("JSONP: Script timeout"),o=!0,p(),n(new r.RequestTimeout)}),t.timeouts.complete);function d(){t.debug("JSONP: success"),u||o||(u=!0,s||(t.debug("JSONP: Fail. Script loaded but did not call the callback"),p(),n(new r.JSONPScriptFail)))}function p(){clearTimeout(h),c.onload=null,c.onreadystatechange=null,c.onerror=null,a.removeChild(c)}c.onreadystatechange=function(){"loaded"!==this.readyState&&"complete"!==this.readyState||d()},c.onload=d,c.onerror=function(){t.debug("JSONP: Script error"),u||o||(p(),n(new r.JSONPScriptError))},c.async=!0,c.defer=!0,c.src=e,a.appendChild(c)};var r=n(3733),i=0},148:(e,t,n)=>{e.exports=function(e,t){return function(n,i,s){if("function"==typeof n&&"object"==typeof i||"object"==typeof s)throw new r.AlgoliaSearchError("index.search usage is index.search(query, params, cb)");0===arguments.length||"function"==typeof n?(s=n,n=""):1!==arguments.length&&"function"!=typeof i||(s=i,i=void 0),"object"==typeof n&&null!==n?(i=n,n=void 0):null==n&&(n="");var o,a="";return void 0!==n&&(a+=e+"="+encodeURIComponent(n)),void 0!==i&&(i.additionalUA&&(o=i.additionalUA,delete i.additionalUA),a=this.as._getSearchParams(i,a)),this._search(a,t,s,o)}};var r=n(3733)},1530:e=>{e.exports=function(e){return JSON.parse(JSON.stringify(e))}},3043:e=>{e.exports=function(e,t){var n=!1;return function(){return n||(console.warn(t),n=!0),e.apply(this,arguments)}}},137:e=>{e.exports=function(e,t){var n=e.toLowerCase().replace(/[\.\(\)]/g,"");return"algoliasearch: `"+e+"` was replaced by `"+t+"`. Please see https://github.com/algolia/algoliasearch-client-javascript/wiki/Deprecated#"+n}},3733:(e,t,n)=>{"use strict";var r=n(5717);function i(e,t){var r=n(9804),i=this;"function"==typeof Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):i.stack=(new Error).stack||"Cannot get a stacktrace, browser is too old",this.name="AlgoliaSearchError",this.message=e||"Unknown error",t&&r(t,(function(e,t){i[t]=e}))}function s(e,t){function n(){var n=Array.prototype.slice.call(arguments,0);"string"!=typeof n[0]&&n.unshift(t),i.apply(this,n),this.name="AlgoliaSearch"+e+"Error"}return r(n,i),n}r(i,Error),e.exports={AlgoliaSearchError:i,UnparsableJSON:s("UnparsableJSON","Could not parse the incoming response as JSON, see err.more for details"),RequestTimeout:s("RequestTimeout","Request timed out before getting a response"),Network:s("Network","Network issue, see err.more for details"),JSONPScriptFail:s("JSONPScriptFail"," + + + + + + diff --git a/docs/custom-404-page/index.html b/docs/custom-404-page/index.html new file mode 100644 index 0000000..b35266d --- /dev/null +++ b/docs/custom-404-page/index.html @@ -0,0 +1,215 @@ + + + + + + + + + + + + + + + + + + + + Extra Fields | Custom 404 Page + + + + + + + + + + + + + + + +
+
+
+ + +
+

Custom 404 Page

+ +

This starter template includes a custom 404 Not Found error page, located at /source/404.blade.php. To preview the 404 page, you can visit /404 in your browser.

+ +
<!-- source/404.blade.php -->
+@extends('_layouts.master')
+
+@section('body')
+<div class="flex flex-col items-center mt-32 text-gray-700">
+    <h1 class="text-6xl leading-none mb-2">404</h1>
+    <h2 class="text-3xl">Page not found</h2>
+
+    <hr class="block w-full max-w-lg mx-auto my-8 border">
+
+    <p class="text-xl">Need to update this page? See the <a title="404 Page Documentation" href="/docs/404"> documentation here</a>.</p>
+</div>
+@endsection
+
+ +
+ +

Depending on where your site is hosted, you may need to configure your server to use the custom 404 page. For more details, visit the Jigsaw documentation about configuring a custom 404 page.

+
+
+
+
+ + + + + + + + diff --git a/docs/customizing-your-site/index.html b/docs/customizing-your-site/index.html new file mode 100644 index 0000000..b2c0ec2 --- /dev/null +++ b/docs/customizing-your-site/index.html @@ -0,0 +1,269 @@ + + + + + + + + + + + + + + + + + + + + Extra Fields | Customizing Your Site + + + + + + + + + + + + + + + +
+
+
+ + +
+

Customizing Your Site

+ +

Styles

+ +

This starter template comes pre-loaded with Tailwind CSS, a utility CSS framework that allows you to customize and build complex designs without touching a line of CSS. There are also a few base Sass files in the /source/_assets/sass folder, set up with the expectation that you can add any custom CSS into _documentation.scss.

+ +
+

You can re-work the architecture of the Sass includes any way you’d like; just make sure to keep the @tailwind references in your final files.

+
+ +
// source/_assets/sass/main.scss
+
+@tailwind preflight;
+@tailwind components;
+
+// Code syntax highlighting,
+// powered by https://highlightjs.org
+@import '~highlight.js/styles/a11y-light.css';
+
+@import 'base';
+@import 'navigation';
+@import 'documentation';
+
+@tailwind utilities;
+
+ +
+ +

Typography Styles

+ +

Here’s a quick preview of what some of the basic type styles will look like in this starter template:

+ +
+ +

h1 Heading

+ +

h2 Heading

+ +

h3 Heading

+ +

h4 Heading

+ +
h5 Heading
+ +
h6 Heading
+ +

The quick brown fox jumps over the lazy dog

+ +

The quick brown fox jumps over the lazy dog

+ +

The quick brown fox jumps over the lazy dog

+ +

The quick brown fox jumps over the lazy dog

+ +

The quick brown fox jumps over the lazy dog

+ +

The quick brown fox jumps over the lazy dog

+ +

The quick brown fox jumps over the lazy dog

+ +
+

The quick brown fox jumps over the lazy dog

+
+ +

The quick brown fox jumps over the lazy dog

+ +
class Foo extends bar
+{
+    public function fooBar()
+    {
+        //
+    }
+}
+
+ +
+
+
+
+
+ + + + + + + + diff --git a/docs/fields/audio/index.html b/docs/fields/audio/index.html new file mode 100644 index 0000000..f57eed0 --- /dev/null +++ b/docs/fields/audio/index.html @@ -0,0 +1,210 @@ + + + + + + + + + + + + + + + + + + + + Extra Fields | Audio + + + + + + + + + + + + + + + +
+
+
+ + +
+

Audio

+ +

A very simple Field to play audio in your admin panel.

+ +

For example, you can use it in a table or form.

+ +

audio preview

+ +

Example code

+ +

use agoalofalife\Orchid\Fields\Range; + +// value - url to source + +Audio::make('sound') + ->value('url to sound') +
+
+
+
+
+ + + + + + + + diff --git a/docs/fields/avatar/index.html b/docs/fields/avatar/index.html new file mode 100644 index 0000000..36aaafb --- /dev/null +++ b/docs/fields/avatar/index.html @@ -0,0 +1,222 @@ + + + + + + + + + + + + + + + + + + + + Extra Fields | Avatar + + + + + + + + + + + + + + + +
+
+
+ + +
+

Avatar

+ +

A very simple Field to render a image and title under a picture.

+ +

For example, you can use it like this.

+ +

sinlge avatar

+ +

Even, You may use it in the table

+ +

avatar in table

+ +

Example code

+ +

use agoalofalife\Orchid\Fields\Range; + +// value - url to source +// heightByPercent - size avatar by percents +// nameAvatar - text under a avatar like a "title" +// fontSizeByPx - size a title like font-size and measured by px +// left or right or center - position avatar on layout + +Avatar::make('test') + ->value("https://avatars.githubusercontent.com/u/15719824?v=4") + ->heightByPercent(6) + ->nameAvatar('Ilia Chubarov') + ->fontSizeByPx(15) + ->left(), +
+
+
+
+
+ + + + + + + + diff --git a/docs/fields/image_zoom/index.html b/docs/fields/image_zoom/index.html new file mode 100644 index 0000000..5c91b83 --- /dev/null +++ b/docs/fields/image_zoom/index.html @@ -0,0 +1,217 @@ + + + + + + + + + + + + + + + + + + + + Extra Fields | Image Zoom + + + + + + + + + + + + + + + +
+
+
+ + +
+

Image Zoom

+ +

Field allows you to magnify images on the spot.

+ +

It is often necessary to view the image in more detail on the same page - and the original image is pasted into a table.

+ +

image_zoom preview

+ +

Example

+ +

use agoalofalife\Orchid\Fields\ImageZoom; + +// title - title before the field +// value - path to the image +// zoomPercent - zoom of the image in percents +// widthPercent - width of the image in percent + + ImageZoom::make('image') + ->value('https://orchid.software/img/next/unbox.svg') + ->zoomPercent(100) + ->widthPercent(20), +
+ +

Field Source

+
+
+
+
+ + + + + + + + diff --git a/docs/fields/range/index.html b/docs/fields/range/index.html new file mode 100644 index 0000000..ba3f0c3 --- /dev/null +++ b/docs/fields/range/index.html @@ -0,0 +1,245 @@ + + + + + + + + + + + + + + + + + + + + Extra Fields | Range + + + + + + + + + + + + + + + +
+
+
+ + +
+

Range

+ +

This is a very elegant field - which allows you to set a maximum and minimum value.

+ +

The field is used in form to send a range of values.

+ +

range preview

+ +

Example

+ +

use agoalofalife\Orchid\Fields\Range; + +// title - title before the field +// min - minimum value +// max - maximal value +// hasGrid - show marking along the line +// skin - style + +Range::make('age') + ->title('Age') + ->type('double') // double, single + ->min(18) + ->max(50) + ->skin('flat') // flat, big, modern, round, sharp, square + ->hasGrid(true); +
+ +

Flat skin

+ +

flat

+ +

Big skin

+ +

big

+ +

Modern skin

+ +

modern

+ +

Round skin

+ +

round

+ +

Sharp skin

+ +

sharp

+ +

Square skin

+ +

square

+ +

Field Source

+
+
+
+
+ + + + + + + + diff --git a/docs/fields/rate/index.html b/docs/fields/rate/index.html new file mode 100644 index 0000000..e6f7777 --- /dev/null +++ b/docs/fields/rate/index.html @@ -0,0 +1,226 @@ + + + + + + + + + + + + + + + + + + + + Extra Fields | Rate + + + + + + + + + + + + + + + +
+
+
+ + +
+

Rate

+ +

Pretty popular Field - which allows you to give a star rating.

+ +

It's much nicer than a numerical value.

+ +

It can be rating by review, comment - it all depends on your needs!

+ +

You can watch a detailed video on creating and using this field from video tutorial on orchid.

+ +

The field is used in the form to send a numeric value.

+ +

rate preview

+ +

Example

+ +

use agoalofalife\Orchid\Fields\Rate; + +// title - title before the field +// count - number of stars +// readonly - read only +// step - step by which the stars are filled +// value - how many already filled + + Rate::make('rate') + ->title('Rate') + ->count(10) + ->readonly(false) + ->step(1) + ->value(5), +
+ +

Field Source

+
+
+
+
+ + + + + + + + diff --git a/docs/getting-started/index.html b/docs/getting-started/index.html new file mode 100644 index 0000000..c74f819 --- /dev/null +++ b/docs/getting-started/index.html @@ -0,0 +1,200 @@ + + + + + + + + + + + + + + + + + + + + Extra Fields | Introduction + + + + + + + + + + + + + + + +
+
+
+ + +
+

Introduction

+ +

This is an additional repository (package) - for custom Fields in the Laravel Orchid Admin Panel ecosystem

+ +

The fields that are available out of the box in Orchid - you can see here.

+ +

This package allows you to extend your standard collection and add more useful and needed fields to your interface.

+
+
+
+
+ + + + + + + + diff --git a/docs/how-make-custom/index.html b/docs/how-make-custom/index.html new file mode 100644 index 0000000..bb58c84 --- /dev/null +++ b/docs/how-make-custom/index.html @@ -0,0 +1,196 @@ + + + + + + + + + + + + + + + + + + + + Extra Fields | How to Write Your Field + + + + + + + + + + + + + + + +
+
+
+ + +
+

How to Write Your Field

+ +

In development...

+
+
+
+
+ + + + + + + + diff --git a/docs/install/index.html b/docs/install/index.html new file mode 100644 index 0000000..93bac83 --- /dev/null +++ b/docs/install/index.html @@ -0,0 +1,208 @@ + + + + + + + + + + + + + + + + + + + + Extra Fields | Install + + + + + + + + + + + + + + + +
+
+
+ + +
+

Install

+ +

To install, you need to already have Orchid and the Laravel framework installed.

+ +

Next, two commands must be executed:

+ +

The first command installs you the source code repository itself.

+ +
composer require agoalofalife/orchid-fields
+
+ +

The second command copies the js files to the public folder.

+ +
 php artisan vendor:publish --tag=orchid-extra-fields
+
+
+
+
+
+ + + + + + + + diff --git a/docs/navigation/index.html b/docs/navigation/index.html new file mode 100644 index 0000000..e26cbb3 --- /dev/null +++ b/docs/navigation/index.html @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + Extra Fields | Navigation + + + + + + + + + + + + + + + +
+
+
+ + +
+

Navigation

+ +

The navigation menu in the left-hand sidebar is defined using an array in navigation.php. Nested pages can be added by using the children associative array.

+ +
<?php
+// navigation.php
+
+return [
+    'Getting Started' => [
+        'url' => 'docs/getting-started',
+        'children' => [
+            'Customizing Your Site' => 'docs/customizing-your-site',
+            'Navigation' => 'docs/navigation',
+            'Algolia DocSearch' => 'docs/algolia-docsearch',
+            'Custom 404 Page' => 'docs/custom-404-page',
+        ],
+    ],
+    'Jigsaw Docs' => 'https://jigsaw.tighten.co/docs/installation',
+];
+
+// config.php
+'navigation' => require_once('navigation.php'),
+
+// blade files
+$page->navigation
+
+
+
+
+
+ + + + + + + + diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..6f81ae36727a99ee38d5b8ae56013ff4c071fda6 GIT binary patch literal 2389 zcmV-b399yqP)Hg1+lHrgWSWcKdPn90sKGrRqvPeo9CG3uKX#J{(IASm?@+di}}l?o-=)F3E6 zwD^Ni=!>T7nL9I?X}YoAW$t|Qo$sD|?zw001?ah|SeB6#0T!CBEf+H4bBB+JJu8re zhoBb*p;u8ID_yBf0ya+zcePvJL&AGs+11_tpRKn>9TgyPA7ZoSs0)aX0r00)%XR^J z`jH<$>RKN5V(7OqK*TS4xZz{h!*f1C3ECFkK$#7nA@pGN!$;%jYv zwjAKwmYb0gKL(K8-kPtb5${A?tlI~wzMrJ6wTdBr=Y%%%EaEMQ&o}4FQ^DA)s*}Z> z!FI&AHCpoWI|RUqx?7s@$8!5^Q=anY%X@i5{QA6kNcMelpE>R6eCYFpmMsVT zrI(b06~u#xf1yS}_UGdMvD``!0~u->P=lA4?YN`hilQ z|3tHka)7T{2CGqwjZfMwx$5irQN_*|e4l)UHmiYuz74Yp1t^#>hrJ3-SOXDcC_o0^ z7T9R1gAN8V6s;5)ieI5-7aQlmJn}lUna#nz!j%5V$X|o`xX!dHWQRV27P1=rj;t2b zW$~+pTw@bIek?ZvKPDL<64`^#UNTAck#RBsB6*5DP4<%UA_FqU$I>2EH_cM;u)Q~SI+rg`Rn{L z_AC5qq~L$#SMj%U$6Cz0vP{G5Y*=%5RT^yu;}-DInZ=349rJPVM6C3K^oO)8y(fJr{l>k`ead~!ea?NsT>_Ci%bnxC;Vy6= zb6>{xYV#Ue-+LB$7`JEXmTRm^AtP)R9u{)KHsMiWGV&)32xCG~*nyU<>-!d;FP=Re z4r3qYr~6#KE>;1F`>_J_P5xC?ROxV(DIHdCO*p$HRQI@7^PwV@Pvuf+ z5K}u-6REM(K@W$srgorh0{i?O)v0c>QtHxU-hBdD(>iYJ4b2sIOVX2K8m~4gmYVA5 zh^QEb$V`rCQ-|7ZS{nuL-t>?3n=-o(6I(7vocj#GzCZEo`!3>+v;dYIfPu#&ZWzzX z2i^rZ^Mu;6+rb@?NPG+6)c5T6zxpzGe*M(x+{AON=PiJ>H#?ob-|uwRK0yDg0B4PV z0id6JRRdfL?*IS<_en%SR9Fe^S8Hq(RTMsV?#ym?yW4KJv_Pdxr7NaUQr<{iBC$19 z2$-0(@PjnM4-Oaln2HJfK>r{%{-89`#Ha}*M2Vyd0bi78aU1&(itV=h ze$4A$&)sG>+sAIZ4aPs5?9SYoIp=)eIrrRqW(X`nT2J0~Z}qzOR+cHph52MeKYHCi z_2tFapO`Av9Vy0O|5<pXCb(k$@@+J_neJL=({j^n~Kc z?ql6QT!Y^B5xRU`9SA$ns$t2L{@^)7)z?` z>gZ&=`~1+Y&-}0LQgdyx1dd!7^)7Q+cURb@!xg0#ufyS>hL!}=D44-qU-OQsOhLBT zAQp?6!MNrRCfJ!kNd5Z5_F8|M=+Uo2Ej1P7B`f7^Zdd6tFmzyy6&>-s=s7pV^hlBf zAS*Bxj0IHF>>UZjKd0bae&f+KYj!+R?XpwCfnmhOraK3xz>wp7Gobh{u_*RHQr`08 z?-P4yQYY_SyK)JJ?@j7C&7`M`zcPk@7I8h9*D1ZXpMF*z9YD&098s$KwHs8E9x^Gz*?(oNE((-3@7QYa{~w zLs47}SX&q<#kDM!b4F$o$lS%Vm;#2NPWMWvZ&(LATlYZ2V|73!%!zn5YcCK^vBUs_ zgFE*VaQ)8+4F3~{c*>XqngauQ31pO*A=1ym<|qfx+9zR0%PweG>jig3S$b1Ks+ekk zP{IKJ7y|plFcwHbN;B|20sIw|1qo!WF@0irN|b`<@%7O3%(KwAVFQLO!yorzaMK?_ z;AFZxh)m?BIqPGd!Qu(z7@JtIRIx(E3JLgD84$PDGopqMjNETTwY z>i#J3NGeT6UTny-fJC;ICI~2&nJCHyrn#X1r4uOVcJU7%5_p(_|2+ds+6NY2;{`Ou zzCkE%)kF?TvbBKbgMUN>9)fd28q{ubABYXrOD` zcZfOTU2iS{K?`Nokv<#z+`Y}v)DBQX`?#sv#r<3|a|j?P_Um+`Vy6BVUVO@#{>4Do zQ@;t@`6Mrata2Nt)v?Yx8lUWB@lZ1%te)xO+XCNmvr}LNqS%1x3Gor}3lQF;6MD{n zV&g>CPoBZT1ab^(UOZk4fx%Xc>L63YO`;`NKKBkzB+>EEYjWNL0rlH~v%YAKS;1jZ z1TvmhwVibH3IAShCf_aJdgu + + + + + + + + + + + + + + + + + + + Extra Fields + + + + + + + + + + + + + + + +
+
+
+
+

Extra Fields

+ +

Various Fields for the Orchid Admin Panel

+ +

Immerse yourself in the magic of Orchid ✨ Use it for forms, tables and anywhere else you need it.

+ +
+ Read + + +
+
+ + Extra Fields large logo +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + diff --git a/sitemap.xml b/sitemap.xml new file mode 100644 index 0000000..867c3f4 --- /dev/null +++ b/sitemap.xml @@ -0,0 +1,68 @@ + + + + https://orchid-fields.dev/docs/how-make-custom + 2024-03-26T20:44:29+00:00 + daily + + + https://orchid-fields.dev/docs/install + 2024-03-26T20:44:29+00:00 + daily + + + https://orchid-fields.dev/docs/custom-404-page + 2024-03-26T20:44:29+00:00 + daily + + + https://orchid-fields.dev/docs/getting-started + 2024-03-26T20:44:29+00:00 + daily + + + https://orchid-fields.dev/docs/customizing-your-site + 2024-03-26T20:44:29+00:00 + daily + + + https://orchid-fields.dev/docs/navigation + 2024-03-26T20:44:29+00:00 + daily + + + https://orchid-fields.dev/docs/fields/avatar + 2024-03-26T20:44:29+00:00 + daily + + + https://orchid-fields.dev/docs/fields/audio + 2024-03-26T20:44:29+00:00 + daily + + + https://orchid-fields.dev/docs/fields/image_zoom + 2024-03-26T20:44:29+00:00 + daily + + + https://orchid-fields.dev/docs/fields/range + 2024-03-26T20:44:29+00:00 + daily + + + https://orchid-fields.dev/docs/fields/rate + 2024-03-26T20:44:29+00:00 + daily + + + https://orchid-fields.dev/docs/algolia-docsearch + 2024-03-26T20:44:29+00:00 + daily + + + https://orchid-fields.dev + 2024-03-26T20:44:29+00:00 + daily + +