diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3491dce74..abc6d28b1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,191 +1,191 @@ -name: Build, Test, Publish - -on: - pull_request: - types: [opened, synchronize, reopened] - -env: - NODE_VERSION: 20.x - GIT_EMAIL: "pkgbot@form.io" - GIT_USERNAME: "pkgbot" - -jobs: - setup: - runs-on: ubuntu-latest - steps: - - run: echo "Triggered by ${{ github.event_name }} event." - - - name: Check out repository code ${{ github.repository }} on ${{ github.ref }} - uses: actions/checkout@v3 - - - name: Set up Node.js ${{ env.NODE_VERSION }} - uses: actions/setup-node@v3 - with: - node-version: ${{ env.NODE_VERSION }} - cache: 'npm' - - - name: Cache node modules - uses: actions/cache@v3 - with: - path: node_modules - key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-node- - - - name: Installing dependencies - if: steps.cache.outputs.cache-hit != 'true' - uses: borales/actions-yarn@v4 - with: - cmd: install --frozen-lockfile - - build: - needs: setup - runs-on: ubuntu-latest - steps: - - name: Check out repository code ${{ github.repository }} on ${{ github.ref }} - uses: actions/checkout@v3 - - - name: Restore node modules from cache - uses: actions/cache@v3 - with: - path: node_modules - key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-node- - - - name: Build - uses: borales/actions-yarn@v4 - with: - cmd: build - - test-current: - needs: setup - runs-on: ubuntu-latest - steps: - - name: Check out repository code ${{ github.repository }} on ${{ github.ref }} - uses: actions/checkout@v3 - - - name: Restore node modules from cache - uses: actions/cache@v3 - with: - path: node_modules - key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-node- - - - name: Test - uses: borales/actions-yarn@v4 - with: - cmd: test - - test-target: - needs: setup - runs-on: ubuntu-latest - steps: - - name: Check out repository code ${{ github.repository }} on ${{ github.ref }} - uses: actions/checkout@v3 - with: - fetch-depth: 0 +# name: Build, Test, Publish + +# on: +# pull_request: +# types: [opened, synchronize, reopened] + +# env: +# NODE_VERSION: 20.x +# GIT_EMAIL: "pkgbot@form.io" +# GIT_USERNAME: "pkgbot" + +# jobs: +# setup: +# runs-on: ubuntu-latest +# steps: +# - run: echo "Triggered by ${{ github.event_name }} event." + +# - name: Check out repository code ${{ github.repository }} on ${{ github.ref }} +# uses: actions/checkout@v3 + +# - name: Set up Node.js ${{ env.NODE_VERSION }} +# uses: actions/setup-node@v3 +# with: +# node-version: ${{ env.NODE_VERSION }} +# cache: 'npm' + +# - name: Cache node modules +# uses: actions/cache@v3 +# with: +# path: node_modules +# key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} +# restore-keys: | +# ${{ runner.os }}-node- + +# - name: Installing dependencies +# if: steps.cache.outputs.cache-hit != 'true' +# uses: borales/actions-yarn@v4 +# with: +# cmd: install --frozen-lockfile + +# build: +# needs: setup +# runs-on: ubuntu-latest +# steps: +# - name: Check out repository code ${{ github.repository }} on ${{ github.ref }} +# uses: actions/checkout@v3 + +# - name: Restore node modules from cache +# uses: actions/cache@v3 +# with: +# path: node_modules +# key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} +# restore-keys: | +# ${{ runner.os }}-node- + +# - name: Build +# uses: borales/actions-yarn@v4 +# with: +# cmd: build + +# test-current: +# needs: setup +# runs-on: ubuntu-latest +# steps: +# - name: Check out repository code ${{ github.repository }} on ${{ github.ref }} +# uses: actions/checkout@v3 + +# - name: Restore node modules from cache +# uses: actions/cache@v3 +# with: +# path: node_modules +# key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} +# restore-keys: | +# ${{ runner.os }}-node- + +# - name: Test +# uses: borales/actions-yarn@v4 +# with: +# cmd: test + +# test-target: +# needs: setup +# runs-on: ubuntu-latest +# steps: +# - name: Check out repository code ${{ github.repository }} on ${{ github.ref }} +# uses: actions/checkout@v3 +# with: +# fetch-depth: 0 - - name: Merge target branch into current branch - run: | - git config --global user.email ${{ env.GIT_EMAIL }} - git config --global user.name ${{ env.GIT_USERNAME }} - git fetch origin ${{ github.event.pull_request.base.ref }}:${{ github.event.pull_request.base.ref }} - git merge ${{ github.event.pull_request.base.ref }} --no-commit --no-ff - if ! git merge --no-commit --no-ff ${{ github.event.pull_request.base.ref }}; then - echo "Merge conflicts detected." - git merge --abort - exit 1 - else - echo "Merge successful." - fi - - - name: Restore node modules from cache - uses: actions/cache@v3 - with: - path: node_modules - key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-node- - - - name: Test - uses: borales/actions-yarn@v4 - with: - cmd: test - - publish: - needs: [setup, test-current, test-target] - if: ${{ github.event_name == 'pull_request' && (github.event.action == 'opened' || github.event.action == 'synchronize') }} - runs-on: ubuntu-latest - steps: - - name: Check out repository code ${{ github.repository }} on ${{ github.ref }} - uses: actions/checkout@v3 - - - name: Configure Git user - run: | - git config --global user.email "pkgbot@form.io" - git config --global user.name "pkgbot" - - - name: Add npm token to .npmrc - run: | - echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc - - - name: Set up Node.js ${{ env.NODE_VERSION }} - uses: actions/setup-node@v3 - with: - node-version: ${{ env.NODE_VERSION }} - cache: 'npm' - registry-url: 'https://registry.npmjs.org/' - - - name: Restore node modules from cache - uses: actions/cache@v3 - with: - path: node_modules - key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-node- - - - name: Pre-publish - uses: borales/actions-yarn@v4 - with: - cmd: prepublish - - - name: Prepare version for publish - id: prep - run: | - # Extract the pull request number and the short SHA of the commit - PR_NUMBER=$(echo ${{ github.event.number }}) - COMMIT_SHORT_SHA=$(echo "${{ github.event.pull_request.head.sha }}" | cut -c1-7) +# - name: Merge target branch into current branch +# run: | +# git config --global user.email ${{ env.GIT_EMAIL }} +# git config --global user.name ${{ env.GIT_USERNAME }} +# git fetch origin ${{ github.event.pull_request.base.ref }}:${{ github.event.pull_request.base.ref }} +# git merge ${{ github.event.pull_request.base.ref }} --no-commit --no-ff +# if ! git merge --no-commit --no-ff ${{ github.event.pull_request.base.ref }}; then +# echo "Merge conflicts detected." +# git merge --abort +# exit 1 +# else +# echo "Merge successful." +# fi + +# - name: Restore node modules from cache +# uses: actions/cache@v3 +# with: +# path: node_modules +# key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} +# restore-keys: | +# ${{ runner.os }}-node- + +# - name: Test +# uses: borales/actions-yarn@v4 +# with: +# cmd: test + +# publish: +# needs: [setup, test-current, test-target] +# if: ${{ github.event_name == 'pull_request' && (github.event.action == 'opened' || github.event.action == 'synchronize') }} +# runs-on: ubuntu-latest +# steps: +# - name: Check out repository code ${{ github.repository }} on ${{ github.ref }} +# uses: actions/checkout@v3 + +# - name: Configure Git user +# run: | +# git config --global user.email "pkgbot@form.io" +# git config --global user.name "pkgbot" + +# - name: Add npm token to .npmrc +# run: | +# echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc + +# - name: Set up Node.js ${{ env.NODE_VERSION }} +# uses: actions/setup-node@v3 +# with: +# node-version: ${{ env.NODE_VERSION }} +# cache: 'npm' +# registry-url: 'https://registry.npmjs.org/' + +# - name: Restore node modules from cache +# uses: actions/cache@v3 +# with: +# path: node_modules +# key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} +# restore-keys: | +# ${{ runner.os }}-node- + +# - name: Pre-publish +# uses: borales/actions-yarn@v4 +# with: +# cmd: prepublish + +# - name: Prepare version for publish +# id: prep +# run: | +# # Extract the pull request number and the short SHA of the commit +# PR_NUMBER=$(echo ${{ github.event.number }}) +# COMMIT_SHORT_SHA=$(echo "${{ github.event.pull_request.head.sha }}" | cut -c1-7) - # Extract the current version from package.json - CURRENT_VERSION=$(node -p "require('./package.json').version") +# # Extract the current version from package.json +# CURRENT_VERSION=$(node -p "require('./package.json').version") - # If the current version includes '-rc.', remove it and everything after - # This step ensures that we start with a base version like '3.0.0' even if it was a release candidate - BASE_VERSION=$(echo "$CURRENT_VERSION" | sed 's/-rc.*//') +# # If the current version includes '-rc.', remove it and everything after +# # This step ensures that we start with a base version like '3.0.0' even if it was a release candidate +# BASE_VERSION=$(echo "$CURRENT_VERSION" | sed 's/-rc.*//') - # Construct the new version string - NEW_VERSION="${BASE_VERSION}-dev.${PR_NUMBER}.${COMMIT_SHORT_SHA}" +# # Construct the new version string +# NEW_VERSION="${BASE_VERSION}-dev.${PR_NUMBER}.${COMMIT_SHORT_SHA}" - # Output the new version for use in subsequent GitHub Actions steps - echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV - - - name: Echo version for testing - run: | - echo "Version to publish: $NEW_VERSION" - - - name: Publish to npm - run: | - # Listing changes without failing the job - if ! git diff-index --quiet HEAD --; then - echo "Directory is not clean. Listing changes:" - git status - else - echo "Directory is clean." - fi +# # Output the new version for use in subsequent GitHub Actions steps +# echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV + +# - name: Echo version for testing +# run: | +# echo "Version to publish: $NEW_VERSION" + +# - name: Publish to npm +# run: | +# # Listing changes without failing the job +# if ! git diff-index --quiet HEAD --; then +# echo "Directory is not clean. Listing changes:" +# git status +# else +# echo "Directory is clean." +# fi - # Proceeding with npm version and yarn publish - # This includes all files in the current directory, including untracked ones - npm version $NEW_VERSION --no-git-tag-version - yarn publish --tag dev --no-commit-hooks --non-interactive \ No newline at end of file +# # Proceeding with npm version and yarn publish +# # This includes all files in the current directory, including untracked ones +# npm version $NEW_VERSION --no-git-tag-version +# yarn publish --tag dev --no-commit-hooks --non-interactive \ No newline at end of file diff --git a/dist/bootstrap3.js b/dist/bootstrap3.js deleted file mode 100644 index 0bd55a49f..000000000 --- a/dist/bootstrap3.js +++ /dev/null @@ -1 +0,0 @@ -!function(n,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.bootstrap3=e():n.bootstrap3=e()}(self,(()=>(()=>{"use strict";var n={d:(e,t)=>{for(var l in t)n.o(t,l)&&!n.o(e,l)&&Object.defineProperty(e,l,{enumerable:!0,get:t[l]})},o:(n,e)=>Object.prototype.hasOwnProperty.call(n,e)},e={};n.d(e,{default:()=>_});const l={form:function(n){var e,t="";return Array.prototype.join,t+='
\n ',n.disableBuilderActions||(t+='\n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n \n
\n
\n '),t+"\n "+(null==(e=n.html)?"":e)+"\n
\n"}},o={form:function(n){var e,t="";return Array.prototype.join,t+='
\n
\n

'+(null==(e=n.t(n.componentInfo.title,{_userInput:!0}))?"":e)+" "+(null==(e=n.t("Component"))?"":e)+"

\n
\n ",n.helplinks&&(t+='\n
\n \n
\n"),t+='\n
\n
\n
\n ",n.preview||(t+='\n
\n \n \n \n
\n "),t+="\n
\n ",n.preview&&(t+='\n
\n
\n
\n

'+(null==(e=n.t("Preview"))?"":e)+'

\n
\n
\n
\n '+(null==(e=n.preview)?"":e)+"\n
\n
\n
\n ",n.componentInfo.help&&(t+='\n
\n '+(null==(e=n.componentInfo.help)?"":e)+"\n
\n "),t+='\n
\n \n \n \n
\n
\n "),t+"\n
\n"}},a={form:function(n){var e,t="";return Array.prototype.join,t+='
\n \n
\n ',n.groups.forEach((function(n){t+="\n "+(null==(e=n)?"":e)+"\n "})),t+="\n
\n
\n"}},r={form:function(n){var e,t="";return Array.prototype.join,t+='
\n
\n
\n \n '+(null==(e=n.t(n.group.title,{_userInput:!0}))?"":e)+'\n \n
\n
\n \n
\n ',n.group.componentOrder.length||n.subgroups.length?(t+="\n ",n.group.componentOrder.forEach((function(l){t+='\n \n ',n.group.components[l].icon&&(t+='\n \n '),t+="\n "+(null==(e=n.t(n.group.components[l].title,{_userInput:!0}))?"":e)+"\n \n "})),t+="\n "+(null==(e=n.subgroups.join(""))?"":e)+"\n "):t+="\n
"+(null==(e=n.t("No Matches Found"))?"":e)+"
\n ",t+="\n
\n
\n\n\n"}},i={form:function(n){var e,t="";return Array.prototype.join,n.component.columns.forEach((function(l,o){t+='\n
\n '+(null==(e=n.columnComponents[o])?"":e)+"\n
\n"})),t+="\n"}},s={form:function(n){var e,t="";return Array.prototype.join,t+='\n '+(null==(e=l.hideLabel?"":n.t(l.label||l.title,{_userInput:!0}))?"":e)+"\n ",l.tooltip&&(t+=' '),t+="\n \n "})),t+="\n ",n.hasExtraColumn&&(t+="\n \n "),t+="\n \n \n "),t+='\n \n ',n.rows.forEach((function(l,o){t+="\n ",n.hasGroups&&n.groups[o]&&(t+='\n \n '+(null==(e=n.groups[o].label)?"":e)+"\n \n "),t+='\n \n ',n.component.reorder&&(t+='\n \n '),t+="\n ",n.columns.forEach((function(o){t+='\n \n "})),t+="\n ",n.hasExtraColumn&&(t+="\n ",n.hasRemoveButtons&&(t+='\n \n '),t+="\n ",n.canAddColumn&&(t+='\n \n "),t+="\n "),t+="\n \n "})),t+="\n \n ",n.hasAddButton&&n.hasBottomSubmit&&(t+='\n \n \n \n \n \n "),t+="\n
\n ",!n.builder&&n.hasAddButton&&n.hasTopSubmit&&(t+='\n \n "),t+="\n
\n \n \n '+(null==(e=l[o.key])?"":e)+"\n \n \n \n '+(null==(e=n.placeholder)?"":e)+"\n
\n \n
\n"},html:function(n){var e,l="";return Array.prototype.join,l+='\n ',hasHeader&&(l+="\n \n \n ",columns.forEach((function(n){l+='\n \n "})),l+="\n \n \n "),l+="\n \n ",rows.forEach((function(n){l+="\n \n ",columns.forEach((function(t){l+='\n \n "})),l+="\n \n "})),l+="\n \n
\n '+(null==(e=n.hideLabel?"":t(n.label||n.title))?"":e)+"\n ",n.tooltip&&(l+=' '),l+="\n
\n '+(null==(e=n[t.key])?"":e)+"\n
\n"}},u={form:function(n){var e,t="";return Array.prototype.join,t+='
\n ',n.dayFirst&&n.showDay&&(t+='\n
\n ',n.component.hideInputLabels||(t+='\n
\n "),t+="\n ",n.showMonth&&(t+='\n
\n ',n.component.hideInputLabels||(t+='\n
\n "),t+="\n ",!n.dayFirst&&n.showDay&&(t+='\n
\n ',n.component.hideInputLabels||(t+='\n
\n "),t+="\n ",n.showYear&&(t+='\n
\n ',n.component.hideInputLabels||(t+='\n
\n "),t+'\n
\n\n'}},d={form:function(n){var e,t="";return Array.prototype.join,t+='\n",!n.readOnly&&n.hasAddButton&&(t+='\n\n"),t+="\n"},html:function(n){var e,t="";return Array.prototype.join,t+='\n"}},c={align:function(n){var e,t="";return Array.prototype.join,t+='
\n ',n.label.hidden||(t+='\n
\n '+(null==(e=n.labelMarkup)?"":e)+"\n
\n "),t+="\n\n ",n.label.hidden&&n.label.className&&n.component.validate.required&&(t+='\n
\n \n
\n '),t+='\n\n
\n '+(null==(e=n.element)?"":e)+"\n
\n
\n\n",n.component.description&&(t+='\n
'+(null==(e=n.t(n.component.description,{_userInput:!0}))?"":e)+"
\n"),t+"\n"},form:function(n){var e,t="";return Array.prototype.join,n.label.hidden||"bottom"===n.label.labelPosition||(t+="\n "+(null==(e=n.labelMarkup)?"":e)+"\n"),t+="\n\n",n.label.hidden&&n.label.className&&n.component.validate.required&&(t+='\n \n'),t+="\n\n"+(null==(e=n.element)?"":e)+"\n",n.label.hidden||"bottom"!==n.label.labelPosition||(t+="\n "+(null==(e=n.labelMarkup)?"":e)+"\n"),t+="\n",n.component.description&&(t+='\n
'+(null==(e=n.t(n.component.description,{_userInput:!0}))?"":e)+"
\n"),t+"\n"}},p={form:function(n){var e,t="";return Array.prototype.join,n.self.imageUpload?(t+="\n
\n ",n.files.forEach((function(l){t+='\n
\n \n '+(null==(e=l.originalName||l.name)?\n ',n.disabled||(t+='\n \n '),t+="\n \n
\n "})),t+="\n
\n"):(t+='\n \n"),t+="\n",n.disabled||!n.component.multiple&&n.files.length||(t+="\n ",n.self.useWebViewCamera?t+='\n
\n \n \n
\n ":n.self.cameraMode?t+='\n
\n \n
\n \n \n ":(t+='\n
\n '+(null==(e=n.t("Drop files to attach,"))?"":e)+"\n ",n.self.imageUpload&&n.component.webcam&&(t+='\n '+(null==(e=n.t("Use Camera,"))?"":e)+"\n "),t+="\n "+(null==(e=n.t("or"))?"":e)+' '+(null==(e=n.t("browse"))?"":e)+"\n
\n "),t+="\n"),t+="\n",n.statuses.forEach((function(l){t+='\n
\n
\n
'+(null==(e=l.originalName)?"":e)+'
\n
'+(null==(e=n.fileSize(l.size))?"":e)+'
\n
\n
\n
\n ',"progress"===l.status?t+='\n
\n
\n '+(null==(e=l.progress)?"":e)+"% "+(null==(e=n.t("Complete"))?"":e)+"\n
\n
\n ":"error"===l.status?t+='\n
'+(null==(e=n.t(l.message))?"":e)+"
\n ":t+='\n
'+(null==(e=n.t(l.message))?"":e)+"
\n ",t+="\n
\n
\n
\n"})),t+="\n",n.component.storage&&!n.support.hasWarning||(t+='\n
\n ',n.component.storage||(t+="\n

"+(null==(e=n.t("No storage has been set for this field. File uploads are disabled until storage is set up."))?"":e)+"

\n "),t+="\n ",n.support.filereader||(t+="\n

"+(null==(e=n.t("File API & FileReader API not supported."))?"":e)+"

\n "),t+="\n ",n.support.formdata||(t+="\n

"+(null==(e=n.t("XHR2's FormData is not supported."))?"":e)+"

\n "),t+="\n ",n.support.progress||(t+="\n

"+(null==(e=n.t("XHR2's upload progress isn't supported."))?"":e)+"

\n "),t+="\n
\n"),t}},m={form:function(n){var e,t="";if(Array.prototype.join,(n.prefix||n.suffix)&&(t+='\n
\n '),t+="\n ",n.prefix&&(t+='\n
\n ',n.prefix instanceof HTMLElement?t+="\n "+(null==(e=n.t(n.prefix.outerHTML,{_userInput:!0}))?"":e)+"\n ":t+="\n "+(null==(e=n.t(n.prefix,{_userInput:!0}))?"":e)+"\n ",t+="\n
\n "),t+="\n ",!n.component.editor&&!n.component.wysiwyg){for(var l in t+="\n <"+(null==(e=n.input.type)?"":e)+'\n ref="'+(null==(e=n.input.ref?n.input.ref:"input")?"":e)+'"\n ',n.input.attr)t+="\n "+(null==(e=l)?"":e)+'="'+(null==(e=n.input.attr[l])?"":e)+'"\n ';t+='\n id="'+(null==(e=n.instance.id)?"":e)+"-"+(null==(e=n.component.key)?"":e)+'"\n >'+(null==(e=n.input.content)?"":e)+"\n ",n.hasValueMaskInput&&(t+='\n \n '),t+="\n"}return t+="\n",(n.component.editor||n.component.wysiwyg)&&(t+='\n
\n'),t+="\n",n.suffix&&(t+='\n
\n ',n.suffix instanceof HTMLElement?t+="\n "+(null==(e=n.t(n.suffix.outerHTML,{_userInput:!0}))?"":e)+"\n ":t+="\n "+(null==(e=n.t(n.suffix,{_userInput:!0}))?"":e)+"\n ",t+="\n
\n"),t+="\n",(n.prefix||n.suffix)&&(t+="\n
\n"),t+="\n",n.component.showCharCount&&(t+='\n\n'),t+="\n",n.component.showWordCount&&(t+='\n\n'),t+"\n"},html:function(n){var e,t="";return Array.prototype.join,t+='
',n.value?t+=null==(e=n.value)?"":e:t+="-",t+"
\n"}},b={form:function(n){var e,t="";return Array.prototype.join,t+='\n ',n.label.hidden||(t+="\n "+(null==(e=n.t(n.component.label,{_userInput:!0}))?"":e)+"\n ",n.component.tooltip&&(t+='\n \n '),t+="\n "),t+"\n\n"}},f={form:function(n){var e,t="";return Array.prototype.join,t+='\n \n '+(null==(e=n.element)?"":e)+"\n \n ",n.disabled||(t+='\n \n \n \n '),t+"\n\n"}},v={form:function(n){var e,t="";return Array.prototype.join,t+='\n \n '+(null==(e=n.rows)?"":e)+"\n ",n.disabled||(t+='\n \n \n \n "),t+"\n \n
\n \n
\n"}},y={form:function(n){var e,t="";return Array.prototype.join,t+='
\n ',(!n.component.hideLabel||n.builder||n.component.collapsible||n.component.tooltip)&&(t+='\n
\n

\n ',n.component.collapsible&&(t+='\n \n '),t+="\n ",n.component.hideLabel&&!n.builder||(t+="\n "+(null==(e=n.t(n.component.title,{_userInput:!0}))?"":e)+"\n "),t+="\n ",n.component.tooltip&&(t+='\n \n '),t+="\n

\n
\n "),t+="\n ",n.collapsed&&!n.builder||(t+='\n
\n '+(null==(e=n.children)?"":e)+"\n
\n "),t+"\n
\n"}},h={form:function(n){var e,t="";return Array.prototype.join,t+='
\n ',n.values.forEach((function(l,o){for(var a in t+='\n
\n \n
\n "})),t+="\n
\n"},html:function(n){var e,t="";return Array.prototype.join,(t+='
\n ')+"\n "+(null==(e=n.values.filter((function(e){return n.value===e.value||"object"==typeof n.value&&n.value.hasOwnProperty(e.value)&&n.value[e.value]})).map((function(e){return n.t(e.label,{_userInput:!0})})).join(", "))?"":e)+"\n
\n"}},g={form:function(n){var e,t="";return Array.prototype.join,t+=(null==(e=n.element)?"":e)+'\n\n\n \n \n \n \n ',n.required&&(t+='\n \n '),t+='\n \n\n',n.component.footer&&(t+='\n \n"),t+"\n"},html:function(n){return'\n'}},w={form:function(n){var e,t="";return Array.prototype.join,t+='\n \n \n \n ',n.component.values.forEach((function(l){t+='\n \n "})),t+="\n \n \n \n ",n.component.questions.forEach((function(l){t+="\n \n \n ",n.component.values.forEach((function(o){t+='\n \n '})),t+="\n \n "})),t+="\n \n
\n '+(null==(e=n.t(l.label))?"":e)+"\n ",l.tooltip&&(t+='\n \n '),t+="\n
\n "+(null==(e=n.t(l.label))?"":e)+"\n ",l.tooltip&&(t+='\n \n '),t+="\n \n \n
\n"},html:function(n){var e,t="";return Array.prototype.join,t+='\n \n ',n.component.questions.forEach((function(l){t+="\n \n \n \n \n "})),t+="\n \n
"+(null==(e=n.t(l.label))?"":e)+"\n ",n.component.values.forEach((function(o){t+="\n ",n.value&&n.value.hasOwnProperty(l.value)&&n.value[l.value]===o.value&&(t+="\n "+(null==(e=n.t(o.label))?"":e)+"\n "),t+="\n "})),t+="\n
\n"}},x={flat:function(n){var e,t="";return Array.prototype.join,n.component.components.forEach((function(l,o){t+='\n
\n
\n

'+(null==(e=n.t(l.label,{_userInput:!0}))?"":e)+'

\n
\n
\n '+(null==(e=n.tabComponents[o])?"":e)+"\n
\n
\n"})),t+="\n"},form:function(n){var e,t="";return Array.prototype.join,t+='
\n \n
\n ',n.component.components.forEach((function(l,o){t+='\n
'+(null==(e=n.tabComponents[o])?"":e)+"
\n "})),t+="\n
\n
\n"}},k={form:function(n){var e,t="";return Array.prototype.join,t+='\n ',n.component.header&&n.component.header.length>0&&(t+="\n \n \n ",n.component.header.forEach((function(l){t+="\n \n "})),t+="\n \n \n "),t+="\n \n ",n.tableComponents.forEach((function(l,o){t+='\n \n ',l.forEach((function(l,a){t+='\n \n "})),t+="\n \n
"+(null==(e=n.t(l,{_userInput:!0}))?"":e)+"
\n "})),t+="\n
\n"}},C={form:function(n){var e,t="";return Array.prototype.join,t+='
\n
\n ',"wizardHeaderVertical"===n.wizardHeaderType?t+='\n
\n
\n '+(null==(e=n.wizardHeader)?"":e)+'\n
\n
\n '+(null==(e=n.components)?"":e)+'\n
\n
\n
\n '+(null==(e=n.wizardNav)?"":e)+"\n
\n ":t+=" \n "+(null==(e=n.wizardHeader)?"":e)+'\n
\n '+(null==(e=n.components)?"":e)+"\n
\n "+(null==(e=n.wizardNav)?"":e)+"\n ",t+" \n
\n
"},builder:function(n){var e;return""+'
'+(null==(e=n.t(n.component.title,{_userInput:!0}))?"":e)+"
\n"}},A={form:function(n){var e,t="";return Array.prototype.join,t+='\n"}},z={form:function(n){var e,t="";return Array.prototype.join,t+='\n"}},I={form:function(n){var e,t="";return Array.prototype.join,t+='\n"}},R={form:function(n){var e,t="";return Array.prototype.join,t+='\n"}},j={form:function(n){var e,t="";for(var l in Array.prototype.join,t+=""+(null==(e=n.message)?"":e)+"\n"}},E={form:function(n){var e,t="";return Array.prototype.join,t+="

"+(null==(e=n.t("error"))?"":e)+"

\n
    \n ",n.errors.forEach((function(l){t+='\n '+(null==(e=l.message)?"":e)+"\n "})),t+="\n
\n"}},P={html:function(n){var e,t="";return Array.prototype.join,t+='
\n
\n \n \n \n
\n ',n.component.enableRowSelect&&(t+='\n
\n ',n.selectedRows&&(t+='\n '+(null==(e=n.selectedRows)?"":e)+" selected\n "),t+="\n
\n "),t+='\n
\n
\n
\n
\n
\n
\n \n \n \n ',n.component.components.length||(t+='\n \n '),t+="\n ",n.component.enableRowSelect&&(t+='\n \n '),t+="\n ",n.component.components.forEach((function(l,o){t+="\n ",l.show&&(t+="\n \n "),t+="\n "})),t+="\n ",(n.component.showEditBtn||n.component.showDeleteBtn||n.component.showDeleteAllBtn)&&n.data.length&&!n.options.pdf&&(t+='\n \n "),t+='\n \n \n \n
No components have been set up to display in the Data Table. "Table View" must be checked for components to render.\n \n ('+(null==(e=n.selectedRows)?"":e)+' of )\n \n "+(null==(e=l.label||l.key)?"":e)+"\n ",n.options.sortable&&l.sortable&&(t+='\n \n '+(null==(e=n.component.sort.isAsc?"↑":"↓")?"":e)+"\n \n "),t+="\n ",n.options.hideMenu||(t+='\n \n \n \n '),t+="\n \n
\n Actions\n ',n.component.showDeleteAllBtn&&n.data.length&&(t+='\n \n '),t+="\n
\n
\n
\n
\n
\n ',n.component.showAddBtn&&!n.options.pdf&&(t+='\n
+
\n '),t+="\n
\n
\n
\n"}},K={html:function(n){var e,t="";return Array.prototype.join,t+='
\r\n \r\n
\r\n"}},B={html:function(n){var e,t="";return Array.prototype.join,t+='\n\n ',n.eachRow((function(l){t+='\n \n ',n.component.enableRowSelect&&(t+='\n \n '),t+="\n ",l.forEach((function(l){t+="\n ",l.component.show&&(t+="\n \n "),t+="\n "})),t+="\n ",(n.component.showEditBtn||n.component.showDeleteBtn||n.component.showDeleteAllBtn)&&!n.options.pdf&&(t+='\n \n "),t+="\n \n "})),t+="\n\n
\n \n \n "+(null==(e=n.instance.hook("format",l.component.key,l.dataValue))?"":e)+"\n \n
\n \n ⋮\n
\n
"}},q={transform(n,e){return e&&"class"===n&&this.cssClasses.hasOwnProperty(e.toString())?this.cssClasses[e.toString()]:e},handleBuilderSidebarScroll(n){n.scrollResizeObserver&&n.scrollResizeObserver.disconnect(),n.scrollResizeObserver=new ResizeObserver((()=>{setTimeout((()=>{const{form:e,sidebar:t}=n.refs,l=e&&e.parentNode&&e.parentNode.clientHeight,o=t&&t.clientHeight,a=t&&t.parentNode&&t.parentNode.style;a&&l&&o&&(a.height=`${Math.max(o+20,l)}px`)}))})),n.scrollResizeObserver.observe(n.refs.form),n.scrollResizeObserver.observe(n.refs.sidebar)},clearBuilderSidebarScroll(n){n.scrollResizeObserver&&(n.scrollResizeObserver.disconnect(),n.scrollResizeObserver=null)},defaultIconset:"glyphicon",iconClass:(n,e,t)=>{if("fa"===n)switch(e){case"save":e="download";break;case"zoom-in":e="search-plus";break;case"zoom-out":e="search-minus";break;case"question-sign":e="question-circle";break;case"remove-circle":case"circle-xmark":e="times-circle-o";break;case"new-window":e="window-restore";break;case"move":e="arrows";break;case"ok-sign":e="check-circle";break;case"remove-sign":e="times-circle"}return t?`${n} ${n}-${e} ${n}-spin`:`${n} ${n}-${e}`},cssClasses:{"formio-tab-panel-active":"active","formio-tab-link-active":"active","formio-tab-link-container-active":"active"},builder:{form:function(n){var e;return""+'
\n
\n '+(null==(e=n.sidebar)?"":e)+'\n
\n
\n '+(null==(e=n.form)?"":e)+"\n
\n
\n"}},builderComponent:l,builderComponents:{form:function(n){var e;return""+'
\n '+(null==(e=n.html)?"":e)+"\n
\n"}},builderEditForm:o,builderPlaceholder:{form:function(n){var e;return""+'\n '+(null==(e=n.t("Drag and Drop a form component"))?"":e)+"\n\n"}},builderSidebar:a,builderSidebarGroup:r,columns:i,datagrid:s,day:u,dialog:{form:function(n){return'
\n
\n
\n
\n \n
\n
\n'}},editgrid:d,field:c,file:p,icon:{form:function(n){var e;return""+''+(null==(e=n.content)?"":e)+"\n"}},input:m,label:b,message:{form:function(n){var e;return""+'

'+(null==(e=n.message)?"":e)+"

\n"}},modaldialog:{form:function(n){var e;return""+'
\n
\n
\n \n '+(null==(e=n.t("Close"))?"":e)+'\n \n
\n
\n
\n'}},modaledit:{form:function(n){var e;return""+'
\n \n \n \n
'+(null==(e=n.content)?"":e)+"
\n
\n"}},multiValueRow:f,multiValueTable:v,panel:y,radio:h,resourceAdd:{form:function(n){var e;return""+'\n \n \n \n \n \n \n \n \n
\n '+(null==(e=n.element)?"":e)+'\n
\n \n
\n"}},signature:g,survey:w,tab:x,table:k,well:{form:function(n){var e;return""+'
\n
\n '+(null==(e=n.children)?"":e)+"\n
\n
\n"}},wizard:C,wizardHeader:A,wizardHeaderClassic:z,wizardHeaderVertical:I,wizardNav:R,errorsList:E,alert:j,grid:P,pagination:{html:function(n){var e;return""+'\n'}},columnMenu:K,tbody:B,paginationBottom:{html:function(n){return'
\n \n
'}}},_={framework:"bootstrap3",templates:{bootstrap3:q}};return e.default})())); \ No newline at end of file diff --git a/dist/bootstrap4.js b/dist/bootstrap4.js deleted file mode 100644 index c038491e6..000000000 --- a/dist/bootstrap4.js +++ /dev/null @@ -1 +0,0 @@ -!function(n,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.bootstrap4=e():n.bootstrap4=e()}(self,(()=>(()=>{"use strict";var n={d:(e,t)=>{for(var l in t)n.o(t,l)&&!n.o(e,l)&&Object.defineProperty(e,l,{enumerable:!0,get:t[l]})},o:(n,e)=>Object.prototype.hasOwnProperty.call(n,e)},e={};n.d(e,{default:()=>U});const t={form:function(n){var e,t="";if(Array.prototype.join,n.mode.autocomplete){for(var l in t+='\n
\n \n ',n.component.disableClearIcon||(t+='\n \n '),t+="\n
\n"}return t+="\n",n.self.manualModeEnabled&&(t+='\n
\n \n
\n"),t+="\n",n.self.manualMode&&(t+='\n
\n '+(null==(e=n.children)?"":e)+"\n
\n"),t+"\n"},html:function(n){var e,t="";return Array.prototype.join,t+='
',n.displayValue?t+=null==(e=n.displayValue)?"":e:t+="-",t+"
\n"}},l={form:function(n){var e,t="";return Array.prototype.join,t+='
\n ',n.disableBuilderActions||(t+='\n
\n \n \n
\n ',n.design||(t+='\n \n \n
\n \n \n \n ',!1!==n.editJson&&(t+='\n \n \n \n '),t+="\n "),t+='\n \n \n \n ',n.design&&"reviewpage"===n.childComponent.type||!n.editComponent||(t+='\n \n \n \n '),t+="\n \n "),t+"\n "+(null==(e=n.html)?"":e)+"\n\n"}},o={form:function(n){var e,t="";return Array.prototype.join,t+='
\n
\n

'+(null==(e=n.t(n.componentInfo.title,{_userInput:!0}))?"":e)+" "+(null==(e=n.t("Component"))?"":e)+"

\n
\n ",n.helplinks&&(t+='\n \n "),t+='\n
\n
\n
\n
\n '+(null==(e=n.editForm)?"":e)+"\n
\n ",n.showPreview||(t+='\n
\n \n \n \n ",n.preview&&(t+='\n \n "),t+="\n
\n "),t+="\n
\n ",n.showPreview&&n.preview&&(t+='\n
\n
\n
\n

'+(null==(e=n.t("Preview"))?"":e)+'

\n
\n
\n
\n '+(null==(e=n.preview)?"":e)+"\n
\n
\n
\n ",n.componentInfo.help&&(t+='\n
\n '+(null==(e=n.t(n.componentInfo.help))?"":e)+"\n
\n "),t+='\n
\n \n \n \n \n
\n
\n "),t+"\n
\n"}},r={form:function(n){var e,t="";return Array.prototype.join,t+='
\n \n
\n ',n.groups.forEach((function(n){t+="\n "+(null==(e=n)?"":e)+"\n "})),t+="\n
\n
\n"}},a={form:function(n){var e,t="";return Array.prototype.join,t+='
\n
\n
\n \n '+(null==(e=n.t(n.group.title,{_userInput:!0}))?"":e)+'\n \n
\n
\n \n
\n ',n.group.componentOrder.length||n.subgroups.length?(t+="\n ",!n.group.componentOrder||n.group.componentOrder.forEach((function(l){t+='\n \n ',n.group.components[l].icon&&(t+='\n \n '),t+="\n "+(null==(e=n.t(n.group.components[l].title,{_userInput:!0}))?"":e)+"\n \n "})),t+="\n "+(null==(e=n.subgroups.join(""))?"":e)+"\n "):t+="\n
"+(null==(e=n.t("No Matches Found"))?"":e)+"
\n ",t+="\n
\n
\n\n"}},i={form:function(n){var e,t="";return Array.prototype.join,t+='
\n
\n '+(null==(e=n.sidebar)?"":e)+'\n
\n
\n \n
\n '+(null==(e=n.form)?"":e)+"\n
\n
\n
\n"}},s={form:function(n){var e,t="";for(var l in Array.prototype.join,t+="<"+(null==(e=n.input.type)?"":e)+'\n ref="button"\n ',n.input.attr)t+="\n "+(null==(e=l)?"":e)+'="'+(null==(e=n.input.attr[l])?"":e)+'"\n ';return t+="\n ",n.component.description&&(t+='\n aria-describedby="d-'+(null==(e=n.instance.id)?"":e)+"-"+(null==(e=n.component.key)?"":e)+'"\n '),t+="\n>\n",n.component.leftIcon&&(t+=' '),t+="\n"+(null==(e=n.input.content)?"":e)+"\n",n.component.tooltip&&(t+='\n \n'),t+="\n",n.component.rightIcon&&(t+=' '),t+"\n\n
\n \n
\n'},html:function(n){return"\n"}},u={form:function(n){var e,t="";for(var l in Array.prototype.join,t+='
\n \n <'+(null==(e=n.input.type)?"":e)+'\n ref="input"\n id="'+(null==(e=n.instance.id)?"":e)+"-"+(null==(e=n.component.key)?"":e)+'"\n aria-labelledby="l-'+(null==(e=n.instance.id)?"":e)+"-"+(null==(e=n.component.key)?"":e)+'"\n ',n.input.attr)t+="\n "+(null==(e=l)?"":e)+'="'+(null==(e=n.input.attr[l])?"":e)+'"\n ';return t+="\n ",n.checked&&(t+="checked=true"),t+='\n aria-required="'+(null==(e=n.component.validate.required)?"":e)+'"\n ',n.component.description&&(t+='\n aria-describedby="d-'+(null==(e=n.instance.id)?"":e)+"-"+(null==(e=n.component.key)?"":e)+'"\n '),t+="\n >\n ",n.self.labelIsHidden()||(t+=""+(null==(e=n.input.label)?"":e)+""),t+="\n "+(null==(e=n.input.content)?"":e)+"\n \n \n ",n.component.tooltip&&(t+='\n \n '),t+"\n
\n"},html:function(n){var e,t="";return Array.prototype.join,t+='\n
',n.checked?t+="True":t+="False",t+"
\n"}},d={form:function(n){var e,t="";return Array.prototype.join,n.component.columns.forEach((function(l,o){t+='\n
\n '+(null==(e=n.columnComponents[o])?"":e)+"\n
\n"})),t}},c={form:function(n){var e,t="";return Array.prototype.join,t+='
\n ',n.visible&&(t+="\n "+(null==(e=n.children)?"":e)+'\n
\n '),t+"\n
\n"}},p={form:function(n){var e,t="";return Array.prototype.join,t+='
\n
\n
\n
\n
'+(null==(e=n.t(n.component.label))?"":e)+(null==(e=n.self.isIE()?", dialog":"")?"":e)+"\n ",n.options.vpat?t+='\n \n ':t+='\n \n ',t+='\n
\n ',n.visible&&(t+='\n
'+(null==(e=n.children)?"":e)+"
\n "),t+='\n
\n ',n.options.vpat&&(t+='\n \n "),t+'\n \n
\n
\n
\n \n
\n
\n'}},m={form:function(n){var e,t="";return Array.prototype.join,n.children.forEach((function(n){t+='\n \n '+(null==(e=n)?"":e)+"\n \n"})),t+="\n"}},b={form:function(n){var e,t="";return Array.prototype.join,t+='\n '+(null==(e=l.hideLabel?"":n.t(l.label||l.title,{_userInput:!0}))?"":e)+"\n ",l.tooltip&&(t+=' '),t+="\n \n "})),t+="\n ",n.hasExtraColumn&&(t+='\n \n "),t+="\n \n \n "),t+='\n \n ',n.rows.forEach((function(l,o){t+="\n ",n.hasGroups&&n.groups[o]&&(t+='\n \n '+(null==(e=n.groups[o].label)?"":e)+"\n \n "),t+='\n \n ',n.component.reorder&&(t+='\n \n '),t+="\n ",n.columns.forEach((function(o){t+='\n \n "})),t+="\n ",n.hasExtraColumn&&(t+="\n ",n.hasRemoveButtons&&(t+='\n \n '),t+="\n ",n.canAddColumn&&(t+='\n \n "),t+="\n "),t+="\n \n "})),t+="\n \n ",!n.builder&&n.hasAddButton&&n.hasBottomSubmit&&(t+='\n \n \n \n \n \n "),t+="\n
\n '+(null==(e=n.t("Add/Remove"))?"":e)+"\n ",!n.builder&&n.hasAddButton&&n.hasTopSubmit&&(t+='\n \n "),t+="\n
\n \n \n "+(null==(e=l[o.key])?"":e)+"\n \n \n \n '+(null==(e=n.placeholder)?"":e)+"\n
\n \n
\n"},html:function(n){var e,t="";return Array.prototype.join,t+='\n ',n.hasHeader&&(t+="\n \n \n ",n.columns.forEach((function(l){t+='\n \n "})),t+="\n \n \n "),t+="\n \n ",n.rows.forEach((function(l){t+="\n \n ",n.columns.forEach((function(o){t+='\n \n "})),t+="\n \n "})),t+="\n \n
\n '+(null==(e=l.hideLabel?"":n.t(l.label||l.title,{_userInput:!0}))?"":e)+"\n ",l.tooltip&&(t+=' '),t+="\n
\n '+(null==(e=l[o.key])?"":e)+"\n
\n"}},f={form:function(n){var e,t="";return Array.prototype.join,t+='
\n "),t+="\n
"+(null==(e=n.day)?"":e)+"
\n
\n "),t+="\n ",n.showMonth&&(t+='\n
\n ',n.component.hideInputLabels||(t+='\n
\n "),t+="\n ",!n.dayFirst&&n.showDay&&(t+='\n
\n ',n.component.hideInputLabels||(t+='\n
\n "),t+="\n ",n.showYear&&(t+='\n
\n ',n.component.hideInputLabels||(t+='\n
\n "),t+'\n\n\n'}},v={form:function(n){var e,t="";return Array.prototype.join,t+='
    \n ',n.header&&(t+='\n
  • \n '+(null==(e=n.header)?"":e)+"\n
  • \n "),t+="\n ",n.rows.forEach((function(l,o){t+='\n
  • \n '+(null==(e=l)?"":e)+"\n ",n.openRows[o]&&!n.readOnly&&(t+='\n
    \n \n ",n.component.removeRow&&(t+='\n \n "),t+="\n
    \n "),t+='\n
    \n
    \n '+(null==(e=n.errors[o])?"":e)+"\n
    \n
    \n
  • \n "})),t+="\n ",n.footer&&(t+='\n \n "),t+="\n
\n",!n.readOnly&&n.hasAddButton&&(t+='\n\n"),t+="\n"},html:function(n){var e,t="";return Array.prototype.join,t+='
    \n ',n.header&&(t+='\n
  • \n '+(null==(e=n.header)?"":e)+"\n
  • \n "),t+="\n ",n.rows.forEach((function(l,o){t+='\n
  • \n '+(null==(e=l)?"":e)+"\n ",n.openRows[o]&&!n.readOnly&&(t+='\n
    \n \n ",n.component.removeRow&&(t+='\n \n "),t+="\n
    \n "),t+='\n
    \n
    \n '+(null==(e=n.errors[o])?"":e)+"\n
    \n
    \n
  • \n "})),t+="\n ",n.footer&&(t+='\n \n "),t+="\n
\n"}},y={form:function(n){var e,t="";return Array.prototype.join,t+='
\n
\n \n ',n.header&&(t+='\n \n '+(null==(e=n.header)?"":e)+"\n \n "),t+='\n \n ',n.rows.forEach((function(l,o){t+='\n \n '+(null==(e=l)?"":e)+"\n ",n.openRows[o]&&!n.readOnly&&(t+='\n \n "),t+="\n ",n.errors[o]&&(t+='\n \n "),t+="\n \n "})),t+="\n \n ",n.footer&&(t+="\n \n \n "+(null==(e=n.footer)?"":e)+"\n \n \n "),t+="\n
\n
\n \n ",n.component.removeRow&&(t+='\n \n "),t+="\n
\n
\n
\n
\n '+(null==(e=n.errors[o])?"":e)+"\n
\n
\n
\n
\n
\n",!n.readOnly&&n.hasAddButton&&(t+='\n\n"),t+="\n"},html:function(n){var e,t="";return Array.prototype.join,t+='
\n
\n \n ',n.header&&(t+='\n \n '+(null==(e=n.header)?"":e)+"\n \n "),t+='\n \n ',n.rows.forEach((function(l,o){t+='\n \n '+(null==(e=l)?"":e)+"\n ",n.openRows[o]&&!n.readOnly&&(t+='\n \n "),t+="\n ",n.errors[o]&&(t+='\n \n "),t+="\n \n "})),t+="\n \n ",n.footer&&(t+="\n \n \n "+(null==(e=n.footer)?"":e)+"\n \n \n "),t+="\n
\n
\n \n ",n.component.removeRow&&(t+='\n \n "),t+="\n
\n
\n
\n
\n '+(null==(e=n.errors[o])?"":e)+"\n
\n
\n
\n
\n
\n"}},g={form:function(n){var e,t="";return Array.prototype.join,n.label.hidden||"bottom"===n.label.labelPosition||(t+="\n "+(null==(e=n.labelMarkup)?"":e)+"\n"),t+="\n\n",n.label.hidden&&n.label.className&&n.component.validate.required&&(t+='\n \n'),t+="\n\n"+(null==(e=n.element)?"":e)+"\n\n",n.label.hidden||"bottom"!==n.label.labelPosition||(t+="\n "+(null==(e=n.labelMarkup)?"":e)+"\n"),t+="\n",n.component.description&&(t+='\n
'+(null==(e=n.t(n.component.description,{_userInput:!0}))?"":e)+"
\n"),t+"\n"},align:function(n){var e,t="";return Array.prototype.join,t+='
\n ',n.label.hidden||(t+='\n
\n '+(null==(e=n.labelMarkup)?"":e)+"\n
\n "),t+="\n\n ",n.label.hidden&&n.label.className&&n.component.validate.required&&(t+='\n
\n \n
\n '),t+='\n\n
\n '+(null==(e=n.element)?"":e)+"\n
\n
\n\n",n.component.description&&(t+='\n
'+(null==(e=n.t(n.component.description,{_userInput:!0}))?"":e)+"
\n"),t+"\n"}},h={form:function(n){var e,t="";return Array.prototype.join,t+="
\n ",n.component.legend&&(t+='\n \n '+(null==(e=n.t(n.component.legend,{_userInput:!0}))?"":e)+"\n ",n.component.tooltip&&(t+='\n \n '),t+="\n \n "),t+="\n ",n.collapsed||(t+='\n
\n '+(null==(e=n.children)?"":e)+"\n
\n "),t+"\n
\n"}},w={form:function(n){var e,t="";return Array.prototype.join,n.options.vpat&&(t+='\n \n'),t+="\n",n.self.imageUpload?(t+="\n
\n ",n.files.forEach((function(l){t+='\n
\n \n '+(null==(e=l.originalName||l.name)?\n ',n.disabled||(t+='\n \n '),t+="\n \n
\n "})),t+="\n ",n.filesToUpload.forEach((function(l){t+="\n ","progress"===l.status?t+='\n
'+(null==(e=n.fileSize(l.size))?"":e)+'
\n
\n
\n '+(null==(e=l.progress)?"":e)+"% "+(null==(e=n.t("Complete"))?"":e)+"\n
\n
\n ":t+='\n
'+(null==(e=n.t(l.message))?"":e)+"
\n ",t+="\n "})),t+="\n
\n"):(t+="\n ",n.options.vpat&&(t+="\n
"+(null==(e=n.component.filePattern&&"*"!==n.component.filePattern?n.t("Allowed file types: ")+n.component.filePattern:"Any file types are allowed")?"":e)+"
\n "),t+='\n
    \n \n ",n.files.forEach((function(l){t+='\n
  • \n
    \n
    \n ',n.component.uploadOnly?t+="\n "+(null==(e=l.originalName||l.name)?"":e)+"\n ":t+='\n \n '+(null==(e=n.t("Press to open "))?"":e)+""+(null==(e=l.originalName||l.name)?"":e)+"\n \n ",t+='\n
    \n
    '+(null==(e=n.fileSize(l.size))?"":e)+"
    \n ",n.self.hasTypes&&!n.disabled&&(t+='\n
    \n \n
    \n "),t+="\n ",n.self.hasTypes&&n.disabled&&(t+='\n
    '+(null==(e=l.fileType)?"":e)+"
    \n "),t+="\n ",n.disabled||(t+='\n
    \n '),t+="\n
    \n
  • \n "})),t+="\n ",n.filesToDelete.forEach((function(l){t+='\n
  • \n
    \n
    \n
    '+(null==(e=l.originalName||l.name)?"":e)+'
    \n
    '+(null==(e=n.t(l.message))?"":e)+'
    \n
    \n
    '+(null==(e=n.fileSize(l.size))?"":e)+"
    \n ",n.self.hasTypes&&(t+='\n
    \n \n
    \n "),t+="\n ",n.isSyncing||"success"===l.status||(t+='\n
    \n '),t+="\n
    \n
  • \n "})),t+="\n ",n.filesToUpload.forEach((function(l){t+='\n
  • \n
    \n
    \n
    '+(null==(e=l.originalName||l.name)?"":e)+"
    \n ","progress"===l.status?t+='\n
    \n
    \n '+(null==(e=l.progress)?"":e)+"% "+(null==(e=n.t("Complete"))?"":e)+"\n
    \n
    \n ":t+='\n
    '+(null==(e=n.t(l.message))?"":e)+"
    \n ",t+='\n
    \n
    '+(null==(e=n.fileSize(l.size))?"":e)+"
    \n ",n.self.hasTypes&&(t+='\n
    \n \n
    \n "),t+="\n ","progress"===l.status?t+='\n
    \n ':n.isSyncing||"success"===l.status||(t+='\n
    \n '),t+="\n
    \n
  • \n "})),t+="\n
\n"),t+="\n",n.disabled||!n.component.multiple&&n.files.length||(t+="\n ",n.self.useWebViewCamera?t+='\n
\n \n \n
\n ":n.self.cameraMode?t+='\n
\n \n
\n \n \n ":(t+='\n \n '),t+="\n"),t+="\n",n.component.storage&&!n.support.hasWarning||(t+='\n
\n ',n.component.storage||(t+="\n

"+(null==(e=n.t("No storage has been set for this field. File uploads are disabled until storage is set up."))?"":e)+"

\n "),t+="\n ",n.support.filereader||(t+="\n

"+(null==(e=n.t("File API & FileReader API not supported."))?"":e)+"

\n "),t+="\n ",n.support.formdata||(t+="\n

"+(null==(e=n.t("XHR2's FormData is not supported."))?"":e)+"

\n "),t+="\n ",n.support.progress||(t+="\n

"+(null==(e=n.t("XHR2's upload progress isn't supported."))?"":e)+"

\n "),t+="\n
\n"),t+="\n"}},x={form:function(n){var e,t="";return Array.prototype.join,t+="<"+(null==(e=n.tag)?"":e)+' class="formio-component-htmlelement '+(null==(e=n.component.className)?"":e)+'" ref="html"\n ',n.attrs.forEach((function(n){t+="\n "+(null==(e=n.attr)?"":e)+'="'+(null==(e=n.value)?"":e)+'"\n '})),t+="\n>"+(null==(e=n.builder?n.content:n.t(n.content))?"":e),n.singleTags&&-1!==n.singleTags.indexOf(n.tag)||(t+=""),t+="\n"}},k={form:function(n){var e,t="";if(Array.prototype.join,(n.prefix||n.suffix)&&(t+='\n
\n '),t+="\n ",n.prefix&&(t+='\n
\n \n ',n.prefix instanceof HTMLElement?t+="\n "+(null==(e=n.t(n.prefix.outerHTML,{_userInput:!0}))?"":e)+"\n ":t+="\n "+(null==(e=n.t(n.prefix,{_userInput:!0}))?"":e)+"\n ",t+="\n \n
\n "),t+="\n ",!n.component.editor&&!n.component.wysiwyg){for(var l in t+="\n <"+(null==(e=n.input.type)?"":e)+'\n ref="'+(null==(e=n.input.ref?n.input.ref:"input")?"":e)+'"\n ',n.input.attr)t+="\n "+(null==(e=l)?"":e)+'="'+(null==(e=n.input.attr[l])?"":e)+'"\n ';t+='\n id="'+(null==(e=n.instance.id)?"":e)+"-"+(null==(e=n.component.key)?"":e)+'"\n aria-labelledby="l-'+(null==(e=n.instance.id)?"":e)+"-"+(null==(e=n.component.key)?"":e)+" ",n.component.description&&(t+="d-"+(null==(e=n.instance.id)?"":e)+"-"+(null==(e=n.component.key)?"":e)),t+='"\n aria-required="'+(null==(e="input"!==n.input.ref&&n.input.ref?n.component.fields&&n.component.fields[n.input.ref]&&n.component.fields[n.input.ref].required||!1:n.component.validate.required)?"":e)+'"\n >'+(null==(e=n.input.content)?"":e)+"\n ",n.hasValueMaskInput&&(t+='\n \n '),t+="\n"}return t+="\n",(n.component.editor||n.component.wysiwyg)&&(t+='\n
\n'),t+="\n","datetime"===n.component.type&&(t+='\n\n'),t+="\n",n.suffix&&(t+='\n
\n \n ',n.suffix instanceof HTMLElement?t+="\n "+(null==(e=n.t(n.suffix.outerHTML,{_userInput:!0}))?"":e)+"\n ":t+="\n "+(null==(e=n.t(n.suffix,{_userInput:!0}))?"":e)+"\n ",t+="\n \n
\n"),t+="\n",(n.prefix||n.suffix)&&(t+="\n
\n"),t+="\n",(n.component.showCharCount||n.component.showWordCount)&&(t+='\n
\n ',n.component.showCharCount&&(t+='\n \n '),t+="\n ",n.component.showWordCount&&(t+='\n \n '),t+="\n
\n"),t+"\n"},html:function(n){var e,t="";return Array.prototype.join,t+='
',n.value?t+=null==(e=n.value)?"":e:t+="-",t+"
\n"}},C={form:function(n){var e,t="";return Array.prototype.join,t+='\n '+(null==(e=n.t(n.component.label,{_userInput:!0}))?"":e)+"\n ","number"!==n.component.type&&"phoneNumber"!==n.component.type&&"currency"!==n.component.type||(t+='\n , '+(null==(e=n.t("numeric only"))?"":e)+",\n "),t+="\n ",n.component.tooltip&&(t+='\n \n '),t+"\n\n"}},A={form:function(n){var e,t="";for(var l in Array.prototype.join,t+='\n '+(null==(e=n.label)?"":e)+"\n "})),t+='\n \n \n ",n.disabled||(t+='\n \n \n \n '),t+"\n\n"}},z={form:function(n){var e,t="";return Array.prototype.join,t+='\n \n '+(null==(e=n.rows)?"":e)+"\n ",n.disabled||(t+='\n \n \n \n "),t+"\n \n
\n \n
\n"}},j={form:function(n){var e,t="";return Array.prototype.join,t+='
\n ',(!n.component.hideLabel||n.builder||n.component.collapsible||n.component.tooltip)&&(t+='\n
\n \n ',n.component.collapsible&&(t+='\n \n '),t+="\n ",n.component.hideLabel&&!n.builder||(t+="\n "+(null==(e=n.t(n.component.title,{_userInput:!0}))?"":e)+"\n "),t+="\n ",n.component.tooltip&&(t+='\n \n '),t+="\n \n
\n "),t+="\n ",n.collapsed&&!n.builder||(t+='\n
\n '+(null==(e=n.children)?"":e)+"\n
\n "),t+"\n
\n"}},E={form:function(n){var e,t="";return Array.prototype.join,t+='\n \n \n "})),t+="\n\n"},html:function(n){var e,t="";return Array.prototype.join,(t+='
\n ')+"\n "+(null==(e=n.values.filter((function(e){return n.value===e.value||"object"==typeof n.value&&n.value.hasOwnProperty(e.value)&&n.value[e.value]})).map((function(e){return n.t(e.label,{_userInput:!0})})).join(", "))?"":e)+"\n
\n"}},P={form:function(n){var e,t="";for(var l in Array.prototype.join,t+=''+(null==(e=n.selectOptions)?"":e)+'\n\n'},html:function(n){var e,t="";return Array.prototype.join,t+='
',n.value?t+=null==(e=n.self.itemValueForHTMLMode(n.value))?"":e:t+="-",t+"
\n"}},R={form:function(n){var e,t="";for(var l in Array.prototype.join,t+="\n"},html:function(n){var e,t="";return Array.prototype.join,n.selected&&(t+=null==(e=n.t(n.option.label,{_userInput:!0}))?"":e),t+"\n"}},_={form:function(n){var e,t="";return Array.prototype.join,t+=(null==(e=n.element)?"":e)+'\n\n \n \n \n \n ',n.required&&(t+='\n \n '),t+='\n \n\n',n.component.footer&&(t+='\n \n"),t+"\n"},html:function(n){return'\n'}},q={form:function(n){var e,t="";return Array.prototype.join,t+='\n \n \n \n ',n.component.values.forEach((function(l){t+='\n \n "})),t+="\n \n \n \n ",n.component.questions.forEach((function(l){t+="\n \n \n ",n.component.values.forEach((function(o){t+='\n \n '})),t+="\n \n "})),t+="\n \n
\n '+(null==(e=n.t(l.label,{_userInput:!0}))?"":e)+"\n ",l.tooltip&&(t+='\n \n '),t+="\n
\n "+(null==(e=n.t(l.label))?"":e)+"\n ",l.tooltip&&(t+='\n \n '),t+="\n \n \n
\n"},html:function(n){var e,t="";return Array.prototype.join,t+='\n \n ',n.component.questions.forEach((function(l){t+="\n \n \n \n \n "})),t+="\n \n
"+(null==(e=n.t(l.label))?"":e)+"\n ",n.component.values.forEach((function(o){t+="\n ",n.value&&n.value.hasOwnProperty(l.value)&&n.value[l.value]===o.value&&(t+="\n "+(null==(e=n.t(o.label))?"":e)+"\n "),t+="\n "})),t+="\n
\n"}},B={flat:function(n){var e,t="";return Array.prototype.join,n.component.components.forEach((function(l,o){t+='\n
\n
\n

'+(null==(e=n.t(l.label,{_userInput:!0}))?"":e)+'

\n
\n \n '+(null==(e=n.tabComponents[o])?"":e)+"\n
\n \n"})),t+="\n"},form:function(n){var e,t="";return Array.prototype.join,t+='
\n
\n \n
\n ",n.component.components.forEach((function(l,o){t+='\n \n '+(null==(e=n.tabComponents[o])?"":e)+"\n
\n "})),t+="\n\n"}},S={form:function(n){var e,t="";return Array.prototype.join,t+='\n \n ",n.component.header&&n.component.header.length>0&&(t+="\n \n \n ",n.component.header.forEach((function(l){t+="\n \n "})),t+="\n \n \n "),t+="\n \n ",n.tableComponents.forEach((function(l,o){t+='\n \n ',l.forEach((function(l,r){t+='\n \n "})),t+="\n \n
'+(null==(e=n.t(n.component.label))?"":e)+"
"+(null==(e=n.t(l))?"":e)+"
\n "})),t+="\n
\n"}},T={form:function(n){var e,t="";return Array.prototype.join,n.node.isRoot?t+='\n
\n':t+='\n
  • \n',t+="\n ",n.content&&(t+='\n
    \n '+(null==(e=n.content)?"":e)+"\n
    \n "),t+="\n ",n.childNodes&&n.childNodes.length&&(t+='\n
      \n '+(null==(e=n.childNodes.join(""))?"":e)+"\n
    \n "),t+="\n",n.node.isRoot?t+="\n
  • \n":t+="\n \n",t+"\n"}},L={treeView:{form:function(n){var e,t="";return Array.prototype.join,t+='
    \n ',n.values.forEach((function(n){t+='\n
    \n '+(null==(e=n)?"":e)+"\n
    \n "})),t+='\n
    \n
    \n ',n.node.hasChildren&&(t+='\n \n "),t+="\n ",n.readOnly||(t+='\n \n \n \n ",n.node.revertAvailable&&(t+='\n \n "),t+="\n "),t+="\n
    \n
    \n
    \n"}},treeEdit:{form:function(n){var e,t="";return Array.prototype.join,t+='
    \n
    '+(null==(e=n.children)?"":e)+"
    \n ",n.readOnly||(t+='\n
    \n \n \n
    \n "),t+"\n
    \n"}}},K={form:function(n){var e,t="";return Array.prototype.join,t+='
    \n
    \n ',"wizardHeaderVertical"===n.wizardHeaderType?(t+='\n
    \n ',"right"!==n.wizardHeaderLocation&&(t+='\n
    \n '+(null==(e=n.wizardHeader)?"":e)+"\n
    \n "),t+='\n
    \n '+(null==(e=n.components)?"":e)+"\n
    \n ","right"===n.wizardHeaderLocation&&(t+='\n
    \n '+(null==(e=n.wizardHeader)?"":e)+"\n
    \n "),t+='\n
    \n
    \n '+(null==(e=n.wizardNav)?"":e)+"\n
    \n "):t+="\n "+(null==(e=n.wizardHeader)?"":e)+'\n
    \n '+(null==(e=n.components)?"":e)+"\n
    \n "+(null==(e=n.wizardNav)?"":e)+"\n ",t+"\n
    \n
    \n"},builder:function(n){var e;return""+'
    '+(null==(e=n.t(n.component.title,{_userInput:!0}))?"":e)+"
    \n"}},N={form:function(n){var e,t="";return Array.prototype.join,t+='\n"}},M={form:function(n){var e,t="";return Array.prototype.join,t+='\n"}},O={form:function(n){var e,t="";return Array.prototype.join,t+='\n"}},D={form:function(n){var e,t="";return Array.prototype.join,t+='
      \n ',n.buttonOrder.forEach((function(l){t+="\n ","cancel"===l&&n.buttons.cancel&&(t+='\n
    • \n \n
    • \n "),t+="\n ","previous"===l&&n.buttons.previous&&(t+='\n
    • \n \n
    • \n "),t+="\n ","next"===l&&n.buttons.next&&(t+='\n
    • \n \n
    • \n "),t+="\n ","submit"===l&&n.buttons.submit&&(t+="\n
    • \n ",n.disableWizardSubmit?t+='\n \n ":t+='\n \n ",t+="\n
    • \n "),t+="\n "})),t+="\n
    \n"}},H={form:function(n){var e,t="";return Array.prototype.join,t+="

    "+(null==(e=n.t("error"))?"":e)+"\n ",n.options.vpat&&(t+='\n \n '),t+="\n

    \n
      \n ",n.errors.forEach((function(n){t+='\n
    • \n \n '+(null==(e=n.message)?"":e)+"\n \n
    • \n "})),t+="\n
    \n"}},F={form:function(n){var e,t="";for(var l in Array.prototype.join,t+="'+(null==(e=n.t("errorListHotkey"))?"":e)+"\n "),t+"\n\n"}},V={html:function(n){var e,t="";return Array.prototype.join,t+='
    \r\n
    \r\n \r\n \r\n \r\n
    \r\n ',n.component.enableRowSelect&&(t+='\r\n
    \r\n '+(null==(e=n.selectedRows)?"":e)+" selected\r\n
    \r\n "),t+='\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n ',n.component.components.length||(t+='\r\n \r\n '),t+="\r\n ",n.component.enableRowSelect&&(t+='\r\n \r\n '),t+="\r\n ",n.component.components.forEach((function(l,o){t+="\r\n ",l.show&&(t+="\r\n \r\n "),t+="\r\n "})),t+="\r\n ",(n.component.showEditBtn||n.component.showDeleteBtn||n.component.showDeleteAllBtn)&&n.data.length&&!n.options.pdf&&(t+='\r\n \r\n "),t+='\r\n \r\n \r\n \r\n
    No components have been set up to display in the Data Table. "Table View" must be checked for components to render.\r\n \r\n \r\n "+(null==(e=l.label||l.key)?"":e)+"\r\n ",n.options.sortable&&l.sortable&&(t+='\r\n \r\n '+(null==(e=n.component.sort.isAsc?"↑":"↓")?"":e)+"\r\n \r\n "),t+="\r\n ",n.options.hideMenu||(t+='\r\n \r\n \r\n \r\n '),t+="\r\n \r\n
    \r\n Actions\r\n ',n.component.showDeleteAllBtn&&n.data.length&&(t+='\r\n \r\n '),t+="\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n ',n.component.showAddBtn&&!n.options.pdf&&(t+='\r\n
    +
    \r\n '),t+="\r\n
    \r\n
    \r\n
    "}},W={html:function(n){var e,t="";return Array.prototype.join,t+='\r\n"}},$={html:function(n){var e,t="";return Array.prototype.join,t+='\n\n ',n.eachRow((function(l){t+='\n \n ',n.component.enableRowSelect&&(t+='\n \n '),t+="\n ",l.forEach((function(l){t+="\n ",l.component.show&&(t+="\n \n "+(null==(e=n.instance.hook("format",l.component.key,l.dataValue,l.rowIndex))?"":e)+"\n \n "),t+="\n "})),t+="\n ",(n.component.showEditBtn||n.component.showDeleteBtn||n.component.showDeleteAllBtn)&&!n.options.pdf&&(t+='\n \n "),t+="\n \n "})),t+="\n\n
    \n \n \n
    \n \n ⋮\n
    \n
    \n"}},U={framework:"bootstrap4",templates:{bootstrap4:{transform(n,e){return e&&"class"===n&&this.cssClasses.hasOwnProperty(e.toString())?this.cssClasses[e.toString()]:e},defaultIconset:"fa",iconClass:(n,e,t)=>{if("fa"===n)switch(e){case"save":e="download";break;case"zoom-in":e="search-plus";break;case"zoom-out":e="search-minus";break;case"question-sign":e="question-circle";break;case"remove-circle":case"circle-xmark":e="times-circle-o";break;case"new-window":e="window-restore";break;case"move":e="arrows";break;case"time":e="clock-o";break;case"ok-sign":e="check-circle";break;case"remove-sign":e="times-circle"}return t?`${n} ${n}-${e} ${n}-spin`:`${n} ${n}-${e}`},cssClasses:{"border-default":"","formio-tab-panel-active":"active","formio-tab-link-active":"active","formio-tab-link-container-active":"active","formio-form-error":"formio-error-wrapper has-message","formio-form-alert":"alert alert-danger","formio-label-error":"","formio-input-error":"","formio-alert-danger":"alert alert-danger","formio-alert-success":"alert alert-success","formio-alert-warning":"alert alert-warning","formio-modal-cancel-button":"btn btn-danger formio-dialog-button","formio-modal-confirm-button":"btn btn-primary formio-dialog-button"},address:t,builder:{form:function(n){var e;return""+'
    \n
    \n '+(null==(e=n.sidebar)?"":e)+'\n
    \n
    \n '+(null==(e=n.form)?"":e)+"\n
    \n
    \n"}},builderComponent:l,builderComponents:{form:function(n){var e;return""+'
    \n '+(null==(e=n.html)?"":e)+"\n
    \n"}},builderEditForm:o,builderPlaceholder:{form:function(n){var e;return""+'\n '+(null==(e=n.t("Drag and Drop a form component"))?"":e)+"\n\n"}},builderSidebar:r,builderSidebarGroup:a,builderWizard:i,button:s,checkbox:u,columns:d,component:c,componentModal:p,components:{form:function(n){var e;return""+((null==(e=n.children.join(""))?"":e)+"\n")}},tableComponents:m,container:{form:function(n){var e;return""+'
    \n '+(null==(e=n.children)?"":e)+"\n
    \n"}},datagrid:b,day:f,dialog:{form:function(n){return'
    \n
    \n \n
    \n'}},editgrid:v,editgridTable:y,field:g,fieldset:h,file:w,html:x,icon:{form:function(n){var e;return""+''+(null==(e=n.content)?"":e)+"\n"}},input:k,label:C,loader:{form:function(n){return'
    \n
    \n
    \n
    \n
    \n'}},loading:{form:function(n){return"Loading...\n"}},map:{form:function(n){var e;return""+'
    \n'}},message:{form:function(n){var e;return""+'
    '+(null==(e=n.message)?"":e)+"
    \n"}},modaledit:{form:function(n){var e;return""+'
    \n \n \n \n
    '+(null==(e=n.content)?"":e)+"
    \n
    \n"}},modaldialog:{form:function(n){var e;return""+'
    \n
    \n
    \n \n '+(null==(e=n.t("Close"))?"":e)+'\n \n
    \n
    \n
    \n'}},modalPreview:{form:function(n){var e;return""+'
    \n\n\n '+(null==(e=n.previewText)?"":e)+'\n\n
    \n '+(null==(e=n.messages)?"":e)+"\n
    \n"}},multipleMasksInput:A,multiValueRow:I,multiValueTable:z,panel:j,pdf:{form:function(n){var e;return""+'
    \n\t\n\t\t\n\t\n\t\n\t\t\n\t\n
    \n '+(null==(e=n.submitButton)?"":e)+"\n
    \n"}},pdfBuilder:{form:function(n){var e;return""+'
    \n
    \n '+(null==(e=n.sidebar)?"":e)+'\n
    \n
    \n\t
    \n '+(null==(e=n.form)?"":e)+"\n
    \n
    \n"}},pdfBuilderUpload:{form:function(n){var e;return""+'
    \n

    '+(null==(e=n.t("Upload a PDF File"))?"":e)+'

    \n \n
    \n \n '+(null==(e=n.t("Drop pdf to start, or"))?"":e)+' '+(null==(e=n.t("browse"))?"":e)+'\n \n \n
    \n
    \n\n
    \n
    \n\n'}},radio:E,resourceAdd:{form:function(n){var e;return""+'\n \n \n \n \n \n \n \n \n
    \n '+(null==(e=n.element)?"":e)+'\n
    \n \n
    \n"}},select:P,selectOption:R,signature:_,survey:q,tab:B,table:S,tree:T,...L,webform:{form:function(n){var e;return""+'
    '+(null==(e=n.children)?"":e)+"
    \n"},builder:function(n){var e;return""+'
    '+(null==(e=n.t(n.component.title,{_userInput:!0}))?"":e)+"
    \n"}},well:{form:function(n){var e;return""+'
    \n
    \n '+(null==(e=n.children)?"":e)+"\n
    \n
    \n"}},wizard:K,wizardHeader:N,wizardHeaderClassic:M,wizardHeaderVertical:O,wizardNav:D,errorsList:H,alert:F,grid:V,pagination:{html:function(n){var e;return""+''}},columnMenu:W,tbody:$,paginationBottom:{html:function(n){return'
    \n \n
    '}}}}};return e.default})())); \ No newline at end of file diff --git a/dist/bootstrap5.js b/dist/bootstrap5.js index dac6cc9ee..a36402f78 100644 --- a/dist/bootstrap5.js +++ b/dist/bootstrap5.js @@ -1 +1 @@ -!function(n,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.bootstrap5=e():n.bootstrap5=e()}(self,(()=>(()=>{"use strict";var n={d:(e,l)=>{for(var t in l)n.o(l,t)&&!n.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:l[t]})},o:(n,e)=>Object.prototype.hasOwnProperty.call(n,e)},e={};n.d(e,{default:()=>V});const l={form:function(n){var e,l="";if(Array.prototype.join,n.mode.autocomplete){for(var t in l+='\n
    \n \n ',n.component.disableClearIcon||(l+='\n \n '),l+="\n
    \n"}return l+="\n",n.self.manualModeEnabled&&(l+='\n
    \n \n
    \n"),l+="\n",n.self.manualMode&&(l+='\n
    \n '+(null==(e=n.children)?"":e)+"\n
    \n"),l+"\n"},html:function(n){var e,l="";return Array.prototype.join,l+='
    ',n.displayValue?l+=null==(e=n.displayValue)?"":e:l+="-",l+"
    \n"}},t={form:function(n){var e,l="";return Array.prototype.join,l+='
    \n ',n.disableBuilderActions||(l+='\n
    \n \n \n
    \n ',n.design||(l+='\n \n \n
    \n \n \n \n ',!1!==n.editJson&&(l+='\n \n \n \n '),l+="\n "),l+='\n \n \n \n ',n.design&&"reviewpage"===n.childComponent.type||!n.editComponent||(l+='\n \n \n \n '),l+="\n \n "),l+"\n "+(null==(e=n.html)?"":e)+"\n\n"}},o={form:function(n){var e,l="";return Array.prototype.join,l+='
    \n
    \n

    '+(null==(e=n.t(n.componentInfo.title,{_userInput:!0}))?"":e)+" "+(null==(e=n.t("Component"))?"":e)+"

    \n
    \n ",n.helplinks&&(l+='\n \n "),l+='\n
    \n
    \n
    \n
    \n '+(null==(e=n.editForm)?"":e)+"\n
    \n ",n.showPreview||(l+='\n
    \n \n \n \n ",n.preview&&(l+='\n \n "),l+="\n
    \n "),l+="\n
    \n ",n.showPreview&&n.preview&&(l+='\n
    \n
    \n
    \n

    '+(null==(e=n.t("Preview"))?"":e)+'

    \n
    \n
    \n
    \n '+(null==(e=n.preview)?"":e)+"\n
    \n
    \n
    \n ",n.componentInfo.help&&(l+='\n
    \n '+(null==(e=n.t(n.componentInfo.help))?"":e)+"\n
    \n "),l+='\n
    \n \n \n \n \n
    \n
    \n "),l+"\n
    \n"}},a={form:function(n){var e,l="";return Array.prototype.join,l+='
    \n \n
    \n ',n.groups.forEach((function(n){l+="\n "+(null==(e=n)?"":e)+"\n "})),l+="\n
    \n
    \n"}},r={form:function(n){var e,l="";return Array.prototype.join,l+='
    \n
    \n
    \n \n '+(null==(e=n.t(n.group.title,{_userInput:!0}))?"":e)+'\n \n
    \n
    \n \n
    \n ',n.group.componentOrder.length||n.subgroups.length?(l+="\n ",!n.group.componentOrder||n.group.componentOrder.forEach((function(t){l+='\n \n ',n.group.components[t].icon&&(l+='\n \n '),l+="\n "+(null==(e=n.t(n.group.components[t].title,{_userInput:!0}))?"":e)+"\n \n "})),l+="\n "+(null==(e=n.subgroups.join(""))?"":e)+"\n "):l+="\n
    "+(null==(e=n.t("No Matches Found"))?"":e)+"
    \n ",l+="\n
    \n
    \n\n"}},i={form:function(n){var e,l="";return Array.prototype.join,l+='
    \n
    \n '+(null==(e=n.sidebar)?"":e)+'\n
    \n
    \n \n
    \n '+(null==(e=n.form)?"":e)+"\n
    \n
    \n
    \n"}},s={form:function(n){var e,l="";for(var t in Array.prototype.join,l+="<"+(null==(e=n.input.type)?"":e)+'\n ref="button"\n ',n.input.attr)l+="\n "+(null==(e=t)?"":e)+'="'+(null==(e=n.input.attr[t])?"":e)+'"\n ';return l+="\n ",n.component.description&&(l+='\n aria-describedby="d-'+(null==(e=n.instance.id)?"":e)+"-"+(null==(e=n.component.key)?"":e)+'"\n '),l+="\n>\n",n.component.leftIcon&&(l+=' '),l+="\n"+(null==(e=n.input.content)?"":e)+"\n",n.component.tooltip&&(l+='\n \n'),l+="\n",n.component.rightIcon&&(l+=' '),l+"\n\n
    \n \n
    \n'},html:function(n){return"\n"}},u={form:function(n){var e,l="";for(var t in Array.prototype.join,l+='
    \n <'+(null==(e=n.input.type)?"":e)+'\n ref="input"\n id="'+(null==(e=n.instance.id)?"":e)+"-"+(null==(e=n.component.key)?"":e)+'"\n aria-labelledby="l-'+(null==(e=n.instance.id)?"":e)+"-"+(null==(e=n.component.key)?"":e)+'"\n ',n.input.attr)l+="\n "+(null==(e=t)?"":e)+'="'+(null==(e=n.input.attr[t])?"":e)+'"\n ';return l+="\n ",n.checked&&(l+="checked=true"),l+='\n aria-required="'+(null==(e=n.component.validate.required)?"":e)+'"\n ',n.component.description&&(l+='\n aria-describedby="d-'+(null==(e=n.instance.id)?"":e)+"-"+(null==(e=n.component.key)?"":e)+'"\n '),l+="\n >\n ",n.self.labelIsHidden()||(l+='\n \n '+(null==(e=n.input.label)?"":e)+"\n \n "),l+="\n ",n.component.tooltip&&(l+='\n \n '),l+"\n
    \n"},html:function(n){var e,l="";return Array.prototype.join,l+='\n
    ',n.checked?l+="True":l+="False",l+"
    \n"}},d={form:function(n){var e,l="";return Array.prototype.join,n.component.columns.forEach((function(t,o){l+='\n
    \n '+(null==(e=n.columnComponents[o])?"":e)+"\n
    \n"})),l}},c={form:function(n){var e,l="";return Array.prototype.join,l+='
    \n ',n.visible&&(l+="\n "+(null==(e=n.children)?"":e)+'\n
    \n '),l+"\n
    \n"}},p={form:function(n){var e,l="";return Array.prototype.join,l+='
    \n
    \n
    \n
    \n
    '+(null==(e=n.t(n.component.label))?"":e)+(null==(e=n.self.isIE()?", dialog":"")?"":e)+"\n ",n.options.vpat?l+='\n \n ':l+='\n \n ',l+='\n
    \n ',n.visible&&(l+='\n
    '+(null==(e=n.children)?"":e)+"
    \n "),l+='\n
    \n ',n.options.vpat&&(l+='\n \n "),l+'\n \n
    \n
    \n
    \n \n
    \n
    \n'}},b={form:function(n){var e,l="";return Array.prototype.join,n.children.forEach((function(n){l+='\n \n '+(null==(e=n)?"":e)+"\n \n"})),l+="\n"}},m={form:function(n){var e,l="";return Array.prototype.join,l+='\n '+(null==(e=t.hideLabel?"":n.t(t.label||t.title,{_userInput:!0}))?"":e)+"\n ",t.tooltip&&(l+=' '),l+="\n \n "})),l+="\n ",n.hasExtraColumn&&(l+='\n \n "),l+="\n \n \n "),l+='\n \n ',n.rows.forEach((function(t,o){l+="\n ",n.hasGroups&&n.groups[o]&&(l+='\n \n '+(null==(e=n.groups[o].label)?"":e)+"\n \n "),l+='\n \n ',n.component.reorder&&(l+='\n \n '),l+="\n ",n.columns.forEach((function(o){l+='\n \n "})),l+="\n ",n.hasExtraColumn&&(l+="\n ",n.hasRemoveButtons&&(l+='\n \n '),l+="\n ",n.canAddColumn&&(l+='\n \n "),l+="\n "),l+="\n \n "})),l+="\n \n ",!n.builder&&n.hasAddButton&&n.hasBottomSubmit&&(l+='\n \n \n \n \n \n "),l+="\n
    \n '+(null==(e=n.t("Add/Remove"))?"":e)+"\n ",!n.builder&&n.hasAddButton&&n.hasTopSubmit&&(l+='\n \n "),l+="\n
    \n \n \n "+(null==(e=t[o.key])?"":e)+"\n \n \n \n '+(null==(e=n.placeholder)?"":e)+"\n
    \n \n
    \n"},html:function(n){var e,l="";return Array.prototype.join,l+='\n ',n.hasHeader&&(l+="\n \n \n ",n.columns.forEach((function(t){l+='\n \n "})),l+="\n \n \n "),l+="\n \n ",n.rows.forEach((function(t){l+="\n \n ",n.columns.forEach((function(o){l+='\n \n "})),l+="\n \n "})),l+="\n \n
    \n '+(null==(e=t.hideLabel?"":n.t(t.label||t.title,{_userInput:!0}))?"":e)+"\n ",t.tooltip&&(l+=' '),l+="\n
    \n '+(null==(e=t[o.key])?"":e)+"\n
    \n"}},f={form:function(n){var e,l="";return Array.prototype.join,l+='
    \n "),l+="\n
    "+(null==(e=n.day)?"":e)+"
    \n
    \n "),l+="\n ",n.showMonth&&(l+='\n
    \n ',n.component.hideInputLabels||(l+='\n
    \n "),l+="\n ",!n.dayFirst&&n.showDay&&(l+='\n
    \n ',n.component.hideInputLabels||(l+='\n
    \n "),l+="\n ",n.showYear&&(l+='\n
    \n ',n.component.hideInputLabels||(l+='\n
    \n "),l+'\n\n\n'}},v={form:function(n){var e,l="";return Array.prototype.join,l+='
      \n ',n.header&&(l+='\n
    • \n '+(null==(e=n.header)?"":e)+"\n
    • \n "),l+="\n ",n.rows.forEach((function(t,o){l+='\n
    • \n '+(null==(e=t)?"":e)+"\n ",n.openRows[o]&&!n.readOnly&&(l+='\n
      \n \n ",n.component.removeRow&&(l+='\n \n "),l+="\n
      \n "),l+='\n
      \n
      \n '+(null==(e=n.errors[o])?"":e)+"\n
      \n
      \n
    • \n "})),l+="\n ",n.footer&&(l+='\n \n "),l+="\n
    \n",!n.readOnly&&n.hasAddButton&&(l+='\n\n"),l+="\n"},html:function(n){var e,l="";return Array.prototype.join,l+='
      \n ',n.header&&(l+='\n
    • \n '+(null==(e=n.header)?"":e)+"\n
    • \n "),l+="\n ",n.rows.forEach((function(t,o){l+='\n
    • \n '+(null==(e=t)?"":e)+"\n ",n.openRows[o]&&!n.readOnly&&(l+='\n
      \n \n ",n.component.removeRow&&(l+='\n \n "),l+="\n
      \n "),l+='\n
      \n
      \n '+(null==(e=n.errors[o])?"":e)+"\n
      \n
      \n
    • \n "})),l+="\n ",n.footer&&(l+='\n \n "),l+="\n
    \n"}},y={form:function(n){var e,l="";return Array.prototype.join,l+='
    \n
    \n \n ',n.header&&(l+='\n \n '+(null==(e=n.header)?"":e)+"\n \n "),l+='\n \n ',n.rows.forEach((function(t,o){l+='\n \n '+(null==(e=t)?"":e)+"\n ",n.openRows[o]&&!n.readOnly&&(l+='\n \n "),l+="\n ",n.errors[o]&&(l+='\n \n "),l+="\n \n "})),l+="\n \n ",n.footer&&(l+="\n \n \n "+(null==(e=n.footer)?"":e)+"\n \n \n "),l+="\n
    \n
    \n \n ",n.component.removeRow&&(l+='\n \n "),l+="\n
    \n
    \n
    \n
    \n '+(null==(e=n.errors[o])?"":e)+"\n
    \n
    \n
    \n
    \n
    \n",!n.readOnly&&n.hasAddButton&&(l+='\n\n"),l+="\n"},html:function(n){var e,l="";return Array.prototype.join,l+='
    \n
    \n \n ',n.header&&(l+='\n \n '+(null==(e=n.header)?"":e)+"\n \n "),l+='\n \n ',n.rows.forEach((function(t,o){l+='\n \n '+(null==(e=t)?"":e)+"\n ",n.openRows[o]&&!n.readOnly&&(l+='\n \n "),l+="\n ",n.errors[o]&&(l+='\n \n "),l+="\n \n "})),l+="\n \n ",n.footer&&(l+="\n \n \n "+(null==(e=n.footer)?"":e)+"\n \n \n "),l+="\n
    \n
    \n \n ",n.component.removeRow&&(l+='\n \n "),l+="\n
    \n
    \n
    \n
    \n '+(null==(e=n.errors[o])?"":e)+"\n
    \n
    \n
    \n
    \n
    \n"}},g={form:function(n){var e,l="";return Array.prototype.join,n.label.hidden||"bottom"===n.label.labelPosition||(l+="\n "+(null==(e=n.labelMarkup)?"":e)+"\n"),l+="\n\n",n.label.hidden&&n.label.className&&n.component.validate.required&&(l+='\n \n'),l+="\n\n"+(null==(e=n.element)?"":e)+"\n\n",n.label.hidden||"bottom"!==n.label.labelPosition||(l+="\n "+(null==(e=n.labelMarkup)?"":e)+"\n"),l+="\n",n.component.description&&(l+='\n
    '+(null==(e=n.t(n.component.description,{_userInput:!0}))?"":e)+"
    \n"),l+"\n"},align:function(n){var e,l="";return Array.prototype.join,l+='
    \n ',n.label.hidden||(l+='\n
    \n '+(null==(e=n.labelMarkup)?"":e)+"\n
    \n "),l+="\n\n ",n.label.hidden&&n.label.className&&n.component.validate.required&&(l+='\n
    \n \n
    \n '),l+='\n\n
    \n '+(null==(e=n.element)?"":e)+"\n
    \n
    \n\n",n.component.description&&(l+='\n
    '+(null==(e=n.t(n.component.description,{_userInput:!0}))?"":e)+"
    \n"),l+"\n"}},h={form:function(n){var e,l="";return Array.prototype.join,l+="
    \n ",n.component.legend&&(l+='\n \n '+(null==(e=n.t(n.component.legend,{_userInput:!0}))?"":e)+"\n ",n.component.tooltip&&(l+='\n \n '),l+="\n \n "),l+="\n ",n.collapsed||(l+='\n
    \n '+(null==(e=n.children)?"":e)+"\n
    \n "),l+"\n
    \n"}},w={form:function(n){var e,l="";return Array.prototype.join,n.options.vpat&&(l+='\n \n'),l+="\n",n.self.imageUpload?(l+="\n
    \n ",n.files.forEach((function(t){l+='\n
    \n \n '+(null==(e=t.originalName||t.name)?\n ',n.disabled||(l+='\n \n '),l+="\n \n
    \n "})),l+="\n ",n.filesToUpload.forEach((function(t){l+="\n ","progress"===t.status?l+='\n
    '+(null==(e=n.fileSize(t.size))?"":e)+'
    \n
    \n
    \n '+(null==(e=t.progress)?"":e)+"% "+(null==(e=n.t("Complete"))?"":e)+"\n
    \n
    \n ":l+='\n
    '+(null==(e=n.t(t.message))?"":e)+"
    \n ",l+="\n "})),l+="\n
    \n"):(l+="\n ",n.options.vpat&&(l+="\n
    "+(null==(e=n.component.filePattern&&"*"!==n.component.filePattern?n.t("Allowed file types: ")+n.component.filePattern:"Any file types are allowed")?"":e)+"
    \n "),l+='\n
      \n \n ",n.files.forEach((function(t){l+='\n
    • \n
      \n
      \n ',n.component.uploadOnly?l+="\n "+(null==(e=t.originalName||t.name)?"":e)+"\n ":l+='\n \n '+(null==(e=n.t("Press to open "))?"":e)+""+(null==(e=t.originalName||t.name)?"":e)+"\n \n ",l+='\n
      \n
      '+(null==(e=n.fileSize(t.size))?"":e)+"
      \n ",n.self.hasTypes&&!n.disabled&&(l+='\n
      \n \n
      \n "),l+="\n ",n.self.hasTypes&&n.disabled&&(l+='\n
      '+(null==(e=t.fileType)?"":e)+"
      \n "),l+="\n ",n.disabled||(l+='\n
      \n '),l+="\n
      \n
    • \n "})),l+="\n ",n.filesToDelete.forEach((function(t){l+='\n
    • \n
      \n
      \n
      '+(null==(e=t.originalName||t.name)?"":e)+'
      \n
      '+(null==(e=n.t(t.message))?"":e)+'
      \n
      \n
      '+(null==(e=n.fileSize(t.size))?"":e)+"
      \n ",n.self.hasTypes&&(l+='\n
      \n \n
      \n "),l+="\n ",n.isSyncing||"success"===t.status||(l+='\n
      \n '),l+="\n
      \n
    • \n "})),l+="\n ",n.filesToUpload.forEach((function(t){l+='\n
    • \n
      \n
      \n
      '+(null==(e=t.originalName||t.name)?"":e)+"
      \n ","progress"===t.status?l+='\n
      \n
      \n '+(null==(e=t.progress)?"":e)+"% "+(null==(e=n.t("Complete"))?"":e)+"\n
      \n
      \n ":l+='\n
      '+(null==(e=n.t(t.message))?"":e)+"
      \n ",l+='\n
      \n
      '+(null==(e=n.fileSize(t.size))?"":e)+"
      \n ",n.self.hasTypes&&(l+='\n
      \n \n
      \n "),l+="\n ","progress"===t.status?l+='\n
      \n ':n.isSyncing||"success"===t.status||(l+='\n
      \n '),l+="\n
      \n
    • \n "})),l+="\n
    \n"),l+="\n",n.disabled||!n.component.multiple&&n.files.length||(l+="\n ",n.self.useWebViewCamera?l+='\n
    \n \n \n
    \n ":n.self.cameraMode?l+='\n
    \n \n
    \n \n \n ":(l+='\n \n '),l+="\n"),l+="\n",n.component.storage&&!n.support.hasWarning||(l+='\n
    \n ',n.component.storage||(l+="\n

    "+(null==(e=n.t("No storage has been set for this field. File uploads are disabled until storage is set up."))?"":e)+"

    \n "),l+="\n ",n.support.filereader||(l+="\n

    "+(null==(e=n.t("File API & FileReader API not supported."))?"":e)+"

    \n "),l+="\n ",n.support.formdata||(l+="\n

    "+(null==(e=n.t("XHR2's FormData is not supported."))?"":e)+"

    \n "),l+="\n ",n.support.progress||(l+="\n

    "+(null==(e=n.t("XHR2's upload progress isn't supported."))?"":e)+"

    \n "),l+="\n
    \n"),l+="\n"}},k={form:function(n){var e,l="";return Array.prototype.join,l+="<"+(null==(e=n.tag)?"":e)+' class="formio-component-htmlelement '+(null==(e=n.component.className)?"":e)+'" ref="html"\n ',n.attrs.forEach((function(n){l+="\n "+(null==(e=n.attr)?"":e)+'="'+(null==(e=n.value)?"":e)+'"\n '})),l+="\n>"+(null==(e=n.builder?n.content:n.t(n.content))?"":e),n.singleTags&&-1!==n.singleTags.indexOf(n.tag)||(l+=""),l+="\n"}},x={form:function(n){var e,l="";if(Array.prototype.join,(n.prefix||n.suffix)&&(l+='\n
    \n '),l+="\n ",n.prefix&&(l+='\n
    \n ',n.prefix instanceof HTMLElement?l+="\n "+(null==(e=n.t(n.prefix.outerHTML,{_userInput:!0}))?"":e)+"\n ":l+="\n "+(null==(e=n.t(n.prefix,{_userInput:!0}))?"":e)+"\n ",l+="\n
    \n "),l+="\n ",n.options.floatingLabels&&(l+='\n
    \n '),l+="\n ",!n.component.editor&&!n.component.wysiwyg){for(var t in l+="\n <"+(null==(e=n.input.type)?"":e)+'\n ref="'+(null==(e=n.input.ref?n.input.ref:"input")?"":e)+'"\n ',n.input.attr)l+="\n "+(null==(e=t)?"":e)+'="'+(null==(e=n.input.attr[t])?"":e)+'"\n ';l+='\n id="'+(null==(e=n.instance.id)?"":e)+"-"+(null==(e=n.component.key)?"":e)+'"\n aria-labelledby="l-'+(null==(e=n.instance.id)?"":e)+"-"+(null==(e=n.component.key)?"":e)+" ",n.component.description&&(l+="d-"+(null==(e=n.instance.id)?"":e)+"-"+(null==(e=n.component.key)?"":e)),l+='"\n aria-required="'+(null==(e="input"!==n.input.ref&&n.input.ref?n.component.fields&&n.component.fields[n.input.ref]&&n.component.fields[n.input.ref].required||!1:n.component.validate.required)?"":e)+'"\n >'+(null==(e=n.input.content)?"":e)+"\n ",n.options.floatingLabels&&(l+='\n \n "),l+="\n ",n.hasValueMaskInput&&(l+='\n \n '),l+="\n"}return l+="\n",(n.component.editor||n.component.wysiwyg)&&(l+='\n
    \n'),l+="\n","datetime"===n.component.type&&(l+='\n\n'),l+="\n",n.suffix&&(l+='\n
    \n ',n.suffix instanceof HTMLElement?l+="\n "+(null==(e=n.t(n.suffix.outerHTML,{_userInput:!0}))?"":e)+"\n ":l+="\n "+(null==(e=n.t(n.suffix,{_userInput:!0}))?"":e)+"\n ",l+="\n
    \n"),l+="\n",(n.prefix||n.suffix||n.options.floatingLabels)&&(l+="\n
    \n"),l+="\n",(n.component.showCharCount||n.component.showWordCount)&&(l+='\n
    \n ',n.component.showCharCount&&(l+='\n \n '),l+="\n ",n.component.showWordCount&&(l+='\n \n '),l+="\n
    \n"),l+"\n"},html:function(n){var e,l="";return Array.prototype.join,l+='
    ',n.value?l+=null==(e=n.value)?"":e:l+="-",l+"
    \n"}},C={form:function(n){var e,l="";return Array.prototype.join,l+='\n '+(null==(e=n.t(n.component.label,{_userInput:!0}))?"":e)+"\n ","number"!==n.component.type&&"phoneNumber"!==n.component.type&&"currency"!==n.component.type||(l+='\n , '+(null==(e=n.t("numeric only"))?"":e)+",\n "),l+="\n ",n.component.tooltip&&(l+='\n \n '),l+"\n\n"}},A={form:function(n){var e,l="";for(var t in Array.prototype.join,l+='\n '+(null==(e=n.label)?"":e)+"\n "})),l+='\n \n \n ",n.disabled||(l+='\n \n \n \n '),l+"\n\n"}},j={form:function(n){var e,l="";return Array.prototype.join,l+='\n \n '+(null==(e=n.rows)?"":e)+"\n ",n.disabled||(l+='\n \n \n \n "),l+"\n \n
    \n \n
    \n"}},z={form:function(n){var e,l="";return Array.prototype.join,l+='
    \n ',(!n.component.hideLabel||n.builder||n.component.collapsible||n.component.tooltip)&&(l+='\n
    \n \n ',n.component.collapsible&&(l+='\n \n '),l+="\n ",n.component.hideLabel&&!n.builder||(l+="\n "+(null==(e=n.t(n.component.title,{_userInput:!0}))?"":e)+"\n "),l+="\n ",n.component.tooltip&&(l+='\n \n '),l+="\n \n
    \n "),l+="\n ",n.collapsed&&!n.builder||(l+='\n
    \n '+(null==(e=n.children)?"":e)+"\n
    \n "),l+"\n
    \n"}},E={form:function(n){var e,l="";return Array.prototype.join,l+='\n ',["left","top"].includes(n.component.optionsLabelPosition)&&(l+='\n \n "),l+="\n <"+(null==(e=n.input.type)?"":e)+'\n ref="input"\n ',n.input.attr)l+="\n "+(null==(e=a)?"":e)+'="'+(null==(e=n.input.attr[a])?"":e)+'"\n ';l+='\n value="'+(null==(e=t.value)?"":e)+'"\n ',n.value&&(n.value===t.value||"object"==typeof n.value&&n.value.hasOwnProperty(t.value)&&n.value[t.value])&&(l+="\n checked=true\n "),l+="\n ",t.disabled&&(l+="\n disabled=true\n "),l+='\n id="'+(null==(e=n.instance.root&&n.instance.root.id)?"":e)+"-"+(null==(e=n.id)?"":e)+"-"+(null==(e=n.row)?"":e)+"-"+(null==(e="object"==typeof t.value?t.value+"-"+o:t.value)?"":e)+'"\n role="'+(null==(e="selectboxes"===n.component.type?"checkbox":"radio")?"":e)+'"\n >\n ',n.component.optionsLabelPosition&&!["right","bottom"].includes(n.component.optionsLabelPosition)||(l+='\n \n "),l+="\n
    \n "})),l+="\n\n"},html:function(n){var e,l="";return Array.prototype.join,(l+='
    \n ')+"\n "+(null==(e=n.values.filter((function(e){return n.value===e.value||"object"==typeof n.value&&n.value.hasOwnProperty(e.value)&&n.value[e.value]})).map((function(e){return n.t(e.label,{_userInput:!0})})).join(", "))?"":e)+"\n
    \n"}},_={form:function(n){var e,l="";for(var t in Array.prototype.join,l+=''+(null==(e=n.selectOptions)?"":e)+'\n\n'},html:function(n){var e,l="";return Array.prototype.join,l+='
    ',n.value?l+=null==(e=n.self.itemValueForHTMLMode(n.value))?"":e:l+="-",l+"
    \n"}},P={form:function(n){var e,l="";for(var t in Array.prototype.join,l+="\n"},html:function(n){var e,l="";return Array.prototype.join,n.selected&&(l+=null==(e=n.t(n.option.label,{_userInput:!0}))?"":e),l+"\n"}},q={form:function(n){var e,l="";return Array.prototype.join,l+=(null==(e=n.element)?"":e)+'\n\n \n \n \n \n ',n.required&&(l+='\n \n '),l+='\n \n\n',n.component.footer&&(l+='\n \n"),l+"\n"},html:function(n){return'\n'}},R={form:function(n){var e,l="";return Array.prototype.join,l+='\n \n \n \n ',n.component.values.forEach((function(t){l+='\n \n "})),l+="\n \n \n \n ",n.component.questions.forEach((function(t){l+="\n \n \n ",n.component.values.forEach((function(o){l+='\n \n '})),l+="\n \n "})),l+="\n \n
    \n '+(null==(e=n.t(t.label,{_userInput:!0}))?"":e)+"\n ",t.tooltip&&(l+='\n \n '),l+="\n
    \n "+(null==(e=n.t(t.label))?"":e)+"\n ",t.tooltip&&(l+='\n \n '),l+="\n \n \n
    \n"},html:function(n){var e,l="";return Array.prototype.join,l+='\n \n ',n.component.questions.forEach((function(t){l+="\n \n \n \n \n "})),l+="\n \n
    "+(null==(e=n.t(t.label))?"":e)+"\n ",n.component.values.forEach((function(o){l+="\n ",n.value&&n.value.hasOwnProperty(t.value)&&n.value[t.value]===o.value&&(l+="\n "+(null==(e=n.t(o.label))?"":e)+"\n "),l+="\n "})),l+="\n
    \n"}},L={flat:function(n){var e,l="";return Array.prototype.join,n.component.components.forEach((function(t,o){l+='\n
    \n
    \n

    '+(null==(e=n.t(t.label,{_userInput:!0}))?"":e)+'

    \n
    \n \n '+(null==(e=n.tabComponents[o])?"":e)+"\n
    \n \n"})),l+="\n"},form:function(n){var e,l="";return Array.prototype.join,l+='
    \n
    \n \n
    \n ",n.component.components.forEach((function(t,o){l+='\n \n '+(null==(e=n.tabComponents[o])?"":e)+"\n
    \n "})),l+="\n\n"}},K={form:function(n){var e,l="";return Array.prototype.join,l+='\n \n ",n.component.header&&n.component.header.length>0&&(l+="\n \n \n ",n.component.header.forEach((function(t){l+="\n \n "})),l+="\n \n \n "),l+="\n \n ",n.tableComponents.forEach((function(t,o){l+='\n \n ',t.forEach((function(t,a){l+='\n \n "})),l+="\n \n
    '+(null==(e=n.t(n.component.label))?"":e)+"
    "+(null==(e=n.t(t))?"":e)+"
    \n "})),l+="\n
    \n"}},N={form:function(n){var e,l="";return Array.prototype.join,n.node.isRoot?l+='\n
    \n':l+='\n
  • \n',l+="\n ",n.content&&(l+='\n
    \n '+(null==(e=n.content)?"":e)+"\n
    \n "),l+="\n ",n.childNodes&&n.childNodes.length&&(l+='\n
      \n '+(null==(e=n.childNodes.join(""))?"":e)+"\n
    \n "),l+="\n",n.node.isRoot?l+="\n
  • \n":l+="\n \n",l+"\n"}},T={treeView:{form:function(n){var e,l="";return Array.prototype.join,l+='
    \n ',n.values.forEach((function(n){l+='\n
    \n '+(null==(e=n)?"":e)+"\n
    \n "})),l+='\n
    \n
    \n ',n.node.hasChildren&&(l+='\n \n "),l+="\n ",n.readOnly||(l+='\n \n \n \n ",n.node.revertAvailable&&(l+='\n \n "),l+="\n "),l+="\n
    \n
    \n
    \n"}},treeEdit:{form:function(n){var e,l="";return Array.prototype.join,l+='
    \n
    '+(null==(e=n.children)?"":e)+"
    \n ",n.readOnly||(l+='\n
    \n \n \n
    \n "),l+"\n
    \n"}}},S={form:function(n){var e,l="";return Array.prototype.join,l+='
    \n
    \n ',"wizardHeaderVertical"===n.wizardHeaderType?(l+='\n
    \n ',"right"!==n.wizardHeaderLocation&&(l+='\n
    \n '+(null==(e=n.wizardHeader)?"":e)+"\n
    \n "),l+='\n
    \n '+(null==(e=n.components)?"":e)+"\n
    \n ","right"===n.wizardHeaderLocation&&(l+='\n
    \n '+(null==(e=n.wizardHeader)?"":e)+"\n
    \n "),l+='\n
    \n
    \n '+(null==(e=n.wizardNav)?"":e)+"\n
    \n "):l+="\n "+(null==(e=n.wizardHeader)?"":e)+'\n
    \n '+(null==(e=n.components)?"":e)+"\n
    \n "+(null==(e=n.wizardNav)?"":e)+"\n ",l+"\n
    \n
    \n"},builder:function(n){var e;return""+'
    '+(null==(e=n.t(n.component.title,{_userInput:!0}))?"":e)+"
    \n"}},B={form:function(n){var e,l="";return Array.prototype.join,l+='\n"}},M={form:function(n){var e,l="";return Array.prototype.join,l+='\n"}},O={form:function(n){var e,l="";return Array.prototype.join,l+='\n"}},H={form:function(n){var e,l="";return Array.prototype.join,l+='
      \n ',n.buttonOrder.forEach((function(t){l+="\n ","cancel"===t&&n.buttons.cancel&&(l+='\n
    • \n \n
    • \n "),l+="\n ","previous"===t&&n.buttons.previous&&(l+='\n
    • \n \n
    • \n "),l+="\n ","next"===t&&n.buttons.next&&(l+='\n
    • \n \n
    • \n "),l+="\n ","submit"===t&&n.buttons.submit&&(l+="\n
    • \n ",n.disableWizardSubmit?l+='\n \n ":l+='\n \n ",l+="\n
    • \n "),l+="\n "})),l+="\n
    \n"}},F={form:function(n){var e,l="";return Array.prototype.join,l+="

    "+(null==(e=n.t("error"))?"":e)+"\n ",n.options.vpat&&(l+='\n \n '),l+="\n

    \n
      \n ",n.errors.forEach((function(n){l+='\n
    • \n \n '+(null==(e=n.message)?"":e)+"\n \n
    • \n "})),l+="\n
    \n"}},D={form:function(n){var e,l="";for(var t in Array.prototype.join,l+="'+(null==(e=n.t("errorListHotkey"))?"":e)+"\n "),l+"\n\n"}},V={framework:"bootstrap5",templates:{bootstrap5:{transform(n,e,l){if(!e)return e;if("class"===n){let n="";return"form-group"===e&&(n="mb-2 ",l&&l.component.block&&(n+="d-grid ")),`${n}${this.cssClasses.hasOwnProperty(e.toString())?this.cssClasses[e.toString()]:e}`}return e},defaultIconset:"bi",iconClass:(n,e,l)=>{let t=e;if("bi"===n)switch(e){case"cog":t="gear";break;case"copy":t="back";break;case"bars":t="list";break;case"remove":t="trash";break;case"font":t="type";break;case"hashtag":t="hash";break;case"th-list":t="menu-button-wide";break;case"dot-circle-o":t="ui-radios";break;case"plus-square-o":t="plus-square";break;case"minus-square-o":t="dash-square";break;case"plus-square":t="ui-checks";break;case"phone-square":t="phone";break;case"home":t="house";break;case"clock-o":case"time":t="clock";break;case"usd":t="currency-dollar";break;case"html5":t="file-richtext";break;case"pencil-square-o":t="pencil-square";break;case"columns":t="layout-three-columns";break;case"list-alt":t="window";break;case"th-large":t="grid-fill";break;case"folder-o":t="folder";break;case"square-o":t="square";break;case"user-secret":t="person-fill-slash";break;case"folder-open":case"folder-open":t="folder2-open";break;case"th":t="grid-3x3-gap-fill";break;case"tasks":t="view-stacked";break;case"indent":t="text-indent-left";break;case"refresh":t="arrow-repeat";break;case"files-o":t="files";break;case"wpforms":t="window-stack";break;case"cube":t="box";break;case"cubes":t="boxes";break;case"check-square-o":t="check-square";break;case"plus":t="plus-lg";break;case"question-sign":e="question-circle",t="question-circle";break;case"remove-circle":case"circle-xmark":t="x-circle";break;case"new-window":e="window-restore",t="window-plus";break;case"move":e="arrows",t="arrows-move";break;case"edit":t="pencil";break;case"video":t="camera-video";break;case"microphone":t="mic";break;case"check-circle":t="check-circle-fill";break;case"times-circle":t="x-circle-fill";break;case"pencil":t="pencil-fill";break;case"minus":t="dash";break;case"circle":t="circle-fill";break;case"search-plus":t="zoom-in";break;case"search-minus":t="zoom-out";break;case"hand-paper-o":t="hand-index";break;case"undo":t="arrow-counterclockwise";break;case"repeat":t="arrow-clockwise"}return l?"spinner-border spinner-border-sm":`${n} ${"circle-xmark"===t?`${n}-${t} ${n}-remove-circle`:`${n}-${t}`}`},cssClasses:{"border-default":"","formio-tab-panel-active":"active","formio-tab-link-active":"active","formio-tab-link-container-active":"active","formio-form-error":"formio-error-wrapper has-message","formio-form-alert":"alert alert-danger","formio-label-error":"","formio-input-error":"","formio-alert-danger":"alert alert-danger","formio-alert-success":"alert alert-success","formio-alert-warning":"alert alert-warning","formio-modal-cancel-button":"btn btn-danger formio-dialog-button","formio-modal-confirm-button":"btn btn-primary formio-dialog-button","form-group":"formio-form-group"},address:l,builder:{form:function(n){var e;return""+'
    \n
    \n '+(null==(e=n.sidebar)?"":e)+'\n
    \n
    \n '+(null==(e=n.form)?"":e)+"\n
    \n
    \n"}},builderComponent:t,builderComponents:{form:function(n){var e;return""+'
    \n '+(null==(e=n.html)?"":e)+"\n
    \n"}},builderEditForm:o,builderPlaceholder:{form:function(n){var e;return""+'\n '+(null==(e=n.t("Drag and Drop a form component"))?"":e)+"\n\n"}},builderSidebar:a,builderSidebarGroup:r,builderWizard:i,button:s,checkbox:u,columns:d,component:c,componentModal:p,components:{form:function(n){var e;return""+((null==(e=n.children.join(""))?"":e)+"\n")}},tableComponents:b,container:{form:function(n){var e;return""+'
    \n '+(null==(e=n.children)?"":e)+"\n
    \n"}},datagrid:m,day:f,dialog:{form:function(n){return'
    \n
    \n \n
    \n'}},editgrid:v,editgridTable:y,field:g,fieldset:h,file:w,html:k,icon:{form:function(n){var e;return""+''+(null==(e=n.content)?"":e)+"\n"}},input:x,label:C,loader:{form:function(n){return'
    \n
    \n
    \n
    \n
    \n'}},loading:{form:function(n){return"Loading...\n"}},map:{form:function(n){var e;return""+'
    \n'}},message:{form:function(n){var e;return""+'
    '+(null==(e=n.message)?"":e)+"
    \n"}},modaledit:{form:function(n){var e;return""+'
    \n \n \n \n
    '+(null==(e=n.content)?"":e)+"
    \n
    \n"}},modaldialog:{form:function(n){var e;return""+'
    \n
    \n
    \n \n '+(null==(e=n.t("Close"))?"":e)+'\n \n
    \n
    \n
    \n'}},modalPreview:{form:function(n){var e;return""+'
    \n\n\n '+(null==(e=n.previewText)?"":e)+'\n\n
    \n '+(null==(e=n.messages)?"":e)+"\n
    \n"}},multipleMasksInput:A,multiValueRow:I,multiValueTable:j,panel:z,pdf:{form:function(n){var e;return""+'
    \n\t\n\t\t\n\t\n\t\n\t\t\n\t\n
    \n '+(null==(e=n.submitButton)?"":e)+"\n
    \n"}},pdfBuilder:{form:function(n){var e;return""+'
    \n
    \n '+(null==(e=n.sidebar)?"":e)+'\n
    \n
    \n\t
    \n '+(null==(e=n.form)?"":e)+"\n
    \n
    \n"}},pdfBuilderUpload:{form:function(n){var e;return""+'
    \n

    '+(null==(e=n.t("Upload a PDF File"))?"":e)+'

    \n \n
    \n \n '+(null==(e=n.t("Drop pdf to start, or"))?"":e)+' '+(null==(e=n.t("browse"))?"":e)+'\n \n \n
    \n
    \n\n
    \n
    \n\n'}},radio:E,resourceAdd:{form:function(n){var e;return""+'\n \n \n \n \n \n \n \n \n
    \n '+(null==(e=n.element)?"":e)+'\n
    \n \n
    \n"}},select:_,selectOption:P,signature:q,survey:R,tab:L,table:K,tree:N,...T,webform:{form:function(n){var e;return""+'
    '+(null==(e=n.children)?"":e)+"
    \n"},builder:function(n){var e;return""+'
    '+(null==(e=n.t(n.component.title,{_userInput:!0}))?"":e)+"
    \n"}},well:{form:function(n){var e;return""+'
    \n
    \n '+(null==(e=n.children)?"":e)+"\n
    \n
    \n"}},wizard:S,wizardHeader:B,wizardHeaderClassic:M,wizardHeaderVertical:O,wizardNav:H,errorsList:F,alert:D}}};return e.default})())); \ No newline at end of file +!function(n,r){"object"==typeof exports&&"object"==typeof module?module.exports=r():"function"==typeof define&&define.amd?define([],r):"object"==typeof exports?exports.bootstrap5=r():n.bootstrap5=r()}(self,(()=>(()=>{"use strict";var n={d:(r,e)=>{for(var l in e)n.o(e,l)&&!n.o(r,l)&&Object.defineProperty(r,l,{enumerable:!0,get:e[l]})},o:(n,r)=>Object.prototype.hasOwnProperty.call(n,r)},r={};n.d(r,{default:()=>V});const e={form:function(n){var r,e="";if(Array.prototype.join,n.mode.autocomplete){for(var l in e+='\r\n
    \r\n \r\n ',n.component.disableClearIcon||(e+='\r\n \r\n '),e+="\r\n
    \r\n"}return e+="\r\n",n.self.manualModeEnabled&&(e+='\r\n
    \r\n \r\n
    \r\n"),e+="\r\n",n.self.manualMode&&(e+='\r\n
    \r\n '+(null==(r=n.children)?"":r)+"\r\n
    \r\n"),e+"\r\n"},html:function(n){var r,e="";return Array.prototype.join,e+='
    ',n.displayValue?e+=null==(r=n.displayValue)?"":r:e+="-",e+"
    \r\n"}},l={form:function(n){var r,e="";return Array.prototype.join,e+='
    \r\n ',n.disableBuilderActions||(e+='\r\n
    \r\n \r\n \r\n
    \r\n ',n.design||(e+='\r\n \r\n \r\n
    \r\n \r\n \r\n \r\n ',!1!==n.editJson&&(e+='\r\n \r\n \r\n \r\n '),e+="\r\n "),e+='\r\n \r\n \r\n \r\n ',n.design&&"reviewpage"===n.childComponent.type||!n.editComponent||(e+='\r\n \r\n \r\n \r\n '),e+="\r\n \r\n "),e+"\r\n "+(null==(r=n.html)?"":r)+"\r\n\r\n"}},t={form:function(n){var r,e="";return Array.prototype.join,e+='
    \r\n
    \r\n

    '+(null==(r=n.t(n.componentInfo.title,{_userInput:!0}))?"":r)+" "+(null==(r=n.t("Component"))?"":r)+"

    \r\n
    \r\n ",n.helplinks&&(e+='\r\n \r\n "),e+='\r\n
    \r\n
    \r\n
    \r\n
    \r\n '+(null==(r=n.editForm)?"":r)+"\r\n
    \r\n ",n.showPreview||(e+='\r\n
    \r\n \r\n \r\n \r\n ",n.preview&&(e+='\r\n \r\n "),e+="\r\n
    \r\n "),e+="\r\n
    \r\n ",n.showPreview&&n.preview&&(e+='\r\n
    \r\n
    \r\n
    \r\n

    '+(null==(r=n.t("Preview"))?"":r)+'

    \r\n
    \r\n
    \r\n
    \r\n '+(null==(r=n.preview)?"":r)+"\r\n
    \r\n
    \r\n
    \r\n ",n.componentInfo.help&&(e+='\r\n
    \r\n '+(null==(r=n.t(n.componentInfo.help))?"":r)+"\r\n
    \r\n "),e+='\r\n
    \r\n \r\n \r\n \r\n \r\n
    \r\n
    \r\n "),e+"\r\n
    \r\n"}},o={form:function(n){var r,e="";return Array.prototype.join,e+='
    \r\n \r\n
    \r\n ',n.groups.forEach((function(n){e+="\r\n "+(null==(r=n)?"":r)+"\r\n "})),e+="\r\n
    \r\n
    \r\n"}},a={form:function(n){var r,e="";return Array.prototype.join,e+='
    \r\n
    \r\n
    \r\n \r\n '+(null==(r=n.t(n.group.title,{_userInput:!0}))?"":r)+'\r\n \r\n
    \r\n
    \r\n \r\n
    \r\n ',n.group.componentOrder.length||n.subgroups.length?(e+="\r\n ",!n.group.componentOrder||n.group.componentOrder.forEach((function(l){e+='\r\n \r\n ',n.group.components[l].icon&&(e+='\r\n \r\n '),e+="\r\n "+(null==(r=n.t(n.group.components[l].title,{_userInput:!0}))?"":r)+"\r\n \r\n "})),e+="\r\n "+(null==(r=n.subgroups.join(""))?"":r)+"\r\n "):e+="\r\n
    "+(null==(r=n.t("No Matches Found"))?"":r)+"
    \r\n ",e+="\r\n
    \r\n
    \r\n\r\n"}},i={form:function(n){var r,e="";return Array.prototype.join,e+='
    \r\n
    \r\n '+(null==(r=n.sidebar)?"":r)+'\r\n
    \r\n
    \r\n \r\n
    \r\n '+(null==(r=n.form)?"":r)+"\r\n
    \r\n
    \r\n
    \r\n"}},s={form:function(n){var r,e="";for(var l in Array.prototype.join,e+="<"+(null==(r=n.input.type)?"":r)+'\r\n ref="button"\r\n ',n.input.attr)e+="\r\n "+(null==(r=l)?"":r)+'="'+(null==(r=n.input.attr[l])?"":r)+'"\r\n ';return e+="\r\n ",n.component.description&&(e+='\r\n aria-describedby="d-'+(null==(r=n.instance.id)?"":r)+"-"+(null==(r=n.component.key)?"":r)+'"\r\n '),e+="\r\n>\r\n",n.component.leftIcon&&(e+=' '),e+="\r\n"+(null==(r=n.input.content)?"":r)+"\r\n",n.component.tooltip&&(e+='\r\n \r\n'),e+="\r\n",n.component.rightIcon&&(e+=' '),e+"\r\n\r\n
    \r\n \r\n
    \r\n'},html:function(n){return"\r\n"}},u={form:function(n){var r,e="";for(var l in Array.prototype.join,e+='
    \r\n <'+(null==(r=n.input.type)?"":r)+'\r\n ref="input"\r\n id="'+(null==(r=n.instance.id)?"":r)+"-"+(null==(r=n.component.key)?"":r)+'"\r\n aria-labelledby="l-'+(null==(r=n.instance.id)?"":r)+"-"+(null==(r=n.component.key)?"":r)+'"\r\n ',n.input.attr)e+="\r\n "+(null==(r=l)?"":r)+'="'+(null==(r=n.input.attr[l])?"":r)+'"\r\n ';return e+="\r\n ",n.checked&&(e+="checked=true"),e+='\r\n aria-required="'+(null==(r=n.component.validate.required)?"":r)+'"\r\n ',n.component.description&&(e+='\r\n aria-describedby="d-'+(null==(r=n.instance.id)?"":r)+"-"+(null==(r=n.component.key)?"":r)+'"\r\n '),e+="\r\n >\r\n ",n.self.labelIsHidden()||(e+='\r\n \r\n '+(null==(r=n.input.label)?"":r)+"\r\n \r\n "),e+="\r\n ",n.component.tooltip&&(e+='\r\n \r\n '),e+"\r\n
    \r\n"},html:function(n){var r,e="";return Array.prototype.join,e+='\r\n
    ',n.checked?e+="True":e+="False",e+"
    \r\n"}},d={form:function(n){var r,e="";return Array.prototype.join,n.component.columns.forEach((function(l,t){e+='\r\n
    \r\n '+(null==(r=n.columnComponents[t])?"":r)+"\r\n
    \r\n"})),e}},c={form:function(n){var r,e="";return Array.prototype.join,e+='
    \r\n ',n.visible&&(e+="\r\n "+(null==(r=n.children)?"":r)+'\r\n
    \r\n '),e+"\r\n
    \r\n"}},p={form:function(n){var r,e="";return Array.prototype.join,e+='
    \r\n
    \r\n
    \r\n
    \r\n
    '+(null==(r=n.t(n.component.label))?"":r)+(null==(r=n.self.isIE()?", dialog":"")?"":r)+"\r\n ",n.options.vpat?e+='\r\n \r\n ':e+='\r\n \r\n ',e+='\r\n
    \r\n ',n.visible&&(e+='\r\n
    '+(null==(r=n.children)?"":r)+"
    \r\n "),e+='\r\n
    \r\n ',n.options.vpat&&(e+='\r\n \r\n "),e+'\r\n \r\n
    \r\n
    \r\n
    \r\n \r\n
    \r\n
    \r\n'}},b={form:function(n){var r,e="";return Array.prototype.join,n.children.forEach((function(n){e+='\r\n \r\n '+(null==(r=n)?"":r)+"\r\n \r\n"})),e+="\r\n"}},m={form:function(n){var r,e="";return Array.prototype.join,e+='\r\n '+(null==(r=l.hideLabel?"":n.t(l.label||l.title,{_userInput:!0}))?"":r)+"\r\n ",l.tooltip&&(e+=' '),e+="\r\n \r\n "),e+="\r\n "})),e+="\r\n ",n.hasExtraColumn&&(e+='\r\n \r\n "),e+="\r\n \r\n \r\n "),e+='\r\n \r\n ',n.rows.forEach((function(l,t){e+="\r\n ",n.hasGroups&&n.groups[t]&&(e+='\r\n \r\n '+(null==(r=n.groups[t].label)?"":r)+"\r\n \r\n "),e+='\r\n \r\n ',n.component.reorder&&(e+='\r\n \r\n '),e+="\r\n ",n.columns.forEach((function(t){e+='\r\n \r\n "})),e+="\r\n ",n.hasExtraColumn&&(e+="\r\n ",n.hasRemoveButtons&&(e+='\r\n \r\n '),e+="\r\n ",n.canAddColumn&&(e+='\r\n \r\n "),e+="\r\n "),e+="\r\n \r\n "})),e+="\r\n \r\n ",!n.builder&&n.hasAddButton&&n.hasBottomSubmit&&(e+='\r\n \r\n \r\n \r\n \r\n \r\n "),e+="\r\n
    \r\n '+(null==(r=n.t("Add/Remove"))?"":r)+"\r\n ",!n.builder&&n.hasAddButton&&n.hasTopSubmit&&(e+='\r\n \r\n "),e+="\r\n
    \r\n \r\n \r\n "+(null==(r=l[t.key])?"":r)+"\r\n \r\n \r\n \r\n '+(null==(r=n.placeholder)?"":r)+"\r\n
    \r\n \r\n
    \r\n"},html:function(n){var r,e="";return Array.prototype.join,e+='\r\n ',n.hasHeader&&(e+="\r\n \r\n \r\n ",n.columns.forEach((function(l){e+='\r\n \r\n "})),e+="\r\n \r\n \r\n "),e+="\r\n \r\n ",n.rows.forEach((function(l){e+="\r\n \r\n ",n.columns.forEach((function(t){e+='\r\n \r\n "})),e+="\r\n \r\n "})),e+="\r\n \r\n
    \r\n '+(null==(r=l.hideLabel?"":n.t(l.label||l.title,{_userInput:!0}))?"":r)+"\r\n ",l.tooltip&&(e+=' '),e+="\r\n
    \r\n '+(null==(r=l[t.key])?"":r)+"\r\n
    \r\n"}},f={form:function(n){var r,e="";return Array.prototype.join,e+='
    \r\n "),e+="\r\n
    "+(null==(r=n.day)?"":r)+"
    \r\n
    \r\n "),e+="\r\n ",n.showMonth&&(e+='\r\n
    \r\n ',n.component.hideInputLabels||(e+='\r\n
    \r\n "),e+="\r\n ",!n.dayFirst&&n.showDay&&(e+='\r\n
    \r\n ',n.component.hideInputLabels||(e+='\r\n
    \r\n "),e+="\r\n ",n.showYear&&(e+='\r\n
    \r\n ',n.component.hideInputLabels||(e+='\r\n
    \r\n "),e+'\r\n\r\n\r\n'}},v={form:function(n){var r,e="";return Array.prototype.join,e+='
      \r\n ',n.header&&(e+='\r\n
    • \r\n '+(null==(r=n.header)?"":r)+"\r\n
    • \r\n "),e+="\r\n ",n.rows.forEach((function(l,t){e+='\r\n
    • \r\n '+(null==(r=l)?"":r)+"\r\n ",n.openRows[t]&&!n.readOnly&&(e+='\r\n
      \r\n \r\n ",n.component.removeRow&&(e+='\r\n \r\n "),e+="\r\n
      \r\n "),e+='\r\n
      \r\n
      \r\n '+(null==(r=n.errors[t])?"":r)+"\r\n
      \r\n
      \r\n
    • \r\n "})),e+="\r\n ",n.footer&&(e+='\r\n \r\n "),e+="\r\n
    \r\n",!n.readOnly&&n.hasAddButton&&(e+='\r\n\r\n"),e+="\r\n"},html:function(n){var r,e="";return Array.prototype.join,e+='
      \r\n ',n.header&&(e+='\r\n
    • \r\n '+(null==(r=n.header)?"":r)+"\r\n
    • \r\n "),e+="\r\n ",n.rows.forEach((function(l,t){e+='\r\n
    • \r\n '+(null==(r=l)?"":r)+"\r\n ",n.openRows[t]&&!n.readOnly&&(e+='\r\n
      \r\n \r\n ",n.component.removeRow&&(e+='\r\n \r\n "),e+="\r\n
      \r\n "),e+='\r\n
      \r\n
      \r\n '+(null==(r=n.errors[t])?"":r)+"\r\n
      \r\n
      \r\n
    • \r\n "})),e+="\r\n ",n.footer&&(e+='\r\n \r\n "),e+="\r\n
    \r\n"}},y={form:function(n){var r,e="";return Array.prototype.join,e+='
    \r\n
    \r\n \r\n ',n.header&&(e+='\r\n \r\n '+(null==(r=n.header)?"":r)+"\r\n \r\n "),e+='\r\n \r\n ',n.rows.forEach((function(l,t){e+='\r\n \r\n '+(null==(r=l)?"":r)+"\r\n ",n.openRows[t]&&!n.readOnly&&(e+='\r\n \r\n "),e+="\r\n ",n.errors[t]&&(e+='\r\n \r\n "),e+="\r\n \r\n "})),e+="\r\n \r\n ",n.footer&&(e+="\r\n \r\n \r\n "+(null==(r=n.footer)?"":r)+"\r\n \r\n \r\n "),e+="\r\n
    \r\n
    \r\n \r\n ",n.component.removeRow&&(e+='\r\n \r\n "),e+="\r\n
    \r\n
    \r\n
    \r\n
    \r\n '+(null==(r=n.errors[t])?"":r)+"\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n",!n.readOnly&&n.hasAddButton&&(e+='\r\n\r\n"),e+="\r\n"},html:function(n){var r,e="";return Array.prototype.join,e+='
    \r\n
    \r\n \r\n ',n.header&&(e+='\r\n \r\n '+(null==(r=n.header)?"":r)+"\r\n \r\n "),e+='\r\n \r\n ',n.rows.forEach((function(l,t){e+='\r\n \r\n '+(null==(r=l)?"":r)+"\r\n ",n.openRows[t]&&!n.readOnly&&(e+='\r\n \r\n "),e+="\r\n ",n.errors[t]&&(e+='\r\n \r\n "),e+="\r\n \r\n "})),e+="\r\n \r\n ",n.footer&&(e+="\r\n \r\n \r\n "+(null==(r=n.footer)?"":r)+"\r\n \r\n \r\n "),e+="\r\n
    \r\n
    \r\n \r\n ",n.component.removeRow&&(e+='\r\n \r\n "),e+="\r\n
    \r\n
    \r\n
    \r\n
    \r\n '+(null==(r=n.errors[t])?"":r)+"\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n"}},g={form:function(n){var r,e="";return Array.prototype.join,n.label.hidden||"bottom"===n.label.labelPosition||(e+="\r\n "+(null==(r=n.labelMarkup)?"":r)+"\r\n"),e+="\r\n\r\n",n.label.hidden&&n.label.className&&n.component.validate.required&&(e+='\r\n \r\n'),e+="\r\n\r\n"+(null==(r=n.element)?"":r)+"\r\n\r\n",n.label.hidden||"bottom"!==n.label.labelPosition||(e+="\r\n "+(null==(r=n.labelMarkup)?"":r)+"\r\n"),e+="\r\n",n.component.description&&(e+='\r\n
    '+(null==(r=n.t(n.component.description,{_userInput:!0}))?"":r)+"
    \r\n"),e+"\r\n"},align:function(n){var r,e="";return Array.prototype.join,e+='
    \r\n ',n.label.hidden||(e+='\r\n
    \r\n '+(null==(r=n.labelMarkup)?"":r)+"\r\n
    \r\n "),e+="\r\n\r\n ",n.label.hidden&&n.label.className&&n.component.validate.required&&(e+='\r\n
    \r\n \r\n
    \r\n '),e+='\r\n\r\n
    \r\n '+(null==(r=n.element)?"":r)+"\r\n
    \r\n
    \r\n\r\n",n.component.description&&(e+='\r\n
    '+(null==(r=n.t(n.component.description,{_userInput:!0}))?"":r)+"
    \r\n"),e+"\r\n"}},h={form:function(n){var r,e="";return Array.prototype.join,e+="
    \r\n ",n.component.legend&&(e+='\r\n \r\n '+(null==(r=n.t(n.component.legend,{_userInput:!0}))?"":r)+"\r\n ",n.component.tooltip&&(e+='\r\n \r\n '),e+="\r\n \r\n "),e+="\r\n ",n.collapsed||(e+='\r\n
    \r\n '+(null==(r=n.children)?"":r)+"\r\n
    \r\n "),e+"\r\n
    \r\n"}},w={form:function(n){var r,e="";return Array.prototype.join,n.options.vpat&&(e+='\r\n \r\n'),e+="\r\n",n.self.imageUpload?(e+="\r\n
    \r\n ",n.files.forEach((function(l){e+='\r\n
    \r\n \r\n '+(null==(r=l.originalName||l.name)?\r\n ',n.disabled||(e+='\r\n \r\n '),e+="\r\n \r\n
    \r\n "})),e+="\r\n ",n.filesToUpload.forEach((function(l){e+="\r\n ","progress"===l.status?e+='\r\n
    '+(null==(r=n.fileSize(l.size))?"":r)+'
    \r\n
    \r\n
    \r\n '+(null==(r=l.progress)?"":r)+"% "+(null==(r=n.t("Complete"))?"":r)+"\r\n
    \r\n
    \r\n ":e+='\r\n
    '+(null==(r=n.t(l.message))?"":r)+"
    \r\n ",e+="\r\n "})),e+="\r\n
    \r\n"):(e+="\r\n ",n.options.vpat&&(e+="\r\n
    "+(null==(r=n.component.filePattern&&"*"!==n.component.filePattern?n.t("Allowed file types: ")+n.component.filePattern:"Any file types are allowed")?"":r)+"
    \r\n "),e+='\r\n
      \r\n \r\n ",n.files.forEach((function(l){e+='\r\n
    • \r\n
      \r\n
      \r\n ',n.component.uploadOnly?e+="\r\n "+(null==(r=l.originalName||l.name)?"":r)+"\r\n ":e+='\r\n \r\n '+(null==(r=n.t("Press to open "))?"":r)+""+(null==(r=l.originalName||l.name)?"":r)+"\r\n \r\n ",e+='\r\n
      \r\n
      '+(null==(r=n.fileSize(l.size))?"":r)+"
      \r\n ",n.self.hasTypes&&!n.disabled&&(e+='\r\n
      \r\n \r\n
      \r\n "),e+="\r\n ",n.self.hasTypes&&n.disabled&&(e+='\r\n
      '+(null==(r=l.fileType)?"":r)+"
      \r\n "),e+="\r\n ",n.disabled||(e+='\r\n
      \r\n '),e+="\r\n
      \r\n
    • \r\n "})),e+="\r\n ",n.filesToDelete.forEach((function(l){e+='\r\n
    • \r\n
      \r\n
      \r\n
      '+(null==(r=l.originalName||l.name)?"":r)+'
      \r\n
      '+(null==(r=n.t(l.message))?"":r)+'
      \r\n
      \r\n
      '+(null==(r=n.fileSize(l.size))?"":r)+"
      \r\n ",n.self.hasTypes&&(e+='\r\n
      \r\n \r\n
      \r\n "),e+="\r\n ",n.isSyncing||"success"===l.status||(e+='\r\n
      \r\n '),e+="\r\n
      \r\n
    • \r\n "})),e+="\r\n ",n.filesToUpload.forEach((function(l){e+='\r\n
    • \r\n
      \r\n
      \r\n
      '+(null==(r=l.originalName||l.name)?"":r)+"
      \r\n ","progress"===l.status?e+='\r\n
      \r\n
      \r\n '+(null==(r=l.progress)?"":r)+"% "+(null==(r=n.t("Complete"))?"":r)+"\r\n
      \r\n
      \r\n ":e+='\r\n
      '+(null==(r=n.t(l.message))?"":r)+"
      \r\n ",e+='\r\n
      \r\n
      '+(null==(r=n.fileSize(l.size))?"":r)+"
      \r\n ",n.self.hasTypes&&(e+='\r\n
      \r\n \r\n
      \r\n "),e+="\r\n ","progress"===l.status?e+='\r\n
      \r\n ':n.isSyncing||"success"===l.status||(e+='\r\n
      \r\n '),e+="\r\n
      \r\n
    • \r\n "})),e+="\r\n
    \r\n"),e+="\r\n",n.disabled||!n.component.multiple&&n.files.length||(e+="\r\n ",n.self.useWebViewCamera?e+='\r\n
    \r\n \r\n \r\n
    \r\n ":n.self.cameraMode?e+='\r\n
    \r\n \r\n
    \r\n \r\n \r\n ":(e+='\r\n \r\n '),e+="\r\n"),e+="\r\n",n.component.storage&&!n.support.hasWarning||(e+='\r\n
    \r\n ',n.component.storage||(e+="\r\n

    "+(null==(r=n.t("No storage has been set for this field. File uploads are disabled until storage is set up."))?"":r)+"

    \r\n "),e+="\r\n ",n.support.filereader||(e+="\r\n

    "+(null==(r=n.t("File API & FileReader API not supported."))?"":r)+"

    \r\n "),e+="\r\n ",n.support.formdata||(e+="\r\n

    "+(null==(r=n.t("XHR2's FormData is not supported."))?"":r)+"

    \r\n "),e+="\r\n ",n.support.progress||(e+="\r\n

    "+(null==(r=n.t("XHR2's upload progress isn't supported."))?"":r)+"

    \r\n "),e+="\r\n
    \r\n"),e+="\r\n"}},k={form:function(n){var r,e="";return Array.prototype.join,e+="<"+(null==(r=n.tag)?"":r)+' class="formio-component-htmlelement '+(null==(r=n.component.className)?"":r)+'" ref="html"\r\n ',n.attrs.forEach((function(n){e+="\r\n "+(null==(r=n.attr)?"":r)+'="'+(null==(r=n.value)?"":r)+'"\r\n '})),e+="\r\n>"+(null==(r=n.builder?n.content:n.t(n.content))?"":r),n.singleTags&&-1!==n.singleTags.indexOf(n.tag)||(e+=""),e+="\r\n"}},x={form:function(n){var r,e="";if(Array.prototype.join,(n.prefix||n.suffix)&&(e+='\r\n
    \r\n '),e+="\r\n ",n.prefix&&(e+='\r\n
    \r\n ',n.prefix instanceof HTMLElement?e+="\r\n "+(null==(r=n.t(n.prefix.outerHTML,{_userInput:!0}))?"":r)+"\r\n ":e+="\r\n "+(null==(r=n.t(n.prefix,{_userInput:!0}))?"":r)+"\r\n ",e+="\r\n
    \r\n "),e+="\r\n ",n.options.floatingLabels&&(e+='\r\n
    \r\n '),e+="\r\n ",!n.component.editor&&!n.component.wysiwyg){for(var l in e+="\r\n <"+(null==(r=n.input.type)?"":r)+'\r\n ref="'+(null==(r=n.input.ref?n.input.ref:"input")?"":r)+'"\r\n ',n.input.attr)e+="\r\n "+(null==(r=l)?"":r)+'="'+(null==(r=n.input.attr[l])?"":r)+'"\r\n ';e+='\r\n id="'+(null==(r=n.instance.id)?"":r)+"-"+(null==(r=n.component.key)?"":r)+'"\r\n aria-labelledby="l-'+(null==(r=n.instance.id)?"":r)+"-"+(null==(r=n.component.key)?"":r)+" ",n.component.description&&(e+="d-"+(null==(r=n.instance.id)?"":r)+"-"+(null==(r=n.component.key)?"":r)),e+='"\r\n aria-required="'+(null==(r="input"!==n.input.ref&&n.input.ref?n.component.fields&&n.component.fields[n.input.ref]&&n.component.fields[n.input.ref].required||!1:n.component.validate.required)?"":r)+'"\r\n >'+(null==(r=n.input.content)?"":r)+"\r\n ",n.options.floatingLabels&&(e+='\r\n \r\n "),e+="\r\n ",n.hasValueMaskInput&&(e+='\r\n \r\n '),e+="\r\n"}return e+="\r\n",(n.component.editor||n.component.wysiwyg)&&(e+='\r\n
    \r\n'),e+="\r\n","datetime"===n.component.type&&(e+='\r\n\r\n'),e+="\r\n",n.suffix&&(e+='\r\n
    \r\n ',n.component.showCharCount&&(e+='\r\n \r\n '),e+="\r\n ",n.component.showWordCount&&(e+='\r\n \r\n '),e+="\r\n
    \r\n"),e+"\r\n"},html:function(n){var r,e="";return Array.prototype.join,e+='
    ',n.value?e+=null==(r=n.value)?"":r:e+="-",e+"
    \r\n"}},C={form:function(n){var r,e="";return Array.prototype.join,e+='\r\n '+(null==(r=n.t(n.component.label,{_userInput:!0}))?"":r)+"\r\n ","number"!==n.component.type&&"phoneNumber"!==n.component.type&&"currency"!==n.component.type||(e+='\r\n , '+(null==(r=n.t("numeric only"))?"":r)+",\r\n "),e+="\r\n ",n.component.tooltip&&(e+='\r\n \r\n '),e+"\r\n\r\n"}},A={form:function(n){var r,e="";for(var l in Array.prototype.join,e+='\r\n '+(null==(r=n.label)?"":r)+"\r\n "})),e+='\r\n \r\n \r\n ",n.disabled||(e+='\r\n \r\n \r\n \r\n '),e+"\r\n\r\n"}},j={form:function(n){var r,e="";return Array.prototype.join,e+='\r\n \r\n '+(null==(r=n.rows)?"":r)+"\r\n ",n.disabled||(e+='\r\n \r\n \r\n \r\n "),e+"\r\n \r\n
    \r\n \r\n
    \r\n"}},z={form:function(n){var r,e="";return Array.prototype.join,e+='
    \r\n ',(!n.label.hidden||n.builder||n.component.collapsible||n.component.tooltip)&&(e+='\r\n
    \r\n \r\n ',n.component.collapsible&&(e+='\r\n \r\n '),e+="\r\n ",n.label.hidden&&!n.builder||(e+="\r\n "+(null==(r=n.t(n.component.title,{_userInput:!0}))?"":r)+"\r\n "),e+="\r\n ",n.component.tooltip&&(e+='\r\n \r\n '),e+="\r\n \r\n
    \r\n "),e+="\r\n ",n.collapsed&&!n.builder||(e+='\r\n
    \r\n '+(null==(r=n.children)?"":r)+"\r\n
    \r\n "),e+"\r\n
    \r\n"}},E={form:function(n){var r,e="";return Array.prototype.join,e+='\r\n ',["left","top"].includes(n.component.optionsLabelPosition)&&(e+='\r\n \r\n "),e+="\r\n <"+(null==(r=n.input.type)?"":r)+'\r\n ref="input"\r\n ',n.input.attr)e+="\r\n "+(null==(r=o)?"":r)+'="'+(null==(r=n.input.attr[o])?"":r)+'"\r\n ';e+='\r\n value="'+(null==(r=l.value)?"":r)+'"\r\n ',n.value&&(n.value===l.value||"object"==typeof n.value&&n.value.hasOwnProperty(l.value)&&n.value[l.value])&&(e+="\r\n checked=true\r\n "),e+="\r\n ",l.disabled&&(e+="\r\n disabled=true\r\n "),e+='\r\n id="'+(null==(r=n.instance.root&&n.instance.root.id)?"":r)+"-"+(null==(r=n.id)?"":r)+"-"+(null==(r=n.row)?"":r)+"-"+(null==(r="object"==typeof l.value?l.value+"-"+t:l.value)?"":r)+'"\r\n role="'+(null==(r="selectboxes"===n.component.type?"checkbox":"radio")?"":r)+'"\r\n >\r\n ',n.component.optionsLabelPosition&&!["right","bottom"].includes(n.component.optionsLabelPosition)||(e+='\r\n \r\n "),e+="\r\n
    \r\n "})),e+="\r\n
    \r\n"},html:function(n){var r,e="";return Array.prototype.join,(e+='
    \r\n ')+"\r\n "+(null==(r=n.values.filter((function(r){return n.value===r.value||"object"==typeof n.value&&n.value.hasOwnProperty(r.value)&&n.value[r.value]})).map((function(r){return n.t(r.label,{_userInput:!0})})).join(", "))?"":r)+"\r\n
    \r\n"}},_={form:function(n){var r,e="";for(var l in Array.prototype.join,e+=''+(null==(r=n.selectOptions)?"":r)+'\r\n\r\n'},html:function(n){var r,e="";return Array.prototype.join,e+='
    ',n.value?e+=null==(r=n.self.itemValueForHTMLMode(n.value))?"":r:e+="-",e+"
    \r\n"}},P={form:function(n){var r,e="";for(var l in Array.prototype.join,e+="\r\n"},html:function(n){var r,e="";return Array.prototype.join,n.selected&&(e+=null==(r=n.t(n.option.label,{_userInput:!0}))?"":r),e+"\r\n"}},q={form:function(n){var r,e="";return Array.prototype.join,e+=(null==(r=n.element)?"":r)+'\r\n\r\n \r\n \r\n \r\n \r\n ',n.required&&(e+='\r\n \r\n '),e+='\r\n \r\n\r\n',n.component.footer&&(e+='\r\n \r\n"),e+"\r\n"},html:function(n){return'\r\n'}},R={form:function(n){var r,e="";return Array.prototype.join,e+='\r\n \r\n \r\n \r\n ',n.component.values.forEach((function(l){e+='\r\n \r\n "})),e+="\r\n \r\n \r\n \r\n ",n.component.questions.forEach((function(l){e+="\r\n \r\n \r\n ",n.component.values.forEach((function(t){e+='\r\n \r\n '})),e+="\r\n \r\n "})),e+="\r\n \r\n
    \r\n '+(null==(r=n.t(l.label,{_userInput:!0}))?"":r)+"\r\n ",l.tooltip&&(e+='\r\n \r\n '),e+="\r\n
    \r\n "+(null==(r=n.t(l.label))?"":r)+"\r\n ",l.tooltip&&(e+='\r\n \r\n '),e+="\r\n \r\n \r\n
    \r\n"},html:function(n){var r,e="";return Array.prototype.join,e+='\r\n \r\n ',n.component.questions.forEach((function(l){e+="\r\n \r\n \r\n \r\n \r\n "})),e+="\r\n \r\n
    "+(null==(r=n.t(l.label))?"":r)+"\r\n ",n.component.values.forEach((function(t){e+="\r\n ",n.value&&n.value.hasOwnProperty(l.value)&&n.value[l.value]===t.value&&(e+="\r\n "+(null==(r=n.t(t.label))?"":r)+"\r\n "),e+="\r\n "})),e+="\r\n
    \r\n"}},K={flat:function(n){var r,e="";return Array.prototype.join,n.component.components.forEach((function(l,t){e+='\r\n
    \r\n
    \r\n

    '+(null==(r=n.t(l.label,{_userInput:!0}))?"":r)+'

    \r\n
    \r\n \r\n '+(null==(r=n.tabComponents[t])?"":r)+"\r\n
    \r\n \r\n"})),e+="\r\n"},form:function(n){var r,e="";return Array.prototype.join,e+='
    \r\n
    \r\n \r\n
    \r\n ",n.component.components.forEach((function(l,t){e+='\r\n \r\n '+(null==(r=n.tabComponents[t])?"":r)+"\r\n
    \r\n "})),e+="\r\n\r\n"}},L={form:function(n){var r,e="";return Array.prototype.join,e+='\r\n \r\n ",n.component.header&&n.component.header.length>0&&(e+="\r\n \r\n \r\n ",n.component.header.forEach((function(l){e+="\r\n \r\n "})),e+="\r\n \r\n \r\n "),e+="\r\n \r\n ",n.tableComponents.forEach((function(l,t){e+='\r\n \r\n ',l.forEach((function(l,o){e+='\r\n \r\n "})),e+="\r\n \r\n
    '+(null==(r=n.t(n.component.label))?"":r)+"
    "+(null==(r=n.t(l))?"":r)+"
    \r\n "})),e+="\r\n
    \r\n"}},N={form:function(n){var r,e="";return Array.prototype.join,n.node.isRoot?e+='\r\n
    \r\n':e+='\r\n
  • \r\n',e+="\r\n ",n.content&&(e+='\r\n
    \r\n '+(null==(r=n.content)?"":r)+"\r\n
    \r\n "),e+="\r\n ",n.childNodes&&n.childNodes.length&&(e+='\r\n
      \r\n '+(null==(r=n.childNodes.join(""))?"":r)+"\r\n
    \r\n "),e+="\r\n",n.node.isRoot?e+="\r\n
  • \r\n":e+="\r\n \r\n",e+"\r\n"}},T={treeView:{form:function(n){var r,e="";return Array.prototype.join,e+='
    \r\n ',n.values.forEach((function(n){e+='\r\n
    \r\n '+(null==(r=n)?"":r)+"\r\n
    \r\n "})),e+='\r\n
    \r\n
    \r\n ',n.node.hasChildren&&(e+='\r\n \r\n "),e+="\r\n ",n.readOnly||(e+='\r\n \r\n \r\n \r\n ",n.node.revertAvailable&&(e+='\r\n \r\n "),e+="\r\n "),e+="\r\n
    \r\n
    \r\n
    \r\n"}},treeEdit:{form:function(n){var r,e="";return Array.prototype.join,e+='
    \r\n
    '+(null==(r=n.children)?"":r)+"
    \r\n ",n.readOnly||(e+='\r\n
    \r\n \r\n \r\n
    \r\n "),e+"\r\n
    \r\n"}}},S={form:function(n){var r,e="";return Array.prototype.join,e+='
    \r\n
    \r\n ',"wizardHeaderVertical"===n.wizardHeaderType?(e+='\r\n
    \r\n ',"right"!==n.wizardHeaderLocation&&(e+='\r\n
    \r\n '+(null==(r=n.wizardHeader)?"":r)+"\r\n
    \r\n "),e+='\r\n
    \r\n '+(null==(r=n.components)?"":r)+"\r\n
    \r\n ","right"===n.wizardHeaderLocation&&(e+='\r\n
    \r\n '+(null==(r=n.wizardHeader)?"":r)+"\r\n
    \r\n "),e+='\r\n
    \r\n
    \r\n '+(null==(r=n.wizardNav)?"":r)+"\r\n
    \r\n "):e+="\r\n "+(null==(r=n.wizardHeader)?"":r)+'\r\n
    \r\n '+(null==(r=n.components)?"":r)+"\r\n
    \r\n "+(null==(r=n.wizardNav)?"":r)+"\r\n ",e+"\r\n
    \r\n
    \r\n"},builder:function(n){var r;return""+'
    '+(null==(r=n.t(n.component.title,{_userInput:!0}))?"":r)+"
    \r\n"}},B={form:function(n){var r,e="";return Array.prototype.join,e+='\r\n"}},M={form:function(n){var r,e="";return Array.prototype.join,e+='\r\n"}},O={form:function(n){var r,e="";return Array.prototype.join,e+='\r\n"}},H={form:function(n){var r,e="";return Array.prototype.join,e+='
      \r\n ',n.buttonOrder.forEach((function(l){e+="\r\n ","cancel"===l&&n.buttons.cancel&&(e+='\r\n
    • \r\n \r\n
    • \r\n "),e+="\r\n ","previous"===l&&n.buttons.previous&&(e+='\r\n
    • \r\n \r\n
    • \r\n "),e+="\r\n ","next"===l&&n.buttons.next&&(e+='\r\n
    • \r\n \r\n
    • \r\n "),e+="\r\n ","submit"===l&&n.buttons.submit&&(e+="\r\n
    • \r\n ",n.disableWizardSubmit?e+='\r\n \r\n ":e+='\r\n \r\n ",e+="\r\n
    • \r\n "),e+="\r\n "})),e+="\r\n
    \r\n"}},F={form:function(n){var r,e="";return Array.prototype.join,e+="

    "+(null==(r=n.t("error"))?"":r)+"\r\n ",n.options.vpat&&(e+='\r\n \r\n '),e+="\r\n

    \r\n
      \r\n ",n.errors.forEach((function(n){e+='\r\n
    • \r\n \r\n '+(null==(r=n.message)?"":r)+"\r\n \r\n
    • \r\n "})),e+="\r\n
    \r\n"}},D={form:function(n){var r,e="";for(var l in Array.prototype.join,e+="'+(null==(r=n.t("errorListHotkey"))?"":r)+"\r\n "),e+"\r\n\r\n"}},V={framework:"bootstrap5",templates:{bootstrap5:{transform(n,r,e){if(!r)return r;if("class"===n){let n="";return"form-group"===r&&(n="mb-2 ",e&&e.component.block&&(n+="d-grid ")),`${n}${this.cssClasses.hasOwnProperty(r.toString())?this.cssClasses[r.toString()]:r}`}return r},defaultIconset:"bi",iconClass:(n,r,e)=>{let l=r;if("bi"===n)switch(r){case"cog":l="gear";break;case"copy":l="back";break;case"bars":l="list";break;case"remove":l="trash";break;case"font":l="type";break;case"hashtag":l="hash";break;case"th-list":l="menu-button-wide";break;case"dot-circle-o":l="ui-radios";break;case"plus-square-o":l="plus-square";break;case"minus-square-o":l="dash-square";break;case"plus-square":l="ui-checks";break;case"phone-square":l="phone";break;case"home":l="house";break;case"clock-o":case"time":l="clock";break;case"usd":l="currency-dollar";break;case"html5":l="file-richtext";break;case"pencil-square-o":l="pencil-square";break;case"columns":l="layout-three-columns";break;case"list-alt":l="window";break;case"th-large":l="grid-fill";break;case"folder-o":l="folder";break;case"square-o":l="square";break;case"user-secret":l="person-fill-slash";break;case"folder-open":case"folder-open":l="folder2-open";break;case"th":l="grid-3x3-gap-fill";break;case"tasks":l="view-stacked";break;case"indent":l="text-indent-left";break;case"refresh":l="arrow-repeat";break;case"files-o":l="files";break;case"wpforms":l="window-stack";break;case"cube":l="box";break;case"cubes":l="boxes";break;case"check-square-o":l="check-square";break;case"plus":l="plus-lg";break;case"question-sign":r="question-circle",l="question-circle";break;case"remove-circle":case"circle-xmark":l="x-circle";break;case"new-window":r="window-restore",l="window-plus";break;case"move":r="arrows",l="arrows-move";break;case"edit":l="pencil";break;case"video":l="camera-video";break;case"microphone":l="mic";break;case"check-circle":l="check-circle-fill";break;case"times-circle":l="x-circle-fill";break;case"pencil":l="pencil-fill";break;case"minus":l="dash";break;case"circle":l="circle-fill";break;case"search-plus":l="zoom-in";break;case"search-minus":l="zoom-out";break;case"hand-paper-o":l="hand-index";break;case"undo":l="arrow-counterclockwise";break;case"repeat":l="arrow-clockwise"}return e?"spinner-border spinner-border-sm":`${n} ${"circle-xmark"===l?`${n}-${l} ${n}-remove-circle`:`${n}-${l}`}`},cssClasses:{"border-default":"","formio-tab-panel-active":"active","formio-tab-link-active":"active","formio-tab-link-container-active":"active","formio-form-error":"formio-error-wrapper has-message","formio-form-alert":"alert alert-danger","formio-label-error":"","formio-input-error":"","formio-alert-danger":"alert alert-danger","formio-alert-success":"alert alert-success","formio-alert-warning":"alert alert-warning","formio-modal-cancel-button":"btn btn-danger formio-dialog-button","formio-modal-confirm-button":"btn btn-primary formio-dialog-button","form-group":"formio-form-group"},address:e,builder:{form:function(n){var r;return""+'
    \r\n
    \r\n '+(null==(r=n.sidebar)?"":r)+'\r\n
    \r\n
    \r\n '+(null==(r=n.form)?"":r)+"\r\n
    \r\n
    \r\n"}},builderComponent:l,builderComponents:{form:function(n){var r;return""+'
    \r\n '+(null==(r=n.html)?"":r)+"\r\n
    \r\n"}},builderEditForm:t,builderPlaceholder:{form:function(n){var r;return""+'\r\n '+(null==(r=n.t("Drag and Drop a form component"))?"":r)+"\r\n\r\n"}},builderSidebar:o,builderSidebarGroup:a,builderWizard:i,button:s,checkbox:u,columns:d,component:c,componentModal:p,components:{form:function(n){var r;return""+((null==(r=n.children.join(""))?"":r)+"\r\n")}},tableComponents:b,container:{form:function(n){var r;return""+'
    \r\n '+(null==(r=n.children)?"":r)+"\r\n
    \r\n"}},datagrid:m,day:f,dialog:{form:function(n){return'
    \r\n
    \r\n \r\n
    \r\n'}},editgrid:v,editgridTable:y,field:g,fieldset:h,file:w,html:k,icon:{form:function(n){var r;return""+''+(null==(r=n.content)?"":r)+"\r\n"}},input:x,label:C,loader:{form:function(n){return'
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n'}},loading:{form:function(n){return"Loading...\r\n"}},map:{form:function(n){var r;return""+'
    \r\n'}},message:{form:function(n){var r;return""+'
    '+(null==(r=n.message)?"":r)+"
    \r\n"}},modaledit:{form:function(n){var r;return""+'
    \r\n \r\n \r\n \r\n
    '+(null==(r=n.content)?"":r)+"
    \r\n
    \r\n"}},modaldialog:{form:function(n){var r;return""+'
    \r\n
    \r\n
    \r\n \r\n '+(null==(r=n.t("Close"))?"":r)+'\r\n \r\n
    \r\n
    \r\n
    \r\n'}},modalPreview:{form:function(n){var r;return""+'
    \r\n\r\n\r\n '+(null==(r=n.previewText)?"":r)+'\r\n\r\n
    \r\n '+(null==(r=n.messages)?"":r)+"\r\n
    \r\n"}},multipleMasksInput:A,multiValueRow:I,multiValueTable:j,panel:z,pdf:{form:function(n){var r;return""+'
    \r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\r\n
    \r\n '+(null==(r=n.submitButton)?"":r)+"\r\n
    \r\n"}},pdfBuilder:{form:function(n){var r;return""+'
    \r\n
    \r\n '+(null==(r=n.sidebar)?"":r)+'\r\n
    \r\n
    \r\n\t
    \r\n '+(null==(r=n.form)?"":r)+"\r\n
    \r\n
    \r\n"}},pdfBuilderUpload:{form:function(n){var r;return""+'
    \r\n

    '+(null==(r=n.t("Upload a PDF File"))?"":r)+'

    \r\n \r\n
    \r\n \r\n '+(null==(r=n.t("Drop pdf to start, or"))?"":r)+' '+(null==(r=n.t("browse"))?"":r)+'\r\n \r\n \r\n
    \r\n
    \r\n\r\n
    \r\n
    \r\n\r\n'}},radio:E,resourceAdd:{form:function(n){var r;return""+'\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
    \r\n '+(null==(r=n.element)?"":r)+'\r\n
    \r\n \r\n
    \r\n"}},select:_,selectOption:P,signature:q,survey:R,tab:K,table:L,tree:N,...T,webform:{form:function(n){var r;return""+'
    '+(null==(r=n.children)?"":r)+"
    \r\n"},builder:function(n){var r;return""+'
    '+(null==(r=n.t(n.component.title,{_userInput:!0}))?"":r)+"
    \r\n"}},well:{form:function(n){var r;return""+'
    \r\n
    \r\n '+(null==(r=n.children)?"":r)+"\r\n
    \r\n
    \r\n"}},wizard:S,wizardHeader:B,wizardHeaderClassic:M,wizardHeaderVertical:O,wizardNav:H,errorsList:F,alert:D}}};return r.default})())); \ No newline at end of file diff --git a/lib/cjs/bootstrap3.d.ts b/lib/cjs/bootstrap3.d.ts deleted file mode 100644 index d6c2958a3..000000000 --- a/lib/cjs/bootstrap3.d.ts +++ /dev/null @@ -1,153 +0,0 @@ -declare const _default: { - framework: string; - templates: { - bootstrap3: { - transform(type: any, text: any): any; - handleBuilderSidebarScroll(builder: any): void; - clearBuilderSidebarScroll(builder: any): void; - defaultIconset: string; - iconClass: (iconset: any, name: any, spinning: any) => string; - cssClasses: { - 'formio-tab-panel-active': string; - 'formio-tab-link-active': string; - 'formio-tab-link-container-active': string; - }; - builder: { - form: string; - }; - builderComponent: { - form: string; - }; - builderComponents: { - form: string; - }; - builderEditForm: { - form: string; - }; - builderPlaceholder: { - form: string; - }; - builderSidebar: { - form: string; - }; - builderSidebarGroup: { - form: string; - }; - columns: { - form: string; - }; - datagrid: { - form: string; - html: string; - }; - day: { - form: string; - }; - dialog: { - form: string; - }; - editgrid: { - form: string; - html: string; - }; - field: { - align: string; - form: string; - }; - file: { - form: string; - }; - icon: { - form: string; - }; - input: { - form: string; - html: string; - }; - label: { - form: string; - }; - message: { - form: string; - }; - modaldialog: { - form: string; - }; - modaledit: { - form: string; - }; - multiValueRow: { - form: string; - }; - multiValueTable: { - form: string; - }; - panel: { - form: string; - }; - radio: { - form: string; - html: string; - }; - resourceAdd: { - form: string; - }; - signature: { - form: string; - html: string; - }; - survey: { - form: string; - html: string; - }; - tab: { - flat: string; - form: string; - }; - table: { - form: string; - }; - well: { - form: string; - }; - wizard: { - form: string; - builder: string; - }; - wizardHeader: { - form: string; - }; - wizardHeaderClassic: { - form: string; - }; - wizardHeaderVertical: { - form: string; - }; - wizardNav: { - form: string; - }; - errorsList: { - form: string; - }; - alert: { - form: string; - }; - grid: { - html: string; - }; - pagination: { - html: string; - }; - columnMenu: { - html: string; - }; - tbody: { - html: string; - }; - paginationBottom: { - html: string; - }; - }; - }; -}; -export default _default; diff --git a/lib/cjs/bootstrap3.js b/lib/cjs/bootstrap3.js deleted file mode 100644 index 1034e805d..000000000 --- a/lib/cjs/bootstrap3.js +++ /dev/null @@ -1,9 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const bootstrap3_1 = require("./templates/bootstrap3"); -exports.default = { - framework: 'bootstrap3', - templates: { - bootstrap3: bootstrap3_1.default - }, -}; diff --git a/lib/cjs/bootstrap4.d.ts b/lib/cjs/bootstrap4.d.ts deleted file mode 100644 index 8f06e751e..000000000 --- a/lib/cjs/bootstrap4.d.ts +++ /dev/null @@ -1,246 +0,0 @@ -declare const _default: { - framework: string; - templates: { - bootstrap4: { - webform: { - form: string; - builder: string; - }; - well: { - form: string; - }; - wizard: { - form: string; - builder: string; - }; - wizardHeader: { - form: string; - }; - wizardHeaderClassic: { - form: string; - }; - wizardHeaderVertical: { - form: string; - }; - wizardNav: { - form: string; - }; - errorsList: { - form: string; - }; - alert: { - form: string; - }; - grid: { - html: string; - }; - pagination: { - html: string; - }; - columnMenu: { - html: string; - }; - tbody: { - html: string; - }; - paginationBottom: { - html: string; - }; - treeView: { - form: string; - }; - treeEdit: { - form: string; - }; - transform(type: any, text: any): any; - defaultIconset: string; - iconClass: (iconset: any, name: any, spinning: any) => string; - cssClasses: { - 'border-default': string; - 'formio-tab-panel-active': string; - 'formio-tab-link-active': string; - 'formio-tab-link-container-active': string; - 'formio-form-error': string; - 'formio-form-alert': string; - 'formio-label-error': string; - 'formio-input-error': string; - 'formio-alert-danger': string; - 'formio-alert-success': string; - 'formio-alert-warning': string; - 'formio-modal-cancel-button': string; - 'formio-modal-confirm-button': string; - }; - address: { - form: string; - html: string; - }; - builder: { - form: string; - }; - builderComponent: { - form: string; - }; - builderComponents: { - form: string; - }; - builderEditForm: { - form: string; - }; - builderPlaceholder: { - form: string; - }; - builderSidebar: { - form: string; - }; - builderSidebarGroup: { - form: string; - }; - builderWizard: { - form: string; - }; - button: { - form: string; - html: string; - }; - checkbox: { - form: string; - html: string; - }; - columns: { - form: string; - }; - component: { - form: string; - }; - componentModal: { - form: string; - }; - components: { - form: string; - }; - tableComponents: { - form: string; - }; - container: { - form: string; - }; - datagrid: { - form: string; - html: string; - }; - day: { - form: string; - }; - dialog: { - form: string; - }; - editgrid: { - form: string; - html: string; - }; - editgridTable: { - form: string; - html: string; - }; - field: { - form: string; - align: string; - }; - fieldset: { - form: string; - }; - file: { - form: string; - }; - html: { - form: string; - }; - icon: { - form: string; - }; - input: { - form: string; - html: string; - }; - label: { - form: string; - }; - loader: { - form: string; - }; - loading: { - form: string; - }; - map: { - form: string; - }; - message: { - form: string; - }; - modaledit: { - form: string; - }; - modaldialog: { - form: string; - }; - modalPreview: { - form: string; - }; - multipleMasksInput: { - form: string; - }; - multiValueRow: { - form: string; - }; - multiValueTable: { - form: string; - }; - panel: { - form: string; - }; - pdf: { - form: string; - }; - pdfBuilder: { - form: string; - }; - pdfBuilderUpload: { - form: string; - }; - radio: { - form: string; - html: string; - }; - resourceAdd: { - form: string; - }; - select: { - form: string; - html: string; - }; - selectOption: { - form: string; - html: string; - }; - signature: { - form: string; - html: string; - }; - survey: { - form: string; - html: string; - }; - tab: { - flat: string; - form: string; - }; - table: { - form: string; - }; - tree: { - form: string; - }; - }; - }; -}; -export default _default; diff --git a/lib/cjs/bootstrap4.js b/lib/cjs/bootstrap4.js deleted file mode 100644 index 8aee4d458..000000000 --- a/lib/cjs/bootstrap4.js +++ /dev/null @@ -1,9 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const bootstrap4_1 = require("./templates/bootstrap4"); -exports.default = { - framework: 'bootstrap4', - templates: { - bootstrap4: bootstrap4_1.default - }, -}; diff --git a/lib/cjs/bootstrap5.d.ts b/lib/cjs/bootstrap5.d.ts index ea1e2e0ce..32df0946f 100644 --- a/lib/cjs/bootstrap5.d.ts +++ b/lib/cjs/bootstrap5.d.ts @@ -39,7 +39,7 @@ declare const _default: { }; transform(type: any, text: any, instance: any): any; defaultIconset: string; - iconClass: (iconset: "fa" | "bi", name: string, spinning: boolean) => string; + iconClass: (iconset: "bi" | "fa", name: string, spinning: boolean) => string; cssClasses: { 'border-default': string; 'formio-tab-panel-active': string; diff --git a/lib/cjs/templates/bootstrap3/alert/form.ejs.js b/lib/cjs/templates/bootstrap3/alert/form.ejs.js deleted file mode 100644 index 524ede356..000000000 --- a/lib/cjs/templates/bootstrap3/alert/form.ejs.js +++ /dev/null @@ -1,19 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/alert/index.d.ts b/lib/cjs/templates/bootstrap3/alert/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/alert/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/alert/index.js b/lib/cjs/templates/bootstrap3/alert/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/alert/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/builder/form.ejs.js b/lib/cjs/templates/bootstrap3/builder/form.ejs.js deleted file mode 100644 index df06e1781..000000000 --- a/lib/cjs/templates/bootstrap3/builder/form.ejs.js +++ /dev/null @@ -1,12 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '
    \n
    \n ' + -((__t = (ctx.sidebar)) == null ? '' : __t) + -'\n
    \n
    \n ' + -((__t = (ctx.form)) == null ? '' : __t) + -'\n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/builder/index.d.ts b/lib/cjs/templates/bootstrap3/builder/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/builder/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/builder/index.js b/lib/cjs/templates/bootstrap3/builder/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/builder/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/builderComponent/form.ejs.js b/lib/cjs/templates/bootstrap3/builderComponent/form.ejs.js deleted file mode 100644 index d86b4fe27..000000000 --- a/lib/cjs/templates/bootstrap3/builderComponent/form.ejs.js +++ /dev/null @@ -1,27 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - if (!ctx.disableBuilderActions) { ; -__p += '\n
    \n
    \n \n
    \n
    \n \n
    \n
    \n \n
    \n
    \n \n
    \n
    \n \n
    \n
    \n \n
    \n
    \n '; - } ; -__p += '\n ' + -((__t = (ctx.html)) == null ? '' : __t) + -'\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/builderComponent/index.d.ts b/lib/cjs/templates/bootstrap3/builderComponent/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/builderComponent/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/builderComponent/index.js b/lib/cjs/templates/bootstrap3/builderComponent/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/builderComponent/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/builderComponents/form.ejs.js b/lib/cjs/templates/bootstrap3/builderComponents/form.ejs.js deleted file mode 100644 index 4cda2c2b4..000000000 --- a/lib/cjs/templates/bootstrap3/builderComponents/form.ejs.js +++ /dev/null @@ -1,14 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '
    \n ' + -((__t = (ctx.html)) == null ? '' : __t) + -'\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/builderComponents/index.d.ts b/lib/cjs/templates/bootstrap3/builderComponents/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/builderComponents/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/builderComponents/index.js b/lib/cjs/templates/bootstrap3/builderComponents/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/builderComponents/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/builderEditForm/form.ejs.js b/lib/cjs/templates/bootstrap3/builderEditForm/form.ejs.js deleted file mode 100644 index 345ef2c9c..000000000 --- a/lib/cjs/templates/bootstrap3/builderEditForm/form.ejs.js +++ /dev/null @@ -1,61 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n
    \n

    ' + -((__t = (ctx.t(ctx.componentInfo.title, { _userInput: true }))) == null ? '' : __t) + -' ' + -((__t = (ctx.t('Component'))) == null ? '' : __t) + -'

    \n
    \n '; - if (ctx.helplinks) { ; -__p += '\n \n'; - } ; -__p += '\n
    \n
    \n
    \n
    \n ' + -((__t = (ctx.editForm)) == null ? '' : __t) + -'\n
    \n '; - if (!ctx.preview) { ; -__p += '\n
    \n \n \n \n
    \n '; - } ; -__p += '\n
    \n '; - if (ctx.preview) { ; -__p += '\n
    \n
    \n
    \n

    ' + -((__t = (ctx.t('Preview'))) == null ? '' : __t) + -'

    \n
    \n
    \n
    \n ' + -((__t = (ctx.preview)) == null ? '' : __t) + -'\n
    \n
    \n
    \n '; - if (ctx.componentInfo.help) { ; -__p += '\n
    \n ' + -((__t = ( ctx.componentInfo.help )) == null ? '' : __t) + -'\n
    \n '; - } ; -__p += '\n
    \n \n \n \n
    \n
    \n '; - } ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/builderEditForm/index.d.ts b/lib/cjs/templates/bootstrap3/builderEditForm/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/builderEditForm/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/builderEditForm/index.js b/lib/cjs/templates/bootstrap3/builderEditForm/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/builderEditForm/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/builderPlaceholder/form.ejs.js b/lib/cjs/templates/bootstrap3/builderPlaceholder/form.ejs.js deleted file mode 100644 index d65454af3..000000000 --- a/lib/cjs/templates/bootstrap3/builderPlaceholder/form.ejs.js +++ /dev/null @@ -1,12 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '\n ' + -((__t = (ctx.t('Drag and Drop a form component'))) == null ? '' : __t) + -'\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/builderPlaceholder/index.d.ts b/lib/cjs/templates/bootstrap3/builderPlaceholder/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/builderPlaceholder/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/builderPlaceholder/index.js b/lib/cjs/templates/bootstrap3/builderPlaceholder/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/builderPlaceholder/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/builderSidebar/form.ejs.js b/lib/cjs/templates/bootstrap3/builderSidebar/form.ejs.js deleted file mode 100644 index d0b9a69e4..000000000 --- a/lib/cjs/templates/bootstrap3/builderSidebar/form.ejs.js +++ /dev/null @@ -1,21 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n \n
    \n '; - ctx.groups.forEach(function(group) { ; -__p += '\n ' + -((__t = ( group )) == null ? '' : __t) + -'\n '; - }) ; -__p += '\n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/builderSidebar/index.d.ts b/lib/cjs/templates/bootstrap3/builderSidebar/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/builderSidebar/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/builderSidebar/index.js b/lib/cjs/templates/bootstrap3/builderSidebar/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/builderSidebar/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/builderSidebarGroup/form.ejs.js b/lib/cjs/templates/bootstrap3/builderSidebarGroup/form.ejs.js deleted file mode 100644 index 40e6cfa03..000000000 --- a/lib/cjs/templates/bootstrap3/builderSidebarGroup/form.ejs.js +++ /dev/null @@ -1,57 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n
    \n
    \n \n ' + -((__t = (ctx.t(ctx.group.title, { _userInput: true }))) == null ? '' : __t) + -'\n \n
    \n
    \n \n
    \n '; - if (ctx.group.componentOrder.length || ctx.subgroups.length) { ; -__p += '\n '; - ctx.group.componentOrder.forEach(function(componentKey) { ; -__p += '\n \n '; - if (ctx.group.components[componentKey].icon) { ; -__p += '\n \n '; - } ; -__p += '\n ' + -((__t = (ctx.t(ctx.group.components[componentKey].title, { _userInput: true }))) == null ? '' : __t) + -'\n \n '; - }) ; -__p += '\n ' + -((__t = (ctx.subgroups.join(''))) == null ? '' : __t) + -'\n '; - } else { ; -__p += '\n
    ' + -((__t = (ctx.t('No Matches Found'))) == null ? '' : __t) + -'
    \n '; - } ; -__p += '\n
    \n
    \n\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/builderSidebarGroup/index.d.ts b/lib/cjs/templates/bootstrap3/builderSidebarGroup/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/builderSidebarGroup/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/builderSidebarGroup/index.js b/lib/cjs/templates/bootstrap3/builderSidebarGroup/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/builderSidebarGroup/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/column-menu/html.ejs.js b/lib/cjs/templates/bootstrap3/column-menu/html.ejs.js deleted file mode 100644 index 4cf52306d..000000000 --- a/lib/cjs/templates/bootstrap3/column-menu/html.ejs.js +++ /dev/null @@ -1,41 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \r\n \r\n
    \r\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/column-menu/index.d.ts b/lib/cjs/templates/bootstrap3/column-menu/index.d.ts deleted file mode 100644 index abb6036cf..000000000 --- a/lib/cjs/templates/bootstrap3/column-menu/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - html: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/column-menu/index.js b/lib/cjs/templates/bootstrap3/column-menu/index.js deleted file mode 100644 index 9b41e1e80..000000000 --- a/lib/cjs/templates/bootstrap3/column-menu/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const html_ejs_1 = require("./html.ejs"); -exports.default = { html: html_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/columns/form.ejs.js b/lib/cjs/templates/bootstrap3/columns/form.ejs.js deleted file mode 100644 index 927aceeb5..000000000 --- a/lib/cjs/templates/bootstrap3/columns/form.ejs.js +++ /dev/null @@ -1,33 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } - - ctx.component.columns.forEach(function(column, index) { ; -__p += '\n
    \n ' + -((__t = (ctx.columnComponents[index])) == null ? '' : __t) + -'\n
    \n'; - }) ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/columns/index.d.ts b/lib/cjs/templates/bootstrap3/columns/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/columns/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/columns/index.js b/lib/cjs/templates/bootstrap3/columns/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/columns/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/cssClasses.d.ts b/lib/cjs/templates/bootstrap3/cssClasses.d.ts deleted file mode 100644 index 2b7ea9e00..000000000 --- a/lib/cjs/templates/bootstrap3/cssClasses.d.ts +++ /dev/null @@ -1,6 +0,0 @@ -declare const _default: { - 'formio-tab-panel-active': string; - 'formio-tab-link-active': string; - 'formio-tab-link-container-active': string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/cssClasses.js b/lib/cjs/templates/bootstrap3/cssClasses.js deleted file mode 100644 index 9232cc85a..000000000 --- a/lib/cjs/templates/bootstrap3/cssClasses.js +++ /dev/null @@ -1,7 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.default = { - 'formio-tab-panel-active': 'active', - 'formio-tab-link-active': 'active', - 'formio-tab-link-container-active': 'active', -}; diff --git a/lib/cjs/templates/bootstrap3/datagrid/form.ejs.js b/lib/cjs/templates/bootstrap3/datagrid/form.ejs.js deleted file mode 100644 index a0e467e7c..000000000 --- a/lib/cjs/templates/bootstrap3/datagrid/form.ejs.js +++ /dev/null @@ -1,129 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n ' + -((__t = ( col.hideLabel ? '' : ctx.t(col.label || col.title, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - if (col.tooltip) { ; -__p += ' '; - } ; -__p += '\n \n '; - }) ; -__p += '\n '; - if (ctx.hasExtraColumn) { ; -__p += '\n \n '; - } ; -__p += '\n \n \n '; - } ; -__p += '\n \n '; - ctx.rows.forEach(function(row, index) { ; -__p += '\n '; - if (ctx.hasGroups && ctx.groups[index]) { ; -__p += '\n \n ' + -((__t = (ctx.groups[index].label)) == null ? '' : __t) + -'\n \n '; - } ; -__p += '\n \n '; - if (ctx.component.reorder) { ; -__p += '\n \n '; - } ; -__p += '\n '; - ctx.columns.forEach(function(col) { ; -__p += '\n \n '; - }) ; -__p += '\n '; - if (ctx.hasExtraColumn) { ; -__p += '\n '; - if (ctx.hasRemoveButtons) { ; -__p += '\n \n '; - } ; -__p += '\n '; - if (ctx.canAddColumn) { ; -__p += '\n \n '; - } ; -__p += '\n '; - } ; -__p += '\n \n '; - }) ; -__p += '\n \n '; - if (ctx.hasAddButton && ctx.hasBottomSubmit) { ; -__p += '\n \n \n \n \n \n '; - } ; -__p += '\n
    \n '; - if (!ctx.builder && ctx.hasAddButton && ctx.hasTopSubmit) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n \n \n ' + -((__t = (row[col.key])) == null ? '' : __t) + -'\n \n \n \n ' + -((__t = (ctx.placeholder)) == null ? '' : __t) + -'\n
    \n \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/datagrid/html.ejs.js b/lib/cjs/templates/bootstrap3/datagrid/html.ejs.js deleted file mode 100644 index a2c9edbdf..000000000 --- a/lib/cjs/templates/bootstrap3/datagrid/html.ejs.js +++ /dev/null @@ -1,49 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n '; - if (hasHeader) { ; -__p += '\n \n \n '; - columns.forEach(function(col) { ; -__p += '\n \n '; - }) ; -__p += '\n \n \n '; - } ; -__p += '\n \n '; - rows.forEach(function(row) { ; -__p += '\n \n '; - columns.forEach(function(col) { ; -__p += '\n \n '; - }) ; -__p += '\n \n '; - }) ; -__p += '\n \n
    \n ' + -((__t = ( col.hideLabel ? '' : t(col.label || col.title) )) == null ? '' : __t) + -'\n '; - if (col.tooltip) { ; -__p += ' '; - } ; -__p += '\n
    \n ' + -((__t = (row[col.key])) == null ? '' : __t) + -'\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/datagrid/index.d.ts b/lib/cjs/templates/bootstrap3/datagrid/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/cjs/templates/bootstrap3/datagrid/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/datagrid/index.js b/lib/cjs/templates/bootstrap3/datagrid/index.js deleted file mode 100644 index 269712cfb..000000000 --- a/lib/cjs/templates/bootstrap3/datagrid/index.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -const html_ejs_1 = require("./html.ejs"); -exports.default = { form: form_ejs_1.default, html: html_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/day/form.ejs.js b/lib/cjs/templates/bootstrap3/day/form.ejs.js deleted file mode 100644 index d336e6a52..000000000 --- a/lib/cjs/templates/bootstrap3/day/form.ejs.js +++ /dev/null @@ -1,81 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - if (ctx.dayFirst && ctx.showDay) { ; -__p += '\n
    \n '; - if (!ctx.component.hideInputLabels) { ; -__p += '\n \n '; - } ; -__p += '\n
    ' + -((__t = (ctx.day)) == null ? '' : __t) + -'
    \n
    \n '; - } ; -__p += '\n '; - if (ctx.showMonth) { ; -__p += '\n
    \n '; - if (!ctx.component.hideInputLabels) { ; -__p += '\n \n '; - } ; -__p += '\n
    ' + -((__t = (ctx.month)) == null ? '' : __t) + -'
    \n
    \n '; - } ; -__p += '\n '; - if (!ctx.dayFirst && ctx.showDay) { ; -__p += '\n
    \n '; - if (!ctx.component.hideInputLabels) { ; -__p += '\n \n '; - } ; -__p += '\n
    ' + -((__t = (ctx.day)) == null ? '' : __t) + -'
    \n
    \n '; - } ; -__p += '\n '; - if (ctx.showYear) { ; -__p += '\n
    \n '; - if (!ctx.component.hideInputLabels) { ; -__p += '\n \n '; - } ; -__p += '\n
    ' + -((__t = (ctx.year)) == null ? '' : __t) + -'
    \n
    \n '; - } ; -__p += '\n
    \n\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/day/index.d.ts b/lib/cjs/templates/bootstrap3/day/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/day/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/day/index.js b/lib/cjs/templates/bootstrap3/day/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/day/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/dialog/form.ejs.js b/lib/cjs/templates/bootstrap3/dialog/form.ejs.js deleted file mode 100644 index cc6286c8d..000000000 --- a/lib/cjs/templates/bootstrap3/dialog/form.ejs.js +++ /dev/null @@ -1,8 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '
    \n
    \n
    \n
    \n \n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/dialog/index.d.ts b/lib/cjs/templates/bootstrap3/dialog/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/dialog/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/dialog/index.js b/lib/cjs/templates/bootstrap3/dialog/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/dialog/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/editgrid/form.ejs.js b/lib/cjs/templates/bootstrap3/editgrid/form.ejs.js deleted file mode 100644 index b6de0f9aa..000000000 --- a/lib/cjs/templates/bootstrap3/editgrid/form.ejs.js +++ /dev/null @@ -1,65 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
      \n '; - if (ctx.header) { ; -__p += '\n
    • \n ' + -((__t = (ctx.header)) == null ? '' : __t) + -'\n
    • \n '; - } ; -__p += '\n '; - ctx.rows.forEach(function(row, rowIndex) { ; -__p += '\n
    • \n ' + -((__t = (row)) == null ? '' : __t) + -'\n '; - if (ctx.openRows[rowIndex] && !ctx.readOnly) { ; -__p += '\n
      \n \n '; - if (ctx.component.removeRow) { ; -__p += '\n \n '; - } ; -__p += '\n
      \n '; - } ; -__p += '\n
      \n
      \n ' + -((__t = (ctx.errors[rowIndex])) == null ? '' : __t) + -'\n
      \n
      \n
    • \n '; - }) ; -__p += '\n '; - if (ctx.footer) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n'; - if (!ctx.readOnly && ctx.hasAddButton) { ; -__p += '\n\n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/editgrid/html.ejs.js b/lib/cjs/templates/bootstrap3/editgrid/html.ejs.js deleted file mode 100644 index 27ee84e53..000000000 --- a/lib/cjs/templates/bootstrap3/editgrid/html.ejs.js +++ /dev/null @@ -1,55 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
      \n '; - if (ctx.header) { ; -__p += '\n
    • \n ' + -((__t = (ctx.header)) == null ? '' : __t) + -'\n
    • \n '; - } ; -__p += '\n '; - ctx.rows.forEach(function(row, rowIndex) { ; -__p += '\n
    • \n ' + -((__t = (row)) == null ? '' : __t) + -'\n '; - if (ctx.openRows[rowIndex] && !ctx.readOnly) { ; -__p += '\n
      \n \n '; - if (ctx.component.removeRow) { ; -__p += '\n \n '; - } ; -__p += '\n
      \n '; - } ; -__p += '\n
      \n
      \n ' + -((__t = (ctx.errors[rowIndex])) == null ? '' : __t) + -'\n
      \n
      \n
    • \n '; - }) ; -__p += '\n '; - if (ctx.footer) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/editgrid/index.d.ts b/lib/cjs/templates/bootstrap3/editgrid/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/cjs/templates/bootstrap3/editgrid/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/editgrid/index.js b/lib/cjs/templates/bootstrap3/editgrid/index.js deleted file mode 100644 index 269712cfb..000000000 --- a/lib/cjs/templates/bootstrap3/editgrid/index.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -const html_ejs_1 = require("./html.ejs"); -exports.default = { form: form_ejs_1.default, html: html_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/errorsList/form.ejs.js b/lib/cjs/templates/bootstrap3/errorsList/form.ejs.js deleted file mode 100644 index b2cd40c76..000000000 --- a/lib/cjs/templates/bootstrap3/errorsList/form.ejs.js +++ /dev/null @@ -1,23 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '

    ' + -((__t = (ctx.t('error'))) == null ? '' : __t) + -'

    \n
      \n '; - ctx.errors.forEach(function(err) { ; -__p += '\n ' + -((__t = (err.message)) == null ? '' : __t) + -'\n '; - }) ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/errorsList/index.d.ts b/lib/cjs/templates/bootstrap3/errorsList/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/errorsList/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/errorsList/index.js b/lib/cjs/templates/bootstrap3/errorsList/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/errorsList/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/field/align.ejs.js b/lib/cjs/templates/bootstrap3/field/align.ejs.js deleted file mode 100644 index df28e3263..000000000 --- a/lib/cjs/templates/bootstrap3/field/align.ejs.js +++ /dev/null @@ -1,41 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - if (!ctx.label.hidden) { ; -__p += '\n
    \n ' + -((__t = ( ctx.labelMarkup )) == null ? '' : __t) + -'\n
    \n '; - } ; -__p += '\n\n '; - if (ctx.label.hidden && ctx.label.className && ctx.component.validate.required) { ; -__p += '\n
    \n \n
    \n '; - } ; -__p += '\n\n
    \n ' + -((__t = (ctx.element)) == null ? '' : __t) + -'\n
    \n
    \n\n'; - if (ctx.component.description) { ; -__p += '\n
    ' + -((__t = (ctx.t(ctx.component.description, { _userInput: true }))) == null ? '' : __t) + -'
    \n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/field/form.ejs.js b/lib/cjs/templates/bootstrap3/field/form.ejs.js deleted file mode 100644 index e64b8da5b..000000000 --- a/lib/cjs/templates/bootstrap3/field/form.ejs.js +++ /dev/null @@ -1,35 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } - - if (!ctx.label.hidden && ctx.label.labelPosition !== 'bottom') { ; -__p += '\n ' + -((__t = ( ctx.labelMarkup )) == null ? '' : __t) + -'\n'; - } ; -__p += '\n\n'; - if (ctx.label.hidden && ctx.label.className && ctx.component.validate.required) { ; -__p += '\n \n'; - } ; -__p += '\n\n' + -((__t = (ctx.element)) == null ? '' : __t) + -'\n'; - if (!ctx.label.hidden && ctx.label.labelPosition === 'bottom') { ; -__p += '\n ' + -((__t = ( ctx.labelMarkup )) == null ? '' : __t) + -'\n'; - } ; -__p += '\n'; - if (ctx.component.description) { ; -__p += '\n
    ' + -((__t = (ctx.t(ctx.component.description, { _userInput: true }))) == null ? '' : __t) + -'
    \n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/field/index.d.ts b/lib/cjs/templates/bootstrap3/field/index.d.ts deleted file mode 100644 index 43ed667c0..000000000 --- a/lib/cjs/templates/bootstrap3/field/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - align: string; - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/field/index.js b/lib/cjs/templates/bootstrap3/field/index.js deleted file mode 100644 index 974083560..000000000 --- a/lib/cjs/templates/bootstrap3/field/index.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const align_ejs_1 = require("./align.ejs"); -const form_ejs_1 = require("./form.ejs"); -exports.default = { align: align_ejs_1.default, form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/file/form.ejs.js b/lib/cjs/templates/bootstrap3/file/form.ejs.js deleted file mode 100644 index ca8971f40..000000000 --- a/lib/cjs/templates/bootstrap3/file/form.ejs.js +++ /dev/null @@ -1,201 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } - - if (!ctx.self.imageUpload) { ; -__p += '\n
      \n \n '; - ctx.files.forEach(function(file) { ; -__p += '\n
    • \n
      \n '; - if (!ctx.disabled) { ; -__p += '\n
      \n '; - } ; -__p += '\n
      \n '; - if (ctx.component.uploadOnly) { ; -__p += '\n ' + -((__t = (file.originalName || file.name)) == null ? '' : __t) + -'\n '; - } else { ; -__p += '\n ' + -((__t = (file.originalName || file.name)) == null ? '' : __t) + -'\n '; - } ; -__p += '\n
      \n
      ' + -((__t = (ctx.fileSize(file.size))) == null ? '' : __t) + -'
      \n '; - if (ctx.self.hasTypes && !ctx.disabled) { ; -__p += '\n
      \n \n
      \n '; - } ; -__p += '\n '; - if (ctx.self.hasTypes && ctx.disabled) { ; -__p += '\n
      ' + -((__t = (file.fileType)) == null ? '' : __t) + -'
      \n '; - } ; -__p += '\n
      \n
    • \n '; - }) ; -__p += '\n
    \n'; - } else { ; -__p += '\n
    \n '; - ctx.files.forEach(function(file) { ; -__p += '\n
    \n \n ' +
-((__t = (file.originalName || file.name)) == null ? '' : __t) +
-'\n '; - if (!ctx.disabled) { ; -__p += '\n \n '; - } ; -__p += '\n \n
    \n '; - }) ; -__p += '\n
    \n'; - } ; -__p += '\n'; - if (!ctx.disabled && (ctx.component.multiple || !ctx.files.length)) { ; -__p += '\n '; - if (ctx.self.useWebViewCamera) { ; -__p += '\n
    \n \n \n
    \n '; - } else if (!ctx.self.cameraMode) { ; -__p += '\n
    \n ' + -((__t = (ctx.t('Drop files to attach,'))) == null ? '' : __t) + -'\n '; - if (ctx.self.imageUpload && ctx.component.webcam) { ; -__p += '\n ' + -((__t = (ctx.t('Use Camera,'))) == null ? '' : __t) + -'\n '; - } ; -__p += '\n ' + -((__t = (ctx.t('or'))) == null ? '' : __t) + -' ' + -((__t = (ctx.t('browse'))) == null ? '' : __t) + -'\n
    \n '; - } else { ; -__p += '\n
    \n \n
    \n \n \n '; - } ; -__p += '\n'; - } ; -__p += '\n'; - ctx.statuses.forEach(function(status) { ; -__p += '\n
    \n
    \n
    ' + -((__t = (status.originalName)) == null ? '' : __t) + -'
    \n
    ' + -((__t = (ctx.fileSize(status.size))) == null ? '' : __t) + -'
    \n
    \n
    \n
    \n '; - if (status.status === 'progress') { ; -__p += '\n
    \n
    \n ' + -((__t = (status.progress)) == null ? '' : __t) + -'% ' + -((__t = (ctx.t('Complete'))) == null ? '' : __t) + -'\n
    \n
    \n '; - } else if (status.status === 'error'){ ; -__p += '\n
    ' + -((__t = (ctx.t(status.message))) == null ? '' : __t) + -'
    \n '; - } else { ; -__p += '\n
    ' + -((__t = (ctx.t(status.message))) == null ? '' : __t) + -'
    \n '; - } ; -__p += '\n
    \n
    \n
    \n'; - }) ; -__p += '\n'; - if (!ctx.component.storage || ctx.support.hasWarning) { ; -__p += '\n
    \n '; - if (!ctx.component.storage) { ; -__p += '\n

    ' + -((__t = (ctx.t('No storage has been set for this field. File uploads are disabled until storage is set up.'))) == null ? '' : __t) + -'

    \n '; - } ; -__p += '\n '; - if (!ctx.support.filereader) { ; -__p += '\n

    ' + -((__t = (ctx.t('File API & FileReader API not supported.'))) == null ? '' : __t) + -'

    \n '; - } ; -__p += '\n '; - if (!ctx.support.formdata) { ; -__p += '\n

    ' + -((__t = (ctx.t("XHR2's FormData is not supported."))) == null ? '' : __t) + -'

    \n '; - } ; -__p += '\n '; - if (!ctx.support.progress) { ; -__p += '\n

    ' + -((__t = (ctx.t("XHR2's upload progress isn't supported."))) == null ? '' : __t) + -'

    \n '; - } ; -__p += '\n
    \n'; - } ; - -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/file/index.d.ts b/lib/cjs/templates/bootstrap3/file/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/file/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/file/index.js b/lib/cjs/templates/bootstrap3/file/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/file/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/grid/html.ejs.js b/lib/cjs/templates/bootstrap3/grid/html.ejs.js deleted file mode 100644 index ff487bd78..000000000 --- a/lib/cjs/templates/bootstrap3/grid/html.ejs.js +++ /dev/null @@ -1,77 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n
    \n \n \n \n
    \n '; - if (ctx.component.enableRowSelect) { ; -__p += '\n
    \n '; - if (ctx.selectedRows) { ; -__p += '\n ' + -((__t = (ctx.selectedRows)) == null ? '' : __t) + -' selected\n '; - } ; -__p += '\n
    \n '; - } ; -__p += '\n
    \n
    \n
    \n
    \n
    \n
    \n \n \n \n '; - if (!ctx.component.components.length) { ; -__p += '\n \n '; - } ; -__p += '\n '; - if (ctx.component.enableRowSelect) { ; -__p += '\n \n '; - } ; -__p += '\n '; - ctx.component.components.forEach(function(comp, i) { ; -__p += '\n '; - if (comp.show) { ; -__p += '\n \n '; - } ; -__p += '\n '; - }); ; -__p += '\n '; - if ((ctx.component.showEditBtn || ctx.component.showDeleteBtn || ctx.component.showDeleteAllBtn) - && ctx.data.length - && !ctx.options.pdf) { ; -__p += '\n \n '; - } ; -__p += '\n \n \n \n
    No components have been set up to display in the Data Table. "Table View" must be checked for components to render.\n \n (' + -((__t = (ctx.selectedRows)) == null ? '' : __t) + -' of )\n \n ' + -((__t = ( comp.label || comp.key )) == null ? '' : __t) + -'\n '; - if (ctx.options.sortable && comp.sortable) { ; -__p += '\n \n ' + -((__t = ( ctx.component.sort.isAsc ? '↑' : '↓' )) == null ? '' : __t) + -'\n \n '; - } ; -__p += '\n '; - if (!ctx.options.hideMenu) { ; -__p += '\n \n \n \n '; - } ; -__p += '\n \n
    \n Actions\n '; - if (ctx.component.showDeleteAllBtn && ctx.data.length) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n
    \n
    \n
    \n
    \n '; - if (ctx.component.showAddBtn && !ctx.options.pdf) { ; -__p += '\n
    +
    \n '; - } ; -__p += '\n
    \n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/grid/index.d.ts b/lib/cjs/templates/bootstrap3/grid/index.d.ts deleted file mode 100644 index abb6036cf..000000000 --- a/lib/cjs/templates/bootstrap3/grid/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - html: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/grid/index.js b/lib/cjs/templates/bootstrap3/grid/index.js deleted file mode 100644 index 9b41e1e80..000000000 --- a/lib/cjs/templates/bootstrap3/grid/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const html_ejs_1 = require("./html.ejs"); -exports.default = { html: html_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/icon/form.ejs.js b/lib/cjs/templates/bootstrap3/icon/form.ejs.js deleted file mode 100644 index cc7a59b5a..000000000 --- a/lib/cjs/templates/bootstrap3/icon/form.ejs.js +++ /dev/null @@ -1,16 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '' + -((__t = (ctx.content)) == null ? '' : __t) + -'\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/icon/index.d.ts b/lib/cjs/templates/bootstrap3/icon/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/icon/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/icon/index.js b/lib/cjs/templates/bootstrap3/icon/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/icon/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/iconClass.d.ts b/lib/cjs/templates/bootstrap3/iconClass.d.ts deleted file mode 100644 index 2525836d8..000000000 --- a/lib/cjs/templates/bootstrap3/iconClass.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -declare const _default: (iconset: any, name: any, spinning: any) => string; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/iconClass.js b/lib/cjs/templates/bootstrap3/iconClass.js deleted file mode 100644 index 16e71c743..000000000 --- a/lib/cjs/templates/bootstrap3/iconClass.js +++ /dev/null @@ -1,37 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.default = (iconset, name, spinning) => { - if (iconset === 'fa') { - switch (name) { - case 'save': - name = 'download'; - break; - case 'zoom-in': - name = 'search-plus'; - break; - case 'zoom-out': - name = 'search-minus'; - break; - case 'question-sign': - name = 'question-circle'; - break; - case 'remove-circle': - case 'circle-xmark': - name = 'times-circle-o'; - break; - case 'new-window': - name = 'window-restore'; - break; - case 'move': - name = 'arrows'; - break; - case 'ok-sign': - name = 'check-circle'; - break; - case 'remove-sign': - name = 'times-circle'; - break; - } - } - return spinning ? `${iconset} ${iconset}-${name} ${iconset}-spin` : `${iconset} ${iconset}-${name}`; -}; diff --git a/lib/cjs/templates/bootstrap3/index.d.ts b/lib/cjs/templates/bootstrap3/index.d.ts deleted file mode 100644 index 4ef2712ca..000000000 --- a/lib/cjs/templates/bootstrap3/index.d.ts +++ /dev/null @@ -1,148 +0,0 @@ -declare const _default: { - transform(type: any, text: any): any; - handleBuilderSidebarScroll(builder: any): void; - clearBuilderSidebarScroll(builder: any): void; - defaultIconset: string; - iconClass: (iconset: any, name: any, spinning: any) => string; - cssClasses: { - 'formio-tab-panel-active': string; - 'formio-tab-link-active': string; - 'formio-tab-link-container-active': string; - }; - builder: { - form: string; - }; - builderComponent: { - form: string; - }; - builderComponents: { - form: string; - }; - builderEditForm: { - form: string; - }; - builderPlaceholder: { - form: string; - }; - builderSidebar: { - form: string; - }; - builderSidebarGroup: { - form: string; - }; - columns: { - form: string; - }; - datagrid: { - form: string; - html: string; - }; - day: { - form: string; - }; - dialog: { - form: string; - }; - editgrid: { - form: string; - html: string; - }; - field: { - align: string; - form: string; - }; - file: { - form: string; - }; - icon: { - form: string; - }; - input: { - form: string; - html: string; - }; - label: { - form: string; - }; - message: { - form: string; - }; - modaldialog: { - form: string; - }; - modaledit: { - form: string; - }; - multiValueRow: { - form: string; - }; - multiValueTable: { - form: string; - }; - panel: { - form: string; - }; - radio: { - form: string; - html: string; - }; - resourceAdd: { - form: string; - }; - signature: { - form: string; - html: string; - }; - survey: { - form: string; - html: string; - }; - tab: { - flat: string; - form: string; - }; - table: { - form: string; - }; - well: { - form: string; - }; - wizard: { - form: string; - builder: string; - }; - wizardHeader: { - form: string; - }; - wizardHeaderClassic: { - form: string; - }; - wizardHeaderVertical: { - form: string; - }; - wizardNav: { - form: string; - }; - errorsList: { - form: string; - }; - alert: { - form: string; - }; - grid: { - html: string; - }; - pagination: { - html: string; - }; - columnMenu: { - html: string; - }; - tbody: { - html: string; - }; - paginationBottom: { - html: string; - }; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/index.js b/lib/cjs/templates/bootstrap3/index.js deleted file mode 100644 index c8cd21e6b..000000000 --- a/lib/cjs/templates/bootstrap3/index.js +++ /dev/null @@ -1,127 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const builder_1 = require("./builder"); -const builderComponent_1 = require("./builderComponent"); -const builderComponents_1 = require("./builderComponents"); -const builderEditForm_1 = require("./builderEditForm"); -const builderPlaceholder_1 = require("./builderPlaceholder"); -const builderSidebar_1 = require("./builderSidebar"); -const builderSidebarGroup_1 = require("./builderSidebarGroup"); -const columns_1 = require("./columns"); -const cssClasses_1 = require("./cssClasses"); -const datagrid_1 = require("./datagrid"); -const day_1 = require("./day"); -const dialog_1 = require("./dialog"); -const editgrid_1 = require("./editgrid"); -const field_1 = require("./field"); -const file_1 = require("./file"); -const icon_1 = require("./icon"); -const iconClass_1 = require("./iconClass"); -const input_1 = require("./input"); -const label_1 = require("./label"); -const message_1 = require("./message"); -const modaldialog_1 = require("./modaldialog"); -const modaledit_1 = require("./modaledit"); -const multiValueRow_1 = require("./multiValueRow"); -const multiValueTable_1 = require("./multiValueTable"); -const panel_1 = require("./panel"); -const radio_1 = require("./radio"); -const resourceAdd_1 = require("./resourceAdd"); -const signature_1 = require("./signature"); -const survey_1 = require("./survey"); -const tab_1 = require("./tab"); -const table_1 = require("./table"); -const well_1 = require("./well"); -const wizard_1 = require("./wizard"); -const wizardHeader_1 = require("./wizardHeader"); -const wizardHeaderClassic_1 = require("./wizardHeaderClassic"); -const wizardHeaderVertical_1 = require("./wizardHeaderVertical"); -const wizardNav_1 = require("./wizardNav"); -const alert_1 = require("./alert"); -const errorsList_1 = require("./errorsList"); -const grid_1 = require("./grid"); -const pagination_1 = require("./pagination"); -const column_menu_1 = require("./column-menu"); -const tbody_1 = require("./tbody"); -const pagination_bottom_1 = require("./pagination-bottom"); -exports.default = { - transform(type, text) { - if (!text) { - return text; - } - switch (type) { - case 'class': - return this.cssClasses.hasOwnProperty(text.toString()) ? this.cssClasses[text.toString()] : text; - } - return text; - }, - handleBuilderSidebarScroll(builder) { - if (builder.scrollResizeObserver) { - builder.scrollResizeObserver.disconnect(); - } - builder.scrollResizeObserver = new ResizeObserver(() => { - setTimeout(() => { - const { form, sidebar } = builder.refs; - const formHeight = form && form.parentNode && form.parentNode.clientHeight; - const sidebarHeight = sidebar && sidebar.clientHeight; - const style = sidebar && sidebar.parentNode && sidebar.parentNode.style; - if (style && formHeight && sidebarHeight) { - style.height = `${Math.max(sidebarHeight + 20, formHeight)}px`; - } - }); - }); - builder.scrollResizeObserver.observe(builder.refs.form); - builder.scrollResizeObserver.observe(builder.refs.sidebar); - }, - clearBuilderSidebarScroll(builder) { - if (builder.scrollResizeObserver) { - builder.scrollResizeObserver.disconnect(); - builder.scrollResizeObserver = null; - } - }, - defaultIconset: 'glyphicon', - iconClass: iconClass_1.default, - cssClasses: cssClasses_1.default, - builder: builder_1.default, - builderComponent: builderComponent_1.default, - builderComponents: builderComponents_1.default, - builderEditForm: builderEditForm_1.default, - builderPlaceholder: builderPlaceholder_1.default, - builderSidebar: builderSidebar_1.default, - builderSidebarGroup: builderSidebarGroup_1.default, - columns: columns_1.default, - datagrid: datagrid_1.default, - day: day_1.default, - dialog: dialog_1.default, - editgrid: editgrid_1.default, - field: field_1.default, - file: file_1.default, - icon: icon_1.default, - input: input_1.default, - label: label_1.default, - message: message_1.default, - modaldialog: modaldialog_1.default, - modaledit: modaledit_1.default, - multiValueRow: multiValueRow_1.default, - multiValueTable: multiValueTable_1.default, - panel: panel_1.default, - radio: radio_1.default, - resourceAdd: resourceAdd_1.default, - signature: signature_1.default, - survey: survey_1.default, - tab: tab_1.default, - table: table_1.default, - well: well_1.default, - wizard: wizard_1.default, - wizardHeader: wizardHeader_1.default, - wizardHeaderClassic: wizardHeaderClassic_1.default, - wizardHeaderVertical: wizardHeaderVertical_1.default, - wizardNav: wizardNav_1.default, - errorsList: errorsList_1.default, - alert: alert_1.default, - grid: grid_1.default, - pagination: pagination_1.default, - columnMenu: column_menu_1.default, - tbody: tbody_1.default, - paginationBottom: pagination_bottom_1.default -}; diff --git a/lib/cjs/templates/bootstrap3/input/form.ejs.js b/lib/cjs/templates/bootstrap3/input/form.ejs.js deleted file mode 100644 index 753114f9a..000000000 --- a/lib/cjs/templates/bootstrap3/input/form.ejs.js +++ /dev/null @@ -1,85 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } - - if (ctx.prefix || ctx.suffix) { ; -__p += '\n
    \n '; - } ; -__p += '\n '; - if (ctx.prefix) { ; -__p += '\n
    \n '; - if(ctx.prefix instanceof HTMLElement){ ; -__p += '\n ' + -((__t = ( ctx.t(ctx.prefix.outerHTML, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - } else{ ; -__p += '\n ' + -((__t = ( ctx.t(ctx.prefix, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - } ; -__p += '\n
    \n '; - } ; -__p += '\n '; - if (!ctx.component.editor && !ctx.component.wysiwyg) { ; -__p += '\n <' + -((__t = (ctx.input.type)) == null ? '' : __t) + -'\n ref="' + -((__t = (ctx.input.ref ? ctx.input.ref : 'input')) == null ? '' : __t) + -'"\n '; - for (var attr in ctx.input.attr) { ; -__p += '\n ' + -((__t = (attr)) == null ? '' : __t) + -'="' + -((__t = (ctx.input.attr[attr])) == null ? '' : __t) + -'"\n '; - } ; -__p += '\n id="' + -((__t = (ctx.instance.id)) == null ? '' : __t) + -'-' + -((__t = (ctx.component.key)) == null ? '' : __t) + -'"\n >' + -((__t = (ctx.input.content)) == null ? '' : __t) + -'\n '; - if (ctx.hasValueMaskInput) { ; -__p += '\n \n '; - } ; -__p += '\n'; - } ; -__p += '\n'; - if (ctx.component.editor || ctx.component.wysiwyg) { ; -__p += '\n
    \n'; - } ; -__p += '\n'; - if (ctx.suffix) { ; -__p += '\n
    \n '; - if(ctx.suffix instanceof HTMLElement){ ; -__p += '\n ' + -((__t = ( ctx.t(ctx.suffix.outerHTML, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - } else{ ; -__p += '\n ' + -((__t = ( ctx.t(ctx.suffix, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - } ; -__p += '\n
    \n'; - } ; -__p += '\n'; - if (ctx.prefix || ctx.suffix) { ; -__p += '\n
    \n'; - } ; -__p += '\n'; - if (ctx.component.showCharCount) { ; -__p += '\n\n'; - } ; -__p += '\n'; - if (ctx.component.showWordCount) { ; -__p += '\n\n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/input/html.ejs.js b/lib/cjs/templates/bootstrap3/input/html.ejs.js deleted file mode 100644 index 5979e1694..000000000 --- a/lib/cjs/templates/bootstrap3/input/html.ejs.js +++ /dev/null @@ -1,16 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    '; - if (ctx.value) { ; -__p += -((__t = (ctx.value)) == null ? '' : __t); - } else { ; -__p += '-'; - } ; -__p += '
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/input/index.d.ts b/lib/cjs/templates/bootstrap3/input/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/cjs/templates/bootstrap3/input/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/input/index.js b/lib/cjs/templates/bootstrap3/input/index.js deleted file mode 100644 index 269712cfb..000000000 --- a/lib/cjs/templates/bootstrap3/input/index.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -const html_ejs_1 = require("./html.ejs"); -exports.default = { form: form_ejs_1.default, html: html_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/label/form.ejs.js b/lib/cjs/templates/bootstrap3/label/form.ejs.js deleted file mode 100644 index 253b9861d..000000000 --- a/lib/cjs/templates/bootstrap3/label/form.ejs.js +++ /dev/null @@ -1,29 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n '; - if (!ctx.label.hidden) { ; -__p += '\n ' + -((__t = ( ctx.t(ctx.component.label, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - if (ctx.component.tooltip) { ; -__p += '\n \n '; - } ; -__p += '\n '; - } ; -__p += '\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/label/index.d.ts b/lib/cjs/templates/bootstrap3/label/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/label/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/label/index.js b/lib/cjs/templates/bootstrap3/label/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/label/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/message/form.ejs.js b/lib/cjs/templates/bootstrap3/message/form.ejs.js deleted file mode 100644 index 871d76417..000000000 --- a/lib/cjs/templates/bootstrap3/message/form.ejs.js +++ /dev/null @@ -1,12 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '

    ' + -((__t = (ctx.message)) == null ? '' : __t) + -'

    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/message/index.d.ts b/lib/cjs/templates/bootstrap3/message/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/message/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/message/index.js b/lib/cjs/templates/bootstrap3/message/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/message/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/modaldialog/form.ejs.js b/lib/cjs/templates/bootstrap3/modaldialog/form.ejs.js deleted file mode 100644 index 05037b061..000000000 --- a/lib/cjs/templates/bootstrap3/modaldialog/form.ejs.js +++ /dev/null @@ -1,10 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '
    \n
    \n
    \n \n ' + -((__t = (ctx.t('Close'))) == null ? '' : __t) + -'\n \n
    \n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/modaldialog/index.d.ts b/lib/cjs/templates/bootstrap3/modaldialog/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/modaldialog/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/modaldialog/index.js b/lib/cjs/templates/bootstrap3/modaldialog/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/modaldialog/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/modaledit/form.ejs.js b/lib/cjs/templates/bootstrap3/modaledit/form.ejs.js deleted file mode 100644 index 981e78686..000000000 --- a/lib/cjs/templates/bootstrap3/modaledit/form.ejs.js +++ /dev/null @@ -1,12 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '
    \n \n \n \n
    ' + -((__t = (ctx.content)) == null ? '' : __t) + -'
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/modaledit/index.d.ts b/lib/cjs/templates/bootstrap3/modaledit/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/modaledit/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/modaledit/index.js b/lib/cjs/templates/bootstrap3/modaledit/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/modaledit/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/multiValueRow/form.ejs.js b/lib/cjs/templates/bootstrap3/multiValueRow/form.ejs.js deleted file mode 100644 index 2c3f01bb3..000000000 --- a/lib/cjs/templates/bootstrap3/multiValueRow/form.ejs.js +++ /dev/null @@ -1,17 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n \n ' + -((__t = (ctx.element)) == null ? '' : __t) + -'\n \n '; - if (!ctx.disabled) { ; -__p += '\n \n \n \n '; - } ; -__p += '\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/multiValueRow/index.d.ts b/lib/cjs/templates/bootstrap3/multiValueRow/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/multiValueRow/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/multiValueRow/index.js b/lib/cjs/templates/bootstrap3/multiValueRow/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/multiValueRow/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/multiValueTable/form.ejs.js b/lib/cjs/templates/bootstrap3/multiValueTable/form.ejs.js deleted file mode 100644 index 7635cc0a9..000000000 --- a/lib/cjs/templates/bootstrap3/multiValueTable/form.ejs.js +++ /dev/null @@ -1,19 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n \n ' + -((__t = (ctx.rows)) == null ? '' : __t) + -'\n '; - if (!ctx.disabled) { ; -__p += '\n \n \n \n '; - } ; -__p += '\n \n
    \n \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/multiValueTable/index.d.ts b/lib/cjs/templates/bootstrap3/multiValueTable/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/multiValueTable/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/multiValueTable/index.js b/lib/cjs/templates/bootstrap3/multiValueTable/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/multiValueTable/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/pagination-bottom/html.ejs.js b/lib/cjs/templates/bootstrap3/pagination-bottom/html.ejs.js deleted file mode 100644 index 13bdd3622..000000000 --- a/lib/cjs/templates/bootstrap3/pagination-bottom/html.ejs.js +++ /dev/null @@ -1,8 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '
    \n \n
    '; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/pagination-bottom/index.d.ts b/lib/cjs/templates/bootstrap3/pagination-bottom/index.d.ts deleted file mode 100644 index abb6036cf..000000000 --- a/lib/cjs/templates/bootstrap3/pagination-bottom/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - html: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/pagination-bottom/index.js b/lib/cjs/templates/bootstrap3/pagination-bottom/index.js deleted file mode 100644 index 9b41e1e80..000000000 --- a/lib/cjs/templates/bootstrap3/pagination-bottom/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const html_ejs_1 = require("./html.ejs"); -exports.default = { html: html_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/pagination/html.ejs.js b/lib/cjs/templates/bootstrap3/pagination/html.ejs.js deleted file mode 100644 index 6b01cbd1f..000000000 --- a/lib/cjs/templates/bootstrap3/pagination/html.ejs.js +++ /dev/null @@ -1,12 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/pagination/index.d.ts b/lib/cjs/templates/bootstrap3/pagination/index.d.ts deleted file mode 100644 index abb6036cf..000000000 --- a/lib/cjs/templates/bootstrap3/pagination/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - html: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/pagination/index.js b/lib/cjs/templates/bootstrap3/pagination/index.js deleted file mode 100644 index 9b41e1e80..000000000 --- a/lib/cjs/templates/bootstrap3/pagination/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const html_ejs_1 = require("./html.ejs"); -exports.default = { html: html_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/panel/form.ejs.js b/lib/cjs/templates/bootstrap3/panel/form.ejs.js deleted file mode 100644 index 82f01589d..000000000 --- a/lib/cjs/templates/bootstrap3/panel/form.ejs.js +++ /dev/null @@ -1,57 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - if (!ctx.component.hideLabel || ctx.builder || ctx.component.collapsible || ctx.component.tooltip) { ; -__p += '\n
    \n

    \n '; - if (ctx.component.collapsible) { ; -__p += '\n \n '; - } ; -__p += '\n '; - if (!ctx.component.hideLabel || ctx.builder) { ; -__p += '\n ' + -((__t = (ctx.t(ctx.component.title, { _userInput: true }))) == null ? '' : __t) + -'\n '; - } ; -__p += '\n '; - if (ctx.component.tooltip) { ; -__p += '\n \n '; - } ; -__p += '\n

    \n
    \n '; - } ; -__p += '\n '; - if (!ctx.collapsed || ctx.builder) { ; -__p += '\n
    \n ' + -((__t = (ctx.children)) == null ? '' : __t) + -'\n
    \n '; - } ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/panel/index.d.ts b/lib/cjs/templates/bootstrap3/panel/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/panel/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/panel/index.js b/lib/cjs/templates/bootstrap3/panel/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/panel/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/pdf/form.ejs.js b/lib/cjs/templates/bootstrap3/pdf/form.ejs.js deleted file mode 100644 index 3dee64947..000000000 --- a/lib/cjs/templates/bootstrap3/pdf/form.ejs.js +++ /dev/null @@ -1,16 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '
    \n \n \n \n \n \n \n
    \n ' + -((__t = ( ctx.submitButton )) == null ? '' : __t) + -'\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/pdf/index.d.ts b/lib/cjs/templates/bootstrap3/pdf/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/pdf/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/pdf/index.js b/lib/cjs/templates/bootstrap3/pdf/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/pdf/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/radio/form.ejs.js b/lib/cjs/templates/bootstrap3/radio/form.ejs.js deleted file mode 100644 index 693c75f0e..000000000 --- a/lib/cjs/templates/bootstrap3/radio/form.ejs.js +++ /dev/null @@ -1,67 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - ctx.values.forEach(function(item, index) { ; -__p += '\n
    \n \n
    \n '; - }) ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/radio/html.ejs.js b/lib/cjs/templates/bootstrap3/radio/html.ejs.js deleted file mode 100644 index b3c7f8685..000000000 --- a/lib/cjs/templates/bootstrap3/radio/html.ejs.js +++ /dev/null @@ -1,13 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - var filtered = ctx.values.filter(function(item) {return ctx.value === item.value || (typeof ctx.value === 'object' && ctx.value.hasOwnProperty(item.value) && ctx.value[item.value])}).map(function(item) { return ctx.t(item.label, { _userInput: true })}).join(', ') ; -__p += '\n ' + -((__t = (filtered)) == null ? '' : __t) + -'\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/radio/index.d.ts b/lib/cjs/templates/bootstrap3/radio/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/cjs/templates/bootstrap3/radio/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/radio/index.js b/lib/cjs/templates/bootstrap3/radio/index.js deleted file mode 100644 index 269712cfb..000000000 --- a/lib/cjs/templates/bootstrap3/radio/index.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -const html_ejs_1 = require("./html.ejs"); -exports.default = { form: form_ejs_1.default, html: html_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/resourceAdd/form.ejs.js b/lib/cjs/templates/bootstrap3/resourceAdd/form.ejs.js deleted file mode 100644 index b6af540e4..000000000 --- a/lib/cjs/templates/bootstrap3/resourceAdd/form.ejs.js +++ /dev/null @@ -1,14 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '\n \n \n \n \n \n \n \n \n
    \n ' + -((__t = (ctx.element)) == null ? '' : __t) + -'\n
    \n \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/resourceAdd/index.d.ts b/lib/cjs/templates/bootstrap3/resourceAdd/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/resourceAdd/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/resourceAdd/index.js b/lib/cjs/templates/bootstrap3/resourceAdd/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/resourceAdd/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/signature/form.ejs.js b/lib/cjs/templates/bootstrap3/signature/form.ejs.js deleted file mode 100644 index 0cc9a0516..000000000 --- a/lib/cjs/templates/bootstrap3/signature/form.ejs.js +++ /dev/null @@ -1,33 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += -((__t = (ctx.element)) == null ? '' : __t) + -'\n\n\n \n \n \n \n '; - if (ctx.required) { ; -__p += '\n \n '; - } ; -__p += '\n \n\n'; - if (ctx.component.footer) { ; -__p += '\n \n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/signature/html.ejs.js b/lib/cjs/templates/bootstrap3/signature/html.ejs.js deleted file mode 100644 index 5e1ec4ccf..000000000 --- a/lib/cjs/templates/bootstrap3/signature/html.ejs.js +++ /dev/null @@ -1,8 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/signature/index.d.ts b/lib/cjs/templates/bootstrap3/signature/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/cjs/templates/bootstrap3/signature/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/signature/index.js b/lib/cjs/templates/bootstrap3/signature/index.js deleted file mode 100644 index 269712cfb..000000000 --- a/lib/cjs/templates/bootstrap3/signature/index.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -const html_ejs_1 = require("./html.ejs"); -exports.default = { form: form_ejs_1.default, html: html_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/survey/form.ejs.js b/lib/cjs/templates/bootstrap3/survey/form.ejs.js deleted file mode 100644 index a835b1d67..000000000 --- a/lib/cjs/templates/bootstrap3/survey/form.ejs.js +++ /dev/null @@ -1,51 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n \n \n \n '; - ctx.component.values.forEach(function(value) { ; -__p += '\n \n '; - }) ; -__p += '\n \n \n \n '; - ctx.component.questions.forEach(function(question) { ; -__p += '\n \n \n '; - ctx.component.values.forEach(function(value) { ; -__p += '\n \n '; - }) ; -__p += '\n \n '; - }) ; -__p += '\n \n
    \n ' + -((__t = (ctx.t(value.label))) == null ? '' : __t) + -'\n '; - if (value.tooltip) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n ' + -((__t = (ctx.t(question.label))) == null ? '' : __t) + -'\n '; - if (question.tooltip) { ; -__p += '\n \n '; - } ; -__p += '\n \n \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/survey/html.ejs.js b/lib/cjs/templates/bootstrap3/survey/html.ejs.js deleted file mode 100644 index 46923db7d..000000000 --- a/lib/cjs/templates/bootstrap3/survey/html.ejs.js +++ /dev/null @@ -1,25 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n \n '; - ctx.component.questions.forEach(function(question) { ; -__p += '\n \n \n \n \n '; - }) ; -__p += '\n \n
    ' + -((__t = (ctx.t(question.label))) == null ? '' : __t) + -'\n '; - ctx.component.values.forEach(function(item) { ; -__p += '\n '; - if (ctx.value && ctx.value.hasOwnProperty(question.value) && ctx.value[question.value] === item.value) { ; -__p += '\n ' + -((__t = (ctx.t(item.label))) == null ? '' : __t) + -'\n '; - } ; -__p += '\n '; - }) ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/survey/index.d.ts b/lib/cjs/templates/bootstrap3/survey/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/cjs/templates/bootstrap3/survey/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/survey/index.js b/lib/cjs/templates/bootstrap3/survey/index.js deleted file mode 100644 index 269712cfb..000000000 --- a/lib/cjs/templates/bootstrap3/survey/index.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -const html_ejs_1 = require("./html.ejs"); -exports.default = { form: form_ejs_1.default, html: html_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/tab/flat.ejs.js b/lib/cjs/templates/bootstrap3/tab/flat.ejs.js deleted file mode 100644 index 84dacf494..000000000 --- a/lib/cjs/templates/bootstrap3/tab/flat.ejs.js +++ /dev/null @@ -1,19 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } - - ctx.component.components.forEach(function(tab, index) { ; -__p += '\n
    \n
    \n

    ' + -((__t = ( ctx.t(tab.label, { _userInput: true }) )) == null ? '' : __t) + -'

    \n
    \n
    \n ' + -((__t = ( ctx.tabComponents[index] )) == null ? '' : __t) + -'\n
    \n
    \n'; - }) ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/tab/form.ejs.js b/lib/cjs/templates/bootstrap3/tab/form.ejs.js deleted file mode 100644 index fcd5535e7..000000000 --- a/lib/cjs/templates/bootstrap3/tab/form.ejs.js +++ /dev/null @@ -1,41 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n \n
    \n '; - ctx.component.components.forEach(function(tab, index) { ; -__p += '\n
    ' + -((__t = (ctx.tabComponents[index])) == null ? '' : __t) + -'
    \n '; - }) ; -__p += '\n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/tab/index.d.ts b/lib/cjs/templates/bootstrap3/tab/index.d.ts deleted file mode 100644 index f175dff3c..000000000 --- a/lib/cjs/templates/bootstrap3/tab/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - flat: string; - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/tab/index.js b/lib/cjs/templates/bootstrap3/tab/index.js deleted file mode 100644 index ba037f727..000000000 --- a/lib/cjs/templates/bootstrap3/tab/index.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const flat_ejs_1 = require("./flat.ejs"); -const form_ejs_1 = require("./form.ejs"); -exports.default = { flat: flat_ejs_1.default, form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/table/form.ejs.js b/lib/cjs/templates/bootstrap3/table/form.ejs.js deleted file mode 100644 index abe949181..000000000 --- a/lib/cjs/templates/bootstrap3/table/form.ejs.js +++ /dev/null @@ -1,49 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n '; - if (ctx.component.header && ctx.component.header.length > 0) { ; -__p += '\n \n \n '; - ctx.component.header.forEach(function(header) { ; -__p += '\n \n '; - }) ; -__p += '\n \n \n '; - } ; -__p += '\n \n '; - ctx.tableComponents.forEach(function(row, rowIndex) { ; -__p += '\n \n '; - row.forEach(function(column, colIndex) { ; -__p += '\n \n '; - }) ; -__p += '\n \n
    ' + -((__t = (ctx.t(header, { _userInput: true }))) == null ? '' : __t) + -'
    \n '; - }) ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/table/index.d.ts b/lib/cjs/templates/bootstrap3/table/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/table/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/table/index.js b/lib/cjs/templates/bootstrap3/table/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/table/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/tbody/html.ejs.js b/lib/cjs/templates/bootstrap3/tbody/html.ejs.js deleted file mode 100644 index f5eaf4970..000000000 --- a/lib/cjs/templates/bootstrap3/tbody/html.ejs.js +++ /dev/null @@ -1,45 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n\n '; - ctx.eachRow(function(row) { ; -__p += '\n \n '; - if (ctx.component.enableRowSelect) { ; -__p += '\n \n '; - } ; -__p += '\n '; - row.forEach(function(rowComp) { ; -__p += '\n '; - if (rowComp.component.show) { ; -__p += '\n \n '; - } ; -__p += '\n '; - }); ; -__p += '\n '; - if ((ctx.component.showEditBtn || ctx.component.showDeleteBtn || ctx.component.showDeleteAllBtn) && !ctx.options.pdf) { ; -__p += '\n \n '; - } ; -__p += '\n \n '; - }); ; -__p += '\n\n
    \n \n \n ' + -((__t = ( ctx.instance.hook('format', rowComp.component.key, rowComp.dataValue) )) == null ? '' : __t) + -'\n \n
    \n \n ⋮\n
    \n
    '; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/tbody/index.d.ts b/lib/cjs/templates/bootstrap3/tbody/index.d.ts deleted file mode 100644 index abb6036cf..000000000 --- a/lib/cjs/templates/bootstrap3/tbody/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - html: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/tbody/index.js b/lib/cjs/templates/bootstrap3/tbody/index.js deleted file mode 100644 index 9b41e1e80..000000000 --- a/lib/cjs/templates/bootstrap3/tbody/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const html_ejs_1 = require("./html.ejs"); -exports.default = { html: html_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/well/form.ejs.js b/lib/cjs/templates/bootstrap3/well/form.ejs.js deleted file mode 100644 index 86bfc586f..000000000 --- a/lib/cjs/templates/bootstrap3/well/form.ejs.js +++ /dev/null @@ -1,12 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '
    \n
    \n ' + -((__t = (ctx.children)) == null ? '' : __t) + -'\n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/well/index.d.ts b/lib/cjs/templates/bootstrap3/well/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/well/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/well/index.js b/lib/cjs/templates/bootstrap3/well/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/well/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/wizard/builder.ejs.js b/lib/cjs/templates/bootstrap3/wizard/builder.ejs.js deleted file mode 100644 index 19f3ce37e..000000000 --- a/lib/cjs/templates/bootstrap3/wizard/builder.ejs.js +++ /dev/null @@ -1,10 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '
    ' + -((__t = ( ctx.t(ctx.component.title, { _userInput: true }) )) == null ? '' : __t) + -'
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/wizard/form.ejs.js b/lib/cjs/templates/bootstrap3/wizard/form.ejs.js deleted file mode 100644 index 677ace591..000000000 --- a/lib/cjs/templates/bootstrap3/wizard/form.ejs.js +++ /dev/null @@ -1,33 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n
    \n '; - if (ctx.wizardHeaderType === 'wizardHeaderVertical') { ; -__p += '\n
    \n
    \n ' + -((__t = ( ctx.wizardHeader )) == null ? '' : __t) + -'\n
    \n
    \n ' + -((__t = (ctx.components)) == null ? '' : __t) + -'\n
    \n
    \n
    \n ' + -((__t = ( ctx.wizardNav )) == null ? '' : __t) + -'\n
    \n '; - } else { ; -__p += ' \n ' + -((__t = ( ctx.wizardHeader )) == null ? '' : __t) + -'\n
    \n ' + -((__t = (ctx.components)) == null ? '' : __t) + -'\n
    \n ' + -((__t = ( ctx.wizardNav )) == null ? '' : __t) + -'\n '; - } ; -__p += ' \n
    \n
    '; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/wizard/index.d.ts b/lib/cjs/templates/bootstrap3/wizard/index.d.ts deleted file mode 100644 index f3dc5a469..000000000 --- a/lib/cjs/templates/bootstrap3/wizard/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - builder: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/wizard/index.js b/lib/cjs/templates/bootstrap3/wizard/index.js deleted file mode 100644 index c50be2d12..000000000 --- a/lib/cjs/templates/bootstrap3/wizard/index.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const builder_ejs_1 = require("./builder.ejs"); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default, builder: builder_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/wizardHeader/form.ejs.js b/lib/cjs/templates/bootstrap3/wizardHeader/form.ejs.js deleted file mode 100644 index 0bf883011..000000000 --- a/lib/cjs/templates/bootstrap3/wizardHeader/form.ejs.js +++ /dev/null @@ -1,33 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/wizardHeader/index.d.ts b/lib/cjs/templates/bootstrap3/wizardHeader/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/wizardHeader/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/wizardHeader/index.js b/lib/cjs/templates/bootstrap3/wizardHeader/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/wizardHeader/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/wizardHeaderClassic/form.ejs.js b/lib/cjs/templates/bootstrap3/wizardHeaderClassic/form.ejs.js deleted file mode 100644 index 8be8691ea..000000000 --- a/lib/cjs/templates/bootstrap3/wizardHeaderClassic/form.ejs.js +++ /dev/null @@ -1,29 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/wizardHeaderClassic/index.d.ts b/lib/cjs/templates/bootstrap3/wizardHeaderClassic/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/wizardHeaderClassic/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/wizardHeaderClassic/index.js b/lib/cjs/templates/bootstrap3/wizardHeaderClassic/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/wizardHeaderClassic/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/wizardHeaderVertical/form.ejs.js b/lib/cjs/templates/bootstrap3/wizardHeaderVertical/form.ejs.js deleted file mode 100644 index 44e37052e..000000000 --- a/lib/cjs/templates/bootstrap3/wizardHeaderVertical/form.ejs.js +++ /dev/null @@ -1,31 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/wizardHeaderVertical/index.d.ts b/lib/cjs/templates/bootstrap3/wizardHeaderVertical/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/wizardHeaderVertical/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/wizardHeaderVertical/index.js b/lib/cjs/templates/bootstrap3/wizardHeaderVertical/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/wizardHeaderVertical/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap3/wizardNav/form.ejs.js b/lib/cjs/templates/bootstrap3/wizardNav/form.ejs.js deleted file mode 100644 index 03c396c59..000000000 --- a/lib/cjs/templates/bootstrap3/wizardNav/form.ejs.js +++ /dev/null @@ -1,43 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
      \n '; - if (ctx.buttons.cancel) { ; -__p += '\n
    • \n \n
    • \n '; - } ; -__p += '\n '; - if (ctx.buttons.previous) { ; -__p += '\n
    • \n \n
    • \n '; - } ; -__p += '\n '; - if (ctx.buttons.next) { ; -__p += '\n
    • \n \n
    • \n '; - } ; -__p += '\n '; - if (ctx.buttons.submit) { ; -__p += '\n
    • \n \n
    • \n '; - } ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap3/wizardNav/index.d.ts b/lib/cjs/templates/bootstrap3/wizardNav/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap3/wizardNav/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap3/wizardNav/index.js b/lib/cjs/templates/bootstrap3/wizardNav/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap3/wizardNav/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/address/form.ejs.js b/lib/cjs/templates/bootstrap4/address/form.ejs.js deleted file mode 100644 index c8b884723..000000000 --- a/lib/cjs/templates/bootstrap4/address/form.ejs.js +++ /dev/null @@ -1,61 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } - - if (ctx.mode.autocomplete) { ; -__p += '\n
    \n \n '; - if (!ctx.component.disableClearIcon) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n'; - } ; -__p += '\n'; - if (ctx.self.manualModeEnabled) { ; -__p += '\n
    \n \n
    \n'; - } ; -__p += '\n'; - if (ctx.self.manualMode) { ; -__p += '\n
    \n ' + -((__t = ( ctx.children )) == null ? '' : __t) + -'\n
    \n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/address/html.ejs.js b/lib/cjs/templates/bootstrap4/address/html.ejs.js deleted file mode 100644 index 65c383d2b..000000000 --- a/lib/cjs/templates/bootstrap4/address/html.ejs.js +++ /dev/null @@ -1,16 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    '; - if (ctx.displayValue) { ; -__p += -((__t = (ctx.displayValue)) == null ? '' : __t); - } else { ; -__p += '-'; - } ; -__p += '
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/address/index.d.ts b/lib/cjs/templates/bootstrap4/address/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/cjs/templates/bootstrap4/address/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/address/index.js b/lib/cjs/templates/bootstrap4/address/index.js deleted file mode 100644 index 269712cfb..000000000 --- a/lib/cjs/templates/bootstrap4/address/index.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -const html_ejs_1 = require("./html.ejs"); -exports.default = { form: form_ejs_1.default, html: html_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/alert/form.ejs.js b/lib/cjs/templates/bootstrap4/alert/form.ejs.js deleted file mode 100644 index 348e432ab..000000000 --- a/lib/cjs/templates/bootstrap4/alert/form.ejs.js +++ /dev/null @@ -1,27 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '' + -((__t = (ctx.t('errorListHotkey'))) == null ? '' : __t) + -'\n '; - } ; -__p += '\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/alert/index.d.ts b/lib/cjs/templates/bootstrap4/alert/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/alert/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/alert/index.js b/lib/cjs/templates/bootstrap4/alert/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/alert/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/builder/form.ejs.js b/lib/cjs/templates/bootstrap4/builder/form.ejs.js deleted file mode 100644 index df06e1781..000000000 --- a/lib/cjs/templates/bootstrap4/builder/form.ejs.js +++ /dev/null @@ -1,12 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '
    \n
    \n ' + -((__t = (ctx.sidebar)) == null ? '' : __t) + -'\n
    \n
    \n ' + -((__t = (ctx.form)) == null ? '' : __t) + -'\n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/builder/index.d.ts b/lib/cjs/templates/bootstrap4/builder/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/builder/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/builder/index.js b/lib/cjs/templates/bootstrap4/builder/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/builder/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/builderComponent/form.ejs.js b/lib/cjs/templates/bootstrap4/builderComponent/form.ejs.js deleted file mode 100644 index 35455257e..000000000 --- a/lib/cjs/templates/bootstrap4/builderComponent/form.ejs.js +++ /dev/null @@ -1,39 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - if (!ctx.disableBuilderActions) { ; -__p += '\n
    \n \n \n
    \n '; - if (!ctx.design) { ; -__p += '\n \n \n
    \n \n \n \n '; - if (ctx.editJson !== false) { ; -__p += '\n \n \n \n '; - } ; -__p += '\n '; - } ; -__p += '\n \n \n \n '; - if (!(ctx.design && ctx.childComponent.type === 'reviewpage') && ctx.editComponent) { ; -__p += '\n \n \n \n '; - } ; -__p += '\n \n '; - } ; -__p += '\n ' + -((__t = (ctx.html)) == null ? '' : __t) + -'\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/builderComponent/index.d.ts b/lib/cjs/templates/bootstrap4/builderComponent/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/builderComponent/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/builderComponent/index.js b/lib/cjs/templates/bootstrap4/builderComponent/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/builderComponent/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/builderComponents/form.ejs.js b/lib/cjs/templates/bootstrap4/builderComponents/form.ejs.js deleted file mode 100644 index 4cda2c2b4..000000000 --- a/lib/cjs/templates/bootstrap4/builderComponents/form.ejs.js +++ /dev/null @@ -1,14 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '
    \n ' + -((__t = (ctx.html)) == null ? '' : __t) + -'\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/builderComponents/index.d.ts b/lib/cjs/templates/bootstrap4/builderComponents/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/builderComponents/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/builderComponents/index.js b/lib/cjs/templates/bootstrap4/builderComponents/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/builderComponents/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/builderEditForm/form.ejs.js b/lib/cjs/templates/bootstrap4/builderEditForm/form.ejs.js deleted file mode 100644 index 489934826..000000000 --- a/lib/cjs/templates/bootstrap4/builderEditForm/form.ejs.js +++ /dev/null @@ -1,65 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n
    \n

    ' + -((__t = (ctx.t(ctx.componentInfo.title, { _userInput: true }))) == null ? '' : __t) + -' ' + -((__t = (ctx.t('Component'))) == null ? '' : __t) + -'

    \n
    \n '; - if (ctx.helplinks) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n
    \n
    \n
    \n ' + -((__t = (ctx.editForm)) == null ? '' : __t) + -'\n
    \n '; - if (!ctx.showPreview) { ; -__p += '\n
    \n \n \n \n '; - if (ctx.preview) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n '; - } ; -__p += '\n
    \n '; - if (ctx.showPreview && ctx.preview) { ; -__p += '\n
    \n
    \n
    \n

    ' + -((__t = (ctx.t('Preview'))) == null ? '' : __t) + -'

    \n
    \n
    \n
    \n ' + -((__t = (ctx.preview)) == null ? '' : __t) + -'\n
    \n
    \n
    \n '; - if (ctx.componentInfo.help) { ; -__p += '\n
    \n ' + -((__t = ( ctx.t(ctx.componentInfo.help) )) == null ? '' : __t) + -'\n
    \n '; - } ; -__p += '\n
    \n \n \n \n \n
    \n
    \n '; - } ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/builderEditForm/index.d.ts b/lib/cjs/templates/bootstrap4/builderEditForm/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/builderEditForm/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/builderEditForm/index.js b/lib/cjs/templates/bootstrap4/builderEditForm/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/builderEditForm/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/builderPlaceholder/form.ejs.js b/lib/cjs/templates/bootstrap4/builderPlaceholder/form.ejs.js deleted file mode 100644 index 096e955c0..000000000 --- a/lib/cjs/templates/bootstrap4/builderPlaceholder/form.ejs.js +++ /dev/null @@ -1,12 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '\n ' + -((__t = (ctx.t('Drag and Drop a form component'))) == null ? '' : __t) + -'\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/builderPlaceholder/index.d.ts b/lib/cjs/templates/bootstrap4/builderPlaceholder/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/builderPlaceholder/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/builderPlaceholder/index.js b/lib/cjs/templates/bootstrap4/builderPlaceholder/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/builderPlaceholder/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/builderSidebar/form.ejs.js b/lib/cjs/templates/bootstrap4/builderSidebar/form.ejs.js deleted file mode 100644 index 7b9c11d7b..000000000 --- a/lib/cjs/templates/bootstrap4/builderSidebar/form.ejs.js +++ /dev/null @@ -1,21 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n \n
    \n '; - ctx.groups.forEach(function(group) { ; -__p += '\n ' + -((__t = ( group )) == null ? '' : __t) + -'\n '; - }) ; -__p += '\n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/builderSidebar/index.d.ts b/lib/cjs/templates/bootstrap4/builderSidebar/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/builderSidebar/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/builderSidebar/index.js b/lib/cjs/templates/bootstrap4/builderSidebar/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/builderSidebar/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/builderSidebarGroup/form.ejs.js b/lib/cjs/templates/bootstrap4/builderSidebarGroup/form.ejs.js deleted file mode 100644 index 852b1ef64..000000000 --- a/lib/cjs/templates/bootstrap4/builderSidebarGroup/form.ejs.js +++ /dev/null @@ -1,65 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n
    \n
    \n \n ' + -((__t = (ctx.t(ctx.group.title, { _userInput: true }))) == null ? '' : __t) + -'\n \n
    \n
    \n \n
    \n '; - if (ctx.group.componentOrder.length || ctx.subgroups.length) { ; -__p += '\n '; - !ctx.group.componentOrder || ctx.group.componentOrder.forEach(function(componentKey) { ; -__p += '\n \n '; - if (ctx.group.components[componentKey].icon) { ; -__p += '\n \n '; - } ; -__p += '\n ' + -((__t = (ctx.t(ctx.group.components[componentKey].title, { _userInput: true }))) == null ? '' : __t) + -'\n \n '; - }) ; -__p += '\n ' + -((__t = (ctx.subgroups.join(''))) == null ? '' : __t) + -'\n '; - } else { ; -__p += '\n
    ' + -((__t = (ctx.t('No Matches Found'))) == null ? '' : __t) + -'
    \n '; - } ; -__p += '\n
    \n
    \n\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/builderSidebarGroup/index.d.ts b/lib/cjs/templates/bootstrap4/builderSidebarGroup/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/builderSidebarGroup/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/builderSidebarGroup/index.js b/lib/cjs/templates/bootstrap4/builderSidebarGroup/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/builderSidebarGroup/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/builderWizard/form.ejs.js b/lib/cjs/templates/bootstrap4/builderWizard/form.ejs.js deleted file mode 100644 index e345b8970..000000000 --- a/lib/cjs/templates/bootstrap4/builderWizard/form.ejs.js +++ /dev/null @@ -1,35 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n
    \n ' + -((__t = (ctx.sidebar)) == null ? '' : __t) + -'\n
    \n
    \n \n
    \n ' + -((__t = (ctx.form)) == null ? '' : __t) + -'\n
    \n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/builderWizard/index.d.ts b/lib/cjs/templates/bootstrap4/builderWizard/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/builderWizard/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/builderWizard/index.js b/lib/cjs/templates/bootstrap4/builderWizard/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/builderWizard/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/button/form.ejs.js b/lib/cjs/templates/bootstrap4/button/form.ejs.js deleted file mode 100644 index 40ca6204c..000000000 --- a/lib/cjs/templates/bootstrap4/button/form.ejs.js +++ /dev/null @@ -1,51 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '<' + -((__t = (ctx.input.type)) == null ? '' : __t) + -'\n ref="button"\n '; - for (var attr in ctx.input.attr) { ; -__p += '\n ' + -((__t = (attr)) == null ? '' : __t) + -'="' + -((__t = (ctx.input.attr[attr])) == null ? '' : __t) + -'"\n '; - } ; -__p += '\n '; - if (ctx.component.description) { ; -__p += '\n aria-describedby="d-' + -((__t = (ctx.instance.id)) == null ? '' : __t) + -'-' + -((__t = (ctx.component.key)) == null ? '' : __t) + -'"\n '; - } ; -__p += '\n>\n'; - if (ctx.component.leftIcon) { ; -__p += ' '; - } ; -__p += '\n' + -((__t = (ctx.input.content)) == null ? '' : __t) + -'\n'; - if (ctx.component.tooltip) { ; -__p += '\n \n'; - } ; -__p += '\n'; - if (ctx.component.rightIcon) { ; -__p += ' '; - } ; -__p += '\n\n
    \n \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/button/html.ejs.js b/lib/cjs/templates/bootstrap4/button/html.ejs.js deleted file mode 100644 index 714dceb16..000000000 --- a/lib/cjs/templates/bootstrap4/button/html.ejs.js +++ /dev/null @@ -1,8 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/button/index.d.ts b/lib/cjs/templates/bootstrap4/button/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/cjs/templates/bootstrap4/button/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/button/index.js b/lib/cjs/templates/bootstrap4/button/index.js deleted file mode 100644 index 269712cfb..000000000 --- a/lib/cjs/templates/bootstrap4/button/index.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -const html_ejs_1 = require("./html.ejs"); -exports.default = { form: form_ejs_1.default, html: html_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/checkbox/form.ejs.js b/lib/cjs/templates/bootstrap4/checkbox/form.ejs.js deleted file mode 100644 index 243199f10..000000000 --- a/lib/cjs/templates/bootstrap4/checkbox/form.ejs.js +++ /dev/null @@ -1,69 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n \n <' + -((__t = (ctx.input.type)) == null ? '' : __t) + -'\n ref="input"\n id="' + -((__t = (ctx.instance.id)) == null ? '' : __t) + -'-' + -((__t = (ctx.component.key)) == null ? '' : __t) + -'"\n aria-labelledby="l-' + -((__t = (ctx.instance.id)) == null ? '' : __t) + -'-' + -((__t = (ctx.component.key)) == null ? '' : __t) + -'"\n '; - for (var attr in ctx.input.attr) { ; -__p += '\n ' + -((__t = (attr)) == null ? '' : __t) + -'="' + -((__t = (ctx.input.attr[attr])) == null ? '' : __t) + -'"\n '; - } ; -__p += '\n '; - if (ctx.checked) { ; -__p += 'checked=true'; - } ; -__p += '\n aria-required="' + -((__t = (ctx.component.validate.required)) == null ? '' : __t) + -'"\n '; - if (ctx.component.description) { ; -__p += '\n aria-describedby="d-' + -((__t = (ctx.instance.id)) == null ? '' : __t) + -'-' + -((__t = (ctx.component.key)) == null ? '' : __t) + -'"\n '; - } ; -__p += '\n >\n '; - if (!ctx.self.labelIsHidden()) { ; -__p += '' + -((__t = (ctx.input.label)) == null ? '' : __t) + -''; - } ; -__p += '\n ' + -((__t = (ctx.input.content)) == null ? '' : __t) + -'\n \n \n '; - if (ctx.component.tooltip) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/checkbox/html.ejs.js b/lib/cjs/templates/bootstrap4/checkbox/html.ejs.js deleted file mode 100644 index 4daedf652..000000000 --- a/lib/cjs/templates/bootstrap4/checkbox/html.ejs.js +++ /dev/null @@ -1,25 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n
    '; - if (ctx.checked) { ; -__p += 'True'; - } else { ; -__p += 'False'; - } ; -__p += '
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/checkbox/index.d.ts b/lib/cjs/templates/bootstrap4/checkbox/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/cjs/templates/bootstrap4/checkbox/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/checkbox/index.js b/lib/cjs/templates/bootstrap4/checkbox/index.js deleted file mode 100644 index 269712cfb..000000000 --- a/lib/cjs/templates/bootstrap4/checkbox/index.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -const html_ejs_1 = require("./html.ejs"); -exports.default = { form: form_ejs_1.default, html: html_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/column-menu/html.ejs.js b/lib/cjs/templates/bootstrap4/column-menu/html.ejs.js deleted file mode 100644 index 0983f362f..000000000 --- a/lib/cjs/templates/bootstrap4/column-menu/html.ejs.js +++ /dev/null @@ -1,41 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\r\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/column-menu/index.d.ts b/lib/cjs/templates/bootstrap4/column-menu/index.d.ts deleted file mode 100644 index abb6036cf..000000000 --- a/lib/cjs/templates/bootstrap4/column-menu/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - html: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/column-menu/index.js b/lib/cjs/templates/bootstrap4/column-menu/index.js deleted file mode 100644 index 9b41e1e80..000000000 --- a/lib/cjs/templates/bootstrap4/column-menu/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const html_ejs_1 = require("./html.ejs"); -exports.default = { html: html_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/columns/form.ejs.js b/lib/cjs/templates/bootstrap4/columns/form.ejs.js deleted file mode 100644 index cfec35067..000000000 --- a/lib/cjs/templates/bootstrap4/columns/form.ejs.js +++ /dev/null @@ -1,25 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } - - ctx.component.columns.forEach(function(column, index) { ; -__p += '\n
    \n ' + -((__t = (ctx.columnComponents[index])) == null ? '' : __t) + -'\n
    \n'; - }) ; - -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/columns/index.d.ts b/lib/cjs/templates/bootstrap4/columns/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/columns/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/columns/index.js b/lib/cjs/templates/bootstrap4/columns/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/columns/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/component/form.ejs.js b/lib/cjs/templates/bootstrap4/component/form.ejs.js deleted file mode 100644 index 8424de4d4..000000000 --- a/lib/cjs/templates/bootstrap4/component/form.ejs.js +++ /dev/null @@ -1,25 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - } ; -__p += '\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/component/index.d.ts b/lib/cjs/templates/bootstrap4/component/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/component/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/component/index.js b/lib/cjs/templates/bootstrap4/component/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/component/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/componentModal/form.ejs.js b/lib/cjs/templates/bootstrap4/componentModal/form.ejs.js deleted file mode 100644 index 77cd7e36f..000000000 --- a/lib/cjs/templates/bootstrap4/componentModal/form.ejs.js +++ /dev/null @@ -1,47 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n
    \n
    \n
    \n
    ' + -((__t = ( ctx.t(ctx.component.label) )) == null ? '' : __t) + -'' + -((__t = (ctx.self.isIE() ? ', dialog' : '')) == null ? '' : __t) + -'\n '; - if (ctx.options.vpat) { ; -__p += '\n \n '; - } else { ; -__p += '\n \n '; - } ; -__p += '\n
    \n '; - if (ctx.visible) { ; -__p += '\n
    ' + -((__t = (ctx.children)) == null ? '' : __t) + -'
    \n '; - } ; -__p += '\n
    \n '; - if (ctx.options.vpat) { ; -__p += '\n \n '; - } ; -__p += '\n \n
    \n
    \n
    \n \n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/componentModal/index.d.ts b/lib/cjs/templates/bootstrap4/componentModal/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/componentModal/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/componentModal/index.js b/lib/cjs/templates/bootstrap4/componentModal/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/componentModal/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/components/form.ejs.js b/lib/cjs/templates/bootstrap4/components/form.ejs.js deleted file mode 100644 index 2bd3cb1f7..000000000 --- a/lib/cjs/templates/bootstrap4/components/form.ejs.js +++ /dev/null @@ -1,10 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += -((__t = ( ctx.children.join('') )) == null ? '' : __t) + -'\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/components/index.d.ts b/lib/cjs/templates/bootstrap4/components/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/components/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/components/index.js b/lib/cjs/templates/bootstrap4/components/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/components/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/container/form.ejs.js b/lib/cjs/templates/bootstrap4/container/form.ejs.js deleted file mode 100644 index f59a1a8e7..000000000 --- a/lib/cjs/templates/bootstrap4/container/form.ejs.js +++ /dev/null @@ -1,12 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '
    \n ' + -((__t = (ctx.children)) == null ? '' : __t) + -'\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/container/index.d.ts b/lib/cjs/templates/bootstrap4/container/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/container/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/container/index.js b/lib/cjs/templates/bootstrap4/container/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/container/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/cssClasses.d.ts b/lib/cjs/templates/bootstrap4/cssClasses.d.ts deleted file mode 100644 index 9a76882d8..000000000 --- a/lib/cjs/templates/bootstrap4/cssClasses.d.ts +++ /dev/null @@ -1,16 +0,0 @@ -declare const _default: { - 'border-default': string; - 'formio-tab-panel-active': string; - 'formio-tab-link-active': string; - 'formio-tab-link-container-active': string; - 'formio-form-error': string; - 'formio-form-alert': string; - 'formio-label-error': string; - 'formio-input-error': string; - 'formio-alert-danger': string; - 'formio-alert-success': string; - 'formio-alert-warning': string; - 'formio-modal-cancel-button': string; - 'formio-modal-confirm-button': string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/cssClasses.js b/lib/cjs/templates/bootstrap4/cssClasses.js deleted file mode 100644 index 0d8ee0791..000000000 --- a/lib/cjs/templates/bootstrap4/cssClasses.js +++ /dev/null @@ -1,17 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.default = { - 'border-default': '', - 'formio-tab-panel-active': 'active', - 'formio-tab-link-active': 'active', - 'formio-tab-link-container-active': 'active', - 'formio-form-error': 'formio-error-wrapper has-message', - 'formio-form-alert': 'alert alert-danger', - 'formio-label-error': '', - 'formio-input-error': '', - 'formio-alert-danger': 'alert alert-danger', - 'formio-alert-success': 'alert alert-success', - 'formio-alert-warning': 'alert alert-warning', - 'formio-modal-cancel-button': 'btn btn-danger formio-dialog-button', - 'formio-modal-confirm-button': 'btn btn-primary formio-dialog-button', -}; diff --git a/lib/cjs/templates/bootstrap4/datagrid/form.ejs.js b/lib/cjs/templates/bootstrap4/datagrid/form.ejs.js deleted file mode 100644 index cf4b68af8..000000000 --- a/lib/cjs/templates/bootstrap4/datagrid/form.ejs.js +++ /dev/null @@ -1,145 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n ' + -((__t = ( col.hideLabel ? '' : ctx.t(col.label || col.title, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - if (col.tooltip) { ; -__p += ' '; - } ; -__p += '\n \n '; - }) ; -__p += '\n '; - if (ctx.hasExtraColumn) { ; -__p += '\n \n '; - } ; -__p += '\n \n \n '; - } ; -__p += '\n \n '; - ctx.rows.forEach(function(row, index) { ; -__p += '\n '; - if (ctx.hasGroups && ctx.groups[index]) { ; -__p += '\n \n ' + -((__t = (ctx.groups[index].label)) == null ? '' : __t) + -'\n \n '; - } ; -__p += '\n \n '; - if (ctx.component.reorder) { ; -__p += '\n \n '; - } ; -__p += '\n '; - ctx.columns.forEach(function(col) { ; -__p += '\n \n '; - } ; -__p += '\n '; - if (ctx.canAddColumn) { ; -__p += '\n \n '; - } ; -__p += '\n '; - } ; -__p += '\n \n '; - }) ; -__p += '\n \n '; - if (!ctx.builder && ctx.hasAddButton && ctx.hasBottomSubmit) { ; -__p += '\n \n \n \n \n \n '; - } ; -__p += '\n
    \n ' + -((__t = ( ctx.t('Add/Remove') )) == null ? '' : __t) + -'\n '; - if (!ctx.builder && ctx.hasAddButton && ctx.hasTopSubmit) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n \n \n '; - }) ; -__p += '\n '; - if (ctx.hasExtraColumn) { ; -__p += '\n '; - if (ctx.hasRemoveButtons) { ; -__p += '\n \n \n \n ' + -((__t = (ctx.placeholder)) == null ? '' : __t) + -'\n
    \n \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/datagrid/html.ejs.js b/lib/cjs/templates/bootstrap4/datagrid/html.ejs.js deleted file mode 100644 index f710923ab..000000000 --- a/lib/cjs/templates/bootstrap4/datagrid/html.ejs.js +++ /dev/null @@ -1,49 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n '; - if (ctx.hasHeader) { ; -__p += '\n \n \n '; - ctx.columns.forEach(function(col) { ; -__p += '\n \n '; - }) ; -__p += '\n \n \n '; - } ; -__p += '\n \n '; - ctx.rows.forEach(function(row) { ; -__p += '\n \n '; - ctx.columns.forEach(function(col) { ; -__p += '\n \n '; - }) ; -__p += '\n \n '; - }) ; -__p += '\n \n
    \n ' + -((__t = ( col.hideLabel ? '' : ctx.t(col.label || col.title, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - if (col.tooltip) { ; -__p += ' '; - } ; -__p += '\n
    \n ' + -((__t = (row[col.key])) == null ? '' : __t) + -'\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/datagrid/index.d.ts b/lib/cjs/templates/bootstrap4/datagrid/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/cjs/templates/bootstrap4/datagrid/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/datagrid/index.js b/lib/cjs/templates/bootstrap4/datagrid/index.js deleted file mode 100644 index 269712cfb..000000000 --- a/lib/cjs/templates/bootstrap4/datagrid/index.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -const html_ejs_1 = require("./html.ejs"); -exports.default = { form: form_ejs_1.default, html: html_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/day/form.ejs.js b/lib/cjs/templates/bootstrap4/day/form.ejs.js deleted file mode 100644 index e1d9866a8..000000000 --- a/lib/cjs/templates/bootstrap4/day/form.ejs.js +++ /dev/null @@ -1,101 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    ' + -((__t = (ctx.t('Day'))) == null ? '' : __t) + -'\n '; - } ; -__p += '\n
    ' + -((__t = (ctx.day)) == null ? '' : __t) + -'
    \n
    \n '; - } ; -__p += '\n '; - if (ctx.showMonth) { ; -__p += '\n
    \n '; - if (!ctx.component.hideInputLabels) { ; -__p += '\n \n '; - } ; -__p += '\n
    ' + -((__t = (ctx.month)) == null ? '' : __t) + -'
    \n
    \n '; - } ; -__p += '\n '; - if (!ctx.dayFirst && ctx.showDay) { ; -__p += '\n
    \n '; - if (!ctx.component.hideInputLabels) { ; -__p += '\n \n '; - } ; -__p += '\n
    ' + -((__t = (ctx.day)) == null ? '' : __t) + -'
    \n
    \n '; - } ; -__p += '\n '; - if (ctx.showYear) { ; -__p += '\n
    \n '; - if (!ctx.component.hideInputLabels) { ; -__p += '\n \n '; - } ; -__p += '\n
    ' + -((__t = (ctx.year)) == null ? '' : __t) + -'
    \n
    \n '; - } ; -__p += '\n\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/day/index.d.ts b/lib/cjs/templates/bootstrap4/day/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/day/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/day/index.js b/lib/cjs/templates/bootstrap4/day/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/day/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/dialog/form.ejs.js b/lib/cjs/templates/bootstrap4/dialog/form.ejs.js deleted file mode 100644 index 0eabc2552..000000000 --- a/lib/cjs/templates/bootstrap4/dialog/form.ejs.js +++ /dev/null @@ -1,8 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '
    \n
    \n \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/dialog/index.d.ts b/lib/cjs/templates/bootstrap4/dialog/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/dialog/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/dialog/index.js b/lib/cjs/templates/bootstrap4/dialog/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/dialog/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/editgrid/form.ejs.js b/lib/cjs/templates/bootstrap4/editgrid/form.ejs.js deleted file mode 100644 index 59768b53a..000000000 --- a/lib/cjs/templates/bootstrap4/editgrid/form.ejs.js +++ /dev/null @@ -1,65 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
      \n '; - if (ctx.header) { ; -__p += '\n
    • \n ' + -((__t = (ctx.header)) == null ? '' : __t) + -'\n
    • \n '; - } ; -__p += '\n '; - ctx.rows.forEach(function(row, rowIndex) { ; -__p += '\n
    • \n ' + -((__t = (row)) == null ? '' : __t) + -'\n '; - if (ctx.openRows[rowIndex] && !ctx.readOnly) { ; -__p += '\n
      \n \n '; - if (ctx.component.removeRow) { ; -__p += '\n \n '; - } ; -__p += '\n
      \n '; - } ; -__p += '\n
      \n
      \n ' + -((__t = (ctx.errors[rowIndex])) == null ? '' : __t) + -'\n
      \n
      \n
    • \n '; - }) ; -__p += '\n '; - if (ctx.footer) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n'; - if (!ctx.readOnly && ctx.hasAddButton) { ; -__p += '\n\n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/editgrid/html.ejs.js b/lib/cjs/templates/bootstrap4/editgrid/html.ejs.js deleted file mode 100644 index 27ee84e53..000000000 --- a/lib/cjs/templates/bootstrap4/editgrid/html.ejs.js +++ /dev/null @@ -1,55 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
      \n '; - if (ctx.header) { ; -__p += '\n
    • \n ' + -((__t = (ctx.header)) == null ? '' : __t) + -'\n
    • \n '; - } ; -__p += '\n '; - ctx.rows.forEach(function(row, rowIndex) { ; -__p += '\n
    • \n ' + -((__t = (row)) == null ? '' : __t) + -'\n '; - if (ctx.openRows[rowIndex] && !ctx.readOnly) { ; -__p += '\n
      \n \n '; - if (ctx.component.removeRow) { ; -__p += '\n \n '; - } ; -__p += '\n
      \n '; - } ; -__p += '\n
      \n
      \n ' + -((__t = (ctx.errors[rowIndex])) == null ? '' : __t) + -'\n
      \n
      \n
    • \n '; - }) ; -__p += '\n '; - if (ctx.footer) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/editgrid/index.d.ts b/lib/cjs/templates/bootstrap4/editgrid/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/cjs/templates/bootstrap4/editgrid/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/editgrid/index.js b/lib/cjs/templates/bootstrap4/editgrid/index.js deleted file mode 100644 index 269712cfb..000000000 --- a/lib/cjs/templates/bootstrap4/editgrid/index.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -const html_ejs_1 = require("./html.ejs"); -exports.default = { form: form_ejs_1.default, html: html_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/editgridTable/form.ejs.js b/lib/cjs/templates/bootstrap4/editgridTable/form.ejs.js deleted file mode 100644 index f67dcce7a..000000000 --- a/lib/cjs/templates/bootstrap4/editgridTable/form.ejs.js +++ /dev/null @@ -1,69 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n
    \n \n '; - if (ctx.header) { ; -__p += '\n \n ' + -((__t = (ctx.header)) == null ? '' : __t) + -'\n \n '; - } ; -__p += '\n \n '; - ctx.rows.forEach(function(row, rowIndex) { ; -__p += '\n \n ' + -((__t = (row)) == null ? '' : __t) + -'\n '; - if (ctx.openRows[rowIndex] && !ctx.readOnly) { ; -__p += '\n \n '; - } ; -__p += '\n '; - if (ctx.errors[rowIndex]) { ; -__p += '\n \n '; - } ; -__p += '\n \n '; - }) ; -__p += '\n \n '; - if (ctx.footer) { ; -__p += '\n \n \n ' + -((__t = (ctx.footer)) == null ? '' : __t) + -'\n \n \n '; - } ; -__p += '\n
    \n
    \n \n '; - if (ctx.component.removeRow) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n
    \n
    \n
    \n ' + -((__t = (ctx.errors[rowIndex])) == null ? '' : __t) + -'\n
    \n
    \n
    \n
    \n
    \n'; - if (!ctx.readOnly && ctx.hasAddButton) { ; -__p += '\n\n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/editgridTable/html.ejs.js b/lib/cjs/templates/bootstrap4/editgridTable/html.ejs.js deleted file mode 100644 index 183ef03ed..000000000 --- a/lib/cjs/templates/bootstrap4/editgridTable/html.ejs.js +++ /dev/null @@ -1,59 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n
    \n \n '; - if (ctx.header) { ; -__p += '\n \n ' + -((__t = (ctx.header)) == null ? '' : __t) + -'\n \n '; - } ; -__p += '\n \n '; - ctx.rows.forEach(function(row, rowIndex) { ; -__p += '\n \n ' + -((__t = (row)) == null ? '' : __t) + -'\n '; - if (ctx.openRows[rowIndex] && !ctx.readOnly) { ; -__p += '\n \n '; - } ; -__p += '\n '; - if (ctx.errors[rowIndex]) { ; -__p += '\n \n '; - } ; -__p += '\n \n '; - }) ; -__p += '\n \n '; - if (ctx.footer) { ; -__p += '\n \n \n ' + -((__t = (ctx.footer)) == null ? '' : __t) + -'\n \n \n '; - } ; -__p += '\n
    \n
    \n \n '; - if (ctx.component.removeRow) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n
    \n
    \n
    \n ' + -((__t = (ctx.errors[rowIndex])) == null ? '' : __t) + -'\n
    \n
    \n
    \n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/editgridTable/index.d.ts b/lib/cjs/templates/bootstrap4/editgridTable/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/cjs/templates/bootstrap4/editgridTable/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/editgridTable/index.js b/lib/cjs/templates/bootstrap4/editgridTable/index.js deleted file mode 100644 index 269712cfb..000000000 --- a/lib/cjs/templates/bootstrap4/editgridTable/index.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -const html_ejs_1 = require("./html.ejs"); -exports.default = { form: form_ejs_1.default, html: html_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/errorsList/form.ejs.js b/lib/cjs/templates/bootstrap4/errorsList/form.ejs.js deleted file mode 100644 index 5b3dcff0c..000000000 --- a/lib/cjs/templates/bootstrap4/errorsList/form.ejs.js +++ /dev/null @@ -1,25 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '

    ' + -((__t = (ctx.t('error'))) == null ? '' : __t) + -'\n '; - if (ctx.options.vpat) { ; -__p += '\n \n '; - } ; -__p += '\n

    \n
      \n '; - ctx.errors.forEach(function(err) { ; -__p += '\n
    • \n \n ' + -((__t = (err.message)) == null ? '' : __t) + -'\n \n
    • \n '; - }) ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/errorsList/index.d.ts b/lib/cjs/templates/bootstrap4/errorsList/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/errorsList/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/errorsList/index.js b/lib/cjs/templates/bootstrap4/errorsList/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/errorsList/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/field/align.ejs.js b/lib/cjs/templates/bootstrap4/field/align.ejs.js deleted file mode 100644 index b30b76e34..000000000 --- a/lib/cjs/templates/bootstrap4/field/align.ejs.js +++ /dev/null @@ -1,41 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - if (!ctx.label.hidden) { ; -__p += '\n
    \n ' + -((__t = ( ctx.labelMarkup )) == null ? '' : __t) + -'\n
    \n '; - } ; -__p += '\n\n '; - if (ctx.label.hidden && ctx.label.className && ctx.component.validate.required) { ; -__p += '\n
    \n \n
    \n '; - } ; -__p += '\n\n
    \n ' + -((__t = (ctx.element)) == null ? '' : __t) + -'\n
    \n
    \n\n'; - if (ctx.component.description) { ; -__p += '\n
    ' + -((__t = (ctx.t(ctx.component.description, { _userInput: true }))) == null ? '' : __t) + -'
    \n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/field/form.ejs.js b/lib/cjs/templates/bootstrap4/field/form.ejs.js deleted file mode 100644 index b7003fb89..000000000 --- a/lib/cjs/templates/bootstrap4/field/form.ejs.js +++ /dev/null @@ -1,39 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } - - if (!ctx.label.hidden && ctx.label.labelPosition !== 'bottom') { ; -__p += '\n ' + -((__t = ( ctx.labelMarkup )) == null ? '' : __t) + -'\n'; - } ; -__p += '\n\n'; - if (ctx.label.hidden && ctx.label.className && ctx.component.validate.required) { ; -__p += '\n \n'; - } ; -__p += '\n\n' + -((__t = (ctx.element)) == null ? '' : __t) + -'\n\n'; - if (!ctx.label.hidden && ctx.label.labelPosition === 'bottom') { ; -__p += '\n ' + -((__t = ( ctx.labelMarkup )) == null ? '' : __t) + -'\n'; - } ; -__p += '\n'; - if (ctx.component.description) { ; -__p += '\n
    ' + -((__t = (ctx.t(ctx.component.description, { _userInput: true }))) == null ? '' : __t) + -'
    \n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/field/index.d.ts b/lib/cjs/templates/bootstrap4/field/index.d.ts deleted file mode 100644 index a2c25ccbe..000000000 --- a/lib/cjs/templates/bootstrap4/field/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - align: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/field/index.js b/lib/cjs/templates/bootstrap4/field/index.js deleted file mode 100644 index ac1188a00..000000000 --- a/lib/cjs/templates/bootstrap4/field/index.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -const align_ejs_1 = require("./align.ejs"); -exports.default = { form: form_ejs_1.default, align: align_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/fieldset/form.ejs.js b/lib/cjs/templates/bootstrap4/fieldset/form.ejs.js deleted file mode 100644 index cdb8d85b4..000000000 --- a/lib/cjs/templates/bootstrap4/fieldset/form.ejs.js +++ /dev/null @@ -1,33 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - if (ctx.component.legend) { ; -__p += '\n \n ' + -((__t = (ctx.t(ctx.component.legend, { _userInput: true }))) == null ? '' : __t) + -'\n '; - if (ctx.component.tooltip) { ; -__p += '\n \n '; - } ; -__p += '\n \n '; - } ; -__p += '\n '; - if (!ctx.collapsed) { ; -__p += '\n
    \n ' + -((__t = (ctx.children)) == null ? '' : __t) + -'\n
    \n '; - } ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/fieldset/index.d.ts b/lib/cjs/templates/bootstrap4/fieldset/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/fieldset/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/fieldset/index.js b/lib/cjs/templates/bootstrap4/fieldset/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/fieldset/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/file/form.ejs.js b/lib/cjs/templates/bootstrap4/file/form.ejs.js deleted file mode 100644 index 17f6e6782..000000000 --- a/lib/cjs/templates/bootstrap4/file/form.ejs.js +++ /dev/null @@ -1,339 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } - - if (ctx.options.vpat) { ; -__p += '\n \n'; - } ; -__p += '\n'; - if (!ctx.self.imageUpload) { ; -__p += '\n '; - if (ctx.options.vpat) { ; -__p += '\n
    ' + -((__t = ((!ctx.component.filePattern || ctx.component.filePattern === '*') ? 'Any file types are allowed' : ctx.t('Allowed file types: ') + ctx.component.filePattern)) == null ? '' : __t) + -'
    \n '; - } ; -__p += '\n
      \n \n '; - ctx.files.forEach(function(file) { ; -__p += '\n
    • \n
      \n
      \n '; - if (ctx.component.uploadOnly) { ; -__p += '\n ' + -((__t = (file.originalName || file.name)) == null ? '' : __t) + -'\n '; - } else { ; -__p += '\n \n ' + -((__t = (ctx.t('Press to open '))) == null ? '' : __t) + -'' + -((__t = (file.originalName || file.name)) == null ? '' : __t) + -'\n \n '; - } ; -__p += '\n
      \n
      ' + -((__t = (ctx.fileSize(file.size))) == null ? '' : __t) + -'
      \n '; - if (ctx.self.hasTypes && !ctx.disabled) { ; -__p += '\n
      \n \n
      \n '; - } ; -__p += '\n '; - if (ctx.self.hasTypes && ctx.disabled) { ; -__p += '\n
      ' + -((__t = (file.fileType)) == null ? '' : __t) + -'
      \n '; - } ; -__p += '\n '; - if (!ctx.disabled) { ; -__p += '\n
      \n '; - } ; -__p += '\n
      \n
    • \n '; - }) ; -__p += '\n '; - ctx.filesToDelete.forEach(function(file) { ; -__p += '\n
    • \n
      \n
      \n
      ' + -((__t = (file.originalName || file.name)) == null ? '' : __t) + -'
      \n
      ' + -((__t = (ctx.t(file.message))) == null ? '' : __t) + -'
      \n
      \n
      ' + -((__t = (ctx.fileSize(file.size))) == null ? '' : __t) + -'
      \n '; - if (ctx.self.hasTypes) { ; -__p += '\n
      \n \n
      \n '; - } ; -__p += '\n '; - if (!ctx.isSyncing && file.status !== 'success') { ; -__p += '\n
      \n '; - } ; -__p += '\n
      \n
    • \n '; - }) ; -__p += '\n '; - ctx.filesToUpload.forEach(function(file) { ; -__p += '\n
    • \n
      \n
      \n
      ' + -((__t = (file.originalName || file.name)) == null ? '' : __t) + -'
      \n '; - if (file.status === 'progress') { ; -__p += '\n
      \n
      \n ' + -((__t = (file.progress)) == null ? '' : __t) + -'% ' + -((__t = (ctx.t('Complete'))) == null ? '' : __t) + -'\n
      \n
      \n '; - } else { ; -__p += '\n
      ' + -((__t = (ctx.t(file.message))) == null ? '' : __t) + -'
      \n '; - } ; -__p += '\n
      \n
      ' + -((__t = (ctx.fileSize(file.size))) == null ? '' : __t) + -'
      \n '; - if (ctx.self.hasTypes) { ; -__p += '\n
      \n \n
      \n '; - } ; -__p += '\n '; - if (file.status === 'progress') { ; -__p += '\n
      \n '; - } else if (!ctx.isSyncing && file.status !== 'success') { ; -__p += '\n
      \n '; - } ; -__p += '\n
      \n
    • \n '; - }) ; -__p += '\n
    \n'; - } else { ; -__p += '\n
    \n '; - ctx.files.forEach(function(file) { ; -__p += '\n
    \n \n ' +
-((__t = (file.originalName || file.name)) == null ? '' : __t) +
-'\n '; - if (!ctx.disabled) { ; -__p += '\n \n '; - } ; -__p += '\n \n
    \n '; - }) ; -__p += '\n '; - ctx.filesToUpload.forEach(function(file) { ; -__p += '\n '; - if (file.status === 'progress') { ; -__p += '\n
    ' + -((__t = (ctx.fileSize(file.size))) == null ? '' : __t) + -'
    \n
    \n
    \n ' + -((__t = (file.progress)) == null ? '' : __t) + -'% ' + -((__t = (ctx.t('Complete'))) == null ? '' : __t) + -'\n
    \n
    \n '; - } else { ; -__p += '\n
    ' + -((__t = (ctx.t(file.message))) == null ? '' : __t) + -'
    \n '; - } ; -__p += '\n '; - }) ; -__p += '\n
    \n'; - } ; -__p += '\n'; - if (!ctx.disabled && (ctx.component.multiple || !ctx.files.length)) { ; -__p += '\n '; - if (ctx.self.useWebViewCamera) { ; -__p += '\n
    \n \n \n
    \n '; - } else if (!ctx.self.cameraMode) { ; -__p += '\n \n '; - } else { ; -__p += '\n
    \n \n
    \n \n \n '; - } ; -__p += '\n'; - } ; -__p += '\n'; - if (!ctx.component.storage || ctx.support.hasWarning) { ; -__p += '\n
    \n '; - if (!ctx.component.storage) { ; -__p += '\n

    ' + -((__t = (ctx.t('No storage has been set for this field. File uploads are disabled until storage is set up.'))) == null ? '' : __t) + -'

    \n '; - } ; -__p += '\n '; - if (!ctx.support.filereader) { ; -__p += '\n

    ' + -((__t = (ctx.t('File API & FileReader API not supported.'))) == null ? '' : __t) + -'

    \n '; - } ; -__p += '\n '; - if (!ctx.support.formdata) { ; -__p += '\n

    ' + -((__t = (ctx.t("XHR2's FormData is not supported."))) == null ? '' : __t) + -'

    \n '; - } ; -__p += '\n '; - if (!ctx.support.progress) { ; -__p += '\n

    ' + -((__t = (ctx.t("XHR2's upload progress isn't supported."))) == null ? '' : __t) + -'

    \n '; - } ; -__p += '\n
    \n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/file/index.d.ts b/lib/cjs/templates/bootstrap4/file/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/file/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/file/index.js b/lib/cjs/templates/bootstrap4/file/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/file/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/grid/html.ejs.js b/lib/cjs/templates/bootstrap4/grid/html.ejs.js deleted file mode 100644 index 95c389a01..000000000 --- a/lib/cjs/templates/bootstrap4/grid/html.ejs.js +++ /dev/null @@ -1,69 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \r\n
    \r\n \r\n \r\n \r\n
    \r\n '; - if (ctx.component.enableRowSelect) { ; -__p += '\r\n
    \r\n ' + -((__t = (ctx.selectedRows)) == null ? '' : __t) + -' selected\r\n
    \r\n '; - } ; -__p += '\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n '; - if (!ctx.component.components.length) { ; -__p += '\r\n \r\n '; - } ; -__p += '\r\n '; - if (ctx.component.enableRowSelect) { ; -__p += '\r\n \r\n '; - } ; -__p += '\r\n '; - ctx.component.components.forEach(function(comp, i) { ; -__p += '\r\n '; - if (comp.show) { ; -__p += '\r\n \r\n '; - } ; -__p += '\r\n '; - }); ; -__p += '\r\n '; - if ((ctx.component.showEditBtn || ctx.component.showDeleteBtn || ctx.component.showDeleteAllBtn) - && ctx.data.length - && !ctx.options.pdf) { ; -__p += '\r\n \r\n '; - } ; -__p += '\r\n \r\n \r\n \r\n
    No components have been set up to display in the Data Table. "Table View" must be checked for components to render.\r\n \r\n \r\n ' + -((__t = ( comp.label || comp.key )) == null ? '' : __t) + -'\r\n '; - if (ctx.options.sortable && comp.sortable) { ; -__p += '\r\n \r\n ' + -((__t = ( ctx.component.sort.isAsc ? '↑' : '↓' )) == null ? '' : __t) + -'\r\n \r\n '; - } ; -__p += '\r\n '; - if (!ctx.options.hideMenu) { ; -__p += '\r\n \r\n \r\n \r\n '; - } ; -__p += '\r\n \r\n
    \r\n Actions\r\n '; - if (ctx.component.showDeleteAllBtn && ctx.data.length) { ; -__p += '\r\n \r\n '; - } ; -__p += '\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n '; - if (ctx.component.showAddBtn && !ctx.options.pdf) { ; -__p += '\r\n
    +
    \r\n '; - } ; -__p += '\r\n
    \r\n
    \r\n
    '; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/grid/index.d.ts b/lib/cjs/templates/bootstrap4/grid/index.d.ts deleted file mode 100644 index abb6036cf..000000000 --- a/lib/cjs/templates/bootstrap4/grid/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - html: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/grid/index.js b/lib/cjs/templates/bootstrap4/grid/index.js deleted file mode 100644 index 9b41e1e80..000000000 --- a/lib/cjs/templates/bootstrap4/grid/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const html_ejs_1 = require("./html.ejs"); -exports.default = { html: html_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/html/form.ejs.js b/lib/cjs/templates/bootstrap4/html/form.ejs.js deleted file mode 100644 index 1c6134a2d..000000000 --- a/lib/cjs/templates/bootstrap4/html/form.ejs.js +++ /dev/null @@ -1,28 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '<' + -((__t = (ctx.tag)) == null ? '' : __t) + -' class="formio-component-htmlelement ' + -((__t = ( ctx.component.className )) == null ? '' : __t) + -'" ref="html"\n '; - ctx.attrs.forEach(function(attr) { ; -__p += '\n ' + -((__t = (attr.attr)) == null ? '' : __t) + -'="' + -((__t = (attr.value)) == null ? '' : __t) + -'"\n '; - }) ; -__p += '\n>' + -((__t = ( ctx.builder ? ctx.content : ctx.t(ctx.content) )) == null ? '' : __t); - if (!ctx.singleTags || ctx.singleTags.indexOf(ctx.tag) === -1) { ; -__p += ''; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/html/index.d.ts b/lib/cjs/templates/bootstrap4/html/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/html/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/html/index.js b/lib/cjs/templates/bootstrap4/html/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/html/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/icon/form.ejs.js b/lib/cjs/templates/bootstrap4/icon/form.ejs.js deleted file mode 100644 index cc7a59b5a..000000000 --- a/lib/cjs/templates/bootstrap4/icon/form.ejs.js +++ /dev/null @@ -1,16 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '' + -((__t = (ctx.content)) == null ? '' : __t) + -'\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/icon/index.d.ts b/lib/cjs/templates/bootstrap4/icon/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/icon/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/icon/index.js b/lib/cjs/templates/bootstrap4/icon/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/icon/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/iconClass.d.ts b/lib/cjs/templates/bootstrap4/iconClass.d.ts deleted file mode 100644 index 2525836d8..000000000 --- a/lib/cjs/templates/bootstrap4/iconClass.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -declare const _default: (iconset: any, name: any, spinning: any) => string; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/iconClass.js b/lib/cjs/templates/bootstrap4/iconClass.js deleted file mode 100644 index e80482f08..000000000 --- a/lib/cjs/templates/bootstrap4/iconClass.js +++ /dev/null @@ -1,40 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.default = (iconset, name, spinning) => { - if (iconset === 'fa') { - switch (name) { - case 'save': - name = 'download'; - break; - case 'zoom-in': - name = 'search-plus'; - break; - case 'zoom-out': - name = 'search-minus'; - break; - case 'question-sign': - name = 'question-circle'; - break; - case 'remove-circle': - case 'circle-xmark': - name = 'times-circle-o'; - break; - case 'new-window': - name = 'window-restore'; - break; - case 'move': - name = 'arrows'; - break; - case 'time': - name = 'clock-o'; - break; - case 'ok-sign': - name = 'check-circle'; - break; - case 'remove-sign': - name = 'times-circle'; - break; - } - } - return spinning ? `${iconset} ${iconset}-${name} ${iconset}-spin` : `${iconset} ${iconset}-${name}`; -}; diff --git a/lib/cjs/templates/bootstrap4/index.d.ts b/lib/cjs/templates/bootstrap4/index.d.ts deleted file mode 100644 index f31000a12..000000000 --- a/lib/cjs/templates/bootstrap4/index.d.ts +++ /dev/null @@ -1,241 +0,0 @@ -declare const _default: { - webform: { - form: string; - builder: string; - }; - well: { - form: string; - }; - wizard: { - form: string; - builder: string; - }; - wizardHeader: { - form: string; - }; - wizardHeaderClassic: { - form: string; - }; - wizardHeaderVertical: { - form: string; - }; - wizardNav: { - form: string; - }; - errorsList: { - form: string; - }; - alert: { - form: string; - }; - grid: { - html: string; - }; - pagination: { - html: string; - }; - columnMenu: { - html: string; - }; - tbody: { - html: string; - }; - paginationBottom: { - html: string; - }; - treeView: { - form: string; - }; - treeEdit: { - form: string; - }; - transform(type: any, text: any): any; - defaultIconset: string; - iconClass: (iconset: any, name: any, spinning: any) => string; - cssClasses: { - 'border-default': string; - 'formio-tab-panel-active': string; - 'formio-tab-link-active': string; - 'formio-tab-link-container-active': string; - 'formio-form-error': string; - 'formio-form-alert': string; - 'formio-label-error': string; - 'formio-input-error': string; - 'formio-alert-danger': string; - 'formio-alert-success': string; - 'formio-alert-warning': string; - 'formio-modal-cancel-button': string; - 'formio-modal-confirm-button': string; - }; - address: { - form: string; - html: string; - }; - builder: { - form: string; - }; - builderComponent: { - form: string; - }; - builderComponents: { - form: string; - }; - builderEditForm: { - form: string; - }; - builderPlaceholder: { - form: string; - }; - builderSidebar: { - form: string; - }; - builderSidebarGroup: { - form: string; - }; - builderWizard: { - form: string; - }; - button: { - form: string; - html: string; - }; - checkbox: { - form: string; - html: string; - }; - columns: { - form: string; - }; - component: { - form: string; - }; - componentModal: { - form: string; - }; - components: { - form: string; - }; - tableComponents: { - form: string; - }; - container: { - form: string; - }; - datagrid: { - form: string; - html: string; - }; - day: { - form: string; - }; - dialog: { - form: string; - }; - editgrid: { - form: string; - html: string; - }; - editgridTable: { - form: string; - html: string; - }; - field: { - form: string; - align: string; - }; - fieldset: { - form: string; - }; - file: { - form: string; - }; - html: { - form: string; - }; - icon: { - form: string; - }; - input: { - form: string; - html: string; - }; - label: { - form: string; - }; - loader: { - form: string; - }; - loading: { - form: string; - }; - map: { - form: string; - }; - message: { - form: string; - }; - modaledit: { - form: string; - }; - modaldialog: { - form: string; - }; - modalPreview: { - form: string; - }; - multipleMasksInput: { - form: string; - }; - multiValueRow: { - form: string; - }; - multiValueTable: { - form: string; - }; - panel: { - form: string; - }; - pdf: { - form: string; - }; - pdfBuilder: { - form: string; - }; - pdfBuilderUpload: { - form: string; - }; - radio: { - form: string; - html: string; - }; - resourceAdd: { - form: string; - }; - select: { - form: string; - html: string; - }; - selectOption: { - form: string; - html: string; - }; - signature: { - form: string; - html: string; - }; - survey: { - form: string; - html: string; - }; - tab: { - flat: string; - form: string; - }; - table: { - form: string; - }; - tree: { - form: string; - }; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/index.js b/lib/cjs/templates/bootstrap4/index.js deleted file mode 100644 index ea18d300f..000000000 --- a/lib/cjs/templates/bootstrap4/index.js +++ /dev/null @@ -1,147 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const address_1 = require("./address"); -const builder_1 = require("./builder"); -const builderComponent_1 = require("./builderComponent"); -const builderComponents_1 = require("./builderComponents"); -const builderEditForm_1 = require("./builderEditForm"); -const builderPlaceholder_1 = require("./builderPlaceholder"); -const builderSidebar_1 = require("./builderSidebar"); -const builderSidebarGroup_1 = require("./builderSidebarGroup"); -const builderWizard_1 = require("./builderWizard"); -const button_1 = require("./button"); -const checkbox_1 = require("./checkbox"); -const columns_1 = require("./columns"); -const component_1 = require("./component"); -const componentModal_1 = require("./componentModal"); -const components_1 = require("./components"); -const tableComponents_1 = require("./tableComponents"); -const container_1 = require("./container"); -const datagrid_1 = require("./datagrid"); -const day_1 = require("./day"); -const dialog_1 = require("./dialog"); -const editgrid_1 = require("./editgrid"); -const editgridTable_1 = require("./editgridTable"); -const field_1 = require("./field"); -const fieldset_1 = require("./fieldset"); -const file_1 = require("./file"); -const html_1 = require("./html"); -const icon_1 = require("./icon"); -const iconClass_1 = require("./iconClass"); -const input_1 = require("./input"); -const label_1 = require("./label"); -const loader_1 = require("./loader"); -const loading_1 = require("./loading"); -const map_1 = require("./map"); -const message_1 = require("./message"); -const modaldialog_1 = require("./modaldialog"); -const modaledit_1 = require("./modaledit"); -const modalPreview_1 = require("./modalPreview"); -const multipleMasksInput_1 = require("./multipleMasksInput"); -const multiValueRow_1 = require("./multiValueRow"); -const multiValueTable_1 = require("./multiValueTable"); -const panel_1 = require("./panel"); -const pdf_1 = require("./pdf"); -const pdfBuilder_1 = require("./pdfBuilder"); -const pdfBuilderUpload_1 = require("./pdfBuilderUpload"); -const radio_1 = require("./radio"); -const resourceAdd_1 = require("./resourceAdd"); -const select_1 = require("./select"); -const selectOption_1 = require("./selectOption"); -const signature_1 = require("./signature"); -const survey_1 = require("./survey"); -const tab_1 = require("./tab"); -const table_1 = require("./table"); -const tree_1 = require("./tree"); -const partials_1 = require("./tree/partials"); -const webform_1 = require("./webform"); -const well_1 = require("./well"); -const wizard_1 = require("./wizard"); -const wizardHeader_1 = require("./wizardHeader"); -const wizardHeaderClassic_1 = require("./wizardHeaderClassic"); -const wizardHeaderVertical_1 = require("./wizardHeaderVertical"); -const wizardNav_1 = require("./wizardNav"); -const cssClasses_1 = require("./cssClasses"); -const errorsList_1 = require("./errorsList"); -const alert_1 = require("./alert"); -const grid_1 = require("./grid"); -const pagination_1 = require("./pagination"); -const column_menu_1 = require("./column-menu"); -const tbody_1 = require("./tbody"); -const pagination_bottom_1 = require("./pagination-bottom"); -exports.default = Object.assign(Object.assign({ transform(type, text) { - if (!text) { - return text; - } - switch (type) { - case 'class': - return this.cssClasses.hasOwnProperty(text.toString()) ? this.cssClasses[text.toString()] : text; - } - return text; - }, defaultIconset: 'fa', iconClass: iconClass_1.default, - cssClasses: cssClasses_1.default, - address: address_1.default, - builder: builder_1.default, - builderComponent: builderComponent_1.default, - builderComponents: builderComponents_1.default, - builderEditForm: builderEditForm_1.default, - builderPlaceholder: builderPlaceholder_1.default, - builderSidebar: builderSidebar_1.default, - builderSidebarGroup: builderSidebarGroup_1.default, - builderWizard: builderWizard_1.default, - button: button_1.default, - checkbox: checkbox_1.default, - columns: columns_1.default, - component: component_1.default, - componentModal: componentModal_1.default, - components: components_1.default, - tableComponents: tableComponents_1.default, - container: container_1.default, - datagrid: datagrid_1.default, - day: day_1.default, - dialog: dialog_1.default, - editgrid: editgrid_1.default, - editgridTable: editgridTable_1.default, - field: field_1.default, - fieldset: fieldset_1.default, - file: file_1.default, - html: html_1.default, - icon: icon_1.default, - input: input_1.default, - label: label_1.default, - loader: loader_1.default, - loading: loading_1.default, - map: map_1.default, - message: message_1.default, - modaledit: modaledit_1.default, - modaldialog: modaldialog_1.default, - modalPreview: modalPreview_1.default, - multipleMasksInput: multipleMasksInput_1.default, - multiValueRow: multiValueRow_1.default, - multiValueTable: multiValueTable_1.default, - panel: panel_1.default, - pdf: pdf_1.default, - pdfBuilder: pdfBuilder_1.default, - pdfBuilderUpload: pdfBuilderUpload_1.default, - radio: radio_1.default, - resourceAdd: resourceAdd_1.default, - select: select_1.default, - selectOption: selectOption_1.default, - signature: signature_1.default, - survey: survey_1.default, - tab: tab_1.default, - table: table_1.default, - tree: tree_1.default }, partials_1.default), { webform: webform_1.default, - well: well_1.default, - wizard: wizard_1.default, - wizardHeader: wizardHeader_1.default, - wizardHeaderClassic: wizardHeaderClassic_1.default, - wizardHeaderVertical: wizardHeaderVertical_1.default, - wizardNav: wizardNav_1.default, - errorsList: errorsList_1.default, - alert: alert_1.default, - grid: grid_1.default, - pagination: pagination_1.default, - columnMenu: column_menu_1.default, - tbody: tbody_1.default, - paginationBottom: pagination_bottom_1.default }); diff --git a/lib/cjs/templates/bootstrap4/input/form.ejs.js b/lib/cjs/templates/bootstrap4/input/form.ejs.js deleted file mode 100644 index 4885d022d..000000000 --- a/lib/cjs/templates/bootstrap4/input/form.ejs.js +++ /dev/null @@ -1,111 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } - - if (ctx.prefix || ctx.suffix) { ; -__p += '\n
    \n '; - } ; -__p += '\n '; - if (ctx.prefix) { ; -__p += '\n
    \n \n '; - if(ctx.prefix instanceof HTMLElement){ ; -__p += '\n ' + -((__t = ( ctx.t(ctx.prefix.outerHTML, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - } else{ ; -__p += '\n ' + -((__t = ( ctx.t(ctx.prefix, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - } ; -__p += '\n \n
    \n '; - } ; -__p += '\n '; - if (!ctx.component.editor && !ctx.component.wysiwyg) { ; -__p += '\n <' + -((__t = (ctx.input.type)) == null ? '' : __t) + -'\n ref="' + -((__t = (ctx.input.ref ? ctx.input.ref : 'input')) == null ? '' : __t) + -'"\n '; - for (var attr in ctx.input.attr) { ; -__p += '\n ' + -((__t = (attr)) == null ? '' : __t) + -'="' + -((__t = (ctx.input.attr[attr])) == null ? '' : __t) + -'"\n '; - } ; -__p += '\n id="' + -((__t = (ctx.instance.id)) == null ? '' : __t) + -'-' + -((__t = (ctx.component.key)) == null ? '' : __t) + -'"\n aria-labelledby="l-' + -((__t = (ctx.instance.id)) == null ? '' : __t) + -'-' + -((__t = (ctx.component.key)) == null ? '' : __t) + -' '; - if (ctx.component.description) { ; -__p += 'd-' + -((__t = (ctx.instance.id)) == null ? '' : __t) + -'-' + -((__t = (ctx.component.key)) == null ? '' : __t); - } ; -__p += '"\n aria-required="' + -((__t = (ctx.input.ref === 'input' || !ctx.input.ref ? ctx.component.validate.required : - ctx.component.fields && ctx.component.fields[ctx.input.ref] && ctx.component.fields[ctx.input.ref].required || false)) == null ? '' : __t) + -'"\n >' + -((__t = (ctx.input.content)) == null ? '' : __t) + -'\n '; - if (ctx.hasValueMaskInput) { ; -__p += '\n \n '; - } ; -__p += '\n'; - } ; -__p += '\n'; - if (ctx.component.editor || ctx.component.wysiwyg) { ; -__p += '\n
    \n'; - } ; -__p += '\n'; - if (ctx.component.type === 'datetime') { ; -__p += '\n\n'; - } ; -__p += '\n'; - if (ctx.suffix) { ; -__p += '\n
    \n \n '; - if(ctx.suffix instanceof HTMLElement){ ; -__p += '\n ' + -((__t = ( ctx.t(ctx.suffix.outerHTML, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - } else{ ; -__p += '\n ' + -((__t = ( ctx.t(ctx.suffix, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - } ; -__p += '\n \n
    \n'; - } ; -__p += '\n'; - if (ctx.prefix || ctx.suffix) { ; -__p += '\n
    \n'; - } ; -__p += '\n'; - if (ctx.component.showCharCount || ctx.component.showWordCount) { ; -__p += '\n
    \n '; - if (ctx.component.showCharCount) { ; -__p += '\n \n '; - } ; -__p += '\n '; - if (ctx.component.showWordCount) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/input/html.ejs.js b/lib/cjs/templates/bootstrap4/input/html.ejs.js deleted file mode 100644 index 5979e1694..000000000 --- a/lib/cjs/templates/bootstrap4/input/html.ejs.js +++ /dev/null @@ -1,16 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    '; - if (ctx.value) { ; -__p += -((__t = (ctx.value)) == null ? '' : __t); - } else { ; -__p += '-'; - } ; -__p += '
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/input/index.d.ts b/lib/cjs/templates/bootstrap4/input/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/cjs/templates/bootstrap4/input/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/input/index.js b/lib/cjs/templates/bootstrap4/input/index.js deleted file mode 100644 index 269712cfb..000000000 --- a/lib/cjs/templates/bootstrap4/input/index.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -const html_ejs_1 = require("./html.ejs"); -exports.default = { form: form_ejs_1.default, html: html_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/label/form.ejs.js b/lib/cjs/templates/bootstrap4/label/form.ejs.js deleted file mode 100644 index d85478b57..000000000 --- a/lib/cjs/templates/bootstrap4/label/form.ejs.js +++ /dev/null @@ -1,35 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n ' + -((__t = ( ctx.t(ctx.component.label, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - if (ctx.component.type === 'number' || ctx.component.type === 'phoneNumber' || ctx.component.type === 'currency') { ; -__p += '\n , ' + -((__t = (ctx.t('numeric only'))) == null ? '' : __t) + -',\n '; - } ; -__p += '\n '; - if (ctx.component.tooltip) { ; -__p += '\n \n '; - } ; -__p += '\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/label/index.d.ts b/lib/cjs/templates/bootstrap4/label/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/label/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/label/index.js b/lib/cjs/templates/bootstrap4/label/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/label/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/loader/form.ejs.js b/lib/cjs/templates/bootstrap4/loader/form.ejs.js deleted file mode 100644 index bc2c37f36..000000000 --- a/lib/cjs/templates/bootstrap4/loader/form.ejs.js +++ /dev/null @@ -1,8 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '
    \n
    \n
    \n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/loader/index.d.ts b/lib/cjs/templates/bootstrap4/loader/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/loader/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/loader/index.js b/lib/cjs/templates/bootstrap4/loader/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/loader/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/loading/form.ejs.js b/lib/cjs/templates/bootstrap4/loading/form.ejs.js deleted file mode 100644 index ff963707b..000000000 --- a/lib/cjs/templates/bootstrap4/loading/form.ejs.js +++ /dev/null @@ -1,8 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += 'Loading...\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/loading/index.d.ts b/lib/cjs/templates/bootstrap4/loading/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/loading/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/loading/index.js b/lib/cjs/templates/bootstrap4/loading/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/loading/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/map/form.ejs.js b/lib/cjs/templates/bootstrap4/map/form.ejs.js deleted file mode 100644 index 4f3170f8e..000000000 --- a/lib/cjs/templates/bootstrap4/map/form.ejs.js +++ /dev/null @@ -1,10 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/map/index.d.ts b/lib/cjs/templates/bootstrap4/map/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/map/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/map/index.js b/lib/cjs/templates/bootstrap4/map/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/map/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/message/form.ejs.js b/lib/cjs/templates/bootstrap4/message/form.ejs.js deleted file mode 100644 index a1db3d15b..000000000 --- a/lib/cjs/templates/bootstrap4/message/form.ejs.js +++ /dev/null @@ -1,16 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '
    ' + -((__t = (ctx.message)) == null ? '' : __t) + -'
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/message/index.d.ts b/lib/cjs/templates/bootstrap4/message/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/message/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/message/index.js b/lib/cjs/templates/bootstrap4/message/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/message/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/modalPreview/form.ejs.js b/lib/cjs/templates/bootstrap4/modalPreview/form.ejs.js deleted file mode 100644 index 191d0675f..000000000 --- a/lib/cjs/templates/bootstrap4/modalPreview/form.ejs.js +++ /dev/null @@ -1,24 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '
    \n\n\n ' + -((__t = ( ctx.previewText )) == null ? '' : __t) + -'\n\n
    \n ' + -((__t = ( ctx.messages )) == null ? '' : __t) + -'\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/modalPreview/index.d.ts b/lib/cjs/templates/bootstrap4/modalPreview/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/modalPreview/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/modalPreview/index.js b/lib/cjs/templates/bootstrap4/modalPreview/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/modalPreview/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/modaldialog/form.ejs.js b/lib/cjs/templates/bootstrap4/modaldialog/form.ejs.js deleted file mode 100644 index 05037b061..000000000 --- a/lib/cjs/templates/bootstrap4/modaldialog/form.ejs.js +++ /dev/null @@ -1,10 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '
    \n
    \n
    \n \n ' + -((__t = (ctx.t('Close'))) == null ? '' : __t) + -'\n \n
    \n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/modaldialog/index.d.ts b/lib/cjs/templates/bootstrap4/modaldialog/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/modaldialog/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/modaldialog/index.js b/lib/cjs/templates/bootstrap4/modaldialog/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/modaldialog/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/modaledit/form.ejs.js b/lib/cjs/templates/bootstrap4/modaledit/form.ejs.js deleted file mode 100644 index 981e78686..000000000 --- a/lib/cjs/templates/bootstrap4/modaledit/form.ejs.js +++ /dev/null @@ -1,12 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '
    \n \n \n \n
    ' + -((__t = (ctx.content)) == null ? '' : __t) + -'
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/modaledit/index.d.ts b/lib/cjs/templates/bootstrap4/modaledit/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/modaledit/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/modaledit/index.js b/lib/cjs/templates/bootstrap4/modaledit/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/modaledit/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/multiValueRow/form.ejs.js b/lib/cjs/templates/bootstrap4/multiValueRow/form.ejs.js deleted file mode 100644 index cac626aa1..000000000 --- a/lib/cjs/templates/bootstrap4/multiValueRow/form.ejs.js +++ /dev/null @@ -1,17 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n \n ' + -((__t = (ctx.element)) == null ? '' : __t) + -'\n \n '; - if (!ctx.disabled) { ; -__p += '\n \n \n \n '; - } ; -__p += '\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/multiValueRow/index.d.ts b/lib/cjs/templates/bootstrap4/multiValueRow/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/multiValueRow/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/multiValueRow/index.js b/lib/cjs/templates/bootstrap4/multiValueRow/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/multiValueRow/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/multiValueTable/form.ejs.js b/lib/cjs/templates/bootstrap4/multiValueTable/form.ejs.js deleted file mode 100644 index 7635cc0a9..000000000 --- a/lib/cjs/templates/bootstrap4/multiValueTable/form.ejs.js +++ /dev/null @@ -1,19 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n \n ' + -((__t = (ctx.rows)) == null ? '' : __t) + -'\n '; - if (!ctx.disabled) { ; -__p += '\n \n \n \n '; - } ; -__p += '\n \n
    \n \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/multiValueTable/index.d.ts b/lib/cjs/templates/bootstrap4/multiValueTable/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/multiValueTable/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/multiValueTable/index.js b/lib/cjs/templates/bootstrap4/multiValueTable/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/multiValueTable/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/multipleMasksInput/form.ejs.js b/lib/cjs/templates/bootstrap4/multipleMasksInput/form.ejs.js deleted file mode 100644 index af72e4ef0..000000000 --- a/lib/cjs/templates/bootstrap4/multipleMasksInput/form.ejs.js +++ /dev/null @@ -1,33 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n ' + -((__t = (option.label)) == null ? '' : __t) + -'\n '; - }); ; -__p += '\n \n \n
    \n
    \n Items per page:\n
    \n \n
    \n \n ' + -((__t = ( ctx.itemsCount )) == null ? '' : __t) + -'\n \n \n \n \n \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/pagination/index.d.ts b/lib/cjs/templates/bootstrap4/pagination/index.d.ts deleted file mode 100644 index abb6036cf..000000000 --- a/lib/cjs/templates/bootstrap4/pagination/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - html: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/pagination/index.js b/lib/cjs/templates/bootstrap4/pagination/index.js deleted file mode 100644 index 9b41e1e80..000000000 --- a/lib/cjs/templates/bootstrap4/pagination/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const html_ejs_1 = require("./html.ejs"); -exports.default = { html: html_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/panel/form.ejs.js b/lib/cjs/templates/bootstrap4/panel/form.ejs.js deleted file mode 100644 index 8fe0fe787..000000000 --- a/lib/cjs/templates/bootstrap4/panel/form.ejs.js +++ /dev/null @@ -1,61 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - if (!ctx.component.hideLabel || ctx.builder || ctx.component.collapsible || ctx.component.tooltip) { ; -__p += '\n
    \n \n '; - if (ctx.component.collapsible) { ; -__p += '\n \n '; - } ; -__p += '\n '; - if (!ctx.component.hideLabel || ctx.builder) { ; -__p += '\n ' + -((__t = (ctx.t(ctx.component.title, { _userInput: true }))) == null ? '' : __t) + -'\n '; - } ; -__p += '\n '; - if (ctx.component.tooltip) { ; -__p += '\n \n '; - } ; -__p += '\n \n
    \n '; - } ; -__p += '\n '; - if (!ctx.collapsed || ctx.builder) { ; -__p += '\n
    \n ' + -((__t = (ctx.children)) == null ? '' : __t) + -'\n
    \n '; - } ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/panel/index.d.ts b/lib/cjs/templates/bootstrap4/panel/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/panel/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/panel/index.js b/lib/cjs/templates/bootstrap4/panel/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/panel/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/pdf/form.ejs.js b/lib/cjs/templates/bootstrap4/pdf/form.ejs.js deleted file mode 100644 index 0d45f34d9..000000000 --- a/lib/cjs/templates/bootstrap4/pdf/form.ejs.js +++ /dev/null @@ -1,16 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '
    \n \n \n \n \n \n \n
    \n ' + -((__t = ( ctx.submitButton )) == null ? '' : __t) + -'\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/pdf/index.d.ts b/lib/cjs/templates/bootstrap4/pdf/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/pdf/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/pdf/index.js b/lib/cjs/templates/bootstrap4/pdf/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/pdf/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/pdfBuilder/form.ejs.js b/lib/cjs/templates/bootstrap4/pdfBuilder/form.ejs.js deleted file mode 100644 index 695673f9e..000000000 --- a/lib/cjs/templates/bootstrap4/pdfBuilder/form.ejs.js +++ /dev/null @@ -1,12 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '
    \n
    \n ' + -((__t = (ctx.sidebar)) == null ? '' : __t) + -'\n
    \n
    \n
    \n ' + -((__t = (ctx.form)) == null ? '' : __t) + -'\n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/pdfBuilder/index.d.ts b/lib/cjs/templates/bootstrap4/pdfBuilder/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/pdfBuilder/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/pdfBuilder/index.js b/lib/cjs/templates/bootstrap4/pdfBuilder/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/pdfBuilder/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/pdfBuilderUpload/form.ejs.js b/lib/cjs/templates/bootstrap4/pdfBuilderUpload/form.ejs.js deleted file mode 100644 index 0f9925ff9..000000000 --- a/lib/cjs/templates/bootstrap4/pdfBuilderUpload/form.ejs.js +++ /dev/null @@ -1,16 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '
    \n

    ' + -((__t = (ctx.t('Upload a PDF File'))) == null ? '' : __t) + -'

    \n \n
    \n \n ' + -((__t = (ctx.t('Drop pdf to start, or'))) == null ? '' : __t) + -' ' + -((__t = (ctx.t('browse'))) == null ? '' : __t) + -'\n \n \n
    \n
    \n\n
    \n
    \n\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/pdfBuilderUpload/index.d.ts b/lib/cjs/templates/bootstrap4/pdfBuilderUpload/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/pdfBuilderUpload/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/pdfBuilderUpload/index.js b/lib/cjs/templates/bootstrap4/pdfBuilderUpload/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/pdfBuilderUpload/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/radio/form.ejs.js b/lib/cjs/templates/bootstrap4/radio/form.ejs.js deleted file mode 100644 index f67420d57..000000000 --- a/lib/cjs/templates/bootstrap4/radio/form.ejs.js +++ /dev/null @@ -1,87 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n \n \n '; - }) ; -__p += '\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/radio/html.ejs.js b/lib/cjs/templates/bootstrap4/radio/html.ejs.js deleted file mode 100644 index 8a5109eb4..000000000 --- a/lib/cjs/templates/bootstrap4/radio/html.ejs.js +++ /dev/null @@ -1,13 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - var filtered = ctx.values.filter(function(item) {return ctx.value === item.value || (typeof ctx.value === 'object' && ctx.value.hasOwnProperty(item.value) && ctx.value[item.value])}).map(function(item) { return ctx.t(item.label, { _userInput: true })}).join(', ') ; -__p += '\n ' + -((__t = ( filtered )) == null ? '' : __t) + -'\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/radio/index.d.ts b/lib/cjs/templates/bootstrap4/radio/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/cjs/templates/bootstrap4/radio/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/radio/index.js b/lib/cjs/templates/bootstrap4/radio/index.js deleted file mode 100644 index 269712cfb..000000000 --- a/lib/cjs/templates/bootstrap4/radio/index.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -const html_ejs_1 = require("./html.ejs"); -exports.default = { form: form_ejs_1.default, html: html_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/resourceAdd/form.ejs.js b/lib/cjs/templates/bootstrap4/resourceAdd/form.ejs.js deleted file mode 100644 index b6af540e4..000000000 --- a/lib/cjs/templates/bootstrap4/resourceAdd/form.ejs.js +++ /dev/null @@ -1,14 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = ''; -__p += '\n \n \n \n \n \n \n \n \n
    \n ' + -((__t = (ctx.element)) == null ? '' : __t) + -'\n
    \n \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/resourceAdd/index.d.ts b/lib/cjs/templates/bootstrap4/resourceAdd/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/cjs/templates/bootstrap4/resourceAdd/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/resourceAdd/index.js b/lib/cjs/templates/bootstrap4/resourceAdd/index.js deleted file mode 100644 index a2126853b..000000000 --- a/lib/cjs/templates/bootstrap4/resourceAdd/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -exports.default = { form: form_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/select/form.ejs.js b/lib/cjs/templates/bootstrap4/select/form.ejs.js deleted file mode 100644 index 00edb1c03..000000000 --- a/lib/cjs/templates/bootstrap4/select/form.ejs.js +++ /dev/null @@ -1,49 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '' + -((__t = (ctx.selectOptions)) == null ? '' : __t) + -'\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/select/html.ejs.js b/lib/cjs/templates/bootstrap4/select/html.ejs.js deleted file mode 100644 index 56eb1847c..000000000 --- a/lib/cjs/templates/bootstrap4/select/html.ejs.js +++ /dev/null @@ -1,16 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    '; - if (ctx.value) { ; -__p += -((__t = ( ctx.self.itemValueForHTMLMode(ctx.value) )) == null ? '' : __t); - } else { ; -__p += '-'; - } ; -__p += '
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap4/select/index.d.ts b/lib/cjs/templates/bootstrap4/select/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/cjs/templates/bootstrap4/select/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/cjs/templates/bootstrap4/select/index.js b/lib/cjs/templates/bootstrap4/select/index.js deleted file mode 100644 index 269712cfb..000000000 --- a/lib/cjs/templates/bootstrap4/select/index.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const form_ejs_1 = require("./form.ejs"); -const html_ejs_1 = require("./html.ejs"); -exports.default = { form: form_ejs_1.default, html: html_ejs_1.default }; diff --git a/lib/cjs/templates/bootstrap4/selectOption/form.ejs.js b/lib/cjs/templates/bootstrap4/selectOption/form.ejs.js deleted file mode 100644 index 5a93fb2c7..000000000 --- a/lib/cjs/templates/bootstrap4/selectOption/form.ejs.js +++ /dev/null @@ -1,23 +0,0 @@ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default=function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n '; +'\r\n '; }); ; -__p += '\n \n \n \r\n \n '; +__p += '">\r\n '; if (ctx.component.collapsible) { ; -__p += '\n \n '; +' text-muted" data-title="Collapse Panel">\r\n '; } ; -__p += '\n '; - if (!ctx.component.hideLabel || ctx.builder) { ; -__p += '\n ' + +__p += '\r\n '; + if (!ctx.label.hidden || ctx.builder) { ; +__p += '\r\n ' + ((__t = (ctx.t(ctx.component.title, { _userInput: true }))) == null ? '' : __t) + -'\n '; +'\r\n '; } ; -__p += '\n '; +__p += '\r\n '; if (ctx.component.tooltip) { ; -__p += '\n \n '; +'">\r\n '; } ; -__p += '\n \n \n '; +__p += '\r\n \r\n \r\n '; } ; -__p += '\n '; +__p += '\r\n '; if (!ctx.collapsed || ctx.builder) { ; -__p += '\n
    \n ' + +'">\r\n ' + ((__t = (ctx.children)) == null ? '' : __t) + -'\n
    \n '; +'\r\n \r\n '; } ; -__p += '\n\n'; +__p += '\r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/pdf/form.ejs.js b/lib/cjs/templates/bootstrap5/pdf/form.ejs.js index 0d45f34d9..7f50a70b4 100644 --- a/lib/cjs/templates/bootstrap5/pdf/form.ejs.js +++ b/lib/cjs/templates/bootstrap5/pdf/form.ejs.js @@ -5,12 +5,12 @@ exports.default=function(ctx) { var __t, __p = ''; __p += '
    \n \n \r\n \r\n \n \n \n \r\n \r\n \r\n \n \n
    \n ' + +'">
    \r\n
    \r\n
    \r\n ' + ((__t = ( ctx.submitButton )) == null ? '' : __t) + -'\n
    \n'; +'\r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/pdfBuilder/form.ejs.js b/lib/cjs/templates/bootstrap5/pdfBuilder/form.ejs.js index 695673f9e..bd1562607 100644 --- a/lib/cjs/templates/bootstrap5/pdfBuilder/form.ejs.js +++ b/lib/cjs/templates/bootstrap5/pdfBuilder/form.ejs.js @@ -3,10 +3,10 @@ Object.defineProperty(exports, "__esModule", { }); exports.default=function(ctx) { var __t, __p = ''; -__p += '
    \n
    \n ' + +__p += '
    \r\n
    \r\n ' + ((__t = (ctx.sidebar)) == null ? '' : __t) + -'\n
    \n
    \n
    \n ' + +'\r\n
    \r\n
    \r\n
    \r\n ' + ((__t = (ctx.form)) == null ? '' : __t) + -'\n
    \n
    \n'; +'\r\n
    \r\n
    \r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/pdfBuilderUpload/form.ejs.js b/lib/cjs/templates/bootstrap5/pdfBuilderUpload/form.ejs.js index 0f9925ff9..348e52399 100644 --- a/lib/cjs/templates/bootstrap5/pdfBuilderUpload/form.ejs.js +++ b/lib/cjs/templates/bootstrap5/pdfBuilderUpload/form.ejs.js @@ -3,14 +3,14 @@ Object.defineProperty(exports, "__esModule", { }); exports.default=function(ctx) { var __t, __p = ''; -__p += '
    \n

    ' + +__p += '
    \r\n

    ' + ((__t = (ctx.t('Upload a PDF File'))) == null ? '' : __t) + -'

    \n \n
    \n \n \r\n
    \r\n \r\n ' + ((__t = (ctx.t('Drop pdf to start, or'))) == null ? '' : __t) + ' ' + ((__t = (ctx.t('browse'))) == null ? '' : __t) + -'\n \n \n
    \n
    \n\n
    \n
    \n\n'; +'\r\n \r\n \r\n
    \r\n
    \r\n\r\n
    \r\n

    \r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/radio/form.ejs.js b/lib/cjs/templates/bootstrap5/radio/form.ejs.js index 7fca2cb43..09aeeb7e1 100644 --- a/lib/cjs/templates/bootstrap5/radio/form.ejs.js +++ b/lib/cjs/templates/bootstrap5/radio/form.ejs.js @@ -4,33 +4,33 @@ Object.defineProperty(exports, "__esModule", { exports.default=function(ctx) { var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } -__p += '\n '; +'" ref="wrapper">\r\n '; if (['left', 'top'].includes(ctx.component.optionsLabelPosition)) { ; -__p += '\n \n '; +'\r\n '; } ; -__p += '\n <' + +__p += '\r\n <' + ((__t = (ctx.input.type)) == null ? '' : __t) + -'\n ref="input"\n '; +'\r\n ref="input"\r\n '; for (var attr in ctx.input.attr) { ; -__p += '\n ' + +__p += '\r\n ' + ((__t = (attr)) == null ? '' : __t) + '="' + ((__t = (ctx.input.attr[attr])) == null ? '' : __t) + -'"\n '; +'"\r\n '; } ; -__p += '\n value="' + +__p += '\r\n value="' + ((__t = (item.value)) == null ? '' : __t) + -'"\n '; +'"\r\n '; if (ctx.value && (ctx.value === item.value || (typeof ctx.value === 'object' && ctx.value.hasOwnProperty(item.value) && ctx.value[item.value]))) { ; -__p += '\n checked=true\n '; +__p += '\r\n checked=true\r\n '; } ; -__p += '\n '; +__p += '\r\n '; if (item.disabled) { ; -__p += '\n disabled=true\n '; +__p += '\r\n disabled=true\r\n '; } ; -__p += '\n id="' + +__p += '\r\n id="' + ((__t = (ctx.instance.root && ctx.instance.root.id)) == null ? '' : __t) + '-' + ((__t = (ctx.id)) == null ? '' : __t) + @@ -72,11 +72,11 @@ __p += '\n id="' + ((__t = (ctx.row)) == null ? '' : __t) + '-' + ((__t = ((typeof item.value === 'object') ? item.value + '-' + index : item.value)) == null ? '' : __t) + -'"\n role="' + +'"\r\n role="' + ((__t = (ctx.component.type === 'selectboxes' ? 'checkbox' : 'radio')) == null ? '' : __t) + -'"\n >\n '; +'"\r\n >\r\n '; if (!ctx.component.optionsLabelPosition || ['right', 'bottom'].includes(ctx.component.optionsLabelPosition)) { ; -__p += '\n \n '; +'\r\n '; } ; -__p += '\n \n '; +__p += '\r\n \r\n '; }) ; -__p += '\n\n'; +__p += '\r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/radio/html.ejs.js b/lib/cjs/templates/bootstrap5/radio/html.ejs.js index 8a5109eb4..94c7944ae 100644 --- a/lib/cjs/templates/bootstrap5/radio/html.ejs.js +++ b/lib/cjs/templates/bootstrap5/radio/html.ejs.js @@ -4,10 +4,10 @@ Object.defineProperty(exports, "__esModule", { exports.default=function(ctx) { var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; +__p += '
    \r\n '; var filtered = ctx.values.filter(function(item) {return ctx.value === item.value || (typeof ctx.value === 'object' && ctx.value.hasOwnProperty(item.value) && ctx.value[item.value])}).map(function(item) { return ctx.t(item.label, { _userInput: true })}).join(', ') ; -__p += '\n ' + +__p += '\r\n ' + ((__t = ( filtered )) == null ? '' : __t) + -'\n
    \n'; +'\r\n
    \r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/resourceAdd/form.ejs.js b/lib/cjs/templates/bootstrap5/resourceAdd/form.ejs.js index b6af540e4..97871597a 100644 --- a/lib/cjs/templates/bootstrap5/resourceAdd/form.ejs.js +++ b/lib/cjs/templates/bootstrap5/resourceAdd/form.ejs.js @@ -3,12 +3,12 @@ Object.defineProperty(exports, "__esModule", { }); exports.default=function(ctx) { var __t, __p = ''; -__p += '\n \n \n \r\n \r\n \r\n
    \n ' + +__p += '\r\n \r\n \r\n \n \n \n \n \n \n
    \r\n ' + ((__t = (ctx.element)) == null ? '' : __t) + -'\n
    \n \n
    \n'; +'\r\n \r\n
    \r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/select/form.ejs.js b/lib/cjs/templates/bootstrap5/select/form.ejs.js index 00edb1c03..2c5c6a577 100644 --- a/lib/cjs/templates/bootstrap5/select/form.ejs.js +++ b/lib/cjs/templates/bootstrap5/select/form.ejs.js @@ -4,46 +4,46 @@ Object.defineProperty(exports, "__esModule", { exports.default=function(ctx) { var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } -__p += '' + +'"\r\n>' + ((__t = (ctx.selectOptions)) == null ? '' : __t) + -'\n\r\n\n'; +'"\r\n/>\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/select/html.ejs.js b/lib/cjs/templates/bootstrap5/select/html.ejs.js index 56eb1847c..2537fd461 100644 --- a/lib/cjs/templates/bootstrap5/select/html.ejs.js +++ b/lib/cjs/templates/bootstrap5/select/html.ejs.js @@ -11,6 +11,6 @@ __p += } else { ; __p += '-'; } ; -__p += '\n'; +__p += '\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/selectOption/form.ejs.js b/lib/cjs/templates/bootstrap5/selectOption/form.ejs.js index 5a93fb2c7..2dd0fc8d8 100644 --- a/lib/cjs/templates/bootstrap5/selectOption/form.ejs.js +++ b/lib/cjs/templates/bootstrap5/selectOption/form.ejs.js @@ -6,18 +6,18 @@ var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } __p += '\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/selectOption/html.ejs.js b/lib/cjs/templates/bootstrap5/selectOption/html.ejs.js index 5e0e168df..bb82ea914 100644 --- a/lib/cjs/templates/bootstrap5/selectOption/html.ejs.js +++ b/lib/cjs/templates/bootstrap5/selectOption/html.ejs.js @@ -9,6 +9,6 @@ function print() { __p += __j.call(arguments, '') } __p += ((__t = (ctx.t(ctx.option.label, { _userInput: true }))) == null ? '' : __t); } ; -__p += '\n'; +__p += '\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/signature/form.ejs.js b/lib/cjs/templates/bootstrap5/signature/form.ejs.js index 7dbcd2d47..751d96ce5 100644 --- a/lib/cjs/templates/bootstrap5/signature/form.ejs.js +++ b/lib/cjs/templates/bootstrap5/signature/form.ejs.js @@ -6,28 +6,28 @@ var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } __p += ((__t = (ctx.element)) == null ? '' : __t) + -'\n\n \n \r\n \r\n \n \n \r\n \r\n \n '; +'" ref="canvas">\r\n '; if (ctx.required) { ; -__p += '\n \n '; +'">\r\n \r\n '; } ; -__p += '\n \n\n'; +__p += '\r\n \r\n\r\n'; if (ctx.component.footer) { ; -__p += '\n \r\n'; } ; -__p += '\n'; +__p += '\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/signature/html.ejs.js b/lib/cjs/templates/bootstrap5/signature/html.ejs.js index 5e1ec4ccf..6f7be6634 100644 --- a/lib/cjs/templates/bootstrap5/signature/html.ejs.js +++ b/lib/cjs/templates/bootstrap5/signature/html.ejs.js @@ -3,6 +3,6 @@ Object.defineProperty(exports, "__esModule", { }); exports.default=function(ctx) { var __t, __p = ''; -__p += '\n'; +__p += '\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/survey/form.ejs.js b/lib/cjs/templates/bootstrap5/survey/form.ejs.js index ce0e49caf..1f4821b7c 100644 --- a/lib/cjs/templates/bootstrap5/survey/form.ejs.js +++ b/lib/cjs/templates/bootstrap5/survey/form.ejs.js @@ -8,35 +8,35 @@ __p += '\n \n \n \n '; +'">\r\n \r\n \r\n \r\n '; ctx.component.values.forEach(function(value) { ; -__p += '\n \n '; +__p += '\r\n \r\n '; }) ; -__p += '\n \n \n \n '; +__p += '\r\n \r\n \r\n \r\n '; ctx.component.questions.forEach(function(question) { ; -__p += '\n \n \r\n \n '; +__p += '\r\n \r\n '; ctx.component.values.forEach(function(value) { ; -__p += '\n \n '; +'" ref="input">\r\n \r\n '; }) ; -__p += '\n \n '; +__p += '\r\n \r\n '; }) ; -__p += '\n \n
    \n ' + +__p += '\r\n \r\n ' + ((__t = (ctx.t(value.label, { _userInput: true }))) == null ? '' : __t) + -'\n '; +'\r\n '; if (value.tooltip) { ; -__p += '\n \n '; +'">\r\n '; } ; -__p += '\n
    \n ' + +__p += '\r\n
    \r\n ' + ((__t = (ctx.t(question.label))) == null ? '' : __t) + -'\n '; +'\r\n '; if (question.tooltip) { ; -__p += '\n \n '; +'">\r\n '; } ; -__p += '\n \n \r\n \n \n
    \n'; +__p += '\r\n \r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/survey/html.ejs.js b/lib/cjs/templates/bootstrap5/survey/html.ejs.js index 46923db7d..552b24422 100644 --- a/lib/cjs/templates/bootstrap5/survey/html.ejs.js +++ b/lib/cjs/templates/bootstrap5/survey/html.ejs.js @@ -4,22 +4,22 @@ Object.defineProperty(exports, "__esModule", { exports.default=function(ctx) { var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } -__p += '\n \n '; +__p += '
    \r\n \r\n '; ctx.component.questions.forEach(function(question) { ; -__p += '\n \n \r\n \n \n \n '; +__p += '\r\n \r\n \r\n '; }) ; -__p += '\n \n
    ' + +__p += '\r\n
    ' + ((__t = (ctx.t(question.label))) == null ? '' : __t) + -'\n '; +'\r\n \r\n '; ctx.component.values.forEach(function(item) { ; -__p += '\n '; +__p += '\r\n '; if (ctx.value && ctx.value.hasOwnProperty(question.value) && ctx.value[question.value] === item.value) { ; -__p += '\n ' + +__p += '\r\n ' + ((__t = (ctx.t(item.label))) == null ? '' : __t) + -'\n '; +'\r\n '; } ; -__p += '\n '; +__p += '\r\n '; }) ; -__p += '\n
    \n'; +__p += '\r\n \r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/tab/flat.ejs.js b/lib/cjs/templates/bootstrap5/tab/flat.ejs.js index 55f0b4974..3363ece59 100644 --- a/lib/cjs/templates/bootstrap5/tab/flat.ejs.js +++ b/lib/cjs/templates/bootstrap5/tab/flat.ejs.js @@ -6,14 +6,14 @@ var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } ctx.component.components.forEach(function(tab, index) { ; -__p += '\n
    \n
    \n

    ' + +__p += '\r\n
    \r\n
    \r\n

    ' + ((__t = ( ctx.t(tab.label, { _userInput: true }) )) == null ? '' : __t) + -'

    \n
    \n \n ' + +'"\r\n >\r\n ' + ((__t = ( ctx.tabComponents[index] )) == null ? '' : __t) + -'\n
    \n

    \n'; +'\r\n
    \r\n \r\n'; }) ; -__p += '\n'; +__p += '\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/tab/form.ejs.js b/lib/cjs/templates/bootstrap5/tab/form.ejs.js index 18e9d667b..3979c548a 100644 --- a/lib/cjs/templates/bootstrap5/tab/form.ejs.js +++ b/lib/cjs/templates/bootstrap5/tab/form.ejs.js @@ -6,36 +6,36 @@ var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } __p += '
    \n
    \n \r\n
    \r\n '; ctx.component.components.forEach(function(tab, index) { ; -__p += '\n \n ' + +'"\r\n >\r\n ' + ((__t = (ctx.tabComponents[index])) == null ? '' : __t) + -'\n
    \n '; +'\r\n \r\n '; }) ; -__p += '\n\n'; +__p += '\r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/table/form.ejs.js b/lib/cjs/templates/bootstrap5/table/form.ejs.js index 9467c6d04..effb85b63 100644 --- a/lib/cjs/templates/bootstrap5/table/form.ejs.js +++ b/lib/cjs/templates/bootstrap5/table/form.ejs.js @@ -4,33 +4,33 @@ Object.defineProperty(exports, "__esModule", { exports.default=function(ctx) { var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } -__p += '\n \n '; +'\r\n '; if (ctx.component.header && ctx.component.header.length > 0) { ; -__p += '\n \n \n '; +__p += '\r\n \r\n \r\n '; ctx.component.header.forEach(function(header) { ; -__p += '\n \n '; +'\r\n '; }) ; -__p += '\n \n \n '; +__p += '\r\n \r\n \r\n '; } ; -__p += '\n \n '; +__p += '\r\n \r\n '; ctx.tableComponents.forEach(function(row, rowIndex) { ; -__p += '\n \n '; +'">\r\n '; row.forEach(function(column, colIndex) { ; -__p += '\n \r\n '; }) ; -__p += '\n \n '; +__p += '\r\n \r\n '; }) ; -__p += '\n \n
    ' + +'\r\n ">\r\n ' + ((__t = (ctx.t(ctx.component.label))) == null ? '' : __t) + -'
    ' + +__p += '\r\n ' + ((__t = (ctx.t(header))) == null ? '' : __t) + -'
    \n '; +'
    \n'; +__p += '\r\n \r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/tableComponents/form.ejs.js b/lib/cjs/templates/bootstrap5/tableComponents/form.ejs.js index 4ceff9dd5..135240c81 100644 --- a/lib/cjs/templates/bootstrap5/tableComponents/form.ejs.js +++ b/lib/cjs/templates/bootstrap5/tableComponents/form.ejs.js @@ -6,10 +6,10 @@ var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } ctx.children.forEach(function(component) { ; -__p += '\n \n ' + +__p += '\r\n \r\n ' + ((__t = ( component )) == null ? '' : __t) + -'\n \n'; +'\r\n \r\n'; }) ; -__p += '\n'; +__p += '\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/tree/form.ejs.js b/lib/cjs/templates/bootstrap5/tree/form.ejs.js index dd6bde029..03a30b15a 100644 --- a/lib/cjs/templates/bootstrap5/tree/form.ejs.js +++ b/lib/cjs/templates/bootstrap5/tree/form.ejs.js @@ -6,30 +6,30 @@ var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } if (ctx.node.isRoot) { ; -__p += '\n
    \n'; +__p += '\r\n
    \r\n'; } else { ; -__p += '\n
  • \n'; +'">\r\n'; } ; -__p += '\n '; +__p += '\r\n '; if (ctx.content) { ; -__p += '\n
    \n ' + +__p += '\r\n
    \r\n ' + ((__t = ( ctx.content )) == null ? '' : __t) + -'\n
    \n '; +'\r\n
    \r\n '; } ; -__p += '\n '; +__p += '\r\n '; if (ctx.childNodes && ctx.childNodes.length) { ; -__p += '\n
      \n ' + +__p += '\r\n
        \r\n ' + ((__t = ( ctx.childNodes.join('') )) == null ? '' : __t) + -'\n
      \n '; +'\r\n
    \r\n '; } ; -__p += '\n'; +__p += '\r\n'; if (ctx.node.isRoot) { ; -__p += '\n
  • \n'; +__p += '\r\n
    \r\n'; } else { ; -__p += '\n \n'; +__p += '\r\n \r\n'; } ; -__p += '\n'; +__p += '\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/tree/partials/edit.ejs.js b/lib/cjs/templates/bootstrap5/tree/partials/edit.ejs.js index 1feccd8fc..9a3c01a4f 100644 --- a/lib/cjs/templates/bootstrap5/tree/partials/edit.ejs.js +++ b/lib/cjs/templates/bootstrap5/tree/partials/edit.ejs.js @@ -4,16 +4,16 @@ Object.defineProperty(exports, "__esModule", { exports.default=function(ctx) { var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } -__p += '
    \n
    ' + +__p += '
    \r\n
    ' + ((__t = ( ctx.children )) == null ? '' : __t) + -'
    \n '; +'
    \r\n '; if (!ctx.readOnly) { ; -__p += '\n
    \n \n \r\n \n
    \n '; +'\r\n
    \r\n '; } ; -__p += '\n
    \n'; +__p += '\r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/tree/partials/view.ejs.js b/lib/cjs/templates/bootstrap5/tree/partials/view.ejs.js index e508dd952..e04cf42aa 100644 --- a/lib/cjs/templates/bootstrap5/tree/partials/view.ejs.js +++ b/lib/cjs/templates/bootstrap5/tree/partials/view.ejs.js @@ -4,34 +4,34 @@ Object.defineProperty(exports, "__esModule", { exports.default=function(ctx) { var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; +__p += '
    \r\n '; ctx.values.forEach(function(value) { ; -__p += '\n
    \n ' + +__p += '\r\n
    \r\n ' + ((__t = ( value )) == null ? '' : __t) + -'\n
    \n '; +'\r\n
    \r\n '; }) ; -__p += '\n
    \n
    \n '; +__p += '\r\n
    \r\n
    \r\n '; if (ctx.node.hasChildren) { ; -__p += '\n \n '; +'\r\n '; } ; -__p += '\n '; +__p += '\r\n '; if (!ctx.readOnly) { ; -__p += '\n \n \r\n \n \r\n \n '; +'\r\n '; if (ctx.node.revertAvailable) { ; -__p += '\n \n '; +'\r\n '; } ; -__p += '\n '; +__p += '\r\n '; } ; -__p += '\n
    \n
    \n
    \n'; +__p += '\r\n
    \r\n
    \r\n
    \r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/webform/builder.ejs.js b/lib/cjs/templates/bootstrap5/webform/builder.ejs.js index 56fe6faa4..c1ccc2317 100644 --- a/lib/cjs/templates/bootstrap5/webform/builder.ejs.js +++ b/lib/cjs/templates/bootstrap5/webform/builder.ejs.js @@ -5,6 +5,6 @@ exports.default=function(ctx) { var __t, __p = ''; __p += '
    ' + ((__t = ( ctx.t(ctx.component.title, { _userInput: true }) )) == null ? '' : __t) + -'
    \n'; +'\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/webform/form.ejs.js b/lib/cjs/templates/bootstrap5/webform/form.ejs.js index 18041c53a..a10d915bb 100644 --- a/lib/cjs/templates/bootstrap5/webform/form.ejs.js +++ b/lib/cjs/templates/bootstrap5/webform/form.ejs.js @@ -7,6 +7,6 @@ __p += '
    ' + ((__t = (ctx.children)) == null ? '' : __t) + -'
    \n'; +'\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/well/form.ejs.js b/lib/cjs/templates/bootstrap5/well/form.ejs.js index fc0feda1c..98dc1f561 100644 --- a/lib/cjs/templates/bootstrap5/well/form.ejs.js +++ b/lib/cjs/templates/bootstrap5/well/form.ejs.js @@ -3,10 +3,10 @@ Object.defineProperty(exports, "__esModule", { }); exports.default=function(ctx) { var __t, __p = ''; -__p += '
    \n
    \r\n
    \n ' + +'">\r\n ' + ((__t = (ctx.children)) == null ? '' : __t) + -'\n
    \n
    \n'; +'\r\n
    \r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/wizard/builder.ejs.js b/lib/cjs/templates/bootstrap5/wizard/builder.ejs.js index 56fe6faa4..c1ccc2317 100644 --- a/lib/cjs/templates/bootstrap5/wizard/builder.ejs.js +++ b/lib/cjs/templates/bootstrap5/wizard/builder.ejs.js @@ -5,6 +5,6 @@ exports.default=function(ctx) { var __t, __p = ''; __p += '
    ' + ((__t = ( ctx.t(ctx.component.title, { _userInput: true }) )) == null ? '' : __t) + -'
    \n'; +'\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/wizard/form.ejs.js b/lib/cjs/templates/bootstrap5/wizard/form.ejs.js index 3b85ff631..61b2c904e 100644 --- a/lib/cjs/templates/bootstrap5/wizard/form.ejs.js +++ b/lib/cjs/templates/bootstrap5/wizard/form.ejs.js @@ -6,40 +6,40 @@ var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } __p += '
    \n
    \n '; +'">\r\n
    \r\n '; if (ctx.wizardHeaderType === 'wizardHeaderVertical') { ; -__p += '\n
    \n '; +__p += '\r\n
    \r\n '; if (ctx.wizardHeaderLocation !== 'right') { ; -__p += '\n
    \n ' + +__p += '\r\n
    \r\n ' + ((__t = ( ctx.wizardHeader )) == null ? '' : __t) + -'\n
    \n '; +'\r\n
    \r\n '; } ; -__p += '\n
    \n ' + +'">\r\n ' + ((__t = (ctx.components)) == null ? '' : __t) + -'\n
    \n '; +'\r\n
    \r\n '; if (ctx.wizardHeaderLocation === 'right') { ; -__p += '\n
    \n ' + +__p += '\r\n
    \r\n ' + ((__t = ( ctx.wizardHeader )) == null ? '' : __t) + -'\n
    \n '; +'\r\n
    \r\n '; } ; -__p += '\n
    \n
    \n ' + +'">\r\n ' + ((__t = ( ctx.wizardNav )) == null ? '' : __t) + -'\n
    \n '; +'\r\n
    \r\n '; } else { ; -__p += '\n ' + +__p += '\r\n ' + ((__t = ( ctx.wizardHeader )) == null ? '' : __t) + -'\n
    \n ' + +'">\r\n ' + ((__t = (ctx.components)) == null ? '' : __t) + -'\n
    \n ' + +'\r\n
    \r\n ' + ((__t = ( ctx.wizardNav )) == null ? '' : __t) + -'\n '; +'\r\n '; } ; -__p += '\n
    \n\n'; +__p += '\r\n \r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/wizardHeader/form.ejs.js b/lib/cjs/templates/bootstrap5/wizardHeader/form.ejs.js index 3b7a889ff..42bfefa32 100644 --- a/lib/cjs/templates/bootstrap5/wizardHeader/form.ejs.js +++ b/lib/cjs/templates/bootstrap5/wizardHeader/form.ejs.js @@ -8,28 +8,28 @@ __p += '
    \n'; +__p += '\r\n \r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/wizardHeaderClassic/form.ejs.js b/lib/cjs/templates/bootstrap5/wizardHeaderClassic/form.ejs.js index d866d2c1c..30be4f41d 100644 --- a/lib/cjs/templates/bootstrap5/wizardHeaderClassic/form.ejs.js +++ b/lib/cjs/templates/bootstrap5/wizardHeaderClassic/form.ejs.js @@ -6,24 +6,24 @@ var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } __p += '\n'; +__p += '\r\n \r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/wizardHeaderVertical/form.ejs.js b/lib/cjs/templates/bootstrap5/wizardHeaderVertical/form.ejs.js index e274f4436..05ff4487e 100644 --- a/lib/cjs/templates/bootstrap5/wizardHeaderVertical/form.ejs.js +++ b/lib/cjs/templates/bootstrap5/wizardHeaderVertical/form.ejs.js @@ -6,26 +6,26 @@ var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } __p += '\n'; +__p += '\r\n \r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/bootstrap5/wizardNav/form.ejs.js b/lib/cjs/templates/bootstrap5/wizardNav/form.ejs.js index a2a957190..623895c0b 100644 --- a/lib/cjs/templates/bootstrap5/wizardNav/form.ejs.js +++ b/lib/cjs/templates/bootstrap5/wizardNav/form.ejs.js @@ -6,62 +6,62 @@ var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } __p += '
      \n '; +'-nav">\r\n '; ctx.buttonOrder.forEach(function(button) { ; -__p += '\n '; +__p += '\r\n '; if (button === 'cancel' && ctx.buttons.cancel) { ; -__p += '\n
    • \n \n
    • \n '; +'\r\n \r\n '; } ; -__p += '\n '; +__p += '\r\n '; if (button === 'previous' && ctx.buttons.previous) { ; -__p += '\n
    • \n \n
    • \n '; +'\r\n \r\n '; } ; -__p += '\n '; +__p += '\r\n '; if (button === 'next' && ctx.buttons.next) { ; -__p += '\n
    • \n \n
    • \n '; +'\r\n \r\n '; } ; -__p += '\n '; +__p += '\r\n '; if (button === 'submit' && ctx.buttons.submit) { ; -__p += '\n
    • \n '; +__p += '\r\n
    • \r\n '; if (ctx.disableWizardSubmit){ ; -__p += '\n \n '; +'\r\n '; } else { ; -__p += '\n \n '; +'\r\n '; } ; -__p += '\n
    • \n '; +__p += '\r\n \r\n '; } ; -__p += '\n '; +__p += '\r\n '; }) ; -__p += '\n
    \n'; +__p += '\r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/components/editgrid/header.ejs.js b/lib/cjs/templates/components/editgrid/header.ejs.js index 267c37e5b..4a268159e 100644 --- a/lib/cjs/templates/components/editgrid/header.ejs.js +++ b/lib/cjs/templates/components/editgrid/header.ejs.js @@ -4,16 +4,16 @@ Object.defineProperty(exports, "__esModule", { exports.default=function(ctx) { var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; +__p += '
    \r\n '; ctx.util.eachComponent(ctx.components, function(component) { ; -__p += '\n '; +__p += '\r\n '; if (!component.hasOwnProperty('tableView') || component.tableView) { ; -__p += '\n
    ' + +__p += '\r\n
    ' + ((__t = ( ctx.t(component.label) )) == null ? '' : __t) + -'
    \n '; +'
    \r\n '; } ; -__p += '\n '; +__p += '\r\n '; }) ; -__p += '\n
    \n'; +__p += '\r\n
    \r\n'; return __p } \ No newline at end of file diff --git a/lib/cjs/templates/components/editgrid/row.ejs.js b/lib/cjs/templates/components/editgrid/row.ejs.js index 5ba795175..c69884da6 100644 --- a/lib/cjs/templates/components/editgrid/row.ejs.js +++ b/lib/cjs/templates/components/editgrid/row.ejs.js @@ -4,24 +4,24 @@ Object.defineProperty(exports, "__esModule", { exports.default=function(ctx) { var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; +__p += '
    \r\n '; ctx.util.eachComponent(ctx.components, function(component) { ; -__p += '\n '; +__p += '\r\n '; if (!component.hasOwnProperty('tableView') || component.tableView) { ; -__p += '\n
    \n ' + +__p += '\r\n
    \r\n ' + ((__t = ( ctx.getView(component, ctx.row[component.key]) )) == null ? '' : __t) + -'\n
    \n '; +'\r\n
    \r\n '; } ; -__p += '\n '; +__p += '\r\n '; }) ; -__p += '\n '; +__p += '\r\n '; if (!ctx.self.options.readOnly) { ; -__p += '\n
    \n
    \n \n \r\n \n
    \n
    \n '; +'">\r\n
    \r\n
    \r\n '; } ; -__p += '\n\n'; +__p += '\r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/bootstrap3.d.ts b/lib/mjs/bootstrap3.d.ts deleted file mode 100644 index d6c2958a3..000000000 --- a/lib/mjs/bootstrap3.d.ts +++ /dev/null @@ -1,153 +0,0 @@ -declare const _default: { - framework: string; - templates: { - bootstrap3: { - transform(type: any, text: any): any; - handleBuilderSidebarScroll(builder: any): void; - clearBuilderSidebarScroll(builder: any): void; - defaultIconset: string; - iconClass: (iconset: any, name: any, spinning: any) => string; - cssClasses: { - 'formio-tab-panel-active': string; - 'formio-tab-link-active': string; - 'formio-tab-link-container-active': string; - }; - builder: { - form: string; - }; - builderComponent: { - form: string; - }; - builderComponents: { - form: string; - }; - builderEditForm: { - form: string; - }; - builderPlaceholder: { - form: string; - }; - builderSidebar: { - form: string; - }; - builderSidebarGroup: { - form: string; - }; - columns: { - form: string; - }; - datagrid: { - form: string; - html: string; - }; - day: { - form: string; - }; - dialog: { - form: string; - }; - editgrid: { - form: string; - html: string; - }; - field: { - align: string; - form: string; - }; - file: { - form: string; - }; - icon: { - form: string; - }; - input: { - form: string; - html: string; - }; - label: { - form: string; - }; - message: { - form: string; - }; - modaldialog: { - form: string; - }; - modaledit: { - form: string; - }; - multiValueRow: { - form: string; - }; - multiValueTable: { - form: string; - }; - panel: { - form: string; - }; - radio: { - form: string; - html: string; - }; - resourceAdd: { - form: string; - }; - signature: { - form: string; - html: string; - }; - survey: { - form: string; - html: string; - }; - tab: { - flat: string; - form: string; - }; - table: { - form: string; - }; - well: { - form: string; - }; - wizard: { - form: string; - builder: string; - }; - wizardHeader: { - form: string; - }; - wizardHeaderClassic: { - form: string; - }; - wizardHeaderVertical: { - form: string; - }; - wizardNav: { - form: string; - }; - errorsList: { - form: string; - }; - alert: { - form: string; - }; - grid: { - html: string; - }; - pagination: { - html: string; - }; - columnMenu: { - html: string; - }; - tbody: { - html: string; - }; - paginationBottom: { - html: string; - }; - }; - }; -}; -export default _default; diff --git a/lib/mjs/bootstrap3.js b/lib/mjs/bootstrap3.js deleted file mode 100644 index c64476c00..000000000 --- a/lib/mjs/bootstrap3.js +++ /dev/null @@ -1,7 +0,0 @@ -import bootstrap3 from './templates/bootstrap3'; -export default { - framework: 'bootstrap3', - templates: { - bootstrap3 - }, -}; diff --git a/lib/mjs/bootstrap4.d.ts b/lib/mjs/bootstrap4.d.ts deleted file mode 100644 index 8f06e751e..000000000 --- a/lib/mjs/bootstrap4.d.ts +++ /dev/null @@ -1,246 +0,0 @@ -declare const _default: { - framework: string; - templates: { - bootstrap4: { - webform: { - form: string; - builder: string; - }; - well: { - form: string; - }; - wizard: { - form: string; - builder: string; - }; - wizardHeader: { - form: string; - }; - wizardHeaderClassic: { - form: string; - }; - wizardHeaderVertical: { - form: string; - }; - wizardNav: { - form: string; - }; - errorsList: { - form: string; - }; - alert: { - form: string; - }; - grid: { - html: string; - }; - pagination: { - html: string; - }; - columnMenu: { - html: string; - }; - tbody: { - html: string; - }; - paginationBottom: { - html: string; - }; - treeView: { - form: string; - }; - treeEdit: { - form: string; - }; - transform(type: any, text: any): any; - defaultIconset: string; - iconClass: (iconset: any, name: any, spinning: any) => string; - cssClasses: { - 'border-default': string; - 'formio-tab-panel-active': string; - 'formio-tab-link-active': string; - 'formio-tab-link-container-active': string; - 'formio-form-error': string; - 'formio-form-alert': string; - 'formio-label-error': string; - 'formio-input-error': string; - 'formio-alert-danger': string; - 'formio-alert-success': string; - 'formio-alert-warning': string; - 'formio-modal-cancel-button': string; - 'formio-modal-confirm-button': string; - }; - address: { - form: string; - html: string; - }; - builder: { - form: string; - }; - builderComponent: { - form: string; - }; - builderComponents: { - form: string; - }; - builderEditForm: { - form: string; - }; - builderPlaceholder: { - form: string; - }; - builderSidebar: { - form: string; - }; - builderSidebarGroup: { - form: string; - }; - builderWizard: { - form: string; - }; - button: { - form: string; - html: string; - }; - checkbox: { - form: string; - html: string; - }; - columns: { - form: string; - }; - component: { - form: string; - }; - componentModal: { - form: string; - }; - components: { - form: string; - }; - tableComponents: { - form: string; - }; - container: { - form: string; - }; - datagrid: { - form: string; - html: string; - }; - day: { - form: string; - }; - dialog: { - form: string; - }; - editgrid: { - form: string; - html: string; - }; - editgridTable: { - form: string; - html: string; - }; - field: { - form: string; - align: string; - }; - fieldset: { - form: string; - }; - file: { - form: string; - }; - html: { - form: string; - }; - icon: { - form: string; - }; - input: { - form: string; - html: string; - }; - label: { - form: string; - }; - loader: { - form: string; - }; - loading: { - form: string; - }; - map: { - form: string; - }; - message: { - form: string; - }; - modaledit: { - form: string; - }; - modaldialog: { - form: string; - }; - modalPreview: { - form: string; - }; - multipleMasksInput: { - form: string; - }; - multiValueRow: { - form: string; - }; - multiValueTable: { - form: string; - }; - panel: { - form: string; - }; - pdf: { - form: string; - }; - pdfBuilder: { - form: string; - }; - pdfBuilderUpload: { - form: string; - }; - radio: { - form: string; - html: string; - }; - resourceAdd: { - form: string; - }; - select: { - form: string; - html: string; - }; - selectOption: { - form: string; - html: string; - }; - signature: { - form: string; - html: string; - }; - survey: { - form: string; - html: string; - }; - tab: { - flat: string; - form: string; - }; - table: { - form: string; - }; - tree: { - form: string; - }; - }; - }; -}; -export default _default; diff --git a/lib/mjs/bootstrap4.js b/lib/mjs/bootstrap4.js deleted file mode 100644 index ab03d110f..000000000 --- a/lib/mjs/bootstrap4.js +++ /dev/null @@ -1,7 +0,0 @@ -import bootstrap4 from './templates/bootstrap4'; -export default { - framework: 'bootstrap4', - templates: { - bootstrap4 - }, -}; diff --git a/lib/mjs/bootstrap5.d.ts b/lib/mjs/bootstrap5.d.ts index ea1e2e0ce..32df0946f 100644 --- a/lib/mjs/bootstrap5.d.ts +++ b/lib/mjs/bootstrap5.d.ts @@ -39,7 +39,7 @@ declare const _default: { }; transform(type: any, text: any, instance: any): any; defaultIconset: string; - iconClass: (iconset: "fa" | "bi", name: string, spinning: boolean) => string; + iconClass: (iconset: "bi" | "fa", name: string, spinning: boolean) => string; cssClasses: { 'border-default': string; 'formio-tab-panel-active': string; diff --git a/lib/mjs/templates/bootstrap3/alert/form.ejs.js b/lib/mjs/templates/bootstrap3/alert/form.ejs.js deleted file mode 100644 index 80f64dccf..000000000 --- a/lib/mjs/templates/bootstrap3/alert/form.ejs.js +++ /dev/null @@ -1,16 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/alert/index.d.ts b/lib/mjs/templates/bootstrap3/alert/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/alert/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/alert/index.js b/lib/mjs/templates/bootstrap3/alert/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/alert/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/builder/form.ejs.js b/lib/mjs/templates/bootstrap3/builder/form.ejs.js deleted file mode 100644 index 3b0b5fce6..000000000 --- a/lib/mjs/templates/bootstrap3/builder/form.ejs.js +++ /dev/null @@ -1,9 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '
    \n
    \n ' + -((__t = (ctx.sidebar)) == null ? '' : __t) + -'\n
    \n
    \n ' + -((__t = (ctx.form)) == null ? '' : __t) + -'\n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/builder/index.d.ts b/lib/mjs/templates/bootstrap3/builder/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/builder/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/builder/index.js b/lib/mjs/templates/bootstrap3/builder/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/builder/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/builderComponent/form.ejs.js b/lib/mjs/templates/bootstrap3/builderComponent/form.ejs.js deleted file mode 100644 index 5cb10cdbd..000000000 --- a/lib/mjs/templates/bootstrap3/builderComponent/form.ejs.js +++ /dev/null @@ -1,24 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - if (!ctx.disableBuilderActions) { ; -__p += '\n
    \n
    \n \n
    \n
    \n \n
    \n
    \n \n
    \n
    \n \n
    \n
    \n \n
    \n
    \n \n
    \n
    \n '; - } ; -__p += '\n ' + -((__t = (ctx.html)) == null ? '' : __t) + -'\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/builderComponent/index.d.ts b/lib/mjs/templates/bootstrap3/builderComponent/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/builderComponent/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/builderComponent/index.js b/lib/mjs/templates/bootstrap3/builderComponent/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/builderComponent/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/builderComponents/form.ejs.js b/lib/mjs/templates/bootstrap3/builderComponents/form.ejs.js deleted file mode 100644 index c6396c612..000000000 --- a/lib/mjs/templates/bootstrap3/builderComponents/form.ejs.js +++ /dev/null @@ -1,11 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '
    \n ' + -((__t = (ctx.html)) == null ? '' : __t) + -'\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/builderComponents/index.d.ts b/lib/mjs/templates/bootstrap3/builderComponents/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/builderComponents/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/builderComponents/index.js b/lib/mjs/templates/bootstrap3/builderComponents/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/builderComponents/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/builderEditForm/form.ejs.js b/lib/mjs/templates/bootstrap3/builderEditForm/form.ejs.js deleted file mode 100644 index 3d6bc29eb..000000000 --- a/lib/mjs/templates/bootstrap3/builderEditForm/form.ejs.js +++ /dev/null @@ -1,58 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n
    \n

    ' + -((__t = (ctx.t(ctx.componentInfo.title, { _userInput: true }))) == null ? '' : __t) + -' ' + -((__t = (ctx.t('Component'))) == null ? '' : __t) + -'

    \n
    \n '; - if (ctx.helplinks) { ; -__p += '\n \n'; - } ; -__p += '\n
    \n
    \n
    \n
    \n ' + -((__t = (ctx.editForm)) == null ? '' : __t) + -'\n
    \n '; - if (!ctx.preview) { ; -__p += '\n
    \n \n \n \n
    \n '; - } ; -__p += '\n
    \n '; - if (ctx.preview) { ; -__p += '\n
    \n
    \n
    \n

    ' + -((__t = (ctx.t('Preview'))) == null ? '' : __t) + -'

    \n
    \n
    \n
    \n ' + -((__t = (ctx.preview)) == null ? '' : __t) + -'\n
    \n
    \n
    \n '; - if (ctx.componentInfo.help) { ; -__p += '\n
    \n ' + -((__t = ( ctx.componentInfo.help )) == null ? '' : __t) + -'\n
    \n '; - } ; -__p += '\n
    \n \n \n \n
    \n
    \n '; - } ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/builderEditForm/index.d.ts b/lib/mjs/templates/bootstrap3/builderEditForm/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/builderEditForm/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/builderEditForm/index.js b/lib/mjs/templates/bootstrap3/builderEditForm/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/builderEditForm/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/builderPlaceholder/form.ejs.js b/lib/mjs/templates/bootstrap3/builderPlaceholder/form.ejs.js deleted file mode 100644 index a4361fb36..000000000 --- a/lib/mjs/templates/bootstrap3/builderPlaceholder/form.ejs.js +++ /dev/null @@ -1,9 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '\n ' + -((__t = (ctx.t('Drag and Drop a form component'))) == null ? '' : __t) + -'\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/builderPlaceholder/index.d.ts b/lib/mjs/templates/bootstrap3/builderPlaceholder/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/builderPlaceholder/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/builderPlaceholder/index.js b/lib/mjs/templates/bootstrap3/builderPlaceholder/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/builderPlaceholder/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/builderSidebar/form.ejs.js b/lib/mjs/templates/bootstrap3/builderSidebar/form.ejs.js deleted file mode 100644 index 560cbc952..000000000 --- a/lib/mjs/templates/bootstrap3/builderSidebar/form.ejs.js +++ /dev/null @@ -1,18 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n \n
    \n '; - ctx.groups.forEach(function(group) { ; -__p += '\n ' + -((__t = ( group )) == null ? '' : __t) + -'\n '; - }) ; -__p += '\n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/builderSidebar/index.d.ts b/lib/mjs/templates/bootstrap3/builderSidebar/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/builderSidebar/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/builderSidebar/index.js b/lib/mjs/templates/bootstrap3/builderSidebar/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/builderSidebar/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/builderSidebarGroup/form.ejs.js b/lib/mjs/templates/bootstrap3/builderSidebarGroup/form.ejs.js deleted file mode 100644 index 3c49881aa..000000000 --- a/lib/mjs/templates/bootstrap3/builderSidebarGroup/form.ejs.js +++ /dev/null @@ -1,54 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n
    \n
    \n \n ' + -((__t = (ctx.t(ctx.group.title, { _userInput: true }))) == null ? '' : __t) + -'\n \n
    \n
    \n \n
    \n '; - if (ctx.group.componentOrder.length || ctx.subgroups.length) { ; -__p += '\n '; - ctx.group.componentOrder.forEach(function(componentKey) { ; -__p += '\n \n '; - if (ctx.group.components[componentKey].icon) { ; -__p += '\n \n '; - } ; -__p += '\n ' + -((__t = (ctx.t(ctx.group.components[componentKey].title, { _userInput: true }))) == null ? '' : __t) + -'\n \n '; - }) ; -__p += '\n ' + -((__t = (ctx.subgroups.join(''))) == null ? '' : __t) + -'\n '; - } else { ; -__p += '\n
    ' + -((__t = (ctx.t('No Matches Found'))) == null ? '' : __t) + -'
    \n '; - } ; -__p += '\n
    \n
    \n\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/builderSidebarGroup/index.d.ts b/lib/mjs/templates/bootstrap3/builderSidebarGroup/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/builderSidebarGroup/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/builderSidebarGroup/index.js b/lib/mjs/templates/bootstrap3/builderSidebarGroup/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/builderSidebarGroup/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/column-menu/html.ejs.js b/lib/mjs/templates/bootstrap3/column-menu/html.ejs.js deleted file mode 100644 index 9ca992337..000000000 --- a/lib/mjs/templates/bootstrap3/column-menu/html.ejs.js +++ /dev/null @@ -1,38 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \r\n \r\n
    \r\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/column-menu/index.d.ts b/lib/mjs/templates/bootstrap3/column-menu/index.d.ts deleted file mode 100644 index abb6036cf..000000000 --- a/lib/mjs/templates/bootstrap3/column-menu/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - html: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/column-menu/index.js b/lib/mjs/templates/bootstrap3/column-menu/index.js deleted file mode 100644 index 725e812f0..000000000 --- a/lib/mjs/templates/bootstrap3/column-menu/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import html from './html.ejs'; -export default { html }; diff --git a/lib/mjs/templates/bootstrap3/columns/form.ejs.js b/lib/mjs/templates/bootstrap3/columns/form.ejs.js deleted file mode 100644 index 4457f0d2c..000000000 --- a/lib/mjs/templates/bootstrap3/columns/form.ejs.js +++ /dev/null @@ -1,30 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } - - ctx.component.columns.forEach(function(column, index) { ; -__p += '\n
    \n ' + -((__t = (ctx.columnComponents[index])) == null ? '' : __t) + -'\n
    \n'; - }) ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/columns/index.d.ts b/lib/mjs/templates/bootstrap3/columns/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/columns/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/columns/index.js b/lib/mjs/templates/bootstrap3/columns/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/columns/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/cssClasses.d.ts b/lib/mjs/templates/bootstrap3/cssClasses.d.ts deleted file mode 100644 index 2b7ea9e00..000000000 --- a/lib/mjs/templates/bootstrap3/cssClasses.d.ts +++ /dev/null @@ -1,6 +0,0 @@ -declare const _default: { - 'formio-tab-panel-active': string; - 'formio-tab-link-active': string; - 'formio-tab-link-container-active': string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/cssClasses.js b/lib/mjs/templates/bootstrap3/cssClasses.js deleted file mode 100644 index a39352eeb..000000000 --- a/lib/mjs/templates/bootstrap3/cssClasses.js +++ /dev/null @@ -1,5 +0,0 @@ -export default { - 'formio-tab-panel-active': 'active', - 'formio-tab-link-active': 'active', - 'formio-tab-link-container-active': 'active', -}; diff --git a/lib/mjs/templates/bootstrap3/datagrid/form.ejs.js b/lib/mjs/templates/bootstrap3/datagrid/form.ejs.js deleted file mode 100644 index 9c44ad512..000000000 --- a/lib/mjs/templates/bootstrap3/datagrid/form.ejs.js +++ /dev/null @@ -1,126 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n ' + -((__t = ( col.hideLabel ? '' : ctx.t(col.label || col.title, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - if (col.tooltip) { ; -__p += ' '; - } ; -__p += '\n \n '; - }) ; -__p += '\n '; - if (ctx.hasExtraColumn) { ; -__p += '\n \n '; - } ; -__p += '\n \n \n '; - } ; -__p += '\n \n '; - ctx.rows.forEach(function(row, index) { ; -__p += '\n '; - if (ctx.hasGroups && ctx.groups[index]) { ; -__p += '\n \n ' + -((__t = (ctx.groups[index].label)) == null ? '' : __t) + -'\n \n '; - } ; -__p += '\n \n '; - if (ctx.component.reorder) { ; -__p += '\n \n '; - } ; -__p += '\n '; - ctx.columns.forEach(function(col) { ; -__p += '\n \n '; - }) ; -__p += '\n '; - if (ctx.hasExtraColumn) { ; -__p += '\n '; - if (ctx.hasRemoveButtons) { ; -__p += '\n \n '; - } ; -__p += '\n '; - if (ctx.canAddColumn) { ; -__p += '\n \n '; - } ; -__p += '\n '; - } ; -__p += '\n \n '; - }) ; -__p += '\n \n '; - if (ctx.hasAddButton && ctx.hasBottomSubmit) { ; -__p += '\n \n \n \n \n \n '; - } ; -__p += '\n
    \n '; - if (!ctx.builder && ctx.hasAddButton && ctx.hasTopSubmit) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n \n \n ' + -((__t = (row[col.key])) == null ? '' : __t) + -'\n \n \n \n ' + -((__t = (ctx.placeholder)) == null ? '' : __t) + -'\n
    \n \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/datagrid/html.ejs.js b/lib/mjs/templates/bootstrap3/datagrid/html.ejs.js deleted file mode 100644 index 1c527218f..000000000 --- a/lib/mjs/templates/bootstrap3/datagrid/html.ejs.js +++ /dev/null @@ -1,46 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n '; - if (hasHeader) { ; -__p += '\n \n \n '; - columns.forEach(function(col) { ; -__p += '\n \n '; - }) ; -__p += '\n \n \n '; - } ; -__p += '\n \n '; - rows.forEach(function(row) { ; -__p += '\n \n '; - columns.forEach(function(col) { ; -__p += '\n \n '; - }) ; -__p += '\n \n '; - }) ; -__p += '\n \n
    \n ' + -((__t = ( col.hideLabel ? '' : t(col.label || col.title) )) == null ? '' : __t) + -'\n '; - if (col.tooltip) { ; -__p += ' '; - } ; -__p += '\n
    \n ' + -((__t = (row[col.key])) == null ? '' : __t) + -'\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/datagrid/index.d.ts b/lib/mjs/templates/bootstrap3/datagrid/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/mjs/templates/bootstrap3/datagrid/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/datagrid/index.js b/lib/mjs/templates/bootstrap3/datagrid/index.js deleted file mode 100644 index d60b4b87e..000000000 --- a/lib/mjs/templates/bootstrap3/datagrid/index.js +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; -export default { form, html }; diff --git a/lib/mjs/templates/bootstrap3/day/form.ejs.js b/lib/mjs/templates/bootstrap3/day/form.ejs.js deleted file mode 100644 index 1542187fb..000000000 --- a/lib/mjs/templates/bootstrap3/day/form.ejs.js +++ /dev/null @@ -1,78 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - if (ctx.dayFirst && ctx.showDay) { ; -__p += '\n
    \n '; - if (!ctx.component.hideInputLabels) { ; -__p += '\n \n '; - } ; -__p += '\n
    ' + -((__t = (ctx.day)) == null ? '' : __t) + -'
    \n
    \n '; - } ; -__p += '\n '; - if (ctx.showMonth) { ; -__p += '\n
    \n '; - if (!ctx.component.hideInputLabels) { ; -__p += '\n \n '; - } ; -__p += '\n
    ' + -((__t = (ctx.month)) == null ? '' : __t) + -'
    \n
    \n '; - } ; -__p += '\n '; - if (!ctx.dayFirst && ctx.showDay) { ; -__p += '\n
    \n '; - if (!ctx.component.hideInputLabels) { ; -__p += '\n \n '; - } ; -__p += '\n
    ' + -((__t = (ctx.day)) == null ? '' : __t) + -'
    \n
    \n '; - } ; -__p += '\n '; - if (ctx.showYear) { ; -__p += '\n
    \n '; - if (!ctx.component.hideInputLabels) { ; -__p += '\n \n '; - } ; -__p += '\n
    ' + -((__t = (ctx.year)) == null ? '' : __t) + -'
    \n
    \n '; - } ; -__p += '\n
    \n\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/day/index.d.ts b/lib/mjs/templates/bootstrap3/day/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/day/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/day/index.js b/lib/mjs/templates/bootstrap3/day/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/day/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/dialog/form.ejs.js b/lib/mjs/templates/bootstrap3/dialog/form.ejs.js deleted file mode 100644 index fcd636d46..000000000 --- a/lib/mjs/templates/bootstrap3/dialog/form.ejs.js +++ /dev/null @@ -1,5 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '
    \n
    \n
    \n
    \n \n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/dialog/index.d.ts b/lib/mjs/templates/bootstrap3/dialog/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/dialog/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/dialog/index.js b/lib/mjs/templates/bootstrap3/dialog/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/dialog/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/editgrid/form.ejs.js b/lib/mjs/templates/bootstrap3/editgrid/form.ejs.js deleted file mode 100644 index ea9bf2499..000000000 --- a/lib/mjs/templates/bootstrap3/editgrid/form.ejs.js +++ /dev/null @@ -1,62 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
      \n '; - if (ctx.header) { ; -__p += '\n
    • \n ' + -((__t = (ctx.header)) == null ? '' : __t) + -'\n
    • \n '; - } ; -__p += '\n '; - ctx.rows.forEach(function(row, rowIndex) { ; -__p += '\n
    • \n ' + -((__t = (row)) == null ? '' : __t) + -'\n '; - if (ctx.openRows[rowIndex] && !ctx.readOnly) { ; -__p += '\n
      \n \n '; - if (ctx.component.removeRow) { ; -__p += '\n \n '; - } ; -__p += '\n
      \n '; - } ; -__p += '\n
      \n
      \n ' + -((__t = (ctx.errors[rowIndex])) == null ? '' : __t) + -'\n
      \n
      \n
    • \n '; - }) ; -__p += '\n '; - if (ctx.footer) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n'; - if (!ctx.readOnly && ctx.hasAddButton) { ; -__p += '\n\n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/editgrid/html.ejs.js b/lib/mjs/templates/bootstrap3/editgrid/html.ejs.js deleted file mode 100644 index 8ec4c5f25..000000000 --- a/lib/mjs/templates/bootstrap3/editgrid/html.ejs.js +++ /dev/null @@ -1,52 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
      \n '; - if (ctx.header) { ; -__p += '\n
    • \n ' + -((__t = (ctx.header)) == null ? '' : __t) + -'\n
    • \n '; - } ; -__p += '\n '; - ctx.rows.forEach(function(row, rowIndex) { ; -__p += '\n
    • \n ' + -((__t = (row)) == null ? '' : __t) + -'\n '; - if (ctx.openRows[rowIndex] && !ctx.readOnly) { ; -__p += '\n
      \n \n '; - if (ctx.component.removeRow) { ; -__p += '\n \n '; - } ; -__p += '\n
      \n '; - } ; -__p += '\n
      \n
      \n ' + -((__t = (ctx.errors[rowIndex])) == null ? '' : __t) + -'\n
      \n
      \n
    • \n '; - }) ; -__p += '\n '; - if (ctx.footer) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/editgrid/index.d.ts b/lib/mjs/templates/bootstrap3/editgrid/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/mjs/templates/bootstrap3/editgrid/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/editgrid/index.js b/lib/mjs/templates/bootstrap3/editgrid/index.js deleted file mode 100644 index d60b4b87e..000000000 --- a/lib/mjs/templates/bootstrap3/editgrid/index.js +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; -export default { form, html }; diff --git a/lib/mjs/templates/bootstrap3/errorsList/form.ejs.js b/lib/mjs/templates/bootstrap3/errorsList/form.ejs.js deleted file mode 100644 index 691b3c736..000000000 --- a/lib/mjs/templates/bootstrap3/errorsList/form.ejs.js +++ /dev/null @@ -1,20 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '

    ' + -((__t = (ctx.t('error'))) == null ? '' : __t) + -'

    \n
      \n '; - ctx.errors.forEach(function(err) { ; -__p += '\n ' + -((__t = (err.message)) == null ? '' : __t) + -'\n '; - }) ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/errorsList/index.d.ts b/lib/mjs/templates/bootstrap3/errorsList/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/errorsList/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/errorsList/index.js b/lib/mjs/templates/bootstrap3/errorsList/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/errorsList/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/field/align.ejs.js b/lib/mjs/templates/bootstrap3/field/align.ejs.js deleted file mode 100644 index 9183c6bd5..000000000 --- a/lib/mjs/templates/bootstrap3/field/align.ejs.js +++ /dev/null @@ -1,38 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - if (!ctx.label.hidden) { ; -__p += '\n
    \n ' + -((__t = ( ctx.labelMarkup )) == null ? '' : __t) + -'\n
    \n '; - } ; -__p += '\n\n '; - if (ctx.label.hidden && ctx.label.className && ctx.component.validate.required) { ; -__p += '\n
    \n \n
    \n '; - } ; -__p += '\n\n
    \n ' + -((__t = (ctx.element)) == null ? '' : __t) + -'\n
    \n
    \n\n'; - if (ctx.component.description) { ; -__p += '\n
    ' + -((__t = (ctx.t(ctx.component.description, { _userInput: true }))) == null ? '' : __t) + -'
    \n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/field/form.ejs.js b/lib/mjs/templates/bootstrap3/field/form.ejs.js deleted file mode 100644 index 21c439bcf..000000000 --- a/lib/mjs/templates/bootstrap3/field/form.ejs.js +++ /dev/null @@ -1,32 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } - - if (!ctx.label.hidden && ctx.label.labelPosition !== 'bottom') { ; -__p += '\n ' + -((__t = ( ctx.labelMarkup )) == null ? '' : __t) + -'\n'; - } ; -__p += '\n\n'; - if (ctx.label.hidden && ctx.label.className && ctx.component.validate.required) { ; -__p += '\n \n'; - } ; -__p += '\n\n' + -((__t = (ctx.element)) == null ? '' : __t) + -'\n'; - if (!ctx.label.hidden && ctx.label.labelPosition === 'bottom') { ; -__p += '\n ' + -((__t = ( ctx.labelMarkup )) == null ? '' : __t) + -'\n'; - } ; -__p += '\n'; - if (ctx.component.description) { ; -__p += '\n
    ' + -((__t = (ctx.t(ctx.component.description, { _userInput: true }))) == null ? '' : __t) + -'
    \n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/field/index.d.ts b/lib/mjs/templates/bootstrap3/field/index.d.ts deleted file mode 100644 index 43ed667c0..000000000 --- a/lib/mjs/templates/bootstrap3/field/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - align: string; - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/field/index.js b/lib/mjs/templates/bootstrap3/field/index.js deleted file mode 100644 index 81b9d1d44..000000000 --- a/lib/mjs/templates/bootstrap3/field/index.js +++ /dev/null @@ -1,3 +0,0 @@ -import align from './align.ejs'; -import form from './form.ejs'; -export default { align, form }; diff --git a/lib/mjs/templates/bootstrap3/file/form.ejs.js b/lib/mjs/templates/bootstrap3/file/form.ejs.js deleted file mode 100644 index b39e368a5..000000000 --- a/lib/mjs/templates/bootstrap3/file/form.ejs.js +++ /dev/null @@ -1,198 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } - - if (!ctx.self.imageUpload) { ; -__p += '\n
      \n \n '; - ctx.files.forEach(function(file) { ; -__p += '\n
    • \n
      \n '; - if (!ctx.disabled) { ; -__p += '\n
      \n '; - } ; -__p += '\n
      \n '; - if (ctx.component.uploadOnly) { ; -__p += '\n ' + -((__t = (file.originalName || file.name)) == null ? '' : __t) + -'\n '; - } else { ; -__p += '\n ' + -((__t = (file.originalName || file.name)) == null ? '' : __t) + -'\n '; - } ; -__p += '\n
      \n
      ' + -((__t = (ctx.fileSize(file.size))) == null ? '' : __t) + -'
      \n '; - if (ctx.self.hasTypes && !ctx.disabled) { ; -__p += '\n
      \n \n
      \n '; - } ; -__p += '\n '; - if (ctx.self.hasTypes && ctx.disabled) { ; -__p += '\n
      ' + -((__t = (file.fileType)) == null ? '' : __t) + -'
      \n '; - } ; -__p += '\n
      \n
    • \n '; - }) ; -__p += '\n
    \n'; - } else { ; -__p += '\n
    \n '; - ctx.files.forEach(function(file) { ; -__p += '\n
    \n \n ' +
-((__t = (file.originalName || file.name)) == null ? '' : __t) +
-'\n '; - if (!ctx.disabled) { ; -__p += '\n \n '; - } ; -__p += '\n \n
    \n '; - }) ; -__p += '\n
    \n'; - } ; -__p += '\n'; - if (!ctx.disabled && (ctx.component.multiple || !ctx.files.length)) { ; -__p += '\n '; - if (ctx.self.useWebViewCamera) { ; -__p += '\n
    \n \n \n
    \n '; - } else if (!ctx.self.cameraMode) { ; -__p += '\n
    \n ' + -((__t = (ctx.t('Drop files to attach,'))) == null ? '' : __t) + -'\n '; - if (ctx.self.imageUpload && ctx.component.webcam) { ; -__p += '\n ' + -((__t = (ctx.t('Use Camera,'))) == null ? '' : __t) + -'\n '; - } ; -__p += '\n ' + -((__t = (ctx.t('or'))) == null ? '' : __t) + -' ' + -((__t = (ctx.t('browse'))) == null ? '' : __t) + -'\n
    \n '; - } else { ; -__p += '\n
    \n \n
    \n \n \n '; - } ; -__p += '\n'; - } ; -__p += '\n'; - ctx.statuses.forEach(function(status) { ; -__p += '\n
    \n
    \n
    ' + -((__t = (status.originalName)) == null ? '' : __t) + -'
    \n
    ' + -((__t = (ctx.fileSize(status.size))) == null ? '' : __t) + -'
    \n
    \n
    \n
    \n '; - if (status.status === 'progress') { ; -__p += '\n
    \n
    \n ' + -((__t = (status.progress)) == null ? '' : __t) + -'% ' + -((__t = (ctx.t('Complete'))) == null ? '' : __t) + -'\n
    \n
    \n '; - } else if (status.status === 'error'){ ; -__p += '\n
    ' + -((__t = (ctx.t(status.message))) == null ? '' : __t) + -'
    \n '; - } else { ; -__p += '\n
    ' + -((__t = (ctx.t(status.message))) == null ? '' : __t) + -'
    \n '; - } ; -__p += '\n
    \n
    \n
    \n'; - }) ; -__p += '\n'; - if (!ctx.component.storage || ctx.support.hasWarning) { ; -__p += '\n
    \n '; - if (!ctx.component.storage) { ; -__p += '\n

    ' + -((__t = (ctx.t('No storage has been set for this field. File uploads are disabled until storage is set up.'))) == null ? '' : __t) + -'

    \n '; - } ; -__p += '\n '; - if (!ctx.support.filereader) { ; -__p += '\n

    ' + -((__t = (ctx.t('File API & FileReader API not supported.'))) == null ? '' : __t) + -'

    \n '; - } ; -__p += '\n '; - if (!ctx.support.formdata) { ; -__p += '\n

    ' + -((__t = (ctx.t("XHR2's FormData is not supported."))) == null ? '' : __t) + -'

    \n '; - } ; -__p += '\n '; - if (!ctx.support.progress) { ; -__p += '\n

    ' + -((__t = (ctx.t("XHR2's upload progress isn't supported."))) == null ? '' : __t) + -'

    \n '; - } ; -__p += '\n
    \n'; - } ; - -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/file/index.d.ts b/lib/mjs/templates/bootstrap3/file/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/file/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/file/index.js b/lib/mjs/templates/bootstrap3/file/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/file/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/grid/html.ejs.js b/lib/mjs/templates/bootstrap3/grid/html.ejs.js deleted file mode 100644 index 1810fa6ac..000000000 --- a/lib/mjs/templates/bootstrap3/grid/html.ejs.js +++ /dev/null @@ -1,74 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n
    \n \n \n \n
    \n '; - if (ctx.component.enableRowSelect) { ; -__p += '\n
    \n '; - if (ctx.selectedRows) { ; -__p += '\n ' + -((__t = (ctx.selectedRows)) == null ? '' : __t) + -' selected\n '; - } ; -__p += '\n
    \n '; - } ; -__p += '\n
    \n
    \n
    \n
    \n
    \n
    \n \n \n \n '; - if (!ctx.component.components.length) { ; -__p += '\n \n '; - } ; -__p += '\n '; - if (ctx.component.enableRowSelect) { ; -__p += '\n \n '; - } ; -__p += '\n '; - ctx.component.components.forEach(function(comp, i) { ; -__p += '\n '; - if (comp.show) { ; -__p += '\n \n '; - } ; -__p += '\n '; - }); ; -__p += '\n '; - if ((ctx.component.showEditBtn || ctx.component.showDeleteBtn || ctx.component.showDeleteAllBtn) - && ctx.data.length - && !ctx.options.pdf) { ; -__p += '\n \n '; - } ; -__p += '\n \n \n \n
    No components have been set up to display in the Data Table. "Table View" must be checked for components to render.\n \n (' + -((__t = (ctx.selectedRows)) == null ? '' : __t) + -' of )\n \n ' + -((__t = ( comp.label || comp.key )) == null ? '' : __t) + -'\n '; - if (ctx.options.sortable && comp.sortable) { ; -__p += '\n \n ' + -((__t = ( ctx.component.sort.isAsc ? '↑' : '↓' )) == null ? '' : __t) + -'\n \n '; - } ; -__p += '\n '; - if (!ctx.options.hideMenu) { ; -__p += '\n \n \n \n '; - } ; -__p += '\n \n
    \n Actions\n '; - if (ctx.component.showDeleteAllBtn && ctx.data.length) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n
    \n
    \n
    \n
    \n '; - if (ctx.component.showAddBtn && !ctx.options.pdf) { ; -__p += '\n
    +
    \n '; - } ; -__p += '\n
    \n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/grid/index.d.ts b/lib/mjs/templates/bootstrap3/grid/index.d.ts deleted file mode 100644 index abb6036cf..000000000 --- a/lib/mjs/templates/bootstrap3/grid/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - html: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/grid/index.js b/lib/mjs/templates/bootstrap3/grid/index.js deleted file mode 100644 index 725e812f0..000000000 --- a/lib/mjs/templates/bootstrap3/grid/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import html from './html.ejs'; -export default { html }; diff --git a/lib/mjs/templates/bootstrap3/icon/form.ejs.js b/lib/mjs/templates/bootstrap3/icon/form.ejs.js deleted file mode 100644 index ed482f913..000000000 --- a/lib/mjs/templates/bootstrap3/icon/form.ejs.js +++ /dev/null @@ -1,13 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '' + -((__t = (ctx.content)) == null ? '' : __t) + -'\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/icon/index.d.ts b/lib/mjs/templates/bootstrap3/icon/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/icon/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/icon/index.js b/lib/mjs/templates/bootstrap3/icon/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/icon/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/iconClass.d.ts b/lib/mjs/templates/bootstrap3/iconClass.d.ts deleted file mode 100644 index 2525836d8..000000000 --- a/lib/mjs/templates/bootstrap3/iconClass.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -declare const _default: (iconset: any, name: any, spinning: any) => string; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/iconClass.js b/lib/mjs/templates/bootstrap3/iconClass.js deleted file mode 100644 index 1021cdae9..000000000 --- a/lib/mjs/templates/bootstrap3/iconClass.js +++ /dev/null @@ -1,35 +0,0 @@ -export default (iconset, name, spinning) => { - if (iconset === 'fa') { - switch (name) { - case 'save': - name = 'download'; - break; - case 'zoom-in': - name = 'search-plus'; - break; - case 'zoom-out': - name = 'search-minus'; - break; - case 'question-sign': - name = 'question-circle'; - break; - case 'remove-circle': - case 'circle-xmark': - name = 'times-circle-o'; - break; - case 'new-window': - name = 'window-restore'; - break; - case 'move': - name = 'arrows'; - break; - case 'ok-sign': - name = 'check-circle'; - break; - case 'remove-sign': - name = 'times-circle'; - break; - } - } - return spinning ? `${iconset} ${iconset}-${name} ${iconset}-spin` : `${iconset} ${iconset}-${name}`; -}; diff --git a/lib/mjs/templates/bootstrap3/index.d.ts b/lib/mjs/templates/bootstrap3/index.d.ts deleted file mode 100644 index 4ef2712ca..000000000 --- a/lib/mjs/templates/bootstrap3/index.d.ts +++ /dev/null @@ -1,148 +0,0 @@ -declare const _default: { - transform(type: any, text: any): any; - handleBuilderSidebarScroll(builder: any): void; - clearBuilderSidebarScroll(builder: any): void; - defaultIconset: string; - iconClass: (iconset: any, name: any, spinning: any) => string; - cssClasses: { - 'formio-tab-panel-active': string; - 'formio-tab-link-active': string; - 'formio-tab-link-container-active': string; - }; - builder: { - form: string; - }; - builderComponent: { - form: string; - }; - builderComponents: { - form: string; - }; - builderEditForm: { - form: string; - }; - builderPlaceholder: { - form: string; - }; - builderSidebar: { - form: string; - }; - builderSidebarGroup: { - form: string; - }; - columns: { - form: string; - }; - datagrid: { - form: string; - html: string; - }; - day: { - form: string; - }; - dialog: { - form: string; - }; - editgrid: { - form: string; - html: string; - }; - field: { - align: string; - form: string; - }; - file: { - form: string; - }; - icon: { - form: string; - }; - input: { - form: string; - html: string; - }; - label: { - form: string; - }; - message: { - form: string; - }; - modaldialog: { - form: string; - }; - modaledit: { - form: string; - }; - multiValueRow: { - form: string; - }; - multiValueTable: { - form: string; - }; - panel: { - form: string; - }; - radio: { - form: string; - html: string; - }; - resourceAdd: { - form: string; - }; - signature: { - form: string; - html: string; - }; - survey: { - form: string; - html: string; - }; - tab: { - flat: string; - form: string; - }; - table: { - form: string; - }; - well: { - form: string; - }; - wizard: { - form: string; - builder: string; - }; - wizardHeader: { - form: string; - }; - wizardHeaderClassic: { - form: string; - }; - wizardHeaderVertical: { - form: string; - }; - wizardNav: { - form: string; - }; - errorsList: { - form: string; - }; - alert: { - form: string; - }; - grid: { - html: string; - }; - pagination: { - html: string; - }; - columnMenu: { - html: string; - }; - tbody: { - html: string; - }; - paginationBottom: { - html: string; - }; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/index.js b/lib/mjs/templates/bootstrap3/index.js deleted file mode 100644 index b2e4b2c2e..000000000 --- a/lib/mjs/templates/bootstrap3/index.js +++ /dev/null @@ -1,125 +0,0 @@ -import builder from './builder'; -import builderComponent from './builderComponent'; -import builderComponents from './builderComponents'; -import builderEditForm from './builderEditForm'; -import builderPlaceholder from './builderPlaceholder'; -import builderSidebar from './builderSidebar'; -import builderSidebarGroup from './builderSidebarGroup'; -import columns from './columns'; -import cssClasses from './cssClasses'; -import datagrid from './datagrid'; -import day from './day'; -import dialog from './dialog'; -import editgrid from './editgrid'; -import field from './field'; -import file from './file'; -import icon from './icon'; -import iconClass from './iconClass'; -import input from './input'; -import label from './label'; -import message from './message'; -import modaldialog from './modaldialog'; -import modaledit from './modaledit'; -import multiValueRow from './multiValueRow'; -import multiValueTable from './multiValueTable'; -import panel from './panel'; -import radio from './radio'; -import resourceAdd from './resourceAdd'; -import signature from './signature'; -import survey from './survey'; -import tab from './tab'; -import table from './table'; -import well from './well'; -import wizard from './wizard'; -import wizardHeader from './wizardHeader'; -import wizardHeaderClassic from './wizardHeaderClassic'; -import wizardHeaderVertical from './wizardHeaderVertical'; -import wizardNav from './wizardNav'; -import alert from './alert'; -import errorsList from './errorsList'; -import grid from './grid'; -import pagination from './pagination'; -import columnMenu from './column-menu'; -import tbody from './tbody'; -import paginationBottom from './pagination-bottom'; -export default { - transform(type, text) { - if (!text) { - return text; - } - switch (type) { - case 'class': - return this.cssClasses.hasOwnProperty(text.toString()) ? this.cssClasses[text.toString()] : text; - } - return text; - }, - handleBuilderSidebarScroll(builder) { - if (builder.scrollResizeObserver) { - builder.scrollResizeObserver.disconnect(); - } - builder.scrollResizeObserver = new ResizeObserver(() => { - setTimeout(() => { - const { form, sidebar } = builder.refs; - const formHeight = form && form.parentNode && form.parentNode.clientHeight; - const sidebarHeight = sidebar && sidebar.clientHeight; - const style = sidebar && sidebar.parentNode && sidebar.parentNode.style; - if (style && formHeight && sidebarHeight) { - style.height = `${Math.max(sidebarHeight + 20, formHeight)}px`; - } - }); - }); - builder.scrollResizeObserver.observe(builder.refs.form); - builder.scrollResizeObserver.observe(builder.refs.sidebar); - }, - clearBuilderSidebarScroll(builder) { - if (builder.scrollResizeObserver) { - builder.scrollResizeObserver.disconnect(); - builder.scrollResizeObserver = null; - } - }, - defaultIconset: 'glyphicon', - iconClass, - cssClasses, - builder, - builderComponent, - builderComponents, - builderEditForm, - builderPlaceholder, - builderSidebar, - builderSidebarGroup, - columns, - datagrid, - day, - dialog, - editgrid, - field, - file, - icon, - input, - label, - message, - modaldialog, - modaledit, - multiValueRow, - multiValueTable, - panel, - radio, - resourceAdd, - signature, - survey, - tab, - table, - well, - wizard, - wizardHeader, - wizardHeaderClassic, - wizardHeaderVertical, - wizardNav, - errorsList, - alert, - grid, - pagination, - columnMenu, - tbody, - paginationBottom -}; diff --git a/lib/mjs/templates/bootstrap3/input/form.ejs.js b/lib/mjs/templates/bootstrap3/input/form.ejs.js deleted file mode 100644 index f7c88170a..000000000 --- a/lib/mjs/templates/bootstrap3/input/form.ejs.js +++ /dev/null @@ -1,82 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } - - if (ctx.prefix || ctx.suffix) { ; -__p += '\n
    \n '; - } ; -__p += '\n '; - if (ctx.prefix) { ; -__p += '\n
    \n '; - if(ctx.prefix instanceof HTMLElement){ ; -__p += '\n ' + -((__t = ( ctx.t(ctx.prefix.outerHTML, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - } else{ ; -__p += '\n ' + -((__t = ( ctx.t(ctx.prefix, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - } ; -__p += '\n
    \n '; - } ; -__p += '\n '; - if (!ctx.component.editor && !ctx.component.wysiwyg) { ; -__p += '\n <' + -((__t = (ctx.input.type)) == null ? '' : __t) + -'\n ref="' + -((__t = (ctx.input.ref ? ctx.input.ref : 'input')) == null ? '' : __t) + -'"\n '; - for (var attr in ctx.input.attr) { ; -__p += '\n ' + -((__t = (attr)) == null ? '' : __t) + -'="' + -((__t = (ctx.input.attr[attr])) == null ? '' : __t) + -'"\n '; - } ; -__p += '\n id="' + -((__t = (ctx.instance.id)) == null ? '' : __t) + -'-' + -((__t = (ctx.component.key)) == null ? '' : __t) + -'"\n >' + -((__t = (ctx.input.content)) == null ? '' : __t) + -'\n '; - if (ctx.hasValueMaskInput) { ; -__p += '\n \n '; - } ; -__p += '\n'; - } ; -__p += '\n'; - if (ctx.component.editor || ctx.component.wysiwyg) { ; -__p += '\n
    \n'; - } ; -__p += '\n'; - if (ctx.suffix) { ; -__p += '\n
    \n '; - if(ctx.suffix instanceof HTMLElement){ ; -__p += '\n ' + -((__t = ( ctx.t(ctx.suffix.outerHTML, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - } else{ ; -__p += '\n ' + -((__t = ( ctx.t(ctx.suffix, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - } ; -__p += '\n
    \n'; - } ; -__p += '\n'; - if (ctx.prefix || ctx.suffix) { ; -__p += '\n
    \n'; - } ; -__p += '\n'; - if (ctx.component.showCharCount) { ; -__p += '\n\n'; - } ; -__p += '\n'; - if (ctx.component.showWordCount) { ; -__p += '\n\n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/input/html.ejs.js b/lib/mjs/templates/bootstrap3/input/html.ejs.js deleted file mode 100644 index 635d2bc51..000000000 --- a/lib/mjs/templates/bootstrap3/input/html.ejs.js +++ /dev/null @@ -1,13 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    '; - if (ctx.value) { ; -__p += -((__t = (ctx.value)) == null ? '' : __t); - } else { ; -__p += '-'; - } ; -__p += '
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/input/index.d.ts b/lib/mjs/templates/bootstrap3/input/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/mjs/templates/bootstrap3/input/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/input/index.js b/lib/mjs/templates/bootstrap3/input/index.js deleted file mode 100644 index d60b4b87e..000000000 --- a/lib/mjs/templates/bootstrap3/input/index.js +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; -export default { form, html }; diff --git a/lib/mjs/templates/bootstrap3/label/form.ejs.js b/lib/mjs/templates/bootstrap3/label/form.ejs.js deleted file mode 100644 index 96fa9967c..000000000 --- a/lib/mjs/templates/bootstrap3/label/form.ejs.js +++ /dev/null @@ -1,26 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n '; - if (!ctx.label.hidden) { ; -__p += '\n ' + -((__t = ( ctx.t(ctx.component.label, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - if (ctx.component.tooltip) { ; -__p += '\n \n '; - } ; -__p += '\n '; - } ; -__p += '\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/label/index.d.ts b/lib/mjs/templates/bootstrap3/label/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/label/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/label/index.js b/lib/mjs/templates/bootstrap3/label/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/label/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/message/form.ejs.js b/lib/mjs/templates/bootstrap3/message/form.ejs.js deleted file mode 100644 index bbef88c6e..000000000 --- a/lib/mjs/templates/bootstrap3/message/form.ejs.js +++ /dev/null @@ -1,9 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '

    ' + -((__t = (ctx.message)) == null ? '' : __t) + -'

    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/message/index.d.ts b/lib/mjs/templates/bootstrap3/message/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/message/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/message/index.js b/lib/mjs/templates/bootstrap3/message/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/message/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/modaldialog/form.ejs.js b/lib/mjs/templates/bootstrap3/modaldialog/form.ejs.js deleted file mode 100644 index 7571a7151..000000000 --- a/lib/mjs/templates/bootstrap3/modaldialog/form.ejs.js +++ /dev/null @@ -1,7 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '
    \n
    \n
    \n \n ' + -((__t = (ctx.t('Close'))) == null ? '' : __t) + -'\n \n
    \n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/modaldialog/index.d.ts b/lib/mjs/templates/bootstrap3/modaldialog/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/modaldialog/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/modaldialog/index.js b/lib/mjs/templates/bootstrap3/modaldialog/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/modaldialog/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/modaledit/form.ejs.js b/lib/mjs/templates/bootstrap3/modaledit/form.ejs.js deleted file mode 100644 index 322eb2b18..000000000 --- a/lib/mjs/templates/bootstrap3/modaledit/form.ejs.js +++ /dev/null @@ -1,9 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '
    \n \n \n \n
    ' + -((__t = (ctx.content)) == null ? '' : __t) + -'
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/modaledit/index.d.ts b/lib/mjs/templates/bootstrap3/modaledit/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/modaledit/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/modaledit/index.js b/lib/mjs/templates/bootstrap3/modaledit/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/modaledit/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/multiValueRow/form.ejs.js b/lib/mjs/templates/bootstrap3/multiValueRow/form.ejs.js deleted file mode 100644 index 2848f08c0..000000000 --- a/lib/mjs/templates/bootstrap3/multiValueRow/form.ejs.js +++ /dev/null @@ -1,14 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n \n ' + -((__t = (ctx.element)) == null ? '' : __t) + -'\n \n '; - if (!ctx.disabled) { ; -__p += '\n \n \n \n '; - } ; -__p += '\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/multiValueRow/index.d.ts b/lib/mjs/templates/bootstrap3/multiValueRow/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/multiValueRow/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/multiValueRow/index.js b/lib/mjs/templates/bootstrap3/multiValueRow/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/multiValueRow/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/multiValueTable/form.ejs.js b/lib/mjs/templates/bootstrap3/multiValueTable/form.ejs.js deleted file mode 100644 index bd5535127..000000000 --- a/lib/mjs/templates/bootstrap3/multiValueTable/form.ejs.js +++ /dev/null @@ -1,16 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n \n ' + -((__t = (ctx.rows)) == null ? '' : __t) + -'\n '; - if (!ctx.disabled) { ; -__p += '\n \n \n \n '; - } ; -__p += '\n \n
    \n \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/multiValueTable/index.d.ts b/lib/mjs/templates/bootstrap3/multiValueTable/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/multiValueTable/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/multiValueTable/index.js b/lib/mjs/templates/bootstrap3/multiValueTable/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/multiValueTable/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/pagination-bottom/html.ejs.js b/lib/mjs/templates/bootstrap3/pagination-bottom/html.ejs.js deleted file mode 100644 index 0ad121902..000000000 --- a/lib/mjs/templates/bootstrap3/pagination-bottom/html.ejs.js +++ /dev/null @@ -1,5 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '
    \n \n
    '; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/pagination-bottom/index.d.ts b/lib/mjs/templates/bootstrap3/pagination-bottom/index.d.ts deleted file mode 100644 index abb6036cf..000000000 --- a/lib/mjs/templates/bootstrap3/pagination-bottom/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - html: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/pagination-bottom/index.js b/lib/mjs/templates/bootstrap3/pagination-bottom/index.js deleted file mode 100644 index 725e812f0..000000000 --- a/lib/mjs/templates/bootstrap3/pagination-bottom/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import html from './html.ejs'; -export default { html }; diff --git a/lib/mjs/templates/bootstrap3/pagination/html.ejs.js b/lib/mjs/templates/bootstrap3/pagination/html.ejs.js deleted file mode 100644 index 435611c1e..000000000 --- a/lib/mjs/templates/bootstrap3/pagination/html.ejs.js +++ /dev/null @@ -1,9 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/pagination/index.d.ts b/lib/mjs/templates/bootstrap3/pagination/index.d.ts deleted file mode 100644 index abb6036cf..000000000 --- a/lib/mjs/templates/bootstrap3/pagination/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - html: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/pagination/index.js b/lib/mjs/templates/bootstrap3/pagination/index.js deleted file mode 100644 index 725e812f0..000000000 --- a/lib/mjs/templates/bootstrap3/pagination/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import html from './html.ejs'; -export default { html }; diff --git a/lib/mjs/templates/bootstrap3/panel/form.ejs.js b/lib/mjs/templates/bootstrap3/panel/form.ejs.js deleted file mode 100644 index 173d6a688..000000000 --- a/lib/mjs/templates/bootstrap3/panel/form.ejs.js +++ /dev/null @@ -1,54 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - if (!ctx.component.hideLabel || ctx.builder || ctx.component.collapsible || ctx.component.tooltip) { ; -__p += '\n
    \n

    \n '; - if (ctx.component.collapsible) { ; -__p += '\n \n '; - } ; -__p += '\n '; - if (!ctx.component.hideLabel || ctx.builder) { ; -__p += '\n ' + -((__t = (ctx.t(ctx.component.title, { _userInput: true }))) == null ? '' : __t) + -'\n '; - } ; -__p += '\n '; - if (ctx.component.tooltip) { ; -__p += '\n \n '; - } ; -__p += '\n

    \n
    \n '; - } ; -__p += '\n '; - if (!ctx.collapsed || ctx.builder) { ; -__p += '\n
    \n ' + -((__t = (ctx.children)) == null ? '' : __t) + -'\n
    \n '; - } ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/panel/index.d.ts b/lib/mjs/templates/bootstrap3/panel/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/panel/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/panel/index.js b/lib/mjs/templates/bootstrap3/panel/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/panel/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/pdf/form.ejs.js b/lib/mjs/templates/bootstrap3/pdf/form.ejs.js deleted file mode 100644 index bcf087c52..000000000 --- a/lib/mjs/templates/bootstrap3/pdf/form.ejs.js +++ /dev/null @@ -1,13 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '
    \n \n \n \n \n \n \n
    \n ' + -((__t = ( ctx.submitButton )) == null ? '' : __t) + -'\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/pdf/index.d.ts b/lib/mjs/templates/bootstrap3/pdf/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/pdf/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/pdf/index.js b/lib/mjs/templates/bootstrap3/pdf/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/pdf/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/radio/form.ejs.js b/lib/mjs/templates/bootstrap3/radio/form.ejs.js deleted file mode 100644 index af2e190c3..000000000 --- a/lib/mjs/templates/bootstrap3/radio/form.ejs.js +++ /dev/null @@ -1,64 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - ctx.values.forEach(function(item, index) { ; -__p += '\n
    \n \n
    \n '; - }) ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/radio/html.ejs.js b/lib/mjs/templates/bootstrap3/radio/html.ejs.js deleted file mode 100644 index 7641aabfa..000000000 --- a/lib/mjs/templates/bootstrap3/radio/html.ejs.js +++ /dev/null @@ -1,10 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - var filtered = ctx.values.filter(function(item) {return ctx.value === item.value || (typeof ctx.value === 'object' && ctx.value.hasOwnProperty(item.value) && ctx.value[item.value])}).map(function(item) { return ctx.t(item.label, { _userInput: true })}).join(', ') ; -__p += '\n ' + -((__t = (filtered)) == null ? '' : __t) + -'\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/radio/index.d.ts b/lib/mjs/templates/bootstrap3/radio/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/mjs/templates/bootstrap3/radio/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/radio/index.js b/lib/mjs/templates/bootstrap3/radio/index.js deleted file mode 100644 index d60b4b87e..000000000 --- a/lib/mjs/templates/bootstrap3/radio/index.js +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; -export default { form, html }; diff --git a/lib/mjs/templates/bootstrap3/resourceAdd/form.ejs.js b/lib/mjs/templates/bootstrap3/resourceAdd/form.ejs.js deleted file mode 100644 index 54bc43d00..000000000 --- a/lib/mjs/templates/bootstrap3/resourceAdd/form.ejs.js +++ /dev/null @@ -1,11 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '\n \n \n \n \n \n \n \n \n
    \n ' + -((__t = (ctx.element)) == null ? '' : __t) + -'\n
    \n \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/resourceAdd/index.d.ts b/lib/mjs/templates/bootstrap3/resourceAdd/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/resourceAdd/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/resourceAdd/index.js b/lib/mjs/templates/bootstrap3/resourceAdd/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/resourceAdd/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/signature/form.ejs.js b/lib/mjs/templates/bootstrap3/signature/form.ejs.js deleted file mode 100644 index f99f1f850..000000000 --- a/lib/mjs/templates/bootstrap3/signature/form.ejs.js +++ /dev/null @@ -1,30 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += -((__t = (ctx.element)) == null ? '' : __t) + -'\n\n\n \n \n \n \n '; - if (ctx.required) { ; -__p += '\n \n '; - } ; -__p += '\n \n\n'; - if (ctx.component.footer) { ; -__p += '\n \n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/signature/html.ejs.js b/lib/mjs/templates/bootstrap3/signature/html.ejs.js deleted file mode 100644 index 82ca31add..000000000 --- a/lib/mjs/templates/bootstrap3/signature/html.ejs.js +++ /dev/null @@ -1,5 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/signature/index.d.ts b/lib/mjs/templates/bootstrap3/signature/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/mjs/templates/bootstrap3/signature/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/signature/index.js b/lib/mjs/templates/bootstrap3/signature/index.js deleted file mode 100644 index d60b4b87e..000000000 --- a/lib/mjs/templates/bootstrap3/signature/index.js +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; -export default { form, html }; diff --git a/lib/mjs/templates/bootstrap3/survey/form.ejs.js b/lib/mjs/templates/bootstrap3/survey/form.ejs.js deleted file mode 100644 index 47a232f2b..000000000 --- a/lib/mjs/templates/bootstrap3/survey/form.ejs.js +++ /dev/null @@ -1,48 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n \n \n \n '; - ctx.component.values.forEach(function(value) { ; -__p += '\n \n '; - }) ; -__p += '\n \n \n \n '; - ctx.component.questions.forEach(function(question) { ; -__p += '\n \n \n '; - ctx.component.values.forEach(function(value) { ; -__p += '\n \n '; - }) ; -__p += '\n \n '; - }) ; -__p += '\n \n
    \n ' + -((__t = (ctx.t(value.label))) == null ? '' : __t) + -'\n '; - if (value.tooltip) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n ' + -((__t = (ctx.t(question.label))) == null ? '' : __t) + -'\n '; - if (question.tooltip) { ; -__p += '\n \n '; - } ; -__p += '\n \n \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/survey/html.ejs.js b/lib/mjs/templates/bootstrap3/survey/html.ejs.js deleted file mode 100644 index 52c86773d..000000000 --- a/lib/mjs/templates/bootstrap3/survey/html.ejs.js +++ /dev/null @@ -1,22 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n \n '; - ctx.component.questions.forEach(function(question) { ; -__p += '\n \n \n \n \n '; - }) ; -__p += '\n \n
    ' + -((__t = (ctx.t(question.label))) == null ? '' : __t) + -'\n '; - ctx.component.values.forEach(function(item) { ; -__p += '\n '; - if (ctx.value && ctx.value.hasOwnProperty(question.value) && ctx.value[question.value] === item.value) { ; -__p += '\n ' + -((__t = (ctx.t(item.label))) == null ? '' : __t) + -'\n '; - } ; -__p += '\n '; - }) ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/survey/index.d.ts b/lib/mjs/templates/bootstrap3/survey/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/mjs/templates/bootstrap3/survey/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/survey/index.js b/lib/mjs/templates/bootstrap3/survey/index.js deleted file mode 100644 index d60b4b87e..000000000 --- a/lib/mjs/templates/bootstrap3/survey/index.js +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; -export default { form, html }; diff --git a/lib/mjs/templates/bootstrap3/tab/flat.ejs.js b/lib/mjs/templates/bootstrap3/tab/flat.ejs.js deleted file mode 100644 index 3e8cd2e88..000000000 --- a/lib/mjs/templates/bootstrap3/tab/flat.ejs.js +++ /dev/null @@ -1,16 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } - - ctx.component.components.forEach(function(tab, index) { ; -__p += '\n
    \n
    \n

    ' + -((__t = ( ctx.t(tab.label, { _userInput: true }) )) == null ? '' : __t) + -'

    \n
    \n
    \n ' + -((__t = ( ctx.tabComponents[index] )) == null ? '' : __t) + -'\n
    \n
    \n'; - }) ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/tab/form.ejs.js b/lib/mjs/templates/bootstrap3/tab/form.ejs.js deleted file mode 100644 index 999f02fb9..000000000 --- a/lib/mjs/templates/bootstrap3/tab/form.ejs.js +++ /dev/null @@ -1,38 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n \n
    \n '; - ctx.component.components.forEach(function(tab, index) { ; -__p += '\n
    ' + -((__t = (ctx.tabComponents[index])) == null ? '' : __t) + -'
    \n '; - }) ; -__p += '\n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/tab/index.d.ts b/lib/mjs/templates/bootstrap3/tab/index.d.ts deleted file mode 100644 index f175dff3c..000000000 --- a/lib/mjs/templates/bootstrap3/tab/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - flat: string; - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/tab/index.js b/lib/mjs/templates/bootstrap3/tab/index.js deleted file mode 100644 index 588f7b0ac..000000000 --- a/lib/mjs/templates/bootstrap3/tab/index.js +++ /dev/null @@ -1,3 +0,0 @@ -import flat from './flat.ejs'; -import form from './form.ejs'; -export default { flat, form }; diff --git a/lib/mjs/templates/bootstrap3/table/form.ejs.js b/lib/mjs/templates/bootstrap3/table/form.ejs.js deleted file mode 100644 index d28f6f83b..000000000 --- a/lib/mjs/templates/bootstrap3/table/form.ejs.js +++ /dev/null @@ -1,46 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n '; - if (ctx.component.header && ctx.component.header.length > 0) { ; -__p += '\n \n \n '; - ctx.component.header.forEach(function(header) { ; -__p += '\n \n '; - }) ; -__p += '\n \n \n '; - } ; -__p += '\n \n '; - ctx.tableComponents.forEach(function(row, rowIndex) { ; -__p += '\n \n '; - row.forEach(function(column, colIndex) { ; -__p += '\n \n '; - }) ; -__p += '\n \n
    ' + -((__t = (ctx.t(header, { _userInput: true }))) == null ? '' : __t) + -'
    \n '; - }) ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/table/index.d.ts b/lib/mjs/templates/bootstrap3/table/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/table/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/table/index.js b/lib/mjs/templates/bootstrap3/table/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/table/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/tbody/html.ejs.js b/lib/mjs/templates/bootstrap3/tbody/html.ejs.js deleted file mode 100644 index f52e71ee9..000000000 --- a/lib/mjs/templates/bootstrap3/tbody/html.ejs.js +++ /dev/null @@ -1,42 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n\n '; - ctx.eachRow(function(row) { ; -__p += '\n \n '; - if (ctx.component.enableRowSelect) { ; -__p += '\n \n '; - } ; -__p += '\n '; - row.forEach(function(rowComp) { ; -__p += '\n '; - if (rowComp.component.show) { ; -__p += '\n \n '; - } ; -__p += '\n '; - }); ; -__p += '\n '; - if ((ctx.component.showEditBtn || ctx.component.showDeleteBtn || ctx.component.showDeleteAllBtn) && !ctx.options.pdf) { ; -__p += '\n \n '; - } ; -__p += '\n \n '; - }); ; -__p += '\n\n
    \n \n \n ' + -((__t = ( ctx.instance.hook('format', rowComp.component.key, rowComp.dataValue) )) == null ? '' : __t) + -'\n \n
    \n \n ⋮\n
    \n
    '; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/tbody/index.d.ts b/lib/mjs/templates/bootstrap3/tbody/index.d.ts deleted file mode 100644 index abb6036cf..000000000 --- a/lib/mjs/templates/bootstrap3/tbody/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - html: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/tbody/index.js b/lib/mjs/templates/bootstrap3/tbody/index.js deleted file mode 100644 index 725e812f0..000000000 --- a/lib/mjs/templates/bootstrap3/tbody/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import html from './html.ejs'; -export default { html }; diff --git a/lib/mjs/templates/bootstrap3/well/form.ejs.js b/lib/mjs/templates/bootstrap3/well/form.ejs.js deleted file mode 100644 index 4ee0a0dcd..000000000 --- a/lib/mjs/templates/bootstrap3/well/form.ejs.js +++ /dev/null @@ -1,9 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '
    \n
    \n ' + -((__t = (ctx.children)) == null ? '' : __t) + -'\n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/well/index.d.ts b/lib/mjs/templates/bootstrap3/well/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/well/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/well/index.js b/lib/mjs/templates/bootstrap3/well/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/well/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/wizard/builder.ejs.js b/lib/mjs/templates/bootstrap3/wizard/builder.ejs.js deleted file mode 100644 index ce66d47a6..000000000 --- a/lib/mjs/templates/bootstrap3/wizard/builder.ejs.js +++ /dev/null @@ -1,7 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '
    ' + -((__t = ( ctx.t(ctx.component.title, { _userInput: true }) )) == null ? '' : __t) + -'
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/wizard/form.ejs.js b/lib/mjs/templates/bootstrap3/wizard/form.ejs.js deleted file mode 100644 index 79e7b6662..000000000 --- a/lib/mjs/templates/bootstrap3/wizard/form.ejs.js +++ /dev/null @@ -1,30 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n
    \n '; - if (ctx.wizardHeaderType === 'wizardHeaderVertical') { ; -__p += '\n
    \n
    \n ' + -((__t = ( ctx.wizardHeader )) == null ? '' : __t) + -'\n
    \n
    \n ' + -((__t = (ctx.components)) == null ? '' : __t) + -'\n
    \n
    \n
    \n ' + -((__t = ( ctx.wizardNav )) == null ? '' : __t) + -'\n
    \n '; - } else { ; -__p += ' \n ' + -((__t = ( ctx.wizardHeader )) == null ? '' : __t) + -'\n
    \n ' + -((__t = (ctx.components)) == null ? '' : __t) + -'\n
    \n ' + -((__t = ( ctx.wizardNav )) == null ? '' : __t) + -'\n '; - } ; -__p += ' \n
    \n
    '; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/wizard/index.d.ts b/lib/mjs/templates/bootstrap3/wizard/index.d.ts deleted file mode 100644 index f3dc5a469..000000000 --- a/lib/mjs/templates/bootstrap3/wizard/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - builder: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/wizard/index.js b/lib/mjs/templates/bootstrap3/wizard/index.js deleted file mode 100644 index 15ddaa129..000000000 --- a/lib/mjs/templates/bootstrap3/wizard/index.js +++ /dev/null @@ -1,3 +0,0 @@ -import builder from './builder.ejs'; -import form from './form.ejs'; -export default { form, builder }; diff --git a/lib/mjs/templates/bootstrap3/wizardHeader/form.ejs.js b/lib/mjs/templates/bootstrap3/wizardHeader/form.ejs.js deleted file mode 100644 index e76a92ebf..000000000 --- a/lib/mjs/templates/bootstrap3/wizardHeader/form.ejs.js +++ /dev/null @@ -1,30 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/wizardHeader/index.d.ts b/lib/mjs/templates/bootstrap3/wizardHeader/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/wizardHeader/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/wizardHeader/index.js b/lib/mjs/templates/bootstrap3/wizardHeader/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/wizardHeader/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/wizardHeaderClassic/form.ejs.js b/lib/mjs/templates/bootstrap3/wizardHeaderClassic/form.ejs.js deleted file mode 100644 index 1e7314779..000000000 --- a/lib/mjs/templates/bootstrap3/wizardHeaderClassic/form.ejs.js +++ /dev/null @@ -1,26 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/wizardHeaderClassic/index.d.ts b/lib/mjs/templates/bootstrap3/wizardHeaderClassic/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/wizardHeaderClassic/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/wizardHeaderClassic/index.js b/lib/mjs/templates/bootstrap3/wizardHeaderClassic/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/wizardHeaderClassic/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/wizardHeaderVertical/form.ejs.js b/lib/mjs/templates/bootstrap3/wizardHeaderVertical/form.ejs.js deleted file mode 100644 index bb3b208d6..000000000 --- a/lib/mjs/templates/bootstrap3/wizardHeaderVertical/form.ejs.js +++ /dev/null @@ -1,28 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/wizardHeaderVertical/index.d.ts b/lib/mjs/templates/bootstrap3/wizardHeaderVertical/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/wizardHeaderVertical/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/wizardHeaderVertical/index.js b/lib/mjs/templates/bootstrap3/wizardHeaderVertical/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/wizardHeaderVertical/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap3/wizardNav/form.ejs.js b/lib/mjs/templates/bootstrap3/wizardNav/form.ejs.js deleted file mode 100644 index 1f42489ee..000000000 --- a/lib/mjs/templates/bootstrap3/wizardNav/form.ejs.js +++ /dev/null @@ -1,40 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
      \n '; - if (ctx.buttons.cancel) { ; -__p += '\n
    • \n \n
    • \n '; - } ; -__p += '\n '; - if (ctx.buttons.previous) { ; -__p += '\n
    • \n \n
    • \n '; - } ; -__p += '\n '; - if (ctx.buttons.next) { ; -__p += '\n
    • \n \n
    • \n '; - } ; -__p += '\n '; - if (ctx.buttons.submit) { ; -__p += '\n
    • \n \n
    • \n '; - } ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap3/wizardNav/index.d.ts b/lib/mjs/templates/bootstrap3/wizardNav/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap3/wizardNav/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap3/wizardNav/index.js b/lib/mjs/templates/bootstrap3/wizardNav/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap3/wizardNav/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/address/form.ejs.js b/lib/mjs/templates/bootstrap4/address/form.ejs.js deleted file mode 100644 index e565f0704..000000000 --- a/lib/mjs/templates/bootstrap4/address/form.ejs.js +++ /dev/null @@ -1,58 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } - - if (ctx.mode.autocomplete) { ; -__p += '\n
    \n \n '; - if (!ctx.component.disableClearIcon) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n'; - } ; -__p += '\n'; - if (ctx.self.manualModeEnabled) { ; -__p += '\n
    \n \n
    \n'; - } ; -__p += '\n'; - if (ctx.self.manualMode) { ; -__p += '\n
    \n ' + -((__t = ( ctx.children )) == null ? '' : __t) + -'\n
    \n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/address/html.ejs.js b/lib/mjs/templates/bootstrap4/address/html.ejs.js deleted file mode 100644 index 427145ae9..000000000 --- a/lib/mjs/templates/bootstrap4/address/html.ejs.js +++ /dev/null @@ -1,13 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    '; - if (ctx.displayValue) { ; -__p += -((__t = (ctx.displayValue)) == null ? '' : __t); - } else { ; -__p += '-'; - } ; -__p += '
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/address/index.d.ts b/lib/mjs/templates/bootstrap4/address/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/mjs/templates/bootstrap4/address/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/address/index.js b/lib/mjs/templates/bootstrap4/address/index.js deleted file mode 100644 index d60b4b87e..000000000 --- a/lib/mjs/templates/bootstrap4/address/index.js +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; -export default { form, html }; diff --git a/lib/mjs/templates/bootstrap4/alert/form.ejs.js b/lib/mjs/templates/bootstrap4/alert/form.ejs.js deleted file mode 100644 index c3225c198..000000000 --- a/lib/mjs/templates/bootstrap4/alert/form.ejs.js +++ /dev/null @@ -1,24 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '' + -((__t = (ctx.t('errorListHotkey'))) == null ? '' : __t) + -'\n '; - } ; -__p += '\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/alert/index.d.ts b/lib/mjs/templates/bootstrap4/alert/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/alert/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/alert/index.js b/lib/mjs/templates/bootstrap4/alert/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/alert/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/builder/form.ejs.js b/lib/mjs/templates/bootstrap4/builder/form.ejs.js deleted file mode 100644 index 3b0b5fce6..000000000 --- a/lib/mjs/templates/bootstrap4/builder/form.ejs.js +++ /dev/null @@ -1,9 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '
    \n
    \n ' + -((__t = (ctx.sidebar)) == null ? '' : __t) + -'\n
    \n
    \n ' + -((__t = (ctx.form)) == null ? '' : __t) + -'\n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/builder/index.d.ts b/lib/mjs/templates/bootstrap4/builder/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/builder/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/builder/index.js b/lib/mjs/templates/bootstrap4/builder/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/builder/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/builderComponent/form.ejs.js b/lib/mjs/templates/bootstrap4/builderComponent/form.ejs.js deleted file mode 100644 index d45f76c9d..000000000 --- a/lib/mjs/templates/bootstrap4/builderComponent/form.ejs.js +++ /dev/null @@ -1,36 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - if (!ctx.disableBuilderActions) { ; -__p += '\n
    \n \n \n
    \n '; - if (!ctx.design) { ; -__p += '\n \n \n
    \n \n \n \n '; - if (ctx.editJson !== false) { ; -__p += '\n \n \n \n '; - } ; -__p += '\n '; - } ; -__p += '\n \n \n \n '; - if (!(ctx.design && ctx.childComponent.type === 'reviewpage') && ctx.editComponent) { ; -__p += '\n \n \n \n '; - } ; -__p += '\n \n '; - } ; -__p += '\n ' + -((__t = (ctx.html)) == null ? '' : __t) + -'\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/builderComponent/index.d.ts b/lib/mjs/templates/bootstrap4/builderComponent/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/builderComponent/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/builderComponent/index.js b/lib/mjs/templates/bootstrap4/builderComponent/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/builderComponent/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/builderComponents/form.ejs.js b/lib/mjs/templates/bootstrap4/builderComponents/form.ejs.js deleted file mode 100644 index c6396c612..000000000 --- a/lib/mjs/templates/bootstrap4/builderComponents/form.ejs.js +++ /dev/null @@ -1,11 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '
    \n ' + -((__t = (ctx.html)) == null ? '' : __t) + -'\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/builderComponents/index.d.ts b/lib/mjs/templates/bootstrap4/builderComponents/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/builderComponents/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/builderComponents/index.js b/lib/mjs/templates/bootstrap4/builderComponents/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/builderComponents/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/builderEditForm/form.ejs.js b/lib/mjs/templates/bootstrap4/builderEditForm/form.ejs.js deleted file mode 100644 index f695460a4..000000000 --- a/lib/mjs/templates/bootstrap4/builderEditForm/form.ejs.js +++ /dev/null @@ -1,62 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n
    \n

    ' + -((__t = (ctx.t(ctx.componentInfo.title, { _userInput: true }))) == null ? '' : __t) + -' ' + -((__t = (ctx.t('Component'))) == null ? '' : __t) + -'

    \n
    \n '; - if (ctx.helplinks) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n
    \n
    \n
    \n ' + -((__t = (ctx.editForm)) == null ? '' : __t) + -'\n
    \n '; - if (!ctx.showPreview) { ; -__p += '\n
    \n \n \n \n '; - if (ctx.preview) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n '; - } ; -__p += '\n
    \n '; - if (ctx.showPreview && ctx.preview) { ; -__p += '\n
    \n
    \n
    \n

    ' + -((__t = (ctx.t('Preview'))) == null ? '' : __t) + -'

    \n
    \n
    \n
    \n ' + -((__t = (ctx.preview)) == null ? '' : __t) + -'\n
    \n
    \n
    \n '; - if (ctx.componentInfo.help) { ; -__p += '\n
    \n ' + -((__t = ( ctx.t(ctx.componentInfo.help) )) == null ? '' : __t) + -'\n
    \n '; - } ; -__p += '\n
    \n \n \n \n \n
    \n
    \n '; - } ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/builderEditForm/index.d.ts b/lib/mjs/templates/bootstrap4/builderEditForm/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/builderEditForm/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/builderEditForm/index.js b/lib/mjs/templates/bootstrap4/builderEditForm/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/builderEditForm/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/builderPlaceholder/form.ejs.js b/lib/mjs/templates/bootstrap4/builderPlaceholder/form.ejs.js deleted file mode 100644 index 9244a6555..000000000 --- a/lib/mjs/templates/bootstrap4/builderPlaceholder/form.ejs.js +++ /dev/null @@ -1,9 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '\n ' + -((__t = (ctx.t('Drag and Drop a form component'))) == null ? '' : __t) + -'\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/builderPlaceholder/index.d.ts b/lib/mjs/templates/bootstrap4/builderPlaceholder/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/builderPlaceholder/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/builderPlaceholder/index.js b/lib/mjs/templates/bootstrap4/builderPlaceholder/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/builderPlaceholder/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/builderSidebar/form.ejs.js b/lib/mjs/templates/bootstrap4/builderSidebar/form.ejs.js deleted file mode 100644 index 11afae41d..000000000 --- a/lib/mjs/templates/bootstrap4/builderSidebar/form.ejs.js +++ /dev/null @@ -1,18 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n \n
    \n '; - ctx.groups.forEach(function(group) { ; -__p += '\n ' + -((__t = ( group )) == null ? '' : __t) + -'\n '; - }) ; -__p += '\n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/builderSidebar/index.d.ts b/lib/mjs/templates/bootstrap4/builderSidebar/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/builderSidebar/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/builderSidebar/index.js b/lib/mjs/templates/bootstrap4/builderSidebar/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/builderSidebar/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/builderSidebarGroup/form.ejs.js b/lib/mjs/templates/bootstrap4/builderSidebarGroup/form.ejs.js deleted file mode 100644 index a9a846d82..000000000 --- a/lib/mjs/templates/bootstrap4/builderSidebarGroup/form.ejs.js +++ /dev/null @@ -1,62 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n
    \n
    \n \n ' + -((__t = (ctx.t(ctx.group.title, { _userInput: true }))) == null ? '' : __t) + -'\n \n
    \n
    \n \n
    \n '; - if (ctx.group.componentOrder.length || ctx.subgroups.length) { ; -__p += '\n '; - !ctx.group.componentOrder || ctx.group.componentOrder.forEach(function(componentKey) { ; -__p += '\n \n '; - if (ctx.group.components[componentKey].icon) { ; -__p += '\n \n '; - } ; -__p += '\n ' + -((__t = (ctx.t(ctx.group.components[componentKey].title, { _userInput: true }))) == null ? '' : __t) + -'\n \n '; - }) ; -__p += '\n ' + -((__t = (ctx.subgroups.join(''))) == null ? '' : __t) + -'\n '; - } else { ; -__p += '\n
    ' + -((__t = (ctx.t('No Matches Found'))) == null ? '' : __t) + -'
    \n '; - } ; -__p += '\n
    \n
    \n\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/builderSidebarGroup/index.d.ts b/lib/mjs/templates/bootstrap4/builderSidebarGroup/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/builderSidebarGroup/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/builderSidebarGroup/index.js b/lib/mjs/templates/bootstrap4/builderSidebarGroup/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/builderSidebarGroup/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/builderWizard/form.ejs.js b/lib/mjs/templates/bootstrap4/builderWizard/form.ejs.js deleted file mode 100644 index 4aeb209e9..000000000 --- a/lib/mjs/templates/bootstrap4/builderWizard/form.ejs.js +++ /dev/null @@ -1,32 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n
    \n ' + -((__t = (ctx.sidebar)) == null ? '' : __t) + -'\n
    \n
    \n \n
    \n ' + -((__t = (ctx.form)) == null ? '' : __t) + -'\n
    \n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/builderWizard/index.d.ts b/lib/mjs/templates/bootstrap4/builderWizard/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/builderWizard/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/builderWizard/index.js b/lib/mjs/templates/bootstrap4/builderWizard/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/builderWizard/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/button/form.ejs.js b/lib/mjs/templates/bootstrap4/button/form.ejs.js deleted file mode 100644 index 6e5b74566..000000000 --- a/lib/mjs/templates/bootstrap4/button/form.ejs.js +++ /dev/null @@ -1,48 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '<' + -((__t = (ctx.input.type)) == null ? '' : __t) + -'\n ref="button"\n '; - for (var attr in ctx.input.attr) { ; -__p += '\n ' + -((__t = (attr)) == null ? '' : __t) + -'="' + -((__t = (ctx.input.attr[attr])) == null ? '' : __t) + -'"\n '; - } ; -__p += '\n '; - if (ctx.component.description) { ; -__p += '\n aria-describedby="d-' + -((__t = (ctx.instance.id)) == null ? '' : __t) + -'-' + -((__t = (ctx.component.key)) == null ? '' : __t) + -'"\n '; - } ; -__p += '\n>\n'; - if (ctx.component.leftIcon) { ; -__p += ' '; - } ; -__p += '\n' + -((__t = (ctx.input.content)) == null ? '' : __t) + -'\n'; - if (ctx.component.tooltip) { ; -__p += '\n \n'; - } ; -__p += '\n'; - if (ctx.component.rightIcon) { ; -__p += ' '; - } ; -__p += '\n\n
    \n \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/button/html.ejs.js b/lib/mjs/templates/bootstrap4/button/html.ejs.js deleted file mode 100644 index 25d15bf28..000000000 --- a/lib/mjs/templates/bootstrap4/button/html.ejs.js +++ /dev/null @@ -1,5 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/button/index.d.ts b/lib/mjs/templates/bootstrap4/button/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/mjs/templates/bootstrap4/button/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/button/index.js b/lib/mjs/templates/bootstrap4/button/index.js deleted file mode 100644 index d60b4b87e..000000000 --- a/lib/mjs/templates/bootstrap4/button/index.js +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; -export default { form, html }; diff --git a/lib/mjs/templates/bootstrap4/checkbox/form.ejs.js b/lib/mjs/templates/bootstrap4/checkbox/form.ejs.js deleted file mode 100644 index ab94b51e5..000000000 --- a/lib/mjs/templates/bootstrap4/checkbox/form.ejs.js +++ /dev/null @@ -1,66 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n \n <' + -((__t = (ctx.input.type)) == null ? '' : __t) + -'\n ref="input"\n id="' + -((__t = (ctx.instance.id)) == null ? '' : __t) + -'-' + -((__t = (ctx.component.key)) == null ? '' : __t) + -'"\n aria-labelledby="l-' + -((__t = (ctx.instance.id)) == null ? '' : __t) + -'-' + -((__t = (ctx.component.key)) == null ? '' : __t) + -'"\n '; - for (var attr in ctx.input.attr) { ; -__p += '\n ' + -((__t = (attr)) == null ? '' : __t) + -'="' + -((__t = (ctx.input.attr[attr])) == null ? '' : __t) + -'"\n '; - } ; -__p += '\n '; - if (ctx.checked) { ; -__p += 'checked=true'; - } ; -__p += '\n aria-required="' + -((__t = (ctx.component.validate.required)) == null ? '' : __t) + -'"\n '; - if (ctx.component.description) { ; -__p += '\n aria-describedby="d-' + -((__t = (ctx.instance.id)) == null ? '' : __t) + -'-' + -((__t = (ctx.component.key)) == null ? '' : __t) + -'"\n '; - } ; -__p += '\n >\n '; - if (!ctx.self.labelIsHidden()) { ; -__p += '' + -((__t = (ctx.input.label)) == null ? '' : __t) + -''; - } ; -__p += '\n ' + -((__t = (ctx.input.content)) == null ? '' : __t) + -'\n \n \n '; - if (ctx.component.tooltip) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/checkbox/html.ejs.js b/lib/mjs/templates/bootstrap4/checkbox/html.ejs.js deleted file mode 100644 index 0e0617a30..000000000 --- a/lib/mjs/templates/bootstrap4/checkbox/html.ejs.js +++ /dev/null @@ -1,22 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n
    '; - if (ctx.checked) { ; -__p += 'True'; - } else { ; -__p += 'False'; - } ; -__p += '
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/checkbox/index.d.ts b/lib/mjs/templates/bootstrap4/checkbox/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/mjs/templates/bootstrap4/checkbox/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/checkbox/index.js b/lib/mjs/templates/bootstrap4/checkbox/index.js deleted file mode 100644 index d60b4b87e..000000000 --- a/lib/mjs/templates/bootstrap4/checkbox/index.js +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; -export default { form, html }; diff --git a/lib/mjs/templates/bootstrap4/column-menu/html.ejs.js b/lib/mjs/templates/bootstrap4/column-menu/html.ejs.js deleted file mode 100644 index 51a83d35e..000000000 --- a/lib/mjs/templates/bootstrap4/column-menu/html.ejs.js +++ /dev/null @@ -1,38 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\r\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/column-menu/index.d.ts b/lib/mjs/templates/bootstrap4/column-menu/index.d.ts deleted file mode 100644 index abb6036cf..000000000 --- a/lib/mjs/templates/bootstrap4/column-menu/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - html: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/column-menu/index.js b/lib/mjs/templates/bootstrap4/column-menu/index.js deleted file mode 100644 index 725e812f0..000000000 --- a/lib/mjs/templates/bootstrap4/column-menu/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import html from './html.ejs'; -export default { html }; diff --git a/lib/mjs/templates/bootstrap4/columns/form.ejs.js b/lib/mjs/templates/bootstrap4/columns/form.ejs.js deleted file mode 100644 index 6ec8ebe2c..000000000 --- a/lib/mjs/templates/bootstrap4/columns/form.ejs.js +++ /dev/null @@ -1,22 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } - - ctx.component.columns.forEach(function(column, index) { ; -__p += '\n
    \n ' + -((__t = (ctx.columnComponents[index])) == null ? '' : __t) + -'\n
    \n'; - }) ; - -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/columns/index.d.ts b/lib/mjs/templates/bootstrap4/columns/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/columns/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/columns/index.js b/lib/mjs/templates/bootstrap4/columns/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/columns/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/component/form.ejs.js b/lib/mjs/templates/bootstrap4/component/form.ejs.js deleted file mode 100644 index e67eafe08..000000000 --- a/lib/mjs/templates/bootstrap4/component/form.ejs.js +++ /dev/null @@ -1,22 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - } ; -__p += '\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/component/index.d.ts b/lib/mjs/templates/bootstrap4/component/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/component/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/component/index.js b/lib/mjs/templates/bootstrap4/component/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/component/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/componentModal/form.ejs.js b/lib/mjs/templates/bootstrap4/componentModal/form.ejs.js deleted file mode 100644 index c7a9d25b8..000000000 --- a/lib/mjs/templates/bootstrap4/componentModal/form.ejs.js +++ /dev/null @@ -1,44 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n
    \n
    \n
    \n
    ' + -((__t = ( ctx.t(ctx.component.label) )) == null ? '' : __t) + -'' + -((__t = (ctx.self.isIE() ? ', dialog' : '')) == null ? '' : __t) + -'\n '; - if (ctx.options.vpat) { ; -__p += '\n \n '; - } else { ; -__p += '\n \n '; - } ; -__p += '\n
    \n '; - if (ctx.visible) { ; -__p += '\n
    ' + -((__t = (ctx.children)) == null ? '' : __t) + -'
    \n '; - } ; -__p += '\n
    \n '; - if (ctx.options.vpat) { ; -__p += '\n \n '; - } ; -__p += '\n \n
    \n
    \n
    \n \n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/componentModal/index.d.ts b/lib/mjs/templates/bootstrap4/componentModal/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/componentModal/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/componentModal/index.js b/lib/mjs/templates/bootstrap4/componentModal/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/componentModal/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/components/form.ejs.js b/lib/mjs/templates/bootstrap4/components/form.ejs.js deleted file mode 100644 index c78c64913..000000000 --- a/lib/mjs/templates/bootstrap4/components/form.ejs.js +++ /dev/null @@ -1,7 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += -((__t = ( ctx.children.join('') )) == null ? '' : __t) + -'\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/components/index.d.ts b/lib/mjs/templates/bootstrap4/components/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/components/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/components/index.js b/lib/mjs/templates/bootstrap4/components/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/components/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/container/form.ejs.js b/lib/mjs/templates/bootstrap4/container/form.ejs.js deleted file mode 100644 index 8607ff4c7..000000000 --- a/lib/mjs/templates/bootstrap4/container/form.ejs.js +++ /dev/null @@ -1,9 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '
    \n ' + -((__t = (ctx.children)) == null ? '' : __t) + -'\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/container/index.d.ts b/lib/mjs/templates/bootstrap4/container/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/container/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/container/index.js b/lib/mjs/templates/bootstrap4/container/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/container/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/cssClasses.d.ts b/lib/mjs/templates/bootstrap4/cssClasses.d.ts deleted file mode 100644 index 9a76882d8..000000000 --- a/lib/mjs/templates/bootstrap4/cssClasses.d.ts +++ /dev/null @@ -1,16 +0,0 @@ -declare const _default: { - 'border-default': string; - 'formio-tab-panel-active': string; - 'formio-tab-link-active': string; - 'formio-tab-link-container-active': string; - 'formio-form-error': string; - 'formio-form-alert': string; - 'formio-label-error': string; - 'formio-input-error': string; - 'formio-alert-danger': string; - 'formio-alert-success': string; - 'formio-alert-warning': string; - 'formio-modal-cancel-button': string; - 'formio-modal-confirm-button': string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/cssClasses.js b/lib/mjs/templates/bootstrap4/cssClasses.js deleted file mode 100644 index 6d962ca54..000000000 --- a/lib/mjs/templates/bootstrap4/cssClasses.js +++ /dev/null @@ -1,15 +0,0 @@ -export default { - 'border-default': '', - 'formio-tab-panel-active': 'active', - 'formio-tab-link-active': 'active', - 'formio-tab-link-container-active': 'active', - 'formio-form-error': 'formio-error-wrapper has-message', - 'formio-form-alert': 'alert alert-danger', - 'formio-label-error': '', - 'formio-input-error': '', - 'formio-alert-danger': 'alert alert-danger', - 'formio-alert-success': 'alert alert-success', - 'formio-alert-warning': 'alert alert-warning', - 'formio-modal-cancel-button': 'btn btn-danger formio-dialog-button', - 'formio-modal-confirm-button': 'btn btn-primary formio-dialog-button', -}; diff --git a/lib/mjs/templates/bootstrap4/datagrid/form.ejs.js b/lib/mjs/templates/bootstrap4/datagrid/form.ejs.js deleted file mode 100644 index 57564e841..000000000 --- a/lib/mjs/templates/bootstrap4/datagrid/form.ejs.js +++ /dev/null @@ -1,142 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n ' + -((__t = ( col.hideLabel ? '' : ctx.t(col.label || col.title, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - if (col.tooltip) { ; -__p += ' '; - } ; -__p += '\n \n '; - }) ; -__p += '\n '; - if (ctx.hasExtraColumn) { ; -__p += '\n \n '; - } ; -__p += '\n \n \n '; - } ; -__p += '\n \n '; - ctx.rows.forEach(function(row, index) { ; -__p += '\n '; - if (ctx.hasGroups && ctx.groups[index]) { ; -__p += '\n \n ' + -((__t = (ctx.groups[index].label)) == null ? '' : __t) + -'\n \n '; - } ; -__p += '\n \n '; - if (ctx.component.reorder) { ; -__p += '\n \n '; - } ; -__p += '\n '; - ctx.columns.forEach(function(col) { ; -__p += '\n \n '; - } ; -__p += '\n '; - if (ctx.canAddColumn) { ; -__p += '\n \n '; - } ; -__p += '\n '; - } ; -__p += '\n \n '; - }) ; -__p += '\n \n '; - if (!ctx.builder && ctx.hasAddButton && ctx.hasBottomSubmit) { ; -__p += '\n \n \n \n \n \n '; - } ; -__p += '\n
    \n ' + -((__t = ( ctx.t('Add/Remove') )) == null ? '' : __t) + -'\n '; - if (!ctx.builder && ctx.hasAddButton && ctx.hasTopSubmit) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n \n \n '; - }) ; -__p += '\n '; - if (ctx.hasExtraColumn) { ; -__p += '\n '; - if (ctx.hasRemoveButtons) { ; -__p += '\n \n \n \n ' + -((__t = (ctx.placeholder)) == null ? '' : __t) + -'\n
    \n \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/datagrid/html.ejs.js b/lib/mjs/templates/bootstrap4/datagrid/html.ejs.js deleted file mode 100644 index 69f064d39..000000000 --- a/lib/mjs/templates/bootstrap4/datagrid/html.ejs.js +++ /dev/null @@ -1,46 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n '; - if (ctx.hasHeader) { ; -__p += '\n \n \n '; - ctx.columns.forEach(function(col) { ; -__p += '\n \n '; - }) ; -__p += '\n \n \n '; - } ; -__p += '\n \n '; - ctx.rows.forEach(function(row) { ; -__p += '\n \n '; - ctx.columns.forEach(function(col) { ; -__p += '\n \n '; - }) ; -__p += '\n \n '; - }) ; -__p += '\n \n
    \n ' + -((__t = ( col.hideLabel ? '' : ctx.t(col.label || col.title, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - if (col.tooltip) { ; -__p += ' '; - } ; -__p += '\n
    \n ' + -((__t = (row[col.key])) == null ? '' : __t) + -'\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/datagrid/index.d.ts b/lib/mjs/templates/bootstrap4/datagrid/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/mjs/templates/bootstrap4/datagrid/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/datagrid/index.js b/lib/mjs/templates/bootstrap4/datagrid/index.js deleted file mode 100644 index d60b4b87e..000000000 --- a/lib/mjs/templates/bootstrap4/datagrid/index.js +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; -export default { form, html }; diff --git a/lib/mjs/templates/bootstrap4/day/form.ejs.js b/lib/mjs/templates/bootstrap4/day/form.ejs.js deleted file mode 100644 index 082c860e5..000000000 --- a/lib/mjs/templates/bootstrap4/day/form.ejs.js +++ /dev/null @@ -1,98 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    ' + -((__t = (ctx.t('Day'))) == null ? '' : __t) + -'\n '; - } ; -__p += '\n
    ' + -((__t = (ctx.day)) == null ? '' : __t) + -'
    \n
    \n '; - } ; -__p += '\n '; - if (ctx.showMonth) { ; -__p += '\n
    \n '; - if (!ctx.component.hideInputLabels) { ; -__p += '\n \n '; - } ; -__p += '\n
    ' + -((__t = (ctx.month)) == null ? '' : __t) + -'
    \n
    \n '; - } ; -__p += '\n '; - if (!ctx.dayFirst && ctx.showDay) { ; -__p += '\n
    \n '; - if (!ctx.component.hideInputLabels) { ; -__p += '\n \n '; - } ; -__p += '\n
    ' + -((__t = (ctx.day)) == null ? '' : __t) + -'
    \n
    \n '; - } ; -__p += '\n '; - if (ctx.showYear) { ; -__p += '\n
    \n '; - if (!ctx.component.hideInputLabels) { ; -__p += '\n \n '; - } ; -__p += '\n
    ' + -((__t = (ctx.year)) == null ? '' : __t) + -'
    \n
    \n '; - } ; -__p += '\n\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/day/index.d.ts b/lib/mjs/templates/bootstrap4/day/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/day/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/day/index.js b/lib/mjs/templates/bootstrap4/day/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/day/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/dialog/form.ejs.js b/lib/mjs/templates/bootstrap4/dialog/form.ejs.js deleted file mode 100644 index aaf64cc38..000000000 --- a/lib/mjs/templates/bootstrap4/dialog/form.ejs.js +++ /dev/null @@ -1,5 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '
    \n
    \n \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/dialog/index.d.ts b/lib/mjs/templates/bootstrap4/dialog/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/dialog/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/dialog/index.js b/lib/mjs/templates/bootstrap4/dialog/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/dialog/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/editgrid/form.ejs.js b/lib/mjs/templates/bootstrap4/editgrid/form.ejs.js deleted file mode 100644 index b3be52dc4..000000000 --- a/lib/mjs/templates/bootstrap4/editgrid/form.ejs.js +++ /dev/null @@ -1,62 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
      \n '; - if (ctx.header) { ; -__p += '\n
    • \n ' + -((__t = (ctx.header)) == null ? '' : __t) + -'\n
    • \n '; - } ; -__p += '\n '; - ctx.rows.forEach(function(row, rowIndex) { ; -__p += '\n
    • \n ' + -((__t = (row)) == null ? '' : __t) + -'\n '; - if (ctx.openRows[rowIndex] && !ctx.readOnly) { ; -__p += '\n
      \n \n '; - if (ctx.component.removeRow) { ; -__p += '\n \n '; - } ; -__p += '\n
      \n '; - } ; -__p += '\n
      \n
      \n ' + -((__t = (ctx.errors[rowIndex])) == null ? '' : __t) + -'\n
      \n
      \n
    • \n '; - }) ; -__p += '\n '; - if (ctx.footer) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n'; - if (!ctx.readOnly && ctx.hasAddButton) { ; -__p += '\n\n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/editgrid/html.ejs.js b/lib/mjs/templates/bootstrap4/editgrid/html.ejs.js deleted file mode 100644 index 8ec4c5f25..000000000 --- a/lib/mjs/templates/bootstrap4/editgrid/html.ejs.js +++ /dev/null @@ -1,52 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
      \n '; - if (ctx.header) { ; -__p += '\n
    • \n ' + -((__t = (ctx.header)) == null ? '' : __t) + -'\n
    • \n '; - } ; -__p += '\n '; - ctx.rows.forEach(function(row, rowIndex) { ; -__p += '\n
    • \n ' + -((__t = (row)) == null ? '' : __t) + -'\n '; - if (ctx.openRows[rowIndex] && !ctx.readOnly) { ; -__p += '\n
      \n \n '; - if (ctx.component.removeRow) { ; -__p += '\n \n '; - } ; -__p += '\n
      \n '; - } ; -__p += '\n
      \n
      \n ' + -((__t = (ctx.errors[rowIndex])) == null ? '' : __t) + -'\n
      \n
      \n
    • \n '; - }) ; -__p += '\n '; - if (ctx.footer) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/editgrid/index.d.ts b/lib/mjs/templates/bootstrap4/editgrid/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/mjs/templates/bootstrap4/editgrid/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/editgrid/index.js b/lib/mjs/templates/bootstrap4/editgrid/index.js deleted file mode 100644 index d60b4b87e..000000000 --- a/lib/mjs/templates/bootstrap4/editgrid/index.js +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; -export default { form, html }; diff --git a/lib/mjs/templates/bootstrap4/editgridTable/form.ejs.js b/lib/mjs/templates/bootstrap4/editgridTable/form.ejs.js deleted file mode 100644 index fe359eb61..000000000 --- a/lib/mjs/templates/bootstrap4/editgridTable/form.ejs.js +++ /dev/null @@ -1,66 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n
    \n \n '; - if (ctx.header) { ; -__p += '\n \n ' + -((__t = (ctx.header)) == null ? '' : __t) + -'\n \n '; - } ; -__p += '\n \n '; - ctx.rows.forEach(function(row, rowIndex) { ; -__p += '\n \n ' + -((__t = (row)) == null ? '' : __t) + -'\n '; - if (ctx.openRows[rowIndex] && !ctx.readOnly) { ; -__p += '\n \n '; - } ; -__p += '\n '; - if (ctx.errors[rowIndex]) { ; -__p += '\n \n '; - } ; -__p += '\n \n '; - }) ; -__p += '\n \n '; - if (ctx.footer) { ; -__p += '\n \n \n ' + -((__t = (ctx.footer)) == null ? '' : __t) + -'\n \n \n '; - } ; -__p += '\n
    \n
    \n \n '; - if (ctx.component.removeRow) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n
    \n
    \n
    \n ' + -((__t = (ctx.errors[rowIndex])) == null ? '' : __t) + -'\n
    \n
    \n
    \n
    \n
    \n'; - if (!ctx.readOnly && ctx.hasAddButton) { ; -__p += '\n\n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/editgridTable/html.ejs.js b/lib/mjs/templates/bootstrap4/editgridTable/html.ejs.js deleted file mode 100644 index 3d7b16c9f..000000000 --- a/lib/mjs/templates/bootstrap4/editgridTable/html.ejs.js +++ /dev/null @@ -1,56 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n
    \n \n '; - if (ctx.header) { ; -__p += '\n \n ' + -((__t = (ctx.header)) == null ? '' : __t) + -'\n \n '; - } ; -__p += '\n \n '; - ctx.rows.forEach(function(row, rowIndex) { ; -__p += '\n \n ' + -((__t = (row)) == null ? '' : __t) + -'\n '; - if (ctx.openRows[rowIndex] && !ctx.readOnly) { ; -__p += '\n \n '; - } ; -__p += '\n '; - if (ctx.errors[rowIndex]) { ; -__p += '\n \n '; - } ; -__p += '\n \n '; - }) ; -__p += '\n \n '; - if (ctx.footer) { ; -__p += '\n \n \n ' + -((__t = (ctx.footer)) == null ? '' : __t) + -'\n \n \n '; - } ; -__p += '\n
    \n
    \n \n '; - if (ctx.component.removeRow) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n
    \n
    \n
    \n ' + -((__t = (ctx.errors[rowIndex])) == null ? '' : __t) + -'\n
    \n
    \n
    \n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/editgridTable/index.d.ts b/lib/mjs/templates/bootstrap4/editgridTable/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/mjs/templates/bootstrap4/editgridTable/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/editgridTable/index.js b/lib/mjs/templates/bootstrap4/editgridTable/index.js deleted file mode 100644 index d60b4b87e..000000000 --- a/lib/mjs/templates/bootstrap4/editgridTable/index.js +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; -export default { form, html }; diff --git a/lib/mjs/templates/bootstrap4/errorsList/form.ejs.js b/lib/mjs/templates/bootstrap4/errorsList/form.ejs.js deleted file mode 100644 index bda9f6f38..000000000 --- a/lib/mjs/templates/bootstrap4/errorsList/form.ejs.js +++ /dev/null @@ -1,22 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '

    ' + -((__t = (ctx.t('error'))) == null ? '' : __t) + -'\n '; - if (ctx.options.vpat) { ; -__p += '\n \n '; - } ; -__p += '\n

    \n
      \n '; - ctx.errors.forEach(function(err) { ; -__p += '\n
    • \n \n ' + -((__t = (err.message)) == null ? '' : __t) + -'\n \n
    • \n '; - }) ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/errorsList/index.d.ts b/lib/mjs/templates/bootstrap4/errorsList/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/errorsList/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/errorsList/index.js b/lib/mjs/templates/bootstrap4/errorsList/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/errorsList/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/field/align.ejs.js b/lib/mjs/templates/bootstrap4/field/align.ejs.js deleted file mode 100644 index fe86e768e..000000000 --- a/lib/mjs/templates/bootstrap4/field/align.ejs.js +++ /dev/null @@ -1,38 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - if (!ctx.label.hidden) { ; -__p += '\n
    \n ' + -((__t = ( ctx.labelMarkup )) == null ? '' : __t) + -'\n
    \n '; - } ; -__p += '\n\n '; - if (ctx.label.hidden && ctx.label.className && ctx.component.validate.required) { ; -__p += '\n
    \n \n
    \n '; - } ; -__p += '\n\n
    \n ' + -((__t = (ctx.element)) == null ? '' : __t) + -'\n
    \n
    \n\n'; - if (ctx.component.description) { ; -__p += '\n
    ' + -((__t = (ctx.t(ctx.component.description, { _userInput: true }))) == null ? '' : __t) + -'
    \n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/field/form.ejs.js b/lib/mjs/templates/bootstrap4/field/form.ejs.js deleted file mode 100644 index a86131114..000000000 --- a/lib/mjs/templates/bootstrap4/field/form.ejs.js +++ /dev/null @@ -1,36 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } - - if (!ctx.label.hidden && ctx.label.labelPosition !== 'bottom') { ; -__p += '\n ' + -((__t = ( ctx.labelMarkup )) == null ? '' : __t) + -'\n'; - } ; -__p += '\n\n'; - if (ctx.label.hidden && ctx.label.className && ctx.component.validate.required) { ; -__p += '\n \n'; - } ; -__p += '\n\n' + -((__t = (ctx.element)) == null ? '' : __t) + -'\n\n'; - if (!ctx.label.hidden && ctx.label.labelPosition === 'bottom') { ; -__p += '\n ' + -((__t = ( ctx.labelMarkup )) == null ? '' : __t) + -'\n'; - } ; -__p += '\n'; - if (ctx.component.description) { ; -__p += '\n
    ' + -((__t = (ctx.t(ctx.component.description, { _userInput: true }))) == null ? '' : __t) + -'
    \n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/field/index.d.ts b/lib/mjs/templates/bootstrap4/field/index.d.ts deleted file mode 100644 index a2c25ccbe..000000000 --- a/lib/mjs/templates/bootstrap4/field/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - align: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/field/index.js b/lib/mjs/templates/bootstrap4/field/index.js deleted file mode 100644 index ee9828d73..000000000 --- a/lib/mjs/templates/bootstrap4/field/index.js +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; -import align from './align.ejs'; -export default { form, align }; diff --git a/lib/mjs/templates/bootstrap4/fieldset/form.ejs.js b/lib/mjs/templates/bootstrap4/fieldset/form.ejs.js deleted file mode 100644 index 48573b270..000000000 --- a/lib/mjs/templates/bootstrap4/fieldset/form.ejs.js +++ /dev/null @@ -1,30 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - if (ctx.component.legend) { ; -__p += '\n \n ' + -((__t = (ctx.t(ctx.component.legend, { _userInput: true }))) == null ? '' : __t) + -'\n '; - if (ctx.component.tooltip) { ; -__p += '\n \n '; - } ; -__p += '\n \n '; - } ; -__p += '\n '; - if (!ctx.collapsed) { ; -__p += '\n
    \n ' + -((__t = (ctx.children)) == null ? '' : __t) + -'\n
    \n '; - } ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/fieldset/index.d.ts b/lib/mjs/templates/bootstrap4/fieldset/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/fieldset/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/fieldset/index.js b/lib/mjs/templates/bootstrap4/fieldset/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/fieldset/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/file/form.ejs.js b/lib/mjs/templates/bootstrap4/file/form.ejs.js deleted file mode 100644 index 92fa9d0af..000000000 --- a/lib/mjs/templates/bootstrap4/file/form.ejs.js +++ /dev/null @@ -1,336 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } - - if (ctx.options.vpat) { ; -__p += '\n \n'; - } ; -__p += '\n'; - if (!ctx.self.imageUpload) { ; -__p += '\n '; - if (ctx.options.vpat) { ; -__p += '\n
    ' + -((__t = ((!ctx.component.filePattern || ctx.component.filePattern === '*') ? 'Any file types are allowed' : ctx.t('Allowed file types: ') + ctx.component.filePattern)) == null ? '' : __t) + -'
    \n '; - } ; -__p += '\n
      \n \n '; - ctx.files.forEach(function(file) { ; -__p += '\n
    • \n
      \n
      \n '; - if (ctx.component.uploadOnly) { ; -__p += '\n ' + -((__t = (file.originalName || file.name)) == null ? '' : __t) + -'\n '; - } else { ; -__p += '\n \n ' + -((__t = (ctx.t('Press to open '))) == null ? '' : __t) + -'' + -((__t = (file.originalName || file.name)) == null ? '' : __t) + -'\n \n '; - } ; -__p += '\n
      \n
      ' + -((__t = (ctx.fileSize(file.size))) == null ? '' : __t) + -'
      \n '; - if (ctx.self.hasTypes && !ctx.disabled) { ; -__p += '\n
      \n \n
      \n '; - } ; -__p += '\n '; - if (ctx.self.hasTypes && ctx.disabled) { ; -__p += '\n
      ' + -((__t = (file.fileType)) == null ? '' : __t) + -'
      \n '; - } ; -__p += '\n '; - if (!ctx.disabled) { ; -__p += '\n
      \n '; - } ; -__p += '\n
      \n
    • \n '; - }) ; -__p += '\n '; - ctx.filesToDelete.forEach(function(file) { ; -__p += '\n
    • \n
      \n
      \n
      ' + -((__t = (file.originalName || file.name)) == null ? '' : __t) + -'
      \n
      ' + -((__t = (ctx.t(file.message))) == null ? '' : __t) + -'
      \n
      \n
      ' + -((__t = (ctx.fileSize(file.size))) == null ? '' : __t) + -'
      \n '; - if (ctx.self.hasTypes) { ; -__p += '\n
      \n \n
      \n '; - } ; -__p += '\n '; - if (!ctx.isSyncing && file.status !== 'success') { ; -__p += '\n
      \n '; - } ; -__p += '\n
      \n
    • \n '; - }) ; -__p += '\n '; - ctx.filesToUpload.forEach(function(file) { ; -__p += '\n
    • \n
      \n
      \n
      ' + -((__t = (file.originalName || file.name)) == null ? '' : __t) + -'
      \n '; - if (file.status === 'progress') { ; -__p += '\n
      \n
      \n ' + -((__t = (file.progress)) == null ? '' : __t) + -'% ' + -((__t = (ctx.t('Complete'))) == null ? '' : __t) + -'\n
      \n
      \n '; - } else { ; -__p += '\n
      ' + -((__t = (ctx.t(file.message))) == null ? '' : __t) + -'
      \n '; - } ; -__p += '\n
      \n
      ' + -((__t = (ctx.fileSize(file.size))) == null ? '' : __t) + -'
      \n '; - if (ctx.self.hasTypes) { ; -__p += '\n
      \n \n
      \n '; - } ; -__p += '\n '; - if (file.status === 'progress') { ; -__p += '\n
      \n '; - } else if (!ctx.isSyncing && file.status !== 'success') { ; -__p += '\n
      \n '; - } ; -__p += '\n
      \n
    • \n '; - }) ; -__p += '\n
    \n'; - } else { ; -__p += '\n
    \n '; - ctx.files.forEach(function(file) { ; -__p += '\n
    \n \n ' +
-((__t = (file.originalName || file.name)) == null ? '' : __t) +
-'\n '; - if (!ctx.disabled) { ; -__p += '\n \n '; - } ; -__p += '\n \n
    \n '; - }) ; -__p += '\n '; - ctx.filesToUpload.forEach(function(file) { ; -__p += '\n '; - if (file.status === 'progress') { ; -__p += '\n
    ' + -((__t = (ctx.fileSize(file.size))) == null ? '' : __t) + -'
    \n
    \n
    \n ' + -((__t = (file.progress)) == null ? '' : __t) + -'% ' + -((__t = (ctx.t('Complete'))) == null ? '' : __t) + -'\n
    \n
    \n '; - } else { ; -__p += '\n
    ' + -((__t = (ctx.t(file.message))) == null ? '' : __t) + -'
    \n '; - } ; -__p += '\n '; - }) ; -__p += '\n
    \n'; - } ; -__p += '\n'; - if (!ctx.disabled && (ctx.component.multiple || !ctx.files.length)) { ; -__p += '\n '; - if (ctx.self.useWebViewCamera) { ; -__p += '\n
    \n \n \n
    \n '; - } else if (!ctx.self.cameraMode) { ; -__p += '\n \n '; - } else { ; -__p += '\n
    \n \n
    \n \n \n '; - } ; -__p += '\n'; - } ; -__p += '\n'; - if (!ctx.component.storage || ctx.support.hasWarning) { ; -__p += '\n
    \n '; - if (!ctx.component.storage) { ; -__p += '\n

    ' + -((__t = (ctx.t('No storage has been set for this field. File uploads are disabled until storage is set up.'))) == null ? '' : __t) + -'

    \n '; - } ; -__p += '\n '; - if (!ctx.support.filereader) { ; -__p += '\n

    ' + -((__t = (ctx.t('File API & FileReader API not supported.'))) == null ? '' : __t) + -'

    \n '; - } ; -__p += '\n '; - if (!ctx.support.formdata) { ; -__p += '\n

    ' + -((__t = (ctx.t("XHR2's FormData is not supported."))) == null ? '' : __t) + -'

    \n '; - } ; -__p += '\n '; - if (!ctx.support.progress) { ; -__p += '\n

    ' + -((__t = (ctx.t("XHR2's upload progress isn't supported."))) == null ? '' : __t) + -'

    \n '; - } ; -__p += '\n
    \n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/file/index.d.ts b/lib/mjs/templates/bootstrap4/file/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/file/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/file/index.js b/lib/mjs/templates/bootstrap4/file/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/file/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/grid/html.ejs.js b/lib/mjs/templates/bootstrap4/grid/html.ejs.js deleted file mode 100644 index 32d0acdb7..000000000 --- a/lib/mjs/templates/bootstrap4/grid/html.ejs.js +++ /dev/null @@ -1,66 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \r\n
    \r\n \r\n \r\n \r\n
    \r\n '; - if (ctx.component.enableRowSelect) { ; -__p += '\r\n
    \r\n ' + -((__t = (ctx.selectedRows)) == null ? '' : __t) + -' selected\r\n
    \r\n '; - } ; -__p += '\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n \r\n \r\n \r\n '; - if (!ctx.component.components.length) { ; -__p += '\r\n \r\n '; - } ; -__p += '\r\n '; - if (ctx.component.enableRowSelect) { ; -__p += '\r\n \r\n '; - } ; -__p += '\r\n '; - ctx.component.components.forEach(function(comp, i) { ; -__p += '\r\n '; - if (comp.show) { ; -__p += '\r\n \r\n '; - } ; -__p += '\r\n '; - }); ; -__p += '\r\n '; - if ((ctx.component.showEditBtn || ctx.component.showDeleteBtn || ctx.component.showDeleteAllBtn) - && ctx.data.length - && !ctx.options.pdf) { ; -__p += '\r\n \r\n '; - } ; -__p += '\r\n \r\n \r\n \r\n
    No components have been set up to display in the Data Table. "Table View" must be checked for components to render.\r\n \r\n \r\n ' + -((__t = ( comp.label || comp.key )) == null ? '' : __t) + -'\r\n '; - if (ctx.options.sortable && comp.sortable) { ; -__p += '\r\n \r\n ' + -((__t = ( ctx.component.sort.isAsc ? '↑' : '↓' )) == null ? '' : __t) + -'\r\n \r\n '; - } ; -__p += '\r\n '; - if (!ctx.options.hideMenu) { ; -__p += '\r\n \r\n \r\n \r\n '; - } ; -__p += '\r\n \r\n
    \r\n Actions\r\n '; - if (ctx.component.showDeleteAllBtn && ctx.data.length) { ; -__p += '\r\n \r\n '; - } ; -__p += '\r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n '; - if (ctx.component.showAddBtn && !ctx.options.pdf) { ; -__p += '\r\n
    +
    \r\n '; - } ; -__p += '\r\n
    \r\n
    \r\n
    '; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/grid/index.d.ts b/lib/mjs/templates/bootstrap4/grid/index.d.ts deleted file mode 100644 index abb6036cf..000000000 --- a/lib/mjs/templates/bootstrap4/grid/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - html: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/grid/index.js b/lib/mjs/templates/bootstrap4/grid/index.js deleted file mode 100644 index 725e812f0..000000000 --- a/lib/mjs/templates/bootstrap4/grid/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import html from './html.ejs'; -export default { html }; diff --git a/lib/mjs/templates/bootstrap4/html/form.ejs.js b/lib/mjs/templates/bootstrap4/html/form.ejs.js deleted file mode 100644 index 4bf1240a8..000000000 --- a/lib/mjs/templates/bootstrap4/html/form.ejs.js +++ /dev/null @@ -1,25 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '<' + -((__t = (ctx.tag)) == null ? '' : __t) + -' class="formio-component-htmlelement ' + -((__t = ( ctx.component.className )) == null ? '' : __t) + -'" ref="html"\n '; - ctx.attrs.forEach(function(attr) { ; -__p += '\n ' + -((__t = (attr.attr)) == null ? '' : __t) + -'="' + -((__t = (attr.value)) == null ? '' : __t) + -'"\n '; - }) ; -__p += '\n>' + -((__t = ( ctx.builder ? ctx.content : ctx.t(ctx.content) )) == null ? '' : __t); - if (!ctx.singleTags || ctx.singleTags.indexOf(ctx.tag) === -1) { ; -__p += ''; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/html/index.d.ts b/lib/mjs/templates/bootstrap4/html/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/html/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/html/index.js b/lib/mjs/templates/bootstrap4/html/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/html/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/icon/form.ejs.js b/lib/mjs/templates/bootstrap4/icon/form.ejs.js deleted file mode 100644 index ed482f913..000000000 --- a/lib/mjs/templates/bootstrap4/icon/form.ejs.js +++ /dev/null @@ -1,13 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '' + -((__t = (ctx.content)) == null ? '' : __t) + -'\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/icon/index.d.ts b/lib/mjs/templates/bootstrap4/icon/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/icon/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/icon/index.js b/lib/mjs/templates/bootstrap4/icon/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/icon/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/iconClass.d.ts b/lib/mjs/templates/bootstrap4/iconClass.d.ts deleted file mode 100644 index 2525836d8..000000000 --- a/lib/mjs/templates/bootstrap4/iconClass.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -declare const _default: (iconset: any, name: any, spinning: any) => string; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/iconClass.js b/lib/mjs/templates/bootstrap4/iconClass.js deleted file mode 100644 index e17322ab9..000000000 --- a/lib/mjs/templates/bootstrap4/iconClass.js +++ /dev/null @@ -1,38 +0,0 @@ -export default (iconset, name, spinning) => { - if (iconset === 'fa') { - switch (name) { - case 'save': - name = 'download'; - break; - case 'zoom-in': - name = 'search-plus'; - break; - case 'zoom-out': - name = 'search-minus'; - break; - case 'question-sign': - name = 'question-circle'; - break; - case 'remove-circle': - case 'circle-xmark': - name = 'times-circle-o'; - break; - case 'new-window': - name = 'window-restore'; - break; - case 'move': - name = 'arrows'; - break; - case 'time': - name = 'clock-o'; - break; - case 'ok-sign': - name = 'check-circle'; - break; - case 'remove-sign': - name = 'times-circle'; - break; - } - } - return spinning ? `${iconset} ${iconset}-${name} ${iconset}-spin` : `${iconset} ${iconset}-${name}`; -}; diff --git a/lib/mjs/templates/bootstrap4/index.d.ts b/lib/mjs/templates/bootstrap4/index.d.ts deleted file mode 100644 index f31000a12..000000000 --- a/lib/mjs/templates/bootstrap4/index.d.ts +++ /dev/null @@ -1,241 +0,0 @@ -declare const _default: { - webform: { - form: string; - builder: string; - }; - well: { - form: string; - }; - wizard: { - form: string; - builder: string; - }; - wizardHeader: { - form: string; - }; - wizardHeaderClassic: { - form: string; - }; - wizardHeaderVertical: { - form: string; - }; - wizardNav: { - form: string; - }; - errorsList: { - form: string; - }; - alert: { - form: string; - }; - grid: { - html: string; - }; - pagination: { - html: string; - }; - columnMenu: { - html: string; - }; - tbody: { - html: string; - }; - paginationBottom: { - html: string; - }; - treeView: { - form: string; - }; - treeEdit: { - form: string; - }; - transform(type: any, text: any): any; - defaultIconset: string; - iconClass: (iconset: any, name: any, spinning: any) => string; - cssClasses: { - 'border-default': string; - 'formio-tab-panel-active': string; - 'formio-tab-link-active': string; - 'formio-tab-link-container-active': string; - 'formio-form-error': string; - 'formio-form-alert': string; - 'formio-label-error': string; - 'formio-input-error': string; - 'formio-alert-danger': string; - 'formio-alert-success': string; - 'formio-alert-warning': string; - 'formio-modal-cancel-button': string; - 'formio-modal-confirm-button': string; - }; - address: { - form: string; - html: string; - }; - builder: { - form: string; - }; - builderComponent: { - form: string; - }; - builderComponents: { - form: string; - }; - builderEditForm: { - form: string; - }; - builderPlaceholder: { - form: string; - }; - builderSidebar: { - form: string; - }; - builderSidebarGroup: { - form: string; - }; - builderWizard: { - form: string; - }; - button: { - form: string; - html: string; - }; - checkbox: { - form: string; - html: string; - }; - columns: { - form: string; - }; - component: { - form: string; - }; - componentModal: { - form: string; - }; - components: { - form: string; - }; - tableComponents: { - form: string; - }; - container: { - form: string; - }; - datagrid: { - form: string; - html: string; - }; - day: { - form: string; - }; - dialog: { - form: string; - }; - editgrid: { - form: string; - html: string; - }; - editgridTable: { - form: string; - html: string; - }; - field: { - form: string; - align: string; - }; - fieldset: { - form: string; - }; - file: { - form: string; - }; - html: { - form: string; - }; - icon: { - form: string; - }; - input: { - form: string; - html: string; - }; - label: { - form: string; - }; - loader: { - form: string; - }; - loading: { - form: string; - }; - map: { - form: string; - }; - message: { - form: string; - }; - modaledit: { - form: string; - }; - modaldialog: { - form: string; - }; - modalPreview: { - form: string; - }; - multipleMasksInput: { - form: string; - }; - multiValueRow: { - form: string; - }; - multiValueTable: { - form: string; - }; - panel: { - form: string; - }; - pdf: { - form: string; - }; - pdfBuilder: { - form: string; - }; - pdfBuilderUpload: { - form: string; - }; - radio: { - form: string; - html: string; - }; - resourceAdd: { - form: string; - }; - select: { - form: string; - html: string; - }; - selectOption: { - form: string; - html: string; - }; - signature: { - form: string; - html: string; - }; - survey: { - form: string; - html: string; - }; - tab: { - flat: string; - form: string; - }; - table: { - form: string; - }; - tree: { - form: string; - }; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/index.js b/lib/mjs/templates/bootstrap4/index.js deleted file mode 100644 index a7b4879a0..000000000 --- a/lib/mjs/templates/bootstrap4/index.js +++ /dev/null @@ -1,151 +0,0 @@ -import address from './address'; -import builder from './builder'; -import builderComponent from './builderComponent'; -import builderComponents from './builderComponents'; -import builderEditForm from './builderEditForm'; -import builderPlaceholder from './builderPlaceholder'; -import builderSidebar from './builderSidebar'; -import builderSidebarGroup from './builderSidebarGroup'; -import builderWizard from './builderWizard'; -import button from './button'; -import checkbox from './checkbox'; -import columns from './columns'; -import component from './component'; -import componentModal from './componentModal'; -import components from './components'; -import tableComponents from './tableComponents'; -import container from './container'; -import datagrid from './datagrid'; -import day from './day'; -import dialog from './dialog'; -import editgrid from './editgrid'; -import editgridTable from './editgridTable'; -import field from './field'; -import fieldset from './fieldset'; -import file from './file'; -import html from './html'; -import icon from './icon'; -import iconClass from './iconClass'; -import input from './input'; -import label from './label'; -import loader from './loader'; -import loading from './loading'; -import map from './map'; -import message from './message'; -import modaldialog from './modaldialog'; -import modaledit from './modaledit'; -import modalPreview from './modalPreview'; -import multipleMasksInput from './multipleMasksInput'; -import multiValueRow from './multiValueRow'; -import multiValueTable from './multiValueTable'; -import panel from './panel'; -import pdf from './pdf'; -import pdfBuilder from './pdfBuilder'; -import pdfBuilderUpload from './pdfBuilderUpload'; -import radio from './radio'; -import resourceAdd from './resourceAdd'; -import select from './select'; -import selectOption from './selectOption'; -import signature from './signature'; -import survey from './survey'; -import tab from './tab'; -import table from './table'; -import tree from './tree'; -import treePartials from './tree/partials'; -import webform from './webform'; -import well from './well'; -import wizard from './wizard'; -import wizardHeader from './wizardHeader'; -import wizardHeaderClassic from './wizardHeaderClassic'; -import wizardHeaderVertical from './wizardHeaderVertical'; -import wizardNav from './wizardNav'; -import cssClasses from './cssClasses'; -import errorsList from './errorsList'; -import alert from './alert'; -import grid from './grid'; -import pagination from './pagination'; -import columnMenu from './column-menu'; -import tbody from './tbody'; -import paginationBottom from './pagination-bottom'; -export default { - transform(type, text) { - if (!text) { - return text; - } - switch (type) { - case 'class': - return this.cssClasses.hasOwnProperty(text.toString()) ? this.cssClasses[text.toString()] : text; - } - return text; - }, - defaultIconset: 'fa', - iconClass, - cssClasses, - address, - builder, - builderComponent, - builderComponents, - builderEditForm, - builderPlaceholder, - builderSidebar, - builderSidebarGroup, - builderWizard, - button, - checkbox, - columns, - component, - componentModal, - components, - tableComponents, - container, - datagrid, - day, - dialog, - editgrid, - editgridTable, - field, - fieldset, - file, - html, - icon, - input, - label, - loader, - loading, - map, - message, - modaledit, - modaldialog, - modalPreview, - multipleMasksInput, - multiValueRow, - multiValueTable, - panel, - pdf, - pdfBuilder, - pdfBuilderUpload, - radio, - resourceAdd, - select, - selectOption, - signature, - survey, - tab, - table, - tree, - ...treePartials, - webform, - well, - wizard, - wizardHeader, - wizardHeaderClassic, - wizardHeaderVertical, - wizardNav, - errorsList, - alert, - grid, - pagination, - columnMenu, - tbody, - paginationBottom -}; diff --git a/lib/mjs/templates/bootstrap4/input/form.ejs.js b/lib/mjs/templates/bootstrap4/input/form.ejs.js deleted file mode 100644 index b6b57294e..000000000 --- a/lib/mjs/templates/bootstrap4/input/form.ejs.js +++ /dev/null @@ -1,108 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } - - if (ctx.prefix || ctx.suffix) { ; -__p += '\n
    \n '; - } ; -__p += '\n '; - if (ctx.prefix) { ; -__p += '\n
    \n \n '; - if(ctx.prefix instanceof HTMLElement){ ; -__p += '\n ' + -((__t = ( ctx.t(ctx.prefix.outerHTML, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - } else{ ; -__p += '\n ' + -((__t = ( ctx.t(ctx.prefix, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - } ; -__p += '\n \n
    \n '; - } ; -__p += '\n '; - if (!ctx.component.editor && !ctx.component.wysiwyg) { ; -__p += '\n <' + -((__t = (ctx.input.type)) == null ? '' : __t) + -'\n ref="' + -((__t = (ctx.input.ref ? ctx.input.ref : 'input')) == null ? '' : __t) + -'"\n '; - for (var attr in ctx.input.attr) { ; -__p += '\n ' + -((__t = (attr)) == null ? '' : __t) + -'="' + -((__t = (ctx.input.attr[attr])) == null ? '' : __t) + -'"\n '; - } ; -__p += '\n id="' + -((__t = (ctx.instance.id)) == null ? '' : __t) + -'-' + -((__t = (ctx.component.key)) == null ? '' : __t) + -'"\n aria-labelledby="l-' + -((__t = (ctx.instance.id)) == null ? '' : __t) + -'-' + -((__t = (ctx.component.key)) == null ? '' : __t) + -' '; - if (ctx.component.description) { ; -__p += 'd-' + -((__t = (ctx.instance.id)) == null ? '' : __t) + -'-' + -((__t = (ctx.component.key)) == null ? '' : __t); - } ; -__p += '"\n aria-required="' + -((__t = (ctx.input.ref === 'input' || !ctx.input.ref ? ctx.component.validate.required : - ctx.component.fields && ctx.component.fields[ctx.input.ref] && ctx.component.fields[ctx.input.ref].required || false)) == null ? '' : __t) + -'"\n >' + -((__t = (ctx.input.content)) == null ? '' : __t) + -'\n '; - if (ctx.hasValueMaskInput) { ; -__p += '\n \n '; - } ; -__p += '\n'; - } ; -__p += '\n'; - if (ctx.component.editor || ctx.component.wysiwyg) { ; -__p += '\n
    \n'; - } ; -__p += '\n'; - if (ctx.component.type === 'datetime') { ; -__p += '\n\n'; - } ; -__p += '\n'; - if (ctx.suffix) { ; -__p += '\n
    \n \n '; - if(ctx.suffix instanceof HTMLElement){ ; -__p += '\n ' + -((__t = ( ctx.t(ctx.suffix.outerHTML, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - } else{ ; -__p += '\n ' + -((__t = ( ctx.t(ctx.suffix, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - } ; -__p += '\n \n
    \n'; - } ; -__p += '\n'; - if (ctx.prefix || ctx.suffix) { ; -__p += '\n
    \n'; - } ; -__p += '\n'; - if (ctx.component.showCharCount || ctx.component.showWordCount) { ; -__p += '\n
    \n '; - if (ctx.component.showCharCount) { ; -__p += '\n \n '; - } ; -__p += '\n '; - if (ctx.component.showWordCount) { ; -__p += '\n \n '; - } ; -__p += '\n
    \n'; - } ; -__p += '\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/input/html.ejs.js b/lib/mjs/templates/bootstrap4/input/html.ejs.js deleted file mode 100644 index 635d2bc51..000000000 --- a/lib/mjs/templates/bootstrap4/input/html.ejs.js +++ /dev/null @@ -1,13 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    '; - if (ctx.value) { ; -__p += -((__t = (ctx.value)) == null ? '' : __t); - } else { ; -__p += '-'; - } ; -__p += '
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/input/index.d.ts b/lib/mjs/templates/bootstrap4/input/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/mjs/templates/bootstrap4/input/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/input/index.js b/lib/mjs/templates/bootstrap4/input/index.js deleted file mode 100644 index d60b4b87e..000000000 --- a/lib/mjs/templates/bootstrap4/input/index.js +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; -export default { form, html }; diff --git a/lib/mjs/templates/bootstrap4/label/form.ejs.js b/lib/mjs/templates/bootstrap4/label/form.ejs.js deleted file mode 100644 index d72bb0dca..000000000 --- a/lib/mjs/templates/bootstrap4/label/form.ejs.js +++ /dev/null @@ -1,32 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n ' + -((__t = ( ctx.t(ctx.component.label, { _userInput: true }) )) == null ? '' : __t) + -'\n '; - if (ctx.component.type === 'number' || ctx.component.type === 'phoneNumber' || ctx.component.type === 'currency') { ; -__p += '\n , ' + -((__t = (ctx.t('numeric only'))) == null ? '' : __t) + -',\n '; - } ; -__p += '\n '; - if (ctx.component.tooltip) { ; -__p += '\n \n '; - } ; -__p += '\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/label/index.d.ts b/lib/mjs/templates/bootstrap4/label/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/label/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/label/index.js b/lib/mjs/templates/bootstrap4/label/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/label/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/loader/form.ejs.js b/lib/mjs/templates/bootstrap4/loader/form.ejs.js deleted file mode 100644 index a32e1e1dc..000000000 --- a/lib/mjs/templates/bootstrap4/loader/form.ejs.js +++ /dev/null @@ -1,5 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '
    \n
    \n
    \n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/loader/index.d.ts b/lib/mjs/templates/bootstrap4/loader/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/loader/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/loader/index.js b/lib/mjs/templates/bootstrap4/loader/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/loader/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/loading/form.ejs.js b/lib/mjs/templates/bootstrap4/loading/form.ejs.js deleted file mode 100644 index c65d4b1ed..000000000 --- a/lib/mjs/templates/bootstrap4/loading/form.ejs.js +++ /dev/null @@ -1,5 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += 'Loading...\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/loading/index.d.ts b/lib/mjs/templates/bootstrap4/loading/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/loading/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/loading/index.js b/lib/mjs/templates/bootstrap4/loading/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/loading/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/map/form.ejs.js b/lib/mjs/templates/bootstrap4/map/form.ejs.js deleted file mode 100644 index 01ea19318..000000000 --- a/lib/mjs/templates/bootstrap4/map/form.ejs.js +++ /dev/null @@ -1,7 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/map/index.d.ts b/lib/mjs/templates/bootstrap4/map/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/map/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/map/index.js b/lib/mjs/templates/bootstrap4/map/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/map/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/message/form.ejs.js b/lib/mjs/templates/bootstrap4/message/form.ejs.js deleted file mode 100644 index f8ec4ea83..000000000 --- a/lib/mjs/templates/bootstrap4/message/form.ejs.js +++ /dev/null @@ -1,13 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '
    ' + -((__t = (ctx.message)) == null ? '' : __t) + -'
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/message/index.d.ts b/lib/mjs/templates/bootstrap4/message/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/message/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/message/index.js b/lib/mjs/templates/bootstrap4/message/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/message/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/modalPreview/form.ejs.js b/lib/mjs/templates/bootstrap4/modalPreview/form.ejs.js deleted file mode 100644 index bd685188f..000000000 --- a/lib/mjs/templates/bootstrap4/modalPreview/form.ejs.js +++ /dev/null @@ -1,21 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '
    \n\n\n ' + -((__t = ( ctx.previewText )) == null ? '' : __t) + -'\n\n
    \n ' + -((__t = ( ctx.messages )) == null ? '' : __t) + -'\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/modalPreview/index.d.ts b/lib/mjs/templates/bootstrap4/modalPreview/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/modalPreview/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/modalPreview/index.js b/lib/mjs/templates/bootstrap4/modalPreview/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/modalPreview/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/modaldialog/form.ejs.js b/lib/mjs/templates/bootstrap4/modaldialog/form.ejs.js deleted file mode 100644 index 7571a7151..000000000 --- a/lib/mjs/templates/bootstrap4/modaldialog/form.ejs.js +++ /dev/null @@ -1,7 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '
    \n
    \n
    \n \n ' + -((__t = (ctx.t('Close'))) == null ? '' : __t) + -'\n \n
    \n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/modaldialog/index.d.ts b/lib/mjs/templates/bootstrap4/modaldialog/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/modaldialog/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/modaldialog/index.js b/lib/mjs/templates/bootstrap4/modaldialog/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/modaldialog/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/modaledit/form.ejs.js b/lib/mjs/templates/bootstrap4/modaledit/form.ejs.js deleted file mode 100644 index 322eb2b18..000000000 --- a/lib/mjs/templates/bootstrap4/modaledit/form.ejs.js +++ /dev/null @@ -1,9 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '
    \n \n \n \n
    ' + -((__t = (ctx.content)) == null ? '' : __t) + -'
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/modaledit/index.d.ts b/lib/mjs/templates/bootstrap4/modaledit/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/modaledit/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/modaledit/index.js b/lib/mjs/templates/bootstrap4/modaledit/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/modaledit/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/multiValueRow/form.ejs.js b/lib/mjs/templates/bootstrap4/multiValueRow/form.ejs.js deleted file mode 100644 index 2e5420abc..000000000 --- a/lib/mjs/templates/bootstrap4/multiValueRow/form.ejs.js +++ /dev/null @@ -1,14 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n \n ' + -((__t = (ctx.element)) == null ? '' : __t) + -'\n \n '; - if (!ctx.disabled) { ; -__p += '\n \n \n \n '; - } ; -__p += '\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/multiValueRow/index.d.ts b/lib/mjs/templates/bootstrap4/multiValueRow/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/multiValueRow/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/multiValueRow/index.js b/lib/mjs/templates/bootstrap4/multiValueRow/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/multiValueRow/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/multiValueTable/form.ejs.js b/lib/mjs/templates/bootstrap4/multiValueTable/form.ejs.js deleted file mode 100644 index bd5535127..000000000 --- a/lib/mjs/templates/bootstrap4/multiValueTable/form.ejs.js +++ /dev/null @@ -1,16 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n \n ' + -((__t = (ctx.rows)) == null ? '' : __t) + -'\n '; - if (!ctx.disabled) { ; -__p += '\n \n \n \n '; - } ; -__p += '\n \n
    \n \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/multiValueTable/index.d.ts b/lib/mjs/templates/bootstrap4/multiValueTable/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/multiValueTable/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/multiValueTable/index.js b/lib/mjs/templates/bootstrap4/multiValueTable/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/multiValueTable/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/multipleMasksInput/form.ejs.js b/lib/mjs/templates/bootstrap4/multipleMasksInput/form.ejs.js deleted file mode 100644 index fc0a4aa80..000000000 --- a/lib/mjs/templates/bootstrap4/multipleMasksInput/form.ejs.js +++ /dev/null @@ -1,30 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n ' + -((__t = (option.label)) == null ? '' : __t) + -'\n '; - }); ; -__p += '\n \n \n
    \n
    \n Items per page:\n
    \n \n
    \n \n ' + -((__t = ( ctx.itemsCount )) == null ? '' : __t) + -'\n \n \n \n \n \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/pagination/index.d.ts b/lib/mjs/templates/bootstrap4/pagination/index.d.ts deleted file mode 100644 index abb6036cf..000000000 --- a/lib/mjs/templates/bootstrap4/pagination/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - html: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/pagination/index.js b/lib/mjs/templates/bootstrap4/pagination/index.js deleted file mode 100644 index 725e812f0..000000000 --- a/lib/mjs/templates/bootstrap4/pagination/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import html from './html.ejs'; -export default { html }; diff --git a/lib/mjs/templates/bootstrap4/panel/form.ejs.js b/lib/mjs/templates/bootstrap4/panel/form.ejs.js deleted file mode 100644 index 6e17adc4f..000000000 --- a/lib/mjs/templates/bootstrap4/panel/form.ejs.js +++ /dev/null @@ -1,58 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - if (!ctx.component.hideLabel || ctx.builder || ctx.component.collapsible || ctx.component.tooltip) { ; -__p += '\n
    \n \n '; - if (ctx.component.collapsible) { ; -__p += '\n \n '; - } ; -__p += '\n '; - if (!ctx.component.hideLabel || ctx.builder) { ; -__p += '\n ' + -((__t = (ctx.t(ctx.component.title, { _userInput: true }))) == null ? '' : __t) + -'\n '; - } ; -__p += '\n '; - if (ctx.component.tooltip) { ; -__p += '\n \n '; - } ; -__p += '\n \n
    \n '; - } ; -__p += '\n '; - if (!ctx.collapsed || ctx.builder) { ; -__p += '\n
    \n ' + -((__t = (ctx.children)) == null ? '' : __t) + -'\n
    \n '; - } ; -__p += '\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/panel/index.d.ts b/lib/mjs/templates/bootstrap4/panel/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/panel/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/panel/index.js b/lib/mjs/templates/bootstrap4/panel/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/panel/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/pdf/form.ejs.js b/lib/mjs/templates/bootstrap4/pdf/form.ejs.js deleted file mode 100644 index c9559cba3..000000000 --- a/lib/mjs/templates/bootstrap4/pdf/form.ejs.js +++ /dev/null @@ -1,13 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '
    \n \n \n \n \n \n \n
    \n ' + -((__t = ( ctx.submitButton )) == null ? '' : __t) + -'\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/pdf/index.d.ts b/lib/mjs/templates/bootstrap4/pdf/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/pdf/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/pdf/index.js b/lib/mjs/templates/bootstrap4/pdf/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/pdf/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/pdfBuilder/form.ejs.js b/lib/mjs/templates/bootstrap4/pdfBuilder/form.ejs.js deleted file mode 100644 index 4c2738ae1..000000000 --- a/lib/mjs/templates/bootstrap4/pdfBuilder/form.ejs.js +++ /dev/null @@ -1,9 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '
    \n
    \n ' + -((__t = (ctx.sidebar)) == null ? '' : __t) + -'\n
    \n
    \n
    \n ' + -((__t = (ctx.form)) == null ? '' : __t) + -'\n
    \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/pdfBuilder/index.d.ts b/lib/mjs/templates/bootstrap4/pdfBuilder/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/pdfBuilder/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/pdfBuilder/index.js b/lib/mjs/templates/bootstrap4/pdfBuilder/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/pdfBuilder/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/pdfBuilderUpload/form.ejs.js b/lib/mjs/templates/bootstrap4/pdfBuilderUpload/form.ejs.js deleted file mode 100644 index daf3510bb..000000000 --- a/lib/mjs/templates/bootstrap4/pdfBuilderUpload/form.ejs.js +++ /dev/null @@ -1,13 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '
    \n

    ' + -((__t = (ctx.t('Upload a PDF File'))) == null ? '' : __t) + -'

    \n \n
    \n \n ' + -((__t = (ctx.t('Drop pdf to start, or'))) == null ? '' : __t) + -' ' + -((__t = (ctx.t('browse'))) == null ? '' : __t) + -'\n \n \n
    \n
    \n\n
    \n
    \n\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/pdfBuilderUpload/index.d.ts b/lib/mjs/templates/bootstrap4/pdfBuilderUpload/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/pdfBuilderUpload/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/pdfBuilderUpload/index.js b/lib/mjs/templates/bootstrap4/pdfBuilderUpload/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/pdfBuilderUpload/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/radio/form.ejs.js b/lib/mjs/templates/bootstrap4/radio/form.ejs.js deleted file mode 100644 index 2986eff24..000000000 --- a/lib/mjs/templates/bootstrap4/radio/form.ejs.js +++ /dev/null @@ -1,84 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n \n \n '; - }) ; -__p += '\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/radio/html.ejs.js b/lib/mjs/templates/bootstrap4/radio/html.ejs.js deleted file mode 100644 index 27168cc78..000000000 --- a/lib/mjs/templates/bootstrap4/radio/html.ejs.js +++ /dev/null @@ -1,10 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; - var filtered = ctx.values.filter(function(item) {return ctx.value === item.value || (typeof ctx.value === 'object' && ctx.value.hasOwnProperty(item.value) && ctx.value[item.value])}).map(function(item) { return ctx.t(item.label, { _userInput: true })}).join(', ') ; -__p += '\n ' + -((__t = ( filtered )) == null ? '' : __t) + -'\n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/radio/index.d.ts b/lib/mjs/templates/bootstrap4/radio/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/mjs/templates/bootstrap4/radio/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/radio/index.js b/lib/mjs/templates/bootstrap4/radio/index.js deleted file mode 100644 index d60b4b87e..000000000 --- a/lib/mjs/templates/bootstrap4/radio/index.js +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; -export default { form, html }; diff --git a/lib/mjs/templates/bootstrap4/resourceAdd/form.ejs.js b/lib/mjs/templates/bootstrap4/resourceAdd/form.ejs.js deleted file mode 100644 index 54bc43d00..000000000 --- a/lib/mjs/templates/bootstrap4/resourceAdd/form.ejs.js +++ /dev/null @@ -1,11 +0,0 @@ -export default function(ctx) { -var __t, __p = ''; -__p += '\n \n \n \n \n \n \n \n \n
    \n ' + -((__t = (ctx.element)) == null ? '' : __t) + -'\n
    \n \n
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/resourceAdd/index.d.ts b/lib/mjs/templates/bootstrap4/resourceAdd/index.d.ts deleted file mode 100644 index dcf19402d..000000000 --- a/lib/mjs/templates/bootstrap4/resourceAdd/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare const _default: { - form: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/resourceAdd/index.js b/lib/mjs/templates/bootstrap4/resourceAdd/index.js deleted file mode 100644 index 0890c1f22..000000000 --- a/lib/mjs/templates/bootstrap4/resourceAdd/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/lib/mjs/templates/bootstrap4/select/form.ejs.js b/lib/mjs/templates/bootstrap4/select/form.ejs.js deleted file mode 100644 index a04665dcf..000000000 --- a/lib/mjs/templates/bootstrap4/select/form.ejs.js +++ /dev/null @@ -1,46 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '' + -((__t = (ctx.selectOptions)) == null ? '' : __t) + -'\n\n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/select/html.ejs.js b/lib/mjs/templates/bootstrap4/select/html.ejs.js deleted file mode 100644 index 59b926d00..000000000 --- a/lib/mjs/templates/bootstrap4/select/html.ejs.js +++ /dev/null @@ -1,13 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '
    '; - if (ctx.value) { ; -__p += -((__t = ( ctx.self.itemValueForHTMLMode(ctx.value) )) == null ? '' : __t); - } else { ; -__p += '-'; - } ; -__p += '
    \n'; -return __p -} \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap4/select/index.d.ts b/lib/mjs/templates/bootstrap4/select/index.d.ts deleted file mode 100644 index bb4ca03d9..000000000 --- a/lib/mjs/templates/bootstrap4/select/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - form: string; - html: string; -}; -export default _default; diff --git a/lib/mjs/templates/bootstrap4/select/index.js b/lib/mjs/templates/bootstrap4/select/index.js deleted file mode 100644 index d60b4b87e..000000000 --- a/lib/mjs/templates/bootstrap4/select/index.js +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; -export default { form, html }; diff --git a/lib/mjs/templates/bootstrap4/selectOption/form.ejs.js b/lib/mjs/templates/bootstrap4/selectOption/form.ejs.js deleted file mode 100644 index f69594dd3..000000000 --- a/lib/mjs/templates/bootstrap4/selectOption/form.ejs.js +++ /dev/null @@ -1,20 +0,0 @@ -export default function(ctx) { -var __t, __p = '', __j = Array.prototype.join; -function print() { __p += __j.call(arguments, '') } -__p += '\n '; +'\r\n '; }); ; -__p += '\n \n \n \r\n \n '; +__p += '">\r\n '; if (ctx.component.collapsible) { ; -__p += '\n \n '; +' text-muted" data-title="Collapse Panel">\r\n '; } ; -__p += '\n '; - if (!ctx.component.hideLabel || ctx.builder) { ; -__p += '\n ' + +__p += '\r\n '; + if (!ctx.label.hidden || ctx.builder) { ; +__p += '\r\n ' + ((__t = (ctx.t(ctx.component.title, { _userInput: true }))) == null ? '' : __t) + -'\n '; +'\r\n '; } ; -__p += '\n '; +__p += '\r\n '; if (ctx.component.tooltip) { ; -__p += '\n \n '; +'">\r\n '; } ; -__p += '\n \n \n '; +__p += '\r\n \r\n \r\n '; } ; -__p += '\n '; +__p += '\r\n '; if (!ctx.collapsed || ctx.builder) { ; -__p += '\n
    \n ' + +'">\r\n ' + ((__t = (ctx.children)) == null ? '' : __t) + -'\n
    \n '; +'\r\n \r\n '; } ; -__p += '\n\n'; +__p += '\r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/pdf/form.ejs.js b/lib/mjs/templates/bootstrap5/pdf/form.ejs.js index c9559cba3..9263cd061 100644 --- a/lib/mjs/templates/bootstrap5/pdf/form.ejs.js +++ b/lib/mjs/templates/bootstrap5/pdf/form.ejs.js @@ -2,12 +2,12 @@ export default function(ctx) { var __t, __p = ''; __p += '
    \n \n \r\n \r\n \n \n \n \r\n \r\n \r\n \n \n
    \n ' + +'">
    \r\n
    \r\n
    \r\n ' + ((__t = ( ctx.submitButton )) == null ? '' : __t) + -'\n
    \n'; +'\r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/pdfBuilder/form.ejs.js b/lib/mjs/templates/bootstrap5/pdfBuilder/form.ejs.js index 4c2738ae1..9eec133de 100644 --- a/lib/mjs/templates/bootstrap5/pdfBuilder/form.ejs.js +++ b/lib/mjs/templates/bootstrap5/pdfBuilder/form.ejs.js @@ -1,9 +1,9 @@ export default function(ctx) { var __t, __p = ''; -__p += '
    \n
    \n ' + +__p += '
    \r\n
    \r\n ' + ((__t = (ctx.sidebar)) == null ? '' : __t) + -'\n
    \n
    \n
    \n ' + +'\r\n
    \r\n
    \r\n
    \r\n ' + ((__t = (ctx.form)) == null ? '' : __t) + -'\n
    \n
    \n'; +'\r\n
    \r\n
    \r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/pdfBuilderUpload/form.ejs.js b/lib/mjs/templates/bootstrap5/pdfBuilderUpload/form.ejs.js index daf3510bb..938adf4f9 100644 --- a/lib/mjs/templates/bootstrap5/pdfBuilderUpload/form.ejs.js +++ b/lib/mjs/templates/bootstrap5/pdfBuilderUpload/form.ejs.js @@ -1,13 +1,13 @@ export default function(ctx) { var __t, __p = ''; -__p += '
    \n

    ' + +__p += '
    \r\n

    ' + ((__t = (ctx.t('Upload a PDF File'))) == null ? '' : __t) + -'

    \n \n
    \n \n \r\n
    \r\n \r\n ' + ((__t = (ctx.t('Drop pdf to start, or'))) == null ? '' : __t) + ' ' + ((__t = (ctx.t('browse'))) == null ? '' : __t) + -'\n \n \n
    \n
    \n\n
    \n
    \n\n'; +'\r\n \r\n \r\n
    \r\n
    \r\n\r\n
    \r\n

    \r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/radio/form.ejs.js b/lib/mjs/templates/bootstrap5/radio/form.ejs.js index 44fd46053..f69faeda9 100644 --- a/lib/mjs/templates/bootstrap5/radio/form.ejs.js +++ b/lib/mjs/templates/bootstrap5/radio/form.ejs.js @@ -1,33 +1,33 @@ export default function(ctx) { var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } -__p += '\n '; +'" ref="wrapper">\r\n '; if (['left', 'top'].includes(ctx.component.optionsLabelPosition)) { ; -__p += '\n \n '; +'\r\n '; } ; -__p += '\n <' + +__p += '\r\n <' + ((__t = (ctx.input.type)) == null ? '' : __t) + -'\n ref="input"\n '; +'\r\n ref="input"\r\n '; for (var attr in ctx.input.attr) { ; -__p += '\n ' + +__p += '\r\n ' + ((__t = (attr)) == null ? '' : __t) + '="' + ((__t = (ctx.input.attr[attr])) == null ? '' : __t) + -'"\n '; +'"\r\n '; } ; -__p += '\n value="' + +__p += '\r\n value="' + ((__t = (item.value)) == null ? '' : __t) + -'"\n '; +'"\r\n '; if (ctx.value && (ctx.value === item.value || (typeof ctx.value === 'object' && ctx.value.hasOwnProperty(item.value) && ctx.value[item.value]))) { ; -__p += '\n checked=true\n '; +__p += '\r\n checked=true\r\n '; } ; -__p += '\n '; +__p += '\r\n '; if (item.disabled) { ; -__p += '\n disabled=true\n '; +__p += '\r\n disabled=true\r\n '; } ; -__p += '\n id="' + +__p += '\r\n id="' + ((__t = (ctx.instance.root && ctx.instance.root.id)) == null ? '' : __t) + '-' + ((__t = (ctx.id)) == null ? '' : __t) + @@ -69,11 +69,11 @@ __p += '\n id="' + ((__t = (ctx.row)) == null ? '' : __t) + '-' + ((__t = ((typeof item.value === 'object') ? item.value + '-' + index : item.value)) == null ? '' : __t) + -'"\n role="' + +'"\r\n role="' + ((__t = (ctx.component.type === 'selectboxes' ? 'checkbox' : 'radio')) == null ? '' : __t) + -'"\n >\n '; +'"\r\n >\r\n '; if (!ctx.component.optionsLabelPosition || ['right', 'bottom'].includes(ctx.component.optionsLabelPosition)) { ; -__p += '\n \n '; +'\r\n '; } ; -__p += '\n \n '; +__p += '\r\n \r\n '; }) ; -__p += '\n\n'; +__p += '\r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/radio/html.ejs.js b/lib/mjs/templates/bootstrap5/radio/html.ejs.js index 27168cc78..82661f314 100644 --- a/lib/mjs/templates/bootstrap5/radio/html.ejs.js +++ b/lib/mjs/templates/bootstrap5/radio/html.ejs.js @@ -1,10 +1,10 @@ export default function(ctx) { var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; +__p += '
    \r\n '; var filtered = ctx.values.filter(function(item) {return ctx.value === item.value || (typeof ctx.value === 'object' && ctx.value.hasOwnProperty(item.value) && ctx.value[item.value])}).map(function(item) { return ctx.t(item.label, { _userInput: true })}).join(', ') ; -__p += '\n ' + +__p += '\r\n ' + ((__t = ( filtered )) == null ? '' : __t) + -'\n
    \n'; +'\r\n
    \r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/resourceAdd/form.ejs.js b/lib/mjs/templates/bootstrap5/resourceAdd/form.ejs.js index 54bc43d00..4a94d4671 100644 --- a/lib/mjs/templates/bootstrap5/resourceAdd/form.ejs.js +++ b/lib/mjs/templates/bootstrap5/resourceAdd/form.ejs.js @@ -1,11 +1,11 @@ export default function(ctx) { var __t, __p = ''; -__p += '\n \n \n \r\n \r\n \r\n
    \n ' + +__p += '\r\n \r\n \r\n \n \n \n \n \n \n
    \r\n ' + ((__t = (ctx.element)) == null ? '' : __t) + -'\n
    \n \n
    \n'; +'\r\n \r\n
    \r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/select/form.ejs.js b/lib/mjs/templates/bootstrap5/select/form.ejs.js index a04665dcf..cc6faa80e 100644 --- a/lib/mjs/templates/bootstrap5/select/form.ejs.js +++ b/lib/mjs/templates/bootstrap5/select/form.ejs.js @@ -1,46 +1,46 @@ export default function(ctx) { var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } -__p += '' + +'"\r\n>' + ((__t = (ctx.selectOptions)) == null ? '' : __t) + -'\n\r\n\n'; +'"\r\n/>\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/select/html.ejs.js b/lib/mjs/templates/bootstrap5/select/html.ejs.js index 59b926d00..440dee64e 100644 --- a/lib/mjs/templates/bootstrap5/select/html.ejs.js +++ b/lib/mjs/templates/bootstrap5/select/html.ejs.js @@ -8,6 +8,6 @@ __p += } else { ; __p += '-'; } ; -__p += '\n'; +__p += '\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/selectOption/form.ejs.js b/lib/mjs/templates/bootstrap5/selectOption/form.ejs.js index f69594dd3..e9b589c40 100644 --- a/lib/mjs/templates/bootstrap5/selectOption/form.ejs.js +++ b/lib/mjs/templates/bootstrap5/selectOption/form.ejs.js @@ -3,18 +3,18 @@ var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } __p += '\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/selectOption/html.ejs.js b/lib/mjs/templates/bootstrap5/selectOption/html.ejs.js index 9841b7520..184620bba 100644 --- a/lib/mjs/templates/bootstrap5/selectOption/html.ejs.js +++ b/lib/mjs/templates/bootstrap5/selectOption/html.ejs.js @@ -6,6 +6,6 @@ function print() { __p += __j.call(arguments, '') } __p += ((__t = (ctx.t(ctx.option.label, { _userInput: true }))) == null ? '' : __t); } ; -__p += '\n'; +__p += '\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/signature/form.ejs.js b/lib/mjs/templates/bootstrap5/signature/form.ejs.js index 91711022c..26b14465a 100644 --- a/lib/mjs/templates/bootstrap5/signature/form.ejs.js +++ b/lib/mjs/templates/bootstrap5/signature/form.ejs.js @@ -3,28 +3,28 @@ var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } __p += ((__t = (ctx.element)) == null ? '' : __t) + -'\n\n \n \r\n \r\n \n \n \r\n \r\n \n '; +'" ref="canvas">\r\n '; if (ctx.required) { ; -__p += '\n \n '; +'">\r\n \r\n '; } ; -__p += '\n \n\n'; +__p += '\r\n \r\n\r\n'; if (ctx.component.footer) { ; -__p += '\n \r\n'; } ; -__p += '\n'; +__p += '\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/signature/html.ejs.js b/lib/mjs/templates/bootstrap5/signature/html.ejs.js index 82ca31add..dcd700e82 100644 --- a/lib/mjs/templates/bootstrap5/signature/html.ejs.js +++ b/lib/mjs/templates/bootstrap5/signature/html.ejs.js @@ -1,5 +1,5 @@ export default function(ctx) { var __t, __p = ''; -__p += '\n'; +__p += '\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/survey/form.ejs.js b/lib/mjs/templates/bootstrap5/survey/form.ejs.js index 7afac9512..0d280068a 100644 --- a/lib/mjs/templates/bootstrap5/survey/form.ejs.js +++ b/lib/mjs/templates/bootstrap5/survey/form.ejs.js @@ -5,35 +5,35 @@ __p += '\n \n \n \n '; +'">\r\n \r\n \r\n \r\n '; ctx.component.values.forEach(function(value) { ; -__p += '\n \n '; +__p += '\r\n \r\n '; }) ; -__p += '\n \n \n \n '; +__p += '\r\n \r\n \r\n \r\n '; ctx.component.questions.forEach(function(question) { ; -__p += '\n \n \r\n \n '; +__p += '\r\n \r\n '; ctx.component.values.forEach(function(value) { ; -__p += '\n \n '; +'" ref="input">\r\n \r\n '; }) ; -__p += '\n \n '; +__p += '\r\n \r\n '; }) ; -__p += '\n \n
    \n ' + +__p += '\r\n \r\n ' + ((__t = (ctx.t(value.label, { _userInput: true }))) == null ? '' : __t) + -'\n '; +'\r\n '; if (value.tooltip) { ; -__p += '\n \n '; +'">\r\n '; } ; -__p += '\n
    \n ' + +__p += '\r\n
    \r\n ' + ((__t = (ctx.t(question.label))) == null ? '' : __t) + -'\n '; +'\r\n '; if (question.tooltip) { ; -__p += '\n \n '; +'">\r\n '; } ; -__p += '\n \n \r\n \n \n
    \n'; +__p += '\r\n \r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/survey/html.ejs.js b/lib/mjs/templates/bootstrap5/survey/html.ejs.js index 52c86773d..9f3092cba 100644 --- a/lib/mjs/templates/bootstrap5/survey/html.ejs.js +++ b/lib/mjs/templates/bootstrap5/survey/html.ejs.js @@ -1,22 +1,22 @@ export default function(ctx) { var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } -__p += '\n \n '; +__p += '
    \r\n \r\n '; ctx.component.questions.forEach(function(question) { ; -__p += '\n \n \r\n \n \n \n '; +__p += '\r\n \r\n \r\n '; }) ; -__p += '\n \n
    ' + +__p += '\r\n
    ' + ((__t = (ctx.t(question.label))) == null ? '' : __t) + -'\n '; +'\r\n \r\n '; ctx.component.values.forEach(function(item) { ; -__p += '\n '; +__p += '\r\n '; if (ctx.value && ctx.value.hasOwnProperty(question.value) && ctx.value[question.value] === item.value) { ; -__p += '\n ' + +__p += '\r\n ' + ((__t = (ctx.t(item.label))) == null ? '' : __t) + -'\n '; +'\r\n '; } ; -__p += '\n '; +__p += '\r\n '; }) ; -__p += '\n
    \n'; +__p += '\r\n \r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/tab/flat.ejs.js b/lib/mjs/templates/bootstrap5/tab/flat.ejs.js index 8dbd85a93..21d6f8d99 100644 --- a/lib/mjs/templates/bootstrap5/tab/flat.ejs.js +++ b/lib/mjs/templates/bootstrap5/tab/flat.ejs.js @@ -3,14 +3,14 @@ var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } ctx.component.components.forEach(function(tab, index) { ; -__p += '\n
    \n
    \n

    ' + +__p += '\r\n
    \r\n
    \r\n

    ' + ((__t = ( ctx.t(tab.label, { _userInput: true }) )) == null ? '' : __t) + -'

    \n
    \n \n ' + +'"\r\n >\r\n ' + ((__t = ( ctx.tabComponents[index] )) == null ? '' : __t) + -'\n
    \n

    \n'; +'\r\n
    \r\n \r\n'; }) ; -__p += '\n'; +__p += '\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/tab/form.ejs.js b/lib/mjs/templates/bootstrap5/tab/form.ejs.js index cc15f5d2e..678a4d23d 100644 --- a/lib/mjs/templates/bootstrap5/tab/form.ejs.js +++ b/lib/mjs/templates/bootstrap5/tab/form.ejs.js @@ -3,36 +3,36 @@ var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } __p += '
    \n
    \n \r\n
    \r\n '; ctx.component.components.forEach(function(tab, index) { ; -__p += '\n \n ' + +'"\r\n >\r\n ' + ((__t = (ctx.tabComponents[index])) == null ? '' : __t) + -'\n
    \n '; +'\r\n \r\n '; }) ; -__p += '\n\n'; +__p += '\r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/table/form.ejs.js b/lib/mjs/templates/bootstrap5/table/form.ejs.js index 9c24456ee..3d72712ba 100644 --- a/lib/mjs/templates/bootstrap5/table/form.ejs.js +++ b/lib/mjs/templates/bootstrap5/table/form.ejs.js @@ -1,33 +1,33 @@ export default function(ctx) { var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } -__p += '\n \n '; +'\r\n '; if (ctx.component.header && ctx.component.header.length > 0) { ; -__p += '\n \n \n '; +__p += '\r\n \r\n \r\n '; ctx.component.header.forEach(function(header) { ; -__p += '\n \n '; +'\r\n '; }) ; -__p += '\n \n \n '; +__p += '\r\n \r\n \r\n '; } ; -__p += '\n \n '; +__p += '\r\n \r\n '; ctx.tableComponents.forEach(function(row, rowIndex) { ; -__p += '\n \n '; +'">\r\n '; row.forEach(function(column, colIndex) { ; -__p += '\n \r\n '; }) ; -__p += '\n \n '; +__p += '\r\n \r\n '; }) ; -__p += '\n \n
    ' + +'\r\n ">\r\n ' + ((__t = (ctx.t(ctx.component.label))) == null ? '' : __t) + -'
    ' + +__p += '\r\n ' + ((__t = (ctx.t(header))) == null ? '' : __t) + -'
    \n '; +'
    \n'; +__p += '\r\n \r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/tableComponents/form.ejs.js b/lib/mjs/templates/bootstrap5/tableComponents/form.ejs.js index bb69778cc..aaba14b3d 100644 --- a/lib/mjs/templates/bootstrap5/tableComponents/form.ejs.js +++ b/lib/mjs/templates/bootstrap5/tableComponents/form.ejs.js @@ -3,10 +3,10 @@ var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } ctx.children.forEach(function(component) { ; -__p += '\n \n ' + +__p += '\r\n \r\n ' + ((__t = ( component )) == null ? '' : __t) + -'\n \n'; +'\r\n \r\n'; }) ; -__p += '\n'; +__p += '\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/tree/form.ejs.js b/lib/mjs/templates/bootstrap5/tree/form.ejs.js index 1c0fb09da..5e97df8c1 100644 --- a/lib/mjs/templates/bootstrap5/tree/form.ejs.js +++ b/lib/mjs/templates/bootstrap5/tree/form.ejs.js @@ -3,30 +3,30 @@ var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } if (ctx.node.isRoot) { ; -__p += '\n
    \n'; +__p += '\r\n
    \r\n'; } else { ; -__p += '\n
  • \n'; +'">\r\n'; } ; -__p += '\n '; +__p += '\r\n '; if (ctx.content) { ; -__p += '\n
    \n ' + +__p += '\r\n
    \r\n ' + ((__t = ( ctx.content )) == null ? '' : __t) + -'\n
    \n '; +'\r\n
    \r\n '; } ; -__p += '\n '; +__p += '\r\n '; if (ctx.childNodes && ctx.childNodes.length) { ; -__p += '\n
      \n ' + +__p += '\r\n
        \r\n ' + ((__t = ( ctx.childNodes.join('') )) == null ? '' : __t) + -'\n
      \n '; +'\r\n
    \r\n '; } ; -__p += '\n'; +__p += '\r\n'; if (ctx.node.isRoot) { ; -__p += '\n
  • \n'; +__p += '\r\n
    \r\n'; } else { ; -__p += '\n \n'; +__p += '\r\n \r\n'; } ; -__p += '\n'; +__p += '\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/tree/partials/edit.ejs.js b/lib/mjs/templates/bootstrap5/tree/partials/edit.ejs.js index 389dcd335..63db0a8bf 100644 --- a/lib/mjs/templates/bootstrap5/tree/partials/edit.ejs.js +++ b/lib/mjs/templates/bootstrap5/tree/partials/edit.ejs.js @@ -1,16 +1,16 @@ export default function(ctx) { var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } -__p += '
    \n
    ' + +__p += '
    \r\n
    ' + ((__t = ( ctx.children )) == null ? '' : __t) + -'
    \n '; +'
    \r\n '; if (!ctx.readOnly) { ; -__p += '\n
    \n \n \r\n \n
    \n '; +'\r\n
    \r\n '; } ; -__p += '\n
    \n'; +__p += '\r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/tree/partials/view.ejs.js b/lib/mjs/templates/bootstrap5/tree/partials/view.ejs.js index 92be2647c..7945f7135 100644 --- a/lib/mjs/templates/bootstrap5/tree/partials/view.ejs.js +++ b/lib/mjs/templates/bootstrap5/tree/partials/view.ejs.js @@ -1,34 +1,34 @@ export default function(ctx) { var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; +__p += '
    \r\n '; ctx.values.forEach(function(value) { ; -__p += '\n
    \n ' + +__p += '\r\n
    \r\n ' + ((__t = ( value )) == null ? '' : __t) + -'\n
    \n '; +'\r\n
    \r\n '; }) ; -__p += '\n
    \n
    \n '; +__p += '\r\n
    \r\n
    \r\n '; if (ctx.node.hasChildren) { ; -__p += '\n \n '; +'\r\n '; } ; -__p += '\n '; +__p += '\r\n '; if (!ctx.readOnly) { ; -__p += '\n \n \r\n \n \r\n \n '; +'\r\n '; if (ctx.node.revertAvailable) { ; -__p += '\n \n '; +'\r\n '; } ; -__p += '\n '; +__p += '\r\n '; } ; -__p += '\n
    \n
    \n
    \n'; +__p += '\r\n
    \r\n
    \r\n
    \r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/webform/builder.ejs.js b/lib/mjs/templates/bootstrap5/webform/builder.ejs.js index 27ae8871d..018e0dde2 100644 --- a/lib/mjs/templates/bootstrap5/webform/builder.ejs.js +++ b/lib/mjs/templates/bootstrap5/webform/builder.ejs.js @@ -2,6 +2,6 @@ export default function(ctx) { var __t, __p = ''; __p += '
    ' + ((__t = ( ctx.t(ctx.component.title, { _userInput: true }) )) == null ? '' : __t) + -'
    \n'; +'\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/webform/form.ejs.js b/lib/mjs/templates/bootstrap5/webform/form.ejs.js index 630163c92..4c07f163c 100644 --- a/lib/mjs/templates/bootstrap5/webform/form.ejs.js +++ b/lib/mjs/templates/bootstrap5/webform/form.ejs.js @@ -4,6 +4,6 @@ __p += '
    ' + ((__t = (ctx.children)) == null ? '' : __t) + -'
    \n'; +'\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/well/form.ejs.js b/lib/mjs/templates/bootstrap5/well/form.ejs.js index 454e94918..b2cd29629 100644 --- a/lib/mjs/templates/bootstrap5/well/form.ejs.js +++ b/lib/mjs/templates/bootstrap5/well/form.ejs.js @@ -1,9 +1,9 @@ export default function(ctx) { var __t, __p = ''; -__p += '
    \n
    \r\n
    \n ' + +'">\r\n ' + ((__t = (ctx.children)) == null ? '' : __t) + -'\n
    \n
    \n'; +'\r\n
    \r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/wizard/builder.ejs.js b/lib/mjs/templates/bootstrap5/wizard/builder.ejs.js index 27ae8871d..018e0dde2 100644 --- a/lib/mjs/templates/bootstrap5/wizard/builder.ejs.js +++ b/lib/mjs/templates/bootstrap5/wizard/builder.ejs.js @@ -2,6 +2,6 @@ export default function(ctx) { var __t, __p = ''; __p += '
    ' + ((__t = ( ctx.t(ctx.component.title, { _userInput: true }) )) == null ? '' : __t) + -'
    \n'; +'\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/wizard/form.ejs.js b/lib/mjs/templates/bootstrap5/wizard/form.ejs.js index a3e49856e..752668119 100644 --- a/lib/mjs/templates/bootstrap5/wizard/form.ejs.js +++ b/lib/mjs/templates/bootstrap5/wizard/form.ejs.js @@ -3,40 +3,40 @@ var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } __p += '
    \n
    \n '; +'">\r\n
    \r\n '; if (ctx.wizardHeaderType === 'wizardHeaderVertical') { ; -__p += '\n
    \n '; +__p += '\r\n
    \r\n '; if (ctx.wizardHeaderLocation !== 'right') { ; -__p += '\n
    \n ' + +__p += '\r\n
    \r\n ' + ((__t = ( ctx.wizardHeader )) == null ? '' : __t) + -'\n
    \n '; +'\r\n
    \r\n '; } ; -__p += '\n
    \n ' + +'">\r\n ' + ((__t = (ctx.components)) == null ? '' : __t) + -'\n
    \n '; +'\r\n
    \r\n '; if (ctx.wizardHeaderLocation === 'right') { ; -__p += '\n
    \n ' + +__p += '\r\n
    \r\n ' + ((__t = ( ctx.wizardHeader )) == null ? '' : __t) + -'\n
    \n '; +'\r\n
    \r\n '; } ; -__p += '\n
    \n
    \n ' + +'">\r\n ' + ((__t = ( ctx.wizardNav )) == null ? '' : __t) + -'\n
    \n '; +'\r\n
    \r\n '; } else { ; -__p += '\n ' + +__p += '\r\n ' + ((__t = ( ctx.wizardHeader )) == null ? '' : __t) + -'\n
    \n ' + +'">\r\n ' + ((__t = (ctx.components)) == null ? '' : __t) + -'\n
    \n ' + +'\r\n
    \r\n ' + ((__t = ( ctx.wizardNav )) == null ? '' : __t) + -'\n '; +'\r\n '; } ; -__p += '\n
    \n\n'; +__p += '\r\n \r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/wizardHeader/form.ejs.js b/lib/mjs/templates/bootstrap5/wizardHeader/form.ejs.js index ae4f5f6e6..f99ac41a4 100644 --- a/lib/mjs/templates/bootstrap5/wizardHeader/form.ejs.js +++ b/lib/mjs/templates/bootstrap5/wizardHeader/form.ejs.js @@ -5,28 +5,28 @@ __p += '
    \n'; +__p += '\r\n \r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/wizardHeaderClassic/form.ejs.js b/lib/mjs/templates/bootstrap5/wizardHeaderClassic/form.ejs.js index f3be4abc5..70c082ce5 100644 --- a/lib/mjs/templates/bootstrap5/wizardHeaderClassic/form.ejs.js +++ b/lib/mjs/templates/bootstrap5/wizardHeaderClassic/form.ejs.js @@ -3,24 +3,24 @@ var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } __p += '\n'; +__p += '\r\n \r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/wizardHeaderVertical/form.ejs.js b/lib/mjs/templates/bootstrap5/wizardHeaderVertical/form.ejs.js index e1740d91f..b23a654fc 100644 --- a/lib/mjs/templates/bootstrap5/wizardHeaderVertical/form.ejs.js +++ b/lib/mjs/templates/bootstrap5/wizardHeaderVertical/form.ejs.js @@ -3,26 +3,26 @@ var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } __p += '\n'; +__p += '\r\n \r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/bootstrap5/wizardNav/form.ejs.js b/lib/mjs/templates/bootstrap5/wizardNav/form.ejs.js index aa812b5c4..cb02fcae0 100644 --- a/lib/mjs/templates/bootstrap5/wizardNav/form.ejs.js +++ b/lib/mjs/templates/bootstrap5/wizardNav/form.ejs.js @@ -3,62 +3,62 @@ var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } __p += '
      \n '; +'-nav">\r\n '; ctx.buttonOrder.forEach(function(button) { ; -__p += '\n '; +__p += '\r\n '; if (button === 'cancel' && ctx.buttons.cancel) { ; -__p += '\n
    • \n \n
    • \n '; +'\r\n \r\n '; } ; -__p += '\n '; +__p += '\r\n '; if (button === 'previous' && ctx.buttons.previous) { ; -__p += '\n
    • \n \n
    • \n '; +'\r\n \r\n '; } ; -__p += '\n '; +__p += '\r\n '; if (button === 'next' && ctx.buttons.next) { ; -__p += '\n
    • \n \n
    • \n '; +'\r\n \r\n '; } ; -__p += '\n '; +__p += '\r\n '; if (button === 'submit' && ctx.buttons.submit) { ; -__p += '\n
    • \n '; +__p += '\r\n
    • \r\n '; if (ctx.disableWizardSubmit){ ; -__p += '\n \n '; +'\r\n '; } else { ; -__p += '\n \n '; +'\r\n '; } ; -__p += '\n
    • \n '; +__p += '\r\n \r\n '; } ; -__p += '\n '; +__p += '\r\n '; }) ; -__p += '\n
    \n'; +__p += '\r\n\r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/components/editgrid/header.ejs.js b/lib/mjs/templates/components/editgrid/header.ejs.js index 7c3034070..225b8d08d 100644 --- a/lib/mjs/templates/components/editgrid/header.ejs.js +++ b/lib/mjs/templates/components/editgrid/header.ejs.js @@ -1,16 +1,16 @@ export default function(ctx) { var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; +__p += '
    \r\n '; ctx.util.eachComponent(ctx.components, function(component) { ; -__p += '\n '; +__p += '\r\n '; if (!component.hasOwnProperty('tableView') || component.tableView) { ; -__p += '\n
    ' + +__p += '\r\n
    ' + ((__t = ( ctx.t(component.label) )) == null ? '' : __t) + -'
    \n '; +'
    \r\n '; } ; -__p += '\n '; +__p += '\r\n '; }) ; -__p += '\n
    \n'; +__p += '\r\n
    \r\n'; return __p } \ No newline at end of file diff --git a/lib/mjs/templates/components/editgrid/row.ejs.js b/lib/mjs/templates/components/editgrid/row.ejs.js index 467da0908..95307a0e8 100644 --- a/lib/mjs/templates/components/editgrid/row.ejs.js +++ b/lib/mjs/templates/components/editgrid/row.ejs.js @@ -1,24 +1,24 @@ export default function(ctx) { var __t, __p = '', __j = Array.prototype.join; function print() { __p += __j.call(arguments, '') } -__p += '
    \n '; +__p += '
    \r\n '; ctx.util.eachComponent(ctx.components, function(component) { ; -__p += '\n '; +__p += '\r\n '; if (!component.hasOwnProperty('tableView') || component.tableView) { ; -__p += '\n
    \n ' + +__p += '\r\n
    \r\n ' + ((__t = ( ctx.getView(component, ctx.row[component.key]) )) == null ? '' : __t) + -'\n
    \n '; +'\r\n
    \r\n '; } ; -__p += '\n '; +__p += '\r\n '; }) ; -__p += '\n '; +__p += '\r\n '; if (!ctx.self.options.readOnly) { ; -__p += '\n
    \n
    \n \n \r\n \n
    \n
    \n '; +'">\r\n
    \r\n
    \r\n '; } ; -__p += '\n\n'; +__p += '\r\n\r\n'; return __p } \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 000000000..7d59a16ce --- /dev/null +++ b/package-lock.json @@ -0,0 +1,10645 @@ +{ + "name": "@formio/bootstrap", + "version": "3.1.2", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "@formio/bootstrap", + "version": "3.1.2", + "license": "MIT", + "devDependencies": { + "@types/chai": "^4.3.11", + "@types/ejs": "^3.1.5", + "@types/mocha": "^10.0.6", + "@types/node": "^20.12.7", + "@types/sinon": "^17.0.2", + "@typescript-eslint/eslint-plugin": "^6.18.1", + "@typescript-eslint/parser": "^6.18.1", + "chai": "^5.0.0", + "copy-props": "^4.0.0", + "gulp": "^4.0.2", + "gulp-insert": "^0.5.0", + "gulp-rename": "^2.0.0", + "gulp-template": "^5.0.0", + "mocha": "^10.2.0", + "nyc": "^15.1.0", + "pre-commit": "^1.2.2", + "sinon": "^17.0.1", + "ts-node": "^10.9.2", + "ts-sinon": "^2.0.2", + "tslint": "^6.1.3", + "typescript": "~5.3.3", + "webpack": "^5.88.2", + "webpack-cli": "^5.0.1" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.24.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz", + "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.24.2", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.1.tgz", + "integrity": "sha512-Pc65opHDliVpRHuKfzI+gSA4zcgr65O4cl64fFJIWEEh8JoHIHh0Oez1Eo8Arz8zq/JhgKodQaxEwUPRtZylVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.24.3", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.3.tgz", + "integrity": "sha512-5FcvN1JHw2sHJChotgx8Ek0lyuh4kCKelgMTTqhYJJtloNvUfpAFMeNQUtdlIaktwrSV9LtCdqwk48wL2wBacQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.24.2", + "@babel/generator": "^7.24.1", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helpers": "^7.24.1", + "@babel/parser": "^7.24.1", + "@babel/template": "^7.24.0", + "@babel/traverse": "^7.24.1", + "@babel/types": "^7.24.0", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.1.tgz", + "integrity": "sha512-DfCRfZsBcrPEHUfuBMgbJ1Ut01Y/itOs+hY2nFLgqsqXd52/iSiVq5TITtUasIUgm+IIKdY2/1I7auiQOEeC9A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.24.0", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", + "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.23.5", + "@babel/helper-validator-option": "^7.23.5", + "browserslist": "^4.22.2", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.24.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz", + "integrity": "sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", + "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz", + "integrity": "sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", + "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.1.tgz", + "integrity": "sha512-BpU09QqEe6ZCHuIHFphEFgvNSrubve1FtyMton26ekZ85gRGi6LrTF7zArARp2YvyFxloeiRmtSCq5sjh1WqIg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.24.0", + "@babel/traverse": "^7.24.1", + "@babel/types": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.24.2", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.2.tgz", + "integrity": "sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.1.tgz", + "integrity": "sha512-Zo9c7N3xdOIQrNip7Lc9wvRPzlRtovHVE4lkz8WEDr7uYh/GMQhSiIgFxGIArRHYdJE5kxtZjAf8rT0xhdLCzg==", + "dev": true, + "license": "MIT", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/template": { + "version": "7.24.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz", + "integrity": "sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.23.5", + "@babel/parser": "^7.24.0", + "@babel/types": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.1.tgz", + "integrity": "sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.24.1", + "@babel/generator": "^7.24.1", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.24.1", + "@babel/types": "^7.24.0", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse/node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/types": { + "version": "7.24.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.0.tgz", + "integrity": "sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.23.4", + "@babel/helper-validator-identifier": "^7.22.20", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@discoveryjs/json-ext": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@eslint/eslintrc/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "peer": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@eslint/js": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", + "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", + "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", + "deprecated": "Use @eslint/config-array instead", + "dev": true, + "license": "Apache-2.0", + "peer": true, + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.3", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "peer": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "peer": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "deprecated": "Use @eslint/object-schema instead", + "dev": true, + "license": "BSD-3-Clause", + "peer": true + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", + "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@sinonjs/commons": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", + "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "11.2.2", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-11.2.2.tgz", + "integrity": "sha512-G2piCSxQ7oWOxwGSAyFHfPIsyeJGXYtc6mFbnFA+kRXkiEnTl8c/8jul2S329iFBnDI9HGoeWWAZvuvOkZccgw==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/@sinonjs/samsam": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-8.0.0.tgz", + "integrity": "sha512-Bp8KUVlLp8ibJZrnvq2foVhP0IVX2CIprMJPK0vqGqgrDa0OHVKeZyBykqskkrdxV6yKBPmGasO8LVjAKR3Gew==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^2.0.0", + "lodash.get": "^4.4.2", + "type-detect": "^4.0.8" + } + }, + "node_modules/@sinonjs/samsam/node_modules/@sinonjs/commons": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz", + "integrity": "sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/text-encoding": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.2.tgz", + "integrity": "sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ==", + "dev": true, + "license": "(Unlicense OR Apache-2.0)" + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", + "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/chai": { + "version": "4.3.14", + "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.14.tgz", + "integrity": "sha512-Wj71sXE4Q4AkGdG9Tvq1u/fquNz9EdG4LIJMwVVII7ashjD/8cf8fyIfJAjRr6YcsXnSE8cOGQPq1gqeR8z+3w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/ejs": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@types/ejs/-/ejs-3.1.5.tgz", + "integrity": "sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/eslint": { + "version": "8.56.7", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.7.tgz", + "integrity": "sha512-SjDvI/x3zsZnOkYZ3lCt9lOZWZLB2jIlNKz+LBgCtDurK0JZcwucxYHn1w2BJkD34dgX9Tjnak0txtq4WTggEA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/mocha": { + "version": "10.0.6", + "resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-10.0.6.tgz", + "integrity": "sha512-dJvrYWxP/UcXm36Qn36fxhUKu8A/xMRXVT2cliFF1Z7UA9liG5Psj3ezNSZw+5puH2czDXRLcXQxf8JbJt0ejg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "20.12.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.7.tgz", + "integrity": "sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@types/semver": { + "version": "7.5.8", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", + "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/sinon": { + "version": "17.0.3", + "resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-17.0.3.tgz", + "integrity": "sha512-j3uovdn8ewky9kRBG19bOwaZbexJu/XjtkHyjvUgt4xfPFz18dcORIMqnYh66Fx3Powhcr85NT5+er3+oViapw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/sinonjs__fake-timers": "*" + } + }, + "node_modules/@types/sinon-chai": { + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/@types/sinon-chai/-/sinon-chai-3.2.12.tgz", + "integrity": "sha512-9y0Gflk3b0+NhQZ/oxGtaAJDvRywCa5sIyaVnounqLvmf93yBF4EgIRspePtkMs3Tr844nCclYMlcCNmLCvjuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/chai": "*", + "@types/sinon": "*" + } + }, + "node_modules/@types/sinonjs__fake-timers": { + "version": "8.1.5", + "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.5.tgz", + "integrity": "sha512-mQkU2jY8jJEF7YHjHvsQO8+3ughTL1mcnn96igfhONmR+fUPSKIkefQYpSe8bsly2Ep7oQbn/6VG5/9/0qcArQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.21.0.tgz", + "integrity": "sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.5.1", + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/type-utils": "6.21.0", + "@typescript-eslint/utils": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.4", + "natural-compare": "^1.4.0", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha", + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.21.0.tgz", + "integrity": "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/typescript-estree": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz", + "integrity": "sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.21.0.tgz", + "integrity": "sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/typescript-estree": "6.21.0", + "@typescript-eslint/utils": "6.21.0", + "debug": "^4.3.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.21.0.tgz", + "integrity": "sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz", + "integrity": "sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "9.0.3", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.21.0.tgz", + "integrity": "sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@types/json-schema": "^7.0.12", + "@types/semver": "^7.5.0", + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/typescript-estree": "6.21.0", + "semver": "^7.5.4" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz", + "integrity": "sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "6.21.0", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", + "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", + "dev": true, + "license": "ISC", + "peer": true + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", + "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", + "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", + "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.12.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", + "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-opt": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1", + "@webassemblyjs/wast-printer": "1.12.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", + "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", + "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", + "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", + "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webpack-cli/configtest": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-2.1.1.tgz", + "integrity": "sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + } + }, + "node_modules/@webpack-cli/info": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-2.0.2.tgz", + "integrity": "sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + } + }, + "node_modules/@webpack-cli/serve": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-2.0.5.tgz", + "integrity": "sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + }, + "peerDependenciesMeta": { + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-assertions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "deprecated": "package has been renamed to acorn-import-attributes", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peer": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.2.tgz", + "integrity": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-colors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz", + "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-wrap": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-cyan": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-cyan/-/ansi-cyan-0.1.1.tgz", + "integrity": "sha512-eCjan3AVo/SxZ0/MyIYRtkpxIu/H3xZN7URr1vXVrISxeyz8fUFz0FJziamK4sS8I+t35y4rHg1b2PklyBe/7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-wrap": "0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-gray": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", + "integrity": "sha512-HrgGIZUl8h2EHuZaU9hTR/cU5nhKxpVE1V6kdGsQ8e4zirElJ5fvtfc8N7Q1oq1aatO275i8pUFUCpNWCAnVWw==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-wrap": "0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-red": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz", + "integrity": "sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-wrap": "0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/ansi-wrap": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", + "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "license": "ISC", + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/anymatch/node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/anymatch/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/anymatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/anymatch/node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/anymatch/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/anymatch/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/anymatch/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/anymatch/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "license": "MIT", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/append-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", + "integrity": "sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer-equal": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/append-transform": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/append-transform/-/append-transform-2.0.0.tgz", + "integrity": "sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==", + "dev": true, + "license": "MIT", + "dependencies": { + "default-require-extensions": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/archy": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", + "integrity": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==", + "dev": true, + "license": "MIT" + }, + "node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true, + "license": "MIT" + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/arr-diff": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz", + "integrity": "sha512-OQwDZUqYaQwyyhDJHThmzId8daf4/RFNLaeh3AevmSeZ5Y7ug4Ga/yKc6l6kTZOBW781rCj103ZuTh8GAsB3+Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "arr-flatten": "^1.0.1", + "array-slice": "^0.2.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-diff/node_modules/array-slice": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz", + "integrity": "sha512-rlVfZW/1Ph2SNySXwR9QYkChp8EkOEiTMO5Vwx60usw04i4nWemkm9RXmQqgkQFaLHsqLuADvjp6IfgL9l2M8Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-filter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz", + "integrity": "sha512-A2BETWCqhsecSvCkWAeVBFLH6sXEUGASuzkpjL3GR1SlL/PWL6M3J8EAAld2Uubmh39tvkJTqC9LeLHCUKmFXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz", + "integrity": "sha512-tVqVTHt+Q5Xb09qRkbu+DidW1yYzz5izWS2Xm2yFm7qJnmUfz4HPzNxbHkdRJbz2lrqI7S+z17xNYdFcBBO8Hw==", + "dev": true, + "license": "MIT", + "dependencies": { + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-2.1.0.tgz", + "integrity": "sha512-t5db90jq+qdgk8aFnxEkjqta0B/GHrM1pxzuuZz2zWsOXc5nKu3t+76s/PQBA8FTcM/ipspIH9jWG4OxCBc2eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", + "integrity": "sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-initial": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz", + "integrity": "sha512-BC4Yl89vneCYfpLrs5JU2aAu9/a+xWbeKhvISg9PT7eWFB9UlRvI+rKEtk6mgxWr3dSkk9gQ8hCrdqt06NXPdw==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-slice": "^1.0.0", + "is-number": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-initial/node_modules/is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-last": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz", + "integrity": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-last/node_modules/is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-slice": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", + "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-sort": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz", + "integrity": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==", + "dev": true, + "license": "MIT", + "dependencies": { + "default-compare": "^1.0.0", + "get-value": "^2.0.6", + "kind-of": "^5.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/assertion-error": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", + "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/async-done": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz", + "integrity": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.2", + "process-nextick-args": "^2.0.0", + "stream-exhaust": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/async-each": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.6.tgz", + "integrity": "sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT" + }, + "node_modules/async-settle": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz", + "integrity": "sha512-VPXfB4Vk49z1LHHodrEQ6Xf7W4gg1w0dAPROHngx7qgDjqmIQ+fXmwgGXTW/ITLai0YLSvWepJOP9EVpMnEAcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "async-done": "^1.2.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true, + "license": "(MIT OR Apache-2.0)", + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/bach": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz", + "integrity": "sha512-bZOOfCb3gXBXbTFXq3OZtGR88LwGeJvzu6szttaIzymOTS4ZttBNOWSv7aLZja2EMycKtRYV0Oa8SNKH/zkxvg==", + "dev": true, + "license": "MIT", + "dependencies": { + "arr-filter": "^1.1.1", + "arr-flatten": "^1.0.1", + "arr-map": "^2.0.0", + "array-each": "^1.0.0", + "array-initial": "^1.0.0", + "array-last": "^1.1.1", + "async-done": "^1.2.2", + "async-settle": "^1.0.0", + "now-and-later": "^2.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "license": "MIT", + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/browser-stdout": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", + "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", + "dev": true, + "license": "ISC" + }, + "node_modules/browserslist": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", + "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001587", + "electron-to-chromium": "^1.4.668", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.1.tgz", + "integrity": "sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/builtin-modules": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", + "integrity": "sha512-wxXCdllwGhI2kCC0MnvTGYTMvnVZTvqgypkiTI8Pa5tcz2i6VqsqwYGgqwXji+4RgCzms6EajE4IxiUH6HH8nQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/caching-transform": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/caching-transform/-/caching-transform-4.0.0.tgz", + "integrity": "sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasha": "^5.0.0", + "make-dir": "^3.0.0", + "package-hash": "^4.0.0", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001605", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001605.tgz", + "integrity": "sha512-nXwGlFWo34uliI9z3n6Qc0wZaf7zaZWA1CPZ169La5mV3I/gem7bst0vr5XQH5TJXZIMfDeZyOrZnSlVzKxxHQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chai": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/chai/-/chai-5.1.0.tgz", + "integrity": "sha512-kDZ7MZyM6Q1DhR9jy7dalKohXQ2yrlXkk59CR52aRKxJrobmlBNqnFQxX9xOX8w+4mz8SYlKJa/7D7ddltFXCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "assertion-error": "^2.0.1", + "check-error": "^2.0.0", + "deep-eql": "^5.0.1", + "loupe": "^3.1.0", + "pathval": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/check-error": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.0.0.tgz", + "integrity": "sha512-tjLAOBHKVxtPoHe/SA7kNOMvhCRdCJ3vETdeY0RuAc9popf+hyaSV6ZEg9hr4cpWF7jmo/JSWEnLDrnijS9Tog==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 16" + } + }, + "node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/chokidar/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "license": "MIT", + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" + } + }, + "node_modules/cliui/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", + "integrity": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/clone-deep/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clone-deep/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", + "dev": true, + "license": "MIT" + }, + "node_modules/cloneable-readable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", + "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "process-nextick-args": "^2.0.0", + "readable-stream": "^2.3.5" + } + }, + "node_modules/code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/collection-map": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz", + "integrity": "sha512-5D2XXSpkOnleOI21TG7p3T0bGAsZ/XknZpKBmGYyluO8pw4zA3K8ZlrBIbC4FXg3m6z/RNFiUFfT2sQK01+UHA==", + "dev": true, + "license": "MIT", + "dependencies": { + "arr-map": "^2.0.2", + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "dev": true, + "license": "MIT", + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "dev": true, + "license": "ISC", + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true, + "license": "MIT" + }, + "node_modules/component-emitter": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.1.tgz", + "integrity": "sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "engines": [ + "node >= 0.8" + ], + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true, + "license": "MIT" + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/copy-props": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-4.0.0.tgz", + "integrity": "sha512-bVWtw1wQLzzKiYROtvNlbJgxgBYt2bMJpkCbKmXM3xyijvcjjWXEk5nyrrT3bgJ7ODb19ZohE2T0Y3FgNPyoTw==", + "dev": true, + "license": "MIT", + "dependencies": { + "each-props": "^3.0.0", + "is-plain-object": "^5.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/d": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.2.tgz", + "integrity": "sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==", + "dev": true, + "license": "ISC", + "dependencies": { + "es5-ext": "^0.10.64", + "type": "^2.7.2" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/deep-eql": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.1.tgz", + "integrity": "sha512-nwQCf6ne2gez3o1MxWifqkciwt0zhl0LO1/UwVu4uMBuPmflWM4oQ70XMqHqnBJA+nhzncaqL9HVL6KkHJ28lw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/default-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz", + "integrity": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "kind-of": "^5.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-require-extensions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-3.0.1.tgz", + "integrity": "sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==", + "dev": true, + "license": "MIT", + "dependencies": { + "strip-bom": "^4.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/default-resolution": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz", + "integrity": "sha512-2xaP6GiwVwOEbXCGoJ4ufgC76m8cj805jrghScewJC2ZDsb9U0b4BIrba+xt/Uytyd0HvQ6+WymSRTfnYj59GQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/diff": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz", + "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "license": "Apache-2.0", + "peer": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dev": true, + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/each-props": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/each-props/-/each-props-3.0.0.tgz", + "integrity": "sha512-IYf1hpuWrdzse/s/YJOrFmU15lyhSzxelNVAHTEG3DtP4QsLTWZUzcUL3HMXmKQxXpa4EIrBPpwRgj0aehdvAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-plain-object": "^5.0.0", + "object.defaults": "^1.1.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.723", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.723.tgz", + "integrity": "sha512-rxFVtrMGMFROr4qqU6n95rUi9IlfIm+lIAt+hOToy/9r6CDv0XiEcQdC3VP71y1pE5CFTzKV0RvxOGYCPWWHPw==", + "dev": true, + "license": "ISC" + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.16.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.16.0.tgz", + "integrity": "sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/envinfo": { + "version": "7.11.1", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.11.1.tgz", + "integrity": "sha512-8PiZgZNIB4q/Lw4AhOvAfB/ityHAd2bli3lESSWmWSzSsl5dKpy5N1d1Rfkd2teq/g9xN90lc6o98DOjMeYHpg==", + "dev": true, + "license": "MIT", + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-module-lexer": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.0.tgz", + "integrity": "sha512-pqrTKmwEIgafsYZAGw9kszYzmagcE/n4dbgwGWLEXg7J4QFJVQRBld8j3Q3GNez79jzxZshq0bcT962QHOghjw==", + "dev": true, + "license": "MIT" + }, + "node_modules/es5-ext": { + "version": "0.10.64", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.64.tgz", + "integrity": "sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==", + "dev": true, + "hasInstallScript": true, + "license": "ISC", + "dependencies": { + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.3", + "esniff": "^2.0.1", + "next-tick": "^1.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/es6-error": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", + "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==", + "dev": true, + "license": "MIT" + }, + "node_modules/es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", + "dev": true, + "license": "MIT", + "dependencies": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/es6-symbol": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.4.tgz", + "integrity": "sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==", + "dev": true, + "license": "ISC", + "dependencies": { + "d": "^1.0.2", + "ext": "^1.7.0" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/es6-weak-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", + "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", + "dev": true, + "license": "ISC", + "dependencies": { + "d": "1", + "es5-ext": "^0.10.46", + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", + "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", + "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.1", + "@humanwhocodes/config-array": "^0.13.0", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "license": "BSD-2-Clause", + "peer": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/eslint/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "peer": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/esniff": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/esniff/-/esniff-2.0.1.tgz", + "integrity": "sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==", + "dev": true, + "license": "ISC", + "dependencies": { + "d": "^1.0.1", + "es5-ext": "^0.10.62", + "event-emitter": "^0.3.5", + "type": "^2.7.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "license": "BSD-2-Clause", + "peer": true, + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "license": "BSD-3-Clause", + "peer": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/event-emitter": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", + "integrity": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "d": "1", + "es5-ext": "~0.10.14" + } + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/expand-brackets/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true, + "license": "MIT" + }, + "node_modules/expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", + "dev": true, + "license": "MIT", + "dependencies": { + "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ext": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", + "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", + "dev": true, + "license": "ISC", + "dependencies": { + "type": "^2.7.2" + } + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true, + "license": "MIT" + }, + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/fancy-log": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", + "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-gray": "^0.1.1", + "color-support": "^1.1.3", + "parse-node-version": "^1.0.0", + "time-stamp": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4.9.1" + } + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "license": "MIT", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/findup-sync": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", + "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", + "dev": true, + "license": "MIT", + "dependencies": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/findup-sync/node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/findup-sync/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/findup-sync/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "license": "MIT", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fined": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz", + "integrity": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==", + "dev": true, + "license": "MIT", + "dependencies": { + "expand-tilde": "^2.0.2", + "is-plain-object": "^2.0.3", + "object.defaults": "^1.1.0", + "object.pick": "^1.2.0", + "parse-filepath": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/fined/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/flagged-respawn": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz", + "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true, + "license": "BSD-3-Clause", + "bin": { + "flat": "cli.js" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", + "dev": true, + "license": "ISC", + "peer": true + }, + "node_modules/flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dev": true, + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/for-own": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", + "integrity": "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==", + "dev": true, + "license": "MIT", + "dependencies": { + "for-in": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/foreground-child": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz", + "integrity": "sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==", + "dev": true, + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "dev": true, + "license": "MIT", + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fromentries": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/fromentries/-/fromentries-1.3.2.tgz", + "integrity": "sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/fs-mkdirp-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", + "integrity": "sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.11", + "through2": "^2.0.3" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true, + "license": "ISC" + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", + "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", + "dev": true, + "license": "ISC" + }, + "node_modules/get-func-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz", + "integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "peer": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob-stream": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", + "integrity": "sha512-uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw==", + "dev": true, + "license": "MIT", + "dependencies": { + "extend": "^3.0.0", + "glob": "^7.1.1", + "glob-parent": "^3.1.0", + "is-negated-glob": "^1.0.0", + "ordered-read-streams": "^1.0.0", + "pumpify": "^1.3.5", + "readable-stream": "^2.1.5", + "remove-trailing-separator": "^1.0.1", + "to-absolute-glob": "^2.0.0", + "unique-stream": "^2.0.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/glob-stream/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/glob-stream/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-stream/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/glob-stream/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-stream/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true, + "license": "BSD-2-Clause" + }, + "node_modules/glob-watcher": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.5.tgz", + "integrity": "sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "^2.0.0", + "async-done": "^1.2.0", + "chokidar": "^2.0.0", + "is-negated-glob": "^1.0.0", + "just-debounce": "^1.0.0", + "normalize-path": "^3.0.0", + "object.defaults": "^1.1.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/glob/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "license": "MIT", + "dependencies": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "dev": true, + "license": "MIT", + "dependencies": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/glogg": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz", + "integrity": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "sparkles": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true, + "license": "MIT" + }, + "node_modules/gulp": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/gulp/-/gulp-4.0.2.tgz", + "integrity": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==", + "dev": true, + "license": "MIT", + "dependencies": { + "glob-watcher": "^5.0.3", + "gulp-cli": "^2.2.0", + "undertaker": "^1.2.1", + "vinyl-fs": "^3.0.0" + }, + "bin": { + "gulp": "bin/gulp.js" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-cli": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz", + "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-colors": "^1.0.1", + "archy": "^1.0.0", + "array-sort": "^1.0.0", + "color-support": "^1.1.3", + "concat-stream": "^1.6.0", + "copy-props": "^2.0.1", + "fancy-log": "^1.3.2", + "gulplog": "^1.0.0", + "interpret": "^1.4.0", + "isobject": "^3.0.1", + "liftoff": "^3.1.0", + "matchdep": "^2.0.0", + "mute-stdout": "^1.0.0", + "pretty-hrtime": "^1.0.0", + "replace-homedir": "^1.0.0", + "semver-greatest-satisfied-range": "^1.1.0", + "v8flags": "^3.2.0", + "yargs": "^7.1.0" + }, + "bin": { + "gulp": "bin/gulp.js" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-cli/node_modules/copy-props": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz", + "integrity": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==", + "dev": true, + "license": "MIT", + "dependencies": { + "each-props": "^1.3.2", + "is-plain-object": "^5.0.0" + } + }, + "node_modules/gulp-cli/node_modules/each-props": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/each-props/-/each-props-1.3.2.tgz", + "integrity": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.1", + "object.defaults": "^1.1.0" + } + }, + "node_modules/gulp-cli/node_modules/each-props/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-insert": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/gulp-insert/-/gulp-insert-0.5.0.tgz", + "integrity": "sha512-SDKCWmjomAo0N0Bzj9qEKIfURORJR/72p6AbDBIK9yKZw794ROTrQHliBem+NJzS2GsTWSm8dGWJ5L7KtjnMRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "readable-stream": "^1.0.26-4", + "streamqueue": "0.0.6" + } + }, + "node_modules/gulp-insert/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/gulp-insert/node_modules/readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "node_modules/gulp-insert/node_modules/string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/gulp-rename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/gulp-rename/-/gulp-rename-2.0.0.tgz", + "integrity": "sha512-97Vba4KBzbYmR5VBs9mWmK+HwIf5mj+/zioxfZhOKeXtx5ZjBk57KFlePf5nxq9QsTtFl0ejnHE3zTC9MHXqyQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/gulp-template": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/gulp-template/-/gulp-template-5.0.0.tgz", + "integrity": "sha512-BsE+HrFZG0ItM0fBhRMfqWWR5MQ2W3O3ss1T3XdNqi4p9WCIFYjcdI1L5PikXMNUU93A4NoVLeWPwUmqGAKwGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "lodash": "^4.8.2", + "plugin-error": "^0.1.2", + "safe-buffer": "^5.1.1", + "through2": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/gulplog": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", + "integrity": "sha512-hm6N8nrm3Y08jXie48jsC55eCZz9mnb4OirAStEk2deqeyhXU3C1otDVh+ccttMuc1sBi6RX6ZJ720hs9RCvgw==", + "dev": true, + "license": "MIT", + "dependencies": { + "glogg": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hasha": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz", + "integrity": "sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-stream": "^2.0.0", + "type-fest": "^0.8.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/hasha/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=8" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "node_modules/homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "parse-passwd": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true, + "license": "ISC" + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true, + "license": "MIT" + }, + "node_modules/ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "license": "MIT", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "dev": true, + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true, + "license": "ISC" + }, + "node_modules/interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/invert-kv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-absolute": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", + "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-relative": "^1.0.0", + "is-windows": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz", + "integrity": "sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true, + "license": "MIT" + }, + "node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true, + "license": "MIT" + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz", + "integrity": "sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-negated-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", + "integrity": "sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "license": "MIT", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-relative": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", + "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-unc-path": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "dev": true, + "license": "MIT" + }, + "node_modules/is-unc-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", + "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "unc-path-regex": "^0.1.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/is-valid-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", + "integrity": "sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-hook": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-3.0.0.tgz", + "integrity": "sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "append-transform": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", + "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@babel/core": "^7.7.5", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/istanbul-lib-processinfo": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-processinfo/-/istanbul-lib-processinfo-2.0.3.tgz", + "integrity": "sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==", + "dev": true, + "license": "ISC", + "dependencies": { + "archy": "^1.0.0", + "cross-spawn": "^7.0.3", + "istanbul-lib-coverage": "^3.2.0", + "p-map": "^3.0.0", + "rimraf": "^3.0.0", + "uuid": "^8.3.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", + "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/just-debounce": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.1.0.tgz", + "integrity": "sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/just-extend": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/just-extend/-/just-extend-6.2.0.tgz", + "integrity": "sha512-cYofQu2Xpom82S6qD778jBDpwvvy39s1l/hrYij2u9AMdQcGRpaBu6kY4mVhuno5kJVi1DAz4aiphA2WI1/OAw==", + "dev": true, + "license": "MIT" + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/last-run": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz", + "integrity": "sha512-U/VxvpX4N/rFvPzr3qG5EtLKEnNI0emvIQB3/ecEwv+8GHaUKbIB8vxv1Oai5FAF0d0r7LXHhLLe5K/yChm5GQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "default-resolution": "^2.0.0", + "es6-weak-map": "^2.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/lazystream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", + "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "readable-stream": "^2.0.5" + }, + "engines": { + "node": ">= 0.6.3" + } + }, + "node_modules/lcid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==", + "dev": true, + "license": "MIT", + "dependencies": { + "invert-kv": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lead": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", + "integrity": "sha512-IpSVCk9AYvLHo5ctcIXxOBpMWUe+4TKN3VPWAKUbJikkmsGp0VrSM8IttVc32D6J4WUsiPE6aEFRNmIoF/gdow==", + "dev": true, + "license": "MIT", + "dependencies": { + "flush-write-stream": "^1.0.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/liftoff": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz", + "integrity": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==", + "dev": true, + "license": "MIT", + "dependencies": { + "extend": "^3.0.0", + "findup-sync": "^3.0.0", + "fined": "^1.0.1", + "flagged-respawn": "^1.0.0", + "is-plain-object": "^2.0.4", + "object.map": "^1.0.0", + "rechoir": "^0.6.2", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/liftoff/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/load-json-file/node_modules/strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-utf8": "^0.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.flattendeep": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz", + "integrity": "sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.get": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", + "integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==", + "deprecated": "This package is deprecated. Use the optional chaining (?.) operator instead.", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/loupe": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.1.0.tgz", + "integrity": "sha512-qKl+FrLXUhFuHUoDJG7f8P8gEMHq9NFS0c6ghXG1J0rldmZFQZoNVv/vyirE9qwCIhWZDsvEFd1sbFu3GvRQFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-func-name": "^2.0.1" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true, + "license": "ISC" + }, + "node_modules/make-iterator": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", + "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", + "dev": true, + "license": "MIT", + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/make-iterator/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", + "dev": true, + "license": "MIT", + "dependencies": { + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matchdep": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz", + "integrity": "sha512-LFgVbaHIHMqCRuCZyfCtUOq9/Lnzhi7Z0KFUE2fhD54+JN2jLh3hC02RLkqauJ3U4soU6H1J3tfj/Byk7GoEjA==", + "dev": true, + "license": "MIT", + "dependencies": { + "findup-sync": "^2.0.0", + "micromatch": "^3.0.4", + "resolve": "^1.4.0", + "stack-trace": "0.0.10" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/matchdep/node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matchdep/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matchdep/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matchdep/node_modules/findup-sync": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", + "integrity": "sha512-vs+3unmJT45eczmcAZ6zMJtxN3l/QXeccaXQx5cu/MeJMhewVfoWZqibRkOxPnmoR59+Zy5hjabfQc6JLSah4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "detect-file": "^1.0.0", + "is-glob": "^3.1.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/matchdep/node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/matchdep/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matchdep/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matchdep/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matchdep/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matchdep/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "license": "MIT", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true, + "license": "MIT" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/micromatch/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/micromatch/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/micromatch/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/micromatch/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "license": "MIT", + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-deep/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-deep/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/mocha": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.4.0.tgz", + "integrity": "sha512-eqhGB8JKapEYcC4ytX/xrzKforgEc3j1pGlAXVy3eRwrtAy5/nIfT1SvgGzfN0XZZxeLq0aQWkOUAmqIJiv+bA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-colors": "4.1.1", + "browser-stdout": "1.3.1", + "chokidar": "3.5.3", + "debug": "4.3.4", + "diff": "5.0.0", + "escape-string-regexp": "4.0.0", + "find-up": "5.0.0", + "glob": "8.1.0", + "he": "1.2.0", + "js-yaml": "4.1.0", + "log-symbols": "4.1.0", + "minimatch": "5.0.1", + "ms": "2.1.3", + "serialize-javascript": "6.0.0", + "strip-json-comments": "3.1.1", + "supports-color": "8.1.1", + "workerpool": "6.2.1", + "yargs": "16.2.0", + "yargs-parser": "20.2.4", + "yargs-unparser": "2.0.0" + }, + "bin": { + "_mocha": "bin/_mocha", + "mocha": "bin/mocha.js" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/mocha/node_modules/ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/mocha/node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/mocha/node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mocha/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/mocha/node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/mocha/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/mocha/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/mocha/node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/mocha/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/mocha/node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/mocha/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/mocha/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/mocha/node_modules/minimatch": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.0.1.tgz", + "integrity": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/mocha/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/mocha/node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/mocha/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/mocha/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/mocha/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/mocha/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/mocha/node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/mocha/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "license": "MIT", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/mute-stdout": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-1.0.1.tgz", + "integrity": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "license": "MIT", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/nanomatch/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true, + "license": "MIT" + }, + "node_modules/next-tick": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", + "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/nise": { + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/nise/-/nise-5.1.9.tgz", + "integrity": "sha512-qOnoujW4SV6e40dYxJOb3uvuoPHtmLzIk4TFo+j0jPJoC+5Z9xja5qH5JZobEPsa8+YYphMrOSwnrshEhG2qww==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^3.0.0", + "@sinonjs/fake-timers": "^11.2.2", + "@sinonjs/text-encoding": "^0.7.2", + "just-extend": "^6.2.0", + "path-to-regexp": "^6.2.1" + } + }, + "node_modules/node-preload": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/node-preload/-/node-preload-0.2.1.tgz", + "integrity": "sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "process-on-spawn": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "dev": true, + "license": "MIT" + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/now-and-later": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz", + "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "once": "^1.3.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nyc": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/nyc/-/nyc-15.1.0.tgz", + "integrity": "sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==", + "dev": true, + "license": "ISC", + "dependencies": { + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "caching-transform": "^4.0.0", + "convert-source-map": "^1.7.0", + "decamelize": "^1.2.0", + "find-cache-dir": "^3.2.0", + "find-up": "^4.1.0", + "foreground-child": "^2.0.0", + "get-package-type": "^0.1.0", + "glob": "^7.1.6", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-hook": "^3.0.0", + "istanbul-lib-instrument": "^4.0.0", + "istanbul-lib-processinfo": "^2.0.2", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.0.2", + "make-dir": "^3.0.0", + "node-preload": "^0.2.1", + "p-map": "^3.0.0", + "process-on-spawn": "^1.0.0", + "resolve-from": "^5.0.0", + "rimraf": "^3.0.0", + "signal-exit": "^3.0.2", + "spawn-wrap": "^2.0.0", + "test-exclude": "^6.0.0", + "yargs": "^15.0.2" + }, + "bin": { + "nyc": "bin/nyc.js" + }, + "engines": { + "node": ">=8.9" + } + }, + "node_modules/nyc/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/nyc/node_modules/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/nyc/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nyc/node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/nyc/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/nyc/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/nyc/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nyc/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/nyc/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/nyc/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nyc/node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true, + "license": "ISC" + }, + "node_modules/nyc/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/nyc/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nyc/node_modules/which-module": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/nyc/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nyc/node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/nyc/node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nyc/node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "dev": true, + "license": "MIT", + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.defaults": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", + "integrity": "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-each": "^1.0.1", + "array-slice": "^1.0.0", + "for-own": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", + "integrity": "sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.reduce": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz", + "integrity": "sha512-naLhxxpUESbNkRqc35oQ2scZSJueHGQNUfMW/0U37IgN6tE2dgDWg3whf+NEliy3F/QysrO48XKUz/nGPe+AQw==", + "dev": true, + "license": "MIT", + "dependencies": { + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/ordered-read-streams": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", + "integrity": "sha512-Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==", + "dev": true, + "license": "MIT", + "dependencies": { + "readable-stream": "^2.0.1" + } + }, + "node_modules/os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "lcid": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/os-shim": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/os-shim/-/os-shim-0.1.3.tgz", + "integrity": "sha512-jd0cvB8qQ5uVt0lvCIexBaROw1KyKm5sbulg2fWOHjETisuCzWyt+eTZKEMs8v6HwzoGs8xik26jg7eCM6pS+A==", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz", + "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/package-hash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/package-hash/-/package-hash-4.0.0.tgz", + "integrity": "sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "graceful-fs": "^4.1.15", + "hasha": "^5.0.0", + "lodash.flattendeep": "^4.4.0", + "release-zalgo": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-filepath": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", + "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-absolute": "^1.0.0", + "map-cache": "^0.2.0", + "path-root": "^0.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "error-ex": "^1.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-root": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", + "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-root-regex": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-root-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", + "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-to-regexp": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.1.tgz", + "integrity": "sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/pathval": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.0.tgz", + "integrity": "sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.16" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/plugin-error": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-0.1.2.tgz", + "integrity": "sha512-WzZHcm4+GO34sjFMxQMqZbsz3xiNEgonCskQ9v+IroMmYgk/tas8dG+Hr2D6IbRPybZ12oWpzE/w3cGJ6FJzOw==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-cyan": "^0.1.1", + "ansi-red": "^0.1.1", + "arr-diff": "^1.0.1", + "arr-union": "^2.0.1", + "extend-shallow": "^1.1.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/plugin-error/node_modules/extend-shallow": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-1.1.4.tgz", + "integrity": "sha512-L7AGmkO6jhDkEBBGWlLtftA80Xq8DipnrRPr0pyi7GQLXkaq9JYA4xF4z6qnadIC6euiTDKco0cGSU9muw+WTw==", + "dev": true, + "license": "MIT", + "dependencies": { + "kind-of": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/plugin-error/node_modules/kind-of": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz", + "integrity": "sha512-aUH6ElPnMGon2/YkxRIigV32MOpTVcoXQ1Oo8aYn40s+sJ3j+0gFZsT8HKDcxNy7Fi9zuquWtGaGAahOdv5p/g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pre-commit": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/pre-commit/-/pre-commit-1.2.2.tgz", + "integrity": "sha512-qokTiqxD6GjODy5ETAIgzsRgnBWWQHQH2ghy86PU7mIn/wuWeTwF3otyNQZxWBwVn8XNr8Tdzj/QfUXpH+gRZA==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "cross-spawn": "^5.0.1", + "spawn-sync": "^1.0.15", + "which": "1.2.x" + } + }, + "node_modules/pre-commit/node_modules/cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "node_modules/pre-commit/node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "license": "ISC", + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/pre-commit/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pre-commit/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pre-commit/node_modules/which": { + "version": "1.2.14", + "resolved": "https://registry.npmjs.org/which/-/which-1.2.14.tgz", + "integrity": "sha512-16uPglFkRPzgiUXYMi1Jf8Z5EzN1iB4V0ZtMXcHZnwsBtQhhHeCqoWw7tsUY42hJGNDWtUsVLTjakIa5BgAxCw==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/pre-commit/node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true, + "license": "ISC" + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pretty-hrtime": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", + "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true, + "license": "MIT" + }, + "node_modules/process-on-spawn": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/process-on-spawn/-/process-on-spawn-1.0.0.tgz", + "integrity": "sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==", + "dev": true, + "license": "MIT", + "dependencies": { + "fromentries": "^1.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", + "dev": true, + "license": "MIT", + "dependencies": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg-up/node_modules/find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg-up/node_modules/path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg/node_modules/path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readable-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true, + "license": "MIT" + }, + "node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/readdirp/node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/readdirp/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "license": "MIT", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", + "dev": true, + "dependencies": { + "resolve": "^1.1.6" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "license": "MIT", + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/release-zalgo": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/release-zalgo/-/release-zalgo-1.0.0.tgz", + "integrity": "sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==", + "dev": true, + "license": "ISC", + "dependencies": { + "es6-error": "^4.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/remove-bom-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz", + "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-buffer": "^1.1.5", + "is-utf8": "^0.2.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/remove-bom-stream": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz", + "integrity": "sha512-wigO8/O08XHb8YPzpDDT+QmRANfW6vLqxfaXm1YXhnFf3AkSLyjfG3GEFg4McZkmgL7KvCj5u2KczkvSP6NfHA==", + "dev": true, + "license": "MIT", + "dependencies": { + "remove-bom-buffer": "^3.0.0", + "safe-buffer": "^5.1.0", + "through2": "^2.0.3" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", + "dev": true, + "license": "ISC" + }, + "node_modules/repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/replace-homedir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz", + "integrity": "sha512-CHPV/GAglbIB1tnQgaiysb8H2yCy8WQ7lcEwQ/eT+kLj0QHV8LnJW0zpqpE7RSkrMSRoa+EBoag86clf7WAgSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "homedir-polyfill": "^1.0.1", + "is-absolute": "^1.0.0", + "remove-trailing-separator": "^1.1.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==", + "dev": true, + "license": "ISC" + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-cwd/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-options": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz", + "integrity": "sha512-NYDgziiroVeDC29xq7bp/CacZERYsA9bXYd1ZmcJlF3BcrZv5pTb4NG7SjdyKDnXZ84aC4vo2u6sNKIA1LCu/A==", + "dev": true, + "license": "MIT", + "dependencies": { + "value-or-function": "^3.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", + "deprecated": "https://github.com/lydell/resolve-url#deprecated", + "dev": true, + "license": "MIT" + }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rimraf/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/rimraf/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rimraf/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ret": "~0.1.10" + } + }, + "node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver-greatest-satisfied-range": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz", + "integrity": "sha512-Ny/iyOzSSa8M5ML46IAx3iXc6tfOsYU2R4AXi2UpHk60Zrgyq6eqPj/xiOfS0rRl/iiQ/rdJkVjw/5cdUyCntQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "sver-compat": "^1.5.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true, + "license": "ISC" + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "license": "MIT", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dev": true, + "license": "MIT", + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shallow-clone/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/sinon": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/sinon/-/sinon-17.0.1.tgz", + "integrity": "sha512-wmwE19Lie0MLT+ZYNpDymasPHUKTaZHUH/pKEubRXIzySv9Atnlw+BUMGCzWgV7b7wO+Hw6f1TEOr0IUnmU8/g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^3.0.0", + "@sinonjs/fake-timers": "^11.2.2", + "@sinonjs/samsam": "^8.0.0", + "diff": "^5.1.0", + "nise": "^5.1.5", + "supports-color": "^7.2.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/sinon" + } + }, + "node_modules/sinon/node_modules/diff": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", + "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "license": "MIT", + "dependencies": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "kind-of": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/snapdragon/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true, + "license": "MIT" + }, + "node_modules/snapdragon/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", + "dev": true, + "license": "MIT", + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "deprecated": "See https://github.com/lydell/source-map-url#deprecated", + "dev": true, + "license": "MIT" + }, + "node_modules/sparkles": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz", + "integrity": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/spawn-sync": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/spawn-sync/-/spawn-sync-1.0.15.tgz", + "integrity": "sha512-9DWBgrgYZzNghseho0JOuh+5fg9u6QWhAWa51QC7+U5rCheZ/j1DrEZnyE0RBBRqZ9uEXGPgSSM0nky6burpVw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "concat-stream": "^1.4.7", + "os-shim": "^0.1.2" + } + }, + "node_modules/spawn-wrap": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/spawn-wrap/-/spawn-wrap-2.0.0.tgz", + "integrity": "sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==", + "dev": true, + "license": "ISC", + "dependencies": { + "foreground-child": "^2.0.0", + "is-windows": "^1.0.2", + "make-dir": "^3.0.0", + "rimraf": "^3.0.0", + "signal-exit": "^3.0.2", + "which": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", + "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", + "dev": true, + "license": "CC-BY-3.0" + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.17", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz", + "integrity": "sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==", + "dev": true, + "license": "CC0-1.0" + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/stack-trace": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", + "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stream-exhaust": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz", + "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==", + "dev": true, + "license": "MIT" + }, + "node_modules/stream-shift": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.3.tgz", + "integrity": "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/streamqueue": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/streamqueue/-/streamqueue-0.0.6.tgz", + "integrity": "sha512-l09LNfTUkmLMckTB1Mm8Um5GMS1uTZ/KTodg/SMf5Nx758IOsmaqIQ/AJumAnNMkDgZBG39btq3LVkN90knq8w==", + "dev": true, + "dependencies": { + "readable-stream": "^1.0.26-2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/streamqueue/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/streamqueue/node_modules/readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "node_modules/streamqueue/node_modules/string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true, + "license": "MIT" + }, + "node_modules/string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", + "dev": true, + "license": "MIT", + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/sver-compat": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz", + "integrity": "sha512-aFTHfmjwizMNlNE6dsGmoAM4lHjL0CyiobWaFiXWSlD7cIxshW422Nb8KbXCmR6z+0ZEPY+daXJrDyh/vuwTyg==", + "dev": true, + "license": "MIT", + "dependencies": { + "es6-iterator": "^2.0.1", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/terser": { + "version": "5.30.2", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.30.2.tgz", + "integrity": "sha512-vTDjRKYKip4dOFL5VizdoxHTYDfEXPdz5t+FbxCC5Rp2s+KbEO8w5wqMDPgj7CtFKZuzq7PXv28fZoXfqqBVuw==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.10", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", + "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.20", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.26.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "license": "ISC", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/test-exclude/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/test-exclude/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/test-exclude/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/through2-filter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz", + "integrity": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==", + "dev": true, + "license": "MIT", + "dependencies": { + "through2": "~2.0.0", + "xtend": "~4.0.0" + } + }, + "node_modules/time-stamp": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", + "integrity": "sha512-gLCeArryy2yNTRzTGKbZbloctj64jkZ57hj5zdraXue6aFgd6PmvVtEyiUU+hvU0v7q08oVv8r8ev0tRo6bvgw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-absolute-glob": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", + "integrity": "sha512-rtwLUQEwT8ZeKQbyFJyomBRYXyE16U5VKuy0ftxLMK/PZb2fkOsg5r9kHdauuVDbsNdIBoC/HCthpidamQFXYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-absolute": "^1.0.0", + "is-negated-glob": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "dev": true, + "license": "MIT", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/to-regex/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-through": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz", + "integrity": "sha512-+QIz37Ly7acM4EMdw2PRN389OneM5+d844tirkGp4dPKzI5OE72V9OsbFp+CIYJDahZ41ZV05hNtcPAQUAm9/Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "through2": "^2.0.3" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/ts-api-utils": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", + "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=16" + }, + "peerDependencies": { + "typescript": ">=4.2.0" + } + }, + "node_modules/ts-node": { + "version": "10.9.2", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", + "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } + } + }, + "node_modules/ts-node/node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/ts-sinon": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ts-sinon/-/ts-sinon-2.0.2.tgz", + "integrity": "sha512-Eh6rXPQruACHPn+/e5HsIMaHZa17tGP/scGjUeW5eJ/Levn8hBV6zSP/6QkEDUP7wLkTyY0yeYikjpTzgC9Gew==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "^14.6.1", + "@types/sinon": "^9.0.5", + "@types/sinon-chai": "^3.2.4", + "sinon": "^9.0.3" + } + }, + "node_modules/ts-sinon/node_modules/@sinonjs/commons": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/ts-sinon/node_modules/@sinonjs/fake-timers": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz", + "integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/ts-sinon/node_modules/@sinonjs/samsam": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-5.3.1.tgz", + "integrity": "sha512-1Hc0b1TtyfBu8ixF/tpfSHTVWKwCBLY4QJbkgnE7HcwyvT2xArDxb4K7dMgqRm3szI+LJbzmW/s4xxEhv6hwDg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^1.6.0", + "lodash.get": "^4.4.2", + "type-detect": "^4.0.8" + } + }, + "node_modules/ts-sinon/node_modules/@types/node": { + "version": "14.18.63", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.63.tgz", + "integrity": "sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/ts-sinon/node_modules/@types/sinon": { + "version": "9.0.11", + "resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-9.0.11.tgz", + "integrity": "sha512-PwP4UY33SeeVKodNE37ZlOsR9cReypbMJOhZ7BVE0lB+Hix3efCOxiJWiE5Ia+yL9Cn2Ch72EjFTRze8RZsNtg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/sinonjs__fake-timers": "*" + } + }, + "node_modules/ts-sinon/node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/ts-sinon/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/ts-sinon/node_modules/just-extend": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/just-extend/-/just-extend-4.2.1.tgz", + "integrity": "sha512-g3UB796vUFIY90VIv/WX3L2c8CS2MdWUww3CNrYmqza1Fg0DURc2K/O4YrnklBdQarSJ/y8JnJYDGc+1iumQjg==", + "dev": true, + "license": "MIT" + }, + "node_modules/ts-sinon/node_modules/nise": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/nise/-/nise-4.1.0.tgz", + "integrity": "sha512-eQMEmGN/8arp0xsvGoQ+B1qvSkR73B1nWSCh7nOt5neMCtwcQVYQGdzQMhcNscktTsWB54xnlSQFzOAPJD8nXA==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^1.7.0", + "@sinonjs/fake-timers": "^6.0.0", + "@sinonjs/text-encoding": "^0.7.1", + "just-extend": "^4.0.2", + "path-to-regexp": "^1.7.0" + } + }, + "node_modules/ts-sinon/node_modules/path-to-regexp": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "dev": true, + "license": "MIT", + "dependencies": { + "isarray": "0.0.1" + } + }, + "node_modules/ts-sinon/node_modules/sinon": { + "version": "9.2.4", + "resolved": "https://registry.npmjs.org/sinon/-/sinon-9.2.4.tgz", + "integrity": "sha512-zljcULZQsJxVra28qIAL6ow1Z9tpattkCTEJR4RBP3TGc00FcttsP5pK284Nas5WjMZU5Yzy3kAIp3B3KRf5Yg==", + "deprecated": "16.1.1", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^1.8.1", + "@sinonjs/fake-timers": "^6.0.1", + "@sinonjs/samsam": "^5.3.1", + "diff": "^4.0.2", + "nise": "^4.0.4", + "supports-color": "^7.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/sinon" + } + }, + "node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true, + "license": "0BSD" + }, + "node_modules/tslint": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/tslint/-/tslint-6.1.3.tgz", + "integrity": "sha512-IbR4nkT96EQOvKE2PW/djGz8iGNeJ4rF2mBfiYaR/nvUWYKJhLwimoJKgjIFEIDibBtOevj7BqCRL4oHeWWUCg==", + "deprecated": "TSLint has been deprecated in favor of ESLint. Please see https://github.com/palantir/tslint/issues/4534 for more information.", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "builtin-modules": "^1.1.1", + "chalk": "^2.3.0", + "commander": "^2.12.1", + "diff": "^4.0.1", + "glob": "^7.1.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "mkdirp": "^0.5.3", + "resolve": "^1.3.2", + "semver": "^5.3.0", + "tslib": "^1.13.0", + "tsutils": "^2.29.0" + }, + "bin": { + "tslint": "bin/tslint" + }, + "engines": { + "node": ">=4.8.0" + }, + "peerDependencies": { + "typescript": ">=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev || >= 4.0.0-dev" + } + }, + "node_modules/tslint/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/tslint/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/tslint/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/tslint/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/tslint/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/tslint/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true, + "license": "MIT" + }, + "node_modules/tslint/node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/tslint/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/tslint/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/tslint/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/tslint/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/tslint/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/tslint/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/tslint/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/tsutils": { + "version": "2.29.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz", + "integrity": "sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "tslib": "^1.8.1" + }, + "peerDependencies": { + "typescript": ">=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >= 3.0.0-dev || >= 3.1.0-dev" + } + }, + "node_modules/type": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", + "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==", + "dev": true, + "license": "ISC" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/typescript": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", + "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/unc-path-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", + "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/undertaker": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/undertaker/-/undertaker-1.3.0.tgz", + "integrity": "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "arr-flatten": "^1.0.1", + "arr-map": "^2.0.0", + "bach": "^1.0.0", + "collection-map": "^1.0.0", + "es6-weak-map": "^2.0.1", + "fast-levenshtein": "^1.0.0", + "last-run": "^1.1.0", + "object.defaults": "^1.0.0", + "object.reduce": "^1.0.0", + "undertaker-registry": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/undertaker-registry": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz", + "integrity": "sha512-UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/undertaker/node_modules/fast-levenshtein": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz", + "integrity": "sha512-Ia0sQNrMPXXkqVFt6w6M1n1oKo3NfKs+mvaV811Jwir7vAk9a6PVV9VPYf6X3BU97QiLEmuW3uXH9u87zDFfdw==", + "dev": true, + "license": "MIT" + }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true, + "license": "MIT" + }, + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "license": "MIT", + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/union-value/node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unique-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz", + "integrity": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-stable-stringify-without-jsonify": "^1.0.1", + "through2-filter": "^3.0.0" + } + }, + "node_modules/unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "dev": true, + "license": "MIT", + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", + "deprecated": "Please see https://github.com/lydell/urix#deprecated", + "dev": true, + "license": "MIT" + }, + "node_modules/use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true, + "license": "MIT" + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "dev": true, + "license": "MIT" + }, + "node_modules/v8flags": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz", + "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==", + "dev": true, + "license": "MIT", + "dependencies": { + "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/value-or-function": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz", + "integrity": "sha512-jdBB2FrWvQC/pnPtIqcLsMaQgjhdb6B7tk1MMyTKapox+tQZbdRP4uLxu/JY0t7fbfDCUMnuelzEYv5GsxHhdg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-fs": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz", + "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==", + "dev": true, + "license": "MIT", + "dependencies": { + "fs-mkdirp-stream": "^1.0.0", + "glob-stream": "^6.1.0", + "graceful-fs": "^4.0.0", + "is-valid-glob": "^1.0.0", + "lazystream": "^1.0.0", + "lead": "^1.0.0", + "object.assign": "^4.0.4", + "pumpify": "^1.3.5", + "readable-stream": "^2.3.3", + "remove-bom-buffer": "^3.0.0", + "remove-bom-stream": "^1.2.0", + "resolve-options": "^1.1.0", + "through2": "^2.0.0", + "to-through": "^2.0.0", + "value-or-function": "^3.0.0", + "vinyl": "^2.0.0", + "vinyl-sourcemap": "^1.1.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-sourcemap": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz", + "integrity": "sha512-NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA==", + "dev": true, + "license": "MIT", + "dependencies": { + "append-buffer": "^1.0.2", + "convert-source-map": "^1.5.0", + "graceful-fs": "^4.1.6", + "normalize-path": "^2.1.1", + "now-and-later": "^2.0.0", + "remove-bom-buffer": "^3.0.0", + "vinyl": "^2.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-sourcemap/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.1.tgz", + "integrity": "sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==", + "dev": true, + "license": "MIT", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack": { + "version": "5.91.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.91.0.tgz", + "integrity": "sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.5", + "@webassemblyjs/ast": "^1.12.1", + "@webassemblyjs/wasm-edit": "^1.12.1", + "@webassemblyjs/wasm-parser": "^1.12.1", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", + "browserslist": "^4.21.10", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.16.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.11", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.10", + "watchpack": "^2.4.1", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-cli": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-5.1.4.tgz", + "integrity": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^2.1.1", + "@webpack-cli/info": "^2.0.2", + "@webpack-cli/serve": "^2.0.5", + "colorette": "^2.0.14", + "commander": "^10.0.1", + "cross-spawn": "^7.0.3", + "envinfo": "^7.7.3", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^3.1.1", + "rechoir": "^0.8.0", + "webpack-merge": "^5.7.3" + }, + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "5.x.x" + }, + "peerDependenciesMeta": { + "@webpack-cli/generators": { + "optional": true + }, + "webpack-bundle-analyzer": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/webpack-cli/node_modules/commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + } + }, + "node_modules/webpack-cli/node_modules/interpret": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz", + "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack-cli/node_modules/rechoir": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", + "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve": "^1.20.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/webpack-merge": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", + "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", + "dev": true, + "license": "MIT", + "dependencies": { + "clone-deep": "^4.0.1", + "flat": "^5.0.2", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/webpack/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", + "integrity": "sha512-F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/wildcard": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", + "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/workerpool": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.2.1.tgz", + "integrity": "sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==", + "dev": true, + "license": "MIT", + "dependencies": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", + "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/yargs": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.2.tgz", + "integrity": "sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "camelcase": "^3.0.0", + "cliui": "^3.2.0", + "decamelize": "^1.1.1", + "get-caller-file": "^1.0.1", + "os-locale": "^1.4.0", + "read-pkg-up": "^1.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^1.0.2", + "which-module": "^1.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^5.0.1" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.4", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz", + "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-unparser": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", + "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", + "dev": true, + "license": "MIT", + "dependencies": { + "camelcase": "^6.0.0", + "decamelize": "^4.0.0", + "flat": "^5.0.2", + "is-plain-obj": "^2.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-unparser/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yargs-unparser/node_modules/decamelize": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", + "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yargs/node_modules/camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yargs/node_modules/yargs-parser": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.1.tgz", + "integrity": "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==", + "dev": true, + "license": "ISC", + "dependencies": { + "camelcase": "^3.0.0", + "object.assign": "^4.1.0" + } + }, + "node_modules/yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/package.json b/package.json index c1ebad9d6..3bdca4388 100644 --- a/package.json +++ b/package.json @@ -13,14 +13,6 @@ "import": "./lib/cjs/templates/components/index.js", "require": "./lib/cjs/templates/components/index.js" }, - "./bootstrap3": { - "import": "./lib/cjs/bootstrap3.js", - "require": "./lib/cjs/bootstrap3.js" - }, - "./bootstrap4": { - "import": "./lib/cjs/bootstrap4.js", - "require": "./lib/cjs/bootstrap4.js" - }, "./bootstrap5": { "import": "./lib/cjs/bootstrap5.js", "require": "./lib/cjs/bootstrap5.js" @@ -28,12 +20,6 @@ }, "typesVersions": { "*": { - "bootstrap3": [ - "lib/mjs/bootstrap3.d.ts" - ], - "bootstrap4": [ - "lib/mjs/bootstrap4.d.ts" - ], "bootstrap5": [ "lib/mjs/bootstrap5.d.ts" ] diff --git a/src/bootstrap3.ts b/src/bootstrap3.ts deleted file mode 100644 index 40362b333..000000000 --- a/src/bootstrap3.ts +++ /dev/null @@ -1,7 +0,0 @@ -import bootstrap3 from './templates/bootstrap3'; -export default { - framework: 'bootstrap3', - templates: { - bootstrap3 - }, -}; diff --git a/src/bootstrap4.ts b/src/bootstrap4.ts deleted file mode 100644 index 6d4fc3b8b..000000000 --- a/src/bootstrap4.ts +++ /dev/null @@ -1,7 +0,0 @@ -import bootstrap4 from './templates/bootstrap4'; -export default { - framework: 'bootstrap4', - templates: { - bootstrap4 - }, -}; \ No newline at end of file diff --git a/src/templates/bootstrap3/alert/form.ejs b/src/templates/bootstrap3/alert/form.ejs deleted file mode 100644 index 4fc64a278..000000000 --- a/src/templates/bootstrap3/alert/form.ejs +++ /dev/null @@ -1,5 +0,0 @@ -
    {{ctx.message}}
    diff --git a/src/templates/bootstrap3/alert/index.ts b/src/templates/bootstrap3/alert/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/alert/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/builder/form.ejs b/src/templates/bootstrap3/builder/form.ejs deleted file mode 100644 index 28fe65559..000000000 --- a/src/templates/bootstrap3/builder/form.ejs +++ /dev/null @@ -1,8 +0,0 @@ -
    -
    - {{ctx.sidebar}} -
    -
    - {{ctx.form}} -
    -
    diff --git a/src/templates/bootstrap3/builder/index.ts b/src/templates/bootstrap3/builder/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/builder/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/builderComponent/form.ejs b/src/templates/bootstrap3/builderComponent/form.ejs deleted file mode 100644 index ccb167e48..000000000 --- a/src/templates/bootstrap3/builderComponent/form.ejs +++ /dev/null @@ -1,25 +0,0 @@ -
    - {% if (!ctx.disableBuilderActions) { %} -
    -
    - -
    -
    - -
    -
    - -
    -
    - -
    -
    - -
    -
    - -
    -
    - {% } %} - {{ctx.html}} -
    diff --git a/src/templates/bootstrap3/builderComponent/index.ts b/src/templates/bootstrap3/builderComponent/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/builderComponent/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/builderComponents/form.ejs b/src/templates/bootstrap3/builderComponents/form.ejs deleted file mode 100644 index f38edf991..000000000 --- a/src/templates/bootstrap3/builderComponents/form.ejs +++ /dev/null @@ -1,3 +0,0 @@ -
    - {{ctx.html}} -
    diff --git a/src/templates/bootstrap3/builderComponents/index.ts b/src/templates/bootstrap3/builderComponents/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/builderComponents/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/builderEditForm/form.ejs b/src/templates/bootstrap3/builderEditForm/form.ejs deleted file mode 100644 index cd10a50d6..000000000 --- a/src/templates/bootstrap3/builderEditForm/form.ejs +++ /dev/null @@ -1,52 +0,0 @@ -
    -
    -

    {{ctx.t(ctx.componentInfo.title, { _userInput: true })}} {{ctx.t('Component')}}

    -
    - {% if (ctx.helplinks) { %} - -{% } %} -
    -
    -
    -
    - {{ctx.editForm}} -
    - {% if (!ctx.preview) { %} -
    - - - -
    - {% } %} -
    - {% if (ctx.preview) { %} -
    -
    -
    -

    {{ctx.t('Preview')}}

    -
    -
    -
    - {{ctx.preview}} -
    -
    -
    - {% if (ctx.componentInfo.help) { %} -
    - {{ ctx.componentInfo.help }} -
    - {% } %} -
    - - - -
    -
    - {% } %} -
    diff --git a/src/templates/bootstrap3/builderEditForm/index.ts b/src/templates/bootstrap3/builderEditForm/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/builderEditForm/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/builderPlaceholder/form.ejs b/src/templates/bootstrap3/builderPlaceholder/form.ejs deleted file mode 100644 index 1d439ceca..000000000 --- a/src/templates/bootstrap3/builderPlaceholder/form.ejs +++ /dev/null @@ -1,9 +0,0 @@ - diff --git a/src/templates/bootstrap3/builderPlaceholder/index.ts b/src/templates/bootstrap3/builderPlaceholder/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/builderPlaceholder/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/builderSidebar/form.ejs b/src/templates/bootstrap3/builderSidebar/form.ejs deleted file mode 100644 index f47612713..000000000 --- a/src/templates/bootstrap3/builderSidebar/form.ejs +++ /dev/null @@ -1,8 +0,0 @@ -
    - -
    - {% ctx.groups.forEach(function(group) { %} - {{ group }} - {% }) %} -
    -
    diff --git a/src/templates/bootstrap3/builderSidebar/index.ts b/src/templates/bootstrap3/builderSidebar/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/builderSidebar/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/builderSidebarGroup/form.ejs b/src/templates/bootstrap3/builderSidebarGroup/form.ejs deleted file mode 100644 index a4a523e41..000000000 --- a/src/templates/bootstrap3/builderSidebarGroup/form.ejs +++ /dev/null @@ -1,46 +0,0 @@ -
    -
    -
    - -
    -
    -
    -
    - {% if (ctx.group.componentOrder.length || ctx.subgroups.length) { %} - {% ctx.group.componentOrder.forEach(function(componentKey) { %} - - {% if (ctx.group.components[componentKey].icon) { %} - - {% } %} - {{ctx.t(ctx.group.components[componentKey].title, { _userInput: true })}} - - {% }) %} - {{ctx.subgroups.join('')}} - {% } else { %} -
    {{ctx.t('No Matches Found')}}
    - {% } %} -
    -
    -
    - diff --git a/src/templates/bootstrap3/builderSidebarGroup/index.ts b/src/templates/bootstrap3/builderSidebarGroup/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/builderSidebarGroup/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/column-menu/html.ejs b/src/templates/bootstrap3/column-menu/html.ejs deleted file mode 100644 index e5d956276..000000000 --- a/src/templates/bootstrap3/column-menu/html.ejs +++ /dev/null @@ -1,56 +0,0 @@ -
    - -
    diff --git a/src/templates/bootstrap3/column-menu/index.ts b/src/templates/bootstrap3/column-menu/index.ts deleted file mode 100644 index 44f9505b1..000000000 --- a/src/templates/bootstrap3/column-menu/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -import html from './html.ejs'; -export default { html }; \ No newline at end of file diff --git a/src/templates/bootstrap3/columns/form.ejs b/src/templates/bootstrap3/columns/form.ejs deleted file mode 100644 index e1fa20a26..000000000 --- a/src/templates/bootstrap3/columns/form.ejs +++ /dev/null @@ -1,10 +0,0 @@ -{% ctx.component.columns.forEach(function(column, index) { %} -
    - {{ctx.columnComponents[index]}} -
    -{% }) %} diff --git a/src/templates/bootstrap3/columns/index.ts b/src/templates/bootstrap3/columns/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/columns/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/cssClasses.ts b/src/templates/bootstrap3/cssClasses.ts deleted file mode 100644 index 707969b42..000000000 --- a/src/templates/bootstrap3/cssClasses.ts +++ /dev/null @@ -1,5 +0,0 @@ -export default { - 'formio-tab-panel-active': 'active', - 'formio-tab-link-active': 'active', - 'formio-tab-link-container-active': 'active', -}; diff --git a/src/templates/bootstrap3/datagrid/form.ejs b/src/templates/bootstrap3/datagrid/form.ejs deleted file mode 100644 index 9da16a891..000000000 --- a/src/templates/bootstrap3/datagrid/form.ejs +++ /dev/null @@ -1,77 +0,0 @@ - - {% if (ctx.hasHeader) { %} - - - {% if (ctx.component.reorder) { %}{% } %} - {% ctx.columns.forEach(function(col) { %} - - {% }) %} - {% if (ctx.hasExtraColumn) { %} - - {% } %} - - - {% } %} - - {% ctx.rows.forEach(function(row, index) { %} - {% if (ctx.hasGroups && ctx.groups[index]) { %} - - - - {% } %} - - {% if (ctx.component.reorder) { %} - - {% } %} - {% ctx.columns.forEach(function(col) { %} - - {% }) %} - {% if (ctx.hasExtraColumn) { %} - {% if (ctx.hasRemoveButtons) { %} - - {% } %} - {% if (ctx.canAddColumn) { %} - - {% } %} - {% } %} - - {% }) %} - - {% if (ctx.hasAddButton && ctx.hasBottomSubmit) { %} - - - - - - {% } %} -
    - {{ col.hideLabel ? '' : ctx.t(col.label || col.title, { _userInput: true }) }} - {% if (col.tooltip) { %} {% } %} - - {% if (!ctx.builder && ctx.hasAddButton && ctx.hasTopSubmit) { %} - - {% } %} -
    {{ctx.groups[index].label}}
    - - - {{row[col.key]}} - - - - {{ctx.placeholder}} -
    - -
    diff --git a/src/templates/bootstrap3/datagrid/html.ejs b/src/templates/bootstrap3/datagrid/html.ejs deleted file mode 100644 index da835867a..000000000 --- a/src/templates/bootstrap3/datagrid/html.ejs +++ /dev/null @@ -1,29 +0,0 @@ - - {% if (hasHeader) { %} - - - {% columns.forEach(function(col) { %} - - {% }) %} - - - {% } %} - - {% rows.forEach(function(row) { %} - - {% columns.forEach(function(col) { %} - - {% }) %} - - {% }) %} - -
    - {{ col.hideLabel ? '' : t(col.label || col.title) }} - {% if (col.tooltip) { %} {% } %} -
    - {{row[col.key]}} -
    diff --git a/src/templates/bootstrap3/datagrid/index.ts b/src/templates/bootstrap3/datagrid/index.ts deleted file mode 100644 index 7f65740da..000000000 --- a/src/templates/bootstrap3/datagrid/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; - -export default { form, html }; diff --git a/src/templates/bootstrap3/day/form.ejs b/src/templates/bootstrap3/day/form.ejs deleted file mode 100644 index 73747beb1..000000000 --- a/src/templates/bootstrap3/day/form.ejs +++ /dev/null @@ -1,35 +0,0 @@ -
    - {% if (ctx.dayFirst && ctx.showDay) { %} -
    - {% if (!ctx.component.hideInputLabels) { %} - - {% } %} -
    {{ctx.day}}
    -
    - {% } %} - {% if (ctx.showMonth) { %} -
    - {% if (!ctx.component.hideInputLabels) { %} - - {% } %} -
    {{ctx.month}}
    -
    - {% } %} - {% if (!ctx.dayFirst && ctx.showDay) { %} -
    - {% if (!ctx.component.hideInputLabels) { %} - - {% } %} -
    {{ctx.day}}
    -
    - {% } %} - {% if (ctx.showYear) { %} -
    - {% if (!ctx.component.hideInputLabels) { %} - - {% } %} -
    {{ctx.year}}
    -
    - {% } %} -
    - diff --git a/src/templates/bootstrap3/day/index.ts b/src/templates/bootstrap3/day/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/day/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/dialog/form.ejs b/src/templates/bootstrap3/dialog/form.ejs deleted file mode 100644 index 974bb6ca3..000000000 --- a/src/templates/bootstrap3/dialog/form.ejs +++ /dev/null @@ -1,7 +0,0 @@ -
    -
    -
    -
    - -
    -
    diff --git a/src/templates/bootstrap3/dialog/index.ts b/src/templates/bootstrap3/dialog/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/dialog/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/editgrid/form.ejs b/src/templates/bootstrap3/editgrid/form.ejs deleted file mode 100644 index b6d2d9636..000000000 --- a/src/templates/bootstrap3/editgrid/form.ejs +++ /dev/null @@ -1,40 +0,0 @@ -
      - {% if (ctx.header) { %} -
    • - {{ctx.header}} -
    • - {% } %} - {% ctx.rows.forEach(function(row, rowIndex) { %} -
    • - {{row}} - {% if (ctx.openRows[rowIndex] && !ctx.readOnly) { %} -
      - - {% if (ctx.component.removeRow) { %} - - {% } %} -
      - {% } %} -
      -
      - {{ctx.errors[rowIndex]}} -
      -
      -
    • - {% }) %} - {% if (ctx.footer) { %} - - {% } %} -
    -{% if (!ctx.readOnly && ctx.hasAddButton) { %} - -{% } %} diff --git a/src/templates/bootstrap3/editgrid/html.ejs b/src/templates/bootstrap3/editgrid/html.ejs deleted file mode 100644 index 99835f763..000000000 --- a/src/templates/bootstrap3/editgrid/html.ejs +++ /dev/null @@ -1,35 +0,0 @@ -
      - {% if (ctx.header) { %} -
    • - {{ctx.header}} -
    • - {% } %} - {% ctx.rows.forEach(function(row, rowIndex) { %} -
    • - {{row}} - {% if (ctx.openRows[rowIndex] && !ctx.readOnly) { %} -
      - - {% if (ctx.component.removeRow) { %} - - {% } %} -
      - {% } %} -
      -
      - {{ctx.errors[rowIndex]}} -
      -
      -
    • - {% }) %} - {% if (ctx.footer) { %} - - {% } %} -
    diff --git a/src/templates/bootstrap3/editgrid/index.ts b/src/templates/bootstrap3/editgrid/index.ts deleted file mode 100644 index 7f65740da..000000000 --- a/src/templates/bootstrap3/editgrid/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; - -export default { form, html }; diff --git a/src/templates/bootstrap3/errorsList/form.ejs b/src/templates/bootstrap3/errorsList/form.ejs deleted file mode 100644 index 776fd0b3f..000000000 --- a/src/templates/bootstrap3/errorsList/form.ejs +++ /dev/null @@ -1,12 +0,0 @@ -

    {{ctx.t('error')}}

    -
      - {% ctx.errors.forEach(function(err) { %} -
    • {{err.message}}
    • - {% }) %} -
    diff --git a/src/templates/bootstrap3/errorsList/index.ts b/src/templates/bootstrap3/errorsList/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/errorsList/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/field/align.ejs b/src/templates/bootstrap3/field/align.ejs deleted file mode 100644 index dbdec1720..000000000 --- a/src/templates/bootstrap3/field/align.ejs +++ /dev/null @@ -1,26 +0,0 @@ -
    - {% if (!ctx.label.hidden) { %} -
    - {{ ctx.labelMarkup }} -
    - {% } %} - - {% if (ctx.label.hidden && ctx.label.className && ctx.component.validate.required) { %} -
    - -
    - {% } %} - -
    - {{ctx.element}} -
    -
    - -{% if (ctx.component.description) { %} -
    {{ctx.t(ctx.component.description, { _userInput: true })}}
    -{% } %} diff --git a/src/templates/bootstrap3/field/form.ejs b/src/templates/bootstrap3/field/form.ejs deleted file mode 100644 index 5bb426bbb..000000000 --- a/src/templates/bootstrap3/field/form.ejs +++ /dev/null @@ -1,15 +0,0 @@ -{% if (!ctx.label.hidden && ctx.label.labelPosition !== 'bottom') { %} - {{ ctx.labelMarkup }} -{% } %} - -{% if (ctx.label.hidden && ctx.label.className && ctx.component.validate.required) { %} - -{% } %} - -{{ctx.element}} -{% if (!ctx.label.hidden && ctx.label.labelPosition === 'bottom') { %} - {{ ctx.labelMarkup }} -{% } %} -{% if (ctx.component.description) { %} -
    {{ctx.t(ctx.component.description, { _userInput: true })}}
    -{% } %} diff --git a/src/templates/bootstrap3/field/index.ts b/src/templates/bootstrap3/field/index.ts deleted file mode 100644 index 07a2a3f1d..000000000 --- a/src/templates/bootstrap3/field/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import align from './align.ejs'; -import form from './form.ejs'; - -export default { align, form }; diff --git a/src/templates/bootstrap3/file/form.ejs b/src/templates/bootstrap3/file/form.ejs deleted file mode 100644 index 60b4e27ca..000000000 --- a/src/templates/bootstrap3/file/form.ejs +++ /dev/null @@ -1,119 +0,0 @@ -{% if (!ctx.self.imageUpload) { %} -
      - - {% ctx.files.forEach(function(file) { %} -
    • -
      - {% if (!ctx.disabled) { %} -
      - {% } %} -
      - {% if (ctx.component.uploadOnly) { %} - {{file.originalName || file.name}} - {% } else { %} - {{file.originalName || file.name}} - {% } %} -
      -
      {{ctx.fileSize(file.size)}}
      - {% if (ctx.self.hasTypes && !ctx.disabled) { %} -
      - -
      - {% } %} - {% if (ctx.self.hasTypes && ctx.disabled) { %} -
      {{file.fileType}}
      - {% } %} -
      -
    • - {% }) %} -
    -{% } else { %} -
    - {% ctx.files.forEach(function(file) { %} -
    - - {{file.originalName || file.name}} - {% if (!ctx.disabled) { %} - - {% } %} - -
    - {% }) %} -
    -{% } %} -{% if (!ctx.disabled && (ctx.component.multiple || !ctx.files.length)) { %} - {% if (ctx.self.useWebViewCamera) { %} -
    - - -
    - {% } else if (!ctx.self.cameraMode) { %} -
    - {{ctx.t('Drop files to attach,')}} - {% if (ctx.self.imageUpload && ctx.component.webcam) { %} - {{ctx.t('Use Camera,')}} - {% } %} - {{ctx.t('or')}} {{ctx.t('browse')}} -
    - {% } else { %} -
    - -
    - - - {% } %} -{% } %} -{% ctx.statuses.forEach(function(status) { %} -
    -
    -
    {{status.originalName}}
    -
    {{ctx.fileSize(status.size)}}
    -
    -
    -
    - {% if (status.status === 'progress') { %} -
    -
    - {{status.progress}}% {{ctx.t('Complete')}} -
    -
    - {% } else if (status.status === 'error'){ %} -
    {{ctx.t(status.message)}}
    - {% } else { %} -
    {{ctx.t(status.message)}}
    - {% } %} -
    -
    -
    -{% }) %} -{% if (!ctx.component.storage || ctx.support.hasWarning) { %} -
    - {% if (!ctx.component.storage) { %} -

    {{ctx.t('No storage has been set for this field. File uploads are disabled until storage is set up.')}}

    - {% } %} - {% if (!ctx.support.filereader) { %} -

    {{ctx.t('File API & FileReader API not supported.')}}

    - {% } %} - {% if (!ctx.support.formdata) { %} -

    {{ctx.t("XHR2's FormData is not supported.")}}

    - {% } %} - {% if (!ctx.support.progress) { %} -

    {{ctx.t("XHR2's upload progress isn't supported.")}}

    - {% } %} -
    -{% } %} \ No newline at end of file diff --git a/src/templates/bootstrap3/file/index.ts b/src/templates/bootstrap3/file/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/file/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/grid/html.ejs b/src/templates/bootstrap3/grid/html.ejs deleted file mode 100644 index 0868e2f43..000000000 --- a/src/templates/bootstrap3/grid/html.ejs +++ /dev/null @@ -1,75 +0,0 @@ -
    -
    - - - -
    - {% if (ctx.component.enableRowSelect) { %} -
    - {% if (ctx.selectedRows) { %} - {{ctx.selectedRows}} selected - {% } %} -
    - {% } %} -
    -
    -
    -
    -
    -
    - - - - {% if (!ctx.component.components.length) { %} - - {% } %} - {% if (ctx.component.enableRowSelect) { %} - - {% } %} - {% ctx.component.components.forEach(function(comp, i) { %} - {% if (comp.show) { %} - - {% } %} - {% }); %} - {% if ((ctx.component.showEditBtn || ctx.component.showDeleteBtn || ctx.component.showDeleteAllBtn) - && ctx.data.length - && !ctx.options.pdf) { %} - - {% } %} - - - -
    No components have been set up to display in the Data Table. "Table View" must be checked for components to render. - - ({{ctx.selectedRows}} of ) - - {{ comp.label || comp.key }} - {% if (ctx.options.sortable && comp.sortable) { %} - - {{ ctx.component.sort.isAsc ? '↑' : '↓' }} - - {% } %} - {% if (!ctx.options.hideMenu) { %} - - - - {% } %} - -
    - Actions - {% if (ctx.component.showDeleteAllBtn && ctx.data.length) { %} - - {% } %} -
    -
    -
    -
    -
    - {% if (ctx.component.showAddBtn && !ctx.options.pdf) { %} -
    +
    - {% } %} -
    -
    -
    diff --git a/src/templates/bootstrap3/grid/index.ts b/src/templates/bootstrap3/grid/index.ts deleted file mode 100644 index 6cc911a13..000000000 --- a/src/templates/bootstrap3/grid/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -import html from './html.ejs'; -export default { html }; \ No newline at end of file diff --git a/src/templates/bootstrap3/icon/form.ejs b/src/templates/bootstrap3/icon/form.ejs deleted file mode 100644 index d6715a0fc..000000000 --- a/src/templates/bootstrap3/icon/form.ejs +++ /dev/null @@ -1 +0,0 @@ -{{ctx.content}} diff --git a/src/templates/bootstrap3/icon/index.ts b/src/templates/bootstrap3/icon/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/icon/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/iconClass.ts b/src/templates/bootstrap3/iconClass.ts deleted file mode 100644 index 6f443e9a0..000000000 --- a/src/templates/bootstrap3/iconClass.ts +++ /dev/null @@ -1,36 +0,0 @@ -export default (iconset, name, spinning) => { - if (iconset === 'fa') { - switch (name) { - case 'save': - name = 'download'; - break; - case 'zoom-in': - name = 'search-plus'; - break; - case 'zoom-out': - name = 'search-minus'; - break; - case 'question-sign': - name = 'question-circle'; - break; - case 'remove-circle': - case 'circle-xmark': - name = 'times-circle-o'; - break; - case 'new-window': - name = 'window-restore'; - break; - case 'move': - name = 'arrows'; - break; - case 'ok-sign': - name = 'check-circle'; - break; - case 'remove-sign': - name = 'times-circle'; - break; - } - } - - return spinning ? `${iconset} ${iconset}-${name} ${iconset}-spin` : `${iconset} ${iconset}-${name}`; -}; diff --git a/src/templates/bootstrap3/index.ts b/src/templates/bootstrap3/index.ts deleted file mode 100644 index eb0437002..000000000 --- a/src/templates/bootstrap3/index.ts +++ /dev/null @@ -1,128 +0,0 @@ -import builder from './builder'; -import builderComponent from './builderComponent'; -import builderComponents from './builderComponents'; -import builderEditForm from './builderEditForm'; -import builderPlaceholder from './builderPlaceholder'; -import builderSidebar from './builderSidebar'; -import builderSidebarGroup from './builderSidebarGroup'; -import columns from './columns'; -import cssClasses from './cssClasses'; -import datagrid from './datagrid'; -import day from './day'; -import dialog from './dialog'; -import editgrid from './editgrid'; -import field from './field'; -import file from './file'; -import icon from './icon'; -import iconClass from './iconClass'; -import input from './input'; -import label from './label'; -import message from './message'; -import modaldialog from './modaldialog'; -import modaledit from './modaledit'; -import multiValueRow from './multiValueRow'; -import multiValueTable from './multiValueTable'; -import panel from './panel'; -import radio from './radio'; -import resourceAdd from './resourceAdd'; -import signature from './signature'; -import survey from './survey'; -import tab from './tab'; -import table from './table'; -import well from './well'; -import wizard from './wizard'; -import wizardHeader from './wizardHeader'; -import wizardHeaderClassic from './wizardHeaderClassic'; -import wizardHeaderVertical from './wizardHeaderVertical'; -import wizardNav from './wizardNav'; -import alert from './alert'; -import errorsList from './errorsList'; -import grid from './grid'; -import pagination from './pagination'; -import columnMenu from './column-menu'; -import tbody from './tbody'; -import paginationBottom from './pagination-bottom'; - -export default { - transform(type, text) { - if (!text) { - return text; - } - switch (type) { - case 'class': - return this.cssClasses.hasOwnProperty(text.toString()) ? this.cssClasses[text.toString()] : text; - } - return text; - }, - handleBuilderSidebarScroll(builder) { - if (builder.scrollResizeObserver) { - builder.scrollResizeObserver.disconnect(); - } - builder.scrollResizeObserver = new ResizeObserver(() => { - setTimeout(() => { - const { form, sidebar } = builder.refs; - const formHeight = form && form.parentNode && form.parentNode.clientHeight; - const sidebarHeight = sidebar && sidebar.clientHeight; - const style = sidebar && sidebar.parentNode && sidebar.parentNode.style; - - if (style && formHeight && sidebarHeight) { - style.height = `${Math.max(sidebarHeight + 20, formHeight)}px`; - } - }); - }); - - builder.scrollResizeObserver.observe(builder.refs.form); - builder.scrollResizeObserver.observe(builder.refs.sidebar); - }, - clearBuilderSidebarScroll(builder) { - if (builder.scrollResizeObserver) { - builder.scrollResizeObserver.disconnect(); - builder.scrollResizeObserver = null; - } - }, - defaultIconset: 'glyphicon', - iconClass, - cssClasses, - builder, - builderComponent, - builderComponents, - builderEditForm, - builderPlaceholder, - builderSidebar, - builderSidebarGroup, - columns, - datagrid, - day, - dialog, - editgrid, - field, - file, - icon, - input, - label, - message, - modaldialog, - modaledit, - multiValueRow, - multiValueTable, - panel, - radio, - resourceAdd, - signature, - survey, - tab, - table, - well, - wizard, - wizardHeader, - wizardHeaderClassic, - wizardHeaderVertical, - wizardNav, - errorsList, - alert, - grid, - pagination, - columnMenu, - tbody, - paginationBottom -}; diff --git a/src/templates/bootstrap3/input/form.ejs b/src/templates/bootstrap3/input/form.ejs deleted file mode 100644 index 5c863466c..000000000 --- a/src/templates/bootstrap3/input/form.ejs +++ /dev/null @@ -1,45 +0,0 @@ -{% if (ctx.prefix || ctx.suffix) { %} -
    - {% } %} - {% if (ctx.prefix) { %} -
    - {% if(ctx.prefix instanceof HTMLElement){ %} - {{ ctx.t(ctx.prefix.outerHTML, { _userInput: true }) }} - {% } else{ %} - {{ ctx.t(ctx.prefix, { _userInput: true }) }} - {% } %} -
    - {% } %} - {% if (!ctx.component.editor && !ctx.component.wysiwyg) { %} - <{{ctx.input.type}} - ref="{{ctx.input.ref ? ctx.input.ref : 'input'}}" - {% for (var attr in ctx.input.attr) { %} - {{attr}}="{{ctx.input.attr[attr]}}" - {% } %} - id="{{ctx.instance.id}}-{{ctx.component.key}}" - >{{ctx.input.content}} - {% if (ctx.hasValueMaskInput) { %} - - {% } %} -{% } %} -{% if (ctx.component.editor || ctx.component.wysiwyg) { %} -
    -{% } %} -{% if (ctx.suffix) { %} -
    - {% if(ctx.suffix instanceof HTMLElement){ %} - {{ ctx.t(ctx.suffix.outerHTML, { _userInput: true }) }} - {% } else{ %} - {{ ctx.t(ctx.suffix, { _userInput: true }) }} - {% } %} -
    -{% } %} -{% if (ctx.prefix || ctx.suffix) { %} -
    -{% } %} -{% if (ctx.component.showCharCount) { %} - -{% } %} -{% if (ctx.component.showWordCount) { %} - -{% } %} diff --git a/src/templates/bootstrap3/input/html.ejs b/src/templates/bootstrap3/input/html.ejs deleted file mode 100644 index 82fffefce..000000000 --- a/src/templates/bootstrap3/input/html.ejs +++ /dev/null @@ -1 +0,0 @@ -
    {% if (ctx.value) { %}{{ctx.value}}{% } else { %}-{% } %}
    diff --git a/src/templates/bootstrap3/input/index.ts b/src/templates/bootstrap3/input/index.ts deleted file mode 100644 index 7f65740da..000000000 --- a/src/templates/bootstrap3/input/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; - -export default { form, html }; diff --git a/src/templates/bootstrap3/label/form.ejs b/src/templates/bootstrap3/label/form.ejs deleted file mode 100644 index dbf4bcca7..000000000 --- a/src/templates/bootstrap3/label/form.ejs +++ /dev/null @@ -1,11 +0,0 @@ - diff --git a/src/templates/bootstrap3/label/index.ts b/src/templates/bootstrap3/label/index.ts deleted file mode 100644 index 0890c1f22..000000000 --- a/src/templates/bootstrap3/label/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/src/templates/bootstrap3/message/form.ejs b/src/templates/bootstrap3/message/form.ejs deleted file mode 100644 index 65e5100cc..000000000 --- a/src/templates/bootstrap3/message/form.ejs +++ /dev/null @@ -1 +0,0 @@ -

    {{ctx.message}}

    diff --git a/src/templates/bootstrap3/message/index.ts b/src/templates/bootstrap3/message/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/message/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/modaldialog/form.ejs b/src/templates/bootstrap3/modaldialog/form.ejs deleted file mode 100644 index b6a74f239..000000000 --- a/src/templates/bootstrap3/modaldialog/form.ejs +++ /dev/null @@ -1,13 +0,0 @@ -
    -
    -
    - -
    -
    -
    diff --git a/src/templates/bootstrap3/modaldialog/index.ts b/src/templates/bootstrap3/modaldialog/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/modaldialog/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/modaledit/form.ejs b/src/templates/bootstrap3/modaledit/form.ejs deleted file mode 100644 index 00d515856..000000000 --- a/src/templates/bootstrap3/modaledit/form.ejs +++ /dev/null @@ -1,10 +0,0 @@ -
    - -
    {{ctx.content}}
    -
    diff --git a/src/templates/bootstrap3/modaledit/index.ts b/src/templates/bootstrap3/modaledit/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/modaledit/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/multiValueRow/form.ejs b/src/templates/bootstrap3/multiValueRow/form.ejs deleted file mode 100644 index 30e4a9a21..000000000 --- a/src/templates/bootstrap3/multiValueRow/form.ejs +++ /dev/null @@ -1,12 +0,0 @@ - - - {{ctx.element}} - - {% if (!ctx.disabled) { %} - - - - {% } %} - diff --git a/src/templates/bootstrap3/multiValueRow/index.ts b/src/templates/bootstrap3/multiValueRow/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/multiValueRow/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/multiValueTable/form.ejs b/src/templates/bootstrap3/multiValueTable/form.ejs deleted file mode 100644 index cc143dd42..000000000 --- a/src/templates/bootstrap3/multiValueTable/form.ejs +++ /dev/null @@ -1,12 +0,0 @@ - - - {{ctx.rows}} - {% if (!ctx.disabled) { %} - - - - {% } %} - -
    - -
    diff --git a/src/templates/bootstrap3/multiValueTable/index.ts b/src/templates/bootstrap3/multiValueTable/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/multiValueTable/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/pagination-bottom/html.ejs b/src/templates/bootstrap3/pagination-bottom/html.ejs deleted file mode 100644 index f85439634..000000000 --- a/src/templates/bootstrap3/pagination-bottom/html.ejs +++ /dev/null @@ -1,16 +0,0 @@ -
    - -
    \ No newline at end of file diff --git a/src/templates/bootstrap3/pagination-bottom/index.ts b/src/templates/bootstrap3/pagination-bottom/index.ts deleted file mode 100644 index 6cc911a13..000000000 --- a/src/templates/bootstrap3/pagination-bottom/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -import html from './html.ejs'; -export default { html }; \ No newline at end of file diff --git a/src/templates/bootstrap3/pagination/html.ejs b/src/templates/bootstrap3/pagination/html.ejs deleted file mode 100644 index 1d790c1d9..000000000 --- a/src/templates/bootstrap3/pagination/html.ejs +++ /dev/null @@ -1,31 +0,0 @@ - diff --git a/src/templates/bootstrap3/pagination/index.ts b/src/templates/bootstrap3/pagination/index.ts deleted file mode 100644 index 6cc911a13..000000000 --- a/src/templates/bootstrap3/pagination/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -import html from './html.ejs'; -export default { html }; \ No newline at end of file diff --git a/src/templates/bootstrap3/panel/form.ejs b/src/templates/bootstrap3/panel/form.ejs deleted file mode 100644 index ac791d716..000000000 --- a/src/templates/bootstrap3/panel/form.ejs +++ /dev/null @@ -1,30 +0,0 @@ -
    - {% if (!ctx.label.hidden || ctx.builder || ctx.component.collapsible || ctx.component.tooltip) { %} -
    -

    - {% if (ctx.component.collapsible) { %} - - {% } %} - {% if (!ctx.label.hidden || ctx.builder) { %} - {{ctx.t(ctx.component.title, { _userInput: true })}} - {% } %} - {% if (ctx.component.tooltip) { %} - - {% } %} -

    -
    - {% } %} - {% if (!ctx.collapsed || ctx.builder) { %} -
    - {{ctx.children}} -
    - {% } %} -
    diff --git a/src/templates/bootstrap3/panel/index.ts b/src/templates/bootstrap3/panel/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/panel/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/pdf/form.ejs b/src/templates/bootstrap3/pdf/form.ejs deleted file mode 100644 index 605b45b16..000000000 --- a/src/templates/bootstrap3/pdf/form.ejs +++ /dev/null @@ -1,10 +0,0 @@ -
    - - - - - - -
    - {{ ctx.submitButton }} -
    diff --git a/src/templates/bootstrap3/pdf/index.ts b/src/templates/bootstrap3/pdf/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/pdf/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/radio/form.ejs b/src/templates/bootstrap3/radio/form.ejs deleted file mode 100644 index 8dbc65fe5..000000000 --- a/src/templates/bootstrap3/radio/form.ejs +++ /dev/null @@ -1,28 +0,0 @@ -
    - {% ctx.values.forEach(function(item, index) { %} -
    - -
    - {% }) %} -
    diff --git a/src/templates/bootstrap3/radio/html.ejs b/src/templates/bootstrap3/radio/html.ejs deleted file mode 100644 index e1b9fa941..000000000 --- a/src/templates/bootstrap3/radio/html.ejs +++ /dev/null @@ -1,4 +0,0 @@ -
    - {% var filtered = ctx.values.filter(function(item) {return ctx.value === item.value || (typeof ctx.value === 'object' && ctx.value.hasOwnProperty(item.value) && ctx.value[item.value])}).map(function(item) { return ctx.t(item.label, { _userInput: true })}).join(', ') %} - {{filtered}} -
    diff --git a/src/templates/bootstrap3/radio/index.ts b/src/templates/bootstrap3/radio/index.ts deleted file mode 100644 index 7f65740da..000000000 --- a/src/templates/bootstrap3/radio/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; - -export default { form, html }; diff --git a/src/templates/bootstrap3/resourceAdd/form.ejs b/src/templates/bootstrap3/resourceAdd/form.ejs deleted file mode 100644 index 1823781a1..000000000 --- a/src/templates/bootstrap3/resourceAdd/form.ejs +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - -
    - {{ctx.element}} -
    - -
    diff --git a/src/templates/bootstrap3/resourceAdd/index.ts b/src/templates/bootstrap3/resourceAdd/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/resourceAdd/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/signature/form.ejs b/src/templates/bootstrap3/signature/form.ejs deleted file mode 100644 index c763259c2..000000000 --- a/src/templates/bootstrap3/signature/form.ejs +++ /dev/null @@ -1,24 +0,0 @@ -{{ctx.element}} -
    - - - - - - {% if (ctx.required) { %} - - {% } %} - -
    -{% if (ctx.component.footer) { %} - -{% } %} diff --git a/src/templates/bootstrap3/signature/html.ejs b/src/templates/bootstrap3/signature/html.ejs deleted file mode 100644 index f26a2e880..000000000 --- a/src/templates/bootstrap3/signature/html.ejs +++ /dev/null @@ -1 +0,0 @@ - diff --git a/src/templates/bootstrap3/signature/index.ts b/src/templates/bootstrap3/signature/index.ts deleted file mode 100644 index 7f65740da..000000000 --- a/src/templates/bootstrap3/signature/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; - -export default { form, html }; diff --git a/src/templates/bootstrap3/survey/form.ejs b/src/templates/bootstrap3/survey/form.ejs deleted file mode 100644 index b1ea47f0f..000000000 --- a/src/templates/bootstrap3/survey/form.ejs +++ /dev/null @@ -1,32 +0,0 @@ - - - - - {% ctx.component.values.forEach(function(value) { %} - - {% }) %} - - - - {% ctx.component.questions.forEach(function(question) { %} - - - {% ctx.component.values.forEach(function(value) { %} - - {% }) %} - - {% }) %} - -
    - {{ctx.t(value.label)}} - {% if (value.tooltip) { %} - - {% } %} -
    - {{ctx.t(question.label)}} - {% if (question.tooltip) { %} - - {% } %} - - -
    diff --git a/src/templates/bootstrap3/survey/html.ejs b/src/templates/bootstrap3/survey/html.ejs deleted file mode 100644 index 8c204c2cd..000000000 --- a/src/templates/bootstrap3/survey/html.ejs +++ /dev/null @@ -1,16 +0,0 @@ - - - {% ctx.component.questions.forEach(function(question) { %} - - - - - {% }) %} - -
    {{ctx.t(question.label)}} - {% ctx.component.values.forEach(function(item) { %} - {% if (ctx.value && ctx.value.hasOwnProperty(question.value) && ctx.value[question.value] === item.value) { %} - {{ctx.t(item.label)}} - {% } %} - {% }) %} -
    diff --git a/src/templates/bootstrap3/survey/index.ts b/src/templates/bootstrap3/survey/index.ts deleted file mode 100644 index 7f65740da..000000000 --- a/src/templates/bootstrap3/survey/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; - -export default { form, html }; diff --git a/src/templates/bootstrap3/tab/flat.ejs b/src/templates/bootstrap3/tab/flat.ejs deleted file mode 100644 index 4ae22de91..000000000 --- a/src/templates/bootstrap3/tab/flat.ejs +++ /dev/null @@ -1,10 +0,0 @@ -{% ctx.component.components.forEach(function(tab, index) { %} -
    -
    -

    {{ ctx.t(tab.label, { _userInput: true }) }}

    -
    -
    - {{ ctx.tabComponents[index] }} -
    -
    -{% }) %} diff --git a/src/templates/bootstrap3/tab/form.ejs b/src/templates/bootstrap3/tab/form.ejs deleted file mode 100644 index e37b1946b..000000000 --- a/src/templates/bootstrap3/tab/form.ejs +++ /dev/null @@ -1,14 +0,0 @@ -
    - -
    - {% ctx.component.components.forEach(function(tab, index) { %} -
    {{ctx.tabComponents[index]}}
    - {% }) %} -
    -
    diff --git a/src/templates/bootstrap3/tab/index.ts b/src/templates/bootstrap3/tab/index.ts deleted file mode 100644 index 5ec9caef3..000000000 --- a/src/templates/bootstrap3/tab/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import flat from './flat.ejs'; -import form from './form.ejs'; - -export default { flat, form }; diff --git a/src/templates/bootstrap3/table/form.ejs b/src/templates/bootstrap3/table/form.ejs deleted file mode 100644 index 5ca56b78c..000000000 --- a/src/templates/bootstrap3/table/form.ejs +++ /dev/null @@ -1,25 +0,0 @@ - - {% if (ctx.component.header && ctx.component.header.length > 0) { %} - - - {% ctx.component.header.forEach(function(header) { %} - - {% }) %} - - - {% } %} - - {% ctx.tableComponents.forEach(function(row, rowIndex) { %} - - {% row.forEach(function(column, colIndex) { %} - - {% }) %} - - {% }) %} - -
    {{ctx.t(header, { _userInput: true })}}
    {{column}}
    diff --git a/src/templates/bootstrap3/table/index.ts b/src/templates/bootstrap3/table/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/table/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/tbody/html.ejs b/src/templates/bootstrap3/tbody/html.ejs deleted file mode 100644 index 8ce9d3dd1..000000000 --- a/src/templates/bootstrap3/tbody/html.ejs +++ /dev/null @@ -1,47 +0,0 @@ - - - {% ctx.eachRow(function(row) { %} - - {% if (ctx.component.enableRowSelect) { %} - - {% } %} - {% row.forEach(function(rowComp) { %} - {% if (rowComp.component.show) { %} - - {% } %} - {% }); %} - {% if ((ctx.component.showEditBtn || ctx.component.showDeleteBtn || ctx.component.showDeleteAllBtn) && !ctx.options.pdf) { %} - - {% } %} - - {% }); %} - -
    - - - {{ ctx.instance.hook('format', rowComp.component.key, rowComp.dataValue) }} - -
    - - ⋮ -
    -
    \ No newline at end of file diff --git a/src/templates/bootstrap3/tbody/index.ts b/src/templates/bootstrap3/tbody/index.ts deleted file mode 100644 index 6cc911a13..000000000 --- a/src/templates/bootstrap3/tbody/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -import html from './html.ejs'; -export default { html }; \ No newline at end of file diff --git a/src/templates/bootstrap3/well/form.ejs b/src/templates/bootstrap3/well/form.ejs deleted file mode 100644 index b9f36e1ea..000000000 --- a/src/templates/bootstrap3/well/form.ejs +++ /dev/null @@ -1,5 +0,0 @@ -
    -
    - {{ctx.children}} -
    -
    diff --git a/src/templates/bootstrap3/well/index.ts b/src/templates/bootstrap3/well/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap3/well/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap3/wizard/builder.ejs b/src/templates/bootstrap3/wizard/builder.ejs deleted file mode 100644 index e94fd54cb..000000000 --- a/src/templates/bootstrap3/wizard/builder.ejs +++ /dev/null @@ -1 +0,0 @@ -
    {{ ctx.t(ctx.component.title, { _userInput: true }) }}
    diff --git a/src/templates/bootstrap3/wizard/form.ejs b/src/templates/bootstrap3/wizard/form.ejs deleted file mode 100644 index 10c535d2d..000000000 --- a/src/templates/bootstrap3/wizard/form.ejs +++ /dev/null @@ -1,23 +0,0 @@ -
    -
    - {% if (ctx.wizardHeaderType === 'wizardHeaderVertical') { %} -
    -
    - {{ ctx.wizardHeader }} -
    -
    - {{ctx.components}} -
    -
    -
    - {{ ctx.wizardNav }} -
    - {% } else { %} - {{ ctx.wizardHeader }} -
    - {{ctx.components}} -
    - {{ ctx.wizardNav }} - {% } %} -
    -
    \ No newline at end of file diff --git a/src/templates/bootstrap3/wizard/index.ts b/src/templates/bootstrap3/wizard/index.ts deleted file mode 100644 index 6d321615e..000000000 --- a/src/templates/bootstrap3/wizard/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import builder from './builder.ejs'; -import form from './form.ejs'; - -export default { form, builder }; diff --git a/src/templates/bootstrap3/wizardHeader/form.ejs b/src/templates/bootstrap3/wizardHeader/form.ejs deleted file mode 100644 index d1e8de2b3..000000000 --- a/src/templates/bootstrap3/wizardHeader/form.ejs +++ /dev/null @@ -1,14 +0,0 @@ - diff --git a/src/templates/bootstrap3/wizardHeader/index.ts b/src/templates/bootstrap3/wizardHeader/index.ts deleted file mode 100644 index 0890c1f22..000000000 --- a/src/templates/bootstrap3/wizardHeader/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/src/templates/bootstrap3/wizardHeaderClassic/form.ejs b/src/templates/bootstrap3/wizardHeaderClassic/form.ejs deleted file mode 100644 index c362cc341..000000000 --- a/src/templates/bootstrap3/wizardHeaderClassic/form.ejs +++ /dev/null @@ -1,16 +0,0 @@ - diff --git a/src/templates/bootstrap3/wizardHeaderClassic/index.ts b/src/templates/bootstrap3/wizardHeaderClassic/index.ts deleted file mode 100644 index 0890c1f22..000000000 --- a/src/templates/bootstrap3/wizardHeaderClassic/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/src/templates/bootstrap3/wizardHeaderVertical/form.ejs b/src/templates/bootstrap3/wizardHeaderVertical/form.ejs deleted file mode 100644 index 35acc3769..000000000 --- a/src/templates/bootstrap3/wizardHeaderVertical/form.ejs +++ /dev/null @@ -1,14 +0,0 @@ - diff --git a/src/templates/bootstrap3/wizardHeaderVertical/index.ts b/src/templates/bootstrap3/wizardHeaderVertical/index.ts deleted file mode 100644 index 0890c1f22..000000000 --- a/src/templates/bootstrap3/wizardHeaderVertical/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/src/templates/bootstrap3/wizardNav/form.ejs b/src/templates/bootstrap3/wizardNav/form.ejs deleted file mode 100644 index 408bef7ee..000000000 --- a/src/templates/bootstrap3/wizardNav/form.ejs +++ /dev/null @@ -1,22 +0,0 @@ -
      - {% if (ctx.buttons.cancel) { %} -
    • - -
    • - {% } %} - {% if (ctx.buttons.previous) { %} -
    • - -
    • - {% } %} - {% if (ctx.buttons.next) { %} -
    • - -
    • - {% } %} - {% if (ctx.buttons.submit) { %} -
    • - -
    • - {% } %} -
    diff --git a/src/templates/bootstrap3/wizardNav/index.ts b/src/templates/bootstrap3/wizardNav/index.ts deleted file mode 100644 index 0890c1f22..000000000 --- a/src/templates/bootstrap3/wizardNav/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/src/templates/bootstrap4/address/form.ejs b/src/templates/bootstrap4/address/form.ejs deleted file mode 100644 index 6723d2f1a..000000000 --- a/src/templates/bootstrap4/address/form.ejs +++ /dev/null @@ -1,40 +0,0 @@ -{% if (ctx.mode.autocomplete) { %} -
    - - {% if (!ctx.component.disableClearIcon) { %} - - {% } %} -
    -{% } %} -{% if (ctx.self.manualModeEnabled) { %} -
    - -
    -{% } %} -{% if (ctx.self.manualMode) { %} -
    - {{ ctx.children }} -
    -{% } %} diff --git a/src/templates/bootstrap4/address/html.ejs b/src/templates/bootstrap4/address/html.ejs deleted file mode 100644 index 996c51d1f..000000000 --- a/src/templates/bootstrap4/address/html.ejs +++ /dev/null @@ -1 +0,0 @@ -
    {% if (ctx.displayValue) { %}{{ctx.displayValue}}{% } else { %}-{% } %}
    diff --git a/src/templates/bootstrap4/address/index.ts b/src/templates/bootstrap4/address/index.ts deleted file mode 100644 index 7f65740da..000000000 --- a/src/templates/bootstrap4/address/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; - -export default { form, html }; diff --git a/src/templates/bootstrap4/alert/form.ejs b/src/templates/bootstrap4/alert/form.ejs deleted file mode 100644 index 53f2a6a73..000000000 --- a/src/templates/bootstrap4/alert/form.ejs +++ /dev/null @@ -1,10 +0,0 @@ -
    - {{ctx.message}} - {% if (ctx.options.vpat) { %} - {{ctx.t('errorListHotkey')}} - {% } %} -
    diff --git a/src/templates/bootstrap4/alert/index.ts b/src/templates/bootstrap4/alert/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/alert/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/builder/form.ejs b/src/templates/bootstrap4/builder/form.ejs deleted file mode 100644 index 28fe65559..000000000 --- a/src/templates/bootstrap4/builder/form.ejs +++ /dev/null @@ -1,8 +0,0 @@ -
    -
    - {{ctx.sidebar}} -
    -
    - {{ctx.form}} -
    -
    diff --git a/src/templates/bootstrap4/builder/index.ts b/src/templates/bootstrap4/builder/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/builder/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/builderComponent/form.ejs b/src/templates/bootstrap4/builderComponent/form.ejs deleted file mode 100644 index c3b47e5a0..000000000 --- a/src/templates/bootstrap4/builderComponent/form.ejs +++ /dev/null @@ -1,67 +0,0 @@ -
    - {% if (!ctx.disableBuilderActions) { %} -
    -
    - -
    - {% if (!ctx.design) { %} -
    - -
    -
    - -
    - {% if (ctx.editJson !== false) { %} -
    - -
    - {% } %} - {% } %} -
    - -
    - {% if (!(ctx.design && ctx.childComponent.type === 'reviewpage') && ctx.editComponent) { %} -
    - -
    - {% } %} -
    - {% } %} - {{ctx.html}} -
    diff --git a/src/templates/bootstrap4/builderComponent/index.ts b/src/templates/bootstrap4/builderComponent/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/builderComponent/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/builderComponents/form.ejs b/src/templates/bootstrap4/builderComponents/form.ejs deleted file mode 100644 index f38edf991..000000000 --- a/src/templates/bootstrap4/builderComponents/form.ejs +++ /dev/null @@ -1,3 +0,0 @@ -
    - {{ctx.html}} -
    diff --git a/src/templates/bootstrap4/builderComponents/index.ts b/src/templates/bootstrap4/builderComponents/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/builderComponents/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/builderEditForm/form.ejs b/src/templates/bootstrap4/builderEditForm/form.ejs deleted file mode 100644 index 64735f313..000000000 --- a/src/templates/bootstrap4/builderEditForm/form.ejs +++ /dev/null @@ -1,56 +0,0 @@ -
    -
    -

    {{ctx.t(ctx.componentInfo.title, { _userInput: true })}} {{ctx.t('Component')}}

    -
    - {% if (ctx.helplinks) { %} - - {% } %} -
    -
    -
    -
    - {{ctx.editForm}} -
    - {% if (!ctx.showPreview) { %} -
    - - - - {% if (ctx.preview) { %} - - {% } %} -
    - {% } %} -
    - {% if (ctx.showPreview && ctx.preview) { %} -
    -
    -
    -

    {{ctx.t('Preview')}}

    -
    -
    -
    - {{ctx.preview}} -
    -
    -
    - {% if (ctx.componentInfo.help) { %} -
    - {{ ctx.t(ctx.componentInfo.help) }} -
    - {% } %} -
    - - - - -
    -
    - {% } %} -
    diff --git a/src/templates/bootstrap4/builderEditForm/index.ts b/src/templates/bootstrap4/builderEditForm/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/builderEditForm/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/builderPlaceholder/form.ejs b/src/templates/bootstrap4/builderPlaceholder/form.ejs deleted file mode 100644 index 47bb3e80e..000000000 --- a/src/templates/bootstrap4/builderPlaceholder/form.ejs +++ /dev/null @@ -1,9 +0,0 @@ - diff --git a/src/templates/bootstrap4/builderPlaceholder/index.ts b/src/templates/bootstrap4/builderPlaceholder/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/builderPlaceholder/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/builderSidebar/form.ejs b/src/templates/bootstrap4/builderSidebar/form.ejs deleted file mode 100644 index b4f0b1e21..000000000 --- a/src/templates/bootstrap4/builderSidebar/form.ejs +++ /dev/null @@ -1,8 +0,0 @@ -
    - -
    - {% ctx.groups.forEach(function(group) { %} - {{ group }} - {% }) %} -
    -
    diff --git a/src/templates/bootstrap4/builderSidebar/index.ts b/src/templates/bootstrap4/builderSidebar/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/builderSidebar/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/builderSidebarGroup/form.ejs b/src/templates/bootstrap4/builderSidebarGroup/form.ejs deleted file mode 100644 index a46008adb..000000000 --- a/src/templates/bootstrap4/builderSidebarGroup/form.ejs +++ /dev/null @@ -1,49 +0,0 @@ -
    -
    -
    - -
    -
    -
    -
    - {% if (ctx.group.componentOrder.length || ctx.subgroups.length) { %} - {% !ctx.group.componentOrder || ctx.group.componentOrder.forEach(function(componentKey) { %} - - {% if (ctx.group.components[componentKey].icon) { %} - - {% } %} - {{ctx.t(ctx.group.components[componentKey].title, { _userInput: true })}} - - {% }) %} - {{ctx.subgroups.join('')}} - {% } else { %} -
    {{ctx.t('No Matches Found')}}
    - {% } %} -
    -
    -
    diff --git a/src/templates/bootstrap4/builderSidebarGroup/index.ts b/src/templates/bootstrap4/builderSidebarGroup/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/builderSidebarGroup/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/builderWizard/form.ejs b/src/templates/bootstrap4/builderWizard/form.ejs deleted file mode 100644 index 8cbae158c..000000000 --- a/src/templates/bootstrap4/builderWizard/form.ejs +++ /dev/null @@ -1,22 +0,0 @@ -
    -
    - {{ctx.sidebar}} -
    -
    - -
    - {{ctx.form}} -
    -
    -
    diff --git a/src/templates/bootstrap4/builderWizard/index.ts b/src/templates/bootstrap4/builderWizard/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/builderWizard/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/button/form.ejs b/src/templates/bootstrap4/button/form.ejs deleted file mode 100644 index 4e90c8879..000000000 --- a/src/templates/bootstrap4/button/form.ejs +++ /dev/null @@ -1,19 +0,0 @@ -<{{ctx.input.type}} - ref="button" - {% for (var attr in ctx.input.attr) { %} - {{attr}}="{{ctx.input.attr[attr]}}" - {% } %} - {% if (ctx.component.description) { %} - aria-describedby="d-{{ctx.instance.id}}-{{ctx.component.key}}" - {% } %} -> -{% if (ctx.component.leftIcon) { %} {% } %} -{{ctx.input.content}} -{% if (ctx.component.tooltip) { %} - -{% } %} -{% if (ctx.component.rightIcon) { %} {% } %} - -
    - -
    diff --git a/src/templates/bootstrap4/button/html.ejs b/src/templates/bootstrap4/button/html.ejs deleted file mode 100644 index 8b1378917..000000000 --- a/src/templates/bootstrap4/button/html.ejs +++ /dev/null @@ -1 +0,0 @@ - diff --git a/src/templates/bootstrap4/button/index.ts b/src/templates/bootstrap4/button/index.ts deleted file mode 100644 index 7f65740da..000000000 --- a/src/templates/bootstrap4/button/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; - -export default { form, html }; diff --git a/src/templates/bootstrap4/checkbox/form.ejs b/src/templates/bootstrap4/checkbox/form.ejs deleted file mode 100644 index 196095911..000000000 --- a/src/templates/bootstrap4/checkbox/form.ejs +++ /dev/null @@ -1,27 +0,0 @@ -
    - - {% if (ctx.component.tooltip) { %} - - {% } %} -
    diff --git a/src/templates/bootstrap4/checkbox/html.ejs b/src/templates/bootstrap4/checkbox/html.ejs deleted file mode 100644 index 08edcf8a4..000000000 --- a/src/templates/bootstrap4/checkbox/html.ejs +++ /dev/null @@ -1,5 +0,0 @@ - -
    {% if (ctx.checked) { %}True{% } else { %}False{% } %}
    diff --git a/src/templates/bootstrap4/checkbox/index.ts b/src/templates/bootstrap4/checkbox/index.ts deleted file mode 100644 index 7f65740da..000000000 --- a/src/templates/bootstrap4/checkbox/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; - -export default { form, html }; diff --git a/src/templates/bootstrap4/column-menu/html.ejs b/src/templates/bootstrap4/column-menu/html.ejs deleted file mode 100644 index 72670c81e..000000000 --- a/src/templates/bootstrap4/column-menu/html.ejs +++ /dev/null @@ -1,56 +0,0 @@ - diff --git a/src/templates/bootstrap4/column-menu/index.ts b/src/templates/bootstrap4/column-menu/index.ts deleted file mode 100644 index 44f9505b1..000000000 --- a/src/templates/bootstrap4/column-menu/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -import html from './html.ejs'; -export default { html }; \ No newline at end of file diff --git a/src/templates/bootstrap4/columns/form.ejs b/src/templates/bootstrap4/columns/form.ejs deleted file mode 100644 index 21a2b8495..000000000 --- a/src/templates/bootstrap4/columns/form.ejs +++ /dev/null @@ -1,7 +0,0 @@ -{% ctx.component.columns.forEach(function(column, index) { %} -
    - {{ctx.columnComponents[index]}} -
    -{% }) %} \ No newline at end of file diff --git a/src/templates/bootstrap4/columns/index.ts b/src/templates/bootstrap4/columns/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/columns/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/component/form.ejs b/src/templates/bootstrap4/component/form.ejs deleted file mode 100644 index 1a10d4722..000000000 --- a/src/templates/bootstrap4/component/form.ejs +++ /dev/null @@ -1,6 +0,0 @@ -
    - {% if (ctx.visible) { %} - {{ctx.children}} -
    - {% } %} -
    diff --git a/src/templates/bootstrap4/component/index.ts b/src/templates/bootstrap4/component/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/component/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/componentModal/form.ejs b/src/templates/bootstrap4/componentModal/form.ejs deleted file mode 100644 index cdae5720b..000000000 --- a/src/templates/bootstrap4/componentModal/form.ejs +++ /dev/null @@ -1,26 +0,0 @@ -
    -
    -
    -
    - - -
    -
    diff --git a/src/templates/bootstrap4/componentModal/index.ts b/src/templates/bootstrap4/componentModal/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/componentModal/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/components/form.ejs b/src/templates/bootstrap4/components/form.ejs deleted file mode 100644 index acf206e0d..000000000 --- a/src/templates/bootstrap4/components/form.ejs +++ /dev/null @@ -1 +0,0 @@ -{{ ctx.children.join('') }} diff --git a/src/templates/bootstrap4/components/index.ts b/src/templates/bootstrap4/components/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/components/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/container/form.ejs b/src/templates/bootstrap4/container/form.ejs deleted file mode 100644 index 6b58eb56b..000000000 --- a/src/templates/bootstrap4/container/form.ejs +++ /dev/null @@ -1,3 +0,0 @@ -
    - {{ctx.children}} -
    diff --git a/src/templates/bootstrap4/container/index.ts b/src/templates/bootstrap4/container/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/container/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/cssClasses.ts b/src/templates/bootstrap4/cssClasses.ts deleted file mode 100644 index ccb250866..000000000 --- a/src/templates/bootstrap4/cssClasses.ts +++ /dev/null @@ -1,15 +0,0 @@ -export default { - 'border-default': '', - 'formio-tab-panel-active': 'active', - 'formio-tab-link-active': 'active', - 'formio-tab-link-container-active': 'active', - 'formio-form-error': 'formio-error-wrapper has-message', - 'formio-form-alert': 'alert alert-danger', - 'formio-label-error': '', - 'formio-input-error': '', - 'formio-alert-danger': 'alert alert-danger', - 'formio-alert-success': 'alert alert-success', - 'formio-alert-warning': 'alert alert-warning', - 'formio-modal-cancel-button': 'btn btn-danger formio-dialog-button', - 'formio-modal-confirm-button': 'btn btn-primary formio-dialog-button', -}; diff --git a/src/templates/bootstrap4/datagrid/form.ejs b/src/templates/bootstrap4/datagrid/form.ejs deleted file mode 100644 index 592a16ecf..000000000 --- a/src/templates/bootstrap4/datagrid/form.ejs +++ /dev/null @@ -1,80 +0,0 @@ - - {% if (ctx.hasHeader) { %} - - - {% if (ctx.component.reorder) { %}{% } %} - {% ctx.columns.forEach(function(col) { %} - {% if (!col.hidden || ctx.builder) { %} - - {% } %} - {% }) %} - {% if (ctx.hasExtraColumn) { %} - - {% } %} - - - {% } %} - - {% ctx.rows.forEach(function(row, index) { %} - {% if (ctx.hasGroups && ctx.groups[index]) { %} - - - - {% } %} - - {% if (ctx.component.reorder) { %} - - {% } %} - {% ctx.columns.forEach(function(col) { %} - - {% }) %} - {% if (ctx.hasExtraColumn) { %} - {% if (ctx.hasRemoveButtons) { %} - - {% } %} - {% if (ctx.canAddColumn) { %} - - {% } %} - {% } %} - - {% }) %} - - {% if (!ctx.builder && ctx.hasAddButton && ctx.hasBottomSubmit) { %} - - - - - - {% } %} -
    - {{ col.hideLabel ? '' : ctx.t(col.label || col.title, { _userInput: true }) }} - {% if (col.tooltip) { %} {% } %} - - {{ ctx.t('Add/Remove') }} - {% if (!ctx.builder && ctx.hasAddButton && ctx.hasTopSubmit) { %} - - {% } %} -
    {{ctx.groups[index].label}}
    - - - {{row[col.key]}} - - - - {{ctx.placeholder}} -
    - -
    diff --git a/src/templates/bootstrap4/datagrid/html.ejs b/src/templates/bootstrap4/datagrid/html.ejs deleted file mode 100644 index 2bce75175..000000000 --- a/src/templates/bootstrap4/datagrid/html.ejs +++ /dev/null @@ -1,29 +0,0 @@ - - {% if (ctx.hasHeader) { %} - - - {% ctx.columns.forEach(function(col) { %} - - {% }) %} - - - {% } %} - - {% ctx.rows.forEach(function(row) { %} - - {% ctx.columns.forEach(function(col) { %} - - {% }) %} - - {% }) %} - -
    - {{ col.hideLabel ? '' : ctx.t(col.label || col.title, { _userInput: true }) }} - {% if (col.tooltip) { %} {% } %} -
    - {{row[col.key]}} -
    diff --git a/src/templates/bootstrap4/datagrid/index.ts b/src/templates/bootstrap4/datagrid/index.ts deleted file mode 100644 index 7f65740da..000000000 --- a/src/templates/bootstrap4/datagrid/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; - -export default { form, html }; diff --git a/src/templates/bootstrap4/day/form.ejs b/src/templates/bootstrap4/day/form.ejs deleted file mode 100644 index bc5cbd9e5..000000000 --- a/src/templates/bootstrap4/day/form.ejs +++ /dev/null @@ -1,44 +0,0 @@ -
    - {% if (ctx.dayFirst && ctx.showDay) { %} -
    - {% if (!ctx.component.hideInputLabels) { %} - - {% } %} -
    {{ctx.day}}
    -
    - {% } %} - {% if (ctx.showMonth) { %} -
    - {% if (!ctx.component.hideInputLabels) { %} - - {% } %} -
    {{ctx.month}}
    -
    - {% } %} - {% if (!ctx.dayFirst && ctx.showDay) { %} -
    - {% if (!ctx.component.hideInputLabels) { %} - - {% } %} -
    {{ctx.day}}
    -
    - {% } %} - {% if (ctx.showYear) { %} -
    - {% if (!ctx.component.hideInputLabels) { %} - - {% } %} -
    {{ctx.year}}
    -
    - {% } %} -
    - diff --git a/src/templates/bootstrap4/day/index.ts b/src/templates/bootstrap4/day/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/day/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/dialog/form.ejs b/src/templates/bootstrap4/dialog/form.ejs deleted file mode 100644 index 1e0293424..000000000 --- a/src/templates/bootstrap4/dialog/form.ejs +++ /dev/null @@ -1,7 +0,0 @@ -
    -
    - -
    diff --git a/src/templates/bootstrap4/dialog/index.ts b/src/templates/bootstrap4/dialog/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/dialog/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/editgrid/form.ejs b/src/templates/bootstrap4/editgrid/form.ejs deleted file mode 100644 index 77d8223d2..000000000 --- a/src/templates/bootstrap4/editgrid/form.ejs +++ /dev/null @@ -1,40 +0,0 @@ -
      - {% if (ctx.header) { %} -
    • - {{ctx.header}} -
    • - {% } %} - {% ctx.rows.forEach(function(row, rowIndex) { %} -
    • - {{row}} - {% if (ctx.openRows[rowIndex] && !ctx.readOnly) { %} -
      - - {% if (ctx.component.removeRow) { %} - - {% } %} -
      - {% } %} -
      -
      - {{ctx.errors[rowIndex]}} -
      -
      -
    • - {% }) %} - {% if (ctx.footer) { %} - - {% } %} -
    -{% if (!ctx.readOnly && ctx.hasAddButton) { %} - -{% } %} diff --git a/src/templates/bootstrap4/editgrid/html.ejs b/src/templates/bootstrap4/editgrid/html.ejs deleted file mode 100644 index 99835f763..000000000 --- a/src/templates/bootstrap4/editgrid/html.ejs +++ /dev/null @@ -1,35 +0,0 @@ -
      - {% if (ctx.header) { %} -
    • - {{ctx.header}} -
    • - {% } %} - {% ctx.rows.forEach(function(row, rowIndex) { %} -
    • - {{row}} - {% if (ctx.openRows[rowIndex] && !ctx.readOnly) { %} -
      - - {% if (ctx.component.removeRow) { %} - - {% } %} -
      - {% } %} -
      -
      - {{ctx.errors[rowIndex]}} -
      -
      -
    • - {% }) %} - {% if (ctx.footer) { %} - - {% } %} -
    diff --git a/src/templates/bootstrap4/editgrid/index.ts b/src/templates/bootstrap4/editgrid/index.ts deleted file mode 100644 index 7f65740da..000000000 --- a/src/templates/bootstrap4/editgrid/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; - -export default { form, html }; diff --git a/src/templates/bootstrap4/editgridTable/form.ejs b/src/templates/bootstrap4/editgridTable/form.ejs deleted file mode 100644 index 6b9767b46..000000000 --- a/src/templates/bootstrap4/editgridTable/form.ejs +++ /dev/null @@ -1,55 +0,0 @@ -
    -
    - - {% if (ctx.header) { %} - - {{ctx.header}} - - {% } %} - - {% ctx.rows.forEach(function(row, rowIndex) { %} - - {{row}} - {% if (ctx.openRows[rowIndex] && !ctx.readOnly) { %} - - {% } %} - {% if (ctx.errors[rowIndex]) { %} - - {% } %} - - {% }) %} - - {% if (ctx.footer) { %} - - - {{ctx.footer}} - - - {% } %} -
    -
    - - {% if (ctx.component.removeRow) { %} - - {% } %} -
    -
    -
    -
    - {{ctx.errors[rowIndex]}} -
    -
    -
    -
    -
    -{% if (!ctx.readOnly && ctx.hasAddButton) { %} - -{% } %} diff --git a/src/templates/bootstrap4/editgridTable/html.ejs b/src/templates/bootstrap4/editgridTable/html.ejs deleted file mode 100644 index 9a7d70ff5..000000000 --- a/src/templates/bootstrap4/editgridTable/html.ejs +++ /dev/null @@ -1,49 +0,0 @@ -
    -
    - - {% if (ctx.header) { %} - - {{ctx.header}} - - {% } %} - - {% ctx.rows.forEach(function(row, rowIndex) { %} - - {{row}} - {% if (ctx.openRows[rowIndex] && !ctx.readOnly) { %} - - {% } %} - {% if (ctx.errors[rowIndex]) { %} - - {% } %} - - {% }) %} - - {% if (ctx.footer) { %} - - - {{ctx.footer}} - - - {% } %} -
    -
    - - {% if (ctx.component.removeRow) { %} - - {% } %} -
    -
    -
    -
    - {{ctx.errors[rowIndex]}} -
    -
    -
    -
    -
    diff --git a/src/templates/bootstrap4/editgridTable/index.ts b/src/templates/bootstrap4/editgridTable/index.ts deleted file mode 100644 index 7f65740da..000000000 --- a/src/templates/bootstrap4/editgridTable/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; - -export default { form, html }; diff --git a/src/templates/bootstrap4/errorsList/form.ejs b/src/templates/bootstrap4/errorsList/form.ejs deleted file mode 100644 index baab6f894..000000000 --- a/src/templates/bootstrap4/errorsList/form.ejs +++ /dev/null @@ -1,19 +0,0 @@ -

    {{ctx.t('error')}} - {% if (ctx.options.vpat) { %} - - {% } %} -

    -
      - {% ctx.errors.forEach(function(err) { %} -
    • - - {{err.message}} - -
    • - {% }) %} -
    diff --git a/src/templates/bootstrap4/errorsList/index.ts b/src/templates/bootstrap4/errorsList/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/errorsList/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/field/align.ejs b/src/templates/bootstrap4/field/align.ejs deleted file mode 100644 index 6a20a5e3c..000000000 --- a/src/templates/bootstrap4/field/align.ejs +++ /dev/null @@ -1,26 +0,0 @@ -
    - {% if (!ctx.label.hidden) { %} -
    - {{ ctx.labelMarkup }} -
    - {% } %} - - {% if (ctx.label.hidden && ctx.label.className && ctx.component.validate.required) { %} -
    - -
    - {% } %} - -
    - {{ctx.element}} -
    -
    - -{% if (ctx.component.description) { %} -
    {{ctx.t(ctx.component.description, { _userInput: true })}}
    -{% } %} diff --git a/src/templates/bootstrap4/field/form.ejs b/src/templates/bootstrap4/field/form.ejs deleted file mode 100644 index 47b2e15f4..000000000 --- a/src/templates/bootstrap4/field/form.ejs +++ /dev/null @@ -1,16 +0,0 @@ -{% if (!ctx.label.hidden && ctx.label.labelPosition !== 'bottom') { %} - {{ ctx.labelMarkup }} -{% } %} - -{% if (ctx.label.hidden && ctx.label.className && ctx.component.validate.required) { %} - -{% } %} - -{{ctx.element}} - -{% if (!ctx.label.hidden && ctx.label.labelPosition === 'bottom') { %} - {{ ctx.labelMarkup }} -{% } %} -{% if (ctx.component.description) { %} -
    {{ctx.t(ctx.component.description, { _userInput: true })}}
    -{% } %} diff --git a/src/templates/bootstrap4/field/index.ts b/src/templates/bootstrap4/field/index.ts deleted file mode 100644 index 8074260d8..000000000 --- a/src/templates/bootstrap4/field/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import form from './form.ejs'; -import align from './align.ejs'; - -export default { form, align }; diff --git a/src/templates/bootstrap4/fieldset/form.ejs b/src/templates/bootstrap4/fieldset/form.ejs deleted file mode 100644 index 72dd31607..000000000 --- a/src/templates/bootstrap4/fieldset/form.ejs +++ /dev/null @@ -1,15 +0,0 @@ -
    - {% if (ctx.component.legend) { %} - - {{ctx.t(ctx.component.legend, { _userInput: true })}} - {% if (ctx.component.tooltip) { %} - - {% } %} - - {% } %} - {% if (!ctx.collapsed) { %} -
    - {{ctx.children}} -
    - {% } %} -
    diff --git a/src/templates/bootstrap4/fieldset/index.ts b/src/templates/bootstrap4/fieldset/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/fieldset/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/file/form.ejs b/src/templates/bootstrap4/file/form.ejs deleted file mode 100644 index 23062c4c4..000000000 --- a/src/templates/bootstrap4/file/form.ejs +++ /dev/null @@ -1,189 +0,0 @@ -{% if (ctx.options.vpat) { %} - -{% } %} -{% if (!ctx.self.imageUpload) { %} - {% if (ctx.options.vpat) { %} -
    {{(!ctx.component.filePattern || ctx.component.filePattern === '*') ? 'Any file types are allowed' : ctx.t('Allowed file types: ') + ctx.component.filePattern}}
    - {% } %} -
      - - {% ctx.files.forEach(function(file) { %} -
    • -
      -
      - {% if (ctx.component.uploadOnly) { %} - {{file.originalName || file.name}} - {% } else { %} - - {{ctx.t('Press to open ')}}{{file.originalName || file.name}} - - {% } %} -
      -
      {{ctx.fileSize(file.size)}}
      - {% if (ctx.self.hasTypes && !ctx.disabled) { %} -
      - -
      - {% } %} - {% if (ctx.self.hasTypes && ctx.disabled) { %} -
      {{file.fileType}}
      - {% } %} - {% if (!ctx.disabled) { %} -
      - {% } %} -
      -
    • - {% }) %} - {% ctx.filesToDelete.forEach(function(file) { %} -
    • -
      -
      -
      {{file.originalName || file.name}}
      -
      {{ctx.t(file.message)}}
      -
      -
      {{ctx.fileSize(file.size)}}
      - {% if (ctx.self.hasTypes) { %} -
      - -
      - {% } %} - {% if (!ctx.isSyncing && file.status !== 'success') { %} -
      - {% } %} -
      -
    • - {% }) %} - {% ctx.filesToUpload.forEach(function(file) { %} -
    • -
      -
      -
      {{file.originalName || file.name}}
      - {% if (file.status === 'progress') { %} -
      -
      - {{file.progress}}% {{ctx.t('Complete')}} -
      -
      - {% } else { %} -
      {{ctx.t(file.message)}}
      - {% } %} -
      -
      {{ctx.fileSize(file.size)}}
      - {% if (ctx.self.hasTypes) { %} -
      - -
      - {% } %} - {% if (file.status === 'progress') { %} -
      - {% } else if (!ctx.isSyncing && file.status !== 'success') { %} -
      - {% } %} -
      -
    • - {% }) %} -
    -{% } else { %} -
    - {% ctx.files.forEach(function(file) { %} -
    - - {{file.originalName || file.name}} - {% if (!ctx.disabled) { %} - - {% } %} - -
    - {% }) %} - {% ctx.filesToUpload.forEach(function(file) { %} - {% if (file.status === 'progress') { %} -
    {{ctx.fileSize(file.size)}}
    -
    -
    - {{file.progress}}% {{ctx.t('Complete')}} -
    -
    - {% } else { %} -
    {{ctx.t(file.message)}}
    - {% } %} - {% }) %} -
    -{% } %} -{% if (!ctx.disabled && (ctx.component.multiple || !ctx.files.length)) { %} - {% if (ctx.self.useWebViewCamera) { %} -
    - - -
    - {% } else if (!ctx.self.cameraMode) { %} - - {% } else { %} -
    - -
    - - - {% } %} -{% } %} -{% if (!ctx.component.storage || ctx.support.hasWarning) { %} -
    - {% if (!ctx.component.storage) { %} -

    {{ctx.t('No storage has been set for this field. File uploads are disabled until storage is set up.')}}

    - {% } %} - {% if (!ctx.support.filereader) { %} -

    {{ctx.t('File API & FileReader API not supported.')}}

    - {% } %} - {% if (!ctx.support.formdata) { %} -

    {{ctx.t("XHR2's FormData is not supported.")}}

    - {% } %} - {% if (!ctx.support.progress) { %} -

    {{ctx.t("XHR2's upload progress isn't supported.")}}

    - {% } %} -
    -{% } %} diff --git a/src/templates/bootstrap4/file/index.ts b/src/templates/bootstrap4/file/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/file/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/grid/html.ejs b/src/templates/bootstrap4/grid/html.ejs deleted file mode 100644 index ce5536a80..000000000 --- a/src/templates/bootstrap4/grid/html.ejs +++ /dev/null @@ -1,72 +0,0 @@ -
    -
    - - - -
    - {% if (ctx.component.enableRowSelect) { %} -
    - {{ctx.selectedRows}} selected -
    - {% } %} -
    -
    -
    -
    -
    -
    - - - - {% if (!ctx.component.components.length) { %} - - {% } %} - {% if (ctx.component.enableRowSelect) { %} - - {% } %} - {% ctx.component.components.forEach(function(comp, i) { %} - {% if (comp.show) { %} - - {% } %} - {% }); %} - {% if ((ctx.component.showEditBtn || ctx.component.showDeleteBtn || ctx.component.showDeleteAllBtn) - && ctx.data.length - && !ctx.options.pdf) { %} - - {% } %} - - - -
    No components have been set up to display in the Data Table. "Table View" must be checked for components to render. - - - {{ comp.label || comp.key }} - {% if (ctx.options.sortable && comp.sortable) { %} - - {{ ctx.component.sort.isAsc ? '↑' : '↓' }} - - {% } %} - {% if (!ctx.options.hideMenu) { %} - - - - {% } %} - -
    - Actions - {% if (ctx.component.showDeleteAllBtn && ctx.data.length) { %} - - {% } %} -
    -
    -
    -
    -
    - {% if (ctx.component.showAddBtn && !ctx.options.pdf) { %} -
    +
    - {% } %} -
    -
    -
    \ No newline at end of file diff --git a/src/templates/bootstrap4/grid/index.ts b/src/templates/bootstrap4/grid/index.ts deleted file mode 100644 index 6cc911a13..000000000 --- a/src/templates/bootstrap4/grid/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -import html from './html.ejs'; -export default { html }; \ No newline at end of file diff --git a/src/templates/bootstrap4/html/form.ejs b/src/templates/bootstrap4/html/form.ejs deleted file mode 100644 index 8d5d96cee..000000000 --- a/src/templates/bootstrap4/html/form.ejs +++ /dev/null @@ -1,5 +0,0 @@ -<{{ctx.tag}} class="formio-component-htmlelement {{ ctx.component.className }}" ref="html" - {% ctx.attrs.forEach(function(attr) { %} - {{attr.attr}}="{{attr.value}}" - {% }) %} ->{{ ctx.builder ? ctx.content : ctx.t(ctx.content) }}{% if (!ctx.singleTags || ctx.singleTags.indexOf(ctx.tag) === -1) { %}{% } %} diff --git a/src/templates/bootstrap4/html/index.ts b/src/templates/bootstrap4/html/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/html/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/icon/form.ejs b/src/templates/bootstrap4/icon/form.ejs deleted file mode 100644 index d6715a0fc..000000000 --- a/src/templates/bootstrap4/icon/form.ejs +++ /dev/null @@ -1 +0,0 @@ -{{ctx.content}} diff --git a/src/templates/bootstrap4/icon/index.ts b/src/templates/bootstrap4/icon/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/icon/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/iconClass.ts b/src/templates/bootstrap4/iconClass.ts deleted file mode 100644 index bfbaf204e..000000000 --- a/src/templates/bootstrap4/iconClass.ts +++ /dev/null @@ -1,39 +0,0 @@ -export default (iconset, name, spinning) => { - if (iconset === 'fa') { - switch (name) { - case 'save': - name = 'download'; - break; - case 'zoom-in': - name = 'search-plus'; - break; - case 'zoom-out': - name = 'search-minus'; - break; - case 'question-sign': - name = 'question-circle'; - break; - case 'remove-circle': - case 'circle-xmark': - name = 'times-circle-o'; - break; - case 'new-window': - name = 'window-restore'; - break; - case 'move': - name = 'arrows'; - break; - case 'time': - name = 'clock-o'; - break; - case 'ok-sign': - name = 'check-circle'; - break; - case 'remove-sign': - name = 'times-circle'; - break; - } - } - - return spinning ? `${iconset} ${iconset}-${name} ${iconset}-spin` : `${iconset} ${iconset}-${name}`; -}; diff --git a/src/templates/bootstrap4/index.ts b/src/templates/bootstrap4/index.ts deleted file mode 100644 index 184b1d01b..000000000 --- a/src/templates/bootstrap4/index.ts +++ /dev/null @@ -1,152 +0,0 @@ -import address from './address'; -import builder from './builder'; -import builderComponent from './builderComponent'; -import builderComponents from './builderComponents'; -import builderEditForm from './builderEditForm'; -import builderPlaceholder from './builderPlaceholder'; -import builderSidebar from './builderSidebar'; -import builderSidebarGroup from './builderSidebarGroup'; -import builderWizard from './builderWizard'; -import button from './button'; -import checkbox from './checkbox'; -import columns from './columns'; -import component from './component'; -import componentModal from './componentModal'; -import components from './components'; -import tableComponents from './tableComponents'; -import container from './container'; -import datagrid from './datagrid'; -import day from './day'; -import dialog from './dialog'; -import editgrid from './editgrid'; -import editgridTable from './editgridTable'; -import field from './field'; -import fieldset from './fieldset'; -import file from './file'; -import html from './html'; -import icon from './icon'; -import iconClass from './iconClass'; -import input from './input'; -import label from './label'; -import loader from './loader'; -import loading from './loading'; -import map from './map'; -import message from './message'; -import modaldialog from './modaldialog'; -import modaledit from './modaledit'; -import modalPreview from './modalPreview'; -import multipleMasksInput from './multipleMasksInput'; -import multiValueRow from './multiValueRow'; -import multiValueTable from './multiValueTable'; -import panel from './panel'; -import pdf from './pdf'; -import pdfBuilder from './pdfBuilder'; -import pdfBuilderUpload from './pdfBuilderUpload'; -import radio from './radio'; -import resourceAdd from './resourceAdd'; -import select from './select'; -import selectOption from './selectOption'; -import signature from './signature'; -import survey from './survey'; -import tab from './tab'; -import table from './table'; -import tree from './tree'; -import treePartials from './tree/partials'; -import webform from './webform'; -import well from './well'; -import wizard from './wizard'; -import wizardHeader from './wizardHeader'; -import wizardHeaderClassic from './wizardHeaderClassic'; -import wizardHeaderVertical from './wizardHeaderVertical'; -import wizardNav from './wizardNav'; -import cssClasses from './cssClasses'; -import errorsList from './errorsList'; -import alert from './alert'; -import grid from './grid'; -import pagination from './pagination'; -import columnMenu from './column-menu'; -import tbody from './tbody'; -import paginationBottom from './pagination-bottom'; - -export default { - transform(type, text) { - if (!text) { - return text; - } - switch (type) { - case 'class': - return this.cssClasses.hasOwnProperty(text.toString()) ? this.cssClasses[text.toString()] : text; - } - return text; - }, - defaultIconset: 'fa', - iconClass, - cssClasses, - address, - builder, - builderComponent, - builderComponents, - builderEditForm, - builderPlaceholder, - builderSidebar, - builderSidebarGroup, - builderWizard, - button, - checkbox, - columns, - component, - componentModal, - components, - tableComponents, - container, - datagrid, - day, - dialog, - editgrid, - editgridTable, - field, - fieldset, - file, - html, - icon, - input, - label, - loader, - loading, - map, - message, - modaledit, - modaldialog, - modalPreview, - multipleMasksInput, - multiValueRow, - multiValueTable, - panel, - pdf, - pdfBuilder, - pdfBuilderUpload, - radio, - resourceAdd, - select, - selectOption, - signature, - survey, - tab, - table, - tree, - ...treePartials, - webform, - well, - wizard, - wizardHeader, - wizardHeaderClassic, - wizardHeaderVertical, - wizardNav, - errorsList, - alert, - grid, - pagination, - columnMenu, - tbody, - paginationBottom -}; diff --git a/src/templates/bootstrap4/input/form.ejs b/src/templates/bootstrap4/input/form.ejs deleted file mode 100644 index 256b5e6f4..000000000 --- a/src/templates/bootstrap4/input/form.ejs +++ /dev/null @@ -1,64 +0,0 @@ -{% if (ctx.prefix || ctx.suffix) { %} -
    - {% } %} - {% if (ctx.prefix) { %} -
    - - {% if(ctx.prefix instanceof HTMLElement){ %} - {{ ctx.t(ctx.prefix.outerHTML, { _userInput: true }) }} - {% } else{ %} - {{ ctx.t(ctx.prefix, { _userInput: true }) }} - {% } %} - -
    - {% } %} - {% if (!ctx.component.editor && !ctx.component.wysiwyg) { %} - <{{ctx.input.type}} - ref="{{ctx.input.ref ? ctx.input.ref : 'input'}}" - {% for (var attr in ctx.input.attr) { %} - {{attr}}="{{ctx.input.attr[attr]}}" - {% } %} - id="{{ctx.instance.id}}-{{ctx.component.key}}" - aria-labelledby="l-{{ctx.instance.id}}-{{ctx.component.key}} {% if (ctx.component.description) { %}d-{{ctx.instance.id}}-{{ctx.component.key}}{% } %}" - aria-required="{{ctx.input.ref === 'input' || !ctx.input.ref ? ctx.component.validate.required : - ctx.component.fields && ctx.component.fields[ctx.input.ref] && ctx.component.fields[ctx.input.ref].required || false}}" - >{{ctx.input.content}} - {% if (ctx.hasValueMaskInput) { %} - - {% } %} -{% } %} -{% if (ctx.component.editor || ctx.component.wysiwyg) { %} -
    -{% } %} -{% if (ctx.component.type === 'datetime') { %} - -{% } %} -{% if (ctx.suffix) { %} - -{% } %} -{% if (ctx.prefix || ctx.suffix) { %} -
    -{% } %} -{% if (ctx.component.showCharCount || ctx.component.showWordCount) { %} -
    - {% if (ctx.component.showCharCount) { %} - - {% } %} - {% if (ctx.component.showWordCount) { %} - - {% } %} -
    -{% } %} diff --git a/src/templates/bootstrap4/input/html.ejs b/src/templates/bootstrap4/input/html.ejs deleted file mode 100644 index 82fffefce..000000000 --- a/src/templates/bootstrap4/input/html.ejs +++ /dev/null @@ -1 +0,0 @@ -
    {% if (ctx.value) { %}{{ctx.value}}{% } else { %}-{% } %}
    diff --git a/src/templates/bootstrap4/input/index.ts b/src/templates/bootstrap4/input/index.ts deleted file mode 100644 index 7f65740da..000000000 --- a/src/templates/bootstrap4/input/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; - -export default { form, html }; diff --git a/src/templates/bootstrap4/label/form.ejs b/src/templates/bootstrap4/label/form.ejs deleted file mode 100644 index 7b79bcb4d..000000000 --- a/src/templates/bootstrap4/label/form.ejs +++ /dev/null @@ -1,14 +0,0 @@ - diff --git a/src/templates/bootstrap4/label/index.ts b/src/templates/bootstrap4/label/index.ts deleted file mode 100644 index 0890c1f22..000000000 --- a/src/templates/bootstrap4/label/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/src/templates/bootstrap4/loader/form.ejs b/src/templates/bootstrap4/loader/form.ejs deleted file mode 100644 index b8f1555ca..000000000 --- a/src/templates/bootstrap4/loader/form.ejs +++ /dev/null @@ -1,5 +0,0 @@ -
    -
    -
    -
    -
    diff --git a/src/templates/bootstrap4/loader/index.ts b/src/templates/bootstrap4/loader/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/loader/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/loading/form.ejs b/src/templates/bootstrap4/loading/form.ejs deleted file mode 100644 index da2856968..000000000 --- a/src/templates/bootstrap4/loading/form.ejs +++ /dev/null @@ -1 +0,0 @@ -Loading... diff --git a/src/templates/bootstrap4/loading/index.ts b/src/templates/bootstrap4/loading/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/loading/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/map/form.ejs b/src/templates/bootstrap4/map/form.ejs deleted file mode 100644 index 579713d30..000000000 --- a/src/templates/bootstrap4/map/form.ejs +++ /dev/null @@ -1 +0,0 @@ -
    diff --git a/src/templates/bootstrap4/map/index.ts b/src/templates/bootstrap4/map/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/map/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/message/form.ejs b/src/templates/bootstrap4/message/form.ejs deleted file mode 100644 index d79a30eb3..000000000 --- a/src/templates/bootstrap4/message/form.ejs +++ /dev/null @@ -1 +0,0 @@ -
    {{ctx.message}}
    diff --git a/src/templates/bootstrap4/message/index.ts b/src/templates/bootstrap4/message/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/message/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/modalPreview/form.ejs b/src/templates/bootstrap4/modalPreview/form.ejs deleted file mode 100644 index 5f8ac35f2..000000000 --- a/src/templates/bootstrap4/modalPreview/form.ejs +++ /dev/null @@ -1,15 +0,0 @@ -
    - - -
    - {{ ctx.messages }} -
    diff --git a/src/templates/bootstrap4/modalPreview/index.ts b/src/templates/bootstrap4/modalPreview/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/modalPreview/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/modaldialog/form.ejs b/src/templates/bootstrap4/modaldialog/form.ejs deleted file mode 100644 index b6a74f239..000000000 --- a/src/templates/bootstrap4/modaldialog/form.ejs +++ /dev/null @@ -1,13 +0,0 @@ -
    -
    -
    - -
    -
    -
    diff --git a/src/templates/bootstrap4/modaldialog/index.ts b/src/templates/bootstrap4/modaldialog/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/modaldialog/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/modaledit/form.ejs b/src/templates/bootstrap4/modaledit/form.ejs deleted file mode 100644 index 00d515856..000000000 --- a/src/templates/bootstrap4/modaledit/form.ejs +++ /dev/null @@ -1,10 +0,0 @@ -
    - -
    {{ctx.content}}
    -
    diff --git a/src/templates/bootstrap4/modaledit/index.ts b/src/templates/bootstrap4/modaledit/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/modaledit/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/multiValueRow/form.ejs b/src/templates/bootstrap4/multiValueRow/form.ejs deleted file mode 100644 index cc0b1ea9d..000000000 --- a/src/templates/bootstrap4/multiValueRow/form.ejs +++ /dev/null @@ -1,12 +0,0 @@ - - - {{ctx.element}} - - {% if (!ctx.disabled) { %} - - - - {% } %} - diff --git a/src/templates/bootstrap4/multiValueRow/index.ts b/src/templates/bootstrap4/multiValueRow/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/multiValueRow/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/multiValueTable/form.ejs b/src/templates/bootstrap4/multiValueTable/form.ejs deleted file mode 100644 index cc143dd42..000000000 --- a/src/templates/bootstrap4/multiValueTable/form.ejs +++ /dev/null @@ -1,12 +0,0 @@ - - - {{ctx.rows}} - {% if (!ctx.disabled) { %} - - - - {% } %} - -
    - -
    diff --git a/src/templates/bootstrap4/multiValueTable/index.ts b/src/templates/bootstrap4/multiValueTable/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/multiValueTable/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/multipleMasksInput/form.ejs b/src/templates/bootstrap4/multipleMasksInput/form.ejs deleted file mode 100644 index 42975ffc2..000000000 --- a/src/templates/bootstrap4/multipleMasksInput/form.ejs +++ /dev/null @@ -1,20 +0,0 @@ -
    - - -
    diff --git a/src/templates/bootstrap4/multipleMasksInput/index.ts b/src/templates/bootstrap4/multipleMasksInput/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/multipleMasksInput/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/pagination-bottom/html.ejs b/src/templates/bootstrap4/pagination-bottom/html.ejs deleted file mode 100644 index f85439634..000000000 --- a/src/templates/bootstrap4/pagination-bottom/html.ejs +++ /dev/null @@ -1,16 +0,0 @@ -
    - -
    \ No newline at end of file diff --git a/src/templates/bootstrap4/pagination-bottom/index.ts b/src/templates/bootstrap4/pagination-bottom/index.ts deleted file mode 100644 index 6cc911a13..000000000 --- a/src/templates/bootstrap4/pagination-bottom/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -import html from './html.ejs'; -export default { html }; \ No newline at end of file diff --git a/src/templates/bootstrap4/pagination/html.ejs b/src/templates/bootstrap4/pagination/html.ejs deleted file mode 100644 index a5256b3e3..000000000 --- a/src/templates/bootstrap4/pagination/html.ejs +++ /dev/null @@ -1,31 +0,0 @@ - \ No newline at end of file diff --git a/src/templates/bootstrap4/pagination/index.ts b/src/templates/bootstrap4/pagination/index.ts deleted file mode 100644 index 6cc911a13..000000000 --- a/src/templates/bootstrap4/pagination/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -import html from './html.ejs'; -export default { html }; \ No newline at end of file diff --git a/src/templates/bootstrap4/panel/form.ejs b/src/templates/bootstrap4/panel/form.ejs deleted file mode 100644 index 9140f9251..000000000 --- a/src/templates/bootstrap4/panel/form.ejs +++ /dev/null @@ -1,30 +0,0 @@ -
    - {% if (!ctx.label.hidden || ctx.builder || ctx.component.collapsible || ctx.component.tooltip) { %} -
    - - {% if (ctx.component.collapsible) { %} - - {% } %} - {% if (!ctx.label.hidden || ctx.builder) { %} - {{ctx.t(ctx.component.title, { _userInput: true })}} - {% } %} - {% if (ctx.component.tooltip) { %} - - {% } %} - -
    - {% } %} - {% if (!ctx.collapsed || ctx.builder) { %} -
    - {{ctx.children}} -
    - {% } %} -
    diff --git a/src/templates/bootstrap4/panel/index.ts b/src/templates/bootstrap4/panel/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/panel/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/pdf/form.ejs b/src/templates/bootstrap4/pdf/form.ejs deleted file mode 100644 index 842a18d99..000000000 --- a/src/templates/bootstrap4/pdf/form.ejs +++ /dev/null @@ -1,10 +0,0 @@ -
    - - - - - - -
    - {{ ctx.submitButton }} -
    diff --git a/src/templates/bootstrap4/pdf/index.ts b/src/templates/bootstrap4/pdf/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/pdf/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/pdfBuilder/form.ejs b/src/templates/bootstrap4/pdfBuilder/form.ejs deleted file mode 100644 index 6bd3d4537..000000000 --- a/src/templates/bootstrap4/pdfBuilder/form.ejs +++ /dev/null @@ -1,9 +0,0 @@ -
    -
    - {{ctx.sidebar}} -
    -
    -
    - {{ctx.form}} -
    -
    diff --git a/src/templates/bootstrap4/pdfBuilder/index.ts b/src/templates/bootstrap4/pdfBuilder/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/pdfBuilder/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/pdfBuilderUpload/form.ejs b/src/templates/bootstrap4/pdfBuilderUpload/form.ejs deleted file mode 100644 index c0ea95dd1..000000000 --- a/src/templates/bootstrap4/pdfBuilderUpload/form.ejs +++ /dev/null @@ -1,16 +0,0 @@ -
    -

    {{ctx.t('Upload a PDF File')}}

    - -
    - - {{ctx.t('Drop pdf to start, or')}} {{ctx.t('browse')}} - - -
    -
    - -
    -
    - diff --git a/src/templates/bootstrap4/pdfBuilderUpload/index.ts b/src/templates/bootstrap4/pdfBuilderUpload/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/pdfBuilderUpload/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/radio/form.ejs b/src/templates/bootstrap4/radio/form.ejs deleted file mode 100644 index 9e0375060..000000000 --- a/src/templates/bootstrap4/radio/form.ejs +++ /dev/null @@ -1,38 +0,0 @@ -
    - {% ctx.values.forEach(function(item, index) { %} -
    - -
    - {% }) %} -
    diff --git a/src/templates/bootstrap4/radio/html.ejs b/src/templates/bootstrap4/radio/html.ejs deleted file mode 100644 index 37cbccef3..000000000 --- a/src/templates/bootstrap4/radio/html.ejs +++ /dev/null @@ -1,4 +0,0 @@ -
    - {% var filtered = ctx.values.filter(function(item) {return ctx.value === item.value || (typeof ctx.value === 'object' && ctx.value.hasOwnProperty(item.value) && ctx.value[item.value])}).map(function(item) { return ctx.t(item.label, { _userInput: true })}).join(', ') %} - {{ filtered }} -
    diff --git a/src/templates/bootstrap4/radio/index.ts b/src/templates/bootstrap4/radio/index.ts deleted file mode 100644 index 7f65740da..000000000 --- a/src/templates/bootstrap4/radio/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; - -export default { form, html }; diff --git a/src/templates/bootstrap4/resourceAdd/form.ejs b/src/templates/bootstrap4/resourceAdd/form.ejs deleted file mode 100644 index 1823781a1..000000000 --- a/src/templates/bootstrap4/resourceAdd/form.ejs +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - -
    - {{ctx.element}} -
    - -
    diff --git a/src/templates/bootstrap4/resourceAdd/index.ts b/src/templates/bootstrap4/resourceAdd/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/resourceAdd/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/select/form.ejs b/src/templates/bootstrap4/select/form.ejs deleted file mode 100644 index b2490e28d..000000000 --- a/src/templates/bootstrap4/select/form.ejs +++ /dev/null @@ -1,23 +0,0 @@ - - diff --git a/src/templates/bootstrap4/select/html.ejs b/src/templates/bootstrap4/select/html.ejs deleted file mode 100644 index 886cd5222..000000000 --- a/src/templates/bootstrap4/select/html.ejs +++ /dev/null @@ -1 +0,0 @@ -
    {% if (ctx.value) { %}{{ ctx.self.itemValueForHTMLMode(ctx.value) }}{% } else { %}-{% } %}
    diff --git a/src/templates/bootstrap4/select/index.ts b/src/templates/bootstrap4/select/index.ts deleted file mode 100644 index 7f65740da..000000000 --- a/src/templates/bootstrap4/select/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; - -export default { form, html }; diff --git a/src/templates/bootstrap4/selectOption/form.ejs b/src/templates/bootstrap4/selectOption/form.ejs deleted file mode 100644 index 2bf73ffef..000000000 --- a/src/templates/bootstrap4/selectOption/form.ejs +++ /dev/null @@ -1,8 +0,0 @@ - diff --git a/src/templates/bootstrap4/selectOption/html.ejs b/src/templates/bootstrap4/selectOption/html.ejs deleted file mode 100644 index 1eca48302..000000000 --- a/src/templates/bootstrap4/selectOption/html.ejs +++ /dev/null @@ -1 +0,0 @@ -{% if (ctx.selected) { %}{{ctx.t(ctx.option.label, { _userInput: true })}}{% } %} diff --git a/src/templates/bootstrap4/selectOption/index.ts b/src/templates/bootstrap4/selectOption/index.ts deleted file mode 100644 index 7f65740da..000000000 --- a/src/templates/bootstrap4/selectOption/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; - -export default { form, html }; diff --git a/src/templates/bootstrap4/signature/form.ejs b/src/templates/bootstrap4/signature/form.ejs deleted file mode 100644 index 293087262..000000000 --- a/src/templates/bootstrap4/signature/form.ejs +++ /dev/null @@ -1,23 +0,0 @@ -{{ctx.element}} -
    - - - - - {% if (ctx.required) { %} - - {% } %} - -
    -{% if (ctx.component.footer) { %} - -{% } %} diff --git a/src/templates/bootstrap4/signature/html.ejs b/src/templates/bootstrap4/signature/html.ejs deleted file mode 100644 index f26a2e880..000000000 --- a/src/templates/bootstrap4/signature/html.ejs +++ /dev/null @@ -1 +0,0 @@ - diff --git a/src/templates/bootstrap4/signature/index.ts b/src/templates/bootstrap4/signature/index.ts deleted file mode 100644 index 7f65740da..000000000 --- a/src/templates/bootstrap4/signature/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; - -export default { form, html }; diff --git a/src/templates/bootstrap4/survey/form.ejs b/src/templates/bootstrap4/survey/form.ejs deleted file mode 100644 index ce7c9b87f..000000000 --- a/src/templates/bootstrap4/survey/form.ejs +++ /dev/null @@ -1,32 +0,0 @@ - - - - - {% ctx.component.values.forEach(function(value) { %} - - {% }) %} - - - - {% ctx.component.questions.forEach(function(question) { %} - - - {% ctx.component.values.forEach(function(value) { %} - - {% }) %} - - {% }) %} - -
    - {{ctx.t(value.label, { _userInput: true })}} - {% if (value.tooltip) { %} - - {% } %} -
    - {{ctx.t(question.label)}} - {% if (question.tooltip) { %} - - {% } %} - - -
    diff --git a/src/templates/bootstrap4/survey/html.ejs b/src/templates/bootstrap4/survey/html.ejs deleted file mode 100644 index 8c204c2cd..000000000 --- a/src/templates/bootstrap4/survey/html.ejs +++ /dev/null @@ -1,16 +0,0 @@ - - - {% ctx.component.questions.forEach(function(question) { %} - - - - - {% }) %} - -
    {{ctx.t(question.label)}} - {% ctx.component.values.forEach(function(item) { %} - {% if (ctx.value && ctx.value.hasOwnProperty(question.value) && ctx.value[question.value] === item.value) { %} - {{ctx.t(item.label)}} - {% } %} - {% }) %} -
    diff --git a/src/templates/bootstrap4/survey/index.ts b/src/templates/bootstrap4/survey/index.ts deleted file mode 100644 index 7f65740da..000000000 --- a/src/templates/bootstrap4/survey/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import form from './form.ejs'; -import html from './html.ejs'; - -export default { form, html }; diff --git a/src/templates/bootstrap4/tab/flat.ejs b/src/templates/bootstrap4/tab/flat.ejs deleted file mode 100644 index eaa095715..000000000 --- a/src/templates/bootstrap4/tab/flat.ejs +++ /dev/null @@ -1,13 +0,0 @@ -{% ctx.component.components.forEach(function(tab, index) { %} -
    -
    -

    {{ ctx.t(tab.label, { _userInput: true }) }}

    -
    -
    - {{ ctx.tabComponents[index] }} -
    -
    -{% }) %} diff --git a/src/templates/bootstrap4/tab/form.ejs b/src/templates/bootstrap4/tab/form.ejs deleted file mode 100644 index f3a9a603d..000000000 --- a/src/templates/bootstrap4/tab/form.ejs +++ /dev/null @@ -1,27 +0,0 @@ -
    -
    - -
    - {% ctx.component.components.forEach(function(tab, index) { %} -
    - {{ctx.tabComponents[index]}} -
    - {% }) %} -
    diff --git a/src/templates/bootstrap4/tab/index.ts b/src/templates/bootstrap4/tab/index.ts deleted file mode 100644 index 5ec9caef3..000000000 --- a/src/templates/bootstrap4/tab/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import flat from './flat.ejs'; -import form from './form.ejs'; - -export default { flat, form }; diff --git a/src/templates/bootstrap4/table/form.ejs b/src/templates/bootstrap4/table/form.ejs deleted file mode 100644 index 633b7f236..000000000 --- a/src/templates/bootstrap4/table/form.ejs +++ /dev/null @@ -1,26 +0,0 @@ - - - {% if (ctx.component.header && ctx.component.header.length > 0) { %} - - - {% ctx.component.header.forEach(function(header) { %} - - {% }) %} - - - {% } %} - - {% ctx.tableComponents.forEach(function(row, rowIndex) { %} - - {% row.forEach(function(column, colIndex) { %} - - {% }) %} - - {% }) %} - -
    {{ctx.t(ctx.component.label)}}
    {{ctx.t(header)}}
    {{column}}
    diff --git a/src/templates/bootstrap4/table/index.ts b/src/templates/bootstrap4/table/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/table/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/tableComponents/form.ejs b/src/templates/bootstrap4/tableComponents/form.ejs deleted file mode 100644 index 9fa0c21cd..000000000 --- a/src/templates/bootstrap4/tableComponents/form.ejs +++ /dev/null @@ -1,5 +0,0 @@ -{% ctx.children.forEach(function(component) { %} - - {{ component }} - -{% }) %} diff --git a/src/templates/bootstrap4/tableComponents/index.ts b/src/templates/bootstrap4/tableComponents/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/tableComponents/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/tbody/html.ejs b/src/templates/bootstrap4/tbody/html.ejs deleted file mode 100644 index 61480f494..000000000 --- a/src/templates/bootstrap4/tbody/html.ejs +++ /dev/null @@ -1,47 +0,0 @@ - - - {% ctx.eachRow(function(row) { %} - - {% if (ctx.component.enableRowSelect) { %} - - {% } %} - {% row.forEach(function(rowComp) { %} - {% if (rowComp.component.show) { %} - - {% } %} - {% }); %} - {% if ((ctx.component.showEditBtn || ctx.component.showDeleteBtn || ctx.component.showDeleteAllBtn) && !ctx.options.pdf) { %} - - {% } %} - - {% }); %} - -
    - - - {{ ctx.instance.hook('format', rowComp.component.key, rowComp.dataValue, rowComp.rowIndex) }} - -
    - - ⋮ -
    -
    diff --git a/src/templates/bootstrap4/tbody/index.ts b/src/templates/bootstrap4/tbody/index.ts deleted file mode 100644 index 6cc911a13..000000000 --- a/src/templates/bootstrap4/tbody/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -import html from './html.ejs'; -export default { html }; \ No newline at end of file diff --git a/src/templates/bootstrap4/tree/form.ejs b/src/templates/bootstrap4/tree/form.ejs deleted file mode 100644 index 650594192..000000000 --- a/src/templates/bootstrap4/tree/form.ejs +++ /dev/null @@ -1,20 +0,0 @@ -{% if (ctx.node.isRoot) { %} -
    -{% } else { %} -
  • -{% } %} - {% if (ctx.content) { %} -
    - {{ ctx.content }} -
    - {% } %} - {% if (ctx.childNodes && ctx.childNodes.length) { %} -
      - {{ ctx.childNodes.join('') }} -
    - {% } %} -{% if (ctx.node.isRoot) { %} -
  • -{% } else { %} - -{% } %} diff --git a/src/templates/bootstrap4/tree/index.ts b/src/templates/bootstrap4/tree/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/tree/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/tree/partials/edit.ejs b/src/templates/bootstrap4/tree/partials/edit.ejs deleted file mode 100644 index 468b7ead7..000000000 --- a/src/templates/bootstrap4/tree/partials/edit.ejs +++ /dev/null @@ -1,9 +0,0 @@ -
    -
    {{ ctx.children }}
    - {% if (!ctx.readOnly) { %} -
    - - -
    - {% } %} -
    diff --git a/src/templates/bootstrap4/tree/partials/index.ts b/src/templates/bootstrap4/tree/partials/index.ts deleted file mode 100644 index abb7cfb6a..000000000 --- a/src/templates/bootstrap4/tree/partials/index.ts +++ /dev/null @@ -1,11 +0,0 @@ -import edit from './edit.ejs'; -import view from './view.ejs'; - -export default { - treeView: { - form: view, - }, - treeEdit: { - form: edit - } -}; diff --git a/src/templates/bootstrap4/tree/partials/view.ejs b/src/templates/bootstrap4/tree/partials/view.ejs deleted file mode 100644 index ab3d98aac..000000000 --- a/src/templates/bootstrap4/tree/partials/view.ejs +++ /dev/null @@ -1,22 +0,0 @@ -
    - {% ctx.values.forEach(function(value) { %} -
    - {{ value }} -
    - {% }) %} -
    -
    - {% if (ctx.node.hasChildren) { %} - - {% } %} - {% if (!ctx.readOnly) { %} - - - - {% if (ctx.node.revertAvailable) { %} - - {% } %} - {% } %} -
    -
    -
    diff --git a/src/templates/bootstrap4/webform/builder.ejs b/src/templates/bootstrap4/webform/builder.ejs deleted file mode 100644 index cd63e2344..000000000 --- a/src/templates/bootstrap4/webform/builder.ejs +++ /dev/null @@ -1 +0,0 @@ -
    {{ ctx.t(ctx.component.title, { _userInput: true }) }}
    diff --git a/src/templates/bootstrap4/webform/form.ejs b/src/templates/bootstrap4/webform/form.ejs deleted file mode 100644 index 2ea21b9b3..000000000 --- a/src/templates/bootstrap4/webform/form.ejs +++ /dev/null @@ -1 +0,0 @@ -
    {{ctx.children}}
    diff --git a/src/templates/bootstrap4/webform/index.ts b/src/templates/bootstrap4/webform/index.ts deleted file mode 100644 index 97db03568..000000000 --- a/src/templates/bootstrap4/webform/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import form from './form.ejs'; -import builder from './builder.ejs'; - -export default { form, builder }; diff --git a/src/templates/bootstrap4/well/form.ejs b/src/templates/bootstrap4/well/form.ejs deleted file mode 100644 index 6765e55b2..000000000 --- a/src/templates/bootstrap4/well/form.ejs +++ /dev/null @@ -1,5 +0,0 @@ -
    -
    - {{ctx.children}} -
    -
    diff --git a/src/templates/bootstrap4/well/index.ts b/src/templates/bootstrap4/well/index.ts deleted file mode 100644 index 4d4897d4b..000000000 --- a/src/templates/bootstrap4/well/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; - -export default { form }; diff --git a/src/templates/bootstrap4/wizard/builder.ejs b/src/templates/bootstrap4/wizard/builder.ejs deleted file mode 100644 index cd63e2344..000000000 --- a/src/templates/bootstrap4/wizard/builder.ejs +++ /dev/null @@ -1 +0,0 @@ -
    {{ ctx.t(ctx.component.title, { _userInput: true }) }}
    diff --git a/src/templates/bootstrap4/wizard/form.ejs b/src/templates/bootstrap4/wizard/form.ejs deleted file mode 100644 index 4ba02c551..000000000 --- a/src/templates/bootstrap4/wizard/form.ejs +++ /dev/null @@ -1,30 +0,0 @@ -
    -
    - {% if (ctx.wizardHeaderType === 'wizardHeaderVertical') { %} -
    - {% if (ctx.wizardHeaderLocation !== 'right') { %} -
    - {{ ctx.wizardHeader }} -
    - {% } %} -
    - {{ctx.components}} -
    - {% if (ctx.wizardHeaderLocation === 'right') { %} -
    - {{ ctx.wizardHeader }} -
    - {% } %} -
    -
    - {{ ctx.wizardNav }} -
    - {% } else { %} - {{ ctx.wizardHeader }} -
    - {{ctx.components}} -
    - {{ ctx.wizardNav }} - {% } %} -
    -
    diff --git a/src/templates/bootstrap4/wizard/index.ts b/src/templates/bootstrap4/wizard/index.ts deleted file mode 100644 index bcece253f..000000000 --- a/src/templates/bootstrap4/wizard/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import form from './form.ejs'; -import builder from './builder.ejs'; -export default { form, builder }; diff --git a/src/templates/bootstrap4/wizardHeader/form.ejs b/src/templates/bootstrap4/wizardHeader/form.ejs deleted file mode 100644 index d84993567..000000000 --- a/src/templates/bootstrap4/wizardHeader/form.ejs +++ /dev/null @@ -1,14 +0,0 @@ - diff --git a/src/templates/bootstrap4/wizardHeader/index.ts b/src/templates/bootstrap4/wizardHeader/index.ts deleted file mode 100644 index 0890c1f22..000000000 --- a/src/templates/bootstrap4/wizardHeader/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/src/templates/bootstrap4/wizardHeaderClassic/form.ejs b/src/templates/bootstrap4/wizardHeaderClassic/form.ejs deleted file mode 100644 index 14d71900a..000000000 --- a/src/templates/bootstrap4/wizardHeaderClassic/form.ejs +++ /dev/null @@ -1,16 +0,0 @@ - diff --git a/src/templates/bootstrap4/wizardHeaderClassic/index.ts b/src/templates/bootstrap4/wizardHeaderClassic/index.ts deleted file mode 100644 index 0890c1f22..000000000 --- a/src/templates/bootstrap4/wizardHeaderClassic/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/src/templates/bootstrap4/wizardHeaderVertical/form.ejs b/src/templates/bootstrap4/wizardHeaderVertical/form.ejs deleted file mode 100644 index 8feb95501..000000000 --- a/src/templates/bootstrap4/wizardHeaderVertical/form.ejs +++ /dev/null @@ -1,14 +0,0 @@ - diff --git a/src/templates/bootstrap4/wizardHeaderVertical/index.ts b/src/templates/bootstrap4/wizardHeaderVertical/index.ts deleted file mode 100644 index 0890c1f22..000000000 --- a/src/templates/bootstrap4/wizardHeaderVertical/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/src/templates/bootstrap4/wizardNav/form.ejs b/src/templates/bootstrap4/wizardNav/form.ejs deleted file mode 100644 index e4302495b..000000000 --- a/src/templates/bootstrap4/wizardNav/form.ejs +++ /dev/null @@ -1,28 +0,0 @@ -
      - {% ctx.buttonOrder.forEach(function(button) { %} - {% if (button === 'cancel' && ctx.buttons.cancel) { %} -
    • - -
    • - {% } %} - {% if (button === 'previous' && ctx.buttons.previous) { %} -
    • - -
    • - {% } %} - {% if (button === 'next' && ctx.buttons.next) { %} -
    • - -
    • - {% } %} - {% if (button === 'submit' && ctx.buttons.submit) { %} -
    • - {% if (ctx.disableWizardSubmit){ %} - - {% } else { %} - - {% } %} -
    • - {% } %} - {% }) %} -
    diff --git a/src/templates/bootstrap4/wizardNav/index.ts b/src/templates/bootstrap4/wizardNav/index.ts deleted file mode 100644 index 0890c1f22..000000000 --- a/src/templates/bootstrap4/wizardNav/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -import form from './form.ejs'; -export default { form }; diff --git a/src/templates/bootstrap5/dialog/form.ejs b/src/templates/bootstrap5/dialog/form.ejs index 9b6b4f93e..8f867ecc3 100644 --- a/src/templates/bootstrap5/dialog/form.ejs +++ b/src/templates/bootstrap5/dialog/form.ejs @@ -1,4 +1,4 @@ -
    +