diff --git a/composer.json b/composer.json index e01120205..6e2a2ba96 100644 --- a/composer.json +++ b/composer.json @@ -63,7 +63,6 @@ "Webkul\\Product\\": "packages/Webkul/Product/src", "Webkul\\Quote\\": "packages/Webkul/Quote/src", "Webkul\\Tag\\": "packages/Webkul/Tag/src", - "Webkul\\UI\\": "packages/Webkul/UI/src", "Webkul\\User\\": "packages/Webkul/User/src", "Webkul\\Warehouse\\": "packages/Webkul/Warehouse/src", "Webkul\\WebForm\\": "packages/Webkul/WebForm/src", diff --git a/config/app.php b/config/app.php index 61382e56c..2b5520a11 100644 --- a/config/app.php +++ b/config/app.php @@ -240,7 +240,6 @@ Webkul\Product\Providers\ProductServiceProvider::class, Webkul\Quote\Providers\QuoteServiceProvider::class, Webkul\Tag\Providers\TagServiceProvider::class, - Webkul\UI\Providers\UIServiceProvider::class, Webkul\User\Providers\UserServiceProvider::class, Webkul\Warehouse\Providers\WarehouseServiceProvider::class, Webkul\WebForm\Providers\WebFormServiceProvider::class, diff --git a/config/concord.php b/config/concord.php index 5f5c56f5e..1ef9a6004 100644 --- a/config/concord.php +++ b/config/concord.php @@ -5,20 +5,20 @@ \Webkul\Activity\Providers\ModuleServiceProvider::class, \Webkul\Admin\Providers\ModuleServiceProvider::class, \Webkul\Attribute\Providers\ModuleServiceProvider::class, + \Webkul\Automation\Providers\ModuleServiceProvider::class, \Webkul\Contact\Providers\ModuleServiceProvider::class, \Webkul\Core\Providers\ModuleServiceProvider::class, \Webkul\DataGrid\Providers\ModuleServiceProvider::class, - \Webkul\Email\Providers\ModuleServiceProvider::class, \Webkul\EmailTemplate\Providers\ModuleServiceProvider::class, + \Webkul\Email\Providers\ModuleServiceProvider::class, \Webkul\Lead\Providers\ModuleServiceProvider::class, - \Webkul\Warehouse\Providers\ModuleServiceProvider::class, \Webkul\Product\Providers\ModuleServiceProvider::class, \Webkul\Quote\Providers\ModuleServiceProvider::class, \Webkul\Tag\Providers\ModuleServiceProvider::class, - \Webkul\UI\Providers\ModuleServiceProvider::class, \Webkul\User\Providers\ModuleServiceProvider::class, + \Webkul\Warehouse\Providers\ModuleServiceProvider::class, \Webkul\WebForm\Providers\ModuleServiceProvider::class, - \Webkul\Automation\Providers\ModuleServiceProvider::class, ], + 'register_route_models' => true, ]; diff --git a/packages/Webkul/Admin/src/DataGrids/Quote/QuoteDataGrid.php b/packages/Webkul/Admin/src/DataGrids/Quote/QuoteDataGrid.php index d0c2f3d98..edbf05a58 100644 --- a/packages/Webkul/Admin/src/DataGrids/Quote/QuoteDataGrid.php +++ b/packages/Webkul/Admin/src/DataGrids/Quote/QuoteDataGrid.php @@ -96,7 +96,7 @@ public function prepareColumns(): void 'closure' => function ($row) { $route = urldecode(route('admin.contacts.persons.index', ['id[eq]' => $row->person_id])); - return "".$row->person_name.""; + return "".$row->person_name.''; }, ]); diff --git a/packages/Webkul/Core/src/Config/concord.php b/packages/Webkul/Core/src/Config/concord.php index 7d2a7ada2..1ef9a6004 100644 --- a/packages/Webkul/Core/src/Config/concord.php +++ b/packages/Webkul/Core/src/Config/concord.php @@ -5,20 +5,20 @@ \Webkul\Activity\Providers\ModuleServiceProvider::class, \Webkul\Admin\Providers\ModuleServiceProvider::class, \Webkul\Attribute\Providers\ModuleServiceProvider::class, + \Webkul\Automation\Providers\ModuleServiceProvider::class, \Webkul\Contact\Providers\ModuleServiceProvider::class, \Webkul\Core\Providers\ModuleServiceProvider::class, \Webkul\DataGrid\Providers\ModuleServiceProvider::class, - \Webkul\Email\Providers\ModuleServiceProvider::class, \Webkul\EmailTemplate\Providers\ModuleServiceProvider::class, + \Webkul\Email\Providers\ModuleServiceProvider::class, \Webkul\Lead\Providers\ModuleServiceProvider::class, \Webkul\Product\Providers\ModuleServiceProvider::class, \Webkul\Quote\Providers\ModuleServiceProvider::class, \Webkul\Tag\Providers\ModuleServiceProvider::class, - \Webkul\UI\Providers\ModuleServiceProvider::class, - \Webkul\Warehouse\Providers\ModuleServiceProvider::class, \Webkul\User\Providers\ModuleServiceProvider::class, + \Webkul\Warehouse\Providers\ModuleServiceProvider::class, \Webkul\WebForm\Providers\ModuleServiceProvider::class, - \Webkul\Automation\Providers\ModuleServiceProvider::class, ], + 'register_route_models' => true, ]; diff --git a/packages/Webkul/Core/src/Core.php b/packages/Webkul/Core/src/Core.php index 418b14443..af1057248 100644 --- a/packages/Webkul/Core/src/Core.php +++ b/packages/Webkul/Core/src/Core.php @@ -3,7 +3,6 @@ namespace Webkul\Core; use Carbon\Carbon; -use Illuminate\Support\Facades\Config; use Webkul\Core\Repositories\CoreConfigRepository; use Webkul\Core\Repositories\CountryRepository; use Webkul\Core\Repositories\CountryStateRepository; diff --git a/packages/Webkul/Installer/src/Console/Commands/Installer.php b/packages/Webkul/Installer/src/Console/Commands/Installer.php index a4fa3e4a4..0f80b6cb7 100644 --- a/packages/Webkul/Installer/src/Console/Commands/Installer.php +++ b/packages/Webkul/Installer/src/Console/Commands/Installer.php @@ -6,6 +6,7 @@ use Illuminate\Support\Facades\DB; use Illuminate\Support\Facades\Event; use Illuminate\Support\Facades\File; +use Webkul\Core\Providers\CoreServiceProvider; use Webkul\Installer\Database\Seeders\DatabaseSeeder as KrayinDatabaseSeeder; use Webkul\Installer\Events\ComposerEvents; @@ -138,7 +139,7 @@ public function handle() ])); $this->warn('Step: Publishing assets and configurations...'); - $result = $this->call('vendor:publish', ['--all' => true, '--force' => true]); + $result = $this->call('vendor:publish', ['--provider' => CoreServiceProvider::class, '--force' => true]); $this->info($result); $this->warn('Step: Linking storage directory...'); diff --git a/packages/Webkul/UI/.gitignore b/packages/Webkul/UI/.gitignore deleted file mode 100755 index 6376db975..000000000 --- a/packages/Webkul/UI/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -/node_modules -/package-lock.json -npm-debug.log \ No newline at end of file diff --git a/packages/Webkul/UI/composer.json b/packages/Webkul/UI/composer.json deleted file mode 100755 index 184fef596..000000000 --- a/packages/Webkul/UI/composer.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "name": "krayin/laravel-ui", - "license": "MIT", - "authors": [ - { - "name": "Jitendra Singh", - "email": "jitendra@webkul.com" - } - ], - "require": { - "krayin/laravel-core": "^1.0" - }, - "autoload": { - "psr-4": { - "Webkul\\UI\\": "src/" - } - }, - "extra": { - "laravel": { - "providers": [ - "Webkul\\UI\\Providers\\UIServiceProvider" - ], - "aliases": {} - } - }, - "minimum-stability": "dev" -} \ No newline at end of file diff --git a/packages/Webkul/UI/package.json b/packages/Webkul/UI/package.json deleted file mode 100644 index 7607eb2ad..000000000 --- a/packages/Webkul/UI/package.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "private": true, - "scripts": { - "dev": "npm run development", - "development": "mix", - "watch": "mix watch", - "watch-poll": "mix watch -- --watch-options-poll=1000", - "hot": "mix watch --hot", - "prod": "npm run production", - "production": "mix --production" - }, - "devDependencies": { - "cross-env": "^7.0.3", - "flatpickr": "^4.6.9", - "laravel-mix": "^6.0.6", - "laravel-mix-merge-manifest": "^2.0.0", - "lodash": "^4.17.19", - "postcss": "^8.1.14", - "sass": "^1.32.8", - "sass-loader": "^11.0.1", - "v-tooltip": "^2.1.2", - "vue": "^2.6.12", - "vue-loader": "^15.9.6", - "vue-template-compiler": "^2.6.12" - }, - "dependencies": { - "@babel/polyfill": "^7.12.1", - "axios": "^0.21.1", - "chart.js": "^2.9.4", - "debounce": "^1.2.1", - "vue-color": "^2.8.1", - "vue-moment": "^4.1.0", - "vue2-daterange-picker": "^0.6.5", - "vuex": "^3.6.2" - } -} diff --git a/packages/Webkul/UI/publishable/assets/css/ui.css b/packages/Webkul/UI/publishable/assets/css/ui.css deleted file mode 100644 index bfb2b1079..000000000 --- a/packages/Webkul/UI/publishable/assets/css/ui.css +++ /dev/null @@ -1 +0,0 @@ -@charset "UTF-8";@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:500;src:url(../fonts/Roboto-Medium.ttf)}@font-face{font-display:swap;font-family:Roboto;font-style:normal;font-weight:400;src:url(../fonts/Roboto-Regular.ttf)}.icon{background-size:cover;display:inline-block;height:20px;width:20px}.menu-fold-icon{background-image:url(../images/menu-fold-icon.svg);height:24px;width:24px}.menu-fold-icon:hover{background-image:url(../images/menu-fold-active-icon.svg)}.menu-unfold-icon{background-image:url(../images/menu-unfold-icon.svg);height:24px;width:24px}.menu-unfold-icon:hover{background-image:url(../images/menu-unfold-active-icon.svg)}.arrow-down-icon{background-image:url(../images/arrow-down-icon.svg)}.arrow-up-icon{background-image:url(../images/arrow-up-icon.svg)}.arrow-left-icon{background-image:url(../images/arrow-left-icon.svg)}.arrow-right-icon{background-image:url(../images/arrow-right-icon.svg)}.arrow-left-line-icon{background-image:url(../images/arrow-left-line-icon.svg)}.arrow-right-line-icon{background-image:url(../images/arrow-right-line-icon.svg)}.arrow-down-s-icon{background-image:url(../images/arrow-down-s-icon.svg)}.add-icon{background-image:url(../images/add-icon.svg)}.close-icon{background-image:url(../images/close-icon.svg)}.close-white-icon{background-image:url(../images/close-white-icon.svg)}.circle-check-white-icon{background-image:url(../images/circle-check-white-icon.svg)}.circle-close-white-icon{background-image:url(../images/circle-close-white-icon.svg)}.circle-info-white-icon{background-image:url(../images/circle-info-white-icon.svg)}.calendar-icon{background-image:url(../images/calendar-icon.svg)}.time-icon{background-image:url(../images/time-icon.svg)}.align-justify-icon{background-image:url(../images/align-justify-icon.svg)}.reply-icon{background-image:url(../images/reply-icon.svg)}.reply-white-icon{background-image:url(../images/reply-white-icon.svg)}.reply-all-icon{background-image:url(../images/reply-all-icon.svg)}.reply-all-white-icon{background-image:url(../images/reply-all-white-icon.svg)}.forward-icon{background-image:url(../images/forward-icon.svg)}.forward-white-icon{background-image:url(../images/forward-white-icon.svg)}.trash-icon{background-image:url(../images/trash-icon.svg)}.trash-white-icon{background-image:url(../images/trash-white-icon.svg)}.pencil-icon{background-image:url(../images/pencil-icon.svg)}.pencil-underline-icon{background-image:url(../images/pencil-underline-icon.svg)}.eye-icon{background-image:url(../images/eye-icon.svg)}.folder-icon{background-image:url(../images/folder-icon.svg)}.plus-primary-icon{background-image:url(../images/plus-primary-icon.svg)}.plus-black-icon{background-image:url(../images/plus-black-icon.svg)}.plus-white-icon{background-image:url(../images/plus-white-icon.svg)}.download-icon{background-image:url(../images/download-icon.svg)}.search-icon{background-image:url(../images/search-icon.svg)}.ellipsis-icon{background-image:url(../images/ellipsis-icon.svg)}.attachment-icon,.ellipsis-icon{height:24px!important;width:24px!important}.attachment-icon{background-image:url(../images/attachment-icon.svg)}.link-icon{background-image:url(../images/link-icon.svg)}.external-link-icon,.link-icon{height:24px!important;width:24px!important}.external-link-icon{background-image:url(../images/external-link-icon.svg)}.tags-icon{background-image:url(../images/tags-icon.svg)}.loader-icon{background-image:url(../images/loader-icon.svg)}.loader-active-icon,.loader-icon{animation-duration:1s;animation-iteration-count:infinite;animation-name:spin;animation-timing-function:linear;height:24px!important;width:24px!important}.loader-active-icon{background-image:url(../images/loader-active-icon.svg)}.alert-danger-icon{background-image:url(../images/alert-danger-icon.svg)}.upload-icon{background-image:url(../images/upload-icon.svg)}.export-icon{background-image:url(../images/export-icon.svg)}@keyframes jelly{0%{opacity:0;transform:translateY(0) scale(.7)}70%{opacity:1;transform:translateY(5px) scale(1.05)}to{opacity:1;transform:translateY(0) scale(1)}}@keyframes jelly-out{0%{opacity:1;transform:translateY(0) scale(1)}30%{opacity:1;transform:translateY(-5px) scale(1.05)}to{opacity:0;transform:translateY(0) scale(.7)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes meter-animate-before{0%{transform:rotate(-45deg)}to{transform:rotate(315deg)}}.rtl .search-filter .control{border-bottom-left-radius:0;border-bottom-right-radius:3px;border-left:0;border-right:2px solid #c7c7c7;border-top-left-radius:0;border-top-right-radius:3px;padding-right:10px}.rtl .search-filter .icon-wrapper{border-bottom-left-radius:3px;border-bottom-right-radius:0;border-top-left-radius:3px;border-top-right-radius:0;float:left}.rtl .alert-wrapper .alert{left:unset;margin-right:-324px;right:50%}.rtl .table .table-header .table-action{text-align:left}.rtl .table .table-header .table-action .export-import{margin-left:20px;margin-right:0}.rtl .table .table-body .custom-design-container{right:1200px}.rtl .table .sidebar-filter{left:-420px;right:unset}.rtl .table .sidebar-filter header h1 .right{text-align:left}.rtl .table .sidebar-filter.show{left:0;right:unset}.rtl .table .sidebar-filter .field-container{padding-left:25px;padding-right:0}.rtl .table .sidebar-filter .field-container i.close-icon{left:0;right:unset}.rtl .table .datagrid-filters{display:inline-block}.rtl .table .datagrid-filters.per-page{margin-left:10px;margin-right:10px}.rtl .sidebar-filter header h1 .right,.rtl .table .datagrid-filters .filter-right,.rtl .table table tbody tr td.action,.rtl .table table thead th.actions{text-align:left}.rtl .filtered-tags .filter-tag .cross-icon,.rtl .filtered-tags .filter-tag .wrapper{margin-left:0;margin-right:10px}.rtl .float-left{float:right}.rtl .float-right{float:left}.rtl .field-container label.required:after,.rtl .form-group label.required:after{padding-left:0;padding-right:4px}.rtl .field-container.date .control,.rtl .field-container.datetime .control,.rtl .field-container.time .control,.rtl .form-group.date .control,.rtl .form-group.datetime .control,.rtl .form-group.time .control{padding-right:40px}.rtl .field-container.date .date-container input[type=text],.rtl .field-container.datetime .date-container input[type=text],.rtl .field-container.time .date-container input[type=text],.rtl .form-group.date .date-container input[type=text],.rtl .form-group.datetime .date-container input[type=text],.rtl .form-group.time .date-container input[type=text]{padding-left:22px}.rtl .field-container.date .datetime-container:after,.rtl .field-container.date .time-container:after,.rtl .field-container.datetime .datetime-container:after,.rtl .field-container.datetime .time-container:after,.rtl .field-container.time .datetime-container:after,.rtl .field-container.time .time-container:after,.rtl .form-group.date .datetime-container:after,.rtl .form-group.date .time-container:after,.rtl .form-group.datetime .datetime-container:after,.rtl .form-group.datetime .time-container:after,.rtl .form-group.time .datetime-container:after,.rtl .form-group.time .time-container:after{left:10px;margin-left:unset;margin-right:-34px;right:unset}.rtl .field-container .input-group .input-group-prepend .btn,.rtl .field-container .input-group .input-group-prepend .control,.rtl .form-group .input-group .input-group-prepend .btn,.rtl .form-group .input-group .input-group-prepend .control{border-bottom-left-radius:0;border-bottom-right-radius:3px;border-top-left-radius:0;border-top-right-radius:3px}.rtl .field-container .input-group .input-group-append,.rtl .form-group .input-group .input-group-append{margin-right:-1px}.rtl .field-container .input-group .input-group-append .btn,.rtl .field-container .input-group .input-group-append .control,.rtl .form-group .input-group .input-group-append .btn,.rtl .form-group .input-group .input-group-append .control{border-bottom-left-radius:3px;border-bottom-right-radius:0;border-top-left-radius:3px;border-top-right-radius:0}.rtl .field-container .input-group .trash-icon,.rtl .form-group .input-group .trash-icon{cursor:pointer;margin-left:0;margin-right:7px;margin-top:21px}.rtl .settings-container .panel .setting-link-container .setting-link-item a .setting-info{margin-left:0;margin-right:25px}.rtl .tree-wrapper .tree-container .tree-item.active>.tree-item{padding-left:0;padding-right:30px}*{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;box-sizing:border-box}:focus{outline:none}body{background:#fff;color:#263238;font-family:Roboto;font-size:18px;font-weight:400;letter-spacing:-.26px;line-height:22px}a{color:#0e90d9}a:active,a:focus,a:hover,a:link,a:visited{color:#0e90d9;text-decoration:none}::-moz-selection{background-color:#0e90d9;color:#fff}::selection{background-color:#0e90d9;color:#fff}::-moz-placeholder{color:#546e7a;opacity:.5}::placeholder{color:#546e7a;opacity:.5}textarea{resize:none}ul{list-style:none;margin:0;padding:0}h1{font-size:24px;margin-top:0}h1,h2{color:#263238;font-weight:500}h2{font-size:20px}h3{font-size:18px}h3,h4{color:#263238;font-weight:500}h4{font-size:16px}h5{color:#263238;font-size:14px;font-weight:500}.hide{display:none!important}.btn{border:2px solid transparent;border-radius:4px;color:#fff;cursor:pointer;display:inline-block;font:inherit;font-weight:500;padding:10px 14px;transition:.2s cubic-bezier(.4,0,.2,1)}.btn:active,.btn:focus,.btn:hover{opacity:.75}.btn.btn-sm{font-size:14px;height:40px;padding:7px 12px}.btn.btn-md{padding:10px 14px}.btn.btn-lg{font-size:24px;padding:12px 18px}.btn.btn-xl{font-size:24px;padding:14px 22px}.btn.btn-primary{background:#0e90d9;color:#fff}.btn.btn-primary-outline{background:#fff;border:2px solid #0e90d9;color:#0e90d9}.btn.btn-secondary{background:#546e7a;color:#fff}.btn.btn-secondary-outline{background:#fff;border:2px solid #546e7a;color:#546e7a}.btn.btn-danger{background:#ff4d50;color:#fff}.btn.btn-danger-outline{background:#fff;border:2px solid #ff4d50;color:#ff4d50}.btn.btn-success{background:#53c41a;color:#fff}.btn.btn-success-outline{background:#fff;border:2px solid #53c41a;color:#53c41a}.btn.btn-warning{background:#fbad15;color:#fff}.btn.btn-warning-outline{background:#fff;border:2px solid #fbad15;color:#fbad15}.btn.btn-white{background:#fff;color:#0e90d9}.btn.btn-white.text-black{color:#000}.btn.btn-white-outline{background:#fff;border:2px solid #0e90d9;color:#0e90d9}.btn:disabled,.btn[disabled=disabled],.btn[disabled=disabled]:active,.btn[disabled=disabled]:hover{background:#b1b1ae;box-shadow:none;cursor:not-allowed;opacity:1}.dropdown-list{background-color:#fff;border:1px solid #f0f0f0;box-shadow:0 2px 5px 0 rgba(39,49,58,.15);display:none;margin-bottom:20px;position:absolute;text-align:left;width:215px;z-index:10}.dropdown-list.bottom-left{left:0;top:42px}.dropdown-list.bottom-right{right:0;top:42px}.dropdown-list.top-left{bottom:0;left:42px}.dropdown-list.top-right{bottom:0;right:42px}.dropdown-list .dropdown-container{overflow-y:auto}.dropdown-list .dropdown-container ul{list-style-type:none;margin:0;padding:0}.dropdown-list .dropdown-container ul li{color:#546e7a;cursor:pointer;font-size:16px;padding:8px 12px}.dropdown-list .dropdown-container ul li a:active,.dropdown-list .dropdown-container ul li a:focus,.dropdown-list .dropdown-container ul li a:link,.dropdown-list .dropdown-container ul li a:visited{color:#546e7a;display:block}.dropdown-list .dropdown-container ul li:hover{background-color:#0e90d9;color:#fff}.dropdown-list .dropdown-container ul li:hover a{color:#fff}.table{overflow-x:auto!important;width:100%}.table .table-header{align-items:center;display:grid;grid-template-columns:repeat(2,auto);margin-bottom:20px}.table .table-header h1{display:inline-block;margin-bottom:0}.table .table-header .table-action{text-align:right}.table .table-header .table-action .export-import{cursor:pointer;margin-right:20px}.table .table-header .table-action .export-import .icon{height:24px;margin-bottom:2px;vertical-align:middle;width:24px}.table .table-header .table-action .export-import span{color:#546e7a}.table .table-header .table-action button{max-height:40px;padding:8px 14px}.table .table-body .custom-design-container{background-color:#fff;border:1px solid #c1c2c3;margin-top:8px;padding:10px;position:absolute;right:25px;width:350px}.table .table-body .custom-design-container .form-group{grid-gap:5px;align-items:center;display:grid;grid-template-columns:150px auto 150px;margin:20px 0;text-align:center}.table .table-body .custom-design-container .form-group.date .date-container{display:inline-block}.table .table-body .custom-design-container .form-group.date .date-container .control{height:40px;margin:0}.table .table-body .custom-design-container .form-group.date .date-container:after{top:calc(50% - 2px)}.table .table-body .custom-design-container i.close-icon{cursor:pointer;float:right}.table .table-body .checkbox{margin:0;text-overflow:unset}.table .table-body .empty-table div{left:calc(50% - 75px);position:absolute;top:calc(50% - 50px)}.table .table-body .empty-table div img{width:150px}.table .table-body .empty-table div span{display:block;margin-top:20px}.table table{background:#fff;border:none;border-collapse:collapse;border-radius:4px;box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06);font-size:16px;margin-top:20px;table-layout:fixed;text-align:left;width:100%}.table table td,.table table th{border-bottom:1px solid #c1c2c3;color:#546e7a;padding:10px;text-overflow:ellipsis;vertical-align:top;width:100%}.table table thead th{border-bottom:1px solid hsla(210,2%,76%,.5);border-right:0;color:#263238;cursor:not-allowed;font-weight:500;text-transform:capitalize}.table table thead th.master-checkbox{text-overflow:unset;width:41px}.table table thead th.id{width:80px}.table table thead th.actions{text-align:right;width:100px}.table table thead th.actions .action{display:inline-flex}.table table thead th.actions .icon{cursor:pointer;vertical-align:middle}.table table tbody tr{border-bottom:1px solid #f7f8f9}.table table tbody tr.active{background-color:#d4edfb;border-bottom:1px solid rgba(14,144,217,.35)}.table table tbody tr td{background-color:hsla(0,0%,100%,.5);border-bottom:none;border-right:0;color:#263238;word-break:break-all}.table table tbody tr td.empty{text-align:center}.table table tbody tr td.action-container a{cursor:pointer}.table table tbody tr td .bold{font-weight:500}.table table tbody tr td.action{text-align:right}.table table tbody tr td.action a{cursor:pointer;margin-right:5px}.table table tbody tr td.action a:last-child{margin-right:0}.table table tbody tr td.actions{text-align:right;width:100px}.table table tbody tr td.actions .action{display:inline-flex}.table table tbody tr td.actions .icon{cursor:pointer;vertical-align:middle}.table table tbody tr td .spinner-container{margin-top:5px}.table table tbody tr:last-child td{border-bottom:0}.table table tbody tr.active td,.table table tbody tr:hover td{background-color:hsla(210,2%,76%,.1)}.table table tbody tr.no-records{text-align:center}.table table tfoot td{border-bottom:none;border-top:1px solid hsla(210,2%,76%,.5);font-weight:500}.table .form-group{margin-bottom:0;width:100%}.table .form-group .control{width:100%}.table .form-group.datagrid-filters{margin-bottom:20px}.table .form-group.datagrid-filters input[type=search].control{font-size:15px;height:40px;margin:0;width:280px}.table .dropdown-container{margin-bottom:0;padding:0;position:relative;width:100%}.table .dropdown-container.dropdown-list ul{background-color:#fff;margin-bottom:20px;margin-top:10px;padding:15px;position:absolute;width:100%}.table .dropdown-container.dropdown-list ul li .form-group{margin-bottom:15px}.table .dropdown-container.dropdown-list .apply-filter{padding:10px;width:100%}.table .filtered-tags{margin:20px 0 0}.table .filtered-tags .filter-tag{grid-gap:5px;align-items:center;display:grid;display:inline-grid;grid-template-columns:repeat(2,auto);margin-right:20px;text-transform:capitalize;width:-moz-max-content;width:max-content}.table .filtered-tags .filter-tag .wrapper{grid-gap:10px;align-items:center;background:#e7e7e7;border-radius:2px;color:#000311;display:grid;display:inline-grid;font-size:14px;grid-template-columns:auto 20px;line-height:40px;padding:0 10px}.table .filtered-tags .filter-tag .wrapper .icon.close-icon{cursor:pointer;position:relative;top:-2px}.table .search-filter{display:inline-block;margin-right:6px;position:relative;width:-moz-max-content;width:max-content}.table .search-filter .input-search-icon{left:7px;position:absolute;top:10px;z-index:1}.table .search-filter .input-search-icon~input[type=search]{padding-left:30px}.table .search-filter .control{-webkit-appearance:none;border:1px solid #c1c2c3;color:#546e7a;font-size:15px;height:40px;margin:0;padding-left:10px;width:280px}.table .search-filter .contorl:focus{border-color:#0041ff}.table .search-filter .icon-wrapper{border:2px solid #c7c7c7;border-radius:3px;border-bottom-left-radius:0;border-top-left-radius:0;float:right;height:36px;padding:3px;width:36px}.table .datagrid-filters{align-items:center;display:grid;grid-template-columns:repeat(2,auto);width:100%}.table .datagrid-filters .filter-right{text-align:right}.table .datagrid-filters .filter-right .pagination{display:inline-block;height:40px;margin-right:6px}.table .datagrid-filters .filter-right .pagination .page-item .icon{top:10px;vertical-align:top}.table .datagrid-filters .filter-right .filter-btn{cursor:pointer;display:inline-block}.table .datagrid-filters .filter-right .filter-btn .grid-dropdown-header{align-items:center;background-color:#fff;border:1px solid #546e7a;border-radius:3px;color:#546e7a;display:inline-flex;font-weight:500;height:40px;justify-content:space-between;padding:0 7px 0 10px;vertical-align:middle;width:105px}.table .datagrid-filters .filter-right .filter-btn .grid-dropdown-header .arrow-icon-down{float:right}.table .datagrid-filters .dropdown-filters{display:inline-block;margin-right:6px}.table .datagrid-filters .dropdown-filters.per-page .form-group{grid-gap:10px;align-items:center;display:grid;grid-template-columns:repeat(2,auto)}.table .datagrid-filters .dropdown-filters.per-page .form-group .control{border:1px solid #c1c2c3;height:40px;margin:0}.table .datagrid-filters .form-group,.table .datagrid-filters .form-group .control{font-size:16px}.table .tabs-container{align-items:center;display:grid;grid-template-columns:repeat(2,auto);margin:20px 0}.table .tabs-container .tabs-right-container{text-align:right}.table .tabs-container .tabs-right-container section{display:inline-block}.table .tabs-container .tabs-right-container .covered{border:1px solid;padding:7px ​10px}.table .tabs-container .tabs-right-container .group{vertical-align:top}.table .mass-actions{display:inline-block;width:-moz-max-content;width:max-content}.table .mass-actions .control{font-size:16px;height:40px;margin:0;padding:9px 10px;width:140px}.table .mass-actions button{height:40px;vertical-align:middle}.pagination{margin-top:20px}.pagination .page-item{background:#fff;border:1px solid #c1c2c3;display:inline-block;font-size:16px;height:100%;margin-right:5px;padding:0 9px;text-decoration:none;vertical-align:middle}.pagination .page-item.previous{border-radius:3px 0 0 3px}.pagination .page-item.next{border-radius:0 3px 3px 0}.pagination .page-item.disabled{cursor:not-allowed!important}.pagination .page-item.active{background:#0041ff;border-color:#0041ff;color:#fff}.pagination .page-item .icon{position:relative;top:4px;vertical-align:middle}.pagination.tab-view{height:34px;margin-top:0}.pagination.tab-view .previous{border-right:0;float:left}.pagination.tab-view .next,.pagination.tab-view .previous{cursor:pointer;margin:0}.pagination.full-view{margin-top:120px}.pagination a,.pagination i{font-size:16px!important;font-weight:700}.field-container,.form-group{color:#546e7a;display:block;font-size:18px;margin-bottom:20px;position:relative;width:100%}.field-container label,.form-group label{display:block;font-size:16px}.field-container label.required:after,.form-group label.required:after{color:#ff4d50;content:"*";display:inline-block;font-weight:700;padding-left:4px}.field-container textarea.control,.form-group textarea.control{height:100px;padding:10px}.field-container .control,.form-group .control{background:#fff;border:1px solid #c1c2c3;border-radius:3px;color:#546e7a;display:inline-block;font-size:18px;margin-bottom:5px;margin-top:10px;padding:10px;transition:.2s cubic-bezier(.4,0,.2,1);vertical-align:middle;width:100%}.field-container .control:focus,.form-group .control:focus{border-color:#0e90d9}.field-container .control[disabled=disabled],.form-group .control[disabled=disabled]{background-color:#c1c2c3;border-color:#c1c2c3;cursor:not-allowed}.field-container .control[multiple],.form-group .control[multiple]{height:100px}.field-container .control-faker,.form-group .control-faker{border:1px solid #c1c2c3;border-radius:3px;margin-bottom:5px;margin-top:10px;padding:10px;word-break:break-all}.field-container.date .control,.field-container.datetime .control,.field-container.time .control,.form-group.date .control,.form-group.datetime .control,.form-group.time .control{padding-right:40px}.field-container.date .date-container,.field-container.date .datetime-container,.field-container.date .time-container,.field-container.datetime .date-container,.field-container.datetime .datetime-container,.field-container.datetime .time-container,.field-container.time .date-container,.field-container.time .datetime-container,.field-container.time .time-container,.form-group.date .date-container,.form-group.date .datetime-container,.form-group.date .time-container,.form-group.datetime .date-container,.form-group.datetime .datetime-container,.form-group.datetime .time-container,.form-group.time .date-container,.form-group.time .datetime-container,.form-group.time .time-container{position:relative}.field-container.date .date-container:after,.field-container.date .datetime-container:after,.field-container.date .time-container:after,.field-container.datetime .date-container:after,.field-container.datetime .datetime-container:after,.field-container.datetime .time-container:after,.field-container.time .date-container:after,.field-container.time .datetime-container:after,.field-container.time .time-container:after,.form-group.date .date-container:after,.form-group.date .datetime-container:after,.form-group.date .time-container:after,.form-group.datetime .date-container:after,.form-group.datetime .datetime-container:after,.form-group.datetime .time-container:after,.form-group.time .date-container:after,.form-group.time .datetime-container:after,.form-group.time .time-container:after{background-image:url(../images/calendar-icon.svg);content:"";height:24px;margin-left:-34px;margin-top:-9px;pointer-events:none;position:absolute;right:10px;top:29px;width:24px}.field-container.date .time-container:after,.field-container.datetime .time-container:after,.field-container.time .time-container:after,.form-group.date .time-container:after,.form-group.datetime .time-container:after,.form-group.time .time-container:after{background-image:url(../images/time-icon.svg)}.field-container .control-info,.form-group .control-info{color:#adadad;display:block;font-size:16px;font-style:italic}.field-container .control-error,.form-group .control-error{color:#ff4d50;display:none;margin-top:5px}.field-container.has-error .control:not([aria-invalid=false]),.form-group.has-error .control:not([aria-invalid=false]){border-color:#ff4d50}.field-container.has-error .control-error,.form-group.has-error .control-error{display:block;width:100%}.field-container.has-error.hide-error input,.form-group.has-error.hide-error input{border:1px solid #c1c2c3!important}.field-container.has-error.hide-error .control-error,.form-group.has-error.hide-error .control-error{display:none!important}.field-container .address-left,.form-group .address-left{float:left;padding-right:5px;width:50%}.field-container .address-left .control,.form-group .address-left .control{height:204px;margin-bottom:0}.field-container .address-right,.form-group .address-right{display:inline-block;padding-left:5px;width:50%}.field-container .address-right .control,.field-container.input-group,.form-group .address-right .control,.form-group.input-group{margin-bottom:0}.field-container .input-group,.form-group .input-group{align-items:stretch;display:flex;flex-wrap:wrap;position:relative;width:100%}.field-container .input-group .input-group-append,.field-container .input-group .input-group-prepend,.form-group .input-group .input-group-append,.form-group .input-group .input-group-prepend{display:flex}.field-container .input-group>.control,.field-container .input-group>.date-container,.field-container .input-group>.datetime-container,.form-group .input-group>.control,.form-group .input-group>.date-container,.form-group .input-group>.datetime-container{flex:1 1 auto;position:relative;width:1%!important}.field-container .input-group>.control:not(:first-child),.field-container .input-group>.date-container:not(:first-child),.field-container .input-group>.datetime-container:not(:first-child),.form-group .input-group>.control:not(:first-child),.form-group .input-group>.date-container:not(:first-child),.form-group .input-group>.datetime-container:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.field-container .input-group>.control:not(:last-child),.field-container .input-group>.date-container:not(:last-child),.field-container .input-group>.datetime-container:not(:last-child),.form-group .input-group>.control:not(:last-child),.form-group .input-group>.date-container:not(:last-child),.form-group .input-group>.datetime-container:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.field-container .input-group>.date-container:not(:first-child),.field-container .input-group>.datetime-container:not(:first-child),.form-group .input-group>.date-container:not(:first-child),.form-group .input-group>.datetime-container:not(:first-child){margin-left:10px}.field-container .input-group>.date-container:not(:last-child),.field-container .input-group>.datetime-container:not(:last-child),.form-group .input-group>.date-container:not(:last-child),.form-group .input-group>.datetime-container:not(:last-child){margin-right:10px}.field-container .input-group .input-group-prepend,.form-group .input-group .input-group-prepend{margin-right:-1px}.field-container .input-group .input-group-prepend .btn,.field-container .input-group .input-group-prepend .control,.form-group .input-group .input-group-prepend .btn,.form-group .input-group .input-group-prepend .control{border-bottom-right-radius:0;border-top-right-radius:0}.field-container .input-group .input-group-append,.form-group .input-group .input-group-append{margin-left:-1px}.field-container .input-group .input-group-append .btn,.field-container .input-group .input-group-append .control,.form-group .input-group .input-group-append .btn,.form-group .input-group .input-group-append .control{border-bottom-left-radius:0;border-top-left-radius:0}.field-container .input-group .trash-icon,.form-group .input-group .trash-icon{cursor:pointer;margin-left:7px;margin-top:21px}.field-container .loader-active-icon,.form-group .loader-active-icon{position:absolute;right:4px;top:14px}.checkbox{display:inline-block;margin:10px 5px 5px 0;position:relative}.checkbox .checkbox-dash,.checkbox .checkbox-view{background-image:url(../images/checkbox-icon.svg);display:inline-block!important;height:24px;margin:0 5px 0 0;vertical-align:middle;width:24px}.checkbox .checkbox-dash{background-image:url(../images/checkbox-dash-icon.svg)}.checkbox input{height:24px;opacity:0;position:absolute;width:24px;z-index:100}.checkbox input:checked+.checkbox-view{background-image:url(../images/checkbox-checked-icon.svg)}.checkbox input:disabled+.checkbox-view{cursor:not-allowed;opacity:.5}.radio{display:block;margin:10px 5px 5px 0;position:relative}.radio .radio-view{background-image:url(../images/radio-icon.svg);display:inline-block!important;height:24px;margin:0 5px 0 0;vertical-align:middle;width:24px}.radio input{left:0;opacity:0;position:absolute;top:0;z-index:100}.radio input:checked+.radio-view{background-image:url(../images/radio-checked-icon.svg)}.radio input:disabled+.radio-view{cursor:not-allowed;opacity:.5}.form-group .switch{display:inline-block;height:34px;margin-bottom:5px;margin-top:10px;position:relative;width:60px}.form-group .switch .slider{background-color:#c1c2c3;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0;transition:.2s}.form-group .switch .slider:before{background-color:#fff;bottom:4px;content:"";height:26px;left:4px;position:absolute;transition:.2s;width:26px}.form-group .switch .slider.round{border-radius:34px}.form-group .switch .slider.round:before{border-radius:50%}.form-group .switch input{height:0;opacity:0;width:0}.form-group .switch input:checked+.slider{background-color:#0e90d9}.form-group .switch input:focus+.slider{box-shadow:0 0 1px #0e90d9}.form-group .switch input:checked+.slider:before{transform:translateX(26px)}.alert-wrapper{bottom:10px;position:fixed;right:10px;width:100%;z-index:100}.alert-wrapper .alert{animation:jelly .5s ease-in-out;border-radius:3px;box-shadow:0 4px 15.36px .64px rgba(0,0,0,.1),0 2px 6px 0 rgba(0,0,0,.12);display:block;left:50%;margin-bottom:10px;margin-left:-324px;padding:15px 44px;position:relative;text-align:left;transform-origin:center top;width:648px;z-index:500}.alert-wrapper .alert.error{background:#ff4d50}.alert-wrapper .alert.info{background:#204d74}.alert-wrapper .alert.success{background:#53c41a}.alert-wrapper .alert.warning{background:#fbad15}.alert-wrapper .alert .icon{position:absolute}.alert-wrapper .alert .icon:first-child{left:10px;top:15px}.alert-wrapper .alert .icon:last-child{cursor:pointer;right:10px;top:10px}.alert-wrapper .alert p{color:#fff;font-size:16px;margin:0}.tabs ul li{display:inline-block}.tabs ul li a{color:#546e7a;cursor:pointer;display:block;font-weight:500;padding:10px 30px;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tabs ul li.has-error a{color:#ff4d50}.tabs ul li.active a{box-shadow:inset 0 -2px 0 #0e90d9;color:#0e90d9}.tabs-content{background:#fff;border:none;box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06);padding:30px}.pill{display:inline-block;height:34px}.pill .tabs ul li{font-size:16px}.pill .tabs ul li:first-child a{padding-left:0}.pill .tabs ul li a{padding:6px 15px}.pill .tabs ul li.active a{background:#0e90d9;border-radius:22px;color:#fff;padding:5px 15px}.group{display:inline-block;height:34px}.group .tabs ul li{border:1px solid #c1c2c3;font-size:16px}.group .tabs ul li:not(:last-child){border-right:0}.group .tabs ul li.active{background:#0e90d9;border-radius:0!important}.group .tabs ul li.active a{color:#fff}.group .tabs ul li a{padding:5px 10px}.accordian,accordian{display:inline-block;width:100%}.accordian .accordian-header,.accordian div[slot*=header],accordian .accordian-header,accordian div[slot*=header]{border-bottom:1px solid #c1c2c3;color:#546e7a;cursor:pointer;display:inline-block;font-size:18px;font-weight:500;margin-top:-1px;padding:15px 30px;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100%}.accordian .accordian-header h1,.accordian div[slot*=header] h1,accordian .accordian-header h1,accordian div[slot*=header] h1{display:inline-block;font-weight:500;margin:0}.accordian .accordian-header .icon,.accordian div[slot*=header] .icon,accordian .accordian-header .icon,accordian div[slot*=header] .icon{float:right}.accordian .accordian-header .icon.left,.accordian div[slot*=header] .icon.left,accordian .accordian-header .icon.left,accordian div[slot*=header] .icon.left{float:left}.accordian.has-error .accordian-header,accordian.has-error .accordian-header{color:#ff4d50}.accordian .accordian-content,.accordian div[slot*=body],accordian .accordian-content,accordian div[slot*=body]{border:1px solid #d3d3d3;border-top:0;display:none;padding:30px;width:100%}.accordian.active>.accordian-content,accordian.active>.accordian-content{display:inline-block}.panel .panel-header{color:#263238;color:#546e7a;font-size:18px;font-weight:500;padding:16px 0}.panel .panel-body{background-color:#fff;border:none;border-radius:3px;box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06);padding:16px}modal{display:none}.modal-overlay{background:#263238;bottom:0;display:none;left:0;opacity:.5;overflow-y:auto;position:fixed;right:0;top:0;z-index:10}.modal-container{animation:jelly .5s ease-in-out;background:#fff;border-radius:8px;left:50%;margin-left:-300px;max-height:80%;max-width:80%;overflow-x:hidden;overflow-y:auto;position:fixed;top:100px;width:600px;z-index:11}.modal-container .modal-header{align-items:center;background:#fff;border-bottom:1px solid #c1c2c3;display:grid;grid-template-columns:repeat(2,auto);padding:20px 20px 10px;position:relative;width:inherit;z-index:10}.modal-container .modal-header h3{display:table-cell;font-weight:500;margin:0;vertical-align:middle}.modal-container .modal-header h2{display:inline-block;margin:0}.modal-container .modal-header .header-actions{text-align:right}.modal-container .modal-header .header-actions .icon{cursor:pointer}.modal-container .modal-body{padding:30px;position:relative}.modal-container .modal-body .tabs-content{box-shadow:none}.modal-open{overflow:hidden}.modal-open .modal-overlay{display:block}.badge{border:2px solid transparent;border-radius:4px;color:#fff;display:inline-block;font-size:16px}.badge.badge-pill,.badge.badge-sm{padding:2px 8px}.badge.badge-md{padding:4px 10px}.badge.badge-lg{padding:6px 12px}.badge.badge-xl{padding:8px 14px}.badge.badge-pill{border-radius:10rem}.badge.badge-primary{background:#0e90d9;color:#fff}.badge.badge-primary-outline{background:#fff;border:2px solid #0e90d9;color:#0e90d9}.badge.badge-secondary{background:#546e7a;color:#fff}.badge.badge-secondary-outline{background:#fff;border:2px solid #546e7a;color:#546e7a}.badge.badge-danger{background:#ff4d50;color:#fff}.badge.badge-danger-outline{background:#fff;border:2px solid #ff4d50;color:#ff4d50}.badge.badge-success{background:#53c41a;color:#fff}.badge.badge-success-outline{background:#fff;border:2px solid #53c41a;color:#53c41a}.badge.badge-warning{background:#fbad15;color:#fff}.badge.badge-warning-outline{background:#fff;border:2px solid #fbad15;color:#fbad15}.badge.badge-white,.badge.badge-white-outline{background:#fff;color:#0e90d9}.badge.badge-white-outline{border:2px solid #0e90d9}.badge.badge-round{height:8px;margin-right:5px;padding:0;width:8px}.overlay-loader{left:50%;margin-left:-24px;margin-top:-24px;position:fixed;top:50%;z-index:11}.tooltip{display:block!important;z-index:10000}.tooltip.hide{display:none!important}.tooltip .tooltip-inner{background:#0e90d9;border-radius:4px;color:#fff;font-size:16px;padding:5px 10px 4px}.tooltip .tooltip-arrow{border-color:#0e90d9;border-style:solid;height:0;margin:5px;position:absolute;width:0;z-index:1}.tooltip[x-placement^=top]{margin-bottom:5px}.tooltip[x-placement^=top] .tooltip-arrow{border-bottom-color:transparent!important;border-left-color:transparent!important;border-right-color:transparent!important;border-width:5px 5px 0;bottom:-5px;left:calc(50% - 5px);margin-bottom:0;margin-top:0}.tooltip[x-placement^=bottom]{margin-top:5px}.tooltip[x-placement^=bottom] .tooltip-arrow{border-left-color:transparent!important;border-right-color:transparent!important;border-top-color:transparent!important;border-width:0 5px 5px;left:calc(50% - 5px);margin-bottom:0;margin-top:0;top:-5px}.tooltip[x-placement^=right]{margin-left:5px}.tooltip[x-placement^=right] .tooltip-arrow{border-bottom-color:transparent!important;border-left-color:transparent!important;border-top-color:transparent!important;border-width:5px 5px 5px 0;left:-5px;margin-left:0;margin-right:0;top:calc(50% - 5px)}.tooltip[x-placement^=left]{margin-right:5px}.tooltip[x-placement^=left] .tooltip-arrow{border-bottom-color:transparent!important;border-right-color:transparent!important;border-top-color:transparent!important;border-width:5px 0 5px 5px;margin-left:0;margin-right:0;right:-5px;top:calc(50% - 5px)}.sidebar-filter{background-color:#fff;box-shadow:0 0 10px 0 rgba(0,0,0,.18);display:inline-block;height:100vh;overflow-y:scroll;padding:30px 15px 30px 20px;position:fixed;right:-420px;top:0;transition:.35s cubic-bezier(.4,0,.2,1);width:420px;z-index:10}.sidebar-filter.show{right:0}.sidebar-filter header{border-bottom:1px solid #c1c2c3;margin-bottom:25px;padding-bottom:25px}.sidebar-filter header h1{align-items:center;display:grid;font-weight:400;grid-template-columns:repeat(2,auto);margin:0;padding:0}.sidebar-filter header h1 .right{text-align:right}.sidebar-filter header h1 .right label{color:#0e90d9;cursor:pointer;display:inline-block;font-size:18px;margin-right:20px}.sidebar-filter header h1 .right i.close-icon{vertical-align:middle}.sidebar-filter .field-container{margin-bottom:10px;padding-right:25px;position:relative}.sidebar-filter .field-container label{font-weight:500}.sidebar-filter .field-container .control{font-size:16px;max-height:40px}.sidebar-filter .field-container .control.half{width:151px}.sidebar-filter .field-container .middle-text{margin:0 8px}.sidebar-filter .field-container .date-container{display:inline-block}.sidebar-filter .field-container .enter-new{display:inline-block;width:100%}.sidebar-filter .field-container .enter-new input{width:100%}.sidebar-filter .field-container>i.close-icon{position:absolute;right:0;top:17px}.sidebar-filter .selected-options{margin-top:10px}.sidebar-filter .selected-options .badge{background-color:#f7f8f9;color:#546e7a;margin-bottom:10px}.sidebar-filter .form-group{margin-bottom:20px}.sidebar-filter i.add-icon,.sidebar-filter i.close-icon{cursor:pointer}.drawer-overlay{background:rgba(75,85,99,.5);inset:0;position:fixed;transition:opacity .3s;z-index:10001}.drawer{background-color:#fff;box-shadow:0 0 10px 0 rgba(0,0,0,.18);display:inline-block;height:100vh;overflow-y:scroll;position:fixed;right:-420px;top:0;transition:.35s cubic-bezier(.4,0,.2,1);width:420px;z-index:10002}.drawer.show{right:0}.drawer .header{align-items:center;border-bottom:1px solid #c1c2c3;display:flex;gap:10px;justify-content:space-between;padding:20px}.drawer .header .actions{align-items:center;display:flex;gap:8px}.drawer .header .actions .icon{cursor:pointer}.drawer .content{padding:20px}.tree-wrapper .icon{margin-right:10px}.tree-wrapper .checkbox{margin-bottom:15px!important;margin-top:0!important}.tree-wrapper .tree-item{padding-left:30px}.tree-wrapper .tree-item.active>.arrow-down-icon{background-image:url(../images/arrow-down-icon.svg)}.tree-wrapper .tree-item>.arrow-down-icon{background-image:url(../images/arrow-right-icon.svg);cursor:pointer}.tree-wrapper .tree-container>.tree-item{padding:0}.tree-wrapper .tree-container .tree-item>.tree-item{display:none}.tree-wrapper .tree-container .tree-item.active>.tree-item{display:block}ol.breadcrumb{font-size:14px;font-weight:400;list-style:none;margin-bottom:5px;margin-top:0;padding:0}ol.breadcrumb li.breadcrumb-item{display:inline-block}ol.breadcrumb li.breadcrumb-item+.breadcrumb-item:before{content:"/";display:inline-block;padding-left:5px;padding-right:5px}.float-left{float:left}.float-right{float:right}.ml-10{margin-left:10px}.pl-0{padding-left:0!important}.fs-18{font-size:18px!important}.tags-control{height:43px;padding:4px!important}.tags-control ul.tags{display:flex}.tags-control ul.tags li{float:left}.tags-control ul.tags li.tag-choice{background-color:#f7f8f9;border-radius:30px;color:#263238;font-size:14px;margin-right:10px;padding:4px 8px;-webkit-user-select:none;-moz-user-select:none;user-select:none;white-space:nowrap}.tags-control ul.tags li.tag-input{flex:1 1 20px;margin:0;padding:0;white-space:nowrap}.tags-control ul.tags li.tag-input input{border:0;color:#546e7a;font-size:18px;outline:0;padding:6px 10px;width:100%}.attachment-wrapper .attachment-item{margin-bottom:10px}.attachment-wrapper .attachment-item span{border:2px solid #546e7a;display:inline-block;padding:8px 5px}.attachment-wrapper .attachment-item span input{display:none}.attachment-wrapper .attachment-item span .icon{cursor:pointer}.attachment-wrapper .add-attachment-link{display:inline-block;font-size:18px;margin-top:10px}.row-grid-3{grid-row-gap:15px;grid-column-gap:15px;align-items:center;display:grid;grid-auto-rows:auto;grid-template-columns:repeat(3,1fr)}.bar{background-color:#d4edfb;height:10px}.bar>div{height:10px;transition:.35s cubic-bezier(.4,0,.2,1)}.bar>div.primary{background-color:#0e90d9}.bar>div.warning{background-color:#fbad15}.bar>div.success{background-color:#53c41a}.bar>div.danger{background-color:#ff4d50}.spinner-container{position:relative;text-align:center;top:calc(50% - 24px);width:100%}.spinner-container .meter{border:6px solid #0e90d9;border-radius:50%;box-sizing:border-box;display:inline-block;height:48px;width:48px}.spinner-container .meter:before{animation:meter-animate-before 1s linear infinite;background-color:#0e90d9;border-radius:3px;box-sizing:border-box;content:" ";display:inline-block;height:20px;position:absolute;text-align:center;top:5px;transform-origin:center bottom;width:6px}.spinner-container.full-page{background-color:hsla(0,0%,100%,.7);height:100%;left:0;position:fixed;top:0;width:100%;z-index:11}.spinner-container.full-page .meter{position:relative;top:50%}.spinner-container.full-page .meter:before{top:0}.cursor-pointer{cursor:pointer!important}.display-grid{display:grid}.column-grid-2{grid-gap:10px;align-items:center;display:grid;grid-template-columns:repeat(2,auto)}.bar-chart canvas~img,.line-chart canvas~img{display:none} diff --git a/packages/Webkul/UI/publishable/assets/fonts/Roboto-Black.ttf b/packages/Webkul/UI/publishable/assets/fonts/Roboto-Black.ttf deleted file mode 100644 index 43a00e0df..000000000 Binary files a/packages/Webkul/UI/publishable/assets/fonts/Roboto-Black.ttf and /dev/null differ diff --git a/packages/Webkul/UI/publishable/assets/fonts/Roboto-BlackItalic.ttf b/packages/Webkul/UI/publishable/assets/fonts/Roboto-BlackItalic.ttf deleted file mode 100644 index 5082cdc4e..000000000 Binary files a/packages/Webkul/UI/publishable/assets/fonts/Roboto-BlackItalic.ttf and /dev/null differ diff --git a/packages/Webkul/UI/publishable/assets/fonts/Roboto-Bold.ttf b/packages/Webkul/UI/publishable/assets/fonts/Roboto-Bold.ttf deleted file mode 100644 index 374245790..000000000 Binary files a/packages/Webkul/UI/publishable/assets/fonts/Roboto-Bold.ttf and /dev/null differ diff --git a/packages/Webkul/UI/publishable/assets/fonts/Roboto-BoldItalic.ttf b/packages/Webkul/UI/publishable/assets/fonts/Roboto-BoldItalic.ttf deleted file mode 100644 index e85e7fb9e..000000000 Binary files a/packages/Webkul/UI/publishable/assets/fonts/Roboto-BoldItalic.ttf and /dev/null differ diff --git a/packages/Webkul/UI/publishable/assets/fonts/Roboto-Italic.ttf b/packages/Webkul/UI/publishable/assets/fonts/Roboto-Italic.ttf deleted file mode 100644 index c9df607a4..000000000 Binary files a/packages/Webkul/UI/publishable/assets/fonts/Roboto-Italic.ttf and /dev/null differ diff --git a/packages/Webkul/UI/publishable/assets/fonts/Roboto-Light.ttf b/packages/Webkul/UI/publishable/assets/fonts/Roboto-Light.ttf deleted file mode 100644 index 0e977514f..000000000 Binary files a/packages/Webkul/UI/publishable/assets/fonts/Roboto-Light.ttf and /dev/null differ diff --git a/packages/Webkul/UI/publishable/assets/fonts/Roboto-LightItalic.ttf b/packages/Webkul/UI/publishable/assets/fonts/Roboto-LightItalic.ttf deleted file mode 100644 index 3ad14fa7c..000000000 Binary files a/packages/Webkul/UI/publishable/assets/fonts/Roboto-LightItalic.ttf and /dev/null differ diff --git a/packages/Webkul/UI/publishable/assets/fonts/Roboto-Medium.ttf b/packages/Webkul/UI/publishable/assets/fonts/Roboto-Medium.ttf deleted file mode 100644 index e89b0b79a..000000000 Binary files a/packages/Webkul/UI/publishable/assets/fonts/Roboto-Medium.ttf and /dev/null differ diff --git a/packages/Webkul/UI/publishable/assets/fonts/Roboto-MediumItalic.ttf b/packages/Webkul/UI/publishable/assets/fonts/Roboto-MediumItalic.ttf deleted file mode 100644 index a5a41d3d0..000000000 Binary files a/packages/Webkul/UI/publishable/assets/fonts/Roboto-MediumItalic.ttf and /dev/null differ diff --git a/packages/Webkul/UI/publishable/assets/fonts/Roboto-Regular.ttf b/packages/Webkul/UI/publishable/assets/fonts/Roboto-Regular.ttf deleted file mode 100644 index 3d6861b42..000000000 Binary files a/packages/Webkul/UI/publishable/assets/fonts/Roboto-Regular.ttf and /dev/null differ diff --git a/packages/Webkul/UI/publishable/assets/fonts/Roboto-Thin.ttf b/packages/Webkul/UI/publishable/assets/fonts/Roboto-Thin.ttf deleted file mode 100644 index 7d084aed8..000000000 Binary files a/packages/Webkul/UI/publishable/assets/fonts/Roboto-Thin.ttf and /dev/null differ diff --git a/packages/Webkul/UI/publishable/assets/fonts/Roboto-ThinItalic.ttf b/packages/Webkul/UI/publishable/assets/fonts/Roboto-ThinItalic.ttf deleted file mode 100644 index c17338960..000000000 Binary files a/packages/Webkul/UI/publishable/assets/fonts/Roboto-ThinItalic.ttf and /dev/null differ diff --git a/packages/Webkul/UI/publishable/assets/images/add-icon.svg b/packages/Webkul/UI/publishable/assets/images/add-icon.svg deleted file mode 100644 index 2d99acff7..000000000 --- a/packages/Webkul/UI/publishable/assets/images/add-icon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/alert-danger-icon.svg b/packages/Webkul/UI/publishable/assets/images/alert-danger-icon.svg deleted file mode 100644 index 6f89de11d..000000000 --- a/packages/Webkul/UI/publishable/assets/images/alert-danger-icon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/align-justify-icon.svg b/packages/Webkul/UI/publishable/assets/images/align-justify-icon.svg deleted file mode 100644 index 4fab02114..000000000 --- a/packages/Webkul/UI/publishable/assets/images/align-justify-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/arrow-down-icon.svg b/packages/Webkul/UI/publishable/assets/images/arrow-down-icon.svg deleted file mode 100644 index 9a47b2296..000000000 --- a/packages/Webkul/UI/publishable/assets/images/arrow-down-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/arrow-down-s-icon.svg b/packages/Webkul/UI/publishable/assets/images/arrow-down-s-icon.svg deleted file mode 100644 index c3d7acf9c..000000000 --- a/packages/Webkul/UI/publishable/assets/images/arrow-down-s-icon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/arrow-left-icon.svg b/packages/Webkul/UI/publishable/assets/images/arrow-left-icon.svg deleted file mode 100644 index 1120b3886..000000000 --- a/packages/Webkul/UI/publishable/assets/images/arrow-left-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/arrow-left-line-icon.svg b/packages/Webkul/UI/publishable/assets/images/arrow-left-line-icon.svg deleted file mode 100644 index 14cbd8d26..000000000 --- a/packages/Webkul/UI/publishable/assets/images/arrow-left-line-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/arrow-right-icon.svg b/packages/Webkul/UI/publishable/assets/images/arrow-right-icon.svg deleted file mode 100644 index 4568664aa..000000000 --- a/packages/Webkul/UI/publishable/assets/images/arrow-right-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/arrow-right-line-icon.svg b/packages/Webkul/UI/publishable/assets/images/arrow-right-line-icon.svg deleted file mode 100644 index 3d9e2368b..000000000 --- a/packages/Webkul/UI/publishable/assets/images/arrow-right-line-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/arrow-up-icon.svg b/packages/Webkul/UI/publishable/assets/images/arrow-up-icon.svg deleted file mode 100644 index ca411a12e..000000000 --- a/packages/Webkul/UI/publishable/assets/images/arrow-up-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/attachment-icon.svg b/packages/Webkul/UI/publishable/assets/images/attachment-icon.svg deleted file mode 100644 index a60f1665c..000000000 --- a/packages/Webkul/UI/publishable/assets/images/attachment-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/calendar-icon.svg b/packages/Webkul/UI/publishable/assets/images/calendar-icon.svg deleted file mode 100644 index 913a765e8..000000000 --- a/packages/Webkul/UI/publishable/assets/images/calendar-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/checkbox-checked-icon.svg b/packages/Webkul/UI/publishable/assets/images/checkbox-checked-icon.svg deleted file mode 100644 index e623e04e1..000000000 --- a/packages/Webkul/UI/publishable/assets/images/checkbox-checked-icon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/checkbox-dash-icon.svg b/packages/Webkul/UI/publishable/assets/images/checkbox-dash-icon.svg deleted file mode 100644 index 47a10a501..000000000 --- a/packages/Webkul/UI/publishable/assets/images/checkbox-dash-icon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/checkbox-icon.svg b/packages/Webkul/UI/publishable/assets/images/checkbox-icon.svg deleted file mode 100644 index c7a42fb35..000000000 --- a/packages/Webkul/UI/publishable/assets/images/checkbox-icon.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/packages/Webkul/UI/publishable/assets/images/circle-check-white-icon.svg b/packages/Webkul/UI/publishable/assets/images/circle-check-white-icon.svg deleted file mode 100644 index c5c52d213..000000000 --- a/packages/Webkul/UI/publishable/assets/images/circle-check-white-icon.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/Webkul/UI/publishable/assets/images/circle-close-white-icon.svg b/packages/Webkul/UI/publishable/assets/images/circle-close-white-icon.svg deleted file mode 100644 index 36643aa2a..000000000 --- a/packages/Webkul/UI/publishable/assets/images/circle-close-white-icon.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/Webkul/UI/publishable/assets/images/circle-info-white-icon.svg b/packages/Webkul/UI/publishable/assets/images/circle-info-white-icon.svg deleted file mode 100644 index c51b67a69..000000000 --- a/packages/Webkul/UI/publishable/assets/images/circle-info-white-icon.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/Webkul/UI/publishable/assets/images/close-icon.svg b/packages/Webkul/UI/publishable/assets/images/close-icon.svg deleted file mode 100644 index 5902503ef..000000000 --- a/packages/Webkul/UI/publishable/assets/images/close-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/close-white-icon.svg b/packages/Webkul/UI/publishable/assets/images/close-white-icon.svg deleted file mode 100644 index 8500c48c4..000000000 --- a/packages/Webkul/UI/publishable/assets/images/close-white-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/download-icon.svg b/packages/Webkul/UI/publishable/assets/images/download-icon.svg deleted file mode 100644 index 8436abfe5..000000000 --- a/packages/Webkul/UI/publishable/assets/images/download-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/ellipsis-icon.svg b/packages/Webkul/UI/publishable/assets/images/ellipsis-icon.svg deleted file mode 100644 index 1a4defabe..000000000 --- a/packages/Webkul/UI/publishable/assets/images/ellipsis-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/export-icon.svg b/packages/Webkul/UI/publishable/assets/images/export-icon.svg deleted file mode 100644 index ea7e62389..000000000 --- a/packages/Webkul/UI/publishable/assets/images/export-icon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/external-link-icon.svg b/packages/Webkul/UI/publishable/assets/images/external-link-icon.svg deleted file mode 100644 index 54d5b3df4..000000000 --- a/packages/Webkul/UI/publishable/assets/images/external-link-icon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/eye-icon.svg b/packages/Webkul/UI/publishable/assets/images/eye-icon.svg deleted file mode 100644 index 4b4688f8d..000000000 --- a/packages/Webkul/UI/publishable/assets/images/eye-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/folder-icon.svg b/packages/Webkul/UI/publishable/assets/images/folder-icon.svg deleted file mode 100644 index 580f70b3c..000000000 --- a/packages/Webkul/UI/publishable/assets/images/folder-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/forward-icon.svg b/packages/Webkul/UI/publishable/assets/images/forward-icon.svg deleted file mode 100644 index bf294be97..000000000 --- a/packages/Webkul/UI/publishable/assets/images/forward-icon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/forward-white-icon.svg b/packages/Webkul/UI/publishable/assets/images/forward-white-icon.svg deleted file mode 100644 index 11af8b224..000000000 --- a/packages/Webkul/UI/publishable/assets/images/forward-white-icon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/link-icon.svg b/packages/Webkul/UI/publishable/assets/images/link-icon.svg deleted file mode 100644 index 06e5f63d6..000000000 --- a/packages/Webkul/UI/publishable/assets/images/link-icon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/loader-active-icon.svg b/packages/Webkul/UI/publishable/assets/images/loader-active-icon.svg deleted file mode 100644 index cbc1de8af..000000000 --- a/packages/Webkul/UI/publishable/assets/images/loader-active-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/packages/Webkul/UI/publishable/assets/images/loader-icon.svg b/packages/Webkul/UI/publishable/assets/images/loader-icon.svg deleted file mode 100644 index c5e524bc3..000000000 --- a/packages/Webkul/UI/publishable/assets/images/loader-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/packages/Webkul/UI/publishable/assets/images/menu-fold-active-icon.svg b/packages/Webkul/UI/publishable/assets/images/menu-fold-active-icon.svg deleted file mode 100644 index b2b1737a0..000000000 --- a/packages/Webkul/UI/publishable/assets/images/menu-fold-active-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/menu-fold-icon.svg b/packages/Webkul/UI/publishable/assets/images/menu-fold-icon.svg deleted file mode 100644 index a98c06119..000000000 --- a/packages/Webkul/UI/publishable/assets/images/menu-fold-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/menu-unfold-active-icon.svg b/packages/Webkul/UI/publishable/assets/images/menu-unfold-active-icon.svg deleted file mode 100644 index 4066c1fa4..000000000 --- a/packages/Webkul/UI/publishable/assets/images/menu-unfold-active-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/menu-unfold-icon.svg b/packages/Webkul/UI/publishable/assets/images/menu-unfold-icon.svg deleted file mode 100644 index cabdd0f1f..000000000 --- a/packages/Webkul/UI/publishable/assets/images/menu-unfold-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/pencil-icon.svg b/packages/Webkul/UI/publishable/assets/images/pencil-icon.svg deleted file mode 100644 index f6806abbb..000000000 --- a/packages/Webkul/UI/publishable/assets/images/pencil-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/pencil-underline-icon.svg b/packages/Webkul/UI/publishable/assets/images/pencil-underline-icon.svg deleted file mode 100644 index e3834cf28..000000000 --- a/packages/Webkul/UI/publishable/assets/images/pencil-underline-icon.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/Webkul/UI/publishable/assets/images/plus-black-icon.svg b/packages/Webkul/UI/publishable/assets/images/plus-black-icon.svg deleted file mode 100644 index 2d99acff7..000000000 --- a/packages/Webkul/UI/publishable/assets/images/plus-black-icon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/plus-primary-icon.svg b/packages/Webkul/UI/publishable/assets/images/plus-primary-icon.svg deleted file mode 100644 index 2085a8676..000000000 --- a/packages/Webkul/UI/publishable/assets/images/plus-primary-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/plus-white-icon.svg b/packages/Webkul/UI/publishable/assets/images/plus-white-icon.svg deleted file mode 100644 index 4ae8d5a09..000000000 --- a/packages/Webkul/UI/publishable/assets/images/plus-white-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/radio-checked-icon.svg b/packages/Webkul/UI/publishable/assets/images/radio-checked-icon.svg deleted file mode 100644 index 8116e2f44..000000000 --- a/packages/Webkul/UI/publishable/assets/images/radio-checked-icon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/radio-icon.svg b/packages/Webkul/UI/publishable/assets/images/radio-icon.svg deleted file mode 100644 index 980896a6a..000000000 --- a/packages/Webkul/UI/publishable/assets/images/radio-icon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/reply-all-icon.svg b/packages/Webkul/UI/publishable/assets/images/reply-all-icon.svg deleted file mode 100644 index 8dada2709..000000000 --- a/packages/Webkul/UI/publishable/assets/images/reply-all-icon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/reply-all-white-icon.svg b/packages/Webkul/UI/publishable/assets/images/reply-all-white-icon.svg deleted file mode 100644 index 544255187..000000000 --- a/packages/Webkul/UI/publishable/assets/images/reply-all-white-icon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/reply-icon.svg b/packages/Webkul/UI/publishable/assets/images/reply-icon.svg deleted file mode 100644 index 75a7efa20..000000000 --- a/packages/Webkul/UI/publishable/assets/images/reply-icon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/reply-white-icon.svg b/packages/Webkul/UI/publishable/assets/images/reply-white-icon.svg deleted file mode 100644 index b3d014481..000000000 --- a/packages/Webkul/UI/publishable/assets/images/reply-white-icon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/search-icon.svg b/packages/Webkul/UI/publishable/assets/images/search-icon.svg deleted file mode 100644 index 121dbffb0..000000000 --- a/packages/Webkul/UI/publishable/assets/images/search-icon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/tags-active-icon.svg b/packages/Webkul/UI/publishable/assets/images/tags-active-icon.svg deleted file mode 100644 index d3932c61c..000000000 --- a/packages/Webkul/UI/publishable/assets/images/tags-active-icon.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/Webkul/UI/publishable/assets/images/tags-icon.svg b/packages/Webkul/UI/publishable/assets/images/tags-icon.svg deleted file mode 100644 index a587b182b..000000000 --- a/packages/Webkul/UI/publishable/assets/images/tags-icon.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/Webkul/UI/publishable/assets/images/time-icon.svg b/packages/Webkul/UI/publishable/assets/images/time-icon.svg deleted file mode 100644 index 6c64b8ec3..000000000 --- a/packages/Webkul/UI/publishable/assets/images/time-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/trash-icon.svg b/packages/Webkul/UI/publishable/assets/images/trash-icon.svg deleted file mode 100644 index 37daae7bd..000000000 --- a/packages/Webkul/UI/publishable/assets/images/trash-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/trash-white-icon.svg b/packages/Webkul/UI/publishable/assets/images/trash-white-icon.svg deleted file mode 100644 index 80f2151c8..000000000 --- a/packages/Webkul/UI/publishable/assets/images/trash-white-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/images/upload-icon.svg b/packages/Webkul/UI/publishable/assets/images/upload-icon.svg deleted file mode 100644 index 88c2cf532..000000000 --- a/packages/Webkul/UI/publishable/assets/images/upload-icon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/publishable/assets/js/ui.js b/packages/Webkul/UI/publishable/assets/js/ui.js deleted file mode 100644 index 499030452..000000000 --- a/packages/Webkul/UI/publishable/assets/js/ui.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see ui.js.LICENSE.txt */ -(()=>{var e,t={27461:(e,t,n)=>{"use strict";n(24572);var r,a=(r=n(95104))&&r.__esModule?r:{default:r};a.default._babelPolyfill&&"undefined"!=typeof console&&console.warn&&console.warn("@babel/polyfill is loaded more than once on this page. This is probably not desirable/intended and may have consequences if different versions of the polyfills are applied sequentially. If you do need to load the polyfill more than once, use @babel/polyfill/noConflict instead to bypass the warning."),a.default._babelPolyfill=!0},24572:(e,t,n)=>{"use strict";n(92419),n(28128),n(5777),n(82681),n(55240),n(61368),n(56073),n(7739),n(74897),n(54925),n(51243),n(38978),n(73415),n(7452)},54718:(e,t,n)=>{"use strict";const r={filters:{},tableData:{records:{data:{}},columns:[],actions:[],tabFilters:[],massactions:[],paginationData:{has_pages:!1}},allSelected:!1,sidebarFilter:!1,selectedTableRows:[],filterData:{deal_amount_range:{label:"Deal Amount Range",type:"integer_range",values:["1000","50000"]},contact_person:{label:"Contact Person",type:"add",placeholder:"Add Person",input_field_placeholder:"Enter Person",values:["Shubham","Webkul"]},date_range:{label:"Date Range",type:"date_range",values:["2021-04-02","2021-04-03"]},status:{label:"Status",type:"dropdown",placeholder:"Select Status",values:["Won","Lost"],options:["Won","Lost"]},phone_number:{label:"Phone",type:"add",placeholder:"Add Number",input_field_placeholder:"Enter Number",values:["987654321","987654321"]}},customTabFilter:!1};const a={toggleSidebarFilter:function(e){var t=e.state;t.sidebarFilter=!t.sidebarFilter,$(".sidebar-filter").toggleClass("show")},updateFilterValues:function(e,t){(0,e.commit)("UPDATE_FILTER_VALUES",t)},selectAllRows:function(e,t){(0,e.commit)("SELECT_ALL_ROWS",t)},selectTableRow:function(e,t){(0,e.commit)("SELECT_TABLE_ROW",t)},updateTableData:function(e,t){e.state.tableData=t}};const i={UPDATE_FILTER_VALUES:function(e,t){var n,r=(null==t?void 0:t.key)||null;if(r)for(var a in e.tableData.columns)a==r&&(r=e.tableData.columns[a].index,e.tableData.columns[a].values=t.values);EventBus.$emit("updateFilter",{key:r,value:null==t||null===(n=t.values)||void 0===n?void 0:n.toString(),cond:(null==t?void 0:t.condition)||"in"})},SELECT_ALL_ROWS:function(e,t){t&&e.selectedTableRows.length>0?(e.selectedTableRows=[],e.allSelected=!1):(e.selectedTableRows=[],e.allSelected=t||!e.allSelected,e.tableData.records.data.forEach((function(t){e.allSelected&&e.selectedTableRows.push(t.id)})))},SELECT_TABLE_ROW:function(e,t){var n=!1;e.selectedTableRows.forEach((function(r,a){r==t&&(n=!0,e.selectedTableRows.splice(a,1))})),n||e.selectedTableRows.push(t),e.allSelected=e.tableData.records.data.length==e.selectedTableRows.length}};const o=new(n(95353).Ay.Store)({state:r,actions:a,mutations:i});function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function l(e){var t=function(e,t){if("object"!=s(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!=s(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"==s(t)?t:t+""}function u(e,t,n){return(t=l(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function d(e,t){for(var n=0;n=0)return 1;return 0}();var f=c&&window.Promise?function(e){var t=!1;return function(){t||(t=!0,window.Promise.resolve().then((function(){t=!1,e()})))}}:function(e){var t=!1;return function(){t||(t=!0,setTimeout((function(){t=!1,e()}),h))}};function p(e){return e&&"[object Function]"==={}.toString.call(e)}function m(e,t){if(1!==e.nodeType)return[];var n=e.ownerDocument.defaultView.getComputedStyle(e,null);return t?n[t]:n}function _(e){return"HTML"===e.nodeName?e:e.parentNode||e.host}function g(e){if(!e)return document.body;switch(e.nodeName){case"HTML":case"BODY":return e.ownerDocument.body;case"#document":return e.body}var t=m(e),n=t.overflow,r=t.overflowX,a=t.overflowY;return/(auto|scroll|overlay)/.test(n+a+r)?e:g(_(e))}function v(e){return e&&e.referenceNode?e.referenceNode:e}var y=c&&!(!window.MSInputMethodContext||!document.documentMode),b=c&&/MSIE 10/.test(navigator.userAgent);function M(e){return 11===e?y:10===e?b:y||b}function w(e){if(!e)return document.documentElement;for(var t=M(10)?document.body:null,n=e.offsetParent||null;n===t&&e.nextElementSibling;)n=(e=e.nextElementSibling).offsetParent;var r=n&&n.nodeName;return r&&"BODY"!==r&&"HTML"!==r?-1!==["TH","TD","TABLE"].indexOf(n.nodeName)&&"static"===m(n,"position")?w(n):n:e?e.ownerDocument.documentElement:document.documentElement}function k(e){return null!==e.parentNode?k(e.parentNode):e}function x(e,t){if(!(e&&e.nodeType&&t&&t.nodeType))return document.documentElement;var n=e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_FOLLOWING,r=n?e:t,a=n?t:e,i=document.createRange();i.setStart(r,0),i.setEnd(a,0);var o,s,l=i.commonAncestorContainer;if(e!==l&&t!==l||r.contains(a))return"BODY"===(s=(o=l).nodeName)||"HTML"!==s&&w(o.firstElementChild)!==o?w(l):l;var u=k(e);return u.host?x(u.host,t):x(e,k(t).host)}function L(e){var t="top"===(arguments.length>1&&void 0!==arguments[1]?arguments[1]:"top")?"scrollTop":"scrollLeft",n=e.nodeName;if("BODY"===n||"HTML"===n){var r=e.ownerDocument.documentElement;return(e.ownerDocument.scrollingElement||r)[t]}return e[t]}function D(e,t){var n="x"===t?"Left":"Top",r="Left"===n?"Right":"Bottom";return parseFloat(e["border"+n+"Width"])+parseFloat(e["border"+r+"Width"])}function Y(e,t,n,r){return Math.max(t["offset"+e],t["scroll"+e],n["client"+e],n["offset"+e],n["scroll"+e],M(10)?parseInt(n["offset"+e])+parseInt(r["margin"+("Height"===e?"Top":"Left")])+parseInt(r["margin"+("Height"===e?"Bottom":"Right")]):0)}function S(e){var t=e.body,n=e.documentElement,r=M(10)&&getComputedStyle(n);return{height:Y("Height",t,n,r),width:Y("Width",t,n,r)}}var T=function(){function e(e,t){for(var n=0;n2&&void 0!==arguments[2]&&arguments[2],r=M(10),a="HTML"===t.nodeName,i=P(e),o=P(t),s=g(e),l=m(t),u=parseFloat(l.borderTopWidth),d=parseFloat(l.borderLeftWidth);n&&a&&(o.top=Math.max(o.top,0),o.left=Math.max(o.left,0));var c=j({top:i.top-o.top-u,left:i.left-o.left-d,width:i.width,height:i.height});if(c.marginTop=0,c.marginLeft=0,!r&&a){var h=parseFloat(l.marginTop),f=parseFloat(l.marginLeft);c.top-=u-h,c.bottom-=u-h,c.left-=d-f,c.right-=d-f,c.marginTop=h,c.marginLeft=f}return(r&&!n?t.contains(s):t===s&&"BODY"!==s.nodeName)&&(c=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=L(t,"top"),a=L(t,"left"),i=n?-1:1;return e.top+=r*i,e.bottom+=r*i,e.left+=a*i,e.right+=a*i,e}(c,t)),c}function H(e){var t=e.nodeName;if("BODY"===t||"HTML"===t)return!1;if("fixed"===m(e,"position"))return!0;var n=_(e);return!!n&&H(n)}function F(e){if(!e||!e.parentElement||M())return document.documentElement;for(var t=e.parentElement;t&&"none"===m(t,"transform");)t=t.parentElement;return t||document.documentElement}function E(e,t,n,r){var a=arguments.length>4&&void 0!==arguments[4]&&arguments[4],i={top:0,left:0},o=a?F(e):x(e,v(t));if("viewport"===r)i=function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=e.ownerDocument.documentElement,r=A(e,n),a=Math.max(n.clientWidth,window.innerWidth||0),i=Math.max(n.clientHeight,window.innerHeight||0),o=t?0:L(n),s=t?0:L(n,"left");return j({top:o-r.top+r.marginTop,left:s-r.left+r.marginLeft,width:a,height:i})}(o,a);else{var s=void 0;"scrollParent"===r?"BODY"===(s=g(_(t))).nodeName&&(s=e.ownerDocument.documentElement):s="window"===r?e.ownerDocument.documentElement:r;var l=A(s,o,a);if("HTML"!==s.nodeName||H(o))i=l;else{var u=S(e.ownerDocument),d=u.height,c=u.width;i.top+=l.top-l.marginTop,i.bottom=d+l.top,i.left+=l.left-l.marginLeft,i.right=c+l.left}}var h="number"==typeof(n=n||0);return i.left+=h?n:n.left||0,i.top+=h?n:n.top||0,i.right-=h?n:n.right||0,i.bottom-=h?n:n.bottom||0,i}function N(e,t,n,r,a){var i=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0;if(-1===e.indexOf("auto"))return e;var o=E(n,r,i,a),s={top:{width:o.width,height:t.top-o.top},right:{width:o.right-t.right,height:o.height},bottom:{width:o.width,height:o.bottom-t.bottom},left:{width:t.left-o.left,height:o.height}},l=Object.keys(s).map((function(e){return O({key:e},s[e],{area:(t=s[e],t.width*t.height)});var t})).sort((function(e,t){return t.area-e.area})),u=l.filter((function(e){var t=e.width,r=e.height;return t>=n.clientWidth&&r>=n.clientHeight})),d=u.length>0?u[0].key:l[0].key,c=e.split("-")[1];return d+(c?"-"+c:"")}function I(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;return A(n,r?F(t):x(t,v(n)),r)}function R(e){var t=e.ownerDocument.defaultView.getComputedStyle(e),n=parseFloat(t.marginTop||0)+parseFloat(t.marginBottom||0),r=parseFloat(t.marginLeft||0)+parseFloat(t.marginRight||0);return{width:e.offsetWidth+r,height:e.offsetHeight+n}}function W(e){var t={left:"right",right:"left",bottom:"top",top:"bottom"};return e.replace(/left|right|bottom|top/g,(function(e){return t[e]}))}function z(e,t,n){n=n.split("-")[0];var r=R(e),a={width:r.width,height:r.height},i=-1!==["right","left"].indexOf(n),o=i?"top":"left",s=i?"left":"top",l=i?"height":"width",u=i?"width":"height";return a[o]=t[o]+t[l]/2-r[l]/2,a[s]=n===s?t[s]-r[u]:t[W(s)],a}function V(e,t){return Array.prototype.find?e.find(t):e.filter(t)[0]}function B(e,t,n){return(void 0===n?e:e.slice(0,function(e,t,n){if(Array.prototype.findIndex)return e.findIndex((function(e){return e[t]===n}));var r=V(e,(function(e){return e[t]===n}));return e.indexOf(r)}(e,"name",n))).forEach((function(e){e.function&&console.warn("`modifier.function` is deprecated, use `modifier.fn`!");var n=e.function||e.fn;e.enabled&&p(n)&&(t.offsets.popper=j(t.offsets.popper),t.offsets.reference=j(t.offsets.reference),t=n(t,e))})),t}function U(){if(!this.state.isDestroyed){var e={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:!1,offsets:{}};e.offsets.reference=I(this.state,this.popper,this.reference,this.options.positionFixed),e.placement=N(this.options.placement,e.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding),e.originalPlacement=e.placement,e.positionFixed=this.options.positionFixed,e.offsets.popper=z(this.popper,e.offsets.reference,e.placement),e.offsets.popper.position=this.options.positionFixed?"fixed":"absolute",e=B(this.modifiers,e),this.state.isCreated?this.options.onUpdate(e):(this.state.isCreated=!0,this.options.onCreate(e))}}function G(e,t){return e.some((function(e){var n=e.name;return e.enabled&&n===t}))}function J(e){for(var t=[!1,"ms","Webkit","Moz","O"],n=e.charAt(0).toUpperCase()+e.slice(1),r=0;r1&&void 0!==arguments[1]&&arguments[1],n=oe.indexOf(e),r=oe.slice(n+1).concat(oe.slice(0,n));return t?r.reverse():r}var le="flip",ue="clockwise",de="counterclockwise";function ce(e,t,n,r){var a=[0,0],i=-1!==["right","left"].indexOf(r),o=e.split(/(\+|\-)/).map((function(e){return e.trim()})),s=o.indexOf(V(o,(function(e){return-1!==e.search(/,|\s/)})));o[s]&&-1===o[s].indexOf(",")&&console.warn("Offsets separated by white space(s) are deprecated, use a comma (,) instead.");var l=/\s*,\s*|\s+/,u=-1!==s?[o.slice(0,s).concat([o[s].split(l)[0]]),[o[s].split(l)[1]].concat(o.slice(s+1))]:[o];return u=u.map((function(e,r){var a=(1===r?!i:i)?"height":"width",o=!1;return e.reduce((function(e,t){return""===e[e.length-1]&&-1!==["+","-"].indexOf(t)?(e[e.length-1]=t,o=!0,e):o?(e[e.length-1]+=t,o=!1,e):e.concat(t)}),[]).map((function(e){return function(e,t,n,r){var a=e.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),i=+a[1],o=a[2];if(!i)return e;if(0===o.indexOf("%")){return j("%p"===o?n:r)[t]/100*i}if("vh"===o||"vw"===o)return("vh"===o?Math.max(document.documentElement.clientHeight,window.innerHeight||0):Math.max(document.documentElement.clientWidth,window.innerWidth||0))/100*i;return i}(e,a,t,n)}))})),u.forEach((function(e,t){e.forEach((function(n,r){te(n)&&(a[t]+=n*("-"===e[r-1]?-1:1))}))})),a}var he={shift:{order:100,enabled:!0,fn:function(e){var t=e.placement,n=t.split("-")[0],r=t.split("-")[1];if(r){var a=e.offsets,i=a.reference,o=a.popper,s=-1!==["bottom","top"].indexOf(n),l=s?"left":"top",u=s?"width":"height",d={start:C({},l,i[l]),end:C({},l,i[l]+i[u]-o[u])};e.offsets.popper=O({},o,d[r])}return e}},offset:{order:200,enabled:!0,fn:function(e,t){var n=t.offset,r=e.placement,a=e.offsets,i=a.popper,o=a.reference,s=r.split("-")[0],l=void 0;return l=te(+n)?[+n,0]:ce(n,i,o,s),"left"===s?(i.top+=l[0],i.left-=l[1]):"right"===s?(i.top+=l[0],i.left+=l[1]):"top"===s?(i.left+=l[0],i.top-=l[1]):"bottom"===s&&(i.left+=l[0],i.top+=l[1]),e.popper=i,e},offset:0},preventOverflow:{order:300,enabled:!0,fn:function(e,t){var n=t.boundariesElement||w(e.instance.popper);e.instance.reference===n&&(n=w(n));var r=J("transform"),a=e.instance.popper.style,i=a.top,o=a.left,s=a[r];a.top="",a.left="",a[r]="";var l=E(e.instance.popper,e.instance.reference,t.padding,n,e.positionFixed);a.top=i,a.left=o,a[r]=s,t.boundaries=l;var u=t.priority,d=e.offsets.popper,c={primary:function(e){var n=d[e];return d[e]l[e]&&!t.escapeWithReference&&(r=Math.min(d[n],l[e]-("right"===e?d.width:d.height))),C({},n,r)}};return u.forEach((function(e){var t=-1!==["left","top"].indexOf(e)?"primary":"secondary";d=O({},d,c[t](e))})),e.offsets.popper=d,e},priority:["left","right","top","bottom"],padding:5,boundariesElement:"scrollParent"},keepTogether:{order:400,enabled:!0,fn:function(e){var t=e.offsets,n=t.popper,r=t.reference,a=e.placement.split("-")[0],i=Math.floor,o=-1!==["top","bottom"].indexOf(a),s=o?"right":"bottom",l=o?"left":"top",u=o?"width":"height";return n[s]i(r[s])&&(e.offsets.popper[l]=i(r[s])),e}},arrow:{order:500,enabled:!0,fn:function(e,t){var n;if(!ae(e.instance.modifiers,"arrow","keepTogether"))return e;var r=t.element;if("string"==typeof r){if(!(r=e.instance.popper.querySelector(r)))return e}else if(!e.instance.popper.contains(r))return console.warn("WARNING: `arrow.element` must be child of its popper element!"),e;var a=e.placement.split("-")[0],i=e.offsets,o=i.popper,s=i.reference,l=-1!==["left","right"].indexOf(a),u=l?"height":"width",d=l?"Top":"Left",c=d.toLowerCase(),h=l?"left":"top",f=l?"bottom":"right",p=R(r)[u];s[f]-po[f]&&(e.offsets.popper[c]+=s[c]+p-o[f]),e.offsets.popper=j(e.offsets.popper);var _=s[c]+s[u]/2-p/2,g=m(e.instance.popper),v=parseFloat(g["margin"+d]),y=parseFloat(g["border"+d+"Width"]),b=_-e.offsets.popper[c]-v-y;return b=Math.max(Math.min(o[u]-p,b),0),e.arrowElement=r,e.offsets.arrow=(C(n={},c,Math.round(b)),C(n,h,""),n),e},element:"[x-arrow]"},flip:{order:600,enabled:!0,fn:function(e,t){if(G(e.instance.modifiers,"inner"))return e;if(e.flipped&&e.placement===e.originalPlacement)return e;var n=E(e.instance.popper,e.instance.reference,t.padding,t.boundariesElement,e.positionFixed),r=e.placement.split("-")[0],a=W(r),i=e.placement.split("-")[1]||"",o=[];switch(t.behavior){case le:o=[r,a];break;case ue:o=se(r);break;case de:o=se(r,!0);break;default:o=t.behavior}return o.forEach((function(s,l){if(r!==s||o.length===l+1)return e;r=e.placement.split("-")[0],a=W(r);var u=e.offsets.popper,d=e.offsets.reference,c=Math.floor,h="left"===r&&c(u.right)>c(d.left)||"right"===r&&c(u.left)c(d.top)||"bottom"===r&&c(u.top)c(n.right),m=c(u.top)c(n.bottom),g="left"===r&&f||"right"===r&&p||"top"===r&&m||"bottom"===r&&_,v=-1!==["top","bottom"].indexOf(r),y=!!t.flipVariations&&(v&&"start"===i&&f||v&&"end"===i&&p||!v&&"start"===i&&m||!v&&"end"===i&&_),b=!!t.flipVariationsByContent&&(v&&"start"===i&&p||v&&"end"===i&&f||!v&&"start"===i&&_||!v&&"end"===i&&m),M=y||b;(h||g||M)&&(e.flipped=!0,(h||g)&&(r=o[l+1]),M&&(i=function(e){return"end"===e?"start":"start"===e?"end":e}(i)),e.placement=r+(i?"-"+i:""),e.offsets.popper=O({},e.offsets.popper,z(e.instance.popper,e.offsets.reference,e.placement)),e=B(e.instance.modifiers,e,"flip"))})),e},behavior:"flip",padding:5,boundariesElement:"viewport",flipVariations:!1,flipVariationsByContent:!1},inner:{order:700,enabled:!1,fn:function(e){var t=e.placement,n=t.split("-")[0],r=e.offsets,a=r.popper,i=r.reference,o=-1!==["left","right"].indexOf(n),s=-1===["top","left"].indexOf(n);return a[o?"left":"top"]=i[n]-(s?a[o?"width":"height"]:0),e.placement=W(t),e.offsets.popper=j(a),e}},hide:{order:800,enabled:!0,fn:function(e){if(!ae(e.instance.modifiers,"hide","preventOverflow"))return e;var t=e.offsets.reference,n=V(e.instance.modifiers,(function(e){return"preventOverflow"===e.name})).boundaries;if(t.bottomn.right||t.top>n.bottom||t.right2&&void 0!==arguments[2]?arguments[2]:{};!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.scheduleUpdate=function(){return requestAnimationFrame(r.update)},this.update=f(this.update.bind(this)),this.options=O({},e.Defaults,a),this.state={isDestroyed:!1,isCreated:!1,scrollParents:[]},this.reference=t&&t.jquery?t[0]:t,this.popper=n&&n.jquery?n[0]:n,this.options.modifiers={},Object.keys(O({},e.Defaults.modifiers,a.modifiers)).forEach((function(t){r.options.modifiers[t]=O({},e.Defaults.modifiers[t]||{},a.modifiers?a.modifiers[t]:{})})),this.modifiers=Object.keys(this.options.modifiers).map((function(e){return O({name:e},r.options.modifiers[e])})).sort((function(e,t){return e.order-t.order})),this.modifiers.forEach((function(e){e.enabled&&p(e.onLoad)&&e.onLoad(r.reference,r.popper,r.options,e,r.state)})),this.update();var i=this.options.eventsEnabled;i&&this.enableEventListeners(),this.state.eventsEnabled=i}return T(e,[{key:"update",value:function(){return U.call(this)}},{key:"destroy",value:function(){return q.call(this)}},{key:"enableEventListeners",value:function(){return Q.call(this)}},{key:"disableEventListeners",value:function(){return ee.call(this)}}]),e}();pe.Utils=("undefined"!=typeof window?window:n.g).PopperUtils,pe.placements=ie,pe.Defaults=fe;const me=pe;var _e,ge=n(2404),ve=n.n(ge);function ye(){ye.init||(ye.init=!0,_e=-1!==function(){var e=window.navigator.userAgent,t=e.indexOf("MSIE ");if(t>0)return parseInt(e.substring(t+5,e.indexOf(".",t)),10);if(e.indexOf("Trident/")>0){var n=e.indexOf("rv:");return parseInt(e.substring(n+3,e.indexOf(".",n)),10)}var r=e.indexOf("Edge/");return r>0?parseInt(e.substring(r+5,e.indexOf(".",r)),10):-1}())}function be(e,t,n,r,a,i,o,s,l,u){"boolean"!=typeof o&&(l=s,s=o,o=!1);var d,c="function"==typeof n?n.options:n;if(e&&e.render&&(c.render=e.render,c.staticRenderFns=e.staticRenderFns,c._compiled=!0,a&&(c.functional=!0)),r&&(c._scopeId=r),i?(d=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),t&&t.call(this,l(e)),e&&e._registeredComponents&&e._registeredComponents.add(i)},c._ssrRegister=d):t&&(d=o?function(e){t.call(this,u(e,this.$root.$options.shadowRoot))}:function(e){t.call(this,s(e))}),d)if(c.functional){var h=c.render;c.render=function(e,t){return d.call(t),h(e,t)}}else{var f=c.beforeCreate;c.beforeCreate=f?[].concat(f,d):[d]}return n}var Me={name:"ResizeObserver",props:{emitOnMount:{type:Boolean,default:!1},ignoreWidth:{type:Boolean,default:!1},ignoreHeight:{type:Boolean,default:!1}},mounted:function(){var e=this;ye(),this.$nextTick((function(){e._w=e.$el.offsetWidth,e._h=e.$el.offsetHeight,e.emitOnMount&&e.emitSize()}));var t=document.createElement("object");this._resizeObject=t,t.setAttribute("aria-hidden","true"),t.setAttribute("tabindex",-1),t.onload=this.addResizeHandlers,t.type="text/html",_e&&this.$el.appendChild(t),t.data="about:blank",_e||this.$el.appendChild(t)},beforeDestroy:function(){this.removeResizeHandlers()},methods:{compareAndNotify:function(){(!this.ignoreWidth&&this._w!==this.$el.offsetWidth||!this.ignoreHeight&&this._h!==this.$el.offsetHeight)&&(this._w=this.$el.offsetWidth,this._h=this.$el.offsetHeight,this.emitSize())},emitSize:function(){this.$emit("notify",{width:this._w,height:this._h})},addResizeHandlers:function(){this._resizeObject.contentDocument.defaultView.addEventListener("resize",this.compareAndNotify),this.compareAndNotify()},removeResizeHandlers:function(){this._resizeObject&&this._resizeObject.onload&&(!_e&&this._resizeObject.contentDocument&&this._resizeObject.contentDocument.defaultView.removeEventListener("resize",this.compareAndNotify),this.$el.removeChild(this._resizeObject),this._resizeObject.onload=null,this._resizeObject=null)}}},we=function(){var e=this.$createElement;return(this._self._c||e)("div",{staticClass:"resize-observer",attrs:{tabindex:"-1"}})};we._withStripped=!0;var ke=be({render:we,staticRenderFns:[]},undefined,Me,"data-v-8859cc6c",false,undefined,!1,void 0,void 0,void 0);var xe={version:"1.0.1",install:function(e){e.component("resize-observer",ke),e.component("ResizeObserver",ke)}},Le=null;"undefined"!=typeof window?Le=window.Vue:void 0!==n.g&&(Le=n.g.Vue),Le&&Le.use(xe);var De=n(55364),Ye=n.n(De),Se=function(){};function Te(e){return"string"==typeof e&&(e=e.split(" ")),e}function Ce(e,t){var n,r=Te(t);n=e.className instanceof Se?Te(e.className.baseVal):Te(e.className),r.forEach((function(e){-1===n.indexOf(e)&&n.push(e)})),e instanceof SVGElement?e.setAttribute("class",n.join(" ")):e.className=n.join(" ")}function Oe(e,t){var n,r=Te(t);n=e.className instanceof Se?Te(e.className.baseVal):Te(e.className),r.forEach((function(e){var t=n.indexOf(e);-1!==t&&n.splice(t,1)})),e instanceof SVGElement?e.setAttribute("class",n.join(" ")):e.className=n.join(" ")}"undefined"!=typeof window&&(Se=window.SVGAnimatedString);var je=!1;if("undefined"!=typeof window){je=!1;try{var Pe=Object.defineProperty({},"passive",{get:function(){je=!0}});window.addEventListener("test",null,Pe)}catch(e){}}function Ae(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function He(e){for(var t=1;t
',trigger:"hover focus",offset:0},Ee=[],Ne=function(){function e(t,n){var r=this;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),u(this,"_events",[]),u(this,"_setTooltipNodeEvent",(function(e,t,n,a){var i=e.relatedreference||e.toElement||e.relatedTarget;return!!r._tooltipNode.contains(i)&&(r._tooltipNode.addEventListener(e.type,(function n(i){var o=i.relatedreference||i.toElement||i.relatedTarget;r._tooltipNode.removeEventListener(e.type,n),t.contains(o)||r._scheduleHide(t,a.delay,a,i)})),!0)})),n=He(He({},Fe),n),t.jquery&&(t=t[0]),this.show=this.show.bind(this),this.hide=this.hide.bind(this),this.reference=t,this.options=n,this._isOpen=!1,this._init()}var t,n,r;return t=e,(n=[{key:"show",value:function(){this._show(this.reference,this.options)}},{key:"hide",value:function(){this._hide()}},{key:"dispose",value:function(){this._dispose()}},{key:"toggle",value:function(){return this._isOpen?this.hide():this.show()}},{key:"setClasses",value:function(e){this._classes=e}},{key:"setContent",value:function(e){this.options.title=e,this._tooltipNode&&this._setContent(e,this.options)}},{key:"setOptions",value:function(e){var t=!1,n=e&&e.classes||qe.options.defaultClass;ve()(this._classes,n)||(this.setClasses(n),t=!0),e=$e(e);var r=!1,a=!1;for(var i in this.options.offset===e.offset&&this.options.placement===e.placement||(r=!0),(this.options.template!==e.template||this.options.trigger!==e.trigger||this.options.container!==e.container||t)&&(a=!0),e)this.options[i]=e[i];if(this._tooltipNode)if(a){var o=this._isOpen;this.dispose(),this._init(),o&&this.show()}else r&&this.popperInstance.update()}},{key:"_init",value:function(){var e="string"==typeof this.options.trigger?this.options.trigger.split(" "):[];this._isDisposed=!1,this._enableDocumentTouch=-1===e.indexOf("manual"),e=e.filter((function(e){return-1!==["click","hover","focus"].indexOf(e)})),this._setEventListeners(this.reference,e,this.options),this.$_originalTitle=this.reference.getAttribute("title"),this.reference.removeAttribute("title"),this.reference.setAttribute("data-original-title",this.$_originalTitle)}},{key:"_create",value:function(e,t){var n=this,r=window.document.createElement("div");r.innerHTML=t.trim();var a=r.childNodes[0];return a.id=this.options.ariaId||"tooltip_".concat(Math.random().toString(36).substr(2,10)),a.setAttribute("aria-hidden","true"),this.options.autoHide&&-1!==this.options.trigger.indexOf("hover")&&(a.addEventListener("mouseenter",(function(t){return n._scheduleHide(e,n.options.delay,n.options,t)})),a.addEventListener("click",(function(t){return n._scheduleHide(e,n.options.delay,n.options,t)}))),a}},{key:"_setContent",value:function(e,t){var n=this;this.asyncContent=!1,this._applyContent(e,t).then((function(){n.popperInstance&&n.popperInstance.update()}))}},{key:"_applyContent",value:function(e,t){var n=this;return new Promise((function(r,a){var i=t.html,o=n._tooltipNode;if(o){var s=o.querySelector(n.options.innerSelector);if(1===e.nodeType){if(i){for(;s.firstChild;)s.removeChild(s.firstChild);s.appendChild(e)}}else{if("function"==typeof e){var l=e();return void(l&&"function"==typeof l.then?(n.asyncContent=!0,t.loadingClass&&Ce(o,t.loadingClass),t.loadingContent&&n._applyContent(t.loadingContent,t),l.then((function(e){return t.loadingClass&&Oe(o,t.loadingClass),n._applyContent(e,t)})).then(r).catch(a)):n._applyContent(l,t).then(r).catch(a))}i?s.innerHTML=e:s.innerText=e}r()}}))}},{key:"_show",value:function(e,t){if(!t||"string"!=typeof t.container||document.querySelector(t.container)){clearTimeout(this._disposeTimer),delete(t=Object.assign({},t)).offset;var n=!0;this._tooltipNode&&(Ce(this._tooltipNode,this._classes),n=!1);var r=this._ensureShown(e,t);return n&&this._tooltipNode&&Ce(this._tooltipNode,this._classes),Ce(e,["v-tooltip-open"]),r}}},{key:"_ensureShown",value:function(e,t){var n=this;if(this._isOpen)return this;if(this._isOpen=!0,Ee.push(this),this._tooltipNode)return this._tooltipNode.style.display="",this._tooltipNode.setAttribute("aria-hidden","false"),this.popperInstance.enableEventListeners(),this.popperInstance.update(),this.asyncContent&&this._setContent(t.title,t),this;var r=e.getAttribute("title")||t.title;if(!r)return this;var a=this._create(e,t.template);this._tooltipNode=a,e.setAttribute("aria-describedby",a.id);var i=this._findContainer(t.container,e);this._append(a,i);var o=He(He({},t.popperOptions),{},{placement:t.placement});return o.modifiers=He(He({},o.modifiers),{},{arrow:{element:this.options.arrowSelector}}),t.boundariesElement&&(o.modifiers.preventOverflow={boundariesElement:t.boundariesElement}),this.popperInstance=new me(e,a,o),this._setContent(r,t),requestAnimationFrame((function(){!n._isDisposed&&n.popperInstance?(n.popperInstance.update(),requestAnimationFrame((function(){n._isDisposed?n.dispose():n._isOpen&&a.setAttribute("aria-hidden","false")}))):n.dispose()})),this}},{key:"_noLongerOpen",value:function(){var e=Ee.indexOf(this);-1!==e&&Ee.splice(e,1)}},{key:"_hide",value:function(){var e=this;if(!this._isOpen)return this;this._isOpen=!1,this._noLongerOpen(),this._tooltipNode.style.display="none",this._tooltipNode.setAttribute("aria-hidden","true"),this.popperInstance&&this.popperInstance.disableEventListeners(),clearTimeout(this._disposeTimer);var t=qe.options.disposeTimeout;return null!==t&&(this._disposeTimer=setTimeout((function(){e._tooltipNode&&(e._tooltipNode.removeEventListener("mouseenter",e.hide),e._tooltipNode.removeEventListener("click",e.hide),e._removeTooltipNode())}),t)),Oe(this.reference,["v-tooltip-open"]),this}},{key:"_removeTooltipNode",value:function(){if(this._tooltipNode){var e=this._tooltipNode.parentNode;e&&(e.removeChild(this._tooltipNode),this.reference.removeAttribute("aria-describedby")),this._tooltipNode=null}}},{key:"_dispose",value:function(){var e=this;return this._isDisposed=!0,this.reference.removeAttribute("data-original-title"),this.$_originalTitle&&this.reference.setAttribute("title",this.$_originalTitle),this._events.forEach((function(t){var n=t.func,r=t.event;e.reference.removeEventListener(r,n)})),this._events=[],this._tooltipNode?(this._hide(),this._tooltipNode.removeEventListener("mouseenter",this.hide),this._tooltipNode.removeEventListener("click",this.hide),this.popperInstance.destroy(),this.popperInstance.options.removeOnDestroy||this._removeTooltipNode()):this._noLongerOpen(),this}},{key:"_findContainer",value:function(e,t){return"string"==typeof e?e=window.document.querySelector(e):!1===e&&(e=t.parentNode),e}},{key:"_append",value:function(e,t){t.appendChild(e)}},{key:"_setEventListeners",value:function(e,t,n){var r=this,a=[],i=[];t.forEach((function(e){switch(e){case"hover":a.push("mouseenter"),i.push("mouseleave"),r.options.hideOnTargetClick&&i.push("click");break;case"focus":a.push("focus"),i.push("blur"),r.options.hideOnTargetClick&&i.push("click");break;case"click":a.push("click"),i.push("click")}})),a.forEach((function(t){var a=function(t){!0!==r._isOpen&&(t.usedByTooltip=!0,r._scheduleShow(e,n.delay,n,t))};r._events.push({event:t,func:a}),e.addEventListener(t,a)})),i.forEach((function(t){var a=function(t){!0!==t.usedByTooltip&&r._scheduleHide(e,n.delay,n,t)};r._events.push({event:t,func:a}),e.addEventListener(t,a)}))}},{key:"_onDocumentTouch",value:function(e){this._enableDocumentTouch&&this._scheduleHide(this.reference,this.options.delay,this.options,e)}},{key:"_scheduleShow",value:function(e,t,n){var r=this,a=t&&t.show||t||0;clearTimeout(this._scheduleTimer),this._scheduleTimer=window.setTimeout((function(){return r._show(e,n)}),a)}},{key:"_scheduleHide",value:function(e,t,n,r){var a=this,i=t&&t.hide||t||0;clearTimeout(this._scheduleTimer),this._scheduleTimer=window.setTimeout((function(){if(!1!==a._isOpen&&a._tooltipNode.ownerDocument.body.contains(a._tooltipNode)){if("mouseleave"===r.type&&a._setTooltipNodeEvent(r,e,t,n))return;a._hide(e,n)}}),i)}}])&&d(t.prototype,n),r&&d(t,r),Object.defineProperty(t,"prototype",{writable:!1}),e}();function Ie(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Re(e){for(var t=1;t
',defaultArrowSelector:".tooltip-arrow, .tooltip__arrow",defaultInnerSelector:".tooltip-inner, .tooltip__inner",defaultDelay:0,defaultTrigger:"hover focus",defaultOffset:0,defaultContainer:"body",defaultBoundariesElement:void 0,defaultPopperOptions:{},defaultLoadingClass:"tooltip-loading",defaultLoadingContent:"...",autoHide:!0,defaultHideOnTargetClick:!0,disposeTimeout:5e3,popover:{defaultPlacement:"bottom",defaultClass:"vue-popover-theme",defaultBaseClass:"tooltip popover",defaultWrapperClass:"wrapper",defaultInnerClass:"tooltip-inner popover-inner",defaultArrowClass:"tooltip-arrow popover-arrow",defaultOpenClass:"open",defaultDelay:0,defaultTrigger:"click",defaultOffset:0,defaultContainer:"body",defaultBoundariesElement:void 0,defaultPopperOptions:{},defaultAutoHide:!0,defaultHandleResize:!0}};function $e(e){var t={placement:void 0!==e.placement?e.placement:qe.options.defaultPlacement,delay:void 0!==e.delay?e.delay:qe.options.defaultDelay,html:void 0!==e.html?e.html:qe.options.defaultHtml,template:void 0!==e.template?e.template:qe.options.defaultTemplate,arrowSelector:void 0!==e.arrowSelector?e.arrowSelector:qe.options.defaultArrowSelector,innerSelector:void 0!==e.innerSelector?e.innerSelector:qe.options.defaultInnerSelector,trigger:void 0!==e.trigger?e.trigger:qe.options.defaultTrigger,offset:void 0!==e.offset?e.offset:qe.options.defaultOffset,container:void 0!==e.container?e.container:qe.options.defaultContainer,boundariesElement:void 0!==e.boundariesElement?e.boundariesElement:qe.options.defaultBoundariesElement,autoHide:void 0!==e.autoHide?e.autoHide:qe.options.autoHide,hideOnTargetClick:void 0!==e.hideOnTargetClick?e.hideOnTargetClick:qe.options.defaultHideOnTargetClick,loadingClass:void 0!==e.loadingClass?e.loadingClass:qe.options.defaultLoadingClass,loadingContent:void 0!==e.loadingContent?e.loadingContent:qe.options.defaultLoadingContent,popperOptions:Re({},void 0!==e.popperOptions?e.popperOptions:qe.options.defaultPopperOptions)};if(t.offset){var n=s(t.offset),r=t.offset;("number"===n||"string"===n&&-1===r.indexOf(","))&&(r="0, ".concat(r)),t.popperOptions.modifiers||(t.popperOptions.modifiers={}),t.popperOptions.modifiers.offset={offset:r}}return t.trigger&&-1!==t.trigger.indexOf("click")&&(t.hideOnTargetClick=!1),t}function Be(e,t){for(var n=e.placement,r=0;r2&&void 0!==arguments[2]?arguments[2]:{},r=Ue(t),a=void 0!==t.classes?t.classes:qe.options.defaultClass,i=Re({title:r},$e(Re(Re({},"object"===s(t)?t:{}),{},{placement:Be(t,n)}))),o=e._tooltip=new Ne(e,i);o.setClasses(a),o._vueEl=e;var l=void 0!==t.targetClasses?t.targetClasses:qe.options.defaultTargetClass;return e._tooltipTargetClasses=l,Ce(e,l),o}(e,n,a),void 0!==n.show&&n.show!==e._tooltipOldShow&&(e._tooltipOldShow=n.show,n.show?r.show():r.hide())):Ge(e)}var qe={options:Ve,bind:Je,update:Je,unbind:function(e){Ge(e)}};function Ze(e){e.addEventListener("click",Xe),e.addEventListener("touchstart",Qe,!!je&&{passive:!0})}function Ke(e){e.removeEventListener("click",Xe),e.removeEventListener("touchstart",Qe),e.removeEventListener("touchend",et),e.removeEventListener("touchcancel",tt)}function Xe(e){var t=e.currentTarget;e.closePopover=!t.$_vclosepopover_touch,e.closeAllPopover=t.$_closePopoverModifiers&&!!t.$_closePopoverModifiers.all}function Qe(e){if(1===e.changedTouches.length){var t=e.currentTarget;t.$_vclosepopover_touch=!0;var n=e.changedTouches[0];t.$_vclosepopover_touchPoint=n,t.addEventListener("touchend",et),t.addEventListener("touchcancel",tt)}}function et(e){var t=e.currentTarget;if(t.$_vclosepopover_touch=!1,1===e.changedTouches.length){var n=e.changedTouches[0],r=t.$_vclosepopover_touchPoint;e.closePopover=Math.abs(n.screenY-r.screenY)<20&&Math.abs(n.screenX-r.screenX)<20,e.closeAllPopover=t.$_closePopoverModifiers&&!!t.$_closePopoverModifiers.all}}function tt(e){e.currentTarget.$_vclosepopover_touch=!1}var nt={bind:function(e,t){var n=t.value,r=t.modifiers;e.$_closePopoverModifiers=r,(void 0===n||n)&&Ze(e)},update:function(e,t){var n=t.value,r=t.oldValue,a=t.modifiers;e.$_closePopoverModifiers=a,n!==r&&(void 0===n||n?Ze(e):Ke(e))},unbind:function(e){Ke(e)}};function rt(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function at(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{},n=t.event;t.skipDelay;var r=t.force;!(void 0!==r&&r)&&this.disabled||(this.$_scheduleShow(n),this.$emit("show")),this.$emit("update:open",!0),this.$_beingShowed=!0,requestAnimationFrame((function(){e.$_beingShowed=!1}))},hide:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.event;e.skipDelay,this.$_scheduleHide(t),this.$emit("hide"),this.$emit("update:open",!1)},dispose:function(){if(this.$_isDisposed=!0,this.$_removeEventListeners(),this.hide({skipDelay:!0}),this.popperInstance&&(this.popperInstance.destroy(),!this.popperInstance.options.removeOnDestroy)){var e=this.$refs.popover;e.parentNode&&e.parentNode.removeChild(e)}this.$_mounted=!1,this.popperInstance=null,this.isOpen=!1,this.$emit("dispose")},$_init:function(){-1===this.trigger.indexOf("manual")&&this.$_addEventListeners()},$_show:function(){var e=this,t=this.$refs.trigger,n=this.$refs.popover;if(clearTimeout(this.$_disposeTimer),!this.isOpen){if(this.popperInstance&&(this.isOpen=!0,this.popperInstance.enableEventListeners(),this.popperInstance.scheduleUpdate()),!this.$_mounted){var r=this.$_findContainer(this.container,t);if(!r)return void console.warn("No container for popover",this);r.appendChild(n),this.$_mounted=!0,this.isOpen=!1,this.popperInstance&&requestAnimationFrame((function(){e.hidden||(e.isOpen=!0)}))}if(!this.popperInstance){var a=at(at({},this.popperOptions),{},{placement:this.placement});if(a.modifiers=at(at({},a.modifiers),{},{arrow:at(at({},a.modifiers&&a.modifiers.arrow),{},{element:this.$refs.arrow})}),this.offset){var i=this.$_getOffset();a.modifiers.offset=at(at({},a.modifiers&&a.modifiers.offset),{},{offset:i})}this.boundariesElement&&(a.modifiers.preventOverflow=at(at({},a.modifiers&&a.modifiers.preventOverflow),{},{boundariesElement:this.boundariesElement})),this.popperInstance=new me(t,n,a),requestAnimationFrame((function(){if(e.hidden)return e.hidden=!1,void e.$_hide();!e.$_isDisposed&&e.popperInstance?(e.popperInstance.scheduleUpdate(),requestAnimationFrame((function(){if(e.hidden)return e.hidden=!1,void e.$_hide();e.$_isDisposed?e.dispose():e.isOpen=!0}))):e.dispose()}))}var o=this.openGroup;if(o)for(var s,l=0;l1&&void 0!==arguments[1]&&arguments[1];if(clearTimeout(this.$_scheduleTimer),e)this.$_show();else{var t=parseInt(this.delay&&this.delay.show||this.delay||0);this.$_scheduleTimer=setTimeout(this.$_show.bind(this),t)}},$_scheduleHide:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(clearTimeout(this.$_scheduleTimer),n)this.$_hide();else{var r=parseInt(this.delay&&this.delay.hide||this.delay||0);this.$_scheduleTimer=setTimeout((function(){if(e.isOpen){if(t&&"mouseleave"===t.type)if(e.$_setTooltipNodeEvent(t))return;e.$_hide()}}),r)}},$_setTooltipNodeEvent:function(e){var t=this,n=this.$refs.trigger,r=this.$refs.popover,a=e.relatedreference||e.toElement||e.relatedTarget;return!!r.contains(a)&&(r.addEventListener(e.type,(function a(i){var o=i.relatedreference||i.toElement||i.relatedTarget;r.removeEventListener(e.type,a),n.contains(o)||t.hide({event:i})})),!0)},$_removeEventListeners:function(){var e=this.$refs.trigger;this.$_events.forEach((function(t){var n=t.func,r=t.event;e.removeEventListener(r,n)})),this.$_events=[]},$_updatePopper:function(e){this.popperInstance&&(e(),this.isOpen&&this.popperInstance.scheduleUpdate())},$_restartPopper:function(){if(this.popperInstance){var e=this.isOpen;this.dispose(),this.$_isDisposed=!1,this.$_init(),e&&this.show({skipDelay:!0,force:!0})}},$_handleGlobalClose:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];this.$_beingShowed||(this.hide({event:e}),e.closePopover?this.$emit("close-directive"):this.$emit("auto-hide"),n&&(this.$_preventOpen=!0,setTimeout((function(){t.$_preventOpen=!1}),300)))},$_handleResize:function(){this.isOpen&&this.popperInstance&&(this.popperInstance.scheduleUpdate(),this.$emit("resize"))}}};function dt(e){for(var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=function(n){var r=st[n];if(r.$refs.popover){var a=r.$refs.popover.contains(e.target);requestAnimationFrame((function(){(e.closeAllPopover||e.closePopover&&a||r.autoHide&&!a)&&r.$_handleGlobalClose(e,t)}))}},r=0;r1&&void 0!==arguments[1]?arguments[1]:{};if(!e.installed){e.installed=!0;var r={};Ye()(r,Ve,n),mt.options=r,qe.options=r,t.directive("tooltip",qe),t.directive("close-popover",nt),t.component("VPopover",pt)}},get enabled(){return We.enabled},set enabled(e){We.enabled=e}},_t=null;"undefined"!=typeof window?_t=window.Vue:void 0!==n.g&&(_t=n.g.Vue),_t&&_t.use(mt);const gt=mt;var vt=n(32464),yt=n.n(vt),bt=n(38078);n(42962);Vue.use(yt()),Vue.use(n(55624)),window.EventBus=new Vue,window.debounce=n(46646),gt.options.disposeTimeout=0,Vue.directive("tooltip",gt.VTooltip),Vue.directive("debounce",n(1214).A),Vue.filter("formatDate",(function(e){if(e){var t=new Date(e);return"".concat(t.getDate()," ").concat(t.toLocaleString("default",{month:"short"})," ").concat(t.getFullYear()," ").concat(t.getHours(),":").concat(t.getMinutes())}})),Vue.filter("toFixed",(function(e,t){if(e)return parseFloat(e).toFixed(t||2)})),Vue.config.productionTip=!1,Vue.mixin({store:o,methods:{addFlashMessages:function(e){e.type=e.type||"success",window.addFlashMessages(e)},toggleButtonDisable:function(e){for(var t=document.getElementsByTagName("button"),n=0;nt?e.substring(0,t)+n:e})),Vue.filter("date",(function(e){return e?moment(val).format("YYYY-MM-DD"):""})),n(21936),n(27461)},6108:e=>{e.exports={methods:{__:function(e,t){var n=e.split("."),r=window._translations;return n.forEach((function(e){r=r[e]})),t&&Object.keys(t).forEach((function(e){var n=t[e];r=r.replace(":".concat(e),n)})),r}}}},46646:e=>{e.exports=function(e,t){var n=null;return function(){clearTimeout(n);var r=arguments,a=this;n=setTimeout((function(){e.apply(a,r)}),t)}}},320:()=>{$((function(){function e(){if(dropdown=$(".dropdown-open"),!dropdown.find(".dropdown-list").hasClass("top-left")&&!dropdown.find(".dropdown-list").hasClass("top-right")&&dropdown.length){dropdown=dropdown.find(".dropdown-list"),height=dropdown.height()+50;var e=dropdown.offset().top-70,t=$(window).height()-e-dropdown.height();t>e||height1&&(a-=1)),[360*a,100*i,100*u]},a.rgb.hwb=function(e){var t=e[0],n=e[1],r=e[2];return[a.rgb.hsl(e)[0],1/255*Math.min(t,Math.min(n,r))*100,100*(r=1-1/255*Math.max(t,Math.max(n,r)))]},a.rgb.cmyk=function(e){var t,n=e[0]/255,r=e[1]/255,a=e[2]/255;return[100*((1-n-(t=Math.min(1-n,1-r,1-a)))/(1-t)||0),100*((1-r-t)/(1-t)||0),100*((1-a-t)/(1-t)||0),100*t]},a.rgb.keyword=function(e){var n=t[e];if(n)return n;var a,i=1/0;for(var o in r)if(r.hasOwnProperty(o)){var s=l(e,r[o]);s.04045?Math.pow((t+.055)/1.055,2.4):t/12.92)+.3576*(n=n>.04045?Math.pow((n+.055)/1.055,2.4):n/12.92)+.1805*(r=r>.04045?Math.pow((r+.055)/1.055,2.4):r/12.92)),100*(.2126*t+.7152*n+.0722*r),100*(.0193*t+.1192*n+.9505*r)]},a.rgb.lab=function(e){var t=a.rgb.xyz(e),n=t[0],r=t[1],i=t[2];return r/=100,i/=108.883,n=(n/=95.047)>.008856?Math.pow(n,1/3):7.787*n+16/116,[116*(r=r>.008856?Math.pow(r,1/3):7.787*r+16/116)-16,500*(n-r),200*(r-(i=i>.008856?Math.pow(i,1/3):7.787*i+16/116))]},a.hsl.rgb=function(e){var t,n,r,a,i,o=e[0]/360,s=e[1]/100,l=e[2]/100;if(0===s)return[i=255*l,i,i];t=2*l-(n=l<.5?l*(1+s):l+s-l*s),a=[0,0,0];for(var u=0;u<3;u++)(r=o+1/3*-(u-1))<0&&r++,r>1&&r--,i=6*r<1?t+6*(n-t)*r:2*r<1?n:3*r<2?t+(n-t)*(2/3-r)*6:t,a[u]=255*i;return a},a.hsl.hsv=function(e){var t=e[0],n=e[1]/100,r=e[2]/100,a=n,i=Math.max(r,.01);return n*=(r*=2)<=1?r:2-r,a*=i<=1?i:2-i,[t,100*(0===r?2*a/(i+a):2*n/(r+n)),(r+n)/2*100]},a.hsv.rgb=function(e){var t=e[0]/60,n=e[1]/100,r=e[2]/100,a=Math.floor(t)%6,i=t-Math.floor(t),o=255*r*(1-n),s=255*r*(1-n*i),l=255*r*(1-n*(1-i));switch(r*=255,a){case 0:return[r,l,o];case 1:return[s,r,o];case 2:return[o,r,l];case 3:return[o,s,r];case 4:return[l,o,r];case 5:return[r,o,s]}},a.hsv.hsl=function(e){var t,n,r,a=e[0],i=e[1]/100,o=e[2]/100,s=Math.max(o,.01);return r=(2-i)*o,n=i*s,[a,100*(n=(n/=(t=(2-i)*s)<=1?t:2-t)||0),100*(r/=2)]},a.hwb.rgb=function(e){var t,n,r,a,i,o,s,l=e[0]/360,u=e[1]/100,d=e[2]/100,c=u+d;switch(c>1&&(u/=c,d/=c),r=6*l-(t=Math.floor(6*l)),1&t&&(r=1-r),a=u+r*((n=1-d)-u),t){default:case 6:case 0:i=n,o=a,s=u;break;case 1:i=a,o=n,s=u;break;case 2:i=u,o=n,s=a;break;case 3:i=u,o=a,s=n;break;case 4:i=a,o=u,s=n;break;case 5:i=n,o=u,s=a}return[255*i,255*o,255*s]},a.cmyk.rgb=function(e){var t=e[0]/100,n=e[1]/100,r=e[2]/100,a=e[3]/100;return[255*(1-Math.min(1,t*(1-a)+a)),255*(1-Math.min(1,n*(1-a)+a)),255*(1-Math.min(1,r*(1-a)+a))]},a.xyz.rgb=function(e){var t,n,r,a=e[0]/100,i=e[1]/100,o=e[2]/100;return n=-.9689*a+1.8758*i+.0415*o,r=.0557*a+-.204*i+1.057*o,t=(t=3.2406*a+-1.5372*i+-.4986*o)>.0031308?1.055*Math.pow(t,1/2.4)-.055:12.92*t,n=n>.0031308?1.055*Math.pow(n,1/2.4)-.055:12.92*n,r=r>.0031308?1.055*Math.pow(r,1/2.4)-.055:12.92*r,[255*(t=Math.min(Math.max(0,t),1)),255*(n=Math.min(Math.max(0,n),1)),255*(r=Math.min(Math.max(0,r),1))]},a.xyz.lab=function(e){var t=e[0],n=e[1],r=e[2];return n/=100,r/=108.883,t=(t/=95.047)>.008856?Math.pow(t,1/3):7.787*t+16/116,[116*(n=n>.008856?Math.pow(n,1/3):7.787*n+16/116)-16,500*(t-n),200*(n-(r=r>.008856?Math.pow(r,1/3):7.787*r+16/116))]},a.lab.xyz=function(e){var t,n,r,a=e[0];t=e[1]/500+(n=(a+16)/116),r=n-e[2]/200;var i=Math.pow(n,3),o=Math.pow(t,3),s=Math.pow(r,3);return n=i>.008856?i:(n-16/116)/7.787,t=o>.008856?o:(t-16/116)/7.787,r=s>.008856?s:(r-16/116)/7.787,[t*=95.047,n*=100,r*=108.883]},a.lab.lch=function(e){var t,n=e[0],r=e[1],a=e[2];return(t=360*Math.atan2(a,r)/2/Math.PI)<0&&(t+=360),[n,Math.sqrt(r*r+a*a),t]},a.lch.lab=function(e){var t,n=e[0],r=e[1];return t=e[2]/360*2*Math.PI,[n,r*Math.cos(t),r*Math.sin(t)]},a.rgb.ansi16=function(e){var t=e[0],n=e[1],r=e[2],i=1 in arguments?arguments[1]:a.rgb.hsv(e)[2];if(0===(i=Math.round(i/50)))return 30;var o=30+(Math.round(r/255)<<2|Math.round(n/255)<<1|Math.round(t/255));return 2===i&&(o+=60),o},a.hsv.ansi16=function(e){return a.rgb.ansi16(a.hsv.rgb(e),e[2])},a.rgb.ansi256=function(e){var t=e[0],n=e[1],r=e[2];return t===n&&n===r?t<8?16:t>248?231:Math.round((t-8)/247*24)+232:16+36*Math.round(t/255*5)+6*Math.round(n/255*5)+Math.round(r/255*5)},a.ansi16.rgb=function(e){var t=e%10;if(0===t||7===t)return e>50&&(t+=3.5),[t=t/10.5*255,t,t];var n=.5*(1+~~(e>50));return[(1&t)*n*255,(t>>1&1)*n*255,(t>>2&1)*n*255]},a.ansi256.rgb=function(e){if(e>=232){var t=10*(e-232)+8;return[t,t,t]}var n;return e-=16,[Math.floor(e/36)/5*255,Math.floor((n=e%36)/6)/5*255,n%6/5*255]},a.rgb.hex=function(e){var t=(((255&Math.round(e[0]))<<16)+((255&Math.round(e[1]))<<8)+(255&Math.round(e[2]))).toString(16).toUpperCase();return"000000".substring(t.length)+t},a.hex.rgb=function(e){var t=e.toString(16).match(/[a-f0-9]{6}|[a-f0-9]{3}/i);if(!t)return[0,0,0];var n=t[0];3===t[0].length&&(n=n.split("").map((function(e){return e+e})).join(""));var r=parseInt(n,16);return[r>>16&255,r>>8&255,255&r]},a.rgb.hcg=function(e){var t,n=e[0]/255,r=e[1]/255,a=e[2]/255,i=Math.max(Math.max(n,r),a),o=Math.min(Math.min(n,r),a),s=i-o;return t=s<=0?0:i===n?(r-a)/s%6:i===r?2+(a-n)/s:4+(n-r)/s+4,t/=6,[360*(t%=1),100*s,100*(s<1?o/(1-s):0)]},a.hsl.hcg=function(e){var t=e[1]/100,n=e[2]/100,r=1,a=0;return(r=n<.5?2*t*n:2*t*(1-n))<1&&(a=(n-.5*r)/(1-r)),[e[0],100*r,100*a]},a.hsv.hcg=function(e){var t=e[1]/100,n=e[2]/100,r=t*n,a=0;return r<1&&(a=(n-r)/(1-r)),[e[0],100*r,100*a]},a.hcg.rgb=function(e){var t=e[0]/360,n=e[1]/100,r=e[2]/100;if(0===n)return[255*r,255*r,255*r];var a=[0,0,0],i=t%1*6,o=i%1,s=1-o,l=0;switch(Math.floor(i)){case 0:a[0]=1,a[1]=o,a[2]=0;break;case 1:a[0]=s,a[1]=1,a[2]=0;break;case 2:a[0]=0,a[1]=1,a[2]=o;break;case 3:a[0]=0,a[1]=s,a[2]=1;break;case 4:a[0]=o,a[1]=0,a[2]=1;break;default:a[0]=1,a[1]=0,a[2]=s}return l=(1-n)*r,[255*(n*a[0]+l),255*(n*a[1]+l),255*(n*a[2]+l)]},a.hcg.hsv=function(e){var t=e[1]/100,n=t+e[2]/100*(1-t),r=0;return n>0&&(r=t/n),[e[0],100*r,100*n]},a.hcg.hsl=function(e){var t=e[1]/100,n=e[2]/100*(1-t)+.5*t,r=0;return n>0&&n<.5?r=t/(2*n):n>=.5&&n<1&&(r=t/(2*(1-n))),[e[0],100*r,100*n]},a.hcg.hwb=function(e){var t=e[1]/100,n=t+e[2]/100*(1-t);return[e[0],100*(n-t),100*(1-n)]},a.hwb.hcg=function(e){var t=e[1]/100,n=1-e[2]/100,r=n-t,a=0;return r<1&&(a=(n-r)/(1-r)),[e[0],100*r,100*a]},a.apple.rgb=function(e){return[e[0]/65535*255,e[1]/65535*255,e[2]/65535*255]},a.rgb.apple=function(e){return[e[0]/255*65535,e[1]/255*65535,e[2]/255*65535]},a.gray.rgb=function(e){return[e[0]/100*255,e[0]/100*255,e[0]/100*255]},a.gray.hsl=a.gray.hsv=function(e){return[0,0,e[0]]},a.gray.hwb=function(e){return[0,100,e[0]]},a.gray.cmyk=function(e){return[0,0,0,e[0]]},a.gray.lab=function(e){return[e[0],0,0]},a.gray.hex=function(e){var t=255&Math.round(e[0]/100*255),n=((t<<16)+(t<<8)+t).toString(16).toUpperCase();return"000000".substring(n.length)+n},a.rgb.gray=function(e){return[(e[0]+e[1]+e[2])/3/255*100]}}));function i(){for(var e={},t=Object.keys(a),n=t.length,r=0;r1&&(t=Array.prototype.slice.call(arguments)),e(t))};return"conversion"in e&&(t.conversion=e.conversion),t}function h(e){var t=function(t){if(null==t)return t;arguments.length>1&&(t=Array.prototype.slice.call(arguments));var n=e(t);if("object"==typeof n)for(var r=n.length,a=0;a=0&&t<1?j(Math.round(255*t)):"")}function k(e,t){return t<1||e[3]&&e[3]<1?x(e,t):"rgb("+e[0]+", "+e[1]+", "+e[2]+")"}function x(e,t){return void 0===t&&(t=void 0!==e[3]?e[3]:1),"rgba("+e[0]+", "+e[1]+", "+e[2]+", "+t+")"}function L(e,t){return t<1||e[3]&&e[3]<1?D(e,t):"rgb("+Math.round(e[0]/255*100)+"%, "+Math.round(e[1]/255*100)+"%, "+Math.round(e[2]/255*100)+"%)"}function D(e,t){return"rgba("+Math.round(e[0]/255*100)+"%, "+Math.round(e[1]/255*100)+"%, "+Math.round(e[2]/255*100)+"%, "+(t||e[3]||1)+")"}function Y(e,t){return t<1||e[3]&&e[3]<1?S(e,t):"hsl("+e[0]+", "+e[1]+"%, "+e[2]+"%)"}function S(e,t){return void 0===t&&(t=void 0!==e[3]?e[3]:1),"hsla("+e[0]+", "+e[1]+"%, "+e[2]+"%, "+t+")"}function T(e,t){return void 0===t&&(t=void 0!==e[3]?e[3]:1),"hwb("+e[0]+", "+e[1]+"%, "+e[2]+"%"+(void 0!==t&&1!==t?", "+t:"")+")"}function C(e){return P[e.slice(0,3)]}function O(e,t,n){return Math.min(Math.max(t,e),n)}function j(e){var t=e.toString(16).toUpperCase();return t.length<2?"0"+t:t}var P={};for(var A in p)P[p[A]]=A;var H=function(e){return e instanceof H?e:this instanceof H?(this.valid=!1,this.values={rgb:[0,0,0],hsl:[0,0,0],hsv:[0,0,0],hwb:[0,0,0],cmyk:[0,0,0,0],alpha:1},void("string"==typeof e?(t=m.getRgba(e))?this.setValues("rgb",t):(t=m.getHsla(e))?this.setValues("hsl",t):(t=m.getHwb(e))&&this.setValues("hwb",t):"object"==typeof e&&(void 0!==(t=e).r||void 0!==t.red?this.setValues("rgb",t):void 0!==t.l||void 0!==t.lightness?this.setValues("hsl",t):void 0!==t.v||void 0!==t.value?this.setValues("hsv",t):void 0!==t.w||void 0!==t.whiteness?this.setValues("hwb",t):void 0===t.c&&void 0===t.cyan||this.setValues("cmyk",t)))):new H(e);var t};H.prototype={isValid:function(){return this.valid},rgb:function(){return this.setSpace("rgb",arguments)},hsl:function(){return this.setSpace("hsl",arguments)},hsv:function(){return this.setSpace("hsv",arguments)},hwb:function(){return this.setSpace("hwb",arguments)},cmyk:function(){return this.setSpace("cmyk",arguments)},rgbArray:function(){return this.values.rgb},hslArray:function(){return this.values.hsl},hsvArray:function(){return this.values.hsv},hwbArray:function(){var e=this.values;return 1!==e.alpha?e.hwb.concat([e.alpha]):e.hwb},cmykArray:function(){return this.values.cmyk},rgbaArray:function(){var e=this.values;return e.rgb.concat([e.alpha])},hslaArray:function(){var e=this.values;return e.hsl.concat([e.alpha])},alpha:function(e){return void 0===e?this.values.alpha:(this.setValues("alpha",e),this)},red:function(e){return this.setChannel("rgb",0,e)},green:function(e){return this.setChannel("rgb",1,e)},blue:function(e){return this.setChannel("rgb",2,e)},hue:function(e){return e&&(e=(e%=360)<0?360+e:e),this.setChannel("hsl",0,e)},saturation:function(e){return this.setChannel("hsl",1,e)},lightness:function(e){return this.setChannel("hsl",2,e)},saturationv:function(e){return this.setChannel("hsv",1,e)},whiteness:function(e){return this.setChannel("hwb",1,e)},blackness:function(e){return this.setChannel("hwb",2,e)},value:function(e){return this.setChannel("hsv",2,e)},cyan:function(e){return this.setChannel("cmyk",0,e)},magenta:function(e){return this.setChannel("cmyk",1,e)},yellow:function(e){return this.setChannel("cmyk",2,e)},black:function(e){return this.setChannel("cmyk",3,e)},hexString:function(){return m.hexString(this.values.rgb)},rgbString:function(){return m.rgbString(this.values.rgb,this.values.alpha)},rgbaString:function(){return m.rgbaString(this.values.rgb,this.values.alpha)},percentString:function(){return m.percentString(this.values.rgb,this.values.alpha)},hslString:function(){return m.hslString(this.values.hsl,this.values.alpha)},hslaString:function(){return m.hslaString(this.values.hsl,this.values.alpha)},hwbString:function(){return m.hwbString(this.values.hwb,this.values.alpha)},keyword:function(){return m.keyword(this.values.rgb,this.values.alpha)},rgbNumber:function(){var e=this.values.rgb;return e[0]<<16|e[1]<<8|e[2]},luminosity:function(){for(var e=this.values.rgb,t=[],n=0;nn?(t+.05)/(n+.05):(n+.05)/(t+.05)},level:function(e){var t=this.contrast(e);return t>=7.1?"AAA":t>=4.5?"AA":""},dark:function(){var e=this.values.rgb;return(299*e[0]+587*e[1]+114*e[2])/1e3<128},light:function(){return!this.dark()},negate:function(){for(var e=[],t=0;t<3;t++)e[t]=255-this.values.rgb[t];return this.setValues("rgb",e),this},lighten:function(e){var t=this.values.hsl;return t[2]+=t[2]*e,this.setValues("hsl",t),this},darken:function(e){var t=this.values.hsl;return t[2]-=t[2]*e,this.setValues("hsl",t),this},saturate:function(e){var t=this.values.hsl;return t[1]+=t[1]*e,this.setValues("hsl",t),this},desaturate:function(e){var t=this.values.hsl;return t[1]-=t[1]*e,this.setValues("hsl",t),this},whiten:function(e){var t=this.values.hwb;return t[1]+=t[1]*e,this.setValues("hwb",t),this},blacken:function(e){var t=this.values.hwb;return t[2]+=t[2]*e,this.setValues("hwb",t),this},greyscale:function(){var e=this.values.rgb,t=.3*e[0]+.59*e[1]+.11*e[2];return this.setValues("rgb",[t,t,t]),this},clearer:function(e){var t=this.values.alpha;return this.setValues("alpha",t-t*e),this},opaquer:function(e){var t=this.values.alpha;return this.setValues("alpha",t+t*e),this},rotate:function(e){var t=this.values.hsl,n=(t[0]+e)%360;return t[0]=n<0?360+n:n,this.setValues("hsl",t),this},mix:function(e,t){var n=this,r=e,a=void 0===t?.5:t,i=2*a-1,o=n.alpha()-r.alpha(),s=((i*o==-1?i:(i+o)/(1+i*o))+1)/2,l=1-s;return this.rgb(s*n.red()+l*r.red(),s*n.green()+l*r.green(),s*n.blue()+l*r.blue()).alpha(n.alpha()*a+r.alpha()*(1-a))},toJSON:function(){return this.rgb()},clone:function(){var e,t,n=new H,r=this.values,a=n.values;for(var i in r)r.hasOwnProperty(i)&&(e=r[i],"[object Array]"===(t={}.toString.call(e))?a[i]=e.slice(0):"[object Number]"===t?a[i]=e:console.error("unexpected color value:",e));return n}},H.prototype.spaces={rgb:["red","green","blue"],hsl:["hue","saturation","lightness"],hsv:["hue","saturation","value"],hwb:["hue","whiteness","blackness"],cmyk:["cyan","magenta","yellow","black"]},H.prototype.maxes={rgb:[255,255,255],hsl:[360,100,100],hsv:[360,100,100],hwb:[360,100,100],cmyk:[100,100,100,100]},H.prototype.getValues=function(e){for(var t=this.values,n={},r=0;r=0;a--)t.call(n,e[a],a);else for(a=0;a=1?e:-(Math.sqrt(1-e*e)-1)},easeOutCirc:function(e){return Math.sqrt(1-(e-=1)*e)},easeInOutCirc:function(e){return(e/=.5)<1?-.5*(Math.sqrt(1-e*e)-1):.5*(Math.sqrt(1-(e-=2)*e)+1)},easeInElastic:function(e){var t=1.70158,n=0,r=1;return 0===e?0:1===e?1:(n||(n=.3),r<1?(r=1,t=n/4):t=n/(2*Math.PI)*Math.asin(1/r),-r*Math.pow(2,10*(e-=1))*Math.sin((e-t)*(2*Math.PI)/n))},easeOutElastic:function(e){var t=1.70158,n=0,r=1;return 0===e?0:1===e?1:(n||(n=.3),r<1?(r=1,t=n/4):t=n/(2*Math.PI)*Math.asin(1/r),r*Math.pow(2,-10*e)*Math.sin((e-t)*(2*Math.PI)/n)+1)},easeInOutElastic:function(e){var t=1.70158,n=0,r=1;return 0===e?0:2==(e/=.5)?1:(n||(n=.45),r<1?(r=1,t=n/4):t=n/(2*Math.PI)*Math.asin(1/r),e<1?r*Math.pow(2,10*(e-=1))*Math.sin((e-t)*(2*Math.PI)/n)*-.5:r*Math.pow(2,-10*(e-=1))*Math.sin((e-t)*(2*Math.PI)/n)*.5+1)},easeInBack:function(e){var t=1.70158;return e*e*((t+1)*e-t)},easeOutBack:function(e){var t=1.70158;return(e-=1)*e*((t+1)*e+t)+1},easeInOutBack:function(e){var t=1.70158;return(e/=.5)<1?e*e*((1+(t*=1.525))*e-t)*.5:.5*((e-=2)*e*((1+(t*=1.525))*e+t)+2)},easeInBounce:function(e){return 1-W.easeOutBounce(1-e)},easeOutBounce:function(e){return e<1/2.75?7.5625*e*e:e<2/2.75?7.5625*(e-=1.5/2.75)*e+.75:e<2.5/2.75?7.5625*(e-=2.25/2.75)*e+.9375:7.5625*(e-=2.625/2.75)*e+.984375},easeInOutBounce:function(e){return e<.5?.5*W.easeInBounce(2*e):.5*W.easeOutBounce(2*e-1)+.5}},z={effects:W};R.easingEffects=W;var V=Math.PI,$=V/180,B=2*V,U=V/2,G=V/4,J=2*V/3,q={clear:function(e){e.ctx.clearRect(0,0,e.width,e.height)},roundedRect:function(e,t,n,r,a,i){if(i){var o=Math.min(i,a/2,r/2),s=t+o,l=n+o,u=t+r-o,d=n+a-o;e.moveTo(t,l),st.left-n&&e.xt.top-n&&e.y0&&e.requestAnimationFrame()},advance:function(){for(var e,t,n,r,a=this.animations,i=0;i=n?(oe.callback(e.onAnimationComplete,[e],t),t.animating=!1,a.splice(i,1)):++i}},ve=oe.options.resolve,ye=["push","pop","shift","splice","unshift"];function be(e,t){e._chartjs?e._chartjs.listeners.push(t):(Object.defineProperty(e,"_chartjs",{configurable:!0,enumerable:!1,value:{listeners:[t]}}),ye.forEach((function(t){var n="onData"+t.charAt(0).toUpperCase()+t.slice(1),r=e[t];Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:function(){var t=Array.prototype.slice.call(arguments),a=r.apply(this,t);return oe.each(e._chartjs.listeners,(function(e){"function"==typeof e[n]&&e[n].apply(e,t)})),a}})})))}function Me(e,t){var n=e._chartjs;if(n){var r=n.listeners,a=r.indexOf(t);-1!==a&&r.splice(a,1),r.length>0||(ye.forEach((function(t){delete e[t]})),delete e._chartjs)}}var we=function(e,t){this.initialize(e,t)};oe.extend(we.prototype,{datasetElementType:null,dataElementType:null,_datasetElementOptions:["backgroundColor","borderCapStyle","borderColor","borderDash","borderDashOffset","borderJoinStyle","borderWidth"],_dataElementOptions:["backgroundColor","borderColor","borderWidth","pointStyle"],initialize:function(e,t){var n=this;n.chart=e,n.index=t,n.linkScales(),n.addElements(),n._type=n.getMeta().type},updateIndex:function(e){this.index=e},linkScales:function(){var e=this,t=e.getMeta(),n=e.chart,r=n.scales,a=e.getDataset(),i=n.options.scales;null!==t.xAxisID&&t.xAxisID in r&&!a.xAxisID||(t.xAxisID=a.xAxisID||i.xAxes[0].id),null!==t.yAxisID&&t.yAxisID in r&&!a.yAxisID||(t.yAxisID=a.yAxisID||i.yAxes[0].id)},getDataset:function(){return this.chart.data.datasets[this.index]},getMeta:function(){return this.chart.getDatasetMeta(this.index)},getScaleForId:function(e){return this.chart.scales[e]},_getValueScaleId:function(){return this.getMeta().yAxisID},_getIndexScaleId:function(){return this.getMeta().xAxisID},_getValueScale:function(){return this.getScaleForId(this._getValueScaleId())},_getIndexScale:function(){return this.getScaleForId(this._getIndexScaleId())},reset:function(){this._update(!0)},destroy:function(){this._data&&Me(this._data,this)},createMetaDataset:function(){var e=this,t=e.datasetElementType;return t&&new t({_chart:e.chart,_datasetIndex:e.index})},createMetaData:function(e){var t=this,n=t.dataElementType;return n&&new n({_chart:t.chart,_datasetIndex:t.index,_index:e})},addElements:function(){var e,t,n=this,r=n.getMeta(),a=n.getDataset().data||[],i=r.data;for(e=0,t=a.length;er&&e.insertElements(r,a-r)},insertElements:function(e,t){for(var n=0;na?(i=a/t.innerRadius,e.arc(o,s,t.innerRadius-a,r+i,n-i,!0)):e.arc(o,s,a,r+Math.PI/2,n-Math.PI/2),e.closePath(),e.clip()}function De(e,t,n,r){var a,i=n.endAngle;for(r&&(n.endAngle=n.startAngle+xe,Le(e,n),n.endAngle=i,n.endAngle===n.startAngle&&n.fullCircles&&(n.endAngle+=xe,n.fullCircles--)),e.beginPath(),e.arc(n.x,n.y,n.innerRadius,n.startAngle+xe,n.startAngle,!0),a=0;as;)a-=xe;for(;a=o&&a<=s,u=i>=n.innerRadius&&i<=n.outerRadius;return l&&u}return!1},getCenterPoint:function(){var e=this._view,t=(e.startAngle+e.endAngle)/2,n=(e.innerRadius+e.outerRadius)/2;return{x:e.x+Math.cos(t)*n,y:e.y+Math.sin(t)*n}},getArea:function(){var e=this._view;return Math.PI*((e.endAngle-e.startAngle)/(2*Math.PI))*(Math.pow(e.outerRadius,2)-Math.pow(e.innerRadius,2))},tooltipPosition:function(){var e=this._view,t=e.startAngle+(e.endAngle-e.startAngle)/2,n=(e.outerRadius-e.innerRadius)/2+e.innerRadius;return{x:e.x+Math.cos(t)*n,y:e.y+Math.sin(t)*n}},draw:function(){var e,t=this._chart.ctx,n=this._view,r="inner"===n.borderAlign?.33:0,a={x:n.x,y:n.y,innerRadius:n.innerRadius,outerRadius:Math.max(n.outerRadius-r,0),pixelMargin:r,startAngle:n.startAngle,endAngle:n.endAngle,fullCircles:Math.floor(n.circumference/xe)};if(t.save(),t.fillStyle=n.backgroundColor,t.strokeStyle=n.borderColor,a.fullCircles){for(a.endAngle=a.startAngle+xe,t.beginPath(),t.arc(a.x,a.y,a.outerRadius,a.startAngle,a.endAngle),t.arc(a.x,a.y,a.innerRadius,a.endAngle,a.startAngle,!0),t.closePath(),e=0;ee.x&&(t=Re(t,"left","right")):e.basen?n:r,r:l.right||a<0?0:a>t?t:a,b:l.bottom||i<0?0:i>n?n:i,l:l.left||o<0?0:o>t?t:o}}function Ve(e){var t=Ie(e),n=t.right-t.left,r=t.bottom-t.top,a=ze(e,n/2,r/2);return{outer:{x:t.left,y:t.top,w:n,h:r},inner:{x:t.left+a.l,y:t.top+a.t,w:n-a.l-a.r,h:r-a.t-a.b}}}function $e(e,t,n){var r=null===t,a=null===n,i=!(!e||r&&a)&&Ie(e);return i&&(r||t>=i.left&&t<=i.right)&&(a||n>=i.top&&n<=i.bottom)}X._set("global",{elements:{rectangle:{backgroundColor:Ee,borderColor:Ee,borderSkipped:"bottom",borderWidth:0}}});var Be=pe.extend({_type:"rectangle",draw:function(){var e=this._chart.ctx,t=this._view,n=Ve(t),r=n.outer,a=n.inner;e.fillStyle=t.backgroundColor,e.fillRect(r.x,r.y,r.w,r.h),r.w===a.w&&r.h===a.h||(e.save(),e.beginPath(),e.rect(r.x,r.y,r.w,r.h),e.clip(),e.fillStyle=t.borderColor,e.rect(a.x,a.y,a.w,a.h),e.fill("evenodd"),e.restore())},height:function(){var e=this._view;return e.base-e.y},inRange:function(e,t){return $e(this._view,e,t)},inLabelRange:function(e,t){var n=this._view;return Ne(n)?$e(n,e,null):$e(n,null,t)},inXRange:function(e){return $e(this._view,e,null)},inYRange:function(e){return $e(this._view,null,e)},getCenterPoint:function(){var e,t,n=this._view;return Ne(n)?(e=n.x,t=(n.y+n.base)/2):(e=(n.x+n.base)/2,t=n.y),{x:e,y:t}},getArea:function(){var e=this._view;return Ne(e)?e.width*Math.abs(e.y-e.base):e.height*Math.abs(e.x-e.base)},tooltipPosition:function(){var e=this._view;return{x:e.x,y:e.y}}}),Ue={},Ge=Se,Je=Oe,qe=Fe,Ze=Be;Ue.Arc=Ge,Ue.Line=Je,Ue.Point=qe,Ue.Rectangle=Ze;var Ke=oe._deprecated,Xe=oe.valueOrDefault;function Qe(e,t){var n,r,a,i,o=e._length;for(a=1,i=t.length;a0?Math.min(o,Math.abs(r-n)):o,n=r;return o}function et(e,t,n){var r,a,i=n.barThickness,o=t.stackCount,s=t.pixels[e],l=oe.isNullOrUndef(i)?Qe(t.scale,t.pixels):-1;return oe.isNullOrUndef(i)?(r=l*n.categoryPercentage,a=n.barPercentage):(r=i*o,a=1),{chunk:r/o,ratio:a,start:s-r/2}}function tt(e,t,n){var r,a=t.pixels,i=a[e],o=e>0?a[e-1]:null,s=e=0&&_.min>=0?_.min:_.max,M=void 0===_.start?_.end:_.max>=0&&_.min>=0?_.max-_.min:_.min-_.max,w=m.length;if(v||void 0===v&&void 0!==y)for(r=0;r=0&&u.max>=0?u.max:u.min,(_.min<0&&i<0||_.max>=0&&i>0)&&(b+=i));return o=h.getPixelForValue(b),l=(s=h.getPixelForValue(b+M))-o,void 0!==g&&Math.abs(l)=0&&!f||M<0&&f?o-g:o+g),{size:l,base:o,head:s,center:s+l/2}},calculateBarIndexPixels:function(e,t,n,r){var a=this,i="flex"===r.barThickness?tt(t,n,r):et(t,n,r),o=a.getStackIndex(e,a.getMeta().stack),s=i.start+i.chunk*o+i.chunk/2,l=Math.min(Xe(r.maxBarThickness,1/0),i.chunk*i.ratio);return{base:s-l/2,head:s+l/2,center:s,size:l}},draw:function(){var e=this,t=e.chart,n=e._getValueScale(),r=e.getMeta().data,a=e.getDataset(),i=r.length,o=0;for(oe.canvas.clipArea(t.ctx,t.chartArea);o=st?-lt:v<-st?lt:0)+_,b=Math.cos(v),M=Math.sin(v),w=Math.cos(y),k=Math.sin(y),x=v<=0&&y>=0||y>=lt,L=v<=ut&&y>=ut||y>=lt+ut,D=v<=-ut&&y>=-ut||y>=st+ut,Y=v===-st||y>=st?-1:Math.min(b,b*m,w,w*m),S=D?-1:Math.min(M,M*m,k,k*m),T=x?1:Math.max(b,b*m,w,w*m),C=L?1:Math.max(M,M*m,k,k*m);u=(T-Y)/2,d=(C-S)/2,c=-(T+Y)/2,h=-(C+S)/2}for(r=0,a=p.length;r0&&!isNaN(e)?lt*(Math.abs(e)/t):0},getMaxBorderWidth:function(e){var t,n,r,a,i,o,s,l,u=this,d=0,c=u.chart;if(!e)for(t=0,n=c.data.datasets.length;t(d=s>d?s:d)?l:d);return d},setHoverStyle:function(e){var t=e._model,n=e._options,r=oe.getHoverColor;e.$previousStyle={backgroundColor:t.backgroundColor,borderColor:t.borderColor,borderWidth:t.borderWidth},t.backgroundColor=ot(n.hoverBackgroundColor,r(n.backgroundColor)),t.borderColor=ot(n.hoverBorderColor,r(n.borderColor)),t.borderWidth=ot(n.hoverBorderWidth,n.borderWidth)},_getRingWeightOffset:function(e){for(var t=0,n=0;n0&&pt(u[e-1]._model,l)&&(n.controlPointPreviousX=d(n.controlPointPreviousX,l.left,l.right),n.controlPointPreviousY=d(n.controlPointPreviousY,l.top,l.bottom)),e0&&(i=e.getDatasetMeta(i[0]._datasetIndex).data),i},"x-axis":function(e,t){return Ct(e,t,{intersect:!1})},point:function(e,t){return Yt(e,Lt(t,e))},nearest:function(e,t,n){var r=Lt(t,e);n.axis=n.axis||"xy";var a=Tt(n.axis);return St(e,r,n.intersect,a)},x:function(e,t,n){var r=Lt(t,e),a=[],i=!1;return Dt(e,(function(e){e.inXRange(r.x)&&a.push(e),e.inRange(r.x,r.y)&&(i=!0)})),n.intersect&&!i&&(a=[]),a},y:function(e,t,n){var r=Lt(t,e),a=[],i=!1;return Dt(e,(function(e){e.inYRange(r.y)&&a.push(e),e.inRange(r.x,r.y)&&(i=!0)})),n.intersect&&!i&&(a=[]),a}}},jt=oe.extend;function Pt(e,t){return oe.where(e,(function(e){return e.pos===t}))}function At(e,t){return e.sort((function(e,n){var r=t?n:e,a=t?e:n;return r.weight===a.weight?r.index-a.index:r.weight-a.weight}))}function Ht(e){var t,n,r,a=[];for(t=0,n=(e||[]).length;t div {\r\n\tposition: absolute;\r\n\twidth: 1000000px;\r\n\theight: 1000000px;\r\n\tleft: 0;\r\n\ttop: 0;\r\n}\r\n\r\n.chartjs-size-monitor-shrink > div {\r\n\tposition: absolute;\r\n\twidth: 200%;\r\n\theight: 200%;\r\n\tleft: 0;\r\n\ttop: 0;\r\n}\r\n",Gt=n(Object.freeze({__proto__:null,default:Ut})),Jt="$chartjs",qt="chartjs-",Zt=qt+"size-monitor",Kt=qt+"render-monitor",Xt=qt+"render-animation",Qt=["animationstart","webkitAnimationStart"],en={touchstart:"mousedown",touchmove:"mousemove",touchend:"mouseup",pointerenter:"mouseenter",pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointerleave:"mouseout",pointerout:"mouseout"};function tn(e,t){var n=oe.getStyle(e,t),r=n&&n.match(/^(\d+)(\.\d+)?px$/);return r?Number(r[1]):void 0}function nn(e,t){var n=e.style,r=e.getAttribute("height"),a=e.getAttribute("width");if(e[Jt]={initial:{height:r,width:a,style:{display:n.display,height:n.height,width:n.width}}},n.display=n.display||"block",null===a||""===a){var i=tn(e,"width");void 0!==i&&(e.width=i)}if(null===r||""===r)if(""===e.style.height)e.height=e.width/(t.options.aspectRatio||2);else{var o=tn(e,"height");void 0!==i&&(e.height=o)}return e}var rn=!!function(){var e=!1;try{var t=Object.defineProperty({},"passive",{get:function(){e=!0}});window.addEventListener("e",null,t)}catch(e){}return e}()&&{passive:!0};function an(e,t,n){e.addEventListener(t,n,rn)}function on(e,t,n){e.removeEventListener(t,n,rn)}function sn(e,t,n,r,a){return{type:e,chart:t,native:a||null,x:void 0!==n?n:null,y:void 0!==r?r:null}}function ln(e,t){var n=en[e.type]||e.type,r=oe.getRelativePosition(e,t);return sn(n,t,r.x,r.y,e)}function un(e,t){var n=!1,r=[];return function(){r=Array.prototype.slice.call(arguments),t=t||this,n||(n=!0,oe.requestAnimFrame.call(window,(function(){n=!1,e.apply(t,r)})))}}function dn(e){var t=document.createElement("div");return t.className=e||"",t}function cn(e){var t=1e6,n=dn(Zt),r=dn(Zt+"-expand"),a=dn(Zt+"-shrink");r.appendChild(dn()),a.appendChild(dn()),n.appendChild(r),n.appendChild(a),n._reset=function(){r.scrollLeft=t,r.scrollTop=t,a.scrollLeft=t,a.scrollTop=t};var i=function(){n._reset(),e()};return an(r,"scroll",i.bind(r,"expand")),an(a,"scroll",i.bind(a,"shrink")),n}function hn(e,t){var n=e[Jt]||(e[Jt]={}),r=n.renderProxy=function(e){e.animationName===Xt&&t()};oe.each(Qt,(function(t){an(e,t,r)})),n.reflow=!!e.offsetParent,e.classList.add(Kt)}function fn(e){var t=e[Jt]||{},n=t.renderProxy;n&&(oe.each(Qt,(function(t){on(e,t,n)})),delete t.renderProxy),e.classList.remove(Kt)}function pn(e,t,n){var r=e[Jt]||(e[Jt]={}),a=r.resizer=cn(un((function(){if(r.resizer){var a=n.options.maintainAspectRatio&&e.parentNode,i=a?a.clientWidth:0;t(sn("resize",n)),a&&a.clientWidth0){var i=e[0];i.label?n=i.label:i.xLabel?n=i.xLabel:a>0&&i.index-1?e.split("\n"):e}function Yn(e){var t=e._xScale,n=e._yScale||e._scale,r=e._index,a=e._datasetIndex,i=e._chart.getDatasetMeta(a).controller,o=i._getIndexScale(),s=i._getValueScale();return{xLabel:t?t.getLabelForIndex(r,a):"",yLabel:n?n.getLabelForIndex(r,a):"",label:o?""+o.getLabelForIndex(r,a):"",value:s?""+s.getLabelForIndex(r,a):"",index:r,datasetIndex:a,x:e._model.x,y:e._model.y}}function Sn(e){var t=X.global;return{xPadding:e.xPadding,yPadding:e.yPadding,xAlign:e.xAlign,yAlign:e.yAlign,rtl:e.rtl,textDirection:e.textDirection,bodyFontColor:e.bodyFontColor,_bodyFontFamily:wn(e.bodyFontFamily,t.defaultFontFamily),_bodyFontStyle:wn(e.bodyFontStyle,t.defaultFontStyle),_bodyAlign:e.bodyAlign,bodyFontSize:wn(e.bodyFontSize,t.defaultFontSize),bodySpacing:e.bodySpacing,titleFontColor:e.titleFontColor,_titleFontFamily:wn(e.titleFontFamily,t.defaultFontFamily),_titleFontStyle:wn(e.titleFontStyle,t.defaultFontStyle),titleFontSize:wn(e.titleFontSize,t.defaultFontSize),_titleAlign:e.titleAlign,titleSpacing:e.titleSpacing,titleMarginBottom:e.titleMarginBottom,footerFontColor:e.footerFontColor,_footerFontFamily:wn(e.footerFontFamily,t.defaultFontFamily),_footerFontStyle:wn(e.footerFontStyle,t.defaultFontStyle),footerFontSize:wn(e.footerFontSize,t.defaultFontSize),_footerAlign:e.footerAlign,footerSpacing:e.footerSpacing,footerMarginTop:e.footerMarginTop,caretSize:e.caretSize,cornerRadius:e.cornerRadius,backgroundColor:e.backgroundColor,opacity:0,legendColorBackground:e.multiKeyBackground,displayColors:e.displayColors,borderColor:e.borderColor,borderWidth:e.borderWidth}}function Tn(e,t){var n=e._chart.ctx,r=2*t.yPadding,a=0,i=t.body,o=i.reduce((function(e,t){return e+t.before.length+t.lines.length+t.after.length}),0);o+=t.beforeBody.length+t.afterBody.length;var s=t.title.length,l=t.footer.length,u=t.titleFontSize,d=t.bodyFontSize,c=t.footerFontSize;r+=s*u,r+=s?(s-1)*t.titleSpacing:0,r+=s?t.titleMarginBottom:0,r+=o*d,r+=o?(o-1)*t.bodySpacing:0,r+=l?t.footerMarginTop:0,r+=l*c,r+=l?(l-1)*t.footerSpacing:0;var h=0,f=function(e){a=Math.max(a,n.measureText(e).width+h)};return n.font=oe.fontString(u,t._titleFontStyle,t._titleFontFamily),oe.each(t.title,f),n.font=oe.fontString(d,t._bodyFontStyle,t._bodyFontFamily),oe.each(t.beforeBody.concat(t.afterBody),f),h=t.displayColors?d+2:0,oe.each(i,(function(e){oe.each(e.before,f),oe.each(e.lines,f),oe.each(e.after,f)})),h=0,n.font=oe.fontString(c,t._footerFontStyle,t._footerFontFamily),oe.each(t.footer,f),{width:a+=2*t.xPadding,height:r}}function Cn(e,t){var n,r,a,i,o,s=e._model,l=e._chart,u=e._chart.chartArea,d="center",c="center";s.yl.height-t.height&&(c="bottom");var h=(u.left+u.right)/2,f=(u.top+u.bottom)/2;"center"===c?(n=function(e){return e<=h},r=function(e){return e>h}):(n=function(e){return e<=t.width/2},r=function(e){return e>=l.width-t.width/2}),a=function(e){return e+t.width+s.caretSize+s.caretPadding>l.width},i=function(e){return e-t.width-s.caretSize-s.caretPadding<0},o=function(e){return e<=f?"top":"bottom"},n(s.x)?(d="left",a(s.x)&&(d="center",c=o(s.y))):r(s.x)&&(d="right",i(s.x)&&(d="center",c=o(s.y)));var p=e._options;return{xAlign:p.xAlign?p.xAlign:d,yAlign:p.yAlign?p.yAlign:c}}function On(e,t,n,r){var a=e.x,i=e.y,o=e.caretSize,s=e.caretPadding,l=e.cornerRadius,u=n.xAlign,d=n.yAlign,c=o+s,h=l+s;return"right"===u?a-=t.width:"center"===u&&((a-=t.width/2)+t.width>r.width&&(a=r.width-t.width),a<0&&(a=0)),"top"===d?i+=c:i-="bottom"===d?t.height+c:t.height/2,"center"===d?"left"===u?a+=c:"right"===u&&(a-=c):"left"===u?a-=h:"right"===u&&(a+=h),{x:a,y:i}}function jn(e,t){return"center"===t?e.x+e.width/2:"right"===t?e.x+e.width-e.xPadding:e.x+e.xPadding}function Pn(e){return Ln([],Dn(e))}var An=pe.extend({initialize:function(){this._model=Sn(this._options),this._lastActive=[]},getTitle:function(){var e=this,t=e._options.callbacks,n=t.beforeTitle.apply(e,arguments),r=t.title.apply(e,arguments),a=t.afterTitle.apply(e,arguments),i=[];return i=Ln(i,Dn(n)),i=Ln(i,Dn(r)),i=Ln(i,Dn(a))},getBeforeBody:function(){return Pn(this._options.callbacks.beforeBody.apply(this,arguments))},getBody:function(e,t){var n=this,r=n._options.callbacks,a=[];return oe.each(e,(function(e){var i={before:[],lines:[],after:[]};Ln(i.before,Dn(r.beforeLabel.call(n,e,t))),Ln(i.lines,r.label.call(n,e,t)),Ln(i.after,Dn(r.afterLabel.call(n,e,t))),a.push(i)})),a},getAfterBody:function(){return Pn(this._options.callbacks.afterBody.apply(this,arguments))},getFooter:function(){var e=this,t=e._options.callbacks,n=t.beforeFooter.apply(e,arguments),r=t.footer.apply(e,arguments),a=t.afterFooter.apply(e,arguments),i=[];return i=Ln(i,Dn(n)),i=Ln(i,Dn(r)),i=Ln(i,Dn(a))},update:function(e){var t,n,r=this,a=r._options,i=r._model,o=r._model=Sn(a),s=r._active,l=r._data,u={xAlign:i.xAlign,yAlign:i.yAlign},d={x:i.x,y:i.y},c={width:i.width,height:i.height},h={x:i.caretX,y:i.caretY};if(s.length){o.opacity=1;var f=[],p=[];h=xn[a.position].call(r,s,r._eventPosition);var m=[];for(t=0,n=s.length;t0&&n.stroke()},draw:function(){var e=this._chart.ctx,t=this._view;if(0!==t.opacity){var n={width:t.width,height:t.height},r={x:t.x,y:t.y},a=Math.abs(t.opacity<.001)?0:t.opacity,i=t.title.length||t.beforeBody.length||t.body.length||t.afterBody.length||t.footer.length;this._options.enabled&&i&&(e.save(),e.globalAlpha=a,this.drawBackground(r,t,e,n),r.y+=t.yPadding,oe.rtl.overrideTextDirection(e,t.textDirection),this.drawTitle(r,t,e),this.drawBody(r,t,e),this.drawFooter(r,t,e),oe.rtl.restoreTextDirection(e,t.textDirection),e.restore())}},handleEvent:function(e){var t=this,n=t._options,r=!1;return t._lastActive=t._lastActive||[],"mouseout"===e.type?t._active=[]:(t._active=t._chart.getElementsAtEventForMode(e,n.mode,n),n.reverse&&t._active.reverse()),(r=!oe.arrayEquals(t._active,t._lastActive))&&(t._lastActive=t._active,(n.enabled||n.custom)&&(t._eventPosition={x:e.x,y:e.y},t.update(!0),t.pivot())),r}}),Hn=xn,Fn=An;Fn.positioners=Hn;var En=oe.valueOrDefault;function Nn(){return oe.merge(Object.create(null),[].slice.call(arguments),{merger:function(e,t,n,r){if("xAxes"===e||"yAxes"===e){var a,i,o,s=n[e].length;for(t[e]||(t[e]=[]),a=0;a=t[e].length&&t[e].push({}),!t[e][a].type||o.type&&o.type!==t[e][a].type?oe.merge(t[e][a],[Mn.getScaleDefaults(i),o]):oe.merge(t[e][a],o)}else oe._merger(e,t,n,r)}})}function In(){return oe.merge(Object.create(null),[].slice.call(arguments),{merger:function(e,t,n,r){var a=t[e]||Object.create(null),i=n[e];"scales"===e?t[e]=Nn(a,i):"scale"===e?t[e]=oe.merge(a,[Mn.getScaleDefaults(i.type),i]):oe._merger(e,t,n,r)}})}function Rn(e){var t=(e=e||Object.create(null)).data=e.data||{};return t.datasets=t.datasets||[],t.labels=t.labels||[],e.options=In(X.global,X[e.type],e.options||{}),e}function Wn(e){var t=e.options;oe.each(e.scales,(function(t){$t.removeBox(e,t)})),t=In(X.global,X[e.config.type],t),e.options=e.config.options=t,e.ensureScalesHaveIDs(),e.buildOrUpdateScales(),e.tooltip._options=t.tooltips,e.tooltip.initialize()}function zn(e,t,n){var r,a=function(e){return e.id===r};do{r=t+n++}while(oe.findIndex(e,a)>=0);return r}function Vn(e){return"top"===e||"bottom"===e}function $n(e,t){return function(n,r){return n[e]===r[e]?n[t]-r[t]:n[e]-r[e]}}X._set("global",{elements:{},events:["mousemove","mouseout","click","touchstart","touchmove"],hover:{onHover:null,mode:"nearest",intersect:!0,animationDuration:400},onClick:null,maintainAspectRatio:!0,responsive:!0,responsiveAnimationDuration:0});var Bn=function(e,t){return this.construct(e,t),this};oe.extend(Bn.prototype,{construct:function(e,t){var n=this;t=Rn(t);var r=yn.acquireContext(e,t),a=r&&r.canvas,i=a&&a.height,o=a&&a.width;n.id=oe.uid(),n.ctx=r,n.canvas=a,n.config=t,n.width=o,n.height=i,n.aspectRatio=i?o/i:null,n.options=t.options,n._bufferedRender=!1,n._layers=[],n.chart=n,n.controller=n,Bn.instances[n.id]=n,Object.defineProperty(n,"data",{get:function(){return n.config.data},set:function(e){n.config.data=e}}),r&&a?(n.initialize(),n.update()):console.error("Failed to create chart: can't acquire context from the given item")},initialize:function(){var e=this;return bn.notify(e,"beforeInit"),oe.retinaScale(e,e.options.devicePixelRatio),e.bindEvents(),e.options.responsive&&e.resize(!0),e.initToolTip(),bn.notify(e,"afterInit"),e},clear:function(){return oe.canvas.clear(this),this},stop:function(){return ge.cancelAnimation(this),this},resize:function(e){var t=this,n=t.options,r=t.canvas,a=n.maintainAspectRatio&&t.aspectRatio||null,i=Math.max(0,Math.floor(oe.getMaximumWidth(r))),o=Math.max(0,Math.floor(a?i/a:oe.getMaximumHeight(r)));if((t.width!==i||t.height!==o)&&(r.width=t.width=i,r.height=t.height=o,r.style.width=i+"px",r.style.height=o+"px",oe.retinaScale(t,n.devicePixelRatio),!e)){var s={width:i,height:o};bn.notify(t,"resize",[s]),n.onResize&&n.onResize(t,s),t.stop(),t.update({duration:n.responsiveAnimationDuration})}},ensureScalesHaveIDs:function(){var e=this.options,t=e.scales||{},n=e.scale;oe.each(t.xAxes,(function(e,n){e.id||(e.id=zn(t.xAxes,"x-axis-",n))})),oe.each(t.yAxes,(function(e,n){e.id||(e.id=zn(t.yAxes,"y-axis-",n))})),n&&(n.id=n.id||"scale")},buildOrUpdateScales:function(){var e=this,t=e.options,n=e.scales||{},r=[],a=Object.keys(n).reduce((function(e,t){return e[t]=!1,e}),{});t.scales&&(r=r.concat((t.scales.xAxes||[]).map((function(e){return{options:e,dtype:"category",dposition:"bottom"}})),(t.scales.yAxes||[]).map((function(e){return{options:e,dtype:"linear",dposition:"left"}})))),t.scale&&r.push({options:t.scale,dtype:"radialLinear",isDefault:!0,dposition:"chartArea"}),oe.each(r,(function(t){var r=t.options,i=r.id,o=En(r.type,t.dtype);Vn(r.position)!==Vn(t.dposition)&&(r.position=t.dposition),a[i]=!0;var s=null;if(i in n&&n[i].type===o)(s=n[i]).options=r,s.ctx=e.ctx,s.chart=e;else{var l=Mn.getScaleConstructor(o);if(!l)return;s=new l({id:i,type:o,options:r,ctx:e.ctx,chart:e}),n[s.id]=s}s.mergeTicksOptions(),t.isDefault&&(e.scale=s)})),oe.each(a,(function(e,t){e||delete n[t]})),e.scales=n,Mn.addScalesToLayout(this)},buildOrUpdateControllers:function(){var e,t,n=this,r=[],a=n.data.datasets;for(e=0,t=a.length;e=0;--n)r.drawDataset(t[n],e);bn.notify(r,"afterDatasetsDraw",[e])}},drawDataset:function(e,t){var n=this,r={meta:e,index:e.index,easingValue:t};!1!==bn.notify(n,"beforeDatasetDraw",[r])&&(e.controller.draw(t),bn.notify(n,"afterDatasetDraw",[r]))},_drawTooltip:function(e){var t=this,n=t.tooltip,r={tooltip:n,easingValue:e};!1!==bn.notify(t,"beforeTooltipDraw",[r])&&(n.draw(),bn.notify(t,"afterTooltipDraw",[r]))},getElementAtEvent:function(e){return Ot.modes.single(this,e)},getElementsAtEvent:function(e){return Ot.modes.label(this,e,{intersect:!0})},getElementsAtXAxis:function(e){return Ot.modes["x-axis"](this,e,{intersect:!0})},getElementsAtEventForMode:function(e,t,n){var r=Ot.modes[t];return"function"==typeof r?r(this,e,n):[]},getDatasetAtEvent:function(e){return Ot.modes.dataset(this,e,{intersect:!0})},getDatasetMeta:function(e){var t=this,n=t.data.datasets[e];n._meta||(n._meta={});var r=n._meta[t.id];return r||(r=n._meta[t.id]={type:null,data:[],dataset:null,controller:null,hidden:null,xAxisID:null,yAxisID:null,order:n.order||0,index:e}),r},getVisibleDatasetCount:function(){for(var e=0,t=0,n=this.data.datasets.length;t=0;r--){var a=e[r];if(t(a))return a}},oe.isNumber=function(e){return!isNaN(parseFloat(e))&&isFinite(e)},oe.almostEquals=function(e,t,n){return Math.abs(e-t)=e},oe.max=function(e){return e.reduce((function(e,t){return isNaN(t)?e:Math.max(e,t)}),Number.NEGATIVE_INFINITY)},oe.min=function(e){return e.reduce((function(e,t){return isNaN(t)?e:Math.min(e,t)}),Number.POSITIVE_INFINITY)},oe.sign=Math.sign?function(e){return Math.sign(e)}:function(e){return 0==(e=+e)||isNaN(e)?e:e>0?1:-1},oe.toRadians=function(e){return e*(Math.PI/180)},oe.toDegrees=function(e){return e*(180/Math.PI)},oe._decimalPlaces=function(e){if(oe.isFinite(e)){for(var t=1,n=0;Math.round(e*t)/t!==e;)t*=10,n++;return n}},oe.getAngleFromPoint=function(e,t){var n=t.x-e.x,r=t.y-e.y,a=Math.sqrt(n*n+r*r),i=Math.atan2(r,n);return i<-.5*Math.PI&&(i+=2*Math.PI),{angle:i,distance:a}},oe.distanceBetweenPoints=function(e,t){return Math.sqrt(Math.pow(t.x-e.x,2)+Math.pow(t.y-e.y,2))},oe.aliasPixel=function(e){return e%2==0?0:.5},oe._alignPixel=function(e,t,n){var r=e.currentDevicePixelRatio,a=n/2;return Math.round((t-a)*r)/r+a},oe.splineCurve=function(e,t,n,r){var a=e.skip?t:e,i=t,o=n.skip?t:n,s=Math.sqrt(Math.pow(i.x-a.x,2)+Math.pow(i.y-a.y,2)),l=Math.sqrt(Math.pow(o.x-i.x,2)+Math.pow(o.y-i.y,2)),u=s/(s+l),d=l/(s+l),c=r*(u=isNaN(u)?0:u),h=r*(d=isNaN(d)?0:d);return{previous:{x:i.x-c*(o.x-a.x),y:i.y-c*(o.y-a.y)},next:{x:i.x+h*(o.x-a.x),y:i.y+h*(o.y-a.y)}}},oe.EPSILON=Number.EPSILON||1e-14,oe.splineCurveMonotone=function(e){var t,n,r,a,i,o,s,l,u,d=(e||[]).map((function(e){return{model:e._model,deltaK:0,mK:0}})),c=d.length;for(t=0;t0?d[t-1]:null,(a=t0?d[t-1]:null,a=t=e.length-1?e[0]:e[t+1]:t>=e.length-1?e[e.length-1]:e[t+1]},oe.previousItem=function(e,t,n){return n?t<=0?e[e.length-1]:e[t-1]:t<=0?e[0]:e[t-1]},oe.niceNum=function(e,t){var n=Math.floor(oe.log10(e)),r=e/Math.pow(10,n);return(t?r<1.5?1:r<3?2:r<7?5:10:r<=1?1:r<=2?2:r<=5?5:10)*Math.pow(10,n)},oe.requestAnimFrame="undefined"==typeof window?function(e){e()}:window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(e){return window.setTimeout(e,1e3/60)},oe.getRelativePosition=function(e,t){var n,r,a=e.originalEvent||e,i=e.target||e.srcElement,o=i.getBoundingClientRect(),s=a.touches;s&&s.length>0?(n=s[0].clientX,r=s[0].clientY):(n=a.clientX,r=a.clientY);var l=parseFloat(oe.getStyle(i,"padding-left")),u=parseFloat(oe.getStyle(i,"padding-top")),d=parseFloat(oe.getStyle(i,"padding-right")),c=parseFloat(oe.getStyle(i,"padding-bottom")),h=o.right-o.left-l-d,f=o.bottom-o.top-u-c;return{x:n=Math.round((n-o.left-l)/h*i.width/t.currentDevicePixelRatio),y:r=Math.round((r-o.top-u)/f*i.height/t.currentDevicePixelRatio)}},oe.getConstraintWidth=function(e){return n(e,"max-width","clientWidth")},oe.getConstraintHeight=function(e){return n(e,"max-height","clientHeight")},oe._calculatePadding=function(e,t,n){return(t=oe.getStyle(e,t)).indexOf("%")>-1?n*parseInt(t,10)/100:parseInt(t,10)},oe._getParentNode=function(e){var t=e.parentNode;return t&&"[object ShadowRoot]"===t.toString()&&(t=t.host),t},oe.getMaximumWidth=function(e){var t=oe._getParentNode(e);if(!t)return e.clientWidth;var n=t.clientWidth,r=n-oe._calculatePadding(t,"padding-left",n)-oe._calculatePadding(t,"padding-right",n),a=oe.getConstraintWidth(e);return isNaN(a)?r:Math.min(r,a)},oe.getMaximumHeight=function(e){var t=oe._getParentNode(e);if(!t)return e.clientHeight;var n=t.clientHeight,r=n-oe._calculatePadding(t,"padding-top",n)-oe._calculatePadding(t,"padding-bottom",n),a=oe.getConstraintHeight(e);return isNaN(a)?r:Math.min(r,a)},oe.getStyle=function(e,t){return e.currentStyle?e.currentStyle[t]:document.defaultView.getComputedStyle(e,null).getPropertyValue(t)},oe.retinaScale=function(e,t){var n=e.currentDevicePixelRatio=t||"undefined"!=typeof window&&window.devicePixelRatio||1;if(1!==n){var r=e.canvas,a=e.height,i=e.width;r.height=a*n,r.width=i*n,e.ctx.scale(n,n),r.style.height||r.style.width||(r.style.height=a+"px",r.style.width=i+"px")}},oe.fontString=function(e,t,n){return t+" "+e+"px "+n},oe.longestText=function(e,t,n,r){var a=(r=r||{}).data=r.data||{},i=r.garbageCollect=r.garbageCollect||[];r.font!==t&&(a=r.data={},i=r.garbageCollect=[],r.font=t),e.font=t;var o,s,l,u,d,c=0,h=n.length;for(o=0;on.length){for(o=0;or&&(r=i),r},oe.numberOfLabelLines=function(e){var t=1;return oe.each(e,(function(e){oe.isArray(e)&&e.length>t&&(t=e.length)})),t},oe.color=F?function(e){return e instanceof CanvasGradient&&(e=X.global.defaultColor),F(e)}:function(e){return console.error("Color.js not found!"),e},oe.getHoverColor=function(e){return e instanceof CanvasPattern||e instanceof CanvasGradient?e:oe.color(e).saturate(.5).darken(.1).rgbString()}};function Jn(){throw new Error("This method is not implemented: either no adapter can be found or an incomplete integration was provided.")}function qn(e){this.options=e||{}}oe.extend(qn.prototype,{formats:Jn,parse:Jn,format:Jn,add:Jn,diff:Jn,startOf:Jn,endOf:Jn,_create:function(e){return e}}),qn.override=function(e){oe.extend(qn.prototype,e)};var Zn={_date:qn},Kn={formatters:{values:function(e){return oe.isArray(e)?e:""+e},linear:function(e,t,n){var r=n.length>3?n[2]-n[1]:n[1]-n[0];Math.abs(r)>1&&e!==Math.floor(e)&&(r=e-Math.floor(e));var a=oe.log10(Math.abs(r)),i="";if(0!==e)if(Math.max(Math.abs(n[0]),Math.abs(n[n.length-1]))<1e-4){var o=oe.log10(Math.abs(e)),s=Math.floor(o)-Math.floor(a);s=Math.max(Math.min(s,20),0),i=e.toExponential(s)}else{var l=-1*Math.floor(a);l=Math.max(Math.min(l,20),0),i=e.toFixed(l)}else i="0";return i},logarithmic:function(e,t,n){var r=e/Math.pow(10,Math.floor(oe.log10(e)));return 0===e?"0":1===r||2===r||5===r||0===t||t===n.length-1?e.toExponential():""}}},Xn=oe.isArray,Qn=oe.isNullOrUndef,er=oe.valueOrDefault,tr=oe.valueAtIndexOrDefault;function nr(e,t){for(var n=[],r=e.length/t,a=0,i=e.length;al+u)))return o}function ar(e,t){oe.each(e,(function(e){var n,r=e.gc,a=r.length/2;if(a>t){for(n=0;nu)return i;return Math.max(u,1)}function fr(e){var t,n,r=[];for(t=0,n=e.length;t=h||d<=1||!s.isHorizontal()?s.labelRotation=c:(t=(e=s._getLabelSizes()).widest.width,n=e.highest.height-e.highest.offset,r=Math.min(s.maxWidth,s.chart.width-t),t+6>(a=l.offset?s.maxWidth/d:r/(d-1))&&(a=r/(d-(l.offset?.5:1)),i=s.maxHeight-or(l.gridLines)-u.padding-sr(l.scaleLabel),o=Math.sqrt(t*t+n*n),f=oe.toDegrees(Math.min(Math.asin(Math.min((e.highest.height+6)/a,1)),Math.asin(Math.min(i/o,1))-Math.asin(n/o))),f=Math.max(c,Math.min(h,f))),s.labelRotation=f)},afterCalculateTickRotation:function(){oe.callback(this.options.afterCalculateTickRotation,[this])},beforeFit:function(){oe.callback(this.options.beforeFit,[this])},fit:function(){var e=this,t=e.minSize={width:0,height:0},n=e.chart,r=e.options,a=r.ticks,i=r.scaleLabel,o=r.gridLines,s=e._isVisible(),l="bottom"===r.position,u=e.isHorizontal();if(u?t.width=e.maxWidth:s&&(t.width=or(o)+sr(i)),u?s&&(t.height=or(o)+sr(i)):t.height=e.maxHeight,a.display&&s){var d=ur(a),c=e._getLabelSizes(),h=c.first,f=c.last,p=c.widest,m=c.highest,_=.4*d.minor.lineHeight,g=a.padding;if(u){var v=0!==e.labelRotation,y=oe.toRadians(e.labelRotation),b=Math.cos(y),M=Math.sin(y),w=M*p.width+b*(m.height-(v?m.offset:0))+(v?0:_);t.height=Math.min(e.maxHeight,t.height+w+g);var k,x,L=e.getPixelForTick(0)-e.left,D=e.right-e.getPixelForTick(e.getTicks().length-1);v?(k=l?b*h.width+M*h.offset:M*(h.height-h.offset),x=l?M*(f.height-f.offset):b*f.width+M*f.offset):(k=h.width/2,x=f.width/2),e.paddingLeft=Math.max((k-L)*e.width/(e.width-L),0)+3,e.paddingRight=Math.max((x-D)*e.width/(e.width-D),0)+3}else{var Y=a.mirror?0:p.width+g+_;t.width=Math.min(e.maxWidth,t.width+Y),e.paddingTop=h.height/2,e.paddingBottom=f.height/2}}e.handleMargins(),u?(e.width=e._length=n.width-e.margins.left-e.margins.right,e.height=t.height):(e.width=t.width,e.height=e._length=n.height-e.margins.top-e.margins.bottom)},handleMargins:function(){var e=this;e.margins&&(e.margins.left=Math.max(e.paddingLeft,e.margins.left),e.margins.top=Math.max(e.paddingTop,e.margins.top),e.margins.right=Math.max(e.paddingRight,e.margins.right),e.margins.bottom=Math.max(e.paddingBottom,e.margins.bottom))},afterFit:function(){oe.callback(this.options.afterFit,[this])},isHorizontal:function(){var e=this.options.position;return"top"===e||"bottom"===e},isFullWidth:function(){return this.options.fullWidth},getRightValue:function(e){if(Qn(e))return NaN;if(("number"==typeof e||e instanceof Number)&&!isFinite(e))return NaN;if(e)if(this.isHorizontal()){if(void 0!==e.x)return this.getRightValue(e.x)}else if(void 0!==e.y)return this.getRightValue(e.y);return e},_convertTicksToLabels:function(e){var t,n,r,a=this;for(a.ticks=e.map((function(e){return e.value})),a.beforeTickToLabelConversion(),t=a.convertTicksToLabels(e)||a.ticks,a.afterTickToLabelConversion(),n=0,r=e.length;nr-1?null:t.getPixelForDecimal(e*a+(n?a/2:0))},getPixelForDecimal:function(e){var t=this;return t._reversePixels&&(e=1-e),t._startPixel+e*t._length},getDecimalForPixel:function(e){var t=(e-this._startPixel)/this._length;return this._reversePixels?1-t:t},getBasePixel:function(){return this.getPixelForValue(this.getBaseValue())},getBaseValue:function(){var e=this,t=e.min,n=e.max;return e.beginAtZero?0:t<0&&n<0?n:t>0&&n>0?t:0},_autoSkip:function(e){var t,n,r,a,i=this,o=i.options.ticks,s=i._length,l=o.maxTicksLimit||s/i._tickSize()+1,u=o.major.enabled?fr(e):[],d=u.length,c=u[0],h=u[d-1];if(d>l)return pr(e,u,d/l),dr(e);if(r=hr(u,e,s,l),d>0){for(t=0,n=d-1;t1?(h-c)/(d-1):null,mr(e,r,oe.isNullOrUndef(a)?0:c-a,c),mr(e,r,h,oe.isNullOrUndef(a)?e.length:h+a),dr(e)}return mr(e,r),dr(e)},_tickSize:function(){var e=this,t=e.options.ticks,n=oe.toRadians(e.labelRotation),r=Math.abs(Math.cos(n)),a=Math.abs(Math.sin(n)),i=e._getLabelSizes(),o=t.autoSkipPadding||0,s=i?i.widest.width+o:0,l=i?i.highest.height+o:0;return e.isHorizontal()?l*r>s*a?s/r:l/a:l*a=0&&(o=e),void 0!==i&&(e=n.indexOf(i))>=0&&(s=e),t.minIndex=o,t.maxIndex=s,t.min=n[o],t.max=n[s]},buildTicks:function(){var e=this,t=e._getLabels(),n=e.minIndex,r=e.maxIndex;e.ticks=0===n&&r===t.length-1?t:t.slice(n,r+1)},getLabelForIndex:function(e,t){var n=this,r=n.chart;return r.getDatasetMeta(t).controller._getValueScaleId()===n.id?n.getRightValue(r.data.datasets[t].data[e]):n._getLabels()[e]},_configure:function(){var e=this,t=e.options.offset,n=e.ticks;gr.prototype._configure.call(e),e.isHorizontal()||(e._reversePixels=!e._reversePixels),n&&(e._startValue=e.minIndex-(t?.5:0),e._valueRange=Math.max(n.length-(t?0:1),1))},getPixelForValue:function(e,t,n){var r,a,i,o=this;return vr(t)||vr(n)||(e=o.chart.data.datasets[n].data[t]),vr(e)||(r=o.isHorizontal()?e.x:e.y),(void 0!==r||void 0!==e&&isNaN(t))&&(a=o._getLabels(),e=oe.valueOrDefault(r,e),t=-1!==(i=a.indexOf(e))?i:t,isNaN(t)&&(t=e)),o.getPixelForDecimal((t-o._startValue)/o._valueRange)},getPixelForTick:function(e){var t=this.ticks;return e<0||e>t.length-1?null:this.getPixelForValue(t[e],e+this.minIndex)},getValueForPixel:function(e){var t=this,n=Math.round(t._startValue+t.getDecimalForPixel(e)*t._valueRange);return Math.min(Math.max(n,0),t.ticks.length-1)},getBasePixel:function(){return this.bottom}}),Mr=yr;br._defaults=Mr;var wr=oe.noop,kr=oe.isNullOrUndef;function xr(e,t){var n,r,a,i,o=[],s=1e-14,l=e.stepSize,u=l||1,d=e.maxTicks-1,c=e.min,h=e.max,f=e.precision,p=t.min,m=t.max,_=oe.niceNum((m-p)/d/u)*u;if(_d&&(_=oe.niceNum(i*_/d/u)*u),l||kr(f)?n=Math.pow(10,oe._decimalPlaces(_)):(n=Math.pow(10,f),_=Math.ceil(_*n)/n),r=Math.floor(p/_)*_,a=Math.ceil(m/_)*_,l&&(!kr(c)&&oe.almostWhole(c/_,_/1e3)&&(r=c),!kr(h)&&oe.almostWhole(h/_,_/1e3)&&(a=h)),i=(a-r)/_,i=oe.almostEquals(i,Math.round(i),_/1e3)?Math.round(i):Math.ceil(i),r=Math.round(r*n)/n,a=Math.round(a*n)/n,o.push(kr(c)?r:c);for(var g=1;g0&&r>0&&(e.min=0)}var a=void 0!==t.min||void 0!==t.suggestedMin,i=void 0!==t.max||void 0!==t.suggestedMax;void 0!==t.min?e.min=t.min:void 0!==t.suggestedMin&&(null===e.min?e.min=t.suggestedMin:e.min=Math.min(e.min,t.suggestedMin)),void 0!==t.max?e.max=t.max:void 0!==t.suggestedMax&&(null===e.max?e.max=t.suggestedMax:e.max=Math.max(e.max,t.suggestedMax)),a!==i&&e.min>=e.max&&(a?e.max=e.min+1:e.min=e.max-1),e.min===e.max&&(e.max++,t.beginAtZero||e.min--)},getTickLimit:function(){var e,t=this,n=t.options.ticks,r=n.stepSize,a=n.maxTicksLimit;return r?e=Math.ceil(t.max/r)-Math.floor(t.min/r)+1:(e=t._computeTickLimit(),a=a||11),a&&(e=Math.min(a,e)),e},_computeTickLimit:function(){return Number.POSITIVE_INFINITY},handleDirectionalChanges:wr,buildTicks:function(){var e=this,t=e.options.ticks,n=e.getTickLimit(),r={maxTicks:n=Math.max(2,n),min:t.min,max:t.max,precision:t.precision,stepSize:oe.valueOrDefault(t.fixedStepSize,t.stepSize)},a=e.ticks=xr(r,e);e.handleDirectionalChanges(),e.max=oe.max(a),e.min=oe.min(a),t.reverse?(a.reverse(),e.start=e.max,e.end=e.min):(e.start=e.min,e.end=e.max)},convertTicksToLabels:function(){var e=this;e.ticksAsNumbers=e.ticks.slice(),e.zeroLineIndex=e.ticks.indexOf(0),gr.prototype.convertTicksToLabels.call(e)},_configure:function(){var e,t=this,n=t.getTicks(),r=t.min,a=t.max;gr.prototype._configure.call(t),t.options.offset&&n.length&&(r-=e=(a-r)/Math.max(n.length-1,1)/2,a+=e),t._startValue=r,t._endValue=a,t._valueRange=a-r}}),Dr={position:"left",ticks:{callback:Kn.formatters.linear}},Yr=0,Sr=1;function Tr(e,t,n){var r=[n.type,void 0===t&&void 0===n.stack?n.index:"",n.stack].join(".");return void 0===e[r]&&(e[r]={pos:[],neg:[]}),e[r]}function Cr(e,t,n,r){var a,i,o=e.options,s=Tr(t,o.stacked,n),l=s.pos,u=s.neg,d=r.length;for(a=0;at.length-1?null:this.getPixelForValue(t[e])}}),Pr=Dr;jr._defaults=Pr;var Ar=oe.valueOrDefault,Hr=oe.math.log10;function Fr(e,t){var n,r,a=[],i=Ar(e.min,Math.pow(10,Math.floor(Hr(t.min)))),o=Math.floor(Hr(t.max)),s=Math.ceil(t.max/Math.pow(10,o));0===i?(n=Math.floor(Hr(t.minNotZero)),r=Math.floor(t.minNotZero/Math.pow(10,n)),a.push(i),i=r*Math.pow(10,n)):(n=Math.floor(Hr(i)),r=Math.floor(i/Math.pow(10,n)));var l=n<0?Math.pow(10,Math.abs(n)):1;do{a.push(i),10==++r&&(r=1,l=++n>=0?1:l),i=Math.round(r*Math.pow(10,n)*l)/l}while(n=0?e:t}var Ir=gr.extend({determineDataLimits:function(){var e,t,n,r,a,i,o=this,s=o.options,l=o.chart,u=l.data.datasets,d=o.isHorizontal();function c(e){return d?e.xAxisID===o.id:e.yAxisID===o.id}o.min=Number.POSITIVE_INFINITY,o.max=Number.NEGATIVE_INFINITY,o.minNotZero=Number.POSITIVE_INFINITY;var h=s.stacked;if(void 0===h)for(e=0;e0){var t=oe.min(e),n=oe.max(e);o.min=Math.min(o.min,t),o.max=Math.max(o.max,n)}}))}else for(e=0;e0?e.minNotZero=e.min:e.max<1?e.minNotZero=Math.pow(10,Math.floor(Hr(e.max))):e.minNotZero=n)},buildTicks:function(){var e=this,t=e.options.ticks,n=!e.isHorizontal(),r={min:Nr(t.min),max:Nr(t.max)},a=e.ticks=Fr(r,e);e.max=oe.max(a),e.min=oe.min(a),t.reverse?(n=!n,e.start=e.max,e.end=e.min):(e.start=e.min,e.end=e.max),n&&a.reverse()},convertTicksToLabels:function(){this.tickValues=this.ticks.slice(),gr.prototype.convertTicksToLabels.call(this)},getLabelForIndex:function(e,t){return this._getScaleLabel(this.chart.data.datasets[t].data[e])},getPixelForTick:function(e){var t=this.tickValues;return e<0||e>t.length-1?null:this.getPixelForValue(t[e])},_getFirstTickValue:function(e){var t=Math.floor(Hr(e));return Math.floor(e/Math.pow(10,t))*Math.pow(10,t)},_configure:function(){var e=this,t=e.min,n=0;gr.prototype._configure.call(e),0===t&&(t=e._getFirstTickValue(e.minNotZero),n=Ar(e.options.ticks.fontSize,X.global.defaultFontSize)/e._length),e._startValue=Hr(t),e._valueOffset=n,e._valueRange=(Hr(e.max)-Hr(t))/(1-n)},getPixelForValue:function(e){var t=this,n=0;return(e=+t.getRightValue(e))>t.min&&e>0&&(n=(Hr(e)-t._startValue)/t._valueRange+t._valueOffset),t.getPixelForDecimal(n)},getValueForPixel:function(e){var t=this,n=t.getDecimalForPixel(e);return 0===n&&0===t.min?0:Math.pow(10,t._startValue+(n-t._valueOffset)*t._valueRange)}}),Rr=Er;Ir._defaults=Rr;var Wr=oe.valueOrDefault,zr=oe.valueAtIndexOrDefault,Vr=oe.options.resolve,$r={display:!0,animate:!0,position:"chartArea",angleLines:{display:!0,color:"rgba(0,0,0,0.1)",lineWidth:1,borderDash:[],borderDashOffset:0},gridLines:{circular:!1},ticks:{showLabelBackdrop:!0,backdropColor:"rgba(255,255,255,0.75)",backdropPaddingY:2,backdropPaddingX:2,callback:Kn.formatters.linear},pointLabels:{display:!0,fontSize:10,callback:function(e){return e}}};function Br(e){var t=e.ticks;return t.display&&e.display?Wr(t.fontSize,X.global.defaultFontSize)+2*t.backdropPaddingY:0}function Ur(e,t,n){return oe.isArray(n)?{w:oe.longestText(e,e.font,n),h:n.length*t}:{w:e.measureText(n).width,h:t}}function Gr(e,t,n,r,a){return e===r||e===a?{start:t-n/2,end:t+n/2}:ea?{start:t-n,end:t}:{start:t,end:t+n}}function Jr(e){var t,n,r,a=oe.options._parseFont(e.options.pointLabels),i={l:0,r:e.width,t:0,b:e.height-e.paddingTop},o={};e.ctx.font=a.string,e._pointLabelSizes=[];var s=e.chart.data.labels.length;for(t=0;ti.r&&(i.r=d.end,o.r=l),c.starti.b&&(i.b=c.end,o.b=l)}e.setReductions(e.drawingArea,i,o)}function qr(e){return 0===e||180===e?"center":e<180?"left":"right"}function Zr(e,t,n,r){var a,i,o=n.y+r/2;if(oe.isArray(t))for(a=0,i=t.length;a270||e<90)&&(n.y-=t.h)}function Xr(e){var t=e.ctx,n=e.options,r=n.pointLabels,a=Br(n),i=e.getDistanceFromCenterForValue(n.ticks.reverse?e.min:e.max),o=oe.options._parseFont(r);t.save(),t.font=o.string,t.textBaseline="middle";for(var s=e.chart.data.labels.length-1;s>=0;s--){var l=0===s?a/2:0,u=e.getPointPosition(s,i+l+5),d=zr(r.fontColor,s,X.global.defaultFontColor);t.fillStyle=d;var c=e.getIndexAngle(s),h=oe.toDegrees(c);t.textAlign=qr(h),Kr(h,e._pointLabelSizes[s],u),Zr(t,e.pointLabels[s],u,o.lineHeight)}t.restore()}function Qr(e,t,n,r){var a,i=e.ctx,o=t.circular,s=e.chart.data.labels.length,l=zr(t.color,r-1),u=zr(t.lineWidth,r-1);if((o||s)&&l&&u){if(i.save(),i.strokeStyle=l,i.lineWidth=u,i.setLineDash&&(i.setLineDash(t.borderDash||[]),i.lineDashOffset=t.borderDashOffset||0),i.beginPath(),o)i.arc(e.xCenter,e.yCenter,n,0,2*Math.PI);else{a=e.getPointPosition(0,n),i.moveTo(a.x,a.y);for(var d=1;d0&&r>0?n:0)},_drawGrid:function(){var e,t,n,r=this,a=r.ctx,i=r.options,o=i.gridLines,s=i.angleLines,l=Wr(s.lineWidth,o.lineWidth),u=Wr(s.color,o.color);if(i.pointLabels.display&&Xr(r),o.display&&oe.each(r.ticks,(function(e,n){0!==n&&(t=r.getDistanceFromCenterForValue(r.ticksAsNumbers[n]),Qr(r,o,t,n))})),s.display&&l&&u){for(a.save(),a.lineWidth=l,a.strokeStyle=u,a.setLineDash&&(a.setLineDash(Vr([s.borderDash,o.borderDash,[]])),a.lineDashOffset=Vr([s.borderDashOffset,o.borderDashOffset,0])),e=r.chart.data.labels.length-1;e>=0;e--)t=r.getDistanceFromCenterForValue(i.ticks.reverse?r.min:r.max),n=r.getPointPosition(e,t),a.beginPath(),a.moveTo(r.xCenter,r.yCenter),a.lineTo(n.x,n.y),a.stroke();a.restore()}},_drawLabels:function(){var e=this,t=e.ctx,n=e.options.ticks;if(n.display){var r,a,i=e.getIndexAngle(0),o=oe.options._parseFont(n),s=Wr(n.fontColor,X.global.defaultFontColor);t.save(),t.font=o.string,t.translate(e.xCenter,e.yCenter),t.rotate(i),t.textAlign="center",t.textBaseline="middle",oe.each(e.ticks,(function(i,l){(0!==l||n.reverse)&&(r=e.getDistanceFromCenterForValue(e.ticksAsNumbers[l]),n.showLabelBackdrop&&(a=t.measureText(i).width,t.fillStyle=n.backdropColor,t.fillRect(-a/2-n.backdropPaddingX,-r-o.size/2-n.backdropPaddingY,a+2*n.backdropPaddingX,o.size+2*n.backdropPaddingY)),t.fillStyle=s,t.fillText(i,0,-r))})),t.restore()}},_drawTitle:oe.noop}),na=$r;ta._defaults=na;var ra=oe._deprecated,aa=oe.options.resolve,ia=oe.valueOrDefault,oa=Number.MIN_SAFE_INTEGER||-9007199254740991,sa=Number.MAX_SAFE_INTEGER||9007199254740991,la={millisecond:{common:!0,size:1,steps:1e3},second:{common:!0,size:1e3,steps:60},minute:{common:!0,size:6e4,steps:60},hour:{common:!0,size:36e5,steps:24},day:{common:!0,size:864e5,steps:30},week:{common:!1,size:6048e5,steps:4},month:{common:!0,size:2628e6,steps:12},quarter:{common:!1,size:7884e6,steps:4},year:{common:!0,size:3154e7}},ua=Object.keys(la);function da(e,t){return e-t}function ca(e){var t,n,r,a={},i=[];for(t=0,n=e.length;tt&&s=0&&o<=s;){if(a=e[(r=o+s>>1)-1]||null,i=e[r],!a)return{lo:null,hi:i};if(i[t]n))return{lo:a,hi:i};s=r-1}}return{lo:i,hi:null}}function _a(e,t,n,r){var a=ma(e,t,n),i=a.lo?a.hi?a.lo:e[e.length-2]:e[0],o=a.lo?a.hi?a.hi:e[e.length-1]:e[1],s=o[t]-i[t],l=s?(n-i[t])/s:0,u=(o[r]-i[r])*l;return i[r]+u}function ga(e,t){var n=e._adapter,r=e.options.time,a=r.parser,i=a||r.format,o=t;return"function"==typeof a&&(o=a(o)),oe.isFinite(o)||(o="string"==typeof i?n.parse(o,i):n.parse(o)),null!==o?+o:(a||"function"!=typeof i||(o=i(t),oe.isFinite(o)||(o=n.parse(o))),o)}function va(e,t){if(oe.isNullOrUndef(t))return null;var n=e.options.time,r=ga(e,e.getRightValue(t));return null===r||n.round&&(r=+e._adapter.startOf(r,n.round)),r}function ya(e,t,n,r){var a,i,o,s=ua.length;for(a=ua.indexOf(e);a=ua.indexOf(n);i--)if(o=ua[i],la[o].common&&e._adapter.diff(a,r,o)>=t-1)return o;return ua[n?ua.indexOf(n):0]}function Ma(e){for(var t=ua.indexOf(e)+1,n=ua.length;t1e5*u)throw t+" and "+n+" are too far apart with stepSize of "+u+" "+l;for(a=c;a=0&&(t[i].major=!0);return t}function La(e,t,n){var r,a,i=[],o={},s=t.length;for(r=0;r1?ca(p).sort(da):p.sort(da),h=Math.min(h,p[0]),f=Math.max(f,p[p.length-1])),h=va(s,ha(d))||h,f=va(s,fa(d))||f,h=h===sa?+u.startOf(Date.now(),c):h,f=f===oa?+u.endOf(Date.now(),c)+1:f,s.min=Math.min(h,f),s.max=Math.max(h+1,f),s._table=[],s._timestamps={data:p,datasets:m,labels:_}},buildTicks:function(){var e,t,n,r=this,a=r.min,i=r.max,o=r.options,s=o.ticks,l=o.time,u=r._timestamps,d=[],c=r.getLabelCapacity(a),h=s.source,f=o.distribution;for(u="data"===h||"auto"===h&&"series"===f?u.data:"labels"===h?u.labels:wa(r,a,i,c),"ticks"===o.bounds&&u.length&&(a=u[0],i=u[u.length-1]),a=va(r,ha(o))||a,i=va(r,fa(o))||i,e=0,t=u.length;e=a&&n<=i&&d.push(n);return r.min=a,r.max=i,r._unit=l.unit||(s.autoSkip?ya(l.minUnit,r.min,r.max,c):ba(r,d.length,l.minUnit,r.min,r.max)),r._majorUnit=s.major.enabled&&"year"!==r._unit?Ma(r._unit):void 0,r._table=pa(r._timestamps.data,a,i,f),r._offsets=ka(r._table,d,a,i,o),s.reverse&&d.reverse(),La(r,d,r._majorUnit)},getLabelForIndex:function(e,t){var n=this,r=n._adapter,a=n.chart.data,i=n.options.time,o=a.labels&&e=0&&e0?s:1}}),Sa=Da;Ya._defaults=Sa;var Ta={category:br,linear:jr,logarithmic:Ir,radialLinear:ta,time:Ya},Ca={datetime:"MMM D, YYYY, h:mm:ss a",millisecond:"h:mm:ss.SSS a",second:"h:mm:ss a",minute:"h:mm a",hour:"hA",day:"MMM D",week:"ll",month:"MMM YYYY",quarter:"[Q]Q - YYYY",year:"YYYY"};Zn._date.override("function"==typeof e?{_id:"moment",formats:function(){return Ca},parse:function(t,n){return"string"==typeof t&&"string"==typeof n?t=e(t,n):t instanceof e||(t=e(t)),t.isValid()?t.valueOf():null},format:function(t,n){return e(t).format(n)},add:function(t,n,r){return e(t).add(n,r).valueOf()},diff:function(t,n,r){return e(t).diff(e(n),r)},startOf:function(t,n,r){return t=e(t),"isoWeek"===n?t.isoWeekday(r).valueOf():t.startOf(n).valueOf()},endOf:function(t,n){return e(t).endOf(n).valueOf()},_create:function(t){return e(t)}}:{}),X._set("global",{plugins:{filler:{propagate:!0}}});var Oa={dataset:function(e){var t=e.fill,n=e.chart,r=n.getDatasetMeta(t),a=r&&n.isDatasetVisible(t)&&r.dataset._children||[],i=a.length||0;return i?function(e,t){return t=n)&&r;switch(i){case"bottom":return"start";case"top":return"end";case"zero":return"origin";case"origin":case"start":case"end":return i;default:return!1}}function Pa(e){var t,n=e.el._model||{},r=e.el._scale||{},a=e.fill,i=null;if(isFinite(a))return null;if("start"===a?i=void 0===n.scaleBottom?r.bottom:n.scaleBottom:"end"===a?i=void 0===n.scaleTop?r.top:n.scaleTop:void 0!==n.scaleZero?i=n.scaleZero:r.getBasePixel&&(i=r.getBasePixel()),null!=i){if(void 0!==i.x&&void 0!==i.y)return i;if(oe.isFinite(i))return{x:(t=r.isHorizontal())?i:null,y:t?null:i}}return null}function Aa(e){var t,n,r,a,i,o=e.el._scale,s=o.options,l=o.chart.data.labels.length,u=e.fill,d=[];if(!l)return null;for(t=s.ticks.reverse?o.max:o.min,n=s.ticks.reverse?o.min:o.max,r=o.getPointPositionForValue(0,t),a=0;a0;--i)oe.canvas.lineTo(e,n[i],n[i-1],!0);else for(o=n[0].cx,s=n[0].cy,l=Math.sqrt(Math.pow(n[0].x-o,2)+Math.pow(n[0].y-s,2)),i=a-1;i>0;--i)e.arc(o,s,l,n[i].angle,n[i-1].angle,!0)}}function Ra(e,t,n,r,a,i){var o,s,l,u,d,c,h,f,p=t.length,m=r.spanGaps,_=[],g=[],v=0,y=0;for(e.beginPath(),o=0,s=p;o=0;--n)(t=l[n].$filler)&&t.visible&&(a=(r=t.el)._view,i=r._children||[],o=t.mapper,s=a.backgroundColor||X.global.defaultColor,o&&s&&i.length&&(oe.canvas.clipArea(u,e.chartArea),Ra(u,i,o,a,s,r._loop),oe.canvas.unclipArea(u)))}},za=oe.rtl.getRtlAdapter,Va=oe.noop,$a=oe.valueOrDefault;function Ba(e,t){return e.usePointStyle&&e.boxWidth>t?t:e.boxWidth}X._set("global",{legend:{display:!0,position:"top",align:"center",fullWidth:!0,reverse:!1,weight:1e3,onClick:function(e,t){var n=t.datasetIndex,r=this.chart,a=r.getDatasetMeta(n);a.hidden=null===a.hidden?!r.data.datasets[n].hidden:null,r.update()},onHover:null,onLeave:null,labels:{boxWidth:40,padding:10,generateLabels:function(e){var t=e.data.datasets,n=e.options.legend||{},r=n.labels&&n.labels.usePointStyle;return e._getSortedDatasetMetas().map((function(n){var a=n.controller.getStyle(r?0:void 0);return{text:t[n.index].label,fillStyle:a.backgroundColor,hidden:!e.isDatasetVisible(n.index),lineCap:a.borderCapStyle,lineDash:a.borderDash,lineDashOffset:a.borderDashOffset,lineJoin:a.borderJoinStyle,lineWidth:a.borderWidth,strokeStyle:a.borderColor,pointStyle:a.pointStyle,rotation:a.rotation,datasetIndex:n.index}}),this)}}},legendCallback:function(e){var t,n,r,a=document.createElement("ul"),i=e.data.datasets;for(a.setAttribute("class",e.id+"-legend"),t=0,n=i.length;tl.width)&&(c+=o+n.padding,d[d.length-(t>0?0:1)]=0),s[t]={left:0,top:0,width:r,height:o},d[d.length-1]+=r+n.padding})),l.height+=c}else{var h=n.padding,f=e.columnWidths=[],p=e.columnHeights=[],m=n.padding,_=0,g=0;oe.each(e.legendItems,(function(e,t){var r=Ba(n,o)+o/2+a.measureText(e.text).width;t>0&&g+o+2*h>l.height&&(m+=_+n.padding,f.push(_),p.push(g),_=0,g=0),_=Math.max(_,r),g+=o+h,s[t]={left:0,top:0,width:r,height:o}})),m+=_,f.push(_),p.push(g),l.width+=m}e.width=l.width,e.height=l.height}else e.width=l.width=e.height=l.height=0},afterFit:Va,isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},draw:function(){var e=this,t=e.options,n=t.labels,r=X.global,a=r.defaultColor,i=r.elements.line,o=e.height,s=e.columnHeights,l=e.width,u=e.lineWidths;if(t.display){var d,c=za(t.rtl,e.left,e.minSize.width),h=e.ctx,f=$a(n.fontColor,r.defaultFontColor),p=oe.options._parseFont(n),m=p.size;h.textAlign=c.textAlign("left"),h.textBaseline="middle",h.lineWidth=.5,h.strokeStyle=f,h.fillStyle=f,h.font=p.string;var _=Ba(n,m),g=e.legendHitBoxes,v=function(e,t,r){if(!(isNaN(_)||_<=0)){h.save();var o=$a(r.lineWidth,i.borderWidth);if(h.fillStyle=$a(r.fillStyle,a),h.lineCap=$a(r.lineCap,i.borderCapStyle),h.lineDashOffset=$a(r.lineDashOffset,i.borderDashOffset),h.lineJoin=$a(r.lineJoin,i.borderJoinStyle),h.lineWidth=o,h.strokeStyle=$a(r.strokeStyle,a),h.setLineDash&&h.setLineDash($a(r.lineDash,i.borderDash)),n&&n.usePointStyle){var s=_*Math.SQRT2/2,l=c.xPlus(e,_/2),u=t+m/2;oe.canvas.drawPoint(h,r.pointStyle,s,l,u,r.rotation)}else h.fillRect(c.leftForLtr(e,_),t,_,m),0!==o&&h.strokeRect(c.leftForLtr(e,_),t,_,m);h.restore()}},y=function(e,t,n,r){var a=m/2,i=c.xPlus(e,_+a),o=t+a;h.fillText(n.text,i,o),n.hidden&&(h.beginPath(),h.lineWidth=2,h.moveTo(i,o),h.lineTo(c.xPlus(i,r),o),h.stroke())},b=function(e,r){switch(t.align){case"start":return n.padding;case"end":return e-r;default:return(e-r+n.padding)/2}},M=e.isHorizontal();d=M?{x:e.left+b(l,u[0]),y:e.top+n.padding,line:0}:{x:e.left+n.padding,y:e.top+b(o,s[0]),line:0},oe.rtl.overrideTextDirection(e.ctx,t.textDirection);var w=m+n.padding;oe.each(e.legendItems,(function(t,r){var a=h.measureText(t.text).width,i=_+m/2+a,f=d.x,p=d.y;c.setWidth(e.minSize.width),M?r>0&&f+i+n.padding>e.left+e.minSize.width&&(p=d.y+=w,d.line++,f=d.x=e.left+b(l,u[d.line])):r>0&&p+w>e.top+e.minSize.height&&(f=d.x=f+e.columnWidths[d.line]+n.padding,d.line++,p=d.y=e.top+b(o,s[d.line]));var k=c.x(f);v(k,p,t),g[r].left=c.leftForLtr(k,g[r].width),g[r].top=p,y(k,p,t,a),M?d.x+=i+n.padding:d.y+=w})),oe.rtl.restoreTextDirection(e.ctx,t.textDirection)}},_getLegendItemAt:function(e,t){var n,r,a,i=this;if(e>=i.left&&e<=i.right&&t>=i.top&&t<=i.bottom)for(a=i.legendHitBoxes,n=0;n=(r=a[n]).left&&e<=r.left+r.width&&t>=r.top&&t<=r.top+r.height)return i.legendItems[n];return null},handleEvent:function(e){var t,n=this,r=n.options,a="mouseup"===e.type?"click":e.type;if("mousemove"===a){if(!r.onHover&&!r.onLeave)return}else{if("click"!==a)return;if(!r.onClick)return}t=n._getLegendItemAt(e.x,e.y),"click"===a?t&&r.onClick&&r.onClick.call(n,e.native,t):(r.onLeave&&t!==n._hoveredItem&&(n._hoveredItem&&r.onLeave.call(n,e.native,n._hoveredItem),n._hoveredItem=t),r.onHover&&t&&r.onHover.call(n,e.native,t))}});function Ga(e,t){var n=new Ua({ctx:e.ctx,options:t,chart:e});$t.configure(e,n,t),$t.addBox(e,n),e.legend=n}var Ja={id:"legend",_element:Ua,beforeInit:function(e){var t=e.options.legend;t&&Ga(e,t)},beforeUpdate:function(e){var t=e.options.legend,n=e.legend;t?(oe.mergeIf(t,X.global.legend),n?($t.configure(e,n,t),n.options=t):Ga(e,t)):n&&($t.removeBox(e,n),delete e.legend)},afterEvent:function(e,t){var n=e.legend;n&&n.handleEvent(t)}},qa=oe.noop;X._set("global",{title:{display:!1,fontStyle:"bold",fullWidth:!0,padding:10,position:"top",text:"",weight:2e3}});var Za=pe.extend({initialize:function(e){var t=this;oe.extend(t,e),t.legendHitBoxes=[]},beforeUpdate:qa,update:function(e,t,n){var r=this;return r.beforeUpdate(),r.maxWidth=e,r.maxHeight=t,r.margins=n,r.beforeSetDimensions(),r.setDimensions(),r.afterSetDimensions(),r.beforeBuildLabels(),r.buildLabels(),r.afterBuildLabels(),r.beforeFit(),r.fit(),r.afterFit(),r.afterUpdate(),r.minSize},afterUpdate:qa,beforeSetDimensions:qa,setDimensions:function(){var e=this;e.isHorizontal()?(e.width=e.maxWidth,e.left=0,e.right=e.width):(e.height=e.maxHeight,e.top=0,e.bottom=e.height),e.paddingLeft=0,e.paddingTop=0,e.paddingRight=0,e.paddingBottom=0,e.minSize={width:0,height:0}},afterSetDimensions:qa,beforeBuildLabels:qa,buildLabels:qa,afterBuildLabels:qa,beforeFit:qa,fit:function(){var e,t=this,n=t.options,r=t.minSize={},a=t.isHorizontal();n.display?(e=(oe.isArray(n.text)?n.text.length:1)*oe.options._parseFont(n).lineHeight+2*n.padding,t.width=r.width=a?t.maxWidth:e,t.height=r.height=a?e:t.maxHeight):t.width=r.width=t.height=r.height=0},afterFit:qa,isHorizontal:function(){var e=this.options.position;return"top"===e||"bottom"===e},draw:function(){var e=this,t=e.ctx,n=e.options;if(n.display){var r,a,i,o=oe.options._parseFont(n),s=o.lineHeight,l=s/2+n.padding,u=0,d=e.top,c=e.left,h=e.bottom,f=e.right;t.fillStyle=oe.valueOrDefault(n.fontColor,X.global.defaultFontColor),t.font=o.string,e.isHorizontal()?(a=c+(f-c)/2,i=d+l,r=f-c):(a="left"===n.position?c+l:f-l,i=d+(h-d)/2,r=h-d,u=Math.PI*("left"===n.position?-.5:.5)),t.save(),t.translate(a,i),t.rotate(u),t.textAlign="center",t.textBaseline="middle";var p=n.text;if(oe.isArray(p))for(var m=0,_=0;_{n(99650),n(935),n(66064),n(89448),n(22642),n(53e3),n(88647),n(81895),n(48236),n(73822),n(15572),n(69318),n(65032),n(79073),n(11430),n(38451),n(18132),n(17482),n(65049),n(70489),n(95502),n(90571),n(96108),n(64509),n(37727),n(6701),n(34419),n(91933),n(55538),n(39497),n(4104),n(60210),n(56576),n(84437),n(88050),n(76648),n(55771),n(82392),n(72335),n(74896),n(94521),n(29147),n(41318),n(84352),n(15327),n(57509),n(15909),n(79584),n(40345),n(99134),n(67901),n(46592),n(12220),n(23483),n(20957),n(82975),n(32405),n(17224),n(28872),n(44894),n(10177),n(87360),n(89011),n(54591),n(47334),n(7083),n(69213),n(38437),n(62220),n(76549),n(42818),n(28543),n(3559),n(84153),n(13292),n(52346),n(9429),n(7849),n(48951),n(47899),n(93863),n(4570),n(96511),n(95853),n(97075),n(3504),n(54913),n(39813),n(86511),n(58888),n(81449),n(47874),n(34609),n(33706),n(19620),n(57762),n(15144),n(75369),n(76209),n(95165),n(8301),n(94116),n(78604),n(39638),n(4040),n(68305),n(74701),n(20341),n(66517),n(93386),n(71632),n(79397),n(98163),n(45706),n(50660),n(48699),n(14702),n(30333),n(51220),n(72087),n(98066),n(8537),n(17925),n(2490),n(7103),n(82586),n(92552),n(4376),n(75153),n(11879),n(52650),n(31104),n(21883),n(35433),n(55e3),n(15932),n(5443),n(26316),e.exports=n(56094)},5777:(e,t,n)=>{n(99766),e.exports=n(56094).Array.flatMap},28128:(e,t,n)=>{n(9087),e.exports=n(56094).Array.includes},51243:(e,t,n)=>{n(87146),e.exports=n(56094).Object.entries},74897:(e,t,n)=>{n(84614),e.exports=n(56094).Object.getOwnPropertyDescriptors},54925:(e,t,n)=>{n(27594),e.exports=n(56094).Object.values},38978:(e,t,n)=>{"use strict";n(66517),n(68583),e.exports=n(56094).Promise.finally},55240:(e,t,n)=>{n(45693),e.exports=n(56094).String.padEnd},82681:(e,t,n)=>{n(95380),e.exports=n(56094).String.padStart},56073:(e,t,n)=>{n(60521),e.exports=n(56094).String.trimRight},61368:(e,t,n)=>{n(20062),e.exports=n(56094).String.trimLeft},7739:(e,t,n)=>{n(32820),e.exports=n(47960).f("asyncIterator")},95104:(e,t,n)=>{n(41124),e.exports=n(46438).global},25219:e=>{e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},80812:(e,t,n)=>{var r=n(24401);e.exports=function(e){if(!r(e))throw TypeError(e+" is not an object!");return e}},46438:e=>{var t=e.exports={version:"2.6.12"};"number"==typeof __e&&(__e=t)},58852:(e,t,n)=>{var r=n(25219);e.exports=function(e,t,n){if(r(e),void 0===t)return e;switch(n){case 1:return function(n){return e.call(t,n)};case 2:return function(n,r){return e.call(t,n,r)};case 3:return function(n,r,a){return e.call(t,n,r,a)}}return function(){return e.apply(t,arguments)}}},58219:(e,t,n)=>{e.exports=!n(81984)((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},3802:(e,t,n)=>{var r=n(24401),a=n(66670).document,i=r(a)&&r(a.createElement);e.exports=function(e){return i?a.createElement(e):{}}},88535:(e,t,n)=>{var r=n(66670),a=n(46438),i=n(58852),o=n(2677),s=n(75509),l="prototype",u=function(e,t,n){var d,c,h,f=e&u.F,p=e&u.G,m=e&u.S,_=e&u.P,g=e&u.B,v=e&u.W,y=p?a:a[t]||(a[t]={}),b=y[l],M=p?r:m?r[t]:(r[t]||{})[l];for(d in p&&(n=t),n)(c=!f&&M&&void 0!==M[d])&&s(y,d)||(h=c?M[d]:n[d],y[d]=p&&"function"!=typeof M[d]?n[d]:g&&c?i(h,r):v&&M[d]==h?function(e){var t=function(t,n,r){if(this instanceof e){switch(arguments.length){case 0:return new e;case 1:return new e(t);case 2:return new e(t,n)}return new e(t,n,r)}return e.apply(this,arguments)};return t[l]=e[l],t}(h):_&&"function"==typeof h?i(Function.call,h):h,_&&((y.virtual||(y.virtual={}))[d]=h,e&u.R&&b&&!b[d]&&o(b,d,h)))};u.F=1,u.G=2,u.S=4,u.P=8,u.B=16,u.W=32,u.U=64,u.R=128,e.exports=u},81984:e=>{e.exports=function(e){try{return!!e()}catch(e){return!0}}},66670:e=>{var t=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=t)},75509:e=>{var t={}.hasOwnProperty;e.exports=function(e,n){return t.call(e,n)}},2677:(e,t,n)=>{var r=n(78423),a=n(86260);e.exports=n(58219)?function(e,t,n){return r.f(e,t,a(1,n))}:function(e,t,n){return e[t]=n,e}},32484:(e,t,n)=>{e.exports=!n(58219)&&!n(81984)((function(){return 7!=Object.defineProperty(n(3802)("div"),"a",{get:function(){return 7}}).a}))},24401:e=>{e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},78423:(e,t,n)=>{var r=n(80812),a=n(32484),i=n(10752),o=Object.defineProperty;t.f=n(58219)?Object.defineProperty:function(e,t,n){if(r(e),t=i(t,!0),r(n),a)try{return o(e,t,n)}catch(e){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(e[t]=n.value),e}},86260:e=>{e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},10752:(e,t,n)=>{var r=n(24401);e.exports=function(e,t){if(!r(e))return e;var n,a;if(t&&"function"==typeof(n=e.toString)&&!r(a=n.call(e)))return a;if("function"==typeof(n=e.valueOf)&&!r(a=n.call(e)))return a;if(!t&&"function"==typeof(n=e.toString)&&!r(a=n.call(e)))return a;throw TypeError("Can't convert object to primitive value")}},41124:(e,t,n)=>{var r=n(88535);r(r.G,{global:n(66670)})},63387:e=>{e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},15122:(e,t,n)=>{var r=n(55089);e.exports=function(e,t){if("number"!=typeof e&&"Number"!=r(e))throw TypeError(t);return+e}},88184:(e,t,n)=>{var r=n(67574)("unscopables"),a=Array.prototype;null==a[r]&&n(33341)(a,r,{}),e.exports=function(e){a[r][e]=!0}},28828:(e,t,n)=>{"use strict";var r=n(91212)(!0);e.exports=function(e,t,n){return t+(n?r(e,t).length:1)}},16440:e=>{e.exports=function(e,t,n,r){if(!(e instanceof t)||void 0!==r&&r in e)throw TypeError(n+": incorrect invocation!");return e}},4228:(e,t,n)=>{var r=n(43305);e.exports=function(e){if(!r(e))throw TypeError(e+" is not an object!");return e}},84438:(e,t,n)=>{"use strict";var r=n(18270),a=n(70157),i=n(81485);e.exports=[].copyWithin||function(e,t){var n=r(this),o=i(n.length),s=a(e,o),l=a(t,o),u=arguments.length>2?arguments[2]:void 0,d=Math.min((void 0===u?o:a(u,o))-l,o-s),c=1;for(l0;)l in n?n[s]=n[l]:delete n[s],s+=c,l+=c;return n}},35564:(e,t,n)=>{"use strict";var r=n(18270),a=n(70157),i=n(81485);e.exports=function(e){for(var t=r(this),n=i(t.length),o=arguments.length,s=a(o>1?arguments[1]:void 0,n),l=o>2?arguments[2]:void 0,u=void 0===l?n:a(l,n);u>s;)t[s++]=e;return t}},61464:(e,t,n)=>{var r=n(57221),a=n(81485),i=n(70157);e.exports=function(e){return function(t,n,o){var s,l=r(t),u=a(l.length),d=i(o,u);if(e&&n!=n){for(;u>d;)if((s=l[d++])!=s)return!0}else for(;u>d;d++)if((e||d in l)&&l[d]===n)return e||d||0;return!e&&-1}}},66179:(e,t,n)=>{var r=n(35052),a=n(61249),i=n(18270),o=n(81485),s=n(93191);e.exports=function(e,t){var n=1==e,l=2==e,u=3==e,d=4==e,c=6==e,h=5==e||c,f=t||s;return function(t,s,p){for(var m,_,g=i(t),v=a(g),y=r(s,p,3),b=o(v.length),M=0,w=n?f(t,b):l?f(t,0):void 0;b>M;M++)if((h||M in v)&&(_=y(m=v[M],M,g),e))if(n)w[M]=_;else if(_)switch(e){case 3:return!0;case 5:return m;case 6:return M;case 2:w.push(m)}else if(d)return!1;return c?-1:u||d?d:w}}},6543:(e,t,n)=>{var r=n(63387),a=n(18270),i=n(61249),o=n(81485);e.exports=function(e,t,n,s,l){r(t);var u=a(e),d=i(u),c=o(u.length),h=l?c-1:0,f=l?-1:1;if(n<2)for(;;){if(h in d){s=d[h],h+=f;break}if(h+=f,l?h<0:c<=h)throw TypeError("Reduce of empty array with no initial value")}for(;l?h>=0:c>h;h+=f)h in d&&(s=t(s,d[h],h,u));return s}},63606:(e,t,n)=>{var r=n(43305),a=n(77981),i=n(67574)("species");e.exports=function(e){var t;return a(e)&&("function"!=typeof(t=e.constructor)||t!==Array&&!a(t.prototype)||(t=void 0),r(t)&&null===(t=t[i])&&(t=void 0)),void 0===t?Array:t}},93191:(e,t,n)=>{var r=n(63606);e.exports=function(e,t){return new(r(e))(t)}},15538:(e,t,n)=>{"use strict";var r=n(63387),a=n(43305),i=n(24877),o=[].slice,s={};e.exports=Function.bind||function(e){var t=r(this),n=o.call(arguments,1),l=function(){var r=n.concat(o.call(arguments));return this instanceof l?function(e,t,n){if(!(t in s)){for(var r=[],a=0;a{var r=n(55089),a=n(67574)("toStringTag"),i="Arguments"==r(function(){return arguments}());e.exports=function(e){var t,n,o;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(n=function(e,t){try{return e[t]}catch(e){}}(t=Object(e),a))?n:i?r(t):"Object"==(o=r(t))&&"function"==typeof t.callee?"Arguments":o}},55089:e=>{var t={}.toString;e.exports=function(e){return t.call(e).slice(8,-1)}},36197:(e,t,n)=>{"use strict";var r=n(47967).f,a=n(84719),i=n(96065),o=n(35052),s=n(16440),l=n(48790),u=n(98175),d=n(74970),c=n(55762),h=n(1763),f=n(12988).fastKey,p=n(12888),m=h?"_s":"size",_=function(e,t){var n,r=f(t);if("F"!==r)return e._i[r];for(n=e._f;n;n=n.n)if(n.k==t)return n};e.exports={getConstructor:function(e,t,n,u){var d=e((function(e,r){s(e,d,t,"_i"),e._t=t,e._i=a(null),e._f=void 0,e._l=void 0,e[m]=0,null!=r&&l(r,n,e[u],e)}));return i(d.prototype,{clear:function(){for(var e=p(this,t),n=e._i,r=e._f;r;r=r.n)r.r=!0,r.p&&(r.p=r.p.n=void 0),delete n[r.i];e._f=e._l=void 0,e[m]=0},delete:function(e){var n=p(this,t),r=_(n,e);if(r){var a=r.n,i=r.p;delete n._i[r.i],r.r=!0,i&&(i.n=a),a&&(a.p=i),n._f==r&&(n._f=a),n._l==r&&(n._l=i),n[m]--}return!!r},forEach:function(e){p(this,t);for(var n,r=o(e,arguments.length>1?arguments[1]:void 0,3);n=n?n.n:this._f;)for(r(n.v,n.k,this);n&&n.r;)n=n.p},has:function(e){return!!_(p(this,t),e)}}),h&&r(d.prototype,"size",{get:function(){return p(this,t)[m]}}),d},def:function(e,t,n){var r,a,i=_(e,t);return i?i.v=n:(e._l=i={i:a=f(t,!0),k:t,v:n,p:r=e._l,n:void 0,r:!1},e._f||(e._f=i),r&&(r.n=i),e[m]++,"F"!==a&&(e._i[a]=i)),e},getEntry:_,setStrong:function(e,t,n){u(e,t,(function(e,n){this._t=p(e,t),this._k=n,this._l=void 0}),(function(){for(var e=this,t=e._k,n=e._l;n&&n.r;)n=n.p;return e._t&&(e._l=n=n?n.n:e._t._f)?d(0,"keys"==t?n.k:"values"==t?n.v:[n.k,n.v]):(e._t=void 0,d(1))}),n?"entries":"values",!n,!0),c(t)}}},99882:(e,t,n)=>{"use strict";var r=n(96065),a=n(12988).getWeak,i=n(4228),o=n(43305),s=n(16440),l=n(48790),u=n(66179),d=n(57917),c=n(12888),h=u(5),f=u(6),p=0,m=function(e){return e._l||(e._l=new _)},_=function(){this.a=[]},g=function(e,t){return h(e.a,(function(e){return e[0]===t}))};_.prototype={get:function(e){var t=g(this,e);if(t)return t[1]},has:function(e){return!!g(this,e)},set:function(e,t){var n=g(this,e);n?n[1]=t:this.a.push([e,t])},delete:function(e){var t=f(this.a,(function(t){return t[0]===e}));return~t&&this.a.splice(t,1),!!~t}},e.exports={getConstructor:function(e,t,n,i){var u=e((function(e,r){s(e,u,t,"_i"),e._t=t,e._i=p++,e._l=void 0,null!=r&&l(r,n,e[i],e)}));return r(u.prototype,{delete:function(e){if(!o(e))return!1;var n=a(e);return!0===n?m(c(this,t)).delete(e):n&&d(n,this._i)&&delete n[this._i]},has:function(e){if(!o(e))return!1;var n=a(e);return!0===n?m(c(this,t)).has(e):n&&d(n,this._i)}}),u},def:function(e,t,n){var r=a(i(t),!0);return!0===r?m(e).set(t,n):r[e._i]=n,e},ufstore:m}},58933:(e,t,n)=>{"use strict";var r=n(67526),a=n(92127),i=n(28859),o=n(96065),s=n(12988),l=n(48790),u=n(16440),d=n(43305),c=n(79448),h=n(98931),f=n(3844),p=n(98880);e.exports=function(e,t,n,m,_,g){var v=r[e],y=v,b=_?"set":"add",M=y&&y.prototype,w={},k=function(e){var t=M[e];i(M,e,"delete"==e||"has"==e?function(e){return!(g&&!d(e))&&t.call(this,0===e?0:e)}:"get"==e?function(e){return g&&!d(e)?void 0:t.call(this,0===e?0:e)}:"add"==e?function(e){return t.call(this,0===e?0:e),this}:function(e,n){return t.call(this,0===e?0:e,n),this})};if("function"==typeof y&&(g||M.forEach&&!c((function(){(new y).entries().next()})))){var x=new y,L=x[b](g?{}:-0,1)!=x,D=c((function(){x.has(1)})),Y=h((function(e){new y(e)})),S=!g&&c((function(){for(var e=new y,t=5;t--;)e[b](t,t);return!e.has(-0)}));Y||((y=t((function(t,n){u(t,y,e);var r=p(new v,t,y);return null!=n&&l(n,_,r[b],r),r}))).prototype=M,M.constructor=y),(D||S)&&(k("delete"),k("has"),_&&k("get")),(S||L)&&k(b),g&&M.clear&&delete M.clear}else y=m.getConstructor(t,e,_,b),o(y.prototype,n),s.NEED=!0;return f(y,e),w[e]=y,a(a.G+a.W+a.F*(y!=v),w),g||m.setStrong(y,e,_),y}},56094:e=>{var t=e.exports={version:"2.6.12"};"number"==typeof __e&&(__e=t)},67227:(e,t,n)=>{"use strict";var r=n(47967),a=n(11996);e.exports=function(e,t,n){t in e?r.f(e,t,a(0,n)):e[t]=n}},35052:(e,t,n)=>{var r=n(63387);e.exports=function(e,t,n){if(r(e),void 0===t)return e;switch(n){case 1:return function(n){return e.call(t,n)};case 2:return function(n,r){return e.call(t,n,r)};case 3:return function(n,r,a){return e.call(t,n,r,a)}}return function(){return e.apply(t,arguments)}}},55385:(e,t,n)=>{"use strict";var r=n(79448),a=Date.prototype.getTime,i=Date.prototype.toISOString,o=function(e){return e>9?e:"0"+e};e.exports=r((function(){return"0385-07-25T07:06:39.999Z"!=i.call(new Date(-50000000000001))}))||!r((function(){i.call(new Date(NaN))}))?function(){if(!isFinite(a.call(this)))throw RangeError("Invalid time value");var e=this,t=e.getUTCFullYear(),n=e.getUTCMilliseconds(),r=t<0?"-":t>9999?"+":"";return r+("00000"+Math.abs(t)).slice(r?-6:-4)+"-"+o(e.getUTCMonth()+1)+"-"+o(e.getUTCDate())+"T"+o(e.getUTCHours())+":"+o(e.getUTCMinutes())+":"+o(e.getUTCSeconds())+"."+(n>99?n:"0"+o(n))+"Z"}:i},20107:(e,t,n)=>{"use strict";var r=n(4228),a=n(83048),i="number";e.exports=function(e){if("string"!==e&&e!==i&&"default"!==e)throw TypeError("Incorrect hint");return a(r(this),e!=i)}},3344:e=>{e.exports=function(e){if(null==e)throw TypeError("Can't call method on "+e);return e}},1763:(e,t,n)=>{e.exports=!n(79448)((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},46034:(e,t,n)=>{var r=n(43305),a=n(67526).document,i=r(a)&&r(a.createElement);e.exports=function(e){return i?a.createElement(e):{}}},86140:e=>{e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},15969:(e,t,n)=>{var r=n(51311),a=n(1060),i=n(8449);e.exports=function(e){var t=r(e),n=a.f;if(n)for(var o,s=n(e),l=i.f,u=0;s.length>u;)l.call(e,o=s[u++])&&t.push(o);return t}},92127:(e,t,n)=>{var r=n(67526),a=n(56094),i=n(33341),o=n(28859),s=n(35052),l="prototype",u=function(e,t,n){var d,c,h,f,p=e&u.F,m=e&u.G,_=e&u.S,g=e&u.P,v=e&u.B,y=m?r:_?r[t]||(r[t]={}):(r[t]||{})[l],b=m?a:a[t]||(a[t]={}),M=b[l]||(b[l]={});for(d in m&&(n=t),n)h=((c=!p&&y&&void 0!==y[d])?y:n)[d],f=v&&c?s(h,r):g&&"function"==typeof h?s(Function.call,h):h,y&&o(y,d,h,e&u.U),b[d]!=h&&i(b,d,f),g&&M[d]!=h&&(M[d]=h)};r.core=a,u.F=1,u.G=2,u.S=4,u.P=8,u.B=16,u.W=32,u.U=64,u.R=128,e.exports=u},25203:(e,t,n)=>{var r=n(67574)("match");e.exports=function(e){var t=/./;try{"/./"[e](t)}catch(n){try{return t[r]=!1,!"/./"[e](t)}catch(e){}}return!0}},79448:e=>{e.exports=function(e){try{return!!e()}catch(e){return!0}}},69228:(e,t,n)=>{"use strict";n(94116);var r=n(28859),a=n(33341),i=n(79448),o=n(3344),s=n(67574),l=n(69600),u=s("species"),d=!i((function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:"7"},e},"7"!=="".replace(e,"$")})),c=function(){var e=/(?:)/,t=e.exec;e.exec=function(){return t.apply(this,arguments)};var n="ab".split(e);return 2===n.length&&"a"===n[0]&&"b"===n[1]}();e.exports=function(e,t,n){var h=s(e),f=!i((function(){var t={};return t[h]=function(){return 7},7!=""[e](t)})),p=f?!i((function(){var t=!1,n=/a/;return n.exec=function(){return t=!0,null},"split"===e&&(n.constructor={},n.constructor[u]=function(){return n}),n[h](""),!t})):void 0;if(!f||!p||"replace"===e&&!d||"split"===e&&!c){var m=/./[h],_=n(o,h,""[e],(function(e,t,n,r,a){return t.exec===l?f&&!a?{done:!0,value:m.call(t,n,r)}:{done:!0,value:e.call(n,t,r)}:{done:!1}})),g=_[0],v=_[1];r(String.prototype,e,g),a(RegExp.prototype,h,2==t?function(e,t){return v.call(e,this,t)}:function(e){return v.call(e,this)})}}},1158:(e,t,n)=>{"use strict";var r=n(4228);e.exports=function(){var e=r(this),t="";return e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),e.unicode&&(t+="u"),e.sticky&&(t+="y"),t}},62322:(e,t,n)=>{"use strict";var r=n(77981),a=n(43305),i=n(81485),o=n(35052),s=n(67574)("isConcatSpreadable");e.exports=function e(t,n,l,u,d,c,h,f){for(var p,m,_=d,g=0,v=!!h&&o(h,f,3);g0)_=e(t,n,p,i(p.length),_,c-1)-1;else{if(_>=9007199254740991)throw TypeError();t[_]=p}_++}g++}return _}},48790:(e,t,n)=>{var r=n(35052),a=n(97368),i=n(1508),o=n(4228),s=n(81485),l=n(20762),u={},d={},c=e.exports=function(e,t,n,c,h){var f,p,m,_,g=h?function(){return e}:l(e),v=r(n,c,t?2:1),y=0;if("function"!=typeof g)throw TypeError(e+" is not iterable!");if(i(g)){for(f=s(e.length);f>y;y++)if((_=t?v(o(p=e[y])[0],p[1]):v(e[y]))===u||_===d)return _}else for(m=g.call(e);!(p=m.next()).done;)if((_=a(m,v,p.value,t))===u||_===d)return _};c.BREAK=u,c.RETURN=d},49461:(e,t,n)=>{e.exports=n(44556)("native-function-to-string",Function.toString)},67526:e=>{var t=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=t)},57917:e=>{var t={}.hasOwnProperty;e.exports=function(e,n){return t.call(e,n)}},33341:(e,t,n)=>{var r=n(47967),a=n(11996);e.exports=n(1763)?function(e,t,n){return r.f(e,t,a(1,n))}:function(e,t,n){return e[t]=n,e}},61308:(e,t,n)=>{var r=n(67526).document;e.exports=r&&r.documentElement},22956:(e,t,n)=>{e.exports=!n(1763)&&!n(79448)((function(){return 7!=Object.defineProperty(n(46034)("div"),"a",{get:function(){return 7}}).a}))},98880:(e,t,n)=>{var r=n(43305),a=n(25170).set;e.exports=function(e,t,n){var i,o=t.constructor;return o!==n&&"function"==typeof o&&(i=o.prototype)!==n.prototype&&r(i)&&a&&a(e,i),e}},24877:e=>{e.exports=function(e,t,n){var r=void 0===n;switch(t.length){case 0:return r?e():e.call(n);case 1:return r?e(t[0]):e.call(n,t[0]);case 2:return r?e(t[0],t[1]):e.call(n,t[0],t[1]);case 3:return r?e(t[0],t[1],t[2]):e.call(n,t[0],t[1],t[2]);case 4:return r?e(t[0],t[1],t[2],t[3]):e.call(n,t[0],t[1],t[2],t[3])}return e.apply(n,t)}},61249:(e,t,n)=>{var r=n(55089);e.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==r(e)?e.split(""):Object(e)}},1508:(e,t,n)=>{var r=n(60906),a=n(67574)("iterator"),i=Array.prototype;e.exports=function(e){return void 0!==e&&(r.Array===e||i[a]===e)}},77981:(e,t,n)=>{var r=n(55089);e.exports=Array.isArray||function(e){return"Array"==r(e)}},33842:(e,t,n)=>{var r=n(43305),a=Math.floor;e.exports=function(e){return!r(e)&&isFinite(e)&&a(e)===e}},43305:e=>{e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},95411:(e,t,n)=>{var r=n(43305),a=n(55089),i=n(67574)("match");e.exports=function(e){var t;return r(e)&&(void 0!==(t=e[i])?!!t:"RegExp"==a(e))}},97368:(e,t,n)=>{var r=n(4228);e.exports=function(e,t,n,a){try{return a?t(r(n)[0],n[1]):t(n)}catch(t){var i=e.return;throw void 0!==i&&r(i.call(e)),t}}},6032:(e,t,n)=>{"use strict";var r=n(84719),a=n(11996),i=n(3844),o={};n(33341)(o,n(67574)("iterator"),(function(){return this})),e.exports=function(e,t,n){e.prototype=r(o,{next:a(1,n)}),i(e,t+" Iterator")}},98175:(e,t,n)=>{"use strict";var r=n(22750),a=n(92127),i=n(28859),o=n(33341),s=n(60906),l=n(6032),u=n(3844),d=n(40627),c=n(67574)("iterator"),h=!([].keys&&"next"in[].keys()),f="keys",p="values",m=function(){return this};e.exports=function(e,t,n,_,g,v,y){l(n,t,_);var b,M,w,k=function(e){if(!h&&e in Y)return Y[e];switch(e){case f:case p:return function(){return new n(this,e)}}return function(){return new n(this,e)}},x=t+" Iterator",L=g==p,D=!1,Y=e.prototype,S=Y[c]||Y["@@iterator"]||g&&Y[g],T=S||k(g),C=g?L?k("entries"):T:void 0,O="Array"==t&&Y.entries||S;if(O&&(w=d(O.call(new e)))!==Object.prototype&&w.next&&(u(w,x,!0),r||"function"==typeof w[c]||o(w,c,m)),L&&S&&S.name!==p&&(D=!0,T=function(){return S.call(this)}),r&&!y||!h&&!D&&Y[c]||o(Y,c,T),s[t]=T,s[x]=m,g)if(b={values:L?T:k(p),keys:v?T:k(f),entries:C},y)for(M in b)M in Y||i(Y,M,b[M]);else a(a.P+a.F*(h||D),t,b);return b}},98931:(e,t,n)=>{var r=n(67574)("iterator"),a=!1;try{var i=[7][r]();i.return=function(){a=!0},Array.from(i,(function(){throw 2}))}catch(e){}e.exports=function(e,t){if(!t&&!a)return!1;var n=!1;try{var i=[7],o=i[r]();o.next=function(){return{done:n=!0}},i[r]=function(){return o},e(i)}catch(e){}return n}},74970:e=>{e.exports=function(e,t){return{value:t,done:!!e}}},60906:e=>{e.exports={}},22750:e=>{e.exports=!1},75551:e=>{var t=Math.expm1;e.exports=!t||t(10)>22025.465794806718||t(10)<22025.465794806718||-2e-17!=t(-2e-17)?function(e){return 0==(e=+e)?e:e>-1e-6&&e<1e-6?e+e*e/2:Math.exp(e)-1}:t},72122:(e,t,n)=>{var r=n(3733),a=Math.pow,i=a(2,-52),o=a(2,-23),s=a(2,127)*(2-o),l=a(2,-126);e.exports=Math.fround||function(e){var t,n,a=Math.abs(e),u=r(e);return as||n!=n?u*(1/0):u*n}},71473:e=>{e.exports=Math.log1p||function(e){return(e=+e)>-1e-8&&e<1e-8?e-e*e/2:Math.log(1+e)}},3733:e=>{e.exports=Math.sign||function(e){return 0==(e=+e)||e!=e?e:e<0?-1:1}},12988:(e,t,n)=>{var r=n(4415)("meta"),a=n(43305),i=n(57917),o=n(47967).f,s=0,l=Object.isExtensible||function(){return!0},u=!n(79448)((function(){return l(Object.preventExtensions({}))})),d=function(e){o(e,r,{value:{i:"O"+ ++s,w:{}}})},c=e.exports={KEY:r,NEED:!1,fastKey:function(e,t){if(!a(e))return"symbol"==typeof e?e:("string"==typeof e?"S":"P")+e;if(!i(e,r)){if(!l(e))return"F";if(!t)return"E";d(e)}return e[r].i},getWeak:function(e,t){if(!i(e,r)){if(!l(e))return!0;if(!t)return!1;d(e)}return e[r].w},onFreeze:function(e){return u&&c.NEED&&l(e)&&!i(e,r)&&d(e),e}}},31384:(e,t,n)=>{var r=n(67526),a=n(2780).set,i=r.MutationObserver||r.WebKitMutationObserver,o=r.process,s=r.Promise,l="process"==n(55089)(o);e.exports=function(){var e,t,n,u=function(){var r,a;for(l&&(r=o.domain)&&r.exit();e;){a=e.fn,e=e.next;try{a()}catch(r){throw e?n():t=void 0,r}}t=void 0,r&&r.enter()};if(l)n=function(){o.nextTick(u)};else if(!i||r.navigator&&r.navigator.standalone)if(s&&s.resolve){var d=s.resolve(void 0);n=function(){d.then(u)}}else n=function(){a.call(r,u)};else{var c=!0,h=document.createTextNode("");new i(u).observe(h,{characterData:!0}),n=function(){h.data=c=!c}}return function(r){var a={fn:r,next:void 0};t&&(t.next=a),e||(e=a,n()),t=a}}},24258:(e,t,n)=>{"use strict";var r=n(63387);function a(e){var t,n;this.promise=new e((function(e,r){if(void 0!==t||void 0!==n)throw TypeError("Bad Promise constructor");t=e,n=r})),this.resolve=r(t),this.reject=r(n)}e.exports.f=function(e){return new a(e)}},28206:(e,t,n)=>{"use strict";var r=n(1763),a=n(51311),i=n(1060),o=n(8449),s=n(18270),l=n(61249),u=Object.assign;e.exports=!u||n(79448)((function(){var e={},t={},n=Symbol(),r="abcdefghijklmnopqrst";return e[n]=7,r.split("").forEach((function(e){t[e]=e})),7!=u({},e)[n]||Object.keys(u({},t)).join("")!=r}))?function(e,t){for(var n=s(e),u=arguments.length,d=1,c=i.f,h=o.f;u>d;)for(var f,p=l(arguments[d++]),m=c?a(p).concat(c(p)):a(p),_=m.length,g=0;_>g;)f=m[g++],r&&!h.call(p,f)||(n[f]=p[f]);return n}:u},84719:(e,t,n)=>{var r=n(4228),a=n(21626),i=n(86140),o=n(40766)("IE_PROTO"),s=function(){},l="prototype",u=function(){var e,t=n(46034)("iframe"),r=i.length;for(t.style.display="none",n(61308).appendChild(t),t.src="javascript:",(e=t.contentWindow.document).open(),e.write(" \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/attachment/attachment-item.vue b/packages/Webkul/UI/src/Resources/assets/js/components/attachment/attachment-item.vue deleted file mode 100755 index 35cf1ab07..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/attachment/attachment-item.vue +++ /dev/null @@ -1,98 +0,0 @@ - - - diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/attachment/attachment-wrapper.vue b/packages/Webkul/UI/src/Resources/assets/js/components/attachment/attachment-wrapper.vue deleted file mode 100755 index 3171559dc..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/attachment/attachment-wrapper.vue +++ /dev/null @@ -1,140 +0,0 @@ - - - - - diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/bar-chart.vue b/packages/Webkul/UI/src/Resources/assets/js/components/bar-chart.vue deleted file mode 100644 index 7ee88ff15..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/bar-chart.vue +++ /dev/null @@ -1,92 +0,0 @@ - - - \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/color-picker.vue b/packages/Webkul/UI/src/Resources/assets/js/components/color-picker.vue deleted file mode 100644 index 9f5ba057c..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/color-picker.vue +++ /dev/null @@ -1,155 +0,0 @@ - - - - - diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/datagrid/datetime.vue b/packages/Webkul/UI/src/Resources/assets/js/components/datagrid/datetime.vue deleted file mode 100755 index b4cf9df7a..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/datagrid/datetime.vue +++ /dev/null @@ -1,38 +0,0 @@ - - - diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/datagrid/filters.vue b/packages/Webkul/UI/src/Resources/assets/js/components/datagrid/filters.vue deleted file mode 100644 index 047328887..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/datagrid/filters.vue +++ /dev/null @@ -1,897 +0,0 @@ - - - diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/datagrid/pagination.vue b/packages/Webkul/UI/src/Resources/assets/js/components/datagrid/pagination.vue deleted file mode 100644 index 5192d8c1d..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/datagrid/pagination.vue +++ /dev/null @@ -1,95 +0,0 @@ - - - diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/datagrid/side-filter.vue b/packages/Webkul/UI/src/Resources/assets/js/components/datagrid/side-filter.vue deleted file mode 100644 index cfb39622c..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/datagrid/side-filter.vue +++ /dev/null @@ -1,333 +0,0 @@ - - - diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/datagrid/table-body.vue b/packages/Webkul/UI/src/Resources/assets/js/components/datagrid/table-body.vue deleted file mode 100644 index c2847a4a5..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/datagrid/table-body.vue +++ /dev/null @@ -1,215 +0,0 @@ - - - diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/datagrid/table-head.vue b/packages/Webkul/UI/src/Resources/assets/js/components/datagrid/table-head.vue deleted file mode 100644 index 0d1d5a06d..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/datagrid/table-head.vue +++ /dev/null @@ -1,109 +0,0 @@ - - - diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/datagrid/table.vue b/packages/Webkul/UI/src/Resources/assets/js/components/datagrid/table.vue deleted file mode 100644 index 48877e7fd..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/datagrid/table.vue +++ /dev/null @@ -1,240 +0,0 @@ - - - - - diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/date-range-basic.vue b/packages/Webkul/UI/src/Resources/assets/js/components/date-range-basic.vue deleted file mode 100644 index bb4bf6cae..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/date-range-basic.vue +++ /dev/null @@ -1,85 +0,0 @@ - - - diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/date-range.vue b/packages/Webkul/UI/src/Resources/assets/js/components/date-range.vue deleted file mode 100644 index 44e34b4bb..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/date-range.vue +++ /dev/null @@ -1,143 +0,0 @@ - - - diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/date.vue b/packages/Webkul/UI/src/Resources/assets/js/components/date.vue deleted file mode 100755 index 699ec4fce..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/date.vue +++ /dev/null @@ -1,62 +0,0 @@ - - - diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/datetime.vue b/packages/Webkul/UI/src/Resources/assets/js/components/datetime.vue deleted file mode 100755 index ff54427e6..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/datetime.vue +++ /dev/null @@ -1,45 +0,0 @@ - - - \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/drawer.vue b/packages/Webkul/UI/src/Resources/assets/js/components/drawer.vue deleted file mode 100755 index a6e533d17..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/drawer.vue +++ /dev/null @@ -1,83 +0,0 @@ - - - \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/flash-wrapper.vue b/packages/Webkul/UI/src/Resources/assets/js/components/flash-wrapper.vue deleted file mode 100755 index 94392b1cf..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/flash-wrapper.vue +++ /dev/null @@ -1,40 +0,0 @@ - - - \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/flash.vue b/packages/Webkul/UI/src/Resources/assets/js/components/flash.vue deleted file mode 100755 index 6fcbcc0ea..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/flash.vue +++ /dev/null @@ -1,38 +0,0 @@ - - - \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/image/image-item.vue b/packages/Webkul/UI/src/Resources/assets/js/components/image/image-item.vue deleted file mode 100755 index 366ff9a46..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/image/image-item.vue +++ /dev/null @@ -1,82 +0,0 @@ - - - diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/image/image-upload.vue b/packages/Webkul/UI/src/Resources/assets/js/components/image/image-upload.vue deleted file mode 100755 index afff0d841..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/image/image-upload.vue +++ /dev/null @@ -1,86 +0,0 @@ - - - - - diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/image/image-wrapper.vue b/packages/Webkul/UI/src/Resources/assets/js/components/image/image-wrapper.vue deleted file mode 100755 index 05633ef89..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/image/image-wrapper.vue +++ /dev/null @@ -1,124 +0,0 @@ - - - diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/line-chart.vue b/packages/Webkul/UI/src/Resources/assets/js/components/line-chart.vue deleted file mode 100644 index 7b207a2de..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/line-chart.vue +++ /dev/null @@ -1,93 +0,0 @@ - - - \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/modal.vue b/packages/Webkul/UI/src/Resources/assets/js/components/modal.vue deleted file mode 100755 index 8201ff12d..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/modal.vue +++ /dev/null @@ -1,59 +0,0 @@ - - - \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/overlay-loader.vue b/packages/Webkul/UI/src/Resources/assets/js/components/overlay-loader.vue deleted file mode 100644 index e245d3701..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/overlay-loader.vue +++ /dev/null @@ -1,31 +0,0 @@ - - - \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/spinner-meter.vue b/packages/Webkul/UI/src/Resources/assets/js/components/spinner-meter.vue deleted file mode 100644 index e311f9143..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/spinner-meter.vue +++ /dev/null @@ -1,23 +0,0 @@ - - - \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/tabs/tab.vue b/packages/Webkul/UI/src/Resources/assets/js/components/tabs/tab.vue deleted file mode 100755 index 47a3a3e49..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/tabs/tab.vue +++ /dev/null @@ -1,53 +0,0 @@ - - - \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/tabs/tabs.vue b/packages/Webkul/UI/src/Resources/assets/js/components/tabs/tabs.vue deleted file mode 100755 index 0be039f6c..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/tabs/tabs.vue +++ /dev/null @@ -1,104 +0,0 @@ - - - \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/time.vue b/packages/Webkul/UI/src/Resources/assets/js/components/time.vue deleted file mode 100644 index 6932f9105..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/time.vue +++ /dev/null @@ -1,39 +0,0 @@ - - - \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/trans.js b/packages/Webkul/UI/src/Resources/assets/js/components/trans.js deleted file mode 100644 index 56fc2ce05..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/trans.js +++ /dev/null @@ -1,24 +0,0 @@ -module.exports = { - methods: { - /** - * Translate the given key. - */ - __(key, params) { - let splitedKey = key.split('.'); - let translation = window._translations; - - splitedKey.forEach(key => { - translation = translation[key]; - }); - - if (params) { - Object.keys(params).forEach(key => { - let value = params[key]; - translation = translation.replace(`:${key}`, value); - }); - } - - return translation - } - }, -} \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/tree-view/index.js b/packages/Webkul/UI/src/Resources/assets/js/components/tree-view/index.js deleted file mode 100755 index cf27a01b5..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/tree-view/index.js +++ /dev/null @@ -1 +0,0 @@ -export { default as Treeview } from './tree-view'; \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/tree-view/tree-checkbox.vue b/packages/Webkul/UI/src/Resources/assets/js/components/tree-view/tree-checkbox.vue deleted file mode 100755 index ea14a47a3..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/tree-view/tree-checkbox.vue +++ /dev/null @@ -1,91 +0,0 @@ - - - \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/tree-view/tree-item.vue b/packages/Webkul/UI/src/Resources/assets/js/components/tree-view/tree-item.vue deleted file mode 100755 index 60ec1d991..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/tree-view/tree-item.vue +++ /dev/null @@ -1,257 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/tree-view/tree-radio.vue b/packages/Webkul/UI/src/Resources/assets/js/components/tree-view/tree-radio.vue deleted file mode 100755 index 6a62a4584..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/tree-view/tree-radio.vue +++ /dev/null @@ -1,25 +0,0 @@ - - - \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/components/tree-view/tree-view.vue b/packages/Webkul/UI/src/Resources/assets/js/components/tree-view/tree-view.vue deleted file mode 100755 index ba8511895..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/components/tree-view/tree-view.vue +++ /dev/null @@ -1,128 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/debounce.js b/packages/Webkul/UI/src/Resources/assets/js/debounce.js deleted file mode 100644 index 28c6eb038..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/debounce.js +++ /dev/null @@ -1,13 +0,0 @@ -module.exports = function debounce (fn, delay) { - var timeoutID = null - - return function () { - clearTimeout(timeoutID) - var args = arguments; - var that = this; - - timeoutID = setTimeout(function () { - fn.apply(that, args) - }, delay) - } -} \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/directives/alert.vue b/packages/Webkul/UI/src/Resources/assets/js/directives/alert.vue deleted file mode 100755 index 3fc30763b..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/directives/alert.vue +++ /dev/null @@ -1,18 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/directives/code.vue b/packages/Webkul/UI/src/Resources/assets/js/directives/code.vue deleted file mode 100755 index 473121418..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/directives/code.vue +++ /dev/null @@ -1,16 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/directives/debounce.vue b/packages/Webkul/UI/src/Resources/assets/js/directives/debounce.vue deleted file mode 100644 index 7b0f35e64..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/directives/debounce.vue +++ /dev/null @@ -1,13 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/directives/slugify-target.vue b/packages/Webkul/UI/src/Resources/assets/js/directives/slugify-target.vue deleted file mode 100755 index e96a56650..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/directives/slugify-target.vue +++ /dev/null @@ -1,26 +0,0 @@ - diff --git a/packages/Webkul/UI/src/Resources/assets/js/directives/slugify.vue b/packages/Webkul/UI/src/Resources/assets/js/directives/slugify.vue deleted file mode 100755 index f80ab5eb6..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/directives/slugify.vue +++ /dev/null @@ -1,23 +0,0 @@ - \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/dropdown.js b/packages/Webkul/UI/src/Resources/assets/js/dropdown.js deleted file mode 100755 index b55398026..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/dropdown.js +++ /dev/null @@ -1,93 +0,0 @@ -$(function() { - $(document).click(function(e) { - var target = e.target; - - if (! $(target).parents('.dropdown-open').length || $(target).is('li') || $(target).is('a')) { - $('.dropdown-list').hide(); - $('.dropdown-toggle').removeClass('active'); - } - }); - - $('body').delegate('.dropdown-toggle', 'click', function(e) { - toggleDropdown(e); - }); - - function toggleDropdown(e) { - var currentElement = $(e.currentTarget); - - $('.dropdown-list').hide(); - - if (currentElement.hasClass('active')) { - currentElement.removeClass('active'); - } else { - currentElement.addClass('active'); - currentElement.parent().find('.dropdown-list').fadeIn(100); - currentElement.parent().addClass('dropdown-open'); - autoDropupDropdown(); - } - } - - $('.dropdown-list .search-box .control').on('input', function() { - var currentElement = $(this); - - currentElement.parents(".dropdown-list").find('li').each(function() { - var text = $(this).text().trim().toLowerCase(); - var value = $(this).attr('data-id'); - - if (value) { - var isTextContained = text.search(currentElement.val().toLowerCase()); - var isValueContained = value.search(currentElement.val()); - - if (isTextContained < 0 && isValueContained < 0) { - $(this).hide(); - } else { - $(this).show(); - flag = 1; - } - } else { - var isTextContained = text.search(currentElement.val().toLowerCase()); - - if(isTextContained < 0) { - $(this).hide(); - } else { - $(this).show(); - } - } - }); - }); - - function autoDropupDropdown() { - dropdown = $(".dropdown-open"); - - if (! dropdown.find('.dropdown-list').hasClass('top-left') && ! dropdown.find('.dropdown-list').hasClass('top-right') && dropdown.length) { - dropdown = dropdown.find('.dropdown-list'); - height = dropdown.height() + 50; - var topOffset = dropdown.offset().top - 70; - var bottomOffset = $(window).height() - topOffset - dropdown.height(); - - if (bottomOffset > topOffset || height < bottomOffset) { - dropdown.removeClass("bottom"); - - if(dropdown.hasClass('top-right')) { - dropdown.removeClass('top-right') - dropdown.addClass('bottom-right') - } else if(dropdown.hasClass('top-left')) { - dropdown.removeClass('top-left') - dropdown.addClass('bottom-left') - } - } else { - if(dropdown.hasClass('bottom-right')) { - dropdown.removeClass('bottom-right') - dropdown.addClass('top-right') - } else if(dropdown.hasClass('bottom-left')) { - dropdown.removeClass('bottom-left') - dropdown.addClass('top-left') - } - } - } - } - - $('div').scroll(function() { - autoDropupDropdown() - }); -}); \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/store/actions.js b/packages/Webkul/UI/src/Resources/assets/js/store/actions.js deleted file mode 100644 index 1043ed223..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/store/actions.js +++ /dev/null @@ -1,29 +0,0 @@ -const toggleSidebarFilter = ({state}) => { - state.sidebarFilter = ! state.sidebarFilter; - - $('.sidebar-filter').toggleClass('show'); -}; - -const updateFilterValues = ({commit}, payload) => { - commit('UPDATE_FILTER_VALUES', payload); -}; - -const selectAllRows = ({commit}, payload) => { - commit('SELECT_ALL_ROWS', payload); -}; - -const selectTableRow = ({commit}, payload) => { - commit('SELECT_TABLE_ROW', payload); -}; - -const updateTableData = ({state}, payload) => { - state.tableData = payload; -}; - -export default { - toggleSidebarFilter, - updateFilterValues, - selectAllRows, - selectTableRow, - updateTableData -}; diff --git a/packages/Webkul/UI/src/Resources/assets/js/store/index.js b/packages/Webkul/UI/src/Resources/assets/js/store/index.js deleted file mode 100644 index 6d304059a..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/store/index.js +++ /dev/null @@ -1,12 +0,0 @@ -import Vuex from "vuex"; -import state from './state'; -import actions from './actions'; -import mutations from './mutations'; - -const store = new Vuex.Store({ - state, - actions, - mutations -}); - -export default store; \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/js/store/mutations.js b/packages/Webkul/UI/src/Resources/assets/js/store/mutations.js deleted file mode 100644 index da44a8cfd..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/store/mutations.js +++ /dev/null @@ -1,58 +0,0 @@ -const UPDATE_FILTER_VALUES = (state, payload) => { - var key = payload?.key || null; - - if (key) { - for (const filterKey in state.tableData.columns) { - if (filterKey == key) { - key = state.tableData.columns[filterKey].index; - state.tableData.columns[filterKey].values = payload.values; - } - } - } - - EventBus.$emit('updateFilter', { - key, - value: payload?.values?.toString(), - cond: payload?.condition || 'in', - }); -}; - -const SELECT_ALL_ROWS = (state, payload) => { - if (! (payload && state.selectedTableRows.length > 0)) { - state.selectedTableRows = []; - - state.allSelected = payload || ! state.allSelected; - - state.tableData.records.data.forEach(row => { - if (state.allSelected) { - state.selectedTableRows.push(row.id); - } - }); - } else { - state.selectedTableRows = []; - state.allSelected = false; - } -}; - -const SELECT_TABLE_ROW = (state, payload) => { - var isExisting = false; - - state.selectedTableRows.forEach((rowId, index) => { - if (rowId == payload) { - isExisting = true; - state.selectedTableRows.splice(index, 1); - } - }); - - if (! isExisting) { - state.selectedTableRows.push(payload); - } - - state.allSelected = (state.tableData.records.data.length == state.selectedTableRows.length); -}; - -export default { - UPDATE_FILTER_VALUES, - SELECT_ALL_ROWS, - SELECT_TABLE_ROW, -}; diff --git a/packages/Webkul/UI/src/Resources/assets/js/store/state.js b/packages/Webkul/UI/src/Resources/assets/js/store/state.js deleted file mode 100644 index c712b7dd6..000000000 --- a/packages/Webkul/UI/src/Resources/assets/js/store/state.js +++ /dev/null @@ -1,59 +0,0 @@ -var state = { - filters: {}, - tableData: { - records: { - data: {} - }, - - columns: [], - - actions: [], - - tabFilters: [], - - massactions: [], - - paginationData: { - has_pages: false - } - }, - allSelected: false, - sidebarFilter: false, - selectedTableRows: [], - filterData: { - deal_amount_range: { - label: 'Deal Amount Range', - type: 'integer_range', - values: ['1000', '50000'], - }, - contact_person: { - label: 'Contact Person', - type: 'add', - placeholder: 'Add Person', - input_field_placeholder: 'Enter Person', - values: ['Shubham', 'Webkul'], - }, - date_range: { - label: 'Date Range', - type: 'date_range', - values: ['2021-04-02', '2021-04-03'], - }, - status: { - label: 'Status', - type: 'dropdown', - placeholder: 'Select Status', - values: ['Won', 'Lost'], - options: ['Won', 'Lost'] - }, - phone_number: { - label: 'Phone', - type: 'add', - placeholder: 'Add Number', - input_field_placeholder: 'Enter Number', - values: ['987654321', '987654321'], - }, - }, - customTabFilter: false, -}; - -export default state; \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/sass/_mixins.scss b/packages/Webkul/UI/src/Resources/assets/sass/_mixins.scss deleted file mode 100644 index 283293dbd..000000000 --- a/packages/Webkul/UI/src/Resources/assets/sass/_mixins.scss +++ /dev/null @@ -1,26 +0,0 @@ -// Mixins -@mixin box-shadow($shadows...) { - -webkit-box-shadow: $shadows; - -moz-box-shadow: $shadows; - box-shadow: $shadows; -} - -@mixin border-radius($radius) { - -webkit-border-radius: $radius; - -moz-border-radius: $radius; - -ms-border-radius: $radius; - border-radius: $radius; -} - -@mixin user-select($value) { - -webkit-user-select: $value; /* Chrome all / Safari all */ - -moz-user-select: $value; /* Firefox all */ - -ms-user-select: $value; /* IE 10+ */ - user-select: $value; /* Likely future */ -} - -@mixin display-grid($colums) { - display: grid; - align-items: center; - grid-template-columns: $colums; -} \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/sass/_variables.scss b/packages/Webkul/UI/src/Resources/assets/sass/_variables.scss deleted file mode 100644 index 1c977fab1..000000000 --- a/packages/Webkul/UI/src/Resources/assets/sass/_variables.scss +++ /dev/null @@ -1,31 +0,0 @@ -// Typography -$font-color: #263238; -$secondary-font-color: #546E7A; -$font-family: 'Roboto'; -$font-size-xxl: 24px; -$font-size-xl: 20px; -$font-size-lg: 18px; -$font-size-md: 16px; -$font-size-sm: 14px; -$font-weight-regular: 400; -$font-weight-medium: 500; -$font-weight-large: 600; - -// Colors -$dark-color: #263238; -$primary-color: #0E90D9; -$secondary-color: #546E7A; -$info-color: #204d74; -$danger-color: #FF4D50; -$success-color:#53C41A; -$warning-color: #FBAD15; -$white: #FFFFFF; -$black: #000000; -$gray-color: #C1C2C3; // Can be modified -$link-color: #0E90D9; -$table-active-cell-color: #D4EDFB; -$border-color: #C1C2C3; -$light-border-color: #F7F8F9; -$control-border-color: #C7C7C7; -$brand-color: #0041FF; -$light-background-color: #F7F8F9; \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/sass/animations.scss b/packages/Webkul/UI/src/Resources/assets/sass/animations.scss deleted file mode 100755 index 3fea2cf31..000000000 --- a/packages/Webkul/UI/src/Resources/assets/sass/animations.scss +++ /dev/null @@ -1,49 +0,0 @@ -@keyframes jelly { - 0% { - transform: translateY(0px) scale(0.7); - opacity: 0; - } - 70% { - transform: translateY(5px) scale(1.05); - opacity: 1; - } - 100% { - transform: translateY(0px) scale(1); - opacity: 1; - } -} - -@keyframes jelly-out { - 0% { - transform: translateY(0px) scale(1); - opacity: 1; - } - 30% { - transform: translateY(-5px) scale(1.05); - opacity: 1; - } - 100% { - transform: translateY(0px) scale(0.7); - opacity: 0; - } -} - -@keyframes spin { - from { - transform:rotate(0deg); - } - to { - transform:rotate(360deg); - } -} - -/* Meter Spinner Animation */ -@keyframes meter-animate-before { - 0% { - transform: rotate(-45deg); - } - - 100% { - transform: rotate(315deg); - } -} \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/sass/app.scss b/packages/Webkul/UI/src/Resources/assets/sass/app.scss deleted file mode 100644 index cac1edd8c..000000000 --- a/packages/Webkul/UI/src/Resources/assets/sass/app.scss +++ /dev/null @@ -1,2153 +0,0 @@ -@import "fonts"; -@import "icons"; -@import "variables"; -@import "mixins"; -@import "animations"; -@import "rtl"; - -* { - box-sizing: border-box; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -*:focus { - outline: none; -} - -body { - color: $font-color; - font-family: $font-family; - font-size: $font-size-lg; - font-weight: $font-weight-regular; - letter-spacing: -0.26px; - line-height: 22px; - background: $white; -} - -a { - color: $link-color; - - &:link, - &:hover, - &:visited, - &:focus, - &:active { - // padding: 6px 0px; - text-decoration: none; - color: $primary-color; - } -} - -::selection { - background-color: $primary-color; - color: $white; -} - -::-webkit-input-placeholder { - color: $secondary-font-color; - opacity: 0.5; -} - -:-ms-input-placeholder { - color: $secondary-font-color; - opacity: 0.5; -} - -::placeholder { - color: $secondary-font-color; - opacity: 0.5; -} - -textarea { - resize: none; -} - -ul { - margin: 0; - padding: 0; - list-style: none; -} - -h1 { - font-size: $font-size-xxl; - font-weight: $font-weight-medium; - color: $font-color; - margin-top: 0; -} - -h2 { - font-size: $font-size-xl; - font-weight: $font-weight-medium; - color: $font-color; -} - -h3 { - font-size: $font-size-lg; - font-weight: $font-weight-medium; - color: $font-color; -} - -h4 { - font-size: $font-size-md; - font-weight: $font-weight-medium; - color: $font-color; -} - -h5 { - font-size: $font-size-sm; - font-weight: $font-weight-medium; - color: $font-color; -} - -.hide { - display: none !important; -} - -.btn { - @include border-radius(4px); - border: none; - color: $white; - cursor: pointer; - transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1); - font: inherit; - font-weight: $font-weight-medium; - display: inline-block; - border: 2px solid transparent; - padding: 10px 14px; - - &:hover, - &:active, - &:focus { - opacity: 0.75; - } - - &.btn-sm { - height: 40px; - padding: 7px 12px; - font-size: $font-size-sm; - } - - &.btn-md { - padding: 10px 14px; - } - - &.btn-lg { - padding: 12px 18px; - font-size: $font-size-xxl; - } - - &.btn-xl { - padding: 14px 22px; - font-size: $font-size-xxl; - } - - &.btn-primary { - background: $primary-color; - color: $white; - } - - &.btn-primary-outline { - background: $white; - color: $primary-color; - border: 2px solid $primary-color; - } - - &.btn-secondary { - background: $secondary-color; - color: $white; - } - - &.btn-secondary-outline { - background: $white; - color: $secondary-color; - border: 2px solid $secondary-color; - } - - &.btn-danger { - background: $danger-color; - color: $white; - } - - &.btn-danger-outline { - background: $white; - color: $danger-color; - border: 2px solid $danger-color; - } - - &.btn-success { - background: $success-color; - color: $white; - } - - &.btn-success-outline { - background: $white; - color: $success-color; - border: 2px solid $success-color; - } - - &.btn-warning { - background: $warning-color; - color: $white; - } - - &.btn-warning-outline { - background: $white; - color: $warning-color; - border: 2px solid $warning-color; - } - - &.btn-white { - background: $white; - color: $primary-color; - - &.text-black { - color: $black; - } - } - - &.btn-white-outline { - background: $white; - color: $primary-color; - border: 2px solid $primary-color; - } - - &:disabled, - &[disabled="disabled"], - &[disabled="disabled"]:hover, - &[disabled="disabled"]:active { - cursor: not-allowed; - background: #b1b1ae; - box-shadow: none; - opacity: 1; - } -} - -.dropdown-list { - width: 215px; - margin-bottom: 20px; - border: 1px solid #f0f0f0; - box-shadow: 0 2px 5px 0 rgba(39, 49, 58, 0.15); - background-color: $white; - position: absolute; - display: none; - z-index: 10; - text-align: left; - - &.bottom-left { - top: 42px; - left: 0px; - } - - &.bottom-right { - top: 42px; - right: 0px; - } - - &.top-left { - bottom: 0px; - left: 42px; - } - - &.top-right { - bottom: 0px; - right: 42px; - } - - .dropdown-container { - overflow-y: auto; - - ul { - margin: 0px; - list-style-type: none; - padding: 0px; - - li { - padding: 8px 12px; - font-size: $font-size-md; - cursor: pointer; - color: $secondary-font-color; - - a { - &:link, - &:active, - &:visited, - &:focus { - color: $secondary-font-color; - display: block; - } - } - - &:hover { - background-color: $primary-color; - color: $white; - - a { - color: $white; - } - } - } - } - } -} - -.table { - width: 100%; - overflow-x: auto !important; - - .table-header { - margin-bottom: 20px; - @include display-grid(repeat(2, auto)); - - h1 { - margin-bottom: 0; - display: inline-block; - } - - .table-action { - // display: block; - text-align: right; - - .export-import { - margin-right: 20px; - cursor: pointer; - - .icon { - width: 24px; - height: 24px; - margin-bottom: 2px; - vertical-align: middle; - } - - span { - color: $secondary-font-color; - } - } - - button { - max-height: 40px; - padding: 8px 14px; - max-height: 40px; - } - } - } - - .table-body { - .custom-design-container { - right: 25px; - width: 350px; - padding: 10px; - margin-top: 8px; - position: absolute; - background-color: $white; - border: 1px solid $border-color; - - .form-group { - margin: 20px 0; - grid-gap: 5px; - text-align: center; - @include display-grid(150px auto 150px); - - &.date { - .date-container { - display: inline-block; - - .control { - margin: 0; - height: 40px; - } - - &::after { - top: calc(50% - 2px); - } - } - } - } - - i.close-icon { - float: right; - cursor: pointer; - } - } - - .checkbox { - margin: 0; - text-overflow: unset; - } - - .empty-table { - div { - position: absolute; - top: calc(50% - 50px); - left: calc(50% - 75px); - - img { - width: 150px; - } - - span { - display: block; - margin-top: 20px; - } - } - } - } - - table { - @include border-radius(4px); - - width: 100%; - border: none; - text-align: left; - margin-top: 20px; - background: $white; - table-layout: fixed; - font-size: $font-size-md; - border-collapse: collapse; - - box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, - rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; - - th, - td { - width: 100%; - padding: 10px; - vertical-align: top; - text-overflow: ellipsis; - color: $secondary-font-color; - border-bottom: 1px solid $border-color; - } - - thead { - th { - border-right: 0px; - color: $dark-color; - cursor: not-allowed; - text-transform: capitalize; - font-weight: $font-weight-medium; - border-bottom: 1px solid rgba(193, 194, 195, 0.5); - - &.master-checkbox { - width: 41px; - text-overflow: unset; - } - - &.id { - width: 80px; - } - - &.actions { - width: 100px; - text-align: right; - - .action { - display: inline-flex; - } - - .icon { - cursor: pointer; - vertical-align: middle; - } - } - } - } - - tbody { - tr { - border-bottom: 1px solid $light-border-color; - - &.active { - background-color: $table-active-cell-color; - border-bottom: 1px solid rgba(14, 144, 217, 0.35); - } - - td { - border-right: 0px; - color: $dark-color; - border-bottom: none; - background-color: rgba(255, 255, 255, 0.5); - word-break: break-all; - - &.empty { - text-align: center; - } - - &.action-container { - a { - cursor: pointer; - } - } - - .bold { - font-weight: $font-weight-medium; - } - - &.action { - text-align: right; - - a { - cursor: pointer; - margin-right: 5px; - - &:last-child { - margin-right: 0; - } - } - } - - &.actions { - width: 100px; - text-align: right; - - .action { - display: inline-flex; - } - - .icon { - cursor: pointer; - vertical-align: middle; - } - } - - .spinner-container { - margin-top: 5px; - } - } - - &:last-child td { - border-bottom: 0; - } - - &.active, - &:hover { - td { - background-color: rgba(193, 194, 195, 0.1); - } - } - - &.no-records { - text-align: center; - } - } - } - - tfoot { - td { - font-weight: $font-weight-medium; - border-top: 1px solid rgba(193, 194, 195, 0.5); - border-bottom: none; - } - } - } - - .form-group { - width: 100%; - margin-bottom: 0px; - - .control { - width: 100%; - } - - &.datagrid-filters { - margin-bottom: 20px; - - input[type="search"].control { - margin: 0px; - width: 280px; - height: 40px; - font-size: 15px; - } - } - } - - .dropdown-container { - width: 100%; - padding: 0px; - position: relative; - margin-bottom: 0px; - - &.dropdown-list { - ul { - position: absolute; - padding: 15px; - margin-bottom: 20px; - background-color: $white; - width: 100%; - margin-top: 10px; - - li { - .form-group { - margin-bottom: 15px; - } - } - } - - .apply-filter { - padding: 10px; - width: 100%; - } - } - } - - .filtered-tags { - margin: 20px 0 0 0; - - .filter-tag { - grid-gap: 5px; - margin-right: 20px; - width: max-content; - text-transform: capitalize; - @include display-grid(repeat(2, auto)); - display: inline-grid; - - .wrapper { - font-size: 14px; - grid-gap: 10px; - color: #000311; - line-height: 40px; - padding: 0px 10px; - background: #e7e7e7; - @include border-radius(2px); - @include display-grid(auto 20px); - display: inline-grid; - - .icon.close-icon { - top: -2px; - cursor: pointer; - position: relative; - } - } - } - } - - .search-filter { - margin-right: 6px; - position: relative; - width: max-content; - display: inline-block; - - .input-search-icon { - left: 7px; - top: 10px; - z-index: 1; - position: absolute; - - ~ input[type="search"] { - padding-left: 30px; - } - } - - .control { - margin: 0; - width: 280px; - height: 40px; - font-size: 15px; - padding-left: 10px; - -webkit-appearance: none; - color: $secondary-font-color; - border: 1px solid $border-color; - } - - .contorl:focus { - border-color: $brand-color; - } - - .icon-wrapper { - width: 36px; - height: 36px; - padding: 3px; - float: right; - border-radius: 3px; - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; - border: 2px solid $control-border-color; - } - } - - .datagrid-filters { - width: 100%; - @include display-grid(repeat(2, auto)); - - .filter-right { - text-align: right; - - .pagination { - height: 40px; - margin-right: 6px; - display: inline-block; - - .page-item { - .icon { - top: 10px; - vertical-align: top; - } - } - } - - .filter-btn { - cursor: pointer; - display: inline-block; - - .grid-dropdown-header { - width: 105px; - height: 40px; - border-radius: 3px; - align-items: center; - display: inline-flex; - vertical-align: middle; - padding: 0px 7px 0px 10px; - background-color: $white; - color: $secondary-font-color; - justify-content: space-between; - font-weight: $font-weight-medium; - border: 1px solid $secondary-font-color; - - .arrow-icon-down { - float: right; - } - } - } - } - - .dropdown-filters { - margin-right: 6px; - display: inline-block; - - &.per-page { - .form-group { - grid-gap: 10px; - @include display-grid(repeat(2, auto)); - - .control { - margin: 0; - height: 40px; - border: 1px solid $gray-color; - } - } - } - } - - .form-group { - font-size: 16px; - - .control { - font-size: 16px; - } - } - } - - .tabs-container { - margin: 20px 0; - @include display-grid(repeat(2, auto)); - - .tabs-right-container { - text-align: right; - - section { - display: inline-block; - } - - .covered { - border: 1px solid; - padding: 7px ​10px; - } - - .group { - vertical-align: top; - } - } - } - - .mass-actions { - width: max-content; - display: inline-block; - - .control { - margin: 0; - height: 40px; - width: 140px; - font-size: 16px; - padding: 9px 10px; - } - - button { - height: 40px; - vertical-align: middle; - } - } -} - -.pagination { - margin-top: 20px; - - .page-item { - height: 100%; - margin-right: 5px; - background: $white; - text-decoration: none; - display: inline-block; - vertical-align: middle; - padding: 0 9px 0 9px; - font-size: $font-size-md; - border: 1px solid $border-color; - - &.previous { - border-radius: 3px 0 0 3px; - } - - &.next { - border-radius: 0 3px 3px 0; - } - - &.disabled { - cursor: not-allowed !important; - } - - &.active { - color: $white; - background: $brand-color; - border-color: $brand-color; - } - - .icon { - top: 4px; - position: relative; - vertical-align: middle; - } - } - - &.tab-view { - height: 34px; - margin-top: 0; - - .previous { - float: left; - border-right: 0; - } - - .previous, - .next { - margin: 0; - cursor: pointer; - } - } - - &.full-view { - margin-top: 120px; - } - - i, - a { - font-weight: 700; - font-size: 16px !important; - } -} - -.form-group, -.field-container { - display: block; - margin-bottom: 20px; - font-size: $font-size-lg; - color: $secondary-font-color; - width: 100%; - position: relative; - - label { - display: block; - font-size: $font-size-md; - - &.required::after { - content: "*"; - font-weight: 700; - padding-left: 4px; - color: $danger-color; - display: inline-block; - } - } - - textarea.control { - height: 100px; - padding: 10px; - } - - .control { - width: 100%; - padding: 10px; - margin-top: 10px; - margin-bottom: 5px; - background: $white; - display: inline-block; - vertical-align: middle; - font-size: $font-size-lg; - @include border-radius(3px); - color: $secondary-font-color; - border: 1px solid $border-color; - transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1); - - &:focus { - border-color: $primary-color; - } - - &[disabled="disabled"] { - border-color: $gray-color; - background-color: $gray-color; - cursor: not-allowed; - } - - &[multiple] { - height: 100px; - } - } - - .control-faker { - padding: 10px; - margin-top: 10px; - margin-bottom: 5px; - @include border-radius(3px); - border: 1px solid $border-color; - word-break: break-all; - } - - &.date, - &.datetime, - &.time { - .control { - padding-right: 40px; - } - - .date-container, - .datetime-container, - .time-container { - position: relative; - - &::after { - background-image: url("../images/calendar-icon.svg"); - width: 24px; - height: 24px; - content: ""; - margin-left: -34px; - pointer-events: none; - position: absolute; - right: 10px; - top: 29px; - margin-top: -9px; - } - } - - .time-container { - &::after { - background-image: url("../images/time-icon.svg"); - } - } - } - - .control-info { - display: block; - font-size: $font-size-md; - color: #adadad; - font-style: italic; - } - - .control-error { - display: none; - color: $danger-color; - margin-top: 5px; - } - - &.has-error { - .control:not([aria-invalid="false"]) { - border-color: $danger-color; - } - - .control-error { - width: 100%; - display: block; - } - - &.hide-error { - input { - border: 1px solid $gray-color !important; - } - - .control-error { - display: none !important; - } - } - } - - .address-left { - width: 50%; - padding-right: 5px; - float: left; - - .control { - height: 204px; - margin-bottom: 0; - } - } - - .address-right { - width: 50%; - padding-left: 5px; - display: inline-block; - - .control { - margin-bottom: 0; - } - } - - &.input-group { - margin-bottom: 0; - } - - .input-group { - position: relative; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - width: 100%; - - .input-group-append, - .input-group-prepend { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - } - - > .control, - > .date-container, - > .datetime-container { - position: relative; - -webkit-box-flex: 1; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - width: 1% !important; - - &:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - } - - &:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - } - } - > .date-container, - > .datetime-container { - &:not(:first-child) { - margin-left: 10px; - } - - &:not(:last-child) { - margin-right: 10px; - } - } - - .input-group-prepend { - margin-right: -1px; - - .control, - .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - } - } - - .input-group-append { - margin-left: -1px; - - .control, - .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - } - } - - .trash-icon { - margin-top: 21px; - margin-left: 7px; - cursor: pointer; - } - } - - .loader-active-icon { - position: absolute; - right: 4px; - top: 14px; - } -} - -.checkbox { - position: relative; - display: inline-block; - margin: 10px 5px 5px 0px; - - .checkbox-view, - .checkbox-dash { - margin: 0; - width: 24px; - height: 24px; - margin-right: 5px; - vertical-align: middle; - display: inline-block !important; - background-image: url("../images/checkbox-icon.svg"); - } - - .checkbox-dash { - background-image: url("../images/checkbox-dash-icon.svg"); - } - - input { - position: absolute; - width: 24px; - height: 24px; - opacity: 0; - z-index: 100; - - &:checked + .checkbox-view { - background-image: url("../images/checkbox-checked-icon.svg"); - } - - &:disabled + .checkbox-view { - opacity: 0.5; - cursor: not-allowed; - } - } -} - -.radio { - position: relative; - display: block; - margin: 10px 5px 5px 0px; - - .radio-view { - background-image: url("../images/radio-icon.svg"); - height: 24px; - width: 24px; - margin: 0; - display: inline-block !important; - vertical-align: middle; - margin-right: 5px; - } - - input { - position: absolute; - top: 0; - left: 0; - opacity: 0; - z-index: 100; - - &:checked + .radio-view { - background-image: url("../images/radio-checked-icon.svg"); - } - - &:disabled + .radio-view { - opacity: 0.5; - cursor: not-allowed; - } - } -} - -.form-group { - .switch { - position: relative; - display: inline-block; - width: 60px; - height: 34px; - margin-top: 10px; - margin-bottom: 5px; - - .slider { - position: absolute; - cursor: pointer; - top: 0; - left: 0; - right: 0; - bottom: 0; - background-color: $gray-color; - -webkit-transition: 0.2s; - transition: 0.2s; - - &:before { - position: absolute; - content: ""; - height: 26px; - width: 26px; - left: 4px; - bottom: 4px; - background-color: $white; - -webkit-transition: 0.2s; - transition: 0.2s; - } - - &.round { - border-radius: 34px; - } - - &.round:before { - border-radius: 50%; - } - } - - input { - opacity: 0; - width: 0; - height: 0; - - &:checked + .slider { - background-color: $primary-color; - } - - &:focus + .slider { - box-shadow: 0 0 1px $primary-color; - } - - &:checked + .slider:before { - -webkit-transform: translateX(26px); - -ms-transform: translateX(26px); - transform: translateX(26px); - } - } - } -} - -.alert-wrapper { - width: 100%; - bottom: 10px; - right: 10px; - position: fixed; - z-index: 100; - - .alert { - width: 648px; - position: relative; - left: 50%; - margin-bottom: 10px; - margin-left: -324px; - padding: 15px 44px 15px 44px; - @include border-radius(3px); - display: block; - @include box-shadow( - 0px 4px 15.36px 0.64px rgba(0, 0, 0, 0.1), - 0px 2px 6px 0px rgba(0, 0, 0, 0.12) - ); - animation: jelly 0.5s ease-in-out; - transform-origin: center top; - z-index: $font-weight-medium; - text-align: left; - - &.error { - background: $danger-color; - } - - &.info { - background: $info-color; - } - - &.success { - background: $success-color; - } - - &.warning { - background: $warning-color; - } - - .icon { - position: absolute; - - &:first-child { - left: 10px; - top: 15px; - } - - &:last-child { - right: 10px; - top: 10px; - cursor: pointer; - } - } - - p { - color: $white; - margin: 0px; - font-size: $font-size-md; - } - } -} - -.tabs { - ul { - li { - display: inline-block; - - a { - color: $secondary-font-color; - font-weight: $font-weight-medium; - cursor: pointer; - padding: 10px 30px; - text-align: center; - display: block; - @include user-select(none); - } - - &.has-error { - a { - color: $danger-color; - } - } - - &.active a { - color: $primary-color; - box-shadow: inset 0px -2px 0px $primary-color; - } - } - } -} - -.tabs-content { - border: none; - padding: 30px; - background: $white; - box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, - rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; -} - -.pill { - height: 34px; - display: inline-block; - - .tabs { - ul { - li { - font-size: $font-size-md; - - &:first-child { - a { - padding-left: 0px; - } - } - - a { - padding: 6px 15px; - } - - &.active { - a { - color: $white; - padding: 5px 15px; - border-radius: 22px; - background: $primary-color; - } - } - } - } - } -} - -.group { - height: 34px; - display: inline-block; - - .tabs { - ul { - li { - font-size: $font-size-md; - border: 1px solid $border-color; - - &:not(:last-child) { - border-right: 0px; - } - - &.active { - background: $primary-color; - border-radius: 0 !important; - - a { - color: $white; - } - } - - a { - padding: 5px 10px; - } - } - } - } -} - -accordian, -.accordian { - display: inline-block; - width: 100%; - - .accordian-header, - div[slot*="header"] { - width: 100%; - padding: 15px 30px; - margin-top: -1px; - display: inline-block; - color: $secondary-font-color; - font-size: $font-size-lg; - font-weight: $font-weight-medium; - border-bottom: solid 1px $border-color; - cursor: pointer; - @include user-select(none); - - h1 { - margin: 0; - font-weight: $font-weight-medium; - display: inline-block; - } - - .icon { - float: right; - - &.left { - float: left; - } - } - } - - &.has-error { - .accordian-header { - color: $danger-color; - } - } - - .accordian-content, - div[slot*="body"] { - width: 100%; - padding: 30px; - border: 1px solid #d3d3d3; - border-top: 0; - display: none; - } - - &.active > .accordian-content { - display: inline-block; - } -} - -.panel { - .panel-header { - padding: 16px 0; - font-size: 18px; - color: $dark-color; - color: $secondary-font-color; - font-weight: $font-weight-medium; - } - - .panel-body { - border: none; - padding: 16px; - border-radius: 3px; - background-color: $white; - box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, - rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; - } -} - -modal { - display: none; -} - -.modal-overlay { - display: none; - overflow-y: auto; - z-index: 10; - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; - position: fixed; - background: $dark-color; - opacity: 0.5; -} - -.modal-container { - background: $white; - position: fixed; - top: 100px; - left: 50%; - margin-left: -300px; - width: 600px; - max-width: 80%; - max-height: 80%; - z-index: 11; - overflow-y: auto; - overflow-x: hidden; - animation: jelly 0.5s ease-in-out; - @include border-radius(8px); - - .modal-header { - z-index: 10; - width: inherit; - position: relative; - background: $white; - padding: 20px 20px 10px 20px; - @include display-grid(repeat(2, auto)); - border-bottom: 1px solid $border-color; - - h3 { - margin: 0; - display: table-cell; - vertical-align: middle; - font-weight: $font-weight-medium; - } - - h2 { - margin: 0; - display: inline-block; - } - - .header-actions { - text-align: right; - - .icon { - cursor: pointer; - } - } - } - - .modal-body { - // top: 75px; - padding: 30px; - position: relative; - - .tabs-content { - box-shadow: none; - } - } -} - -.modal-open { - overflow: hidden; - - .modal-overlay { - display: block; - } -} - -.badge { - @include border-radius(4px); - border: none; - color: $white; - font-size: $font-size-md; - display: inline-block; - border: 2px solid transparent; - - &.badge-pill { - padding: 2px 8px; - } - - &.badge-sm { - padding: 2px 8px; - } - - &.badge-md { - padding: 4px 10px; - } - - &.badge-lg { - padding: 6px 12px; - } - - &.badge-xl { - padding: 8px 14px; - } - - &.badge-pill { - @include border-radius(10rem); - } - - &.badge-primary { - background: $primary-color; - color: $white; - } - - &.badge-primary-outline { - background: $white; - color: $primary-color; - border: 2px solid $primary-color; - } - - &.badge-secondary { - background: $secondary-color; - color: $white; - } - - &.badge-secondary-outline { - background: $white; - color: $secondary-color; - border: 2px solid $secondary-color; - } - - &.badge-danger { - background: $danger-color; - color: $white; - } - - &.badge-danger-outline { - background: $white; - color: $danger-color; - border: 2px solid $danger-color; - } - - &.badge-success { - background: $success-color; - color: $white; - } - - &.badge-success-outline { - background: $white; - color: $success-color; - border: 2px solid $success-color; - } - - &.badge-warning { - background: $warning-color; - color: $white; - } - - &.badge-warning-outline { - background: $white; - color: $warning-color; - border: 2px solid $warning-color; - } - - &.badge-white { - background: $white; - color: $primary-color; - } - - &.badge-white-outline { - background: $white; - color: $primary-color; - border: 2px solid $primary-color; - } - - &.badge-round { - padding: 0; - width: 8px; - height: 8px; - margin-right: 5px; - } -} - -.overlay-loader { - position: fixed; - z-index: 11; - top: 50%; - left: 50%; - margin-top: -24px; - margin-left: -24px; -} - -.tooltip { - display: block !important; - z-index: 10000; - - &.hide { - display: none !important; - } - - .tooltip-inner { - background: $primary-color; - color: $white; - border-radius: 4px; - padding: 5px 10px 4px; - font-size: $font-size-md; - } - - .tooltip-arrow { - width: 0; - height: 0; - border-style: solid; - position: absolute; - margin: 5px; - border-color: $primary-color; - z-index: 1; - } - - &[x-placement^="top"] { - margin-bottom: 5px; - - .tooltip-arrow { - border-width: 5px 5px 0 5px; - border-left-color: transparent !important; - border-right-color: transparent !important; - border-bottom-color: transparent !important; - bottom: -5px; - left: calc(50% - 5px); - margin-top: 0; - margin-bottom: 0; - } - } - - &[x-placement^="bottom"] { - margin-top: 5px; - - .tooltip-arrow { - border-width: 0 5px 5px 5px; - border-left-color: transparent !important; - border-right-color: transparent !important; - border-top-color: transparent !important; - top: -5px; - left: calc(50% - 5px); - margin-top: 0; - margin-bottom: 0; - } - } - - &[x-placement^="right"] { - margin-left: 5px; - - .tooltip-arrow { - border-width: 5px 5px 5px 0; - border-left-color: transparent !important; - border-top-color: transparent !important; - border-bottom-color: transparent !important; - left: -5px; - top: calc(50% - 5px); - margin-left: 0; - margin-right: 0; - } - } - - &[x-placement^="left"] { - margin-right: 5px; - - .tooltip-arrow { - border-width: 5px 0 5px 5px; - border-top-color: transparent !important; - border-right-color: transparent !important; - border-bottom-color: transparent !important; - right: -5px; - top: calc(50% - 5px); - margin-left: 0; - margin-right: 0; - } - } -} - -.sidebar-filter { - top: 0; - z-index: 10; - width: 420px; - height: 100vh; - right: -420px; - position: fixed; - overflow-y: scroll; - display: inline-block; - background-color: $white; - padding: 30px 15px 30px 20px; - box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.18); - transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1); - - &.show { - right: 0; - } - - header { - padding-bottom: 25px; - margin-bottom: 25px; - border-bottom: 1px solid $border-color; - - h1 { - padding: 0; - margin: 0; - font-weight: 400; - @include display-grid(repeat(2, auto)); - - .right { - text-align: right; - - label { - cursor: pointer; - margin-right: 20px; - color: $primary-color; - display: inline-block; - font-size: $font-size-lg; - } - - i.close-icon { - vertical-align: middle; - } - } - } - } - - .field-container { - margin-bottom: 10px; - padding-right: 25px; - position: relative; - - label { - font-weight: 500; - } - - .control { - font-size: 16px; - max-height: 40px; - - &.half { - width: 151px; - } - } - - .middle-text { - margin: 0 8px; - } - - .date-container { - display: inline-block; - } - - .enter-new { - width: 100%; - display: inline-block; - - input { - width: 100%; - } - } - - > i { - &.close-icon { - position: absolute; - top: 17px; - right: 0; - } - } - } - - .selected-options { - margin-top: 10px; - - .badge { - margin-bottom: 10px; - color: $secondary-font-color; - background-color: $light-background-color; - } - } - - .form-group { - margin-bottom: 20px; - } - - i { - &.close-icon, - &.add-icon { - cursor: pointer; - } - } -} - -.drawer-overlay { - position: fixed; - inset: 0; - z-index: 10001; - background: rgba(75, 85, 99, 0.5); - transition: opacity 300ms; -} - -.drawer { - top: 0; - z-index: 10002; - width: 420px; - height: 100vh; - right: -420px; - position: fixed; - overflow-y: scroll; - display: inline-block; - background-color: $white; - box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.18); - transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1); - - &.show { - right: 0; - } - - .header { - display: flex; - justify-content: space-between; - align-items: center; - gap: 10px; - border-bottom: 1px solid $border-color; - padding: 20px; - - .actions { - display: flex; - align-items: center; - gap: 8px; - - .icon { - cursor: pointer; - } - } - } - - .content { - padding: 20px; - } -} - -.tree-wrapper { - .icon { - margin-right: 10px; - } - - .checkbox { - margin-top: 0px !important; - margin-bottom: 15px !important; - } - - .tree-item { - padding-left: 30px; - - &.active { - > .arrow-down-icon { - background-image: url("../images/arrow-down-icon.svg"); - } - } - - > .arrow-down-icon { - cursor: pointer; - background-image: url("../images/arrow-right-icon.svg"); - } - } - - .tree-container { - > .tree-item { - padding: 0; - } - - .tree-item { - > .tree-item { - display: none; - } - - &.active { - > .tree-item { - display: block; - } - } - } - } -} - -ol.breadcrumb { - list-style: none; - padding: 0; - font-size: $font-size-sm; - font-weight: $font-weight-regular; - margin-top: 0; - margin-bottom: 5px; - - li.breadcrumb-item { - display: inline-block; - - & + .breadcrumb-item::before { - display: inline-block; - padding-right: 5px; - padding-left: 5px; - content: "/"; - } - } -} - -.float-left { - float: left; -} - -.float-right { - float: right; -} - -.ml-10 { - margin-left: 10px; -} - -.pl-0 { - padding-left: 0 !important; -} - -.fs-18 { - font-size: $font-size-lg !important; -} - -.tags-control { - height: 43px; - padding: 4px !important; - - ul.tags { - display: flex; - - li { - float: left; - - &.tag-choice { - white-space: nowrap; - user-select: none; - font-size: $font-size-sm; - margin-right: 10px; - padding: 4px 8px; - border-radius: 30px; - color: $font-color; - background-color: $light-background-color; - } - - &.tag-input { - margin: 0; - padding: 0; - flex: 1 1 20px; - white-space: nowrap; - - input { - width: 100%; - color: #546e7a; - font-size: $font-size-lg; - padding: 6px 10px; - outline: 0; - border: 0; - } - } - } - } -} - -.attachment-wrapper { - .attachment-item { - margin-bottom: 10px; - - span { - display: inline-block; - padding: 8px 5px; - border: 2px solid $secondary-color; - - input { - display: none; - } - - .icon { - cursor: pointer; - } - } - } - - .add-attachment-link { - font-size: $font-size-lg; - margin-top: 10px; - display: inline-block; - } -} - -.row-grid-3 { - grid-row-gap: 15px; - grid-auto-rows: auto; - grid-column-gap: 15px; - @include display-grid(repeat(3, 1fr)); -} - -.bar { - height: 10px; - background-color: $table-active-cell-color; - - > div { - height: 10px; - transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1); - - &.primary { - background-color: $primary-color; - } - - &.warning { - background-color: $warning-color; - } - - &.success { - background-color: $success-color; - } - - &.danger { - background-color: $danger-color; - } - } -} - -.spinner-container { - width: 100%; - text-align: center; - position: relative; - top: calc(50% - 24px); - - .meter { - width: 48px; - height: 48px; - border-radius: 50%; - display: inline-block; - box-sizing: border-box; - border: solid 6px $primary-color; - - &:before { - top: 5px; - width: 6px; - height: 20px; - content: " "; - text-align: center; - border-radius: 3px; - position: absolute; - display: inline-block; - box-sizing: border-box; - background-color: $primary-color; - transform-origin: center bottom; - animation: meter-animate-before 1s linear infinite; - } - } - - &.full-page { - top: 0; - left: 0; - z-index: 11; - width: 100%; - height: 100%; - position: fixed; - background-color: rgba(255, 255, 255, 0.7); - - .meter { - top: 50%; - position: relative; - - &:before { - top: 0; - } - } - } -} - -.cursor-pointer { - cursor: pointer !important; -} - -.display-grid { - display: grid; -} - -.column-grid-2 { - grid-gap: 10px; - @include display-grid(repeat(2, auto)); -} - -.bar-chart, -.line-chart { - canvas { - ~ img { - display: none; - } - } -} diff --git a/packages/Webkul/UI/src/Resources/assets/sass/fonts.scss b/packages/Webkul/UI/src/Resources/assets/sass/fonts.scss deleted file mode 100644 index 898637991..000000000 --- a/packages/Webkul/UI/src/Resources/assets/sass/fonts.scss +++ /dev/null @@ -1,15 +0,0 @@ -@font-face { - font-display: swap; - font-style: normal; - font-weight: 500; - font-family: 'Roboto'; - src: url('../fonts/Roboto-Medium.ttf'); -} - -@font-face { - font-display: swap; - font-family: 'Roboto'; - font-weight: 400; - font-style: normal; - src: url('../fonts/Roboto-Regular.ttf'); -} \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/sass/icons.scss b/packages/Webkul/UI/src/Resources/assets/sass/icons.scss deleted file mode 100644 index c5eae0a8b..000000000 --- a/packages/Webkul/UI/src/Resources/assets/sass/icons.scss +++ /dev/null @@ -1,218 +0,0 @@ -.icon { - width: 20px; - height: 20px; - display: inline-block; - background-size: cover; -} - -.menu-fold-icon { - width: 24px; - height: 24px; - background-image: url("../images/menu-fold-icon.svg"); -} - -.menu-fold-icon:hover { - background-image: url("../images/menu-fold-active-icon.svg"); -} - -.menu-unfold-icon { - width: 24px; - height: 24px; - background-image: url("../images/menu-unfold-icon.svg"); -} - -.menu-unfold-icon:hover { - background-image: url("../images/menu-unfold-active-icon.svg"); -} - -.arrow-down-icon { - background-image: url("../images/arrow-down-icon.svg"); -} - -.arrow-up-icon { - background-image: url("../images/arrow-up-icon.svg"); -} - -.arrow-left-icon { - background-image: url("../images/arrow-left-icon.svg"); -} - -.arrow-right-icon { - background-image: url("../images/arrow-right-icon.svg"); -} - -.arrow-left-line-icon { - background-image: url("../images/arrow-left-line-icon.svg"); -} - -.arrow-right-line-icon { - background-image: url("../images/arrow-right-line-icon.svg"); -} - -.arrow-down-s-icon { - background-image: url("../images/arrow-down-s-icon.svg"); -} - -.add-icon { - background-image: url("../images/add-icon.svg"); -} - -.close-icon { - background-image: url("../images/close-icon.svg"); -} - -.close-white-icon { - background-image: url("../images/close-white-icon.svg"); -} - -.circle-check-white-icon { - background-image: url("../images/circle-check-white-icon.svg"); -} - -.circle-close-white-icon { - background-image: url("../images/circle-close-white-icon.svg"); -} - -.circle-info-white-icon { - background-image: url("../images/circle-info-white-icon.svg"); -} - -.calendar-icon { - background-image: url("../images/calendar-icon.svg"); -} - -.time-icon { - background-image: url("../images/time-icon.svg"); -} - -.align-justify-icon { - background-image: url("../images/align-justify-icon.svg"); -} - -.reply-icon { - background-image: url("../images/reply-icon.svg"); -} - -.reply-white-icon { - background-image: url("../images/reply-white-icon.svg"); -} - -.reply-all-icon { - background-image: url("../images/reply-all-icon.svg"); -} - -.reply-all-white-icon { - background-image: url("../images/reply-all-white-icon.svg"); -} - -.forward-icon { - background-image: url("../images/forward-icon.svg"); -} - -.forward-white-icon { - background-image: url("../images/forward-white-icon.svg"); -} - -.trash-icon { - background-image: url("../images/trash-icon.svg"); -} - -.trash-white-icon { - background-image: url("../images/trash-white-icon.svg"); -} - -.pencil-icon { - background-image: url("../images/pencil-icon.svg"); -} - -.pencil-underline-icon { - background-image: url("../images/pencil-underline-icon.svg"); -} - -.eye-icon { - background-image: url("../images/eye-icon.svg"); -} - -.folder-icon { - background-image: url("../images/folder-icon.svg"); -} - -.plus-primary-icon { - background-image: url("../images/plus-primary-icon.svg"); -} - -.plus-black-icon { - background-image: url("../images/plus-black-icon.svg"); -} - -.plus-white-icon { - background-image: url("../images/plus-white-icon.svg"); -} - -.download-icon { - background-image: url("../images/download-icon.svg"); -} - -.search-icon { - background-image: url("../images/search-icon.svg"); -} - -.ellipsis-icon { - width: 24px !important; - height: 24px !important; - background-image: url("../images/ellipsis-icon.svg"); -} - -.attachment-icon { - width: 24px !important; - height: 24px !important; - background-image: url("../images/attachment-icon.svg"); -} - -.link-icon { - width: 24px !important; - height: 24px !important; - background-image: url("../images/link-icon.svg"); -} - -.external-link-icon { - width: 24px !important; - height: 24px !important; - background-image: url("../images/external-link-icon.svg"); -} - -.tags-icon { - background-image: url("../images/tags-icon.svg"); -} - -.loader-icon { - width: 24px !important; - height: 24px !important; - background-image: url("../images/loader-icon.svg"); - animation-name: spin; - animation-duration: 1000ms; - animation-iteration-count: infinite; - animation-timing-function: linear; -} - -.loader-active-icon { - width: 24px !important; - height: 24px !important; - background-image: url("../images/loader-active-icon.svg"); - animation-name: spin; - animation-duration: 1000ms; - animation-iteration-count: infinite; - animation-timing-function: linear; -} - -.alert-danger-icon { - background-image: url("../images/alert-danger-icon.svg"); -} - -.upload-icon { - background-image: url("../images/upload-icon.svg"); -} - -.export-icon { - background-image: url("../images/export-icon.svg"); -} \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/sass/rtl.css b/packages/Webkul/UI/src/Resources/assets/sass/rtl.css deleted file mode 100644 index 240587a92..000000000 --- a/packages/Webkul/UI/src/Resources/assets/sass/rtl.css +++ /dev/null @@ -1 +0,0 @@ -.rtl .search-filter .control{padding-right:10px;border-left:0;border-right:2px solid #c7c7c7;border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-left-radius:0;border-bottom-left-radius:0}.rtl .search-filter .icon-wrapper{float:left;border-top-right-radius:0px;border-bottom-right-radius:0px;border-top-left-radius:3px;border-bottom-left-radius:3px}.rtl .alert-wrapper .alert{left:unset;right:50%;margin-right:-324px}.rtl .table .table-header .table-action{text-align:left}.rtl .table .table-header .table-action .export-import{margin-right:0;margin-left:20px}.rtl .table .table-body .custom-design-container{right:1200px}.rtl .table .sidebar-filter{right:unset;left:-420px}.rtl .table .sidebar-filter header h1 .right{text-align:left}.rtl .table .sidebar-filter.show{right:unset;left:0}.rtl .table .sidebar-filter .field-container{padding-right:0;padding-left:25px}.rtl .table .sidebar-filter .field-container i.close-icon{right:unset;left:0}.rtl .table .datagrid-filters{display:inline-block}.rtl .table .datagrid-filters.per-page{margin-left:10px;margin-right:10px}.rtl .table .datagrid-filters .filter-right{text-align:left}.rtl .table table tbody tr td.action{text-align:left}.rtl .table table thead th.actions{text-align:left}.rtl .sidebar-filter header h1 .right{text-align:left}.rtl .filtered-tags .filter-tag .wrapper,.rtl .filtered-tags .filter-tag .cross-icon{margin-right:10px;margin-left:0}.rtl .float-left{float:right}.rtl .float-right{float:left}.rtl .form-group label.required::after,.rtl .field-container label.required::after{padding-left:0;padding-right:4px}.rtl .form-group.date .control,.rtl .form-group.datetime .control,.rtl .form-group.time .control,.rtl .field-container.date .control,.rtl .field-container.datetime .control,.rtl .field-container.time .control{padding-right:40px}.rtl .form-group.date .date-container input[type=text],.rtl .form-group.datetime .date-container input[type=text],.rtl .form-group.time .date-container input[type=text],.rtl .field-container.date .date-container input[type=text],.rtl .field-container.datetime .date-container input[type=text],.rtl .field-container.time .date-container input[type=text]{padding-left:22px}.rtl .form-group.date .datetime-container::after,.rtl .form-group.date .time-container::after,.rtl .form-group.datetime .datetime-container::after,.rtl .form-group.datetime .time-container::after,.rtl .form-group.time .datetime-container::after,.rtl .form-group.time .time-container::after,.rtl .field-container.date .datetime-container::after,.rtl .field-container.date .time-container::after,.rtl .field-container.datetime .datetime-container::after,.rtl .field-container.datetime .time-container::after,.rtl .field-container.time .datetime-container::after,.rtl .field-container.time .time-container::after{margin-right:-34px;margin-left:unset;right:unset;left:10px}.rtl .form-group .input-group .input-group-prepend .control,.rtl .form-group .input-group .input-group-prepend .btn,.rtl .field-container .input-group .input-group-prepend .control,.rtl .field-container .input-group .input-group-prepend .btn{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:3px;border-bottom-right-radius:3px}.rtl .form-group .input-group .input-group-append,.rtl .field-container .input-group .input-group-append{margin-right:-1px}.rtl .form-group .input-group .input-group-append .control,.rtl .form-group .input-group .input-group-append .btn,.rtl .field-container .input-group .input-group-append .control,.rtl .field-container .input-group .input-group-append .btn{border-top-right-radius:0;border-bottom-right-radius:0;border-top-left-radius:3px;border-bottom-left-radius:3px}.rtl .form-group .input-group .trash-icon,.rtl .field-container .input-group .trash-icon{margin-top:21px;margin-left:0;margin-right:7px;cursor:pointer}.rtl .settings-container .panel .setting-link-container .setting-link-item a .setting-info{margin-left:0;margin-right:25px}.rtl .tree-wrapper .tree-container .tree-item.active>.tree-item{padding-left:0;padding-right:30px} \ No newline at end of file diff --git a/packages/Webkul/UI/src/Resources/assets/sass/rtl.scss b/packages/Webkul/UI/src/Resources/assets/sass/rtl.scss deleted file mode 100644 index 725f600b8..000000000 --- a/packages/Webkul/UI/src/Resources/assets/sass/rtl.scss +++ /dev/null @@ -1,226 +0,0 @@ -.rtl { - .search-filter { - .control { - padding-right: 10px; - border-left: 0; - border-right: 2px solid #c7c7c7; - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - border-top-left-radius: 0; - border-bottom-left-radius: 0; - } - .icon-wrapper { - float: left; - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - } - } - - .alert-wrapper { - .alert { - left: unset; - right: 50%; - margin-right: -324px; - } - } - - .table { - .table-header { - .table-action { - text-align: left; - - .export-import { - margin-right: 0; - margin-left: 20px; - } - } - } - - .table-body { - .custom-design-container { - //right: unset; - right:1200px; - } - } - .sidebar-filter { - right: unset; - left: -420px; - - header { - h1 { - .right { - text-align: left; - } - } - } - - &.show { - right: unset; - left: 0; - } - - .field-container { - padding-right: 0; - padding-left: 25px; - - i.close-icon { - right: unset; - left: 0; - } - } - } - - .datagrid-filters { - display: inline-block; - - &.per-page { - margin-left: 10px; - margin-right: 10px; - } - - .filter-right { - text-align: left; - } - } - - table { - tbody { - tr { - td.action { - text-align: left; - } - } - } - - thead { - th.actions { - text-align: left; - } - } - } - } - - .sidebar-filter { - header { - h1 { - .right { - text-align: left; - } - } - } - } - - .filtered-tags { - .filter-tag { - .wrapper, - .cross-icon { - margin-right: 10px; - margin-left: 0; - } - } - } - - .float-left { - float: right; - } - - .float-right { - float: left; - } - - .form-group, - .field-container { - label { - &.required::after { - padding-left: 0; - padding-right: 4px; - } - } - - &.date, - &.datetime, - &.time { - .control { - padding-right: 40px; - } - - .date-container { - input[type="text"] { - padding-left: 22px; - } - } - - .datetime-container, - .time-container { - &::after { - margin-right: -34px; - margin-left: unset; - right: unset; - left: 10px; - } - } - } - } - - .form-group, - .field-container { - .input-group { - .input-group-prepend { - .control, - .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - } - } - - .input-group-append { - margin-right: -1px; - - .control, - .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - } - } - - .trash-icon { - margin-top: 21px; - margin-left: 0; - margin-right: 7px; - cursor: pointer; - } - } - } - - .settings-container { - .panel { - .setting-link-container { - .setting-link-item { - a { - .setting-info { - margin-left: 0; - margin-right: 25px; - } - } - } - } - } - } - - .tree-wrapper { - .tree-container { - .tree-item.active { - > .tree-item { - padding-left: 0; - padding-right: 30px; - } - } - } - } -} diff --git a/packages/Webkul/UI/src/Resources/lang/ar/app.php b/packages/Webkul/UI/src/Resources/lang/ar/app.php deleted file mode 100644 index 403f771fc..000000000 --- a/packages/Webkul/UI/src/Resources/lang/ar/app.php +++ /dev/null @@ -1,90 +0,0 @@ - [ - 'no-records' => 'لا توجد سجلات!', - 'something-went-wrong' => 'هناك خطأ ما! ', - ], - - 'datagrid' => [ - 'title' => 'شبكة بيانات', - 'actions' => 'أجراءات', - 'edit' => 'تعديل', - 'view' => 'رأي', - 'delete' => 'حذف', - 'id' => 'أعمدة الفهرس لها قيمة أكبر من الصفر فقط', - 'cancel' => 'يلغي', - 'download' => 'تحميل', - 'export' => 'يصدر', - 'select-format' => 'حدد التنسيق', - - 'mass-action' => [ - 'select_action' => 'اختر فعلا', - 'mass-delete-confirm' => 'هل تريد حقًا حذف هذه المختارة:الموارد?', - 'mass-update-status' => 'هل تريد حقًا تحديث حالة هؤلاء المختارين:الموارد?', - 'delete' => 'هل تريد حقًا تنفيذ هذا الإجراء?', - 'edit' => 'هل تريد حقًا تعديل هذا:الموارد ?', - ], - - 'zero-index' => 'يمكن أن تحتوي أعمدة الفهرس على قيم أكبر من الصفر فقط', - 'no-records' => 'لا توجد سجلات', - 'filter-fields-missing' => 'بعض الحقول المطلوبة فارغة ، يرجى التحقق من العمود والحالة والقيمة بشكل صحيح', - 'click_on_action' => 'هل تريد حقًا تنفيذ هذا الإجراء?', - 'search' => 'ابحث هنا...', - 'column' => 'حدد العمود', - 'condition' => 'حدد الشرط', - 'contains' => 'يتضمن', - 'ncontains' => 'لا يحتوي على', - 'equals' => 'يساوي', - 'nequals' => 'لا يساوي', - 'greater' => 'أكثر من', - 'less' => 'أقل من', - 'greatere' => 'أكبر من يساوي', - 'lesse' => 'أقل من يساوي', - 'value' => 'اختار القيمة', - 'true' => 'صحيح / نشط', - 'update-status' => 'تحديث الحالة', - 'false' => 'خطأ / غير نشط', - 'between' => 'يتراوح ما بين', - 'apply' => 'يتقدم', - 'items-per-page' => 'مواد لكل صفحة', - 'value-here' => 'القيمة هنا', - 'numeric-value-here' => 'القيمة الرقمية هنا', - 'submit' => 'إرسال', - 'mandatory_mass_action' => 'الرجاء تحديد إجراء لأداء.', - 'multiple_sort_keys' => 'خطأ فادح! تم العثور على مفاتيح فرز متعددة ، يرجى حل عنوان URL يدويًا', - 'multiple_search_keys' => 'تم العثور على مفاتيح بحث متعددة ، يرجى حل عنوان URL يدويًا', - 'is-done' => 'تم', - 'filter' => [ - 'remove_all' => 'حذف الكل', - 'title' => 'منقي', - 'apply_title' => 'تطبيق عامل التصفية', - 'custom_filter' => 'تصفية مخصص', - 'subject' => 'موضوع', - 'name' => 'اسم', - 'done' => 'فعله', - 'to' => 'ل', - 'date_range' => 'نطاق الموعد', - 'start_date' => 'تاريخ البدء', - 'end_date' => 'تاريخ الانتهاء', - 'today' => 'اليوم', - 'yesterday' => 'في الامس', - 'tomorrow' => 'غدا', - 'this_month' => 'هذا الشهر', - 'this_year' => 'هذه السنة', - 'last_month' => 'الشهر الماضي', - 'apply' => 'يتقدم', - 'cancel' => 'إلغاء', - 'perPage' => 'لكل صفحة', - 'is_done' => 'تم', - 'created_by_id' => 'تم إنشاؤها بواسطة Id', - 'schedule_from' => 'جدولة من', - 'schedule_to' => 'جدولة إلى', - 'created_at' => 'أنشئت في', - 'scheduled' => 'المقرر', - 'duration' => 'مدة', - ], - ], - - 'add-attachment' => 'إضافة مرفق', -]; diff --git a/packages/Webkul/UI/src/Resources/lang/en/app.php b/packages/Webkul/UI/src/Resources/lang/en/app.php deleted file mode 100644 index 62cf7c486..000000000 --- a/packages/Webkul/UI/src/Resources/lang/en/app.php +++ /dev/null @@ -1,90 +0,0 @@ - [ - 'no-records' => 'No records found!', - 'something-went-wrong' => 'Something went wrong!', - ], - - 'datagrid' => [ - 'title' => 'DataGrid', - 'actions' => 'Actions', - 'edit' => 'Edit', - 'view' => 'View', - 'delete' => 'Delete', - 'print' => 'Print', - 'id' => 'Index columns have value greater than zero only', - 'cancel' => 'Cancel', - 'download' => 'Download', - 'export' => 'Export', - 'select-format' => 'Select Format', - - 'mass-action' => [ - 'select_action' => 'Select Action', - 'mass-delete-confirm' => 'Do you really want to delete these selected :resource?', - 'mass-update-status' => 'Do you really want to update status of these selected :resource?', - 'delete' => 'Do you really want to perform this action?', - 'edit' => 'Do you really want to edit this :resource?', - ], - - 'zero-index' => 'Index columns can have values greater than zero only', - 'no-records' => 'No Records Found', - 'filter-fields-missing' => 'Some of the required field is null, please check column, condition and value properly', - 'click_on_action' => 'Do you really want to perform this action?', - 'search' => 'Search Here...', - 'column' => 'Select Column', - 'condition' => 'Select Condition', - 'contains' => 'Contains', - 'ncontains' => 'Does not contains', - 'equals' => 'Is Equals to', - 'nequals' => 'Is Not equals to', - 'greater' => 'Greater than', - 'less' => 'Less than', - 'greatere' => 'Greater than equals to', - 'lesse' => 'Less than equals to', - 'value' => 'Select Value', - 'true' => 'True / Active', - 'update-status' => 'Update Status', - 'false' => 'False / Inactive', - 'between' => 'Is between', - 'apply' => 'Apply', - 'items-per-page' => 'Items Per Page', - 'value-here' => 'Value here', - 'numeric-value-here' => 'Numeric Value here', - 'submit' => 'Submit', - 'mandatory_mass_action' => 'Please select an action to perform.', - 'multiple_sort_keys' => 'Fatal Error! Multiple Sort keys Found, Please Resolve the URL Manually', - 'multiple_search_keys' => 'Multiple Search keys Found, Please Resolve the URL Manually', - 'is-done' => 'Is Done', - 'filter' => [ - 'remove_all' => 'Remove All', - 'title' => 'Filter', - 'apply_title' => 'Apply Filter', - 'custom_filter' => 'Custom Filter', - 'done' => 'Done', - 'subject' => 'Subject', - 'name' => 'Name', - 'to' => 'to', - 'date_range' => 'Date Range', - 'start_date' => 'Start Date', - 'end_date' => 'End Date', - 'today' => 'Today', - 'yesterday' => 'Yesterday', - 'this_month' => 'This Month', - 'this_year' => 'This Year', - 'last_month' => 'Last Month', - 'apply' => 'Apply', - 'cancel' => 'Cancel', - 'perPage' => 'Per Page', - 'is_done' => 'Is Done', - 'created_by_id' => 'Created By Id', - 'schedule_from' => 'Schedule From', - 'schedule_to' => 'Schedule To', - 'created_at' => 'Created At', - 'scheduled' => 'Scheduled', - 'duration' => 'Duration', - ], - ], - - 'add-attachment' => 'Add Attachment', -]; diff --git a/packages/Webkul/UI/src/Resources/lang/es/app.php b/packages/Webkul/UI/src/Resources/lang/es/app.php deleted file mode 100644 index 25e7255c2..000000000 --- a/packages/Webkul/UI/src/Resources/lang/es/app.php +++ /dev/null @@ -1,90 +0,0 @@ - [ - 'no-records' => '¡No se han encontrado registros!', - 'something-went-wrong' => '¡Algo salio mal!', - ], - - 'datagrid' => [ - 'title' => 'Grilla de Datos', - 'actions' => 'Acciones', - 'edit' => 'Editar', - 'view' => 'Ver', - 'delete' => 'Borrar', - 'print' => 'Imprimir', - 'id' => 'Columnas Indices solo pueden tener valor mayor que cero', - 'cancel' => 'Cancelar', - 'download' => 'Descargar', - 'export' => 'Exportar', - 'select-format' => 'Seleccionar Formato', - - 'mass-action' => [ - 'select_action' => 'Seleccionar Acción', - 'mass-delete-confirm' => '¿Realmente desea eliminar los elementos tipo :resource seleccionados?', - 'mass-update-status' => '¿Realmente desea actualizar el estado de los elementos tipo :resource seleccionados?', - 'delete' => '¿Realmente desea realizar esta acción?', - 'edit' => '¿Realmente desea editar este elemento tipo :resource?', - ], - - 'zero-index' => 'Index columns can have values greater than zero only', - 'no-records' => 'No se encontraron registros', - 'filter-fields-missing' => 'Alguno de los campos requeridos es nulo, por favor establezca la columna, condición y valor apropiado', - 'click_on_action' => '¿Realmente desea realizar esta acción?', - 'search' => 'Buscar aquí...', - 'column' => 'Seleccionar Columna', - 'condition' => 'Seleccionar Condición', - 'contains' => 'Contiene', - 'ncontains' => 'No contiene', - 'equals' => 'Es igual a', - 'nequals' => 'No es igual a', - 'greater' => 'Mayor que', - 'less' => 'Menos que', - 'greatere' => 'Mayor o igual a', - 'lesse' => 'Menos or igual a', - 'value' => 'Seleccionar Valor', - 'true' => 'Verdadero / Activo', - 'update-status' => 'Actualizar Estado', - 'false' => 'Falso / Inactivo', - 'between' => 'Es entre', - 'apply' => 'Aplicar', - 'items-per-page' => 'Elementos por Pagina', - 'value-here' => 'Valor aquí', - 'numeric-value-here' => 'Valor Numérico aquí', - 'submit' => 'Enviar', - 'mandatory_mass_action' => 'Por favor seleccione la acción a realizar.', - 'multiple_sort_keys' => '¡Error Fatal! Multiples Claves de Orden encontradas, Por favor resuelva la URL manualmente', - 'multiple_search_keys' => 'Multiples Claves de Búsqueda encontradas, Por favor resuelva la URL manualmente', - 'is-done' => 'Ha Terminado', - 'filter' => [ - 'remove_all' => 'Quitar Todos', - 'title' => 'Filtrar', - 'apply_title' => 'Aplicar Filtro', - 'custom_filter' => 'Filtro Personalizado', - 'done' => 'Terminado', - 'to' => 'A', - 'subject' => 'Sujeto', - 'name' => 'Nombre', - 'date_range' => 'Rango de fecha', - 'start_date' => 'Fecha Inicio', - 'end_date' => 'Fecha Final', - 'today' => 'Hoy', - 'yesterday' => 'Ayer', - 'this_month' => 'Este Mes', - 'this_year' => 'Este Año', - 'last_month' => 'Mes Pasado', - 'apply' => 'Aplicar', - 'cancel' => 'Cancelar', - 'perPage' => 'Por Pagina', - 'is_done' => 'Ha Terminado', - 'created_by_id' => 'Creado por Id', - 'schedule_from' => 'Programar desde', - 'schedule_to' => 'Programar hasta', - 'created_at' => 'Creado en', - 'scheduled' => 'Programado', - 'duration' => 'Duración', - ], - ], - - 'add-attachment' => 'Agregar Adjunto', -]; diff --git a/packages/Webkul/UI/src/Resources/lang/fa/app.php b/packages/Webkul/UI/src/Resources/lang/fa/app.php deleted file mode 100644 index 941dfeff3..000000000 --- a/packages/Webkul/UI/src/Resources/lang/fa/app.php +++ /dev/null @@ -1,90 +0,0 @@ - [ - 'no-records' => 'هیچ رکوردی یافت نشد!', - 'something-went-wrong' => 'مشکلی پیش آمده!', - ], - - 'datagrid' => [ - 'title' => 'دیتاگرید', - 'actions' => 'عملیات', - 'edit' => 'ویرایش', - 'view' => 'نمایش', - 'delete' => 'حذف', - 'print' => 'پرینت', - 'id' => 'ستون‌های ایندکس فقط دارای مقدار بیشتر از صفر هستند', - 'cancel' => 'لغو', - 'download' => 'دانلود', - 'export' => 'اکسپورت', - 'select-format' => 'انتخاب فرمت', - - 'mass-action' => [ - 'select_action' => 'انتخاب عملیات', - 'mass-delete-confirm' => 'آیا از حذف این :resource انتخاب شده اطمینان دارید؟', - 'mass-update-status' => 'آیا از بروزرسانی وضعیت این :resource انتخاب شده اطمینان دارید؟', - 'delete' => 'آیا از حذف این مورد اطمینان دارید؟', - 'edit' => 'آیا از ویرایش این :resource اطمینان دارید؟', - ], - - 'zero-index' => 'ستون‌های ایندکس فقط دارای ارزش بیشتر از صفر هستند', - 'no-records' => 'هیچ رکوردی یافت نشد', - 'filter-fields-missing' => 'برخی از فیلدهای اجباری خالی است، لطفاً ستون، شرایط و مقدار را به درستی بررسی کنید', - 'click_on_action' => 'آیا از اجرای این عملیات اطمینان دارید؟', - 'search' => 'اینجا جستجو کنید...', - 'column' => 'انتخاب ستون‌ها', - 'condition' => 'انتخاب شرط‌ها', - 'contains' => 'شامل', - 'ncontains' => 'شامل نیست', - 'equals' => 'معادل است با', - 'nequals' => 'معادل نیست با', - 'greater' => 'بزرگتر از', - 'less' => 'کوچکتر از', - 'greatere' => 'بزرگتر مساوی', - 'lesse' => 'کوچکتر مساوی', - 'value' => 'انتخاب مقدار', - 'true' => 'صحیح / فعال', - 'update-status' => 'برورسانی وضعیت', - 'false' => 'غیرصحیح / غیرفعال', - 'between' => 'بین', - 'apply' => 'اعمال', - 'items-per-page' => 'تعداد آیتم در هر صفحه', - 'value-here' => 'مقدار در اینجا', - 'numeric-value-here' => 'مقدار عددی در اینجا', - 'submit' => 'ارسال', - 'mandatory_mass_action' => 'لطفا یک عملیات را انتخاب کنید.', - 'multiple_sort_keys' => 'خطای مرگبار! کلیدهای مرتب سازی چندگانه یافت شد، لطفاً URL را به صورت دستی حل کنید', - 'multiple_search_keys' => 'چندین کلید جستجو یافت شد، لطفا این مشکل را به صورت دستی حل کنید', - 'is-done' => 'انجام شده', - 'filter' => [ - 'remove_all' => 'حذف همه', - 'title' => 'فیلتر', - 'apply_title' => 'اعمال فیلتر', - 'custom_filter' => 'فیلتر سفارشی', - 'done' => 'انجام شده', - 'to' => 'از', - 'subject' => 'موضوع', - 'name' => 'اسم', - 'date_range' => 'محدوده زمانی', - 'start_date' => 'تاریخ شروع', - 'end_date' => 'تاریخ پایان', - 'today' => 'امروز', - 'yesterday' => 'دیروز', - 'this_month' => 'ماه جاری', - 'this_year' => 'سال جاری', - 'last_month' => 'آخرین ماه', - 'apply' => 'اعمال', - 'cancel' => 'لغو', - 'perPage' => 'در صفحه', - 'is_done' => 'انجام شده', - 'created_by_id' => 'ایجاد شده توسط', - 'schedule_from' => 'زمانبندی از', - 'schedule_to' => 'زمانبندی تا', - 'created_at' => 'ایجاد شده در', - 'scheduled' => 'زمانبندی شده', - 'duration' => 'مدت زمان', - ], - ], - - 'add-attachment' => 'افزودن ضمیمه', -]; diff --git a/packages/Webkul/UI/src/Resources/lang/tr/app.php b/packages/Webkul/UI/src/Resources/lang/tr/app.php deleted file mode 100644 index 95178602a..000000000 --- a/packages/Webkul/UI/src/Resources/lang/tr/app.php +++ /dev/null @@ -1,89 +0,0 @@ - [ - 'no-records' => 'Kayıt bulunamadı!', - 'something-went-wrong' => 'Bir şeyler yanlış gitti!', - ], - - 'datagrid' => [ - 'title' => 'DataGrid', - 'actions' => 'Hareketler', - 'edit' => 'Düzenle', - 'view' => 'Görüntüle', - 'delete' => 'Kaldır', - 'id' => 'Dizin sütunları yalnızca sıfırdan büyük değere sahip', - 'cancel' => 'İptal', - 'download' => 'İndir', - 'export' => 'Dışa aktar', - 'select-format' => 'Biçim Seç', - - 'mass-action' => [ - 'select_action' => 'Eylemi seç', - 'mass-delete-confirm' => 'Bu seçili :resource gerçekten silmek istiyor musunuz?', - 'mass-update-status' => 'Bu seçilen :resource durumunu gerçekten güncellemek istiyor musunuz?', - 'delete' => 'Bu eylemi gerçekten yapmak istiyor musunuz?', - 'edit' => 'Bunu gerçekten düzenlemek istiyor musunuz :resource?', - ], - - 'zero-index' => 'Dizin sütunları yalnızca sıfırdan büyük değerlere sahip olabilir', - 'no-records' => 'Kayıt bulunamadı', - 'filter-fields-missing' => 'Gerekli alanlardan bazıları boş, lütfen sütunu, durumu ve değeri doğru şekilde kontrol edin', - 'click_on_action' => 'Bu eylemi gerçekten yapmak istiyor musunuz?', - 'search' => 'Burada ara...', - 'column' => 'Sütun Seç', - 'condition' => 'Koşul Seç', - 'contains' => 'İçerir', - 'ncontains' => 'İçermez', - 'equals' => 'Şuna eşittir:', - 'nequals' => 'Eşit değil', - 'greater' => 'Daha büyük', - 'less' => 'Daha az', - 'greatere' => 'Daha büyük eşittir', - 'lesse' => 'Daha az eşittir', - 'value' => 'Değeri seç', - 'true' => 'Doğru / Aktif', - 'update-status' => 'Güncelleme durumu', - 'false' => 'Yanlış / Etkin Değil', - 'between' => 'Arasında', - 'apply' => 'Uygula', - 'items-per-page' => 'Sayfa Başına Öğe', - 'value-here' => 'Burada değer', - 'numeric-value-here' => 'Burada Sayısal Değer', - 'submit' => 'Gönder', - 'mandatory_mass_action' => 'Lütfen gerçekleştirilecek bir işlem seçin.', - 'multiple_sort_keys' => 'Ölümcül hata! Birden Fazla Sıralama Anahtarı Bulundu, Lütfen URL\'yi Manuel Olarak Çözün', - 'multiple_search_keys' => 'Birden Fazla Arama Anahtarı Bulundu, Lütfen URL\'yi Manuel Olarak Çözün', - 'is-done' => 'Tamamlandı', - 'filter' => [ - 'remove_all' => 'Hepsini Kaldır', - 'title' => 'Filtre', - 'apply_title' => 'Filtre Uygula', - 'custom_filter' => 'Özel Filtre', - 'done' => 'Tamamla', - 'to' => 'ile', - 'subject' => 'موضوع', - 'name' => 'نام', - 'date_range' => 'Tarih aralığı', - 'start_date' => 'Başlangıç Tarihi', - 'end_date' => 'Bitiş Tarihi', - 'today' => 'Bugün', - 'yesterday' => 'Dün', - 'this_month' => 'Bu Ay', - 'this_year' => 'Bu yıl', - 'last_month' => 'Geçen ay', - 'apply' => 'Uygulamak', - 'cancel' => 'İptal', - 'perPage' => 'Sayfa başına', - 'is_done' => 'Yapıldı', - 'created_by_id' => 'Kimlik Tarafından Oluşturuldu', - 'schedule_from' => 'Başlangıç ​​Zamanı', - 'schedule_to' => 'Planla', - 'created_at' => 'Oluşturulma Tarihi', - 'scheduled' => 'zamanlanmış', - 'duration' => 'Süre', - ], - ], - - 'add-attachment' => 'Ek ekle', -]; diff --git a/packages/Webkul/UI/src/Resources/views/export/temp.blade.php b/packages/Webkul/UI/src/Resources/views/export/temp.blade.php deleted file mode 100755 index fb730ac54..000000000 --- a/packages/Webkul/UI/src/Resources/views/export/temp.blade.php +++ /dev/null @@ -1,19 +0,0 @@ - - - - @foreach ($columns as $column) - - @endforeach - - - - - @foreach ($records as $record) - - @foreach($record as $column => $value) - - @endforeach - - @endforeach - -
{{ $column }}
{{ strip_tags($value) }}
diff --git a/packages/Webkul/UI/src/Routes/web.php b/packages/Webkul/UI/src/Routes/web.php deleted file mode 100644 index 8c2f05737..000000000 --- a/packages/Webkul/UI/src/Routes/web.php +++ /dev/null @@ -1,12 +0,0 @@ - ['web', 'user']], function () { - - /** - * DataGrid export. - */ - Route::post('/export', [ExportController::class, 'export'])->name('ui.datagrid.export'); -}); diff --git a/packages/Webkul/UI/webpack.mix.js b/packages/Webkul/UI/webpack.mix.js deleted file mode 100644 index 2d529d8a1..000000000 --- a/packages/Webkul/UI/webpack.mix.js +++ /dev/null @@ -1,48 +0,0 @@ -const mix = require("laravel-mix"); - -if (mix == 'undefined') { - const { mix } = require("laravel-mix"); -} - -require("laravel-mix-merge-manifest"); - -if (mix.inProduction()) { - var publicPath = 'publishable/assets'; -} else { - var publicPath = "../../../public/vendor/webkul/ui/assets"; -} - -mix.setPublicPath(publicPath).mergeManifest(); -mix.disableNotifications(); - -mix.inProduction() - -mix.js( - [ - __dirname + "/src/Resources/assets/js/app.js", - __dirname + "/src/Resources/assets/js/dropdown.js" - ], - "js/ui.js" -) - .copy(__dirname + "/src/Resources/assets/images", publicPath + "/images") - .copy(__dirname + "/src/Resources/assets/fonts", publicPath + "/fonts") - .sass(__dirname + "/src/Resources/assets/sass/app.scss", "css/ui.css") - .options({ - processCssUrls: false - }).vue(); - -mix.webpackConfig({ - resolve: { - alias: { - 'vue$': 'vue/dist/vue.runtime.js' - } - } -}); - -if (! mix.inProduction()) { - mix.sourceMaps(); -} - -if (mix.inProduction()) { - mix.version(); -} \ No newline at end of file diff --git a/public/build/assets/activities-active-icon-a9fab3a3.svg b/public/build/assets/activities-active-icon-a9fab3a3.svg deleted file mode 100644 index eab9109a2..000000000 --- a/public/build/assets/activities-active-icon-a9fab3a3.svg +++ /dev/null @@ -1,3 +0,0 @@ -> - - diff --git a/public/build/assets/activities-icon-8dd4bf93.svg b/public/build/assets/activities-icon-8dd4bf93.svg deleted file mode 100644 index 987b54fb9..000000000 --- a/public/build/assets/activities-icon-8dd4bf93.svg +++ /dev/null @@ -1,3 +0,0 @@ -> - - diff --git a/public/build/assets/android-icon-192x192-6acde713.png b/public/build/assets/android-icon-192x192-6acde713.png deleted file mode 100644 index db7fe99cc..000000000 Binary files a/public/build/assets/android-icon-192x192-6acde713.png and /dev/null differ diff --git a/public/build/assets/android-icon-36x36-7abaff6d.png b/public/build/assets/android-icon-36x36-7abaff6d.png deleted file mode 100644 index 356ee607f..000000000 Binary files a/public/build/assets/android-icon-36x36-7abaff6d.png and /dev/null differ diff --git a/public/build/assets/android-icon-48x48-03adbec2.png b/public/build/assets/android-icon-48x48-03adbec2.png deleted file mode 100644 index a7319dad2..000000000 Binary files a/public/build/assets/android-icon-48x48-03adbec2.png and /dev/null differ diff --git a/public/build/assets/app-06ae2a33.css b/public/build/assets/app-06ae2a33.css deleted file mode 100644 index 6f4e4b2a3..000000000 --- a/public/build/assets/app-06ae2a33.css +++ /dev/null @@ -1 +0,0 @@ -.flatpickr-calendar{background:transparent;opacity:0;display:none;text-align:center;visibility:hidden;padding:0;-webkit-animation:none;animation:none;direction:ltr;border:0;font-size:14px;line-height:24px;border-radius:5px;position:absolute;width:307.875px;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-touch-action:manipulation;touch-action:manipulation;background:#fff;-webkit-box-shadow:1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,.08);box-shadow:1px 0 #e6e6e6,-1px 0 #e6e6e6,0 1px #e6e6e6,0 -1px #e6e6e6,0 3px 13px #00000014}.flatpickr-calendar.open,.flatpickr-calendar.inline{opacity:1;max-height:640px;visibility:visible}.flatpickr-calendar.open{display:inline-block;z-index:99999}.flatpickr-calendar.animate.open{-webkit-animation:fpFadeInDown .3s cubic-bezier(.23,1,.32,1);animation:fpFadeInDown .3s cubic-bezier(.23,1,.32,1)}.flatpickr-calendar.inline{display:block;position:relative;top:2px}.flatpickr-calendar.static{position:absolute;top:calc(100% + 2px)}.flatpickr-calendar.static.open{z-index:999;display:block}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7){-webkit-box-shadow:none!important;box-shadow:none!important}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1){-webkit-box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6;box-shadow:-2px 0 #e6e6e6,5px 0 #e6e6e6}.flatpickr-calendar .hasWeeks .dayContainer,.flatpickr-calendar .hasTime .dayContainer{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.flatpickr-calendar .hasWeeks .dayContainer{border-left:0}.flatpickr-calendar.hasTime .flatpickr-time{height:40px;border-top:1px solid #e6e6e6}.flatpickr-calendar.noCalendar.hasTime .flatpickr-time{height:auto}.flatpickr-calendar:before,.flatpickr-calendar:after{position:absolute;display:block;pointer-events:none;border:solid transparent;content:"";height:0;width:0;left:22px}.flatpickr-calendar.rightMost:before,.flatpickr-calendar.arrowRight:before,.flatpickr-calendar.rightMost:after,.flatpickr-calendar.arrowRight:after{left:auto;right:22px}.flatpickr-calendar.arrowCenter:before,.flatpickr-calendar.arrowCenter:after{left:50%;right:50%}.flatpickr-calendar:before{border-width:5px;margin:0 -5px}.flatpickr-calendar:after{border-width:4px;margin:0 -4px}.flatpickr-calendar.arrowTop:before,.flatpickr-calendar.arrowTop:after{bottom:100%}.flatpickr-calendar.arrowTop:before{border-bottom-color:#e6e6e6}.flatpickr-calendar.arrowTop:after{border-bottom-color:#fff}.flatpickr-calendar.arrowBottom:before,.flatpickr-calendar.arrowBottom:after{top:100%}.flatpickr-calendar.arrowBottom:before{border-top-color:#e6e6e6}.flatpickr-calendar.arrowBottom:after{border-top-color:#fff}.flatpickr-calendar:focus{outline:0}.flatpickr-wrapper{position:relative;display:inline-block}.flatpickr-months{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.flatpickr-months .flatpickr-month{background:transparent;color:#000000e6;fill:#000000e6;height:34px;line-height:1;text-align:center;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:hidden;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.flatpickr-months .flatpickr-prev-month,.flatpickr-months .flatpickr-next-month{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-decoration:none;cursor:pointer;position:absolute;top:0;height:34px;padding:10px;z-index:3;color:#000000e6;fill:#000000e6}.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,.flatpickr-months .flatpickr-next-month.flatpickr-disabled{display:none}.flatpickr-months .flatpickr-prev-month i,.flatpickr-months .flatpickr-next-month i{position:relative}.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,.flatpickr-months .flatpickr-next-month.flatpickr-prev-month{left:0}.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,.flatpickr-months .flatpickr-next-month.flatpickr-next-month{right:0}.flatpickr-months .flatpickr-prev-month:hover,.flatpickr-months .flatpickr-next-month:hover{color:#959ea9}.flatpickr-months .flatpickr-prev-month:hover svg,.flatpickr-months .flatpickr-next-month:hover svg{fill:#f64747}.flatpickr-months .flatpickr-prev-month svg,.flatpickr-months .flatpickr-next-month svg{width:14px;height:14px}.flatpickr-months .flatpickr-prev-month svg path,.flatpickr-months .flatpickr-next-month svg path{-webkit-transition:fill .1s;transition:fill .1s;fill:inherit}.numInputWrapper{position:relative;height:auto}.numInputWrapper input,.numInputWrapper span{display:inline-block}.numInputWrapper input{width:100%}.numInputWrapper input::-ms-clear{display:none}.numInputWrapper input::-webkit-outer-spin-button,.numInputWrapper input::-webkit-inner-spin-button{margin:0;-webkit-appearance:none}.numInputWrapper span{position:absolute;right:0;width:14px;padding:0 4px 0 2px;height:50%;line-height:50%;opacity:0;cursor:pointer;border:1px solid rgba(57,57,57,.15);-webkit-box-sizing:border-box;box-sizing:border-box}.numInputWrapper span:hover{background:rgba(0,0,0,.1)}.numInputWrapper span:active{background:rgba(0,0,0,.2)}.numInputWrapper span:after{display:block;content:"";position:absolute}.numInputWrapper span.arrowUp{top:0;border-bottom:0}.numInputWrapper span.arrowUp:after{border-left:4px solid transparent;border-right:4px solid transparent;border-bottom:4px solid rgba(57,57,57,.6);top:26%}.numInputWrapper span.arrowDown{top:50%}.numInputWrapper span.arrowDown:after{border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid rgba(57,57,57,.6);top:40%}.numInputWrapper span svg{width:inherit;height:auto}.numInputWrapper span svg path{fill:#00000080}.numInputWrapper:hover{background:rgba(0,0,0,.05)}.numInputWrapper:hover span{opacity:1}.flatpickr-current-month{font-size:135%;line-height:inherit;font-weight:300;color:inherit;position:absolute;width:75%;left:12.5%;padding:7.48px 0 0;line-height:1;height:34px;display:inline-block;text-align:center;-webkit-transform:translate3d(0px,0px,0px);transform:translateZ(0)}.flatpickr-current-month span.cur-month{font-family:inherit;font-weight:700;color:inherit;display:inline-block;margin-left:.5ch;padding:0}.flatpickr-current-month span.cur-month:hover{background:rgba(0,0,0,.05)}.flatpickr-current-month .numInputWrapper{width:6ch;width:7ch�;display:inline-block}.flatpickr-current-month .numInputWrapper span.arrowUp:after{border-bottom-color:#000000e6}.flatpickr-current-month .numInputWrapper span.arrowDown:after{border-top-color:#000000e6}.flatpickr-current-month input.cur-year{background:transparent;-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;cursor:text;padding:0 0 0 .5ch;margin:0;display:inline-block;font-size:inherit;font-family:inherit;font-weight:300;line-height:inherit;height:auto;border:0;border-radius:0;vertical-align:initial;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}.flatpickr-current-month input.cur-year:focus{outline:0}.flatpickr-current-month input.cur-year[disabled],.flatpickr-current-month input.cur-year[disabled]:hover{font-size:100%;color:#00000080;background:transparent;pointer-events:none}.flatpickr-current-month .flatpickr-monthDropdown-months{appearance:menulist;background:transparent;border:none;border-radius:0;box-sizing:border-box;color:inherit;cursor:pointer;font-size:inherit;font-family:inherit;font-weight:300;height:auto;line-height:inherit;margin:-1px 0 0;outline:none;padding:0 0 0 .5ch;position:relative;vertical-align:initial;-webkit-box-sizing:border-box;-webkit-appearance:menulist;-moz-appearance:menulist;width:auto}.flatpickr-current-month .flatpickr-monthDropdown-months:focus,.flatpickr-current-month .flatpickr-monthDropdown-months:active{outline:none}.flatpickr-current-month .flatpickr-monthDropdown-months:hover{background:rgba(0,0,0,.05)}.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month{background-color:transparent;outline:none;padding:0}.flatpickr-weekdays{background:transparent;text-align:center;overflow:hidden;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:28px}.flatpickr-weekdays .flatpickr-weekdaycontainer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}span.flatpickr-weekday{cursor:default;font-size:90%;background:transparent;color:#0000008a;line-height:1;margin:0;text-align:center;display:block;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;font-weight:bolder}.dayContainer,.flatpickr-weeks{padding:1px 0 0}.flatpickr-days{position:relative;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;width:307.875px}.flatpickr-days:focus{outline:0}.dayContainer{padding:0;outline:0;text-align:left;width:307.875px;min-width:307.875px;max-width:307.875px;-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;display:-ms-flexbox;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-wrap:wrap;-ms-flex-pack:justify;-webkit-justify-content:space-around;justify-content:space-around;-webkit-transform:translate3d(0px,0px,0px);transform:translateZ(0);opacity:1}.dayContainer+.dayContainer{-webkit-box-shadow:-1px 0 0 #e6e6e6;box-shadow:-1px 0 #e6e6e6}.flatpickr-day{background:none;border:1px solid transparent;border-radius:150px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#393939;cursor:pointer;font-weight:400;width:14.2857143%;-webkit-flex-basis:14.2857143%;-ms-flex-preferred-size:14.2857143%;flex-basis:14.2857143%;max-width:39px;height:39px;line-height:39px;margin:0;display:inline-block;position:relative;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center}.flatpickr-day.inRange,.flatpickr-day.prevMonthDay.inRange,.flatpickr-day.nextMonthDay.inRange,.flatpickr-day.today.inRange,.flatpickr-day.prevMonthDay.today.inRange,.flatpickr-day.nextMonthDay.today.inRange,.flatpickr-day:hover,.flatpickr-day.prevMonthDay:hover,.flatpickr-day.nextMonthDay:hover,.flatpickr-day:focus,.flatpickr-day.prevMonthDay:focus,.flatpickr-day.nextMonthDay:focus{cursor:pointer;outline:0;background:#e6e6e6;border-color:#e6e6e6}.flatpickr-day.today{border-color:#959ea9}.flatpickr-day.today:hover,.flatpickr-day.today:focus{border-color:#959ea9;background:#959ea9;color:#fff}.flatpickr-day.selected,.flatpickr-day.startRange,.flatpickr-day.endRange,.flatpickr-day.selected.inRange,.flatpickr-day.startRange.inRange,.flatpickr-day.endRange.inRange,.flatpickr-day.selected:focus,.flatpickr-day.startRange:focus,.flatpickr-day.endRange:focus,.flatpickr-day.selected:hover,.flatpickr-day.startRange:hover,.flatpickr-day.endRange:hover,.flatpickr-day.selected.prevMonthDay,.flatpickr-day.startRange.prevMonthDay,.flatpickr-day.endRange.prevMonthDay,.flatpickr-day.selected.nextMonthDay,.flatpickr-day.startRange.nextMonthDay,.flatpickr-day.endRange.nextMonthDay{background:#569ff7;-webkit-box-shadow:none;box-shadow:none;color:#fff;border-color:#569ff7}.flatpickr-day.selected.startRange,.flatpickr-day.startRange.startRange,.flatpickr-day.endRange.startRange{border-radius:50px 0 0 50px}.flatpickr-day.selected.endRange,.flatpickr-day.startRange.endRange,.flatpickr-day.endRange.endRange{border-radius:0 50px 50px 0}.flatpickr-day.selected.startRange+.endRange:not(:nth-child(7n+1)),.flatpickr-day.startRange.startRange+.endRange:not(:nth-child(7n+1)),.flatpickr-day.endRange.startRange+.endRange:not(:nth-child(7n+1)){-webkit-box-shadow:-10px 0 0 #569ff7;box-shadow:-10px 0 #569ff7}.flatpickr-day.selected.startRange.endRange,.flatpickr-day.startRange.startRange.endRange,.flatpickr-day.endRange.startRange.endRange{border-radius:50px}.flatpickr-day.inRange{border-radius:0;-webkit-box-shadow:-5px 0 0 #e6e6e6,5px 0 0 #e6e6e6;box-shadow:-5px 0 #e6e6e6,5px 0 #e6e6e6}.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover,.flatpickr-day.prevMonthDay,.flatpickr-day.nextMonthDay,.flatpickr-day.notAllowed,.flatpickr-day.notAllowed.prevMonthDay,.flatpickr-day.notAllowed.nextMonthDay{color:#3939394d;background:transparent;border-color:transparent;cursor:default}.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover{cursor:not-allowed;color:#3939391a}.flatpickr-day.week.selected{border-radius:0;-webkit-box-shadow:-5px 0 0 #569ff7,5px 0 0 #569ff7;box-shadow:-5px 0 #569ff7,5px 0 #569ff7}.flatpickr-day.hidden{visibility:hidden}.rangeMode .flatpickr-day{margin-top:1px}.flatpickr-weekwrapper{float:left}.flatpickr-weekwrapper .flatpickr-weeks{padding:0 12px;-webkit-box-shadow:1px 0 0 #e6e6e6;box-shadow:1px 0 #e6e6e6}.flatpickr-weekwrapper .flatpickr-weekday{float:none;width:100%;line-height:28px}.flatpickr-weekwrapper span.flatpickr-day,.flatpickr-weekwrapper span.flatpickr-day:hover{display:block;width:100%;max-width:none;color:#3939394d;background:transparent;cursor:default;border:none}.flatpickr-innerContainer{display:block;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden}.flatpickr-rContainer{display:inline-block;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box}.flatpickr-time{text-align:center;outline:0;display:block;height:0;line-height:40px;max-height:40px;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.flatpickr-time:after{content:"";display:table;clear:both}.flatpickr-time .numInputWrapper{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;width:40%;height:40px;float:left}.flatpickr-time .numInputWrapper span.arrowUp:after{border-bottom-color:#393939}.flatpickr-time .numInputWrapper span.arrowDown:after{border-top-color:#393939}.flatpickr-time.hasSeconds .numInputWrapper{width:26%}.flatpickr-time.time24hr .numInputWrapper{width:49%}.flatpickr-time input{background:transparent;-webkit-box-shadow:none;box-shadow:none;border:0;border-radius:0;text-align:center;margin:0;padding:0;height:inherit;line-height:inherit;color:#393939;font-size:14px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}.flatpickr-time input.flatpickr-hour{font-weight:700}.flatpickr-time input.flatpickr-minute,.flatpickr-time input.flatpickr-second{font-weight:400}.flatpickr-time input:focus{outline:0;border:0}.flatpickr-time .flatpickr-time-separator,.flatpickr-time .flatpickr-am-pm{height:inherit;float:left;line-height:inherit;color:#393939;font-weight:700;width:2%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center}.flatpickr-time .flatpickr-am-pm{outline:0;width:18%;cursor:pointer;text-align:center;font-weight:400}.flatpickr-time input:hover,.flatpickr-time .flatpickr-am-pm:hover,.flatpickr-time input:focus,.flatpickr-time .flatpickr-am-pm:focus{background:#eee}.flatpickr-input[readonly]{cursor:pointer}@-webkit-keyframes fpFadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translateZ(0)}}@keyframes fpFadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translateZ(0)}}.vuecal__weekdays-headings{border-bottom:1px solid #ddd;margin-bottom:-1px}.vuecal--week-numbers .vuecal__weekdays-headings,.vuecal--view-with-time .vuecal__weekdays-headings{padding-left:3em}.vuecal--view-with-time.vuecal--twelve-hour .vuecal__weekdays-headings{font-size:.9em;padding-left:4em}.vuecal--overflow-x.vuecal--view-with-time .vuecal__weekdays-headings{padding-left:0}.vuecal__heading{width:100%;height:2.8em;font-weight:400;justify-content:center;text-align:center;align-items:center;position:relative;overflow:hidden}.vuecal__heading>.vuecal__flex{width:100%;height:100%;align-items:initial!important}.vuecal--sticky-split-labels .vuecal__heading{height:3.4em}.vuecal--month-view .vuecal__heading,.vuecal--week-view .vuecal__heading,.vuecal--day-view .vuecal__heading{width:14.2857%}.vuecal--hide-weekends.vuecal--month-view .vuecal__heading,.vuecal--hide-weekends.vuecal--week-view .vuecal__heading,.vuecal--hide-weekends.vuecal--day-view .vuecal__heading,.vuecal--years-view .vuecal__heading{width:20%}.vuecal--year-view .vuecal__heading{width:33.33%}.vuecal__heading .weekday-label{flex-shrink:0;display:flex;justify-content:center;align-items:center}.vuecal--small .vuecal__heading .small,.vuecal--xsmall .vuecal__heading .xsmall{display:block}.vuecal__heading .small,.vuecal__heading .xsmall,.vuecal--small .vuecal__heading .full,.vuecal--small .vuecal__heading .xsmall,.vuecal--xsmall .vuecal__heading .full,.vuecal--xsmall .vuecal__heading .small{display:none}.vuecal .vuecal__split-days-headers{align-items:center}@media screen and (max-width: 550px){.vuecal__heading{line-height:1.2}.vuecal__heading .small,.vuecal--small .vuecal__heading .small,.vuecal--xsmall .vuecal__heading .xsmall{display:block}.vuecal__heading .full,.vuecal__heading .xsmall,.vuecal--small .vuecal__heading .full,.vuecal--small .vuecal__heading .xsmall,.vuecal--xsmall .vuecal__heading .full,.vuecal--xsmall .vuecal__heading .small{display:none}.vuecal--overflow-x .vuecal__heading .full,.vuecal--small.vuecal--overflow-x .vuecal__heading .small,.vuecal--xsmall.vuecal--overflow-x .vuecal__heading .xsmall{display:block}.vuecal--overflow-x .vuecal__heading .small,.vuecal--overflow-x .vuecal__heading .xsmall,.vuecal--small.vuecal--overflow-x .vuecal__heading .full,.vuecal--small.vuecal--overflow-x .vuecal__heading .xsmall,.vuecal--xsmall.vuecal--overflow-x .vuecal__heading .full,.vuecal--xsmall.vuecal--overflow-x .vuecal__heading .small{display:none}}@media screen and (max-width: 450px){.vuecal__heading .xsmall,.vuecal--small .vuecal__heading .xsmall,.vuecal--xsmall .vuecal__heading .xsmall{display:block}.vuecal__heading .full,.vuecal__heading .small,.vuecal--small .vuecal__heading .full,.vuecal--small .vuecal__heading .small,.vuecal--xsmall .vuecal__heading .full,.vuecal--xsmall .vuecal__heading .small{display:none}.vuecal--small.vuecal--overflow-x .vuecal__heading .small,.vuecal--xsmall.vuecal--overflow-x .vuecal__heading .xsmall{display:block}.vuecal--small.vuecal--overflow-x .vuecal__heading .full,.vuecal--small.vuecal--overflow-x .vuecal__heading .xsmall,.vuecal--xsmall.vuecal--overflow-x .vuecal__heading .full,.vuecal--xsmall.vuecal--overflow-x .vuecal__heading .small{display:none}}.vuecal__header button{outline:none;font-family:inherit}.vuecal__menu{padding:0;margin:0;list-style-type:none;justify-content:center;background-color:#00000005}.vuecal__view-btn{background:none;border:none;padding:.3em 1em;height:2.2em;font-size:1.3em;border-bottom:0 solid currentColor;cursor:pointer;color:inherit;box-sizing:border-box;transition:.2s}.vuecal__view-btn--active{border-bottom-width:2px;background:rgba(255,255,255,.15)}.vuecal__title-bar{background-color:#0000001a;display:flex;align-items:center;text-align:center;justify-content:space-between;font-size:1.4em;line-height:1.3;min-height:2em}.vuecal--xsmall .vuecal__title-bar{font-size:1.3em}.vuecal__title{position:relative;justify-content:center}.vuecal__title button{cursor:pointer;background:none;border:none}.vuecal__title button.slide-fade--left-leave-active,.vuecal__title button.slide-fade--right-leave-active{width:100%}.vuecal__today-btn{position:relative;align-items:center;display:flex;font-size:.8em;background:none;border:none}.vuecal__today-btn span.default{font-size:.8em;padding:3px 6px;text-transform:uppercase;cursor:pointer}.vuecal__arrow{cursor:pointer;position:relative;z-index:1;background:none;border:none;white-space:nowrap}.vuecal__arrow--prev{margin-left:.6em}.vuecal__arrow--next{margin-right:.6em}.vuecal__arrow i.angle{display:inline-block;border:solid currentColor;border-width:0 2px 2px 0;padding:.25em;transform:rotate(-45deg)}.vuecal__arrow--prev i.angle{border-width:2px 0 0 2px}.vuecal__arrow--highlighted,.vuecal__today-btn--highlighted,.vuecal__view-btn--highlighted{position:relative;background-color:#0000000a}.vuecal__arrow--highlighted *,.vuecal__today-btn--highlighted *,.vuecal__view-btn--highlighted *{pointer-events:none}.vuecal__arrow--highlighted:before,.vuecal__arrow--highlighted:after,.vuecal__today-btn--highlighted:before,.vuecal__today-btn--highlighted:after,.vuecal__view-btn--highlighted:before,.vuecal__view-btn--highlighted:after{content:"";background-color:inherit;animation:sonar .8s infinite ease-out;position:absolute;top:50%;left:50%;pointer-events:none}.vuecal__arrow--highlighted:before,.vuecal__today-btn--highlighted:before,.vuecal__view-btn--highlighted:before{width:3em;height:3em;border-radius:3em;margin-top:-1.5em;margin-left:-1.5em}.vuecal__arrow--highlighted:after,.vuecal__today-btn--highlighted:after,.vuecal__view-btn--highlighted:after{animation-duration:1.5s;animation-delay:.1s;width:2.6em;height:2.6em;border-radius:2.6em;margin-top:-1.3em;margin-left:-1.3em}@keyframes sonar{0%,20%{opacity:1}to{transform:scale(2.5);opacity:0}}@media screen and (max-width: 450px){.vuecal__title{font-size:.9em}.vuecal__view-btn{padding-left:.6em;padding-right:.6em}}@media screen and (max-width: 350px){.vuecal__view-btn{font-size:1.1em}}.vuecal__event{color:#666;background-color:#f8f8f8cc;position:relative;box-sizing:border-box;left:0;width:100%;z-index:1;transition:box-shadow .3s,left .3s,width .3s;overflow:hidden}.vuecal--no-time .vuecal__event{min-height:8px}.vuecal:not(.vuecal--dragging-event) .vuecal__event:hover{z-index:2}.vuecal__cell .vuecal__event *{-webkit-user-select:text;-moz-user-select:text;user-select:text}.vuecal--view-with-time .vuecal__event:not(.vuecal__event--all-day){position:absolute}.vuecal--view-with-time .vuecal__bg .vuecal__event--all-day{position:absolute;top:0;bottom:0;z-index:0;opacity:.6;width:auto;right:0}.vuecal--view-with-time .vuecal__all-day .vuecal__event--all-day{position:relative;left:0}.vuecal__event--background{z-index:0}.vuecal__event--focus,.vuecal__event:focus{box-shadow:1px 1px 6px #0003;z-index:3;outline:none}.vuecal__event.vuecal__event--dragging{opacity:.7}.vuecal__event.vuecal__event--static{opacity:0;transition:opacity .1s}@-moz-document url-prefix(){.vuecal__event.vuecal__event--dragging{opacity:1}}.vuecal__event-resize-handle{position:absolute;bottom:0;left:0;right:0;height:1em;background-color:#ffffff4d;opacity:0;transform:translateY(110%);transition:.3s;cursor:ns-resize}.vuecal__event:hover .vuecal__event-resize-handle,.vuecal__event:focus .vuecal__event-resize-handle,.vuecal__event--focus .vuecal__event-resize-handle,.vuecal__event--resizing .vuecal__event-resize-handle{opacity:1;transform:translateY(0)}.vuecal__event--dragging .vuecal__event-resize-handle{display:none}.vuecal__event-delete{position:absolute;top:0;left:0;right:0;display:flex;flex-direction:column;align-items:center;justify-content:center;height:1.4em;line-height:1.4em;background-color:#dd3333d9;color:#fff;z-index:0;cursor:pointer;transform:translateY(-110%);transition:.3s}.vuecal__event .vuecal__event-delete{-webkit-user-select:none;-moz-user-select:none;user-select:none}.vuecal--full-height-delete .vuecal__event-delete{height:auto;bottom:0}.vuecal--full-height-delete .vuecal__event-delete:before{content:"";width:1.7em;height:1.8em;display:block;background-image:url('data:image/svg+xml;utf8,')}.vuecal__event--deletable .vuecal__event-delete{transform:translateY(0);z-index:1}.vuecal__event--deletable.vuecal__event--dragging .vuecal__event-delete{opacity:0;transition:none}.vuecal--month-view .vuecal__event-title{font-size:.85em}.vuecal--short-events .vuecal__event-title{text-align:left;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;padding:0 3px}.vuecal__event-title,.vuecal__event-content{-webkit-hyphens:auto;hyphens:auto}.vuecal__event-title--edit{border-bottom:1px solid transparent;text-align:center;transition:.3s;color:inherit;background-image:url('data:image/svg+xml;utf8,');background-repeat:no-repeat;background-position:120% .15em;background-size:.4em;outline:none;width:100%}.vuecal__event-title--edit:hover,.vuecal__event-title--edit:focus{border-color:#0006;background-position:99% .15em;background-size:1.2em}.vuecal__cell{position:relative;width:100%;display:flex;justify-content:center;align-items:center;text-align:center;transition:.15s ease-in-out background-color}.vuecal__cells.month-view .vuecal__cell,.vuecal__cells.week-view .vuecal__cell{width:14.2857%}.vuecal--hide-weekends .vuecal__cells.month-view .vuecal__cell,.vuecal--hide-weekends .vuecal__cells.week-view .vuecal__cell,.vuecal__cells.years-view .vuecal__cell{width:20%}.vuecal__cells.year-view .vuecal__cell{width:33.33%}.vuecal__cells.day-view .vuecal__cell{flex:1}.vuecal--overflow-x.vuecal--day-view .vuecal__cell{width:auto}.vuecal--click-to-navigate .vuecal__cell:not(.vuecal__cell--disabled){cursor:pointer}.vuecal--view-with-time .vuecal__cell,.vuecal--week-view.vuecal--no-time .vuecal__cell:not(.vuecal__cell--has-splits),.vuecal--day-view.vuecal--no-time .vuecal__cell:not(.vuecal__cell--has-splits){display:block}.vuecal__cell.vuecal__cell--has-splits{flex-direction:row;display:flex}.vuecal__cell:before{content:"";position:absolute;z-index:0;top:0;left:0;right:-1px;bottom:-1px;border:1px solid rgba(196,196,196,.25)}.vuecal--overflow-x.vuecal--day-view .vuecal__cell:before{bottom:0}.vuecal__cell--today,.vuecal__cell--current{background-color:#f0f0ff66;z-index:1}.vuecal__cell--selected{background-color:#ebfff566;z-index:2}.vuecal--day-view .vuecal__cell--selected{background:none}.vuecal__cell--out-of-scope{color:#00000040}.vuecal__cell--disabled{color:#00000040;cursor:not-allowed}.vuecal__cell--highlighted:not(.vuecal__cell--has-splits),.vuecal__cell-split.vuecal__cell-split--highlighted{background-color:#0000000a;transition-duration:5ms}.vuecal__cell-content{position:relative;width:100%;height:100%;outline:none}.vuecal--years-view .vuecal__cell-content,.vuecal--year-view .vuecal__cell-content,.vuecal--month-view .vuecal__cell-content{justify-content:center}.vuecal__cell .cell-time-labels{position:absolute;top:0;left:0;right:0;bottom:0;display:flex;flex-direction:column}.vuecal__cell .cell-time-label{flex-grow:1;font-size:.8em;opacity:.3;line-height:1.7}.vuecal__cell-split{display:flex;flex-grow:1;flex-direction:column;height:100%;position:relative;transition:.15s ease-in-out background-color}.vuecal__cell-events{width:100%}.vuecal__cell-events-count{position:absolute;left:50%;top:65%;transform:translate(-50%);min-width:12px;height:12px;line-height:12px;padding:0 3px;background:#999;color:#fff;border-radius:12px;font-size:10px;box-sizing:border-box}.vuecal__cell .vuecal__special-hours{position:absolute;left:0;right:0;box-sizing:border-box}.vuecal--overflow-x.vuecal--week-view .vuecal__cell,.vuecal__cell-split{overflow:hidden}.vuecal__no-event{padding-top:1em;color:#aaa;justify-self:flex-start;margin-bottom:auto}.vuecal__all-day .vuecal__no-event{display:none}.vuecal__now-line{position:absolute;left:0;width:100%;height:0;color:red;border-top:1px solid currentColor;opacity:.6;z-index:1}.vuecal__now-line:before{content:"";position:absolute;top:-6px;left:0;border:5px solid transparent;border-left-color:currentColor}.vuecal{height:100%;box-shadow:0 0 0 1px inset #00000014}.vuecal *{-webkit-user-select:none;-moz-user-select:none;user-select:none}.vuecal--has-touch *:not(.vuecal__event-title--edit){-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vuecal .clickable{cursor:pointer}.vuecal--resizing-event,.vuecal--drag-creating-event{cursor:ns-resize}.vuecal--dragging-event{cursor:move;cursor:grabbing}.vuecal .dragging-helper{position:absolute;width:60px;height:40px;background:rgba(138,190,230,.8);border:1px solid #61a9e0;z-index:10}.vuecal--xsmall{font-size:.9em}.vuecal__flex{display:flex;flex-direction:row}.vuecal__flex[column]{flex-direction:column;flex:1 1 auto}.vuecal__flex[grow]{flex:1 1 auto;width:100%}.vuecal__flex[wrap]{flex-wrap:wrap}.vuecal__split-days-headers.slide-fade--right-leave-active{display:none}.vuecal--week-numbers.vuecal--month-view .vuecal__split-days-headers{margin-left:3em}.vuecal--day-view:not(.vuecal--overflow-x) .vuecal__split-days-headers{margin-left:3em;height:2.2em}.vuecal--day-view.vuecal--twelve-hour:not(.vuecal--overflow-x) .vuecal__split-days-headers{margin-left:4em}.vuecal__split-days-headers .day-split-header{display:flex;flex-grow:1;flex-basis:0;justify-content:center;align-items:center;height:100%}.vuecal__split-days-headers .vuecal--day-view.vuecal--overflow-x.vuecal--sticky-split-labels .day-split-header{height:1.5em}.vuecal__body{position:relative;overflow:hidden}.vuecal__all-day{min-height:1.7em;margin-bottom:-1px;flex-shrink:0}.vuecal__all-day-text{width:3em;box-sizing:border-box;color:#999;padding-right:2px;display:flex;flex-shrink:0;align-items:center;justify-content:flex-end;border-bottom:1px solid #ddd;-webkit-hyphens:auto;hyphens:auto}.vuecal__all-day-text span{font-size:.85em;text-align:right;line-height:1.1}.vuecal--twelve-hour .vuecal__all-day>span{width:4em}.vuecal__bg{overflow:auto;overflow-x:hidden;-webkit-overflow-scrolling:touch;min-height:60px;position:relative;width:100%}.vuecal--no-time .vuecal__bg{display:flex;flex:1 1 auto;overflow:auto}.vuecal__week-numbers{width:3em;flex-shrink:0!important}.vuecal__week-numbers .vuecal__week-number-cell{opacity:.4;font-size:.9em;align-items:center;justify-items:center;justify-content:center}.vuecal__scrollbar-check{position:absolute;top:0;left:0;right:0;bottom:0;overflow:scroll;visibility:hidden;z-index:-1}.vuecal__scrollbar-check div{height:120%}.vuecal__time-column{width:3em;height:100%;flex-shrink:0}.vuecal--twelve-hour .vuecal__time-column{width:4em;font-size:.9em}.vuecal--overflow-x.vuecal--week-view .vuecal__time-column{margin-top:2.8em;box-shadow:0 1px 1px #0000004d}.vuecal--overflow-x.vuecal--week-view.vuecal--sticky-split-labels .vuecal__time-column{margin-top:3.4em}.vuecal--overflow-x.vuecal--day-view.vuecal--sticky-split-labels .vuecal__time-column{margin-top:1.5em}.vuecal__time-column .vuecal__time-cell{color:#999;text-align:right;padding-right:2px;font-size:.9em}.vuecal__time-column .vuecal__time-cell-line:before{content:"";position:absolute;left:0;right:0;border-top:1px solid rgba(196,196,196,.3)}.vuecal__cells{margin:0 1px 1px 0}.vuecal--overflow-x.vuecal--day-view .vuecal__cells{margin:0}.vuecal--events-on-month-view.vuecal--short-events .vuecal__cells{width:99.9%}.vuecal--overflow-x.vuecal--day-view .vuecal__cells,.vuecal--overflow-x.vuecal--week-view .vuecal__cells{flex-wrap:nowrap;overflow:auto}.slide-fade--left-enter-active,.slide-fade--left-leave-active,.slide-fade--right-enter-active,.slide-fade--right-leave-active{transition:.25s ease-out}.slide-fade--left-enter-from,.slide-fade--right-leave-to{transform:translate(-15px);opacity:0}.slide-fade--left-leave-to,.slide-fade--right-enter-from{transform:translate(15px);opacity:0}.slide-fade--left-leave-active,.slide-fade--right-leave-active{position:absolute!important;height:100%}.vuecal__title-bar .slide-fade--left-leave-active,.vuecal__title-bar .slide-fade--right-leave-active{left:0;right:0;height:auto}.vuecal__heading .slide-fade--left-leave-active,.vuecal__heading .slide-fade--right-leave-active{display:flex;align-items:center}.vuecal--green-theme .vuecal__menu,.vuecal--green-theme .vuecal__cell-events-count{background-color:#42b983;color:#fff}.vuecal--green-theme .vuecal__title-bar{background-color:#e4f5ef}.vuecal--green-theme .vuecal__cell--today,.vuecal--green-theme .vuecal__cell--current{background-color:#f0f0ff66}.vuecal--green-theme:not(.vuecal--day-view) .vuecal__cell--selected{background-color:#ebfff566}.vuecal--green-theme .vuecal__cell--selected:before{border-color:#42b98380}.vuecal--green-theme .vuecal__cell--highlighted:not(.vuecal__cell--has-splits),.vuecal--green-theme .vuecal__cell-split--highlighted{background-color:#c3ffe180}.vuecal--green-theme .vuecal__arrow--highlighted,.vuecal--green-theme .vuecal__today-btn--highlighted,.vuecal--green-theme .vuecal__view-btn--highlighted{background-color:#88ecbf40}.vuecal--blue-theme .vuecal__menu,.vuecal--blue-theme .vuecal__cell-events-count{background-color:#42a3b9cc;color:#fff}.vuecal--blue-theme .vuecal__title-bar{background-color:#00a5bc4d}.vuecal--blue-theme .vuecal__cell--today,.vuecal--blue-theme .vuecal__cell--current{background-color:#f0f0ff66}.vuecal--blue-theme:not(.vuecal--day-view) .vuecal__cell--selected{background-color:#ebfdff66}.vuecal--blue-theme .vuecal__cell--selected:before{border-color:#73bfcc80}.vuecal--blue-theme .vuecal__cell--highlighted:not(.vuecal__cell--has-splits),.vuecal--blue-theme .vuecal__cell-split--highlighted{background-color:#00a5bc0f}.vuecal--blue-theme .vuecal__arrow--highlighted,.vuecal--blue-theme .vuecal__today-btn--highlighted,.vuecal--blue-theme .vuecal__view-btn--highlighted{background-color:#42a3b933}.vuecal--rounded-theme .vuecal__weekdays-headings{border:none}.vuecal--rounded-theme .vuecal__cell,.vuecal--rounded-theme .vuecal__cell:before{background:none;border:none}.vuecal--rounded-theme .vuecal__cell--out-of-scope{opacity:.4}.vuecal--rounded-theme .vuecal__cell-content{width:30px;height:30px;flex-grow:0;border:1px solid transparent;border-radius:30px;color:#333}.vuecal--rounded-theme.vuecal--day-view .vuecal__cell-content{width:auto;background:none}.vuecal--rounded-theme.vuecal--year-view .vuecal__cell{width:33.33%}.vuecal--rounded-theme.vuecal--year-view .vuecal__cell-content{width:85px}.vuecal--rounded-theme.vuecal--years-view .vuecal__cell-content{width:52px}.vuecal--rounded-theme .vuecal__cell{background-color:transparent!important}.vuecal--rounded-theme.vuecal--green-theme:not(.vuecal--day-view) .vuecal__cell-content{background-color:#f1faf7}.vuecal--rounded-theme.vuecal--green-theme:not(.vuecal--day-view) .vuecal__cell--today .vuecal__cell-content{background-color:#42b983;color:#fff}.vuecal--rounded-theme.vuecal--green-theme .vuecal--day-view .vuecal__cell--today:before{background-color:#42b9830d}.vuecal--rounded-theme.vuecal--green-theme:not(.vuecal--day-view) .vuecal__cell--selected .vuecal__cell-content{border-color:#42b983}.vuecal--rounded-theme.vuecal--green-theme .vuecal__cell--highlighted:not(.vuecal__cell--has-splits),.vuecal--rounded-theme.vuecal--green-theme .vuecal__cell-split--highlighted{background-color:#c3ffe180}.vuecal--rounded-theme.vuecal--blue-theme:not(.vuecal--day-view) .vuecal__cell-content{background-color:#64b6ff33}.vuecal--rounded-theme.vuecal--blue-theme:not(.vuecal--day-view) .vuecal__cell--today .vuecal__cell-content{background-color:#8fb7e4;color:#fff}.vuecal--rounded-theme.vuecal--blue-theme .vuecal--day-view .vuecal__cell--today:before{background-color:#8fb7e41a}.vuecal--rounded-theme.vuecal--blue-theme:not(.vuecal--day-view) .vuecal__cell--selected .vuecal__cell-content{border-color:#61a9e0}.vuecal--rounded-theme.vuecal--blue-theme .vuecal__cell--highlighted:not(.vuecal__cell--has-splits),.vuecal--rounded-theme.vuecal--blue-theme .vuecal__cell-split--highlighted{background-color:#00a5bc0f}.vuecal--date-picker .vuecal__title-bar{font-size:1.2em}.vuecal--date-picker .vuecal__heading{height:2.2em;font-weight:500;opacity:.4}.vuecal--date-picker .vuecal__weekdays-headings{border:none}.vuecal--date-picker .vuecal__body{margin-left:1px}.vuecal--date-picker .vuecal__cell,.vuecal--date-picker .vuecal__cell:before{background:none;border:none}.vuecal--date-picker .vuecal__cell-content{height:26px;flex-grow:0;border:1px solid transparent;border-radius:25px;transition:background-color .2s cubic-bezier(.39,.58,.57,1)}.vuecal--date-picker.vuecal--years-view .vuecal__cell-content{flex:0;padding:0 4px;height:24px}.vuecal--date-picker.vuecal--year-view .vuecal__cell-content{flex:0;padding:0 15px}.vuecal--date-picker.vuecal--month-view .vuecal__cell-content{width:26px}.vuecal--date-picker:not(.vuecal--day-view) .vuecal__cell-content:hover{background-color:#0000001a}.vuecal--date-picker:not(.vuecal--day-view) .vuecal__cell--selected .vuecal__cell-content{background-color:#42b982;color:#fff}.vuecal--date-picker:not(.vuecal--day-view) .vuecal__cell--current .vuecal__cell-content,.vuecal--date-picker:not(.vuecal--day-view) .vuecal__cell--today .vuecal__cell-content{border-color:#42b982} diff --git a/public/build/assets/app-3e406cf4.css b/public/build/assets/app-3e406cf4.css deleted file mode 100644 index 061444d5f..000000000 --- a/public/build/assets/app-3e406cf4.css +++ /dev/null @@ -1 +0,0 @@ -*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }.container{width:100%;margin-right:auto;margin-left:auto;padding-right:16px;padding-left:16px}@media (min-width: 1920px){.container{max-width:1920px}}::-webkit-scrollbar{width:12px}::-webkit-scrollbar-track{background:#f1f1f1}::-webkit-scrollbar-thumb{background:#888;border-radius:6px}::-webkit-scrollbar-thumb:hover{background:#555}*{scrollbar-width:thin;scrollbar-color:#888 #f1f1f1}::-moz-selection{background-color:#0044f233}::selection{background-color:#0044f233}body{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}button:disabled{cursor:not-allowed;opacity:.5}button:disabled:hover{cursor:not-allowed;opacity:.5}.draggable-ghost{opacity:.5;background:#e0e7ff}html.dark [class^=icon-],html.dark [class*=" icon-"]{color:#d1d5db}.box-shadow{border-width:1px;--tw-shadow: 0px 0px 0px 0px rgba(0,0,0,.03),0px 1px 1px 0px rgba(0,0,0,.03),0px 3px 3px 0px rgba(0,0,0,.03),0px 6px 4px 0px rgba(0,0,0,.02),0px 11px 4px 0px rgba(0,0,0,0),0px 17px 5px 0px rgba(0,0,0,0);--tw-shadow-colored: 0px 0px 0px 0px var(--tw-shadow-color), 0px 1px 1px 0px var(--tw-shadow-color), 0px 3px 3px 0px var(--tw-shadow-color), 0px 6px 4px 0px var(--tw-shadow-color), 0px 11px 4px 0px var(--tw-shadow-color), 0px 17px 5px 0px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.box-shadow:is(.dark *){--tw-border-opacity: 1;border-color:rgb(31 41 55 / var(--tw-border-opacity))}.icon-bookmark:before{content:""}.icon-bookmark-active:before{content:""}.icon-list:before{content:""}.icon-enter:before{content:""}.icon-kanban:before{content:""}.icon-tick:before{content:""}.icon-eye-hide:before{content:""}.icon-percentage:before{content:""}.icon-dollar:before{content:""}.icon-radio-selected:before{content:""}.icon-radio-normal:before{content:""}.icon-folder:before{content:""}.icon-file:before{content:""}.icon-eye:before{content:""}.icon-notification:before{content:""}.icon-configuration:before{content:""}.icon-note:before{content:""}.icon-edit:before{content:""}.icon-calender:before{content:""}.icon-delete:before{content:""}.icon-more:before{content:""}.icon-checkbox-multiple:before{content:""}.icon-checkbox-select:before{content:""}.icon-checkbox-outline:before{content:""}.icon-message:before{content:""}.icon-video:before{content:""}.icon-attachment:before{content:""}.icon-sent:before{content:""}.icon-call:before{content:""}.icon-meeting:before{content:""}.icon-ligh:before{content:""}.icon-dark:before{content:""}.icon-mail:before{content:""}.icon-leads:before{content:""}.icon-filter:before{content:""}.icon-setting:before{content:""}.icon-product:before{content:""}.icon-contact:before{content:""}.icon-activity:before{content:""}.icon-perosnal:before{content:""}.icon-quote:before{content:""}.icon-dashboard:before{content:""}.icon-cross-large:before{content:""}.icon-left-arrow:before{content:""}.icon-right-arrow:before{content:""}.icon-up-arrow:before{content:""}.icon-down-arrow:before{content:""}.icon-search:before{content:""}.icon-add:before{content:""}.icon-add-2:before{content:""}p{font-size:14px;line-height:17px!important}input,textarea,select{outline:2px solid transparent;outline-offset:2px}.primary-button{display:flex;cursor:pointer;place-content:center;align-items:center;-moz-column-gap:.25rem;column-gap:.25rem;border-radius:.375rem;border-width:1px;--tw-border-opacity: 1;border-color:rgb(14 144 217 / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(14 144 217 / var(--tw-bg-opacity));padding:.375rem .75rem;font-weight:600;--tw-text-opacity: 1;color:rgb(249 250 251 / var(--tw-text-opacity));transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.primary-button:hover{opacity:.9}.primary-button:focus{opacity:.9}.secondary-button{display:flex;cursor:pointer;place-content:center;align-items:center;-moz-column-gap:.25rem;column-gap:.25rem;white-space:nowrap;border-radius:.375rem;border-width:2px;--tw-border-opacity: 1;border-color:rgb(37 99 235 / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity));padding:.375rem .75rem;font-weight:600;--tw-text-opacity: 1;color:rgb(37 99 235 / var(--tw-text-opacity));transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.secondary-button:hover{background-color:#eff6ff61}.secondary-button:focus{background-color:#eff6ff61}.secondary-button:is(.dark *){--tw-border-opacity: 1;border-color:rgb(156 163 175 / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.secondary-button:hover:is(.dark *){opacity:.8}.transparent-button{display:flex;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none;place-content:center;align-items:center;-moz-column-gap:.25rem;column-gap:.25rem;white-space:nowrap;border-radius:.375rem;border-width:2px;border-color:transparent;padding:.375rem .75rem;font-weight:600;--tw-text-opacity: 1;color:rgb(75 85 99 / var(--tw-text-opacity));transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transparent-button *::marker{--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.transparent-button::marker{--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.transparent-button:hover{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.transparent-button:focus{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.transparent-button:hover:is(.dark *){--tw-bg-opacity: 1;background-color:rgb(3 7 18 / var(--tw-bg-opacity))}.journal-scroll::-webkit-scrollbar{width:14px;cursor:pointer;display:none}.journal-scroll::-webkit-scrollbar-track{background-color:#fff;cursor:pointer;border-radius:12px;border:1px solid #e9e9e9}.journal-scroll::-webkit-scrollbar-thumb{cursor:pointer;background-color:#e9e9e9;border-radius:12px;border:3px solid transparent;background-clip:content-box}.custom-select{-webkit-appearance:none;-moz-appearance:none;background:transparent;background-image:url("data:image/svg+xml;utf8,");background-repeat:no-repeat;background-position-x:calc(100% - 10px);background-position-y:50%}.dark .custom-select{background-image:url("data:image/svg+xml;utf8,")}[dir=rtl] .custom-select{background-position-x:calc(100% - (100% - 10px))}.label-pending,.label-processing,.label-closed,.label-canceled,.label-info,.label-fraud,.label-pending_payment,.label-completed,.label-active{max-width:-moz-max-content;max-width:max-content;border-radius:35px;padding-top:1px;padding-bottom:1px;padding-left:.375rem;padding-right:.375rem;font-size:12px;font-weight:600;--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.label-completed,.label-active{--tw-bg-opacity: 1;background-color:rgb(22 163 74 / var(--tw-bg-opacity))}.label-canceled,.label-fraud{--tw-bg-opacity: 1;background-color:rgb(225 29 72 / var(--tw-bg-opacity))}.icon-star-fill:before{content:"";color:#ffb600}.shimmer{animation-duration:2.2s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:skeleton;animation-timing-function:linear;background:linear-gradient(to right,#f6f6f6 8%,#f0f0f0 18%,#f6f6f6 33%);background-size:1250px 100%}.light-shimmer-bg{background:linear-gradient(to right,#fafafa 8%,#f5f5f5 18%,#fafafa 33%);background-size:1250px 100%}.dark .shimmer{background:linear-gradient(to right,#1f2937 8%,#1a2232 18%,#1f2937 33%)}.draggable-ghost{border-width:1px;border-style:dashed;--tw-border-opacity: 1 !important;border-color:rgb(209 213 219 / var(--tw-border-opacity))!important}@keyframes skeleton{0%{background-position:-1250px 0}to{background-position:1250px 0}}.required:after{--tw-content: "*";content:var(--tw-content)}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.pointer-events-none{pointer-events:none}.pointer-events-auto{pointer-events:auto}.invisible{visibility:hidden}.collapse{visibility:collapse}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.inset-0{top:0;right:0;bottom:0;left:0}.inset-x-0{left:0;right:0}.inset-y-0{top:0;bottom:0}.bottom-0{bottom:0}.bottom-1\.5{bottom:.375rem}.bottom-24{bottom:6rem}.bottom-4{bottom:1rem}.left-0{left:0}.left-1\/2{left:50%}.left-\[190px\]{left:190px}.right-0{right:0}.right-2{right:.5rem}.right-3{right:.75rem}.top-0{top:0}.top-1{top:.25rem}.top-1\.5{top:.375rem}.top-1\/2{top:50%}.top-10{top:2.5rem}.top-14{top:3.5rem}.top-2\.5{top:.625rem}.top-3{top:.75rem}.top-5{top:1.25rem}.top-\[42px\]{top:42px}.z-10{z-index:10}.z-\[10001\]{z-index:10001}.z-\[10002\]{z-index:10002}.z-\[10003\]{z-index:10003}.z-\[1000\]{z-index:1000}.z-\[999\]{z-index:999}.float-right{float:right}.m-3{margin:.75rem}.mx-1{margin-left:.25rem;margin-right:.25rem}.mx-auto{margin-left:auto;margin-right:auto}.my-2\.5{margin-top:.625rem;margin-bottom:.625rem}.my-4{margin-top:1rem;margin-bottom:1rem}.\!mb-0{margin-bottom:0!important}.\!mt-4{margin-top:1rem!important}.-mb-px{margin-bottom:-1px}.-mt-px{margin-top:-1px}.mb-0\.5{margin-bottom:.125rem}.mb-1{margin-bottom:.25rem}.mb-1\.5{margin-bottom:.375rem}.mb-2{margin-bottom:.5rem}.mb-2\.5{margin-bottom:.625rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.ml-1{margin-left:.25rem}.ml-1\.5{margin-left:.375rem}.ml-12{margin-left:3rem}.ml-2{margin-left:.5rem}.ml-4{margin-left:1rem}.mr-1{margin-right:.25rem}.mr-2{margin-right:.5rem}.mt-0\.5{margin-top:.125rem}.mt-1{margin-top:.25rem}.mt-1\.5{margin-top:.375rem}.mt-2{margin-top:.5rem}.mt-20{margin-top:5rem}.mt-3\.5{margin-top:.875rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.\!flex{display:flex!important}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.aspect-\[0\.5\/1\]{aspect-ratio:.5/1}.aspect-\[2\]{aspect-ratio:2}.aspect-\[3\.23\/1\]{aspect-ratio:3.23/1}.\!h-\[200px\]{height:200px!important}.h-1{height:.25rem}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-14{height:3.5rem}.h-16{height:4rem}.h-2{height:.5rem}.h-2\.5{height:.625rem}.h-20{height:5rem}.h-3\.5{height:.875rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-\[100vh\]{height:100vh}.h-\[110px\]{height:110px}.h-\[120px\]{height:120px}.h-\[15px\]{height:15px}.h-\[17px\]{height:17px}.h-\[180px\]{height:180px}.h-\[18px\]{height:18px}.h-\[19px\]{height:19px}.h-\[214px\]{height:214px}.h-\[21px\]{height:21px}.h-\[26px\]{height:26px}.h-\[271px\]{height:271px}.h-\[38px\]{height:38px}.h-\[39px\]{height:39px}.h-\[42px\]{height:42px}.h-\[46px\]{height:46px}.h-\[58px\]{height:58px}.h-\[60px\]{height:60px}.h-\[61px\]{height:61px}.h-\[65px\]{height:65px}.h-\[calc\(100vh-100px\)\]{height:calc(100vh - 100px)}.h-\[calc\(100vh-179px\)\]{height:calc(100vh - 179px)}.h-\[calc\(100vh-285px\)\]{height:calc(100vh - 285px)}.h-\[calc\(100vh-315px\)\]{height:calc(100vh - 315px)}.h-full{height:100%}.max-h-9{max-height:2.25rem}.max-h-\[120px\]{max-height:120px}.max-h-\[400px\]{max-height:400px}.max-h-\[60px\]{max-height:60px}.max-h-\[calc\(100vh-330px\)\]{max-height:calc(100vh - 330px)}.min-h-0{min-height:0px}.min-h-\[110px\]{min-height:110px}.min-h-\[163px\]{min-height:163px}.min-h-\[39px\]{min-height:39px}.min-h-\[47px\]{min-height:47px}.min-h-full{min-height:100%}.min-h-screen{min-height:100vh}.\!w-1\/3{width:33.333333%!important}.\!w-full{width:100%!important}.w-1\/3{width:33.333333%}.w-10{width:2.5rem}.w-12{width:3rem}.w-14{width:3.5rem}.w-16{width:4rem}.w-2\.5{width:.625rem}.w-20{width:5rem}.w-24{width:6rem}.w-28{width:7rem}.w-3\.5{width:.875rem}.w-32{width:8rem}.w-36{width:9rem}.w-4{width:1rem}.w-40{width:10rem}.w-5{width:1.25rem}.w-52{width:13rem}.w-6{width:1.5rem}.w-64{width:16rem}.w-72{width:18rem}.w-8{width:2rem}.w-9{width:2.25rem}.w-\[100px\]{width:100px}.w-\[101px\]{width:101px}.w-\[105px\]{width:105px}.w-\[108px\]{width:108px}.w-\[109px\]{width:109px}.w-\[110px\]{width:110px}.w-\[117px\]{width:117px}.w-\[120px\]{width:120px}.w-\[123px\]{width:123px}.w-\[127px\]{width:127px}.w-\[130px\]{width:130px}.w-\[134px\]{width:134px}.w-\[137px\]{width:137px}.w-\[140px\]{width:140px}.w-\[141px\]{width:141px}.w-\[143px\]{width:143px}.w-\[147px\]{width:147px}.w-\[150px\]{width:150px}.w-\[152px\]{width:152px}.w-\[157px\]{width:157px}.w-\[166px\]{width:166px}.w-\[170px\]{width:170px}.w-\[172px\]{width:172px}.w-\[177px\]{width:177px}.w-\[178px\]{width:178px}.w-\[180px\]{width:180px}.w-\[190px\]{width:190px}.w-\[200px\]{width:200px}.w-\[204px\]{width:204px}.w-\[210px\]{width:210px}.w-\[250px\]{width:250px}.w-\[251px\]{width:251px}.w-\[254px\]{width:254px}.w-\[25px\]{width:25px}.w-\[26px\]{width:26px}.w-\[285px\]{width:285px}.w-\[302px\]{width:302px}.w-\[30px\]{width:30px}.w-\[321px\]{width:321px}.w-\[34px\]{width:34px}.w-\[350px\]{width:350px}.w-\[35px\]{width:35px}.w-\[360px\]{width:360px}.w-\[38px\]{width:38px}.w-\[39px\]{width:39px}.w-\[42px\]{width:42px}.w-\[434px\]{width:434px}.w-\[46px\]{width:46px}.w-\[475px\]{width:475px}.w-\[49px\]{width:49px}.w-\[50px\]{width:50px}.w-\[525px\]{width:525px}.w-\[52px\]{width:52px}.w-\[534px\]{width:534px}.w-\[54px\]{width:54px}.w-\[55px\]{width:55px}.w-\[58px\]{width:58px}.w-\[60px\]{width:60px}.w-\[62px\]{width:62px}.w-\[65px\]{width:65px}.w-\[70px\]{width:70px}.w-\[72px\]{width:72px}.w-\[75px\]{width:75px}.w-\[77px\]{width:77px}.w-\[79px\]{width:79px}.w-\[82px\]{width:82px}.w-\[83px\]{width:83px}.w-\[85px\]{width:85px}.w-\[88px\]{width:88px}.w-\[90px\]{width:90px}.w-\[94px\]{width:94px}.w-auto{width:auto}.w-full{width:100%}.w-max{width:-moz-max-content;width:max-content}.min-w-0{min-width:0px}.min-w-\[110px\]{min-width:110px}.min-w-\[120px\]{min-width:120px}.min-w-\[150px\]{min-width:150px}.min-w-\[180px\]{min-width:180px}.min-w-\[200px\]{min-width:200px}.min-w-\[210px\]{min-width:210px}.min-w-\[275px\]{min-width:275px}.min-w-\[300px\]{min-width:300px}.min-w-\[800px\]{min-width:800px}.max-w-6xl{max-width:72rem}.max-w-9{max-width:2.25rem}.max-w-\[120px\]{max-width:120px}.max-w-\[210px\]{max-width:210px}.max-w-\[275px\]{max-width:275px}.max-w-\[400px\]{max-width:400px}.max-w-\[445px\]{max-width:445px}.max-w-\[525px\]{max-width:525px}.max-w-\[568px\]{max-width:568px}.max-w-\[60px\]{max-width:60px}.max-w-full{max-width:100%}.max-w-max{max-width:-moz-max-content;max-width:max-content}.max-w-xl{max-width:36rem}.flex-1{flex:1 1 0%}.border-collapse{border-collapse:collapse}.-translate-x-1\/2{--tw-translate-x: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-y-1\/2,.-translate-y-2\/4{--tw-translate-y: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-y-4{--tw-translate-y: -1rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-y-full{--tw-translate-y: -100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-0{--tw-translate-x: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-0{--tw-translate-y: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-4{--tw-translate-y: 1rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-full{--tw-translate-y: 100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-45{--tw-rotate: 45deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-100{--tw-scale-x: 1;--tw-scale-y: 1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-95{--tw-scale-x: .95;--tw-scale-y: .95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.animate-\[on-fade_0\.5s_ease-in-out\]{animation:on-fade .5s ease-in-out}@keyframes spin{to{transform:rotate(360deg)}}.animate-spin{animation:spin 1s linear infinite}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.select-all{-webkit-user-select:all;-moz-user-select:all;user-select:all}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.grid-cols-\[\.3fr_\.1fr_\.3fr_\.5fr\]{grid-template-columns:.3fr .1fr .3fr .5fr}.grid-cols-\[2fr_1fr_1fr\]{grid-template-columns:2fr 1fr 1fr}.grid-rows-1{grid-template-rows:repeat(1,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.place-content-center{place-content:center}.place-content-start{place-content:start}.content-end{align-content:flex-end}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.justify-items-end{justify-items:end}.justify-items-center{justify-items:center}.gap-0\.5{gap:.125rem}.gap-1{gap:.25rem}.gap-1\.5{gap:.375rem}.gap-12{gap:3rem}.gap-16{gap:4rem}.gap-2{gap:.5rem}.gap-2\.5{gap:.625rem}.gap-3{gap:.75rem}.gap-3\.5{gap:.875rem}.gap-4{gap:1rem}.gap-5{gap:1.25rem}.gap-6{gap:1.5rem}.gap-7{gap:1.75rem}.gap-8{gap:2rem}.gap-x-1{-moz-column-gap:.25rem;column-gap:.25rem}.gap-x-1\.5{-moz-column-gap:.375rem;column-gap:.375rem}.gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.gap-x-2\.5{-moz-column-gap:.625rem;column-gap:.625rem}.gap-x-3\.5{-moz-column-gap:.875rem;column-gap:.875rem}.gap-x-4{-moz-column-gap:1rem;column-gap:1rem}.gap-x-5{-moz-column-gap:1.25rem;column-gap:1.25rem}.gap-y-1{row-gap:.25rem}.gap-y-2{row-gap:.5rem}.gap-y-2\.5{row-gap:.625rem}.gap-y-6{row-gap:1.5rem}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse: 0;border-top-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px * var(--tw-divide-y-reverse))}.divide-gray-100>:not([hidden])~:not([hidden]){--tw-divide-opacity: 1;border-color:rgb(243 244 246 / var(--tw-divide-opacity))}.place-self-end{place-self:end}.self-end{align-self:flex-end}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-nowrap{white-space:nowrap}.break-words{overflow-wrap:break-word}.break-all{word-break:break-all}.\!rounded-none{border-radius:0!important}.\!rounded-xl{border-radius:.75rem!important}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:1rem}.rounded-3xl{border-radius:1.5rem}.rounded-\[35px\]{border-radius:35px}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-none{border-radius:0}.rounded-xl{border-radius:.75rem}.rounded-b{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.rounded-l-none{border-top-left-radius:0;border-bottom-left-radius:0}.rounded-r-none{border-top-right-radius:0;border-bottom-right-radius:0}.rounded-t{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.rounded-t-lg{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.border{border-width:1px}.border-\[3px\]{border-width:3px}.border-y{border-top-width:1px;border-bottom-width:1px}.border-b{border-bottom-width:1px}.border-b-0{border-bottom-width:0px}.border-b-2{border-bottom-width:2px}.border-l{border-left-width:1px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-dashed{border-style:dashed}.\!border-none{border-style:none!important}.\!border-blue-600{--tw-border-opacity: 1 !important;border-color:rgb(37 99 235 / var(--tw-border-opacity))!important}.\!border-red-600{--tw-border-opacity: 1 !important;border-color:rgb(220 38 38 / var(--tw-border-opacity))!important}.border-blue-300{--tw-border-opacity: 1;border-color:rgb(147 197 253 / var(--tw-border-opacity))}.border-blue-600{--tw-border-opacity: 1;border-color:rgb(37 99 235 / var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity: 1;border-color:rgb(229 231 235 / var(--tw-border-opacity))}.border-gray-300{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.border-gray-400{--tw-border-opacity: 1;border-color:rgb(156 163 175 / var(--tw-border-opacity))}.border-gray-50{--tw-border-opacity: 1;border-color:rgb(249 250 251 / var(--tw-border-opacity))}.border-gray-700{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity))}.border-gray-800{--tw-border-opacity: 1;border-color:rgb(31 41 55 / var(--tw-border-opacity))}.border-red-500{--tw-border-opacity: 1;border-color:rgb(239 68 68 / var(--tw-border-opacity))}.border-slate-300{--tw-border-opacity: 1;border-color:rgb(203 213 225 / var(--tw-border-opacity))}.border-transparent{border-color:transparent}.border-b-gray-300{--tw-border-opacity: 1;border-bottom-color:rgb(209 213 219 / var(--tw-border-opacity))}.bg-blue-100{--tw-bg-opacity: 1;background-color:rgb(219 234 254 / var(--tw-bg-opacity))}.bg-blue-400{--tw-bg-opacity: 1;background-color:rgb(96 165 250 / var(--tw-bg-opacity))}.bg-blue-500{--tw-bg-opacity: 1;background-color:rgb(59 130 246 / var(--tw-bg-opacity))}.bg-brandColor{--tw-bg-opacity: 1;background-color:rgb(14 144 217 / var(--tw-bg-opacity))}.bg-cyan-500{--tw-bg-opacity: 1;background-color:rgb(6 182 212 / var(--tw-bg-opacity))}.bg-gray-100{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.bg-gray-200{--tw-bg-opacity: 1;background-color:rgb(229 231 235 / var(--tw-bg-opacity))}.bg-gray-300{--tw-bg-opacity: 1;background-color:rgb(209 213 219 / var(--tw-bg-opacity))}.bg-gray-50{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.bg-gray-500{--tw-bg-opacity: 1;background-color:rgb(107 114 128 / var(--tw-bg-opacity))}.bg-gray-600{--tw-bg-opacity: 1;background-color:rgb(75 85 99 / var(--tw-bg-opacity))}.bg-gray-700{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.bg-gray-800{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.bg-green-100{--tw-bg-opacity: 1;background-color:rgb(220 252 231 / var(--tw-bg-opacity))}.bg-green-500{--tw-bg-opacity: 1;background-color:rgb(34 197 94 / var(--tw-bg-opacity))}.bg-neutral-100{--tw-bg-opacity: 1;background-color:rgb(245 245 245 / var(--tw-bg-opacity))}.bg-orange-100{--tw-bg-opacity: 1;background-color:rgb(255 237 213 / var(--tw-bg-opacity))}.bg-orange-500{--tw-bg-opacity: 1;background-color:rgb(249 115 22 / var(--tw-bg-opacity))}.bg-pink-400{--tw-bg-opacity: 1;background-color:rgb(244 114 182 / var(--tw-bg-opacity))}.bg-pink-500{--tw-bg-opacity: 1;background-color:rgb(236 72 153 / var(--tw-bg-opacity))}.bg-purple-100{--tw-bg-opacity: 1;background-color:rgb(243 232 255 / var(--tw-bg-opacity))}.bg-red-100{--tw-bg-opacity: 1;background-color:rgb(254 226 226 / var(--tw-bg-opacity))}.bg-rose-100{--tw-bg-opacity: 1;background-color:rgb(255 228 230 / var(--tw-bg-opacity))}.bg-sky-100{--tw-bg-opacity: 1;background-color:rgb(224 242 254 / var(--tw-bg-opacity))}.bg-slate-200{--tw-bg-opacity: 1;background-color:rgb(226 232 240 / var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.bg-yellow-400{--tw-bg-opacity: 1;background-color:rgb(250 204 21 / var(--tw-bg-opacity))}.bg-opacity-50{--tw-bg-opacity: .5}.object-cover{-o-object-fit:cover;object-fit:cover}.\!p-0{padding:0!important}.p-1{padding:.25rem}.p-1\.5{padding:.375rem}.p-2{padding:.5rem}.p-2\.5{padding:.625rem}.p-3{padding:.75rem}.p-3\.5{padding:.875rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.px-1{padding-left:.25rem;padding-right:.25rem}.px-10{padding-left:2.5rem;padding-right:2.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.py-10{padding-top:2.5rem;padding-bottom:2.5rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.py-\[7px\]{padding-top:7px;padding-bottom:7px}.py-px{padding-top:1px;padding-bottom:1px}.\!pb-0{padding-bottom:0!important}.\!pb-3{padding-bottom:.75rem!important}.pb-2\.5{padding-bottom:.625rem}.pb-3\.5{padding-bottom:.875rem}.pb-4{padding-bottom:1rem}.pb-6{padding-bottom:1.5rem}.pb-8{padding-bottom:2rem}.pl-2{padding-left:.5rem}.pl-2\.5{padding-left:.625rem}.pl-4{padding-left:1rem}.pr-4{padding-right:1rem}.pt-1\.5{padding-top:.375rem}.pt-2{padding-top:.5rem}.pt-3{padding-top:.75rem}.pt-4{padding-top:1rem}.pt-8{padding-top:2rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.align-middle{vertical-align:middle}.align-text-bottom{vertical-align:text-bottom}.font-inter{font-family:Inter}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-\[10px\]{font-size:10px}.text-\[6px\]{font-size:6px}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-light{font-weight:300}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.italic{font-style:italic}.leading-6{line-height:1.5rem}.leading-7{line-height:1.75rem}.leading-8{line-height:2rem}.tracking-wider{letter-spacing:.05em}.text-\[\#135F29\]{--tw-text-opacity: 1;color:rgb(19 95 41 / var(--tw-text-opacity))}.text-\[\#161B9D\]{--tw-text-opacity: 1;color:rgb(22 27 157 / var(--tw-text-opacity))}.text-black{--tw-text-opacity: 1;color:rgb(0 0 0 / var(--tw-text-opacity))}.text-blue-600{--tw-text-opacity: 1;color:rgb(37 99 235 / var(--tw-text-opacity))}.text-blue-800{--tw-text-opacity: 1;color:rgb(30 64 175 / var(--tw-text-opacity))}.text-brandColor{--tw-text-opacity: 1;color:rgb(14 144 217 / var(--tw-text-opacity))}.text-gray-200{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity: 1;color:rgb(75 85 99 / var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity))}.text-green-600{--tw-text-opacity: 1;color:rgb(22 163 74 / var(--tw-text-opacity))}.text-green-800{--tw-text-opacity: 1;color:rgb(22 101 52 / var(--tw-text-opacity))}.text-orange-800{--tw-text-opacity: 1;color:rgb(154 52 18 / var(--tw-text-opacity))}.text-purple-800{--tw-text-opacity: 1;color:rgb(107 33 168 / var(--tw-text-opacity))}.text-red-500{--tw-text-opacity: 1;color:rgb(239 68 68 / var(--tw-text-opacity))}.text-red-600{--tw-text-opacity: 1;color:rgb(220 38 38 / var(--tw-text-opacity))}.text-red-800{--tw-text-opacity: 1;color:rgb(153 27 27 / var(--tw-text-opacity))}.text-rose-700{--tw-text-opacity: 1;color:rgb(190 18 60 / var(--tw-text-opacity))}.text-slate-600{--tw-text-opacity: 1;color:rgb(71 85 105 / var(--tw-text-opacity))}.text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.underline{text-decoration-line:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-25{opacity:.25}.opacity-70{opacity:.7}.opacity-75{opacity:.75}.opacity-80{opacity:.8}.\!shadow-none{--tw-shadow: 0 0 #0000 !important;--tw-shadow-colored: 0 0 #0000 !important;box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)!important}.shadow{--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-\[0_5px_20px_rgba\(0\,0\,0\,0\.15\)\]{--tw-shadow: 0 5px 20px rgba(0,0,0,.15);--tw-shadow-colored: 0 5px 20px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-\[0px_0px_0px_0px_rgba\(0\,0\,0\,0\.10\)\,0px_1px_3px_0px_rgba\(0\,0\,0\,0\.10\)\,0px_5px_5px_0px_rgba\(0\,0\,0\,0\.09\)\,0px_12px_7px_0px_rgba\(0\,0\,0\,0\.05\)\,0px_22px_9px_0px_rgba\(0\,0\,0\,0\.01\)\,0px_34px_9px_0px_rgba\(0\,0\,0\,0\.00\)\]{--tw-shadow: 0px 0px 0px 0px rgba(0,0,0,.1),0px 1px 3px 0px rgba(0,0,0,.1),0px 5px 5px 0px rgba(0,0,0,.09),0px 12px 7px 0px rgba(0,0,0,.05),0px 22px 9px 0px rgba(0,0,0,.01),0px 34px 9px 0px rgba(0,0,0,0);--tw-shadow-colored: 0px 0px 0px 0px var(--tw-shadow-color), 0px 1px 3px 0px var(--tw-shadow-color), 0px 5px 5px 0px var(--tw-shadow-color), 0px 12px 7px 0px var(--tw-shadow-color), 0px 22px 9px 0px var(--tw-shadow-color), 0px 34px 9px 0px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-\[0px_8px_10px_0px_rgba\(0\,0\,0\,0\.20\)\,0px_6px_30px_0px_rgba\(0\,0\,0\,0\.12\)\,0px_16px_24px_0px_rgba\(0\,0\,0\,0\.14\)\]{--tw-shadow: 0px 8px 10px 0px rgba(0,0,0,.2),0px 6px 30px 0px rgba(0,0,0,.12),0px 16px 24px 0px rgba(0,0,0,.14);--tw-shadow-colored: 0px 8px 10px 0px var(--tw-shadow-color), 0px 6px 30px 0px var(--tw-shadow-color), 0px 16px 24px 0px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-md{--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.ring-1{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.ring-black{--tw-ring-opacity: 1;--tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity))}.ring-opacity-5{--tw-ring-opacity: .05}.invert{--tw-invert: invert(100%);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-100{transition-duration:.1s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.duration-75{transition-duration:75ms}.ease-\[cubic-bezier\(\.4\,0\,\.2\,1\)\]{transition-timing-function:cubic-bezier(.4,0,.2,1)}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}@font-face{font-family:icomoon;src:url(icomoon-7afa69e9.eot?w2trdd);src:url(icomoon-7afa69e9.eot?w2trdd#iefix) format("embedded-opentype"),url(icomoon-dfe58278.ttf?w2trdd) format("truetype"),url(icomoon-dc246278.woff?w2trdd) format("woff"),url(icomoon-6ac09e78.svg?w2trdd#icomoon) format("svg");font-weight:400;font-style:normal;font-display:block}[class^=icon-],[class*=" icon-"]{font-family:icomoon!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.tox .tox-toolbar__group:last-child button{padding:6px 8px;background:#eff6ff;color:#2563eb}.tox .tox-toolbar__group:last-child button:hover{background:#dbeafe}.tox .tox-toolbar__group:last-child button[aria-disabled=true]{cursor:not-allowed;opacity:.5}.sidebar-rounded:after{position:absolute;top:5px;right:-30px;height:30px;width:30px;border-top-left-radius:58%;--tw-shadow: -8px -5px 0px 1px rgba(255,255,255,1);--tw-shadow-colored: -8px -5px 0px 1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow);content:"";pointer-events:none}.peer:checked~.peer-checked\:icon-radio-selected:before{content:""}.peer:checked~.peer-checked\:icon-checkbox-multiple:before{content:""}.peer:checked~.peer-checked\:icon-checkbox-select:before{content:""}.rtl\:icon-left-arrow:where([dir=rtl],[dir=rtl] *):before{content:""}.rtl\:icon-right-arrow:where([dir=rtl],[dir=rtl] *):before{content:""}.marker\:shadow *::marker{--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.marker\:shadow::marker{--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.after\:absolute:after{content:var(--tw-content);position:absolute}.after\:top-0\.5:after{content:var(--tw-content);top:.125rem}.after\:h-4:after{content:var(--tw-content);height:1rem}.after\:w-4:after{content:var(--tw-content);width:1rem}.after\:rounded-full:after{content:var(--tw-content);border-radius:9999px}.after\:border:after{content:var(--tw-content);border-width:1px}.after\:border-gray-300:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.after\:bg-white:after{content:var(--tw-content);--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.after\:transition-all:after{content:var(--tw-content);transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.after\:content-\[\'\'\]:after{--tw-content: "";content:var(--tw-content)}.after\:content-\[\'\/\'\]:after{--tw-content: "/";content:var(--tw-content)}.last\:\!mb-8:last-child{margin-bottom:2rem!important}.last\:mb-0:last-child{margin-bottom:0}.last\:\!border-0:last-child{border-width:0px!important}.last\:border-b-0:last-child{border-bottom-width:0px}.last\:pb-0:last-child{padding-bottom:0}.after\:last\:hidden:last-child:after{content:var(--tw-content);display:none}.last\:after\:content-\[\'\'\]:last-child:after{--tw-content: "";content:var(--tw-content)}.focus-within\:border-gray-400:focus-within{--tw-border-opacity: 1;border-color:rgb(156 163 175 / var(--tw-border-opacity))}.hover\:rounded-lg:hover{border-radius:.5rem}.hover\:rounded-md:hover{border-radius:.375rem}.hover\:border-blue-600:hover{--tw-border-opacity: 1;border-color:rgb(37 99 235 / var(--tw-border-opacity))}.hover\:border-gray-400:hover{--tw-border-opacity: 1;border-color:rgb(156 163 175 / var(--tw-border-opacity))}.hover\:border-red-600:hover{--tw-border-opacity: 1;border-color:rgb(220 38 38 / var(--tw-border-opacity))}.hover\:bg-blue-500:hover{--tw-bg-opacity: 1;background-color:rgb(59 130 246 / var(--tw-bg-opacity))}.hover\:bg-gray-100:hover{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.hover\:bg-gray-200:hover{--tw-bg-opacity: 1;background-color:rgb(229 231 235 / var(--tw-bg-opacity))}.hover\:bg-gray-50:hover{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.hover\:bg-slate-100:hover{--tw-bg-opacity: 1;background-color:rgb(241 245 249 / var(--tw-bg-opacity))}.hover\:text-gray-800:hover{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.hover\:text-slate-800:hover{--tw-text-opacity: 1;color:rgb(30 41 59 / var(--tw-text-opacity))}.hover\:underline:hover{text-decoration-line:underline}.hover\:opacity-80:hover{opacity:.8}.focus\:border-gray-400:focus{--tw-border-opacity: 1;border-color:rgb(156 163 175 / var(--tw-border-opacity))}.focus\:bg-blue-500:focus{--tw-bg-opacity: 1;background-color:rgb(59 130 246 / var(--tw-bg-opacity))}.focus\:opacity-80:focus{opacity:.8}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring-2:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\:ring-black:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity))}.active\:border-gray-300:active{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.group\/item:hover .group-hover\/item\:visible,.group:hover .group-hover\:visible{visibility:visible}.group\/item:hover .group-hover\/item\:block{display:block}.group\/container.sidebar-collapsed .group-\[\.sidebar-collapsed\]\/container\:hidden{display:none}.group\/container.sidebar-collapsed .group-\[\.sidebar-collapsed\]\/container\:w-\[70px\]{width:70px}.group\/container.sidebar-collapsed .group-\[\.sidebar-collapsed\]\/container\:overflow-visible{overflow:visible}.peer:checked~.peer-checked\:border-4{border-width:4px}.peer:checked~.peer-checked\:border-solid{border-style:solid}.peer:checked~.peer-checked\:border-white{--tw-border-opacity: 1;border-color:rgb(255 255 255 / var(--tw-border-opacity))}.peer:checked~.peer-checked\:bg-blue-600{--tw-bg-opacity: 1;background-color:rgb(37 99 235 / var(--tw-bg-opacity))}.peer:checked~.peer-checked\:text-blue-600{--tw-text-opacity: 1;color:rgb(37 99 235 / var(--tw-text-opacity))}.peer:checked~.peer-checked\:text-brandColor{--tw-text-opacity: 1;color:rgb(14 144 217 / var(--tw-text-opacity))}.peer:checked~.peer-checked\:after\:border-white:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:rgb(255 255 255 / var(--tw-border-opacity))}.peer:focus~.peer-focus\:outline-none{outline:2px solid transparent;outline-offset:2px}.peer:focus~.peer-focus\:ring-blue-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(147 197 253 / var(--tw-ring-opacity))}.dark\:border-gray-300:is(.dark *){--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.dark\:border-gray-800:is(.dark *){--tw-border-opacity: 1;border-color:rgb(31 41 55 / var(--tw-border-opacity))}.dark\:bg-brandColor:is(.dark *){--tw-bg-opacity: 1;background-color:rgb(14 144 217 / var(--tw-bg-opacity))}.dark\:bg-gray-800:is(.dark *){--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.dark\:bg-gray-900:is(.dark *){--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.dark\:bg-gray-950:is(.dark *){--tw-bg-opacity: 1;background-color:rgb(3 7 18 / var(--tw-bg-opacity))}.dark\:text-gray-300:is(.dark *){--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.dark\:text-gray-400:is(.dark *){--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.dark\:text-white:is(.dark *){--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.dark\:mix-blend-exclusion:is(.dark *){mix-blend-mode:exclusion}.dark\:invert:is(.dark *){--tw-invert: invert(100%);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.dark\:file\:bg-gray-800:is(.dark *)::file-selector-button{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.dark\:file\:dark\:text-white:is(.dark *):is(.dark *)::file-selector-button{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.dark\:after\:border-white:is(.dark *):after{content:var(--tw-content);--tw-border-opacity: 1;border-color:rgb(255 255 255 / var(--tw-border-opacity))}.dark\:after\:bg-white:is(.dark *):after{content:var(--tw-content);--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.dark\:hover\:border-gray-400:hover:is(.dark *){--tw-border-opacity: 1;border-color:rgb(156 163 175 / var(--tw-border-opacity))}.dark\:hover\:bg-gray-800:hover:is(.dark *){--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.dark\:hover\:bg-gray-950:hover:is(.dark *){--tw-bg-opacity: 1;background-color:rgb(3 7 18 / var(--tw-bg-opacity))}.hover\:dark\:bg-gray-950:is(.dark *):hover{--tw-bg-opacity: 1;background-color:rgb(3 7 18 / var(--tw-bg-opacity))}.dark\:hover\:text-white:hover:is(.dark *){--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.dark\:focus\:border-gray-400:focus:is(.dark *){--tw-border-opacity: 1;border-color:rgb(156 163 175 / var(--tw-border-opacity))}.peer:checked~.dark\:peer-checked\:bg-gray-950:is(.dark *){--tw-bg-opacity: 1;background-color:rgb(3 7 18 / var(--tw-bg-opacity))}@media not all and (min-width: 1240px){.max-xl\:flex-auto{flex:1 1 auto}.max-xl\:flex-wrap{flex-wrap:wrap}}@media not all and (min-width: 1024px){.max-lg\:block{display:block}.max-lg\:hidden{display:none}.max-lg\:w-\[400px\]{width:400px}.max-lg\:gap-4{gap:1rem}.max-lg\:\!px-4{padding-left:1rem!important;padding-right:1rem!important}}@media not all and (min-width: 768px){.max-md\:w-\[90\%\]{width:90%}.max-md\:w-full{width:100%}.max-md\:flex-wrap{flex-wrap:wrap}}@media not all and (min-width: 525px){.max-sm\:hidden{display:none}.max-sm\:\!w-full{width:100%!important}.max-sm\:w-full{width:100%}.max-sm\:max-w-full{max-width:100%}.max-sm\:flex-1{flex:1 1 0%}.max-sm\:flex-auto{flex:1 1 auto}.max-sm\:grid-cols-\[1fr_auto\]{grid-template-columns:1fr auto}.max-sm\:flex-wrap{flex-wrap:wrap}.max-sm\:gap-2\.5{gap:.625rem}.max-sm\:place-self-center{place-self:center}.max-sm\:px-4{padding-left:1rem;padding-right:1rem}}@media (min-width: 525px){.sm\:items-center{align-items:center}.sm\:justify-start{justify-content:flex-start}.sm\:p-0{padding:0}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:pt-0{padding-top:0}}@media (min-width: 768px){.md\:translate-y-0{--tw-translate-y: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.md\:scale-100{--tw-scale-x: 1;--tw-scale-y: 1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.md\:scale-95{--tw-scale-x: .95;--tw-scale-y: .95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}}@media (min-width: 1024px){.lg\:px-8{padding-left:2rem;padding-right:2rem}}.ltr\:left-0:where([dir=ltr],[dir=ltr] *){left:0}.ltr\:left-1\/2:where([dir=ltr],[dir=ltr] *){left:50%}.ltr\:left-3:where([dir=ltr],[dir=ltr] *){left:.75rem}.ltr\:left-full:where([dir=ltr],[dir=ltr] *){left:100%}.ltr\:right-0:where([dir=ltr],[dir=ltr] *){right:0}.ltr\:right-2:where([dir=ltr],[dir=ltr] *){right:.5rem}.ltr\:right-3:where([dir=ltr],[dir=ltr] *){right:.75rem}.ltr\:right-5:where([dir=ltr],[dir=ltr] *){right:1.25rem}.ltr\:ml-1:where([dir=ltr],[dir=ltr] *){margin-left:.25rem}.ltr\:ml-1\.5:where([dir=ltr],[dir=ltr] *){margin-left:.375rem}.ltr\:ml-11:where([dir=ltr],[dir=ltr] *){margin-left:2.75rem}.ltr\:ml-2:where([dir=ltr],[dir=ltr] *){margin-left:.5rem}.ltr\:ml-2\.5:where([dir=ltr],[dir=ltr] *){margin-left:.625rem}.ltr\:mr-1:where([dir=ltr],[dir=ltr] *){margin-right:.25rem}.ltr\:mr-11:where([dir=ltr],[dir=ltr] *){margin-right:2.75rem}.ltr\:mr-2\.5:where([dir=ltr],[dir=ltr] *){margin-right:.625rem}.ltr\:mr-6:where([dir=ltr],[dir=ltr] *){margin-right:1.5rem}.ltr\:-translate-x-1\/2:where([dir=ltr],[dir=ltr] *){--tw-translate-x: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ltr\:-translate-x-full:where([dir=ltr],[dir=ltr] *){--tw-translate-x: -100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ltr\:translate-x-0:where([dir=ltr],[dir=ltr] *){--tw-translate-x: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ltr\:translate-x-full:where([dir=ltr],[dir=ltr] *){--tw-translate-x: 100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ltr\:\!rounded-l-lg:where([dir=ltr],[dir=ltr] *){border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.ltr\:\!rounded-r-lg:where([dir=ltr],[dir=ltr] *){border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.ltr\:border-r:where([dir=ltr],[dir=ltr] *){border-right-width:1px}.ltr\:\!pl-14:where([dir=ltr],[dir=ltr] *){padding-left:3.5rem!important}.ltr\:\!pl-5:where([dir=ltr],[dir=ltr] *){padding-left:1.25rem!important}.ltr\:pl-10:where([dir=ltr],[dir=ltr] *){padding-left:2.5rem}.ltr\:pl-2\.5:where([dir=ltr],[dir=ltr] *){padding-left:.625rem}.ltr\:pl-3:where([dir=ltr],[dir=ltr] *){padding-left:.75rem}.ltr\:pl-4:where([dir=ltr],[dir=ltr] *){padding-left:1rem}.ltr\:pl-\[85px\]:where([dir=ltr],[dir=ltr] *){padding-left:85px}.ltr\:pr-1\.5:where([dir=ltr],[dir=ltr] *){padding-right:.375rem}.ltr\:pr-10:where([dir=ltr],[dir=ltr] *){padding-right:2.5rem}.ltr\:pr-3:where([dir=ltr],[dir=ltr] *){padding-right:.75rem}.ltr\:pr-4:where([dir=ltr],[dir=ltr] *){padding-right:1rem}.after\:ltr\:left-0\.5:where([dir=ltr],[dir=ltr] *):after{content:var(--tw-content);left:.125rem}.peer:checked~.peer-checked\:after\:ltr\:translate-x-full:where([dir=ltr],[dir=ltr] *):after{content:var(--tw-content);--tw-translate-x: 100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rtl\:left-0:where([dir=rtl],[dir=rtl] *){left:0}.rtl\:left-2:where([dir=rtl],[dir=rtl] *){left:.5rem}.rtl\:left-3:where([dir=rtl],[dir=rtl] *){left:.75rem}.rtl\:left-5:where([dir=rtl],[dir=rtl] *){left:1.25rem}.rtl\:right-0:where([dir=rtl],[dir=rtl] *){right:0}.rtl\:right-1\/2:where([dir=rtl],[dir=rtl] *){right:50%}.rtl\:right-3:where([dir=rtl],[dir=rtl] *){right:.75rem}.rtl\:right-full:where([dir=rtl],[dir=rtl] *){right:100%}.rtl\:ml-1:where([dir=rtl],[dir=rtl] *){margin-left:.25rem}.rtl\:ml-11:where([dir=rtl],[dir=rtl] *){margin-left:2.75rem}.rtl\:ml-2\.5:where([dir=rtl],[dir=rtl] *){margin-left:.625rem}.rtl\:ml-6:where([dir=rtl],[dir=rtl] *){margin-left:1.5rem}.rtl\:mr-1:where([dir=rtl],[dir=rtl] *){margin-right:.25rem}.rtl\:mr-1\.5:where([dir=rtl],[dir=rtl] *){margin-right:.375rem}.rtl\:mr-11:where([dir=rtl],[dir=rtl] *){margin-right:2.75rem}.rtl\:mr-2:where([dir=rtl],[dir=rtl] *){margin-right:.5rem}.rtl\:mr-2\.5:where([dir=rtl],[dir=rtl] *){margin-right:.625rem}.rtl\:-translate-x-0:where([dir=rtl],[dir=rtl] *){--tw-translate-x: -0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rtl\:-translate-x-full:where([dir=rtl],[dir=rtl] *){--tw-translate-x: -100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rtl\:translate-x-1\/2:where([dir=rtl],[dir=rtl] *){--tw-translate-x: 50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rtl\:translate-x-full:where([dir=rtl],[dir=rtl] *){--tw-translate-x: 100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rtl\:\!rounded-l-lg:where([dir=rtl],[dir=rtl] *){border-top-left-radius:.5rem!important;border-bottom-left-radius:.5rem!important}.rtl\:\!rounded-r-lg:where([dir=rtl],[dir=rtl] *){border-top-right-radius:.5rem!important;border-bottom-right-radius:.5rem!important}.rtl\:border-l:where([dir=rtl],[dir=rtl] *){border-left-width:1px}.rtl\:\!pr-14:where([dir=rtl],[dir=rtl] *){padding-right:3.5rem!important}.rtl\:\!pr-5:where([dir=rtl],[dir=rtl] *){padding-right:1.25rem!important}.rtl\:pl-1\.5:where([dir=rtl],[dir=rtl] *){padding-left:.375rem}.rtl\:pl-10:where([dir=rtl],[dir=rtl] *){padding-left:2.5rem}.rtl\:pl-3:where([dir=rtl],[dir=rtl] *){padding-left:.75rem}.rtl\:pr-10:where([dir=rtl],[dir=rtl] *){padding-right:2.5rem}.rtl\:pr-2\.5:where([dir=rtl],[dir=rtl] *){padding-right:.625rem}.rtl\:pr-3:where([dir=rtl],[dir=rtl] *){padding-right:.75rem}.rtl\:pr-4:where([dir=rtl],[dir=rtl] *){padding-right:1rem}.rtl\:pr-\[85px\]:where([dir=rtl],[dir=rtl] *){padding-right:85px}.after\:rtl\:right-0\.5:where([dir=rtl],[dir=rtl] *):after{content:var(--tw-content);right:.125rem}.peer:checked~.peer-checked\:after\:rtl\:-translate-x-full:where([dir=rtl],[dir=rtl] *):after{content:var(--tw-content);--tw-translate-x: -100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.\[\&\.active\>\.v-tree-item\]\:block.active>.v-tree-item{display:block}.\[\&\>\*\]\:text-sky-600>*{--tw-text-opacity: 1;color:rgb(2 132 199 / var(--tw-text-opacity))}.\[\&\>\*\]\:after\:content-\[\'_\/_\'\]>*:after{--tw-content: " / ";content:var(--tw-content)}.\[\&\>\*\]\:dark\:text-white:is(.dark *)>*{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.\[\&\>\.v-tree-item\]\:hidden>.v-tree-item{display:none}.\[\&\>\.v-tree-item\]\:ltr\:pl-6:where([dir=ltr],[dir=ltr] *)>.v-tree-item{padding-left:1.5rem}.\[\&\>\.v-tree-item\]\:rtl\:pr-6:where([dir=rtl],[dir=rtl] *)>.v-tree-item{padding-right:1.5rem} diff --git a/public/build/assets/app-3feb7320.js b/public/build/assets/app-3feb7320.js deleted file mode 100644 index 2bbd938dd..000000000 --- a/public/build/assets/app-3feb7320.js +++ /dev/null @@ -1,74 +0,0 @@ -const Ry="modulepreload",_y=function(e,n){return e[0]==="."?new URL(e,n).href:e},_f={},Re=function(n,t,i){if(!t||t.length===0)return n();const r=document.getElementsByTagName("link");return Promise.all(t.map(o=>{if(o=_y(o,i),o in _f)return;_f[o]=!0;const s=o.endsWith(".css"),a=s?'[rel="stylesheet"]':"";if(!!i)for(let c=r.length-1;c>=0;c--){const f=r[c];if(f.href===o&&(!s||f.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${o}"]${a}`))return;const u=document.createElement("link");if(u.rel=s?"stylesheet":Ry,s||(u.as="script",u.crossOrigin=""),u.href=o,document.head.appendChild(u),s)return new Promise((c,f)=>{u.addEventListener("load",c),u.addEventListener("error",()=>f(new Error(`Unable to preload CSS for ${o}`)))})})).then(()=>n()).catch(o=>{const s=new Event("vite:preloadError",{cancelable:!0});if(s.payload=o,window.dispatchEvent(s),!s.defaultPrevented)throw o})};/** -* @vue/shared v3.4.34 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**//*! #__NO_SIDE_EFFECTS__ */function kn(e,n){const t=new Set(e.split(","));return n?i=>t.has(i.toLowerCase()):i=>t.has(i)}const Je={},Kr=[],$t=()=>{},ia=()=>!1,Nr=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),ic=e=>e.startsWith("onUpdate:"),it=Object.assign,rc=(e,n)=>{const t=e.indexOf(n);t>-1&&e.splice(t,1)},Fy=Object.prototype.hasOwnProperty,et=(e,n)=>Fy.call(e,n),pe=Array.isArray,Yr=e=>ls(e)==="[object Map]",Rr=e=>ls(e)==="[object Set]",Ff=e=>ls(e)==="[object Date]",Ly=e=>ls(e)==="[object RegExp]",xe=e=>typeof e=="function",ke=e=>typeof e=="string",Ln=e=>typeof e=="symbol",ct=e=>e!==null&&typeof e=="object",sc=e=>(ct(e)||xe(e))&&xe(e.then)&&xe(e.catch),ep=Object.prototype.toString,ls=e=>ep.call(e),ky=e=>ls(e).slice(8,-1),tp=e=>ls(e)==="[object Object]",oc=e=>ke(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,Ki=kn(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),$y=kn("bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text,memo"),tl=e=>{const n=Object.create(null);return t=>n[t]||(n[t]=e(t))},jy=/-(\w)/g,bt=tl(e=>e.replace(jy,(n,t)=>t?t.toUpperCase():"")),Vy=/\B([A-Z])/g,En=tl(e=>e.replace(Vy,"-$1").toLowerCase()),nr=tl(e=>e.charAt(0).toUpperCase()+e.slice(1)),br=tl(e=>e?`on${nr(e)}`:""),fn=(e,n)=>!Object.is(e,n),zr=(e,...n)=>{for(let t=0;t{Object.defineProperty(e,n,{configurable:!0,enumerable:!1,writable:i,value:t})},ba=e=>{const n=parseFloat(e);return isNaN(n)?e:n},Ea=e=>{const n=ke(e)?Number(e):NaN;return isNaN(n)?e:n};let Lf;const ip=()=>Lf||(Lf=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{}),By="Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt,console,Error",Hy=kn(By);function Yt(e){if(pe(e)){const n={};for(let t=0;t{if(t){const i=t.split(Wy);i.length>1&&(n[i[0].trim()]=i[1].trim())}}),n}function Rt(e){let n="";if(ke(e))n=e;else if(pe(e))for(let t=0;tJi(t,n))}const op=e=>!!(e&&e.__v_isRef===!0),vt=e=>ke(e)?e:e==null?"":pe(e)||ct(e)&&(e.toString===ep||!xe(e.toString))?op(e)?vt(e.value):JSON.stringify(e,ap,2):String(e),ap=(e,n)=>op(n)?ap(e,n.value):Yr(n)?{[`Map(${n.size})`]:[...n.entries()].reduce((t,[i,r],o)=>(t[Nl(i,o)+" =>"]=r,t),{})}:Rr(n)?{[`Set(${n.size})`]:[...n.values()].map(t=>Nl(t))}:Ln(n)?Nl(n):ct(n)&&!pe(n)&&!tp(n)?String(n):n,Nl=(e,n="")=>{var t;return Ln(e)?`Symbol(${(t=e.description)!=null?t:n})`:e};/** -* @vue/reactivity v3.4.34 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/let Pn;class il{constructor(n=!1){this.detached=n,this._active=!0,this.effects=[],this.cleanups=[],this.parent=Pn,!n&&Pn&&(this.index=(Pn.scopes||(Pn.scopes=[])).push(this)-1)}get active(){return this._active}run(n){if(this._active){const t=Pn;try{return Pn=this,n()}finally{Pn=t}}}on(){Pn=this}off(){Pn=this.parent}stop(n){if(this._active){let t,i;for(t=0,i=this.effects.length;t=4))break}this._dirtyLevel===1&&(this._dirtyLevel=0),rr()}return this._dirtyLevel>=4}set dirty(n){this._dirtyLevel=n?4:0}run(){if(this._dirtyLevel=0,!this.active)return this.fn();let n=Yi,t=Er;try{return Yi=!0,Er=this,this._runnings++,kf(this),this.fn()}finally{$f(this),this._runnings--,Er=t,Yi=n}}stop(){this.active&&(kf(this),$f(this),this.onStop&&this.onStop(),this.active=!1)}}function ib(e){return e.value}function kf(e){e._trackId++,e._depsLength=0}function $f(e){if(e.deps.length>e._depsLength){for(let n=e._depsLength;n{t.dirty&&t.run()});n&&(it(t,n),n.scope&&up(t,n.scope)),(!n||!n.lazy)&&t.run();const i=t.run.bind(t);return i.effect=t,i}function hp(e){e.effect.stop()}let Yi=!0,du=0;const pp=[];function ir(){pp.push(Yi),Yi=!1}function rr(){const e=pp.pop();Yi=e===void 0?!0:e}function lc(){du++}function uc(){for(du--;!du&&hu.length;)hu.shift()()}function mp(e,n,t){if(n.get(e)!==e._trackId){n.set(e,e._trackId);const i=e.deps[e._depsLength];i!==n?(i&&fp(i,e),e.deps[e._depsLength++]=n):e._depsLength++}}const hu=[];function gp(e,n,t){lc();for(const i of e.keys()){let r;i._dirtyLevel{const t=new Map;return t.cleanup=e,t.computed=n,t},wa=new WeakMap,Sr=Symbol(""),pu=Symbol("");function Tn(e,n,t){if(Yi&&Er){let i=wa.get(e);i||wa.set(e,i=new Map);let r=i.get(t);r||i.set(t,r=vp(()=>i.delete(t))),mp(Er,r)}}function Si(e,n,t,i,r,o){const s=wa.get(e);if(!s)return;let a=[];if(n==="clear")a=[...s.values()];else if(t==="length"&&pe(e)){const l=Number(i);s.forEach((u,c)=>{(c==="length"||!Ln(c)&&c>=l)&&a.push(u)})}else switch(t!==void 0&&a.push(s.get(t)),n){case"add":pe(e)?oc(t)&&a.push(s.get("length")):(a.push(s.get(Sr)),Yr(e)&&a.push(s.get(pu)));break;case"delete":pe(e)||(a.push(s.get(Sr)),Yr(e)&&a.push(s.get(pu)));break;case"set":Yr(e)&&a.push(s.get(Sr));break}lc();for(const l of a)l&&gp(l,4);uc()}function rb(e,n){const t=wa.get(e);return t&&t.get(n)}const sb=kn("__proto__,__v_isRef,__isVue"),yp=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(Ln)),jf=ob();function ob(){const e={};return["includes","indexOf","lastIndexOf"].forEach(n=>{e[n]=function(...t){const i=Ge(this);for(let o=0,s=this.length;o{e[n]=function(...t){ir(),lc();const i=Ge(this)[n].apply(this,t);return uc(),rr(),i}}),e}function ab(e){Ln(e)||(e=String(e));const n=Ge(this);return Tn(n,"has",e),n.hasOwnProperty(e)}class bp{constructor(n=!1,t=!1){this._isReadonly=n,this._isShallow=t}get(n,t,i){const r=this._isReadonly,o=this._isShallow;if(t==="__v_isReactive")return!r;if(t==="__v_isReadonly")return r;if(t==="__v_isShallow")return o;if(t==="__v_raw")return i===(r?o?Cp:Tp:o?Dp:wp).get(n)||Object.getPrototypeOf(n)===Object.getPrototypeOf(i)?n:void 0;const s=pe(n);if(!r){if(s&&et(jf,t))return Reflect.get(jf,t,i);if(t==="hasOwnProperty")return ab}const a=Reflect.get(n,t,i);return(Ln(t)?yp.has(t):sb(t))||(r||Tn(n,"get",t),o)?a:_t(a)?s&&oc(t)?a:a.value:ct(a)?r?lo(a):Ci(a):a}}class Ep extends bp{constructor(n=!1){super(!1,n)}set(n,t,i,r){let o=n[t];if(!this._isShallow){const l=Oi(o);if(!Qi(i)&&!Oi(i)&&(o=Ge(o),i=Ge(i)),!pe(n)&&_t(o)&&!_t(i))return l?!1:(o.value=i,!0)}const s=pe(n)&&oc(t)?Number(t)e,rl=e=>Reflect.getPrototypeOf(e);function xo(e,n,t=!1,i=!1){e=e.__v_raw;const r=Ge(e),o=Ge(n);t||(fn(n,o)&&Tn(r,"get",n),Tn(r,"get",o));const{has:s}=rl(r),a=i?cc:t?hc:Us;if(s.call(r,n))return a(e.get(n));if(s.call(r,o))return a(e.get(o));e!==r&&e.get(n)}function Ao(e,n=!1){const t=this.__v_raw,i=Ge(t),r=Ge(e);return n||(fn(e,r)&&Tn(i,"has",e),Tn(i,"has",r)),e===r?t.has(e):t.has(e)||t.has(r)}function Mo(e,n=!1){return e=e.__v_raw,!n&&Tn(Ge(e),"iterate",Sr),Reflect.get(e,"size",e)}function Vf(e,n=!1){!n&&!Qi(e)&&!Oi(e)&&(e=Ge(e));const t=Ge(this);return rl(t).has.call(t,e)||(t.add(e),Si(t,"add",e,e)),this}function Bf(e,n,t=!1){!t&&!Qi(n)&&!Oi(n)&&(n=Ge(n));const i=Ge(this),{has:r,get:o}=rl(i);let s=r.call(i,e);s||(e=Ge(e),s=r.call(i,e));const a=o.call(i,e);return i.set(e,n),s?fn(n,a)&&Si(i,"set",e,n):Si(i,"add",e,n),this}function Hf(e){const n=Ge(this),{has:t,get:i}=rl(n);let r=t.call(n,e);r||(e=Ge(e),r=t.call(n,e)),i&&i.call(n,e);const o=n.delete(e);return r&&Si(n,"delete",e,void 0),o}function Uf(){const e=Ge(this),n=e.size!==0,t=e.clear();return n&&Si(e,"clear",void 0,void 0),t}function Io(e,n){return function(i,r){const o=this,s=o.__v_raw,a=Ge(s),l=n?cc:e?hc:Us;return!e&&Tn(a,"iterate",Sr),s.forEach((u,c)=>i.call(r,l(u),l(c),o))}}function Po(e,n,t){return function(...i){const r=this.__v_raw,o=Ge(r),s=Yr(o),a=e==="entries"||e===Symbol.iterator&&s,l=e==="keys"&&s,u=r[e](...i),c=t?cc:n?hc:Us;return!n&&Tn(o,"iterate",l?pu:Sr),{next(){const{value:f,done:d}=u.next();return d?{value:f,done:d}:{value:a?[c(f[0]),c(f[1])]:c(f),done:d}},[Symbol.iterator](){return this}}}}function Pi(e){return function(...n){return e==="delete"?!1:e==="clear"?void 0:this}}function db(){const e={get(o){return xo(this,o)},get size(){return Mo(this)},has:Ao,add:Vf,set:Bf,delete:Hf,clear:Uf,forEach:Io(!1,!1)},n={get(o){return xo(this,o,!1,!0)},get size(){return Mo(this)},has:Ao,add(o){return Vf.call(this,o,!0)},set(o,s){return Bf.call(this,o,s,!0)},delete:Hf,clear:Uf,forEach:Io(!1,!0)},t={get(o){return xo(this,o,!0)},get size(){return Mo(this,!0)},has(o){return Ao.call(this,o,!0)},add:Pi("add"),set:Pi("set"),delete:Pi("delete"),clear:Pi("clear"),forEach:Io(!0,!1)},i={get(o){return xo(this,o,!0,!0)},get size(){return Mo(this,!0)},has(o){return Ao.call(this,o,!0)},add:Pi("add"),set:Pi("set"),delete:Pi("delete"),clear:Pi("clear"),forEach:Io(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(o=>{e[o]=Po(o,!1,!1),t[o]=Po(o,!0,!1),n[o]=Po(o,!1,!0),i[o]=Po(o,!0,!0)}),[e,t,n,i]}const[hb,pb,mb,gb]=db();function sl(e,n){const t=n?e?gb:mb:e?pb:hb;return(i,r,o)=>r==="__v_isReactive"?!e:r==="__v_isReadonly"?e:r==="__v_raw"?i:Reflect.get(et(t,r)&&r in i?t:i,r,o)}const vb={get:sl(!1,!1)},yb={get:sl(!1,!0)},bb={get:sl(!0,!1)},Eb={get:sl(!0,!0)},wp=new WeakMap,Dp=new WeakMap,Tp=new WeakMap,Cp=new WeakMap;function Sb(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function wb(e){return e.__v_skip||!Object.isExtensible(e)?0:Sb(ky(e))}function Ci(e){return Oi(e)?e:ol(e,!1,lb,vb,wp)}function fc(e){return ol(e,!1,cb,yb,Dp)}function lo(e){return ol(e,!0,ub,bb,Tp)}function Op(e){return ol(e,!0,fb,Eb,Cp)}function ol(e,n,t,i,r){if(!ct(e)||e.__v_raw&&!(n&&e.__v_isReactive))return e;const o=r.get(e);if(o)return o;const s=wb(e);if(s===0)return e;const a=new Proxy(e,s===2?i:t);return r.set(e,a),a}function zi(e){return Oi(e)?zi(e.__v_raw):!!(e&&e.__v_isReactive)}function Oi(e){return!!(e&&e.__v_isReadonly)}function Qi(e){return!!(e&&e.__v_isShallow)}function al(e){return e?!!e.__v_raw:!1}function Ge(e){const n=e&&e.__v_raw;return n?Ge(n):e}function dc(e){return Object.isExtensible(e)&&np(e,"__v_skip",!0),e}const Us=e=>ct(e)?Ci(e):e,hc=e=>ct(e)?lo(e):e;class xp{constructor(n,t,i,r){this.getter=n,this._setter=t,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this.effect=new Cr(()=>n(this._value),()=>Gr(this,this.effect._dirtyLevel===2?2:3)),this.effect.computed=this,this.effect.active=this._cacheable=!r,this.__v_isReadonly=i}get value(){const n=Ge(this);return(!n._cacheable||n.effect.dirty)&&fn(n._value,n._value=n.effect.run())&&Gr(n,4),pc(n),n.effect._dirtyLevel>=2&&Gr(n,2),n._value}set value(n){this._setter(n)}get _dirty(){return this.effect.dirty}set _dirty(n){this.effect.dirty=n}}function Db(e,n,t=!1){let i,r;const o=xe(e);return o?(i=e,r=$t):(i=e.get,r=e.set),new xp(i,r,o||!r,t)}function pc(e){var n;Yi&&Er&&(e=Ge(e),mp(Er,(n=e.dep)!=null?n:e.dep=vp(()=>e.dep=void 0,e instanceof xp?e:void 0)))}function Gr(e,n=4,t,i){e=Ge(e);const r=e.dep;r&&gp(r,n)}function _t(e){return!!(e&&e.__v_isRef===!0)}function Jt(e){return Ap(e,!1)}function mc(e){return Ap(e,!0)}function Ap(e,n){return _t(e)?e:new Tb(e,n)}class Tb{constructor(n,t){this.__v_isShallow=t,this.dep=void 0,this.__v_isRef=!0,this._rawValue=t?n:Ge(n),this._value=t?n:Us(n)}get value(){return pc(this),this._value}set value(n){const t=this.__v_isShallow||Qi(n)||Oi(n);n=t?n:Ge(n),fn(n,this._rawValue)&&(this._rawValue,this._rawValue=n,this._value=t?n:Us(n),Gr(this,4))}}function Mp(e){Gr(e,4)}function ut(e){return _t(e)?e.value:e}function We(e){return xe(e)?e():ut(e)}const Cb={get:(e,n,t)=>ut(Reflect.get(e,n,t)),set:(e,n,t,i)=>{const r=e[n];return _t(r)&&!_t(t)?(r.value=t,!0):Reflect.set(e,n,t,i)}};function ll(e){return zi(e)?e:new Proxy(e,Cb)}class Ob{constructor(n){this.dep=void 0,this.__v_isRef=!0;const{get:t,set:i}=n(()=>pc(this),()=>Gr(this));this._get=t,this._set=i}get value(){return this._get()}set value(n){this._set(n)}}function gc(e){return new Ob(e)}function Ip(e){const n=pe(e)?new Array(e.length):{};for(const t in e)n[t]=Pp(e,t);return n}class xb{constructor(n,t,i){this._object=n,this._key=t,this._defaultValue=i,this.__v_isRef=!0}get value(){const n=this._object[this._key];return n===void 0?this._defaultValue:n}set value(n){this._object[this._key]=n}get dep(){return rb(Ge(this._object),this._key)}}class Ab{constructor(n){this._getter=n,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function yi(e,n,t){return _t(e)?e:xe(e)?new Ab(e):ct(e)&&arguments.length>1?Pp(e,n,t):Jt(e)}function Pp(e,n,t){const i=e[n];return _t(i)?i:new xb(e,n,t)}const Np={GET:"get",HAS:"has",ITERATE:"iterate"},Rp={SET:"set",ADD:"add",DELETE:"delete",CLEAR:"clear"};/** -* @vue/runtime-core v3.4.34 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/function _p(e,n){}const Fp={SETUP_FUNCTION:0,0:"SETUP_FUNCTION",RENDER_FUNCTION:1,1:"RENDER_FUNCTION",WATCH_GETTER:2,2:"WATCH_GETTER",WATCH_CALLBACK:3,3:"WATCH_CALLBACK",WATCH_CLEANUP:4,4:"WATCH_CLEANUP",NATIVE_EVENT_HANDLER:5,5:"NATIVE_EVENT_HANDLER",COMPONENT_EVENT_HANDLER:6,6:"COMPONENT_EVENT_HANDLER",VNODE_HOOK:7,7:"VNODE_HOOK",DIRECTIVE_HOOK:8,8:"DIRECTIVE_HOOK",TRANSITION_HOOK:9,9:"TRANSITION_HOOK",APP_ERROR_HANDLER:10,10:"APP_ERROR_HANDLER",APP_WARN_HANDLER:11,11:"APP_WARN_HANDLER",FUNCTION_REF:12,12:"FUNCTION_REF",ASYNC_COMPONENT_LOADER:13,13:"ASYNC_COMPONENT_LOADER",SCHEDULER:14,14:"SCHEDULER",COMPONENT_UPDATE:15,15:"COMPONENT_UPDATE"},Mb={sp:"serverPrefetch hook",bc:"beforeCreate hook",c:"created hook",bm:"beforeMount hook",m:"mounted hook",bu:"beforeUpdate hook",u:"updated",bum:"beforeUnmount hook",um:"unmounted hook",a:"activated hook",da:"deactivated hook",ec:"errorCaptured hook",rtc:"renderTracked hook",rtg:"renderTriggered hook",0:"setup function",1:"render function",2:"watcher getter",3:"watcher callback",4:"watcher cleanup function",5:"native event handler",6:"component event handler",7:"vnode hook",8:"directive hook",9:"transition hook",10:"app errorHandler",11:"app warnHandler",12:"ref function",13:"async component loader",14:"scheduler flush",15:"component update"};function ci(e,n,t,i){try{return i?e(...i):e()}catch(r){sr(r,n,t)}}function Dn(e,n,t,i){if(xe(e)){const r=ci(e,n,t,i);return r&&sc(r)&&r.catch(o=>{sr(o,n,t)}),r}if(pe(e)){const r=[];for(let o=0;o>>1,r=nn[i],o=Ys(r);oli&&nn.splice(n,1)}function Ks(e){pe(e)?Zr.push(...e):(!Li||!Li.includes(e,e.allowRecurse?pr+1:pr))&&Zr.push(e),kp()}function Wf(e,n,t=Ws?li+1:0){for(;tYs(t)-Ys(i));if(Zr.length=0,Li){Li.push(...n);return}for(Li=n,pr=0;pre.id==null?1/0:e.id,Rb=(e,n)=>{const t=Ys(e)-Ys(n);if(t===0){if(e.pre&&!n.pre)return-1;if(n.pre&&!e.pre)return 1}return t};function $p(e){mu=!1,Ws=!0,nn.sort(Rb);const n=$t;try{for(li=0;liHr.emit(r,...o)),No=[]):typeof window<"u"&&window.HTMLElement&&!((i=(t=window.navigator)==null?void 0:t.userAgent)!=null&&i.includes("jsdom"))?((n.__VUE_DEVTOOLS_HOOK_REPLAY__=n.__VUE_DEVTOOLS_HOOK_REPLAY__||[]).push(o=>{jp(o,n)}),setTimeout(()=>{Hr||(n.__VUE_DEVTOOLS_HOOK_REPLAY__=null,No=[])},3e3)):No=[]}let Wt=null,cl=null;function zs(e){const n=Wt;return Wt=e,cl=e&&e.type.__scopeId||null,n}function Vp(e){cl=e}function Bp(){cl=null}const Hp=e=>pt;function pt(e,n=Wt,t){if(!n||e._n)return e;const i=(...r)=>{i._d&&xa(-1);const o=zs(n);let s;try{s=e(...r)}finally{zs(o),i._d&&xa(1)}return s};return i._n=!0,i._c=!0,i._d=!0,i}function Up(e,n){if(Wt===null)return e;const t=vo(Wt),i=e.dirs||(e.dirs=[]);for(let r=0;r{e.isMounted=!0}),us(()=>{e.isUnmounting=!0}),e}const jn=[Function,Array],dl={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:jn,onEnter:jn,onAfterEnter:jn,onEnterCancelled:jn,onBeforeLeave:jn,onLeave:jn,onAfterLeave:jn,onLeaveCancelled:jn,onBeforeAppear:jn,onAppear:jn,onAfterAppear:jn,onAppearCancelled:jn},Wp=e=>{const n=e.subTree;return n.component?Wp(n.component):n},_b={name:"BaseTransition",props:dl,setup(e,{slots:n}){const t=Cn(),i=fl();return()=>{const r=n.default&&uo(n.default(),!0);if(!r||!r.length)return;let o=r[0];if(r.length>1){for(const d of r)if(d.type!==Ht){o=d;break}}const s=Ge(e),{mode:a}=s;if(i.isLeaving)return Rl(o);const l=Kf(o);if(!l)return Rl(o);let u=Or(l,s,i,t,d=>u=d);xi(l,u);const c=t.subTree,f=c&&Kf(c);if(f&&f.type!==Ht&&!qn(l,f)&&Wp(t).type!==Ht){const d=Or(f,s,i,t);if(xi(f,d),a==="out-in"&&l.type!==Ht)return i.isLeaving=!0,d.afterLeave=()=>{i.isLeaving=!1,t.update.active!==!1&&(t.effect.dirty=!0,t.update())},Rl(o);a==="in-out"&&l.type!==Ht&&(d.delayLeave=(h,p,m)=>{const y=Kp(i,f);y[String(f.key)]=f,h[ki]=()=>{p(),h[ki]=void 0,delete u.delayedLeave},u.delayedLeave=m})}return o}}},yc=_b;function Kp(e,n){const{leavingVNodes:t}=e;let i=t.get(n.type);return i||(i=Object.create(null),t.set(n.type,i)),i}function Or(e,n,t,i,r){const{appear:o,mode:s,persisted:a=!1,onBeforeEnter:l,onEnter:u,onAfterEnter:c,onEnterCancelled:f,onBeforeLeave:d,onLeave:h,onAfterLeave:p,onLeaveCancelled:m,onBeforeAppear:y,onAppear:D,onAfterAppear:S,onAppearCancelled:b}=n,w=String(e.key),x=Kp(t,e),O=(C,I)=>{C&&Dn(C,i,9,I)},F=(C,I)=>{const j=I[1];O(C,I),pe(C)?C.every(R=>R.length<=1)&&j():C.length<=1&&j()},L={mode:s,persisted:a,beforeEnter(C){let I=l;if(!t.isMounted)if(o)I=y||l;else return;C[ki]&&C[ki](!0);const j=x[w];j&&qn(e,j)&&j.el[ki]&&j.el[ki](),O(I,[C])},enter(C){let I=u,j=c,R=f;if(!t.isMounted)if(o)I=D||u,j=S||c,R=b||f;else return;let _=!1;const V=C[Ro]=G=>{_||(_=!0,G?O(R,[C]):O(j,[C]),L.delayedLeave&&L.delayedLeave(),C[Ro]=void 0)};I?F(I,[C,V]):V()},leave(C,I){const j=String(e.key);if(C[Ro]&&C[Ro](!0),t.isUnmounting)return I();O(d,[C]);let R=!1;const _=C[ki]=V=>{R||(R=!0,I(),V?O(m,[C]):O(p,[C]),C[ki]=void 0,x[j]===e&&delete x[j])};x[j]=e,h?F(h,[C,_]):_()},clone(C){const I=Or(C,n,t,i,r);return r&&r(I),I}};return L}function Rl(e){if(co(e))return e=ri(e),e.children=null,e}function Kf(e){if(!co(e))return e;const{shapeFlag:n,children:t}=e;if(t){if(n&16)return t[0];if(n&32&&xe(t.default))return t.default()}}function xi(e,n){e.shapeFlag&6&&e.component?xi(e.component.subTree,n):e.shapeFlag&128?(e.ssContent.transition=n.clone(e.ssContent),e.ssFallback.transition=n.clone(e.ssFallback)):e.transition=n}function uo(e,n=!1,t){let i=[],r=0;for(let o=0;o1)for(let o=0;oit({name:e.name},n,{setup:e}))():e}const wr=e=>!!e.type.__asyncLoader;/*! #__NO_SIDE_EFFECTS__ */function Yp(e){xe(e)&&(e={loader:e});const{loader:n,loadingComponent:t,errorComponent:i,delay:r=200,timeout:o,suspensible:s=!0,onError:a}=e;let l=null,u,c=0;const f=()=>(c++,l=null,d()),d=()=>{let h;return l||(h=l=n().catch(p=>{if(p=p instanceof Error?p:new Error(String(p)),a)return new Promise((m,y)=>{a(p,()=>m(f()),()=>y(p),c+1)});throw p}).then(p=>h!==l&&l?l:(p&&(p.__esModule||p[Symbol.toStringTag]==="Module")&&(p=p.default),u=p,p)))};return _r({name:"AsyncComponentWrapper",__asyncLoader:d,get __asyncResolved(){return u},setup(){const h=Ut;if(u)return()=>_l(u,h);const p=S=>{l=null,sr(S,h,13,!i)};if(s&&h.suspense||go)return d().then(S=>()=>_l(S,h)).catch(S=>(p(S),()=>i?ot(i,{error:S}):null));const m=Jt(!1),y=Jt(),D=Jt(!!r);return r&&setTimeout(()=>{D.value=!1},r),o!=null&&setTimeout(()=>{if(!m.value&&!y.value){const S=new Error(`Async component timed out after ${o}ms.`);p(S),y.value=S}},o),d().then(()=>{m.value=!0,h.parent&&co(h.parent.vnode)&&(h.parent.effect.dirty=!0,ul(h.parent.update))}).catch(S=>{p(S),y.value=S}),()=>{if(m.value&&u)return _l(u,h);if(y.value&&i)return ot(i,{error:y.value});if(t&&!D.value)return ot(t)}}})}function _l(e,n){const{ref:t,props:i,children:r,ce:o}=n.vnode,s=ot(e,i,r);return s.ref=t,s.ce=o,delete n.vnode.ce,s}const co=e=>e.type.__isKeepAlive,Fb={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(e,{slots:n}){const t=Cn(),i=t.ctx;if(!i.renderer)return()=>{const S=n.default&&n.default();return S&&S.length===1?S[0]:S};const r=new Map,o=new Set;let s=null;const a=t.suspense,{renderer:{p:l,m:u,um:c,o:{createElement:f}}}=i,d=f("div");i.activate=(S,b,w,x,O)=>{const F=S.component;u(S,b,w,0,a),l(F.vnode,S,b,w,F,a,x,S.slotScopeIds,O),Kt(()=>{F.isDeactivated=!1,F.a&&zr(F.a);const L=S.props&&S.props.onVnodeMounted;L&&vn(L,F.parent,S)},a)},i.deactivate=S=>{const b=S.component;Oa(b.m),Oa(b.a),u(S,d,null,1,a),Kt(()=>{b.da&&zr(b.da);const w=S.props&&S.props.onVnodeUnmounted;w&&vn(w,b.parent,S),b.isDeactivated=!0},a)};function h(S){Fl(S),c(S,t,a,!0)}function p(S){r.forEach((b,w)=>{const x=Au(b.type);x&&(!S||!S(x))&&m(w)})}function m(S){const b=r.get(S);!s||!qn(b,s)?h(b):s&&Fl(s),r.delete(S),o.delete(S)}Fn(()=>[e.include,e.exclude],([S,b])=>{S&&p(w=>Ds(S,w)),b&&p(w=>!Ds(b,w))},{flush:"post",deep:!0});let y=null;const D=()=>{y!=null&&(wu(t.subTree.type)?Kt(()=>{r.set(y,_o(t.subTree))},t.subTree.suspense):r.set(y,_o(t.subTree)))};return or(D),fo(D),us(()=>{r.forEach(S=>{const{subTree:b,suspense:w}=t,x=_o(b);if(S.type===x.type&&S.key===x.key){Fl(x);const O=x.component.da;O&&Kt(O,w);return}h(S)})}),()=>{if(y=null,!n.default)return null;const S=n.default(),b=S[0];if(S.length>1)return s=null,S;if(!Ai(b)||!(b.shapeFlag&4)&&!(b.shapeFlag&128))return s=null,b;let w=_o(b);const x=w.type,O=Au(wr(w)?w.type.__asyncResolved||{}:x),{include:F,exclude:L,max:C}=e;if(F&&(!O||!Ds(F,O))||L&&O&&Ds(L,O))return s=w,b;const I=w.key==null?x:w.key,j=r.get(I);return w.el&&(w=ri(w),b.shapeFlag&128&&(b.ssContent=w)),y=I,j?(w.el=j.el,w.component=j.component,w.transition&&xi(w,w.transition),w.shapeFlag|=512,o.delete(I),o.add(I)):(o.add(I),C&&o.size>parseInt(C,10)&&m(o.values().next().value)),w.shapeFlag|=256,s=w,wu(b.type)?b:w}}},zp=Fb;function Ds(e,n){return pe(e)?e.some(t=>Ds(t,n)):ke(e)?e.split(",").includes(n):Ly(e)?e.test(n):!1}function bc(e,n){Gp(e,"a",n)}function Ec(e,n){Gp(e,"da",n)}function Gp(e,n,t=Ut){const i=e.__wdc||(e.__wdc=()=>{let r=t;for(;r;){if(r.isDeactivated)return;r=r.parent}return e()});if(hl(n,i,t),t){let r=t.parent;for(;r&&r.parent;)co(r.parent.vnode)&&Lb(i,n,t,r),r=r.parent}}function Lb(e,n,t,i){const r=hl(n,e,i,!0);ho(()=>{rc(i[n],r)},t)}function Fl(e){e.shapeFlag&=-257,e.shapeFlag&=-513}function _o(e){return e.shapeFlag&128?e.ssContent:e}function hl(e,n,t=Ut,i=!1){if(t){const r=t[e]||(t[e]=[]),o=n.__weh||(n.__weh=(...s)=>{ir();const a=Ar(t),l=Dn(n,t,e,s);return a(),rr(),l});return i?r.unshift(o):r.push(o),o}}const Mi=e=>(n,t=Ut)=>{(!go||e==="sp")&&hl(e,(...i)=>n(...i),t)},Sc=Mi("bm"),or=Mi("m"),wc=Mi("bu"),fo=Mi("u"),us=Mi("bum"),ho=Mi("um"),Dc=Mi("sp"),Tc=Mi("rtg"),Cc=Mi("rtc");function Oc(e,n=Ut){hl("ec",e,n)}const xc="components",kb="directives";function ui(e,n){return Ac(xc,e,!0,n)||e}const Zp=Symbol.for("v-ndc");function cs(e){return ke(e)?Ac(xc,e,!1)||e:e||Zp}function Xp(e){return Ac(kb,e)}function Ac(e,n,t=!0,i=!1){const r=Wt||Ut;if(r){const o=r.type;if(e===xc){const a=Au(o,!1);if(a&&(a===n||a===bt(n)||a===nr(bt(n))))return o}const s=Yf(r[e]||o[e],n)||Yf(r.appContext[e],n);return!s&&i?o:s}}function Yf(e,n){return e&&(e[n]||e[bt(n)]||e[nr(bt(n))])}function dn(e,n,t,i){let r;const o=t&&t[i];if(pe(e)||ke(e)){r=new Array(e.length);for(let s=0,a=e.length;sn(s,a,void 0,o&&o[a]));else{const s=Object.keys(e);r=new Array(s.length);for(let a=0,l=s.length;a{const o=i.fn(...r);return o&&(o.key=i.key),o}:i.fn)}return e}function qe(e,n,t={},i,r){if(Wt.isCE||Wt.parent&&wr(Wt.parent)&&Wt.parent.isCE)return n!=="default"&&(t.name=n),ot("slot",t,i&&i());let o=e[n];o&&o._c&&(o._d=!1),ae();const s=o&&Jp(o(t)),a=_n(tt,{key:(t.key||s&&s.key||`_${n}`)+(!s&&i?"_fb":"")},s||(i?i():[]),s&&e._===1?64:-2);return!r&&a.scopeId&&(a.slotScopeIds=[a.scopeId+"-s"]),o&&o._c&&(o._d=!0),a}function Jp(e){return e.some(n=>Ai(n)?!(n.type===Ht||n.type===tt&&!Jp(n.children)):!0)?e:null}function Qp(e,n){const t={};for(const i in e)t[n&&/[A-Z]/.test(i)?`on:${i}`:br(i)]=e[i];return t}const gu=e=>e?Wm(e)?vo(e):gu(e.parent):null,Ns=it(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>gu(e.parent),$root:e=>gu(e.root),$emit:e=>e.emit,$options:e=>Mc(e),$forceUpdate:e=>e.f||(e.f=()=>{e.effect.dirty=!0,ul(e.update)}),$nextTick:e=>e.n||(e.n=cn.bind(e.proxy)),$watch:e=>s0.bind(e)}),Ll=(e,n)=>e!==Je&&!e.__isScriptSetup&&et(e,n),vu={get({_:e},n){if(n==="__v_skip")return!0;const{ctx:t,setupState:i,data:r,props:o,accessCache:s,type:a,appContext:l}=e;let u;if(n[0]!=="$"){const h=s[n];if(h!==void 0)switch(h){case 1:return i[n];case 2:return r[n];case 4:return t[n];case 3:return o[n]}else{if(Ll(i,n))return s[n]=1,i[n];if(r!==Je&&et(r,n))return s[n]=2,r[n];if((u=e.propsOptions[0])&&et(u,n))return s[n]=3,o[n];if(t!==Je&&et(t,n))return s[n]=4,t[n];yu&&(s[n]=0)}}const c=Ns[n];let f,d;if(c)return n==="$attrs"&&Tn(e.attrs,"get",""),c(e);if((f=a.__cssModules)&&(f=f[n]))return f;if(t!==Je&&et(t,n))return s[n]=4,t[n];if(d=l.config.globalProperties,et(d,n))return d[n]},set({_:e},n,t){const{data:i,setupState:r,ctx:o}=e;return Ll(r,n)?(r[n]=t,!0):i!==Je&&et(i,n)?(i[n]=t,!0):et(e.props,n)||n[0]==="$"&&n.slice(1)in e?!1:(o[n]=t,!0)},has({_:{data:e,setupState:n,accessCache:t,ctx:i,appContext:r,propsOptions:o}},s){let a;return!!t[s]||e!==Je&&et(e,s)||Ll(n,s)||(a=o[0])&&et(a,s)||et(i,s)||et(Ns,s)||et(r.config.globalProperties,s)},defineProperty(e,n,t){return t.get!=null?e._.accessCache[n]=0:et(t,"value")&&this.set(e,n,t.value,null),Reflect.defineProperty(e,n,t)}},$b=it({},vu,{get(e,n){if(n!==Symbol.unscopables)return vu.get(e,n,e)},has(e,n){return n[0]!=="_"&&!Hy(n)}});function qp(){return null}function em(){return null}function tm(e){}function nm(e){}function im(){return null}function rm(){}function sm(e,n){return null}function om(){return lm().slots}function am(){return lm().attrs}function lm(){const e=Cn();return e.setupContext||(e.setupContext=Gm(e))}function Zs(e){return pe(e)?e.reduce((n,t)=>(n[t]=null,n),{}):e}function um(e,n){const t=Zs(e);for(const i in n){if(i.startsWith("__skip"))continue;let r=t[i];r?pe(r)||xe(r)?r=t[i]={type:r,default:n[i]}:r.default=n[i]:r===null&&(r=t[i]={default:n[i]}),r&&n[`__skip_${i}`]&&(r.skipFactory=!0)}return t}function cm(e,n){return!e||!n?e||n:pe(e)&&pe(n)?e.concat(n):it({},Zs(e),Zs(n))}function fm(e,n){const t={};for(const i in e)n.includes(i)||Object.defineProperty(t,i,{enumerable:!0,get:()=>e[i]});return t}function dm(e){const n=Cn();let t=e();return Cu(),sc(t)&&(t=t.catch(i=>{throw Ar(n),i})),[t,()=>Ar(n)]}let yu=!0;function jb(e){const n=Mc(e),t=e.proxy,i=e.ctx;yu=!1,n.beforeCreate&&zf(n.beforeCreate,e,"bc");const{data:r,computed:o,methods:s,watch:a,provide:l,inject:u,created:c,beforeMount:f,mounted:d,beforeUpdate:h,updated:p,activated:m,deactivated:y,beforeDestroy:D,beforeUnmount:S,destroyed:b,unmounted:w,render:x,renderTracked:O,renderTriggered:F,errorCaptured:L,serverPrefetch:C,expose:I,inheritAttrs:j,components:R,directives:_,filters:V}=n;if(u&&Vb(u,i,null),s)for(const W in s){const J=s[W];xe(J)&&(i[W]=J.bind(t))}if(r){const W=r.call(t,t);ct(W)&&(e.data=Ci(W))}if(yu=!0,o)for(const W in o){const J=o[W],Ce=xe(J)?J.bind(t,t):xe(J.get)?J.get.bind(t,t):$t,Qe=!xe(J)&&xe(J.set)?J.set.bind(t):$t,Pe=Xe({get:Ce,set:Qe});Object.defineProperty(i,W,{enumerable:!0,configurable:!0,get:()=>Pe.value,set:Be=>Pe.value=Be})}if(a)for(const W in a)hm(a[W],i,t,W);if(l){const W=xe(l)?l.call(t):l;Reflect.ownKeys(W).forEach(J=>{po(J,W[J])})}c&&zf(c,e,"c");function $(W,J){pe(J)?J.forEach(Ce=>W(Ce.bind(t))):J&&W(J.bind(t))}if($(Sc,f),$(or,d),$(wc,h),$(fo,p),$(bc,m),$(Ec,y),$(Oc,L),$(Cc,O),$(Tc,F),$(us,S),$(ho,w),$(Dc,C),pe(I))if(I.length){const W=e.exposed||(e.exposed={});I.forEach(J=>{Object.defineProperty(W,J,{get:()=>t[J],set:Ce=>t[J]=Ce})})}else e.exposed||(e.exposed={});x&&e.render===$t&&(e.render=x),j!=null&&(e.inheritAttrs=j),R&&(e.components=R),_&&(e.directives=_)}function Vb(e,n,t=$t){pe(e)&&(e=bu(e));for(const i in e){const r=e[i];let o;ct(r)?"default"in r?o=Gi(r.from||i,r.default,!0):o=Gi(r.from||i):o=Gi(r),_t(o)?Object.defineProperty(n,i,{enumerable:!0,configurable:!0,get:()=>o.value,set:s=>o.value=s}):n[i]=o}}function zf(e,n,t){Dn(pe(e)?e.map(i=>i.bind(n.proxy)):e.bind(n.proxy),n,t)}function hm(e,n,t,i){const r=i.includes(".")?Pm(t,i):()=>t[i];if(ke(e)){const o=n[e];xe(o)&&Fn(r,o)}else if(xe(e))Fn(r,e.bind(t));else if(ct(e))if(pe(e))e.forEach(o=>hm(o,n,t,i));else{const o=xe(e.handler)?e.handler.bind(t):n[e.handler];xe(o)&&Fn(r,o,e)}}function Mc(e){const n=e.type,{mixins:t,extends:i}=n,{mixins:r,optionsCache:o,config:{optionMergeStrategies:s}}=e.appContext,a=o.get(n);let l;return a?l=a:!r.length&&!t&&!i?l=n:(l={},r.length&&r.forEach(u=>Ta(l,u,s,!0)),Ta(l,n,s)),ct(n)&&o.set(n,l),l}function Ta(e,n,t,i=!1){const{mixins:r,extends:o}=n;o&&Ta(e,o,t,!0),r&&r.forEach(s=>Ta(e,s,t,!0));for(const s in n)if(!(i&&s==="expose")){const a=Bb[s]||t&&t[s];e[s]=a?a(e[s],n[s]):n[s]}return e}const Bb={data:Gf,props:Zf,emits:Zf,methods:Ts,computed:Ts,beforeCreate:ln,created:ln,beforeMount:ln,mounted:ln,beforeUpdate:ln,updated:ln,beforeDestroy:ln,beforeUnmount:ln,destroyed:ln,unmounted:ln,activated:ln,deactivated:ln,errorCaptured:ln,serverPrefetch:ln,components:Ts,directives:Ts,watch:Ub,provide:Gf,inject:Hb};function Gf(e,n){return n?e?function(){return it(xe(e)?e.call(this,this):e,xe(n)?n.call(this,this):n)}:n:e}function Hb(e,n){return Ts(bu(e),bu(n))}function bu(e){if(pe(e)){const n={};for(let t=0;t1)return t&&xe(n)?n.call(i&&i.proxy):n}}function mm(){return!!(Ut||Wt||Xr)}const gm={},vm=()=>Object.create(gm),ym=e=>Object.getPrototypeOf(e)===gm;function Yb(e,n,t,i=!1){const r={},o=vm();e.propsDefaults=Object.create(null),bm(e,n,r,o);for(const s in e.propsOptions[0])s in r||(r[s]=void 0);t?e.props=i?r:fc(r):e.type.props?e.props=r:e.props=o,e.attrs=o}function zb(e,n,t,i){const{props:r,attrs:o,vnode:{patchFlag:s}}=e,a=Ge(r),[l]=e.propsOptions;let u=!1;if((i||s>0)&&!(s&16)){if(s&8){const c=e.vnode.dynamicProps;for(let f=0;f{l=!0;const[d,h]=Em(f,n,!0);it(s,d),h&&a.push(...h)};!t&&n.mixins.length&&n.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}if(!o&&!l)return ct(e)&&i.set(e,Kr),Kr;if(pe(o))for(let c=0;c-1,h[1]=m<0||p-1||et(h,"default"))&&a.push(f)}}}const u=[s,a];return ct(e)&&i.set(e,u),u}function Xf(e){return e[0]!=="$"&&!Ki(e)}function Jf(e){return e===null?"null":typeof e=="function"?e.name||"":typeof e=="object"&&e.constructor&&e.constructor.name||""}function Qf(e,n){return Jf(e)===Jf(n)}function qf(e,n){return pe(n)?n.findIndex(t=>Qf(t,e)):xe(n)&&Qf(n,e)?0:-1}const Sm=e=>e[0]==="_"||e==="$stable",Ic=e=>pe(e)?e.map(bn):[bn(e)],Zb=(e,n,t)=>{if(n._n)return n;const i=pt((...r)=>Ic(n(...r)),t);return i._c=!1,i},wm=(e,n,t)=>{const i=e._ctx;for(const r in e){if(Sm(r))continue;const o=e[r];if(xe(o))n[r]=Zb(r,o,i);else if(o!=null){const s=Ic(o);n[r]=()=>s}}},Dm=(e,n)=>{const t=Ic(n);e.slots.default=()=>t},Tm=(e,n,t)=>{for(const i in n)(t||i!=="_")&&(e[i]=n[i])},Xb=(e,n,t)=>{const i=e.slots=vm();if(e.vnode.shapeFlag&32){const r=n._;r?(Tm(i,n,t),t&&np(i,"_",r,!0)):wm(n,i)}else n&&Dm(e,n)},Jb=(e,n,t)=>{const{vnode:i,slots:r}=e;let o=!0,s=Je;if(i.shapeFlag&32){const a=n._;a?t&&a===1?o=!1:Tm(r,n,t):(o=!n.$stable,wm(n,r)),s=n}else n&&(Dm(e,n),s={default:1});if(o)for(const a in r)!Sm(a)&&s[a]==null&&delete r[a]};function Ca(e,n,t,i,r=!1){if(pe(e)){e.forEach((d,h)=>Ca(d,n&&(pe(n)?n[h]:n),t,i,r));return}if(wr(i)&&!r)return;const o=i.shapeFlag&4?vo(i.component):i.el,s=r?null:o,{i:a,r:l}=e,u=n&&n.r,c=a.refs===Je?a.refs={}:a.refs,f=a.setupState;if(u!=null&&u!==l&&(ke(u)?(c[u]=null,et(f,u)&&(f[u]=null)):_t(u)&&(u.value=null)),xe(l))ci(l,a,12,[s,c]);else{const d=ke(l),h=_t(l);if(d||h){const p=()=>{if(e.f){const m=d?et(f,l)?f[l]:c[l]:l.value;r?pe(m)&&rc(m,o):pe(m)?m.includes(o)||m.push(o):d?(c[l]=[o],et(f,l)&&(f[l]=c[l])):(l.value=[o],e.k&&(c[e.k]=l.value))}else d?(c[l]=s,et(f,l)&&(f[l]=s)):h&&(l.value=s,e.k&&(c[e.k]=s))};s?(p.id=-1,Kt(p,t)):p()}}}const Cm=Symbol("_vte"),Qb=e=>e.__isTeleport,Rs=e=>e&&(e.disabled||e.disabled===""),ed=e=>typeof SVGElement<"u"&&e instanceof SVGElement,td=e=>typeof MathMLElement=="function"&&e instanceof MathMLElement,Su=(e,n)=>{const t=e&&e.to;return ke(t)?n?n(t):null:t},qb={name:"Teleport",__isTeleport:!0,process(e,n,t,i,r,o,s,a,l,u){const{mc:c,pc:f,pbc:d,o:{insert:h,querySelector:p,createText:m,createComment:y}}=u,D=Rs(n.props);let{shapeFlag:S,children:b,dynamicChildren:w}=n;if(e==null){const x=n.el=m(""),O=n.anchor=m(""),F=n.target=Su(n.props,p),L=n.targetStart=m(""),C=n.targetAnchor=m("");h(x,t,i),h(O,t,i),L[Cm]=C,F&&(h(L,F),h(C,F),s==="svg"||ed(F)?s="svg":(s==="mathml"||td(F))&&(s="mathml"));const I=(j,R)=>{S&16&&c(b,j,R,r,o,s,a,l)};D?I(t,O):F&&I(F,C)}else{n.el=e.el,n.targetStart=e.targetStart;const x=n.anchor=e.anchor,O=n.target=e.target,F=n.targetAnchor=e.targetAnchor,L=Rs(e.props),C=L?t:O,I=L?x:F;if(s==="svg"||ed(O)?s="svg":(s==="mathml"||td(O))&&(s="mathml"),w?(d(e.dynamicChildren,w,C,r,o,s,a),Rc(e,n,!0)):l||f(e,n,C,I,r,o,s,a,!1),D)L?n.props&&e.props&&n.props.to!==e.props.to&&(n.props.to=e.props.to):Fo(n,t,x,u,1);else if((n.props&&n.props.to)!==(e.props&&e.props.to)){const j=n.target=Su(n.props,p);j&&Fo(n,j,null,u,0)}else L&&Fo(n,O,F,u,1)}xm(n)},remove(e,n,t,{um:i,o:{remove:r}},o){const{shapeFlag:s,children:a,anchor:l,targetStart:u,targetAnchor:c,target:f,props:d}=e;if(f&&(r(u),r(c)),o&&r(l),s&16){const h=o||!Rs(d);for(let p=0;p{nd||(console.error("Hydration completed but contains mismatches."),nd=!0)},t0=e=>e.namespaceURI.includes("svg")&&e.tagName!=="foreignObject",n0=e=>e.namespaceURI.includes("MathML"),Lo=e=>{if(t0(e))return"svg";if(n0(e))return"mathml"},ko=e=>e.nodeType===8;function i0(e){const{mt:n,p:t,o:{patchProp:i,createText:r,nextSibling:o,parentNode:s,remove:a,insert:l,createComment:u}}=e,c=(b,w)=>{if(!w.hasChildNodes()){t(null,b,w),Da(),w._vnode=b;return}f(w.firstChild,b,null,null,null),Da(),w._vnode=b},f=(b,w,x,O,F,L=!1)=>{L=L||!!w.dynamicChildren;const C=ko(b)&&b.data==="[",I=()=>m(b,w,x,O,F,C),{type:j,ref:R,shapeFlag:_,patchFlag:V}=w;let G=b.nodeType;w.el=b,V===-2&&(L=!1,w.dynamicChildren=null);let $=null;switch(j){case wi:G!==3?w.children===""?(l(w.el=r(""),s(b),b),$=b):$=I():(b.data!==w.children&&(Lr(),b.data=w.children),$=o(b));break;case Ht:S(b)?($=o(b),D(w.el=b.content.firstChild,b,x)):G!==8||C?$=I():$=o(b);break;case Zi:if(C&&(b=o(b),G=b.nodeType),G===1||G===3){$=b;const W=!w.children.length;for(let J=0;J{L=L||!!w.dynamicChildren;const{type:C,props:I,patchFlag:j,shapeFlag:R,dirs:_,transition:V}=w,G=C==="input"||C==="option";if(G||j!==-1){_&&ai(w,null,x,"created");let $=!1;if(S(b)){$=Mm(O,V)&&x&&x.vnode.props&&x.vnode.props.appear;const J=b.content.firstChild;$&&V.beforeEnter(J),D(J,b,x),w.el=b=J}if(R&16&&!(I&&(I.innerHTML||I.textContent))){let J=h(b.firstChild,w,b,x,O,F,L);for(;J;){Lr();const Ce=J;J=J.nextSibling,a(Ce)}}else R&8&&b.textContent!==w.children&&(Lr(),b.textContent=w.children);if(I){if(G||!L||j&48)for(const J in I)(G&&(J.endsWith("value")||J==="indeterminate")||Nr(J)&&!Ki(J)||J[0]===".")&&i(b,J,null,I[J],void 0,x);else if(I.onClick)i(b,"onClick",null,I.onClick,void 0,x);else if(j&4&&zi(I.style))for(const J in I.style)I.style[J]}let W;(W=I&&I.onVnodeBeforeMount)&&vn(W,x,w),_&&ai(w,null,x,"beforeMount"),((W=I&&I.onVnodeMounted)||_||$)&&km(()=>{W&&vn(W,x,w),$&&V.enter(b),_&&ai(w,null,x,"mounted")},O)}return b.nextSibling},h=(b,w,x,O,F,L,C)=>{C=C||!!w.dynamicChildren;const I=w.children,j=I.length;for(let R=0;R{const{slotScopeIds:C}=w;C&&(F=F?F.concat(C):C);const I=s(b),j=h(o(b),w,I,x,O,F,L);return j&&ko(j)&&j.data==="]"?o(w.anchor=j):(Lr(),l(w.anchor=u("]"),I,j),j)},m=(b,w,x,O,F,L)=>{if(Lr(),w.el=null,L){const j=y(b);for(;;){const R=o(b);if(R&&R!==j)a(R);else break}}const C=o(b),I=s(b);return a(b),t(null,w,I,C,x,O,Lo(I),F),C},y=(b,w="[",x="]")=>{let O=0;for(;b;)if(b=o(b),b&&ko(b)&&(b.data===w&&O++,b.data===x)){if(O===0)return o(b);O--}return b},D=(b,w,x)=>{const O=w.parentNode;O&&O.replaceChild(b,w);let F=x;for(;F;)F.vnode.el===w&&(F.vnode.el=F.subTree.el=b),F=F.parent},S=b=>b.nodeType===1&&b.tagName.toLowerCase()==="template";return[c,f]}const Kt=km;function Pc(e){return Am(e)}function Nc(e){return Am(e,i0)}function Am(e,n){const t=ip();t.__VUE__=!0;const{insert:i,remove:r,patchProp:o,createElement:s,createText:a,createComment:l,setText:u,setElementText:c,parentNode:f,nextSibling:d,setScopeId:h=$t,insertStaticContent:p}=e,m=(M,P,B,Z=null,Y=null,Q=null,ne=void 0,te=null,ie=!!P.dynamicChildren)=>{if(M===P)return;M&&!qn(M,P)&&(Z=ce(M),Be(M,Y,Q,!0),M=null),P.patchFlag===-2&&(ie=!1,P.dynamicChildren=null);const{type:X,ref:le,shapeFlag:ve}=P;switch(X){case wi:y(M,P,B,Z);break;case Ht:D(M,P,B,Z);break;case Zi:M==null&&S(P,B,Z,ne);break;case tt:R(M,P,B,Z,Y,Q,ne,te,ie);break;default:ve&1?x(M,P,B,Z,Y,Q,ne,te,ie):ve&6?_(M,P,B,Z,Y,Q,ne,te,ie):(ve&64||ve&128)&&X.process(M,P,B,Z,Y,Q,ne,te,ie,ft)}le!=null&&Y&&Ca(le,M&&M.ref,Q,P||M,!P)},y=(M,P,B,Z)=>{if(M==null)i(P.el=a(P.children),B,Z);else{const Y=P.el=M.el;P.children!==M.children&&u(Y,P.children)}},D=(M,P,B,Z)=>{M==null?i(P.el=l(P.children||""),B,Z):P.el=M.el},S=(M,P,B,Z)=>{[M.el,M.anchor]=p(M.children,P,B,Z,M.el,M.anchor)},b=({el:M,anchor:P},B,Z)=>{let Y;for(;M&&M!==P;)Y=d(M),i(M,B,Z),M=Y;i(P,B,Z)},w=({el:M,anchor:P})=>{let B;for(;M&&M!==P;)B=d(M),r(M),M=B;r(P)},x=(M,P,B,Z,Y,Q,ne,te,ie)=>{P.type==="svg"?ne="svg":P.type==="math"&&(ne="mathml"),M==null?O(P,B,Z,Y,Q,ne,te,ie):C(M,P,Y,Q,ne,te,ie)},O=(M,P,B,Z,Y,Q,ne,te)=>{let ie,X;const{props:le,shapeFlag:ve,transition:fe,dirs:Te}=M;if(ie=M.el=s(M.type,Q,le&&le.is,le),ve&8?c(ie,M.children):ve&16&&L(M.children,ie,null,Z,Y,kl(M,Q),ne,te),Te&&ai(M,null,Z,"created"),F(ie,M,M.scopeId,ne,Z),le){for(const ze in le)ze!=="value"&&!Ki(ze)&&o(ie,ze,null,le[ze],Q,Z);"value"in le&&o(ie,"value",null,le.value,Q),(X=le.onVnodeBeforeMount)&&vn(X,Z,M)}Te&&ai(M,null,Z,"beforeMount");const Ae=Mm(Y,fe);Ae&&fe.beforeEnter(ie),i(ie,P,B),((X=le&&le.onVnodeMounted)||Ae||Te)&&Kt(()=>{X&&vn(X,Z,M),Ae&&fe.enter(ie),Te&&ai(M,null,Z,"mounted")},Y)},F=(M,P,B,Z,Y)=>{if(B&&h(M,B),Z)for(let Q=0;Q{for(let X=ie;X{const te=P.el=M.el;let{patchFlag:ie,dynamicChildren:X,dirs:le}=P;ie|=M.patchFlag&16;const ve=M.props||Je,fe=P.props||Je;let Te;if(B&&ar(B,!1),(Te=fe.onVnodeBeforeUpdate)&&vn(Te,B,P,M),le&&ai(P,M,B,"beforeUpdate"),B&&ar(B,!0),(ve.innerHTML&&fe.innerHTML==null||ve.textContent&&fe.textContent==null)&&c(te,""),X?I(M.dynamicChildren,X,te,B,Z,kl(P,Y),Q):ne||J(M,P,te,null,B,Z,kl(P,Y),Q,!1),ie>0){if(ie&16)j(te,ve,fe,B,Y);else if(ie&2&&ve.class!==fe.class&&o(te,"class",null,fe.class,Y),ie&4&&o(te,"style",ve.style,fe.style,Y),ie&8){const Ae=P.dynamicProps;for(let ze=0;ze{Te&&vn(Te,B,P,M),le&&ai(P,M,B,"updated")},Z)},I=(M,P,B,Z,Y,Q,ne)=>{for(let te=0;te{if(P!==B){if(P!==Je)for(const Q in P)!Ki(Q)&&!(Q in B)&&o(M,Q,P[Q],null,Y,Z);for(const Q in B){if(Ki(Q))continue;const ne=B[Q],te=P[Q];ne!==te&&Q!=="value"&&o(M,Q,te,ne,Y,Z)}"value"in B&&o(M,"value",P.value,B.value,Y)}},R=(M,P,B,Z,Y,Q,ne,te,ie)=>{const X=P.el=M?M.el:a(""),le=P.anchor=M?M.anchor:a("");let{patchFlag:ve,dynamicChildren:fe,slotScopeIds:Te}=P;Te&&(te=te?te.concat(Te):Te),M==null?(i(X,B,Z),i(le,B,Z),L(P.children||[],B,le,Y,Q,ne,te,ie)):ve>0&&ve&64&&fe&&M.dynamicChildren?(I(M.dynamicChildren,fe,B,Y,Q,ne,te),(P.key!=null||Y&&P===Y.subTree)&&Rc(M,P,!0)):J(M,P,B,le,Y,Q,ne,te,ie)},_=(M,P,B,Z,Y,Q,ne,te,ie)=>{P.slotScopeIds=te,M==null?P.shapeFlag&512?Y.ctx.activate(P,B,Z,ne,ie):V(P,B,Z,Y,Q,ne,ie):G(M,P,ie)},V=(M,P,B,Z,Y,Q,ne)=>{const te=M.component=Um(M,Z,Y);if(co(M)&&(te.ctx.renderer=ft),Km(te,!1,ne),te.asyncDep){if(Y&&Y.registerDep(te,$,ne),!M.el){const ie=te.subTree=ot(Ht);D(null,ie,P,B)}}else $(te,M,P,B,Y,Q,ne)},G=(M,P,B)=>{const Z=P.component=M.component;if(c0(M,P,B))if(Z.asyncDep&&!Z.asyncResolved){W(Z,P,B);return}else Z.next=P,Nb(Z.update),Z.effect.dirty=!0,Z.update();else P.el=M.el,Z.vnode=P},$=(M,P,B,Z,Y,Q,ne)=>{const te=()=>{if(M.isMounted){let{next:le,bu:ve,u:fe,parent:Te,vnode:Ae}=M;{const k=Im(M);if(k){le&&(le.el=Ae.el,W(M,le,ne)),k.asyncDep.then(()=>{M.isUnmounted||te()});return}}let ze=le,g;ar(M,!1),le?(le.el=Ae.el,W(M,le,ne)):le=Ae,ve&&zr(ve),(g=le.props&&le.props.onVnodeBeforeUpdate)&&vn(g,Te,le,Ae),ar(M,!0);const v=ra(M),A=M.subTree;M.subTree=v,m(A,v,f(A.el),ce(A),M,Y,Q),le.el=v.el,ze===null&&jc(M,v.el),fe&&Kt(fe,Y),(g=le.props&&le.props.onVnodeUpdated)&&Kt(()=>vn(g,Te,le,Ae),Y)}else{let le;const{el:ve,props:fe}=P,{bm:Te,m:Ae,parent:ze}=M,g=wr(P);if(ar(M,!1),Te&&zr(Te),!g&&(le=fe&&fe.onVnodeBeforeMount)&&vn(le,ze,P),ar(M,!0),ve&&dt){const v=()=>{M.subTree=ra(M),dt(ve,M.subTree,M,Y,null)};g?P.type.__asyncLoader().then(()=>!M.isUnmounted&&v()):v()}else{const v=M.subTree=ra(M);m(null,v,B,Z,M,Y,Q),P.el=v.el}if(Ae&&Kt(Ae,Y),!g&&(le=fe&&fe.onVnodeMounted)){const v=P;Kt(()=>vn(le,ze,v),Y)}(P.shapeFlag&256||ze&&wr(ze.vnode)&&ze.vnode.shapeFlag&256)&&M.a&&Kt(M.a,Y),M.isMounted=!0,P=B=Z=null}},ie=M.effect=new Cr(te,$t,()=>ul(X),M.scope),X=M.update=()=>{ie.dirty&&ie.run()};X.i=M,X.id=M.uid,ar(M,!0),X()},W=(M,P,B)=>{P.component=M;const Z=M.vnode.props;M.vnode=P,M.next=null,zb(M,P.props,Z,B),Jb(M,P.children,B),ir(),Wf(M),rr()},J=(M,P,B,Z,Y,Q,ne,te,ie=!1)=>{const X=M&&M.children,le=M?M.shapeFlag:0,ve=P.children,{patchFlag:fe,shapeFlag:Te}=P;if(fe>0){if(fe&128){Qe(X,ve,B,Z,Y,Q,ne,te,ie);return}else if(fe&256){Ce(X,ve,B,Z,Y,Q,ne,te,ie);return}}Te&8?(le&16&&q(X,Y,Q),ve!==X&&c(B,ve)):le&16?Te&16?Qe(X,ve,B,Z,Y,Q,ne,te,ie):q(X,Y,Q,!0):(le&8&&c(B,""),Te&16&&L(ve,B,Z,Y,Q,ne,te,ie))},Ce=(M,P,B,Z,Y,Q,ne,te,ie)=>{M=M||Kr,P=P||Kr;const X=M.length,le=P.length,ve=Math.min(X,le);let fe;for(fe=0;fele?q(M,Y,Q,!0,!1,ve):L(P,B,Z,Y,Q,ne,te,ie,ve)},Qe=(M,P,B,Z,Y,Q,ne,te,ie)=>{let X=0;const le=P.length;let ve=M.length-1,fe=le-1;for(;X<=ve&&X<=fe;){const Te=M[X],Ae=P[X]=ie?$i(P[X]):bn(P[X]);if(qn(Te,Ae))m(Te,Ae,B,null,Y,Q,ne,te,ie);else break;X++}for(;X<=ve&&X<=fe;){const Te=M[ve],Ae=P[fe]=ie?$i(P[fe]):bn(P[fe]);if(qn(Te,Ae))m(Te,Ae,B,null,Y,Q,ne,te,ie);else break;ve--,fe--}if(X>ve){if(X<=fe){const Te=fe+1,Ae=Tefe)for(;X<=ve;)Be(M[X],Y,Q,!0),X++;else{const Te=X,Ae=X,ze=new Map;for(X=Ae;X<=fe;X++){const ue=P[X]=ie?$i(P[X]):bn(P[X]);ue.key!=null&&ze.set(ue.key,X)}let g,v=0;const A=fe-Ae+1;let k=!1,z=0;const ee=new Array(A);for(X=0;X=A){Be(ue,Y,Q,!0);continue}let we;if(ue.key!=null)we=ze.get(ue.key);else for(g=Ae;g<=fe;g++)if(ee[g-Ae]===0&&qn(ue,P[g])){we=g;break}we===void 0?Be(ue,Y,Q,!0):(ee[we-Ae]=X+1,we>=z?z=we:k=!0,m(ue,P[we],B,null,Y,Q,ne,te,ie),v++)}const K=k?r0(ee):Kr;for(g=K.length-1,X=A-1;X>=0;X--){const ue=Ae+X,we=P[ue],me=ue+1{const{el:Q,type:ne,transition:te,children:ie,shapeFlag:X}=M;if(X&6){Pe(M.component.subTree,P,B,Z);return}if(X&128){M.suspense.move(P,B,Z);return}if(X&64){ne.move(M,P,B,ft);return}if(ne===tt){i(Q,P,B);for(let ve=0;vete.enter(Q),Y);else{const{leave:ve,delayLeave:fe,afterLeave:Te}=te,Ae=()=>i(Q,P,B),ze=()=>{ve(Q,()=>{Ae(),Te&&Te()})};fe?fe(Q,Ae,ze):ze()}else i(Q,P,B)},Be=(M,P,B,Z=!1,Y=!1)=>{const{type:Q,props:ne,ref:te,children:ie,dynamicChildren:X,shapeFlag:le,patchFlag:ve,dirs:fe,cacheIndex:Te}=M;if(ve===-2&&(Y=!1),te!=null&&Ca(te,null,B,M,!0),Te!=null&&(P.renderCache[Te]=void 0),le&256){P.ctx.deactivate(M);return}const Ae=le&1&&fe,ze=!wr(M);let g;if(ze&&(g=ne&&ne.onVnodeBeforeUnmount)&&vn(g,P,M),le&6)nt(M.component,B,Z);else{if(le&128){M.suspense.unmount(B,Z);return}Ae&&ai(M,null,P,"beforeUnmount"),le&64?M.type.remove(M,P,B,ft,Z):X&&!X.hasOnce&&(Q!==tt||ve>0&&ve&64)?q(X,P,B,!1,!0):(Q===tt&&ve&384||!Y&&le&16)&&q(ie,P,B),Z&&at(M)}(ze&&(g=ne&&ne.onVnodeUnmounted)||Ae)&&Kt(()=>{g&&vn(g,P,M),Ae&&ai(M,null,P,"unmounted")},B)},at=M=>{const{type:P,el:B,anchor:Z,transition:Y}=M;if(P===tt){Ke(B,Z);return}if(P===Zi){w(M);return}const Q=()=>{r(B),Y&&!Y.persisted&&Y.afterLeave&&Y.afterLeave()};if(M.shapeFlag&1&&Y&&!Y.persisted){const{leave:ne,delayLeave:te}=Y,ie=()=>ne(B,Q);te?te(M.el,Q,ie):ie()}else Q()},Ke=(M,P)=>{let B;for(;M!==P;)B=d(M),r(M),M=B;r(P)},nt=(M,P,B)=>{const{bum:Z,scope:Y,update:Q,subTree:ne,um:te,m:ie,a:X}=M;Oa(ie),Oa(X),Z&&zr(Z),Y.stop(),Q&&(Q.active=!1,Be(ne,M,P,B)),te&&Kt(te,P),Kt(()=>{M.isUnmounted=!0},P),P&&P.pendingBranch&&!P.isUnmounted&&M.asyncDep&&!M.asyncResolved&&M.suspenseId===P.pendingId&&(P.deps--,P.deps===0&&P.resolve())},q=(M,P,B,Z=!1,Y=!1,Q=0)=>{for(let ne=Q;ne{if(M.shapeFlag&6)return ce(M.component.subTree);if(M.shapeFlag&128)return M.suspense.next();const P=d(M.anchor||M.el),B=P&&P[Cm];return B?d(B):P};let Ne=!1;const De=(M,P,B)=>{M==null?P._vnode&&Be(P._vnode,null,null,!0):m(P._vnode||null,M,P,null,null,null,B),Ne||(Ne=!0,Wf(),Da(),Ne=!1),P._vnode=M},ft={p:m,um:Be,m:Pe,r:at,mt:V,mc:L,pc:J,pbc:I,n:ce,o:e};let mt,dt;return n&&([mt,dt]=n(ft)),{render:De,hydrate:mt,createApp:Kb(De,mt)}}function kl({type:e,props:n},t){return t==="svg"&&e==="foreignObject"||t==="mathml"&&e==="annotation-xml"&&n&&n.encoding&&n.encoding.includes("html")?void 0:t}function ar({effect:e,update:n},t){e.allowRecurse=n.allowRecurse=t}function Mm(e,n){return(!e||e&&!e.pendingBranch)&&n&&!n.persisted}function Rc(e,n,t=!1){const i=e.children,r=n.children;if(pe(i)&&pe(r))for(let o=0;o>1,e[t[a]]0&&(n[i]=t[o-1]),t[o]=i)}}for(o=t.length,s=t[o-1];o-- >0;)t[o]=s,s=n[s];return t}function Im(e){const n=e.subTree.component;if(n)return n.asyncDep&&!n.asyncResolved?n:Im(n)}function Oa(e){if(e)for(let n=0;nGi(_c);function Lc(e,n){return mo(e,null,n)}function kc(e,n){return mo(e,null,{flush:"post"})}function $c(e,n){return mo(e,null,{flush:"sync"})}const $o={};function Fn(e,n,t){return mo(e,n,t)}function mo(e,n,{immediate:t,deep:i,flush:r,once:o,onTrack:s,onTrigger:a}=Je){if(n&&o){const O=n;n=(...F)=>{O(...F),x()}}const l=Ut,u=O=>i===!0?O:Hi(O,i===!1?1:void 0);let c,f=!1,d=!1;if(_t(e)?(c=()=>e.value,f=Qi(e)):zi(e)?(c=()=>u(e),f=!0):pe(e)?(d=!0,f=e.some(O=>zi(O)||Qi(O)),c=()=>e.map(O=>{if(_t(O))return O.value;if(zi(O))return u(O);if(xe(O))return ci(O,l,2)})):xe(e)?n?c=()=>ci(e,l,2):c=()=>(h&&h(),Dn(e,l,3,[p])):c=$t,n&&i){const O=c;c=()=>Hi(O())}let h,p=O=>{h=b.onStop=()=>{ci(O,l,4),h=b.onStop=void 0}},m;if(go)if(p=$t,n?t&&Dn(n,l,3,[c(),d?[]:void 0,p]):c(),r==="sync"){const O=Fc();m=O.__watcherHandles||(O.__watcherHandles=[])}else return $t;let y=d?new Array(e.length).fill($o):$o;const D=()=>{if(!(!b.active||!b.dirty))if(n){const O=b.run();(i||f||(d?O.some((F,L)=>fn(F,y[L])):fn(O,y)))&&(h&&h(),Dn(n,l,3,[O,y===$o?void 0:d&&y[0]===$o?[]:y,p]),y=O)}else b.run()};D.allowRecurse=!!n;let S;r==="sync"?S=D:r==="post"?S=()=>Kt(D,l&&l.suspense):(D.pre=!0,l&&(D.id=l.uid),S=()=>ul(D));const b=new Cr(c,$t,S),w=ac(),x=()=>{b.stop(),w&&rc(w.effects,b)};return n?t?D():y=b.run():r==="post"?Kt(b.run.bind(b),l&&l.suspense):b.run(),m&&m.push(x),x}function s0(e,n,t){const i=this.proxy,r=ke(e)?e.includes(".")?Pm(i,e):()=>i[e]:e.bind(i,i);let o;xe(n)?o=n:(o=n.handler,t=n);const s=Ar(this),a=mo(r,o.bind(i),t);return s(),a}function Pm(e,n){const t=n.split(".");return()=>{let i=e;for(let r=0;r{Hi(i,n,t)});else if(tp(e)){for(const i in e)Hi(e[i],n,t);for(const i of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,i)&&Hi(e[i],n,t)}return e}function Nm(e,n,t=Je){const i=Cn(),r=bt(n),o=En(n),s=Rm(e,n),a=gc((l,u)=>{let c,f=Je,d;return $c(()=>{const h=e[n];fn(c,h)&&(c=h,u())}),{get(){return l(),t.get?t.get(c):c},set(h){if(!fn(h,c)&&!(f!==Je&&fn(h,f)))return;const p=i.vnode.props;p&&(n in p||r in p||o in p)&&(`onUpdate:${n}`in p||`onUpdate:${r}`in p||`onUpdate:${o}`in p)||(c=h,u());const m=t.set?t.set(h):h;i.emit(`update:${n}`,m),fn(h,m)&&fn(h,f)&&!fn(m,d)&&u(),f=h,d=m}}});return a[Symbol.iterator]=()=>{let l=0;return{next(){return l<2?{value:l++?s||Je:a,done:!1}:{done:!0}}}},a}const Rm=(e,n)=>n==="modelValue"||n==="model-value"?e.modelModifiers:e[`${n}Modifiers`]||e[`${bt(n)}Modifiers`]||e[`${En(n)}Modifiers`];function o0(e,n,...t){if(e.isUnmounted)return;const i=e.vnode.props||Je;let r=t;const o=n.startsWith("update:"),s=o&&Rm(i,n.slice(7));s&&(s.trim&&(r=t.map(c=>ke(c)?c.trim():c)),s.number&&(r=t.map(ba)));let a,l=i[a=br(n)]||i[a=br(bt(n))];!l&&o&&(l=i[a=br(En(n))]),l&&Dn(l,e,6,r);const u=i[a+"Once"];if(u){if(!e.emitted)e.emitted={};else if(e.emitted[a])return;e.emitted[a]=!0,Dn(u,e,6,r)}}function _m(e,n,t=!1){const i=n.emitsCache,r=i.get(e);if(r!==void 0)return r;const o=e.emits;let s={},a=!1;if(!xe(e)){const l=u=>{const c=_m(u,n,!0);c&&(a=!0,it(s,c))};!t&&n.mixins.length&&n.mixins.forEach(l),e.extends&&l(e.extends),e.mixins&&e.mixins.forEach(l)}return!o&&!a?(ct(e)&&i.set(e,null),null):(pe(o)?o.forEach(l=>s[l]=null):it(s,o),ct(e)&&i.set(e,s),s)}function pl(e,n){return!e||!Nr(n)?!1:(n=n.slice(2).replace(/Once$/,""),et(e,n[0].toLowerCase()+n.slice(1))||et(e,En(n))||et(e,n))}function ra(e){const{type:n,vnode:t,proxy:i,withProxy:r,propsOptions:[o],slots:s,attrs:a,emit:l,render:u,renderCache:c,props:f,data:d,setupState:h,ctx:p,inheritAttrs:m}=e,y=zs(e);let D,S;try{if(t.shapeFlag&4){const w=r||i,x=w;D=bn(u.call(x,w,c,f,h,d,p)),S=a}else{const w=n;D=bn(w.length>1?w(f,{attrs:a,slots:s,emit:l}):w(f,null)),S=n.props?a:l0(a)}}catch(w){_s.length=0,sr(w,e,1),D=ot(Ht)}let b=D;if(S&&m!==!1){const w=Object.keys(S),{shapeFlag:x}=b;w.length&&x&7&&(o&&w.some(ic)&&(S=u0(S,o)),b=ri(b,S,!1,!0))}return t.dirs&&(b=ri(b,null,!1,!0),b.dirs=b.dirs?b.dirs.concat(t.dirs):t.dirs),t.transition&&(b.transition=t.transition),D=b,zs(y),D}function a0(e,n=!0){let t;for(let i=0;i{let n;for(const t in e)(t==="class"||t==="style"||Nr(t))&&((n||(n={}))[t]=e[t]);return n},u0=(e,n)=>{const t={};for(const i in e)(!ic(i)||!(i.slice(9)in n))&&(t[i]=e[i]);return t};function c0(e,n,t){const{props:i,children:r,component:o}=e,{props:s,children:a,patchFlag:l}=n,u=o.emitsOptions;if(n.dirs||n.transition)return!0;if(t&&l>=0){if(l&1024)return!0;if(l&16)return i?id(i,s,u):!!s;if(l&8){const c=n.dynamicProps;for(let f=0;fe.__isSuspense;let Du=0;const f0={name:"Suspense",__isSuspense:!0,process(e,n,t,i,r,o,s,a,l,u){if(e==null)d0(n,t,i,r,o,s,a,l,u);else{if(o&&o.deps>0&&!e.suspense.isInFallback){n.suspense=e.suspense,n.suspense.vnode=n,n.el=e.el;return}h0(e,n,t,i,r,s,a,l,u)}},hydrate:p0,normalize:m0},Fm=f0;function Xs(e,n){const t=e.props&&e.props[n];xe(t)&&t()}function d0(e,n,t,i,r,o,s,a,l){const{p:u,o:{createElement:c}}=l,f=c("div"),d=e.suspense=Lm(e,r,i,n,f,t,o,s,a,l);u(null,d.pendingBranch=e.ssContent,f,null,i,d,o,s),d.deps>0?(Xs(e,"onPending"),Xs(e,"onFallback"),u(null,e.ssFallback,n,t,i,null,o,s),Jr(d,e.ssFallback)):d.resolve(!1,!0)}function h0(e,n,t,i,r,o,s,a,{p:l,um:u,o:{createElement:c}}){const f=n.suspense=e.suspense;f.vnode=n,n.el=e.el;const d=n.ssContent,h=n.ssFallback,{activeBranch:p,pendingBranch:m,isInFallback:y,isHydrating:D}=f;if(m)f.pendingBranch=d,qn(d,m)?(l(m,d,f.hiddenContainer,null,r,f,o,s,a),f.deps<=0?f.resolve():y&&(D||(l(p,h,t,i,r,null,o,s,a),Jr(f,h)))):(f.pendingId=Du++,D?(f.isHydrating=!1,f.activeBranch=m):u(m,r,f),f.deps=0,f.effects.length=0,f.hiddenContainer=c("div"),y?(l(null,d,f.hiddenContainer,null,r,f,o,s,a),f.deps<=0?f.resolve():(l(p,h,t,i,r,null,o,s,a),Jr(f,h))):p&&qn(d,p)?(l(p,d,t,i,r,f,o,s,a),f.resolve(!0)):(l(null,d,f.hiddenContainer,null,r,f,o,s,a),f.deps<=0&&f.resolve()));else if(p&&qn(d,p))l(p,d,t,i,r,f,o,s,a),Jr(f,d);else if(Xs(n,"onPending"),f.pendingBranch=d,d.shapeFlag&512?f.pendingId=d.component.suspenseId:f.pendingId=Du++,l(null,d,f.hiddenContainer,null,r,f,o,s,a),f.deps<=0)f.resolve();else{const{timeout:S,pendingId:b}=f;S>0?setTimeout(()=>{f.pendingId===b&&f.fallback(h)},S):S===0&&f.fallback(h)}}function Lm(e,n,t,i,r,o,s,a,l,u,c=!1){const{p:f,m:d,um:h,n:p,o:{parentNode:m,remove:y}}=u;let D;const S=g0(e);S&&n&&n.pendingBranch&&(D=n.pendingId,n.deps++);const b=e.props?Ea(e.props.timeout):void 0,w=o,x={vnode:e,parent:n,parentComponent:t,namespace:s,container:i,hiddenContainer:r,deps:0,pendingId:Du++,timeout:typeof b=="number"?b:-1,activeBranch:null,pendingBranch:null,isInFallback:!c,isHydrating:c,isUnmounted:!1,effects:[],resolve(O=!1,F=!1){const{vnode:L,activeBranch:C,pendingBranch:I,pendingId:j,effects:R,parentComponent:_,container:V}=x;let G=!1;x.isHydrating?x.isHydrating=!1:O||(G=C&&I.transition&&I.transition.mode==="out-in",G&&(C.transition.afterLeave=()=>{j===x.pendingId&&(d(I,V,o===w?p(C):o,0),Ks(R))}),C&&(m(C.el)!==x.hiddenContainer&&(o=p(C)),h(C,_,x,!0)),G||d(I,V,o,0)),Jr(x,I),x.pendingBranch=null,x.isInFallback=!1;let $=x.parent,W=!1;for(;$;){if($.pendingBranch){$.effects.push(...R),W=!0;break}$=$.parent}!W&&!G&&Ks(R),x.effects=[],S&&n&&n.pendingBranch&&D===n.pendingId&&(n.deps--,n.deps===0&&!F&&n.resolve()),Xs(L,"onResolve")},fallback(O){if(!x.pendingBranch)return;const{vnode:F,activeBranch:L,parentComponent:C,container:I,namespace:j}=x;Xs(F,"onFallback");const R=p(L),_=()=>{x.isInFallback&&(f(null,O,I,R,C,null,j,a,l),Jr(x,O))},V=O.transition&&O.transition.mode==="out-in";V&&(L.transition.afterLeave=_),x.isInFallback=!0,h(L,C,null,!0),V||_()},move(O,F,L){x.activeBranch&&d(x.activeBranch,O,F,L),x.container=O},next(){return x.activeBranch&&p(x.activeBranch)},registerDep(O,F,L){const C=!!x.pendingBranch;C&&x.deps++;const I=O.vnode.el;O.asyncDep.catch(j=>{sr(j,O,0)}).then(j=>{if(O.isUnmounted||x.isUnmounted||x.pendingId!==O.suspenseId)return;O.asyncResolved=!0;const{vnode:R}=O;Ou(O,j,!1),I&&(R.el=I);const _=!I&&O.subTree.el;F(O,R,m(I||O.subTree.el),I?null:p(O.subTree),x,s,L),_&&y(_),jc(O,R.el),C&&--x.deps===0&&x.resolve()})},unmount(O,F){x.isUnmounted=!0,x.activeBranch&&h(x.activeBranch,t,O,F),x.pendingBranch&&h(x.pendingBranch,t,O,F)}};return x}function p0(e,n,t,i,r,o,s,a,l){const u=n.suspense=Lm(n,i,t,e.parentNode,document.createElement("div"),null,r,o,s,a,!0),c=l(e,u.pendingBranch=n.ssContent,t,u,o,s);return u.deps===0&&u.resolve(!1,!0),c}function m0(e){const{shapeFlag:n,children:t}=e,i=n&32;e.ssContent=rd(i?t.default:t),e.ssFallback=i?rd(t.fallback):ot(Ht)}function rd(e){let n;if(xe(e)){const t=xr&&e._c;t&&(e._d=!1,ae()),e=e(),t&&(e._d=!0,n=sn,$m())}return pe(e)&&(e=a0(e)),e=bn(e),n&&!e.dynamicChildren&&(e.dynamicChildren=n.filter(t=>t!==e)),e}function km(e,n){n&&n.pendingBranch?pe(e)?n.effects.push(...e):n.effects.push(e):Ks(e)}function Jr(e,n){e.activeBranch=n;const{vnode:t,parentComponent:i}=e;let r=n.el;for(;!r&&n.component;)n=n.component.subTree,r=n.el;t.el=r,i&&i.subTree===t&&(i.vnode.el=r,jc(i,r))}function g0(e){const n=e.props&&e.props.suspensible;return n!=null&&n!==!1}const tt=Symbol.for("v-fgt"),wi=Symbol.for("v-txt"),Ht=Symbol.for("v-cmt"),Zi=Symbol.for("v-stc"),_s=[];let sn=null;function ae(e=!1){_s.push(sn=e?null:[])}function $m(){_s.pop(),sn=_s[_s.length-1]||null}let xr=1;function xa(e){xr+=e,e<0&&sn&&(sn.hasOnce=!0)}function jm(e){return e.dynamicChildren=xr>0?sn||Kr:null,$m(),xr>0&&sn&&sn.push(e),e}function ge(e,n,t,i,r,o){return jm(yt(e,n,t,i,r,o,!0))}function _n(e,n,t,i,r){return jm(ot(e,n,t,i,r,!0))}function Ai(e){return e?e.__v_isVNode===!0:!1}function qn(e,n){return e.type===n.type&&e.key===n.key}function Vm(e){}const Bm=({key:e})=>e??null,sa=({ref:e,ref_key:n,ref_for:t})=>(typeof e=="number"&&(e=""+e),e!=null?ke(e)||_t(e)||xe(e)?{i:Wt,r:e,k:n,f:!!t}:e:null);function yt(e,n=null,t=null,i=0,r=null,o=e===tt?0:1,s=!1,a=!1){const l={__v_isVNode:!0,__v_skip:!0,type:e,props:n,key:n&&Bm(n),ref:n&&sa(n),scopeId:cl,slotScopeIds:null,children:t,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:o,patchFlag:i,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:Wt};return a?(Bc(l,t),o&128&&e.normalize(l)):t&&(l.shapeFlag|=ke(t)?8:16),xr>0&&!s&&sn&&(l.patchFlag>0||o&6)&&l.patchFlag!==32&&sn.push(l),l}const ot=v0;function v0(e,n=null,t=null,i=0,r=null,o=!1){if((!e||e===Zp)&&(e=Ht),Ai(e)){const a=ri(e,n,!0);return t&&Bc(a,t),xr>0&&!o&&sn&&(a.shapeFlag&6?sn[sn.indexOf(e)]=a:sn.push(a)),a.patchFlag=-2,a}if(w0(e)&&(e=e.__vccOpts),n){n=Vc(n);let{class:a,style:l}=n;a&&!ke(a)&&(n.class=Rt(a)),ct(l)&&(al(l)&&!pe(l)&&(l=it({},l)),n.style=Yt(l))}const s=ke(e)?1:wu(e)?128:Qb(e)?64:ct(e)?4:xe(e)?2:0;return yt(e,n,t,i,r,s,o,!0)}function Vc(e){return e?al(e)||ym(e)?it({},e):e:null}function ri(e,n,t=!1,i=!1){const{props:r,ref:o,patchFlag:s,children:a,transition:l}=e,u=n?Js(r||{},n):r,c={__v_isVNode:!0,__v_skip:!0,type:e.type,props:u,key:u&&Bm(u),ref:n&&n.ref?t&&o?pe(o)?o.concat(sa(n)):[o,sa(n)]:sa(n):o,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:a,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:n&&e.type!==tt?s===-1?16:s|16:s,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:l,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&ri(e.ssContent),ssFallback:e.ssFallback&&ri(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return l&&i&&xi(c,l.clone(c)),c}function Xt(e=" ",n=0){return ot(wi,null,e,n)}function Hm(e,n){const t=ot(Zi,null,e);return t.staticCount=n,t}function je(e="",n=!1){return n?(ae(),_n(Ht,null,e)):ot(Ht,null,e)}function bn(e){return e==null||typeof e=="boolean"?ot(Ht):pe(e)?ot(tt,null,e.slice()):typeof e=="object"?$i(e):ot(wi,null,String(e))}function $i(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:ri(e)}function Bc(e,n){let t=0;const{shapeFlag:i}=e;if(n==null)n=null;else if(pe(n))t=16;else if(typeof n=="object")if(i&65){const r=n.default;r&&(r._c&&(r._d=!1),Bc(e,r()),r._c&&(r._d=!0));return}else{t=32;const r=n._;!r&&!ym(n)?n._ctx=Wt:r===3&&Wt&&(Wt.slots._===1?n._=1:(n._=2,e.patchFlag|=1024))}else xe(n)?(n={default:n,_ctx:Wt},t=32):(n=String(n),i&64?(t=16,n=[Xt(n)]):t=8);e.children=n,e.shapeFlag|=t}function Js(...e){const n={};for(let t=0;tUt||Wt;let Aa,Tu;{const e=ip(),n=(t,i)=>{let r;return(r=e[t])||(r=e[t]=[]),r.push(i),o=>{r.length>1?r.forEach(s=>s(o)):r[0](o)}};Aa=n("__VUE_INSTANCE_SETTERS__",t=>Ut=t),Tu=n("__VUE_SSR_SETTERS__",t=>go=t)}const Ar=e=>{const n=Ut;return Aa(e),e.scope.on(),()=>{e.scope.off(),Aa(n)}},Cu=()=>{Ut&&Ut.scope.off(),Aa(null)};function Wm(e){return e.vnode.shapeFlag&4}let go=!1;function Km(e,n=!1,t=!1){n&&Tu(n);const{props:i,children:r}=e.vnode,o=Wm(e);Yb(e,i,o,n),Xb(e,r,t);const s=o?E0(e,n):void 0;return n&&Tu(!1),s}function E0(e,n){const t=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,vu);const{setup:i}=t;if(i){const r=e.setupContext=i.length>1?Gm(e):null,o=Ar(e);ir();const s=ci(i,e,0,[e.props,r]);if(rr(),o(),sc(s)){if(s.then(Cu,Cu),n)return s.then(a=>{Ou(e,a,n)}).catch(a=>{sr(a,e,0)});e.asyncDep=s}else Ou(e,s,n)}else zm(e,n)}function Ou(e,n,t){xe(n)?e.type.__ssrInlineRender?e.ssrRender=n:e.render=n:ct(n)&&(e.setupState=ll(n)),zm(e,t)}let Ma,xu;function Hc(e){Ma=e,xu=n=>{n.render._rc&&(n.withProxy=new Proxy(n.ctx,$b))}}const Ym=()=>!Ma;function zm(e,n,t){const i=e.type;if(!e.render){if(!n&&Ma&&!i.render){const r=i.template||Mc(e).template;if(r){const{isCustomElement:o,compilerOptions:s}=e.appContext.config,{delimiters:a,compilerOptions:l}=i,u=it(it({isCustomElement:o,delimiters:a},s),l);i.render=Ma(r,u)}}e.render=i.render||$t,xu&&xu(e)}{const r=Ar(e);ir();try{jb(e)}finally{rr(),r()}}}const S0={get(e,n){return Tn(e,"get",""),e[n]}};function Gm(e){const n=t=>{e.exposed=t||{}};return{attrs:new Proxy(e.attrs,S0),slots:e.slots,emit:e.emit,expose:n}}function vo(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(ll(dc(e.exposed)),{get(n,t){if(t in n)return n[t];if(t in Ns)return Ns[t](e)},has(n,t){return t in n||t in Ns}})):e.proxy}function Au(e,n=!0){return xe(e)?e.displayName||e.name:e.name||n&&e.__name}function w0(e){return xe(e)&&"__vccOpts"in e}const Xe=(e,n)=>Db(e,n,go);function qi(e,n,t){const i=arguments.length;return i===2?ct(n)&&!pe(n)?Ai(n)?ot(e,null,[n]):ot(e,n):ot(e,null,n):(i>3?t=Array.prototype.slice.call(arguments,2):i===3&&Ai(t)&&(t=[t]),ot(e,n,t))}function Zm(){}function Xm(e,n,t,i){const r=t[i];if(r&&Uc(r,e))return r;const o=n();return o.memo=e.slice(),o.cacheIndex=i,t[i]=o}function Uc(e,n){const t=e.memo;if(t.length!=n.length)return!1;for(let i=0;i0&&sn&&sn.push(e),!0}const Wc="3.4.34",Jm=$t,Qm=Mb,qm=Hr,eg=jp,D0={createComponentInstance:Um,setupComponent:Km,renderComponentRoot:ra,setCurrentRenderingInstance:zs,isVNode:Ai,normalizeVNode:bn,getComponentPublicInstance:vo},tg=D0,ng=null,ig=null,rg=null;/** -* @vue/runtime-dom v3.4.34 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/const T0="http://www.w3.org/2000/svg",C0="http://www.w3.org/1998/Math/MathML",vi=typeof document<"u"?document:null,sd=vi&&vi.createElement("template"),O0={insert:(e,n,t)=>{n.insertBefore(e,t||null)},remove:e=>{const n=e.parentNode;n&&n.removeChild(e)},createElement:(e,n,t,i)=>{const r=n==="svg"?vi.createElementNS(T0,e):n==="mathml"?vi.createElementNS(C0,e):t?vi.createElement(e,{is:t}):vi.createElement(e);return e==="select"&&i&&i.multiple!=null&&r.setAttribute("multiple",i.multiple),r},createText:e=>vi.createTextNode(e),createComment:e=>vi.createComment(e),setText:(e,n)=>{e.nodeValue=n},setElementText:(e,n)=>{e.textContent=n},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>vi.querySelector(e),setScopeId(e,n){e.setAttribute(n,"")},insertStaticContent(e,n,t,i,r,o){const s=t?t.previousSibling:n.lastChild;if(r&&(r===o||r.nextSibling))for(;n.insertBefore(r.cloneNode(!0),t),!(r===o||!(r=r.nextSibling)););else{sd.innerHTML=i==="svg"?`${e}`:i==="mathml"?`${e}`:e;const a=sd.content;if(i==="svg"||i==="mathml"){const l=a.firstChild;for(;l.firstChild;)a.appendChild(l.firstChild);a.removeChild(l)}n.insertBefore(a,t)}return[s?s.nextSibling:n.firstChild,t?t.previousSibling:n.lastChild]}},Ni="transition",ps="animation",es=Symbol("_vtc"),er=(e,{slots:n})=>qi(yc,og(e),n);er.displayName="Transition";const sg={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},x0=er.props=it({},dl,sg),lr=(e,n=[])=>{pe(e)?e.forEach(t=>t(...n)):e&&e(...n)},od=e=>e?pe(e)?e.some(n=>n.length>1):e.length>1:!1;function og(e){const n={};for(const R in e)R in sg||(n[R]=e[R]);if(e.css===!1)return n;const{name:t="v",type:i,duration:r,enterFromClass:o=`${t}-enter-from`,enterActiveClass:s=`${t}-enter-active`,enterToClass:a=`${t}-enter-to`,appearFromClass:l=o,appearActiveClass:u=s,appearToClass:c=a,leaveFromClass:f=`${t}-leave-from`,leaveActiveClass:d=`${t}-leave-active`,leaveToClass:h=`${t}-leave-to`}=e,p=A0(r),m=p&&p[0],y=p&&p[1],{onBeforeEnter:D,onEnter:S,onEnterCancelled:b,onLeave:w,onLeaveCancelled:x,onBeforeAppear:O=D,onAppear:F=S,onAppearCancelled:L=b}=n,C=(R,_,V)=>{Fi(R,_?c:a),Fi(R,_?u:s),V&&V()},I=(R,_)=>{R._isLeaving=!1,Fi(R,f),Fi(R,h),Fi(R,d),_&&_()},j=R=>(_,V)=>{const G=R?F:S,$=()=>C(_,R,V);lr(G,[_,$]),ad(()=>{Fi(_,R?l:o),pi(_,R?c:a),od(G)||ld(_,i,m,$)})};return it(n,{onBeforeEnter(R){lr(D,[R]),pi(R,o),pi(R,s)},onBeforeAppear(R){lr(O,[R]),pi(R,l),pi(R,u)},onEnter:j(!1),onAppear:j(!0),onLeave(R,_){R._isLeaving=!0;const V=()=>I(R,_);pi(R,f),pi(R,d),lg(),ad(()=>{R._isLeaving&&(Fi(R,f),pi(R,h),od(w)||ld(R,i,y,V))}),lr(w,[R,V])},onEnterCancelled(R){C(R,!1),lr(b,[R])},onAppearCancelled(R){C(R,!0),lr(L,[R])},onLeaveCancelled(R){I(R),lr(x,[R])}})}function A0(e){if(e==null)return null;if(ct(e))return[$l(e.enter),$l(e.leave)];{const n=$l(e);return[n,n]}}function $l(e){return Ea(e)}function pi(e,n){n.split(/\s+/).forEach(t=>t&&e.classList.add(t)),(e[es]||(e[es]=new Set)).add(n)}function Fi(e,n){n.split(/\s+/).forEach(i=>i&&e.classList.remove(i));const t=e[es];t&&(t.delete(n),t.size||(e[es]=void 0))}function ad(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let M0=0;function ld(e,n,t,i){const r=e._endId=++M0,o=()=>{r===e._endId&&i()};if(t)return setTimeout(o,t);const{type:s,timeout:a,propCount:l}=ag(e,n);if(!s)return i();const u=s+"end";let c=0;const f=()=>{e.removeEventListener(u,d),o()},d=h=>{h.target===e&&++c>=l&&f()};setTimeout(()=>{c(t[p]||"").split(", "),r=i(`${Ni}Delay`),o=i(`${Ni}Duration`),s=ud(r,o),a=i(`${ps}Delay`),l=i(`${ps}Duration`),u=ud(a,l);let c=null,f=0,d=0;n===Ni?s>0&&(c=Ni,f=s,d=o.length):n===ps?u>0&&(c=ps,f=u,d=l.length):(f=Math.max(s,u),c=f>0?s>u?Ni:ps:null,d=c?c===Ni?o.length:l.length:0);const h=c===Ni&&/\b(transform|all)(,|$)/.test(i(`${Ni}Property`).toString());return{type:c,timeout:f,propCount:d,hasTransform:h}}function ud(e,n){for(;e.lengthcd(t)+cd(e[i])))}function cd(e){return e==="auto"?0:Number(e.slice(0,-1).replace(",","."))*1e3}function lg(){return document.body.offsetHeight}function I0(e,n,t){const i=e[es];i&&(n=(n?[n,...i]:[...i]).join(" ")),n==null?e.removeAttribute("class"):t?e.setAttribute("class",n):e.className=n}const Ia=Symbol("_vod"),ug=Symbol("_vsh"),Kc={beforeMount(e,{value:n},{transition:t}){e[Ia]=e.style.display==="none"?"":e.style.display,t&&n?t.beforeEnter(e):ms(e,n)},mounted(e,{value:n},{transition:t}){t&&n&&t.enter(e)},updated(e,{value:n,oldValue:t},{transition:i}){!n!=!t&&(i?n?(i.beforeEnter(e),ms(e,!0),i.enter(e)):i.leave(e,()=>{ms(e,!1)}):ms(e,n))},beforeUnmount(e,{value:n}){ms(e,n)}};function ms(e,n){e.style.display=n?e[Ia]:"none",e[ug]=!n}function P0(){Kc.getSSRProps=({value:e})=>{if(!e)return{style:{display:"none"}}}}const cg=Symbol("");function fg(e){const n=Cn();if(!n)return;const t=n.ut=(r=e(n.proxy))=>{Array.from(document.querySelectorAll(`[data-v-owner="${n.uid}"]`)).forEach(o=>Iu(o,r))},i=()=>{const r=e(n.proxy);Mu(n.subTree,r),t(r)};or(()=>{kc(i);const r=new MutationObserver(i);r.observe(n.subTree.el.parentNode,{childList:!0}),ho(()=>r.disconnect())})}function Mu(e,n){if(e.shapeFlag&128){const t=e.suspense;e=t.activeBranch,t.pendingBranch&&!t.isHydrating&&t.effects.push(()=>{Mu(t.activeBranch,n)})}for(;e.component;)e=e.component.subTree;if(e.shapeFlag&1&&e.el)Iu(e.el,n);else if(e.type===tt)e.children.forEach(t=>Mu(t,n));else if(e.type===Zi){let{el:t,anchor:i}=e;for(;t&&(Iu(t,n),t!==i);)t=t.nextSibling}}function Iu(e,n){if(e.nodeType===1){const t=e.style;let i="";for(const r in n)t.setProperty(`--${r}`,n[r]),i+=`--${r}: ${n[r]};`;t[cg]=i}}const N0=/(^|;)\s*display\s*:/;function R0(e,n,t){const i=e.style,r=ke(t);let o=!1;if(t&&!r){if(n)if(ke(n))for(const s of n.split(";")){const a=s.slice(0,s.indexOf(":")).trim();t[a]==null&&oa(i,a,"")}else for(const s in n)t[s]==null&&oa(i,s,"");for(const s in t)s==="display"&&(o=!0),oa(i,s,t[s])}else if(r){if(n!==t){const s=i[cg];s&&(t+=";"+s),i.cssText=t,o=N0.test(t)}}else n&&e.removeAttribute("style");Ia in e&&(e[Ia]=o?i.display:"",e[ug]&&(i.display="none"))}const fd=/\s*!important$/;function oa(e,n,t){if(pe(t))t.forEach(i=>oa(e,n,i));else if(t==null&&(t=""),n.startsWith("--"))e.setProperty(n,t);else{const i=_0(e,n);fd.test(t)?e.setProperty(En(i),t.replace(fd,""),"important"):e[i]=t}}const dd=["Webkit","Moz","ms"],jl={};function _0(e,n){const t=jl[n];if(t)return t;let i=bt(n);if(i!=="filter"&&i in e)return jl[n]=i;i=nr(i);for(let r=0;rVl||(j0.then(()=>Vl=0),Vl=Date.now());function B0(e,n){const t=i=>{if(!i._vts)i._vts=Date.now();else if(i._vts<=t.attached)return;Dn(H0(i,t.value),n,5,[i])};return t.value=e,t.attached=V0(),t}function H0(e,n){if(pe(n)){const t=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{t.call(e),e._stopped=!0},n.map(i=>r=>!r._stopped&&i&&i(r))}else return n}const vd=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,U0=(e,n,t,i,r,o)=>{const s=r==="svg";n==="class"?I0(e,i,s):n==="style"?R0(e,t,i):Nr(n)?ic(n)||k0(e,n,t,i,o):(n[0]==="."?(n=n.slice(1),!0):n[0]==="^"?(n=n.slice(1),!1):W0(e,n,i,s))?(F0(e,n,i),!e.tagName.includes("-")&&(n==="value"||n==="checked"||n==="selected")&&pd(e,n,i,s,o,n!=="value")):(n==="true-value"?e._trueValue=i:n==="false-value"&&(e._falseValue=i),pd(e,n,i,s))};function W0(e,n,t,i){if(i)return!!(n==="innerHTML"||n==="textContent"||n in e&&vd(n)&&xe(t));if(n==="spellcheck"||n==="draggable"||n==="translate"||n==="form"||n==="list"&&e.tagName==="INPUT"||n==="type"&&e.tagName==="TEXTAREA")return!1;if(n==="width"||n==="height"){const r=e.tagName;if(r==="IMG"||r==="VIDEO"||r==="CANVAS"||r==="SOURCE")return!1}return vd(n)&&ke(t)?!1:n in e}/*! #__NO_SIDE_EFFECTS__ */function Yc(e,n,t){const i=_r(e,n);class r extends yo{constructor(s){super(i,s,t)}}return r.def=i,r}/*! #__NO_SIDE_EFFECTS__ */const dg=(e,n)=>Yc(e,n,Xc),K0=typeof HTMLElement<"u"?HTMLElement:class{};class yo extends K0{constructor(n,t={},i){super(),this._def=n,this._props=t,this._instance=null,this._connected=!1,this._resolved=!1,this._numberProps=null,this._ob=null,this.shadowRoot&&i?i(this._createVNode(),this.shadowRoot):(this.attachShadow({mode:"open"}),this._def.__asyncLoader||this._resolveProps(this._def))}connectedCallback(){this._connected=!0,this._instance||(this._resolved?this._update():this._resolveDef())}disconnectedCallback(){this._connected=!1,cn(()=>{this._connected||(this._ob&&(this._ob.disconnect(),this._ob=null),Ra(null,this.shadowRoot),this._instance=null)})}_resolveDef(){this._resolved=!0;for(let i=0;i{for(const r of i)this._setAttr(r.attributeName)}),this._ob.observe(this,{attributes:!0});const n=(i,r=!1)=>{const{props:o,styles:s}=i;let a;if(o&&!pe(o))for(const l in o){const u=o[l];(u===Number||u&&u.type===Number)&&(l in this._props&&(this._props[l]=Ea(this._props[l])),(a||(a=Object.create(null)))[bt(l)]=!0)}this._numberProps=a,r&&this._resolveProps(i),this._applyStyles(s),this._update()},t=this._def.__asyncLoader;t?t().then(i=>n(i,!0)):n(this._def)}_resolveProps(n){const{props:t}=n,i=pe(t)?t:Object.keys(t||{});for(const r of Object.keys(this))r[0]!=="_"&&i.includes(r)&&this._setProp(r,this[r],!0,!1);for(const r of i.map(bt))Object.defineProperty(this,r,{get(){return this._getProp(r)},set(o){this._setProp(r,o)}})}_setAttr(n){let t=this.hasAttribute(n)?this.getAttribute(n):void 0;const i=bt(n);this._numberProps&&this._numberProps[i]&&(t=Ea(t)),this._setProp(i,t,!1)}_getProp(n){return this._props[n]}_setProp(n,t,i=!0,r=!0){t!==this._props[n]&&(this._props[n]=t,r&&this._instance&&this._update(),i&&(t===!0?this.setAttribute(En(n),""):typeof t=="string"||typeof t=="number"?this.setAttribute(En(n),t+""):t||this.removeAttribute(En(n))))}_update(){Ra(this._createVNode(),this.shadowRoot)}_createVNode(){const n=ot(this._def,it({},this._props));return this._instance||(n.ce=t=>{this._instance=t,t.isCE=!0;const i=(o,s)=>{this.dispatchEvent(new CustomEvent(o,{detail:s}))};t.emit=(o,...s)=>{i(o,s),En(o)!==o&&i(En(o),s)};let r=this;for(;r=r&&(r.parentNode||r.host);)if(r instanceof yo){t.parent=r._instance,t.provides=r._instance.provides;break}}),n}_applyStyles(n){n&&n.forEach(t=>{const i=document.createElement("style");i.textContent=t,this.shadowRoot.appendChild(i)})}}function hg(e="$style"){{const n=Cn();if(!n)return Je;const t=n.type.__cssModules;if(!t)return Je;const i=t[e];return i||Je}}const pg=new WeakMap,mg=new WeakMap,Pa=Symbol("_moveCb"),yd=Symbol("_enterCb"),gg={name:"TransitionGroup",props:it({},x0,{tag:String,moveClass:String}),setup(e,{slots:n}){const t=Cn(),i=fl();let r,o;return fo(()=>{if(!r.length)return;const s=e.moveClass||`${e.name||"v"}-move`;if(!X0(r[0].el,t.vnode.el,s))return;r.forEach(z0),r.forEach(G0);const a=r.filter(Z0);lg(),a.forEach(l=>{const u=l.el,c=u.style;pi(u,s),c.transform=c.webkitTransform=c.transitionDuration="";const f=u[Pa]=d=>{d&&d.target!==u||(!d||/transform$/.test(d.propertyName))&&(u.removeEventListener("transitionend",f),u[Pa]=null,Fi(u,s))};u.addEventListener("transitionend",f)})}),()=>{const s=Ge(e),a=og(s);let l=s.tag||tt;if(r=[],o)for(let u=0;udelete e.mode;gg.props;const zc=gg;function z0(e){const n=e.el;n[Pa]&&n[Pa](),n[yd]&&n[yd]()}function G0(e){mg.set(e,e.el.getBoundingClientRect())}function Z0(e){const n=pg.get(e),t=mg.get(e),i=n.left-t.left,r=n.top-t.top;if(i||r){const o=e.el.style;return o.transform=o.webkitTransform=`translate(${i}px,${r}px)`,o.transitionDuration="0s",e}}function X0(e,n,t){const i=e.cloneNode(),r=e[es];r&&r.forEach(a=>{a.split(/\s+/).forEach(l=>l&&i.classList.remove(l))}),t.split(/\s+/).forEach(a=>a&&i.classList.add(a)),i.style.display="none";const o=n.nodeType===1?n:n.parentNode;o.appendChild(i);const{hasTransform:s}=ag(i);return o.removeChild(i),s}const tr=e=>{const n=e.props["onUpdate:modelValue"]||!1;return pe(n)?t=>zr(n,t):n};function J0(e){e.target.composing=!0}function bd(e){const n=e.target;n.composing&&(n.composing=!1,n.dispatchEvent(new Event("input")))}const Kn=Symbol("_assign"),Qs={created(e,{modifiers:{lazy:n,trim:t,number:i}},r){e[Kn]=tr(r);const o=i||r.props&&r.props.type==="number";bi(e,n?"change":"input",s=>{if(s.target.composing)return;let a=e.value;t&&(a=a.trim()),o&&(a=ba(a)),e[Kn](a)}),t&&bi(e,"change",()=>{e.value=e.value.trim()}),n||(bi(e,"compositionstart",J0),bi(e,"compositionend",bd),bi(e,"change",bd))},mounted(e,{value:n}){e.value=n??""},beforeUpdate(e,{value:n,oldValue:t,modifiers:{lazy:i,trim:r,number:o}},s){if(e[Kn]=tr(s),e.composing)return;const a=(o||e.type==="number")&&!/^0\d/.test(e.value)?ba(e.value):e.value,l=n??"";a!==l&&(document.activeElement===e&&e.type!=="range"&&(i&&n===t||r&&e.value.trim()===l)||(e.value=l))}},ml={deep:!0,created(e,n,t){e[Kn]=tr(t),bi(e,"change",()=>{const i=e._modelValue,r=ts(e),o=e.checked,s=e[Kn];if(pe(i)){const a=nl(i,r),l=a!==-1;if(o&&!l)s(i.concat(r));else if(!o&&l){const u=[...i];u.splice(a,1),s(u)}}else if(Rr(i)){const a=new Set(i);o?a.add(r):a.delete(r),s(a)}else s(vg(e,o))})},mounted:Ed,beforeUpdate(e,n,t){e[Kn]=tr(t),Ed(e,n,t)}};function Ed(e,{value:n,oldValue:t},i){e._modelValue=n,pe(n)?e.checked=nl(n,i.props.value)>-1:Rr(n)?e.checked=n.has(i.props.value):n!==t&&(e.checked=Ji(n,vg(e,!0)))}const gl={created(e,{value:n},t){e.checked=Ji(n,t.props.value),e[Kn]=tr(t),bi(e,"change",()=>{e[Kn](ts(e))})},beforeUpdate(e,{value:n,oldValue:t},i){e[Kn]=tr(i),n!==t&&(e.checked=Ji(n,i.props.value))}},Gc={deep:!0,created(e,{value:n,modifiers:{number:t}},i){const r=Rr(n);bi(e,"change",()=>{const o=Array.prototype.filter.call(e.options,s=>s.selected).map(s=>t?ba(ts(s)):ts(s));e[Kn](e.multiple?r?new Set(o):o:o[0]),e._assigning=!0,cn(()=>{e._assigning=!1})}),e[Kn]=tr(i)},mounted(e,{value:n,modifiers:{number:t}}){Sd(e,n)},beforeUpdate(e,n,t){e[Kn]=tr(t)},updated(e,{value:n,modifiers:{number:t}}){e._assigning||Sd(e,n)}};function Sd(e,n,t){const i=e.multiple,r=pe(n);if(!(i&&!r&&!Rr(n))){for(let o=0,s=e.options.length;oString(c)===String(l)):a.selected=nl(n,l)>-1}else a.selected=n.has(l);else if(Ji(ts(a),n)){e.selectedIndex!==o&&(e.selectedIndex=o);return}}!i&&e.selectedIndex!==-1&&(e.selectedIndex=-1)}}function ts(e){return"_value"in e?e._value:e.value}function vg(e,n){const t=n?"_trueValue":"_falseValue";return t in e?e[t]:n}const Zc={created(e,n,t){jo(e,n,t,null,"created")},mounted(e,n,t){jo(e,n,t,null,"mounted")},beforeUpdate(e,n,t,i){jo(e,n,t,i,"beforeUpdate")},updated(e,n,t,i){jo(e,n,t,i,"updated")}};function yg(e,n){switch(e){case"SELECT":return Gc;case"TEXTAREA":return Qs;default:switch(n){case"checkbox":return ml;case"radio":return gl;default:return Qs}}}function jo(e,n,t,i,r){const s=yg(e.tagName,t.props&&t.props.type)[r];s&&s(e,n,t,i)}function Q0(){Qs.getSSRProps=({value:e})=>({value:e}),gl.getSSRProps=({value:e},n)=>{if(n.props&&Ji(n.props.value,e))return{checked:!0}},ml.getSSRProps=({value:e},n)=>{if(pe(e)){if(n.props&&nl(e,n.props.value)>-1)return{checked:!0}}else if(Rr(e)){if(n.props&&e.has(n.props.value))return{checked:!0}}else if(e)return{checked:!0}},Zc.getSSRProps=(e,n)=>{if(typeof n.type!="string")return;const t=yg(n.type.toUpperCase(),n.props&&n.props.type);if(t.getSSRProps)return t.getSSRProps(e,n)}}const q0=["ctrl","shift","alt","meta"],eE={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,n)=>q0.some(t=>e[`${t}Key`]&&!n.includes(t))},ji=(e,n)=>{const t=e._withMods||(e._withMods={}),i=n.join(".");return t[i]||(t[i]=(r,...o)=>{for(let s=0;s{const t=e._withKeys||(e._withKeys={}),i=n.join(".");return t[i]||(t[i]=r=>{if(!("key"in r))return;const o=En(r.key);if(n.some(s=>s===o||tE[s]===o))return e(r)})},bg=it({patchProp:U0},O0);let Fs,wd=!1;function Eg(){return Fs||(Fs=Pc(bg))}function Sg(){return Fs=wd?Fs:Nc(bg),wd=!0,Fs}const Ra=(...e)=>{Eg().render(...e)},Xc=(...e)=>{Sg().hydrate(...e)},Jc=(...e)=>{const n=Eg().createApp(...e),{mount:t}=n;return n.mount=i=>{const r=Tg(i);if(!r)return;const o=n._component;!xe(o)&&!o.render&&!o.template&&(o.template=r.innerHTML),r.innerHTML="";const s=t(r,!1,Dg(r));return r instanceof Element&&(r.removeAttribute("v-cloak"),r.setAttribute("data-v-app","")),s},n},wg=(...e)=>{const n=Sg().createApp(...e),{mount:t}=n;return n.mount=i=>{const r=Tg(i);if(r)return t(r,!0,Dg(r))},n};function Dg(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function Tg(e){return ke(e)?document.querySelector(e):e}let Dd=!1;const Cg=()=>{Dd||(Dd=!0,Q0(),P0())},nE=Object.freeze(Object.defineProperty({__proto__:null,BaseTransition:yc,BaseTransitionPropsValidators:dl,Comment:Ht,DeprecationTypes:rg,EffectScope:il,ErrorCodes:Fp,ErrorTypeStrings:Qm,Fragment:tt,KeepAlive:zp,ReactiveEffect:Cr,Static:Zi,Suspense:Fm,Teleport:Om,Text:wi,TrackOpTypes:Np,Transition:er,TransitionGroup:zc,TriggerOpTypes:Rp,VueElement:yo,assertNumber:_p,callWithAsyncErrorHandling:Dn,callWithErrorHandling:ci,camelize:bt,capitalize:nr,cloneVNode:ri,compatUtils:ig,computed:Xe,createApp:Jc,createBlock:_n,createCommentVNode:je,createElementBlock:ge,createElementVNode:yt,createHydrationRenderer:Nc,createPropsRestProxy:fm,createRenderer:Pc,createSSRApp:wg,createSlots:Gs,createStaticVNode:Hm,createTextVNode:Xt,createVNode:ot,customRef:gc,defineAsyncComponent:Yp,defineComponent:_r,defineCustomElement:Yc,defineEmits:em,defineExpose:tm,defineModel:rm,defineOptions:nm,defineProps:qp,defineSSRCustomElement:dg,defineSlots:im,devtools:qm,effect:dp,effectScope:lp,getCurrentInstance:Cn,getCurrentScope:ac,getTransitionRawChildren:uo,guardReactiveProps:Vc,h:qi,handleError:sr,hasInjectionContext:mm,hydrate:Xc,initCustomFormatter:Zm,initDirectivesForSSR:Cg,inject:Gi,isMemoSame:Uc,isProxy:al,isReactive:zi,isReadonly:Oi,isRef:_t,isRuntimeOnly:Ym,isShallow:Qi,isVNode:Ai,markRaw:dc,mergeDefaults:um,mergeModels:cm,mergeProps:Js,nextTick:cn,normalizeClass:Rt,normalizeProps:Sa,normalizeStyle:Yt,onActivated:bc,onBeforeMount:Sc,onBeforeUnmount:us,onBeforeUpdate:wc,onDeactivated:Ec,onErrorCaptured:Oc,onMounted:or,onRenderTracked:Cc,onRenderTriggered:Tc,onScopeDispose:cp,onServerPrefetch:Dc,onUnmounted:ho,onUpdated:fo,openBlock:ae,popScopeId:Bp,provide:po,proxyRefs:ll,pushScopeId:Vp,queuePostFlushCb:Ks,reactive:Ci,readonly:lo,ref:Jt,registerRuntimeCompiler:Hc,render:Ra,renderList:dn,renderSlot:qe,resolveComponent:ui,resolveDirective:Xp,resolveDynamicComponent:cs,resolveFilter:ng,resolveTransitionHooks:Or,setBlockTracking:xa,setDevtoolsHook:eg,setTransitionHooks:xi,shallowReactive:fc,shallowReadonly:Op,shallowRef:mc,ssrContextKey:_c,ssrUtils:tg,stop:hp,toDisplayString:vt,toHandlerKey:br,toHandlers:Qp,toRaw:Ge,toRef:yi,toRefs:Ip,toValue:We,transformVNodeArgs:Vm,triggerRef:Mp,unref:ut,useAttrs:am,useCssModule:hg,useCssVars:fg,useModel:Nm,useSSRContext:Fc,useSlots:om,useTransitionState:fl,vModelCheckbox:ml,vModelDynamic:Zc,vModelRadio:gl,vModelSelect:Gc,vModelText:Qs,vShow:Kc,version:Wc,warn:Jm,watch:Fn,watchEffect:Lc,watchPostEffect:kc,watchSyncEffect:$c,withAsyncContext:dm,withCtx:pt,withDefaults:sm,withDirectives:Up,withKeys:Na,withMemo:Xm,withModifiers:ji,withScopeId:Hp},Symbol.toStringTag,{value:"Module"}));/** -* @vue/compiler-core v3.4.34 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/const qs=Symbol(""),Ls=Symbol(""),Qc=Symbol(""),_a=Symbol(""),Og=Symbol(""),Mr=Symbol(""),xg=Symbol(""),Ag=Symbol(""),qc=Symbol(""),ef=Symbol(""),bo=Symbol(""),tf=Symbol(""),Mg=Symbol(""),nf=Symbol(""),rf=Symbol(""),sf=Symbol(""),of=Symbol(""),af=Symbol(""),lf=Symbol(""),Ig=Symbol(""),Pg=Symbol(""),vl=Symbol(""),Fa=Symbol(""),uf=Symbol(""),cf=Symbol(""),eo=Symbol(""),Eo=Symbol(""),ff=Symbol(""),Pu=Symbol(""),iE=Symbol(""),Nu=Symbol(""),La=Symbol(""),rE=Symbol(""),sE=Symbol(""),df=Symbol(""),oE=Symbol(""),aE=Symbol(""),hf=Symbol(""),Ng=Symbol(""),ns={[qs]:"Fragment",[Ls]:"Teleport",[Qc]:"Suspense",[_a]:"KeepAlive",[Og]:"BaseTransition",[Mr]:"openBlock",[xg]:"createBlock",[Ag]:"createElementBlock",[qc]:"createVNode",[ef]:"createElementVNode",[bo]:"createCommentVNode",[tf]:"createTextVNode",[Mg]:"createStaticVNode",[nf]:"resolveComponent",[rf]:"resolveDynamicComponent",[sf]:"resolveDirective",[of]:"resolveFilter",[af]:"withDirectives",[lf]:"renderList",[Ig]:"renderSlot",[Pg]:"createSlots",[vl]:"toDisplayString",[Fa]:"mergeProps",[uf]:"normalizeClass",[cf]:"normalizeStyle",[eo]:"normalizeProps",[Eo]:"guardReactiveProps",[ff]:"toHandlers",[Pu]:"camelize",[iE]:"capitalize",[Nu]:"toHandlerKey",[La]:"setBlockTracking",[rE]:"pushScopeId",[sE]:"popScopeId",[df]:"withCtx",[oE]:"unref",[aE]:"isRef",[hf]:"withMemo",[Ng]:"isMemoSame"};function lE(e){Object.getOwnPropertySymbols(e).forEach(n=>{ns[n]=e[n]})}const $n={start:{line:1,column:1,offset:0},end:{line:1,column:1,offset:0},source:""};function uE(e,n=""){return{type:0,source:n,children:e,helpers:new Set,components:[],directives:[],hoists:[],imports:[],cached:0,temps:0,codegenNode:void 0,loc:$n}}function to(e,n,t,i,r,o,s,a=!1,l=!1,u=!1,c=$n){return e&&(a?(e.helper(Mr),e.helper(ss(e.inSSR,u))):e.helper(rs(e.inSSR,u)),s&&e.helper(af)),{type:13,tag:n,props:t,children:i,patchFlag:r,dynamicProps:o,directives:s,isBlock:a,disableTracking:l,isComponent:u,loc:c}}function So(e,n=$n){return{type:17,loc:n,elements:e}}function Un(e,n=$n){return{type:15,loc:n,properties:e}}function Ft(e,n){return{type:16,loc:$n,key:ke(e)?Ve(e,!0):e,value:n}}function Ve(e,n=!1,t=$n,i=0){return{type:4,loc:t,content:e,isStatic:n,constType:n?3:i}}function ti(e,n=$n){return{type:8,loc:n,children:e}}function Bt(e,n=[],t=$n){return{type:14,loc:t,callee:e,arguments:n}}function is(e,n=void 0,t=!1,i=!1,r=$n){return{type:18,params:e,returns:n,newline:t,isSlot:i,loc:r}}function Ru(e,n,t,i=!0){return{type:19,test:e,consequent:n,alternate:t,newline:i,loc:$n}}function cE(e,n,t=!1){return{type:20,index:e,value:n,isVOnce:t,loc:$n}}function fE(e){return{type:21,body:e,loc:$n}}function rs(e,n){return e||n?qc:ef}function ss(e,n){return e||n?xg:Ag}function pf(e,{helper:n,removeHelper:t,inSSR:i}){e.isBlock||(e.isBlock=!0,t(rs(i,e.isComponent)),n(Mr),n(ss(i,e.isComponent)))}const Td=new Uint8Array([123,123]),Cd=new Uint8Array([125,125]);function Od(e){return e>=97&&e<=122||e>=65&&e<=90}function Rn(e){return e===32||e===10||e===9||e===12||e===13}function Ri(e){return e===47||e===62||Rn(e)}function ka(e){const n=new Uint8Array(e.length);for(let t=0;t=0;r--){const o=this.newlines[r];if(n>o){t=r+2,i=n-o;break}}return{column:i,line:t,offset:n}}peek(){return this.buffer.charCodeAt(this.index+1)}stateText(n){n===60?(this.index>this.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=5,this.sectionStart=this.index):!this.inVPre&&n===this.delimiterOpen[0]&&(this.state=2,this.delimiterIndex=0,this.stateInterpolationOpen(n))}stateInterpolationOpen(n){if(n===this.delimiterOpen[this.delimiterIndex])if(this.delimiterIndex===this.delimiterOpen.length-1){const t=this.index+1-this.delimiterOpen.length;t>this.sectionStart&&this.cbs.ontext(this.sectionStart,t),this.state=3,this.sectionStart=t}else this.delimiterIndex++;else this.inRCDATA?(this.state=32,this.stateInRCDATA(n)):(this.state=1,this.stateText(n))}stateInterpolation(n){n===this.delimiterClose[0]&&(this.state=4,this.delimiterIndex=0,this.stateInterpolationClose(n))}stateInterpolationClose(n){n===this.delimiterClose[this.delimiterIndex]?this.delimiterIndex===this.delimiterClose.length-1?(this.cbs.oninterpolation(this.sectionStart,this.index+1),this.inRCDATA?this.state=32:this.state=1,this.sectionStart=this.index+1):this.delimiterIndex++:(this.state=3,this.stateInterpolation(n))}stateSpecialStartSequence(n){const t=this.sequenceIndex===this.currentSequence.length;if(!(t?Ri(n):(n|32)===this.currentSequence[this.sequenceIndex]))this.inRCDATA=!1;else if(!t){this.sequenceIndex++;return}this.sequenceIndex=0,this.state=6,this.stateInTagName(n)}stateInRCDATA(n){if(this.sequenceIndex===this.currentSequence.length){if(n===62||Rn(n)){const t=this.index-this.currentSequence.length;if(this.sectionStart=n||(this.state===28?this.currentSequence===Qt.CdataEnd?this.cbs.oncdata(this.sectionStart,n):this.cbs.oncomment(this.sectionStart,n):this.state===6||this.state===11||this.state===18||this.state===17||this.state===12||this.state===13||this.state===14||this.state===15||this.state===16||this.state===20||this.state===19||this.state===21||this.state===9||this.cbs.ontext(this.sectionStart,n))}emitCodePoint(n,t){}}function xd(e,{compatConfig:n}){const t=n&&n[e];return e==="MODE"?t||3:t}function Dr(e,n){const t=xd("MODE",n),i=xd(e,n);return t===3?i===!0:i!==!1}function no(e,n,t,...i){return Dr(e,n)}function mf(e){throw e}function Rg(e){}function Dt(e,n,t,i){const r=`https://vuejs.org/error-reference/#compiler-${e}`,o=new SyntaxError(String(r));return o.code=e,o.loc=n,o}const wn=e=>e.type===4&&e.isStatic;function _g(e){switch(e){case"Teleport":case"teleport":return Ls;case"Suspense":case"suspense":return Qc;case"KeepAlive":case"keep-alive":return _a;case"BaseTransition":case"base-transition":return Og}}const hE=/^\d|[^\$\w\xA0-\uFFFF]/,gf=e=>!hE.test(e),pE=/[A-Za-z_$\xA0-\uFFFF]/,mE=/[\.\?\w$\xA0-\uFFFF]/,gE=/\s+[.[]\s*|\s*[.[]\s+/g,vE=e=>{e=e.trim().replace(gE,s=>s.trim());let n=0,t=[],i=0,r=0,o=null;for(let s=0;sn.type===7&&n.name==="bind"&&(!n.arg||n.arg.type!==4||!n.arg.isStatic))}function Bl(e){return e.type===5||e.type===2}function bE(e){return e.type===7&&e.name==="slot"}function $a(e){return e.type===1&&e.tagType===3}function ja(e){return e.type===1&&e.tagType===2}const EE=new Set([eo,Eo]);function Lg(e,n=[]){if(e&&!ke(e)&&e.type===14){const t=e.callee;if(!ke(t)&&EE.has(t))return Lg(e.arguments[0],n.concat(e))}return[e,n]}function Va(e,n,t){let i,r=e.type===13?e.props:e.arguments[2],o=[],s;if(r&&!ke(r)&&r.type===14){const a=Lg(r);r=a[0],o=a[1],s=o[o.length-1]}if(r==null||ke(r))i=Un([n]);else if(r.type===14){const a=r.arguments[0];!ke(a)&&a.type===15?Ad(n,a)||a.properties.unshift(n):r.callee===ff?i=Bt(t.helper(Fa),[Un([n]),r]):r.arguments.unshift(Un([n])),!i&&(i=r)}else r.type===15?(Ad(n,r)||r.properties.unshift(n),i=r):(i=Bt(t.helper(Fa),[Un([n]),r]),s&&s.callee===Eo&&(s=o[o.length-2]));e.type===13?s?s.arguments[0]=i:e.props=i:s?s.arguments[0]=i:e.arguments[2]=i}function Ad(e,n){let t=!1;if(e.key.type===4){const i=e.key.content;t=n.properties.some(r=>r.key.type===4&&r.key.content===i)}return t}function io(e,n){return`_${n}_${e.replace(/[^\w]/g,(t,i)=>t==="-"?"_":e.charCodeAt(i).toString())}`}function SE(e){return e.type===14&&e.callee===hf?e.arguments[1].returns:e}const wE=/([\s\S]*?)\s+(?:in|of)\s+(\S[\s\S]*)/,kg={parseMode:"base",ns:0,delimiters:["{{","}}"],getNamespace:()=>0,isVoidTag:ia,isPreTag:ia,isCustomElement:ia,onError:mf,onWarn:Rg,comments:!1,prefixIdentifiers:!1};let st=kg,ro=null,Di="",en=null,Ze=null,gn="",mi=-1,fr=-1,Ba=0,Vi=!1,_u=null;const St=[],Nt=new dE(St,{onerr:hi,ontext(e,n){Vo(Zt(e,n),e,n)},ontextentity(e,n,t){Vo(e,n,t)},oninterpolation(e,n){if(Vi)return Vo(Zt(e,n),e,n);let t=e+Nt.delimiterOpen.length,i=n-Nt.delimiterClose.length;for(;Rn(Di.charCodeAt(t));)t++;for(;Rn(Di.charCodeAt(i-1));)i--;let r=Zt(t,i);r.includes("&")&&(r=st.decodeEntities(r,!1)),Fu({type:5,content:la(r,!1,Vt(t,i)),loc:Vt(e,n)})},onopentagname(e,n){const t=Zt(e,n);en={type:1,tag:t,ns:st.getNamespace(t,St[0],st.ns),tagType:0,props:[],children:[],loc:Vt(e-1,n),codegenNode:void 0}},onopentagend(e){Id(e)},onclosetag(e,n){const t=Zt(e,n);if(!st.isVoidTag(t)){let i=!1;for(let r=0;r0&&hi(24,St[0].loc.start.offset);for(let s=0;s<=r;s++){const a=St.shift();aa(a,n,s(i.type===7?i.rawName:i.name)===t)&&hi(2,n)},onattribend(e,n){if(en&&Ze){if(vr(Ze.loc,n),e!==0)if(gn.includes("&")&&(gn=st.decodeEntities(gn,!0)),Ze.type===6)Ze.name==="class"&&(gn=Vg(gn).trim()),e===1&&!gn&&hi(13,n),Ze.value={type:2,content:gn,loc:e===1?Vt(mi,fr):Vt(mi-1,fr+1)},Nt.inSFCRoot&&en.tag==="template"&&Ze.name==="lang"&&gn&&gn!=="html"&&Nt.enterRCDATA(ka("-1&&no("COMPILER_V_BIND_SYNC",st,Ze.loc,Ze.rawName)&&(Ze.name="model",Ze.modifiers.splice(i,1))}(Ze.type!==7||Ze.name!=="pre")&&en.props.push(Ze)}gn="",mi=fr=-1},oncomment(e,n){st.comments&&Fu({type:3,content:Zt(e,n),loc:Vt(e-4,n+3)})},onend(){const e=Di.length;for(let n=0;n{const p=n.start.offset+d,m=p+f.length;return la(f,!1,Vt(p,m),0,h?1:0)},a={source:s(o.trim(),t.indexOf(o,r.length)),value:void 0,key:void 0,index:void 0,finalized:!1};let l=r.trim().replace(DE,"").trim();const u=r.indexOf(l),c=l.match(Md);if(c){l=l.replace(Md,"").trim();const f=c[1].trim();let d;if(f&&(d=t.indexOf(f,u+l.length),a.key=s(f,d,!0)),c[2]){const h=c[2].trim();h&&(a.index=s(h,t.indexOf(h,a.key?d+f.length:u+l.length),!0))}}return l&&(a.value=s(l,u,!0)),a}function Zt(e,n){return Di.slice(e,n)}function Id(e){Nt.inSFCRoot&&(en.innerLoc=Vt(e+1,e+1)),Fu(en);const{tag:n,ns:t}=en;t===0&&st.isPreTag(n)&&Ba++,st.isVoidTag(n)?aa(en,e):(St.unshift(en),(t===1||t===2)&&(Nt.inXML=!0)),en=null}function Vo(e,n,t){{const o=St[0]&&St[0].tag;o!=="script"&&o!=="style"&&e.includes("&")&&(e=st.decodeEntities(e,!1))}const i=St[0]||ro,r=i.children[i.children.length-1];r&&r.type===2?(r.content+=e,vr(r.loc,t)):i.children.push({type:2,content:e,loc:Vt(n,t)})}function aa(e,n,t=!1){t?vr(e.loc,$g(n,60)):vr(e.loc,CE(n,62)+1),Nt.inSFCRoot&&(e.children.length?e.innerLoc.end=it({},e.children[e.children.length-1].loc.end):e.innerLoc.end=it({},e.innerLoc.start),e.innerLoc.source=Zt(e.innerLoc.start.offset,e.innerLoc.end.offset));const{tag:i,ns:r}=e;Vi||(i==="slot"?e.tagType=2:Pd(e)?e.tagType=3:xE(e)&&(e.tagType=1)),Nt.inRCDATA||(e.children=jg(e.children,e.tag)),r===0&&st.isPreTag(i)&&Ba--,_u===e&&(Vi=Nt.inVPre=!1,_u=null),Nt.inXML&&(St[0]?St[0].ns:st.ns)===0&&(Nt.inXML=!1);{const o=e.props;if(!Nt.inSFCRoot&&Dr("COMPILER_NATIVE_TEMPLATE",st)&&e.tag==="template"&&!Pd(e)){const a=St[0]||ro,l=a.children.indexOf(e);a.children.splice(l,1,...e.children)}const s=o.find(a=>a.type===6&&a.name==="inline-template");s&&no("COMPILER_INLINE_TEMPLATE",st,s.loc)&&e.children.length&&(s.value={type:2,content:Zt(e.children[0].loc.start.offset,e.children[e.children.length-1].loc.end.offset),loc:s.loc})}}function CE(e,n){let t=e;for(;Di.charCodeAt(t)!==n&&t=0;)t--;return t}const OE=new Set(["if","else","else-if","for","slot"]);function Pd({tag:e,props:n}){if(e==="template"){for(let t=0;t64&&e<91}const ME=/\r\n/g;function jg(e,n){const t=st.whitespace!=="preserve";let i=!1;for(let r=0;r0){if(l>=2){a.codegenNode.patchFlag=-1,a.codegenNode=n.hoist(a.codegenNode),o++;continue}}else{const u=a.codegenNode;if(u.type===13){const c=u.patchFlag;if((c===void 0||c===512||c===1)&&Ug(a,n)>=2){const f=Wg(a);f&&(u.props=n.hoist(f))}u.dynamicProps&&(u.dynamicProps=n.hoist(u.dynamicProps))}}}if(a.type===1){const l=a.tagType===1;l&&n.scopes.vSlot++,ua(a,n),l&&n.scopes.vSlot--}else if(a.type===11)ua(a,n,a.children.length===1);else if(a.type===9)for(let l=0;l1)for(let l=0;lj&&(L.childIndex--,L.onNodeRemoved()),L.parent.children.splice(j,1)},onNodeRemoved:$t,addIdentifiers(C){},removeIdentifiers(C){},hoist(C){ke(C)&&(C=Ve(C)),L.hoists.push(C);const I=Ve(`_hoisted_${L.hoists.length}`,!1,C.loc,2);return I.hoisted=C,I},cache(C,I=!1){return cE(L.cached++,C,I)}};return L.filters=new Set,L}function $E(e,n){const t=kE(e,n);bl(e,t),n.hoistStatic&&FE(e,t),n.ssr||jE(e,t),e.helpers=new Set([...t.helpers.keys()]),e.components=[...t.components],e.directives=[...t.directives],e.imports=t.imports,e.hoists=t.hoists,e.temps=t.temps,e.cached=t.cached,e.transformed=!0,e.filters=[...t.filters]}function jE(e,n){const{helper:t}=n,{children:i}=e;if(i.length===1){const r=i[0];if(Bg(e,r)&&r.codegenNode){const o=r.codegenNode;o.type===13&&pf(o,n),e.codegenNode=o}else e.codegenNode=r}else if(i.length>1){let r=64;e.codegenNode=to(n,t(qs),void 0,e.children,r,void 0,void 0,!0,void 0,!1)}}function VE(e,n){let t=0;const i=()=>{t--};for(;ti===e:i=>e.test(i);return(i,r)=>{if(i.type===1){const{props:o}=i;if(i.tagType===3&&o.some(bE))return;const s=[];for(let a=0;a`${ns[e]}: _${ns[e]}`;function BE(e,{mode:n="function",prefixIdentifiers:t=n==="module",sourceMap:i=!1,filename:r="template.vue.html",scopeId:o=null,optimizeImports:s=!1,runtimeGlobalName:a="Vue",runtimeModuleName:l="vue",ssrRuntimeModuleName:u="vue/server-renderer",ssr:c=!1,isTS:f=!1,inSSR:d=!1}){const h={mode:n,prefixIdentifiers:t,sourceMap:i,filename:r,scopeId:o,optimizeImports:s,runtimeGlobalName:a,runtimeModuleName:l,ssrRuntimeModuleName:u,ssr:c,isTS:f,inSSR:d,source:e.source,code:"",column:1,line:1,offset:0,indentLevel:0,pure:!1,map:void 0,helper(m){return`_${ns[m]}`},push(m,y=-2,D){h.code+=m},indent(){p(++h.indentLevel)},deindent(m=!1){m?--h.indentLevel:p(--h.indentLevel)},newline(){p(h.indentLevel)}};function p(m){h.push(` -`+" ".repeat(m),0)}return h}function HE(e,n={}){const t=BE(e,n);n.onContextCreated&&n.onContextCreated(t);const{mode:i,push:r,prefixIdentifiers:o,indent:s,deindent:a,newline:l,scopeId:u,ssr:c}=t,f=Array.from(e.helpers),d=f.length>0,h=!o&&i!=="module";UE(e,t);const m=c?"ssrRender":"render",D=(c?["_ctx","_push","_parent","_attrs"]:["_ctx","_cache"]).join(", ");if(r(`function ${m}(${D}) {`),s(),h&&(r("with (_ctx) {"),s(),d&&(r(`const { ${f.map(Yg).join(", ")} } = _Vue -`,-1),l())),e.components.length&&(Hl(e.components,"component",t),(e.directives.length||e.temps>0)&&l()),e.directives.length&&(Hl(e.directives,"directive",t),e.temps>0&&l()),e.filters&&e.filters.length&&(l(),Hl(e.filters,"filter",t),l()),e.temps>0){r("let ");for(let S=0;S0?", ":""}_temp${S}`)}return(e.components.length||e.directives.length||e.temps)&&(r(` -`,0),l()),c||r("return "),e.codegenNode?on(e.codegenNode,t):r("null"),h&&(a(),r("}")),a(),r("}"),{ast:e,code:t.code,preamble:"",map:t.map?t.map.toJSON():void 0}}function UE(e,n){const{ssr:t,prefixIdentifiers:i,push:r,newline:o,runtimeModuleName:s,runtimeGlobalName:a,ssrRuntimeModuleName:l}=n,u=a,c=Array.from(e.helpers);if(c.length>0&&(r(`const _Vue = ${u} -`,-1),e.hoists.length)){const f=[qc,ef,bo,tf,Mg].filter(d=>c.includes(d)).map(Yg).join(", ");r(`const { ${f} } = _Vue -`,-1)}WE(e.hoists,n),o(),r("return ")}function Hl(e,n,{helper:t,push:i,newline:r,isTS:o}){const s=t(n==="filter"?of:n==="component"?nf:sf);for(let a=0;a3||!1;n.push("["),t&&n.indent(),wo(e,n,t),t&&n.deindent(),n.push("]")}function wo(e,n,t=!1,i=!0){const{push:r,newline:o}=n;for(let s=0;st||"null")}function JE(e,n){const{push:t,helper:i,pure:r}=n,o=ke(e.callee)?e.callee:i(e.callee);r&&t(El),t(o+"(",-2,e),wo(e.arguments,n),t(")")}function QE(e,n){const{push:t,indent:i,deindent:r,newline:o}=n,{properties:s}=e;if(!s.length){t("{}",-2,e);return}const a=s.length>1||!1;t(a?"{":"{ "),a&&i();for(let l=0;l "),(l||a)&&(t("{"),i()),s?(l&&t("return "),pe(s)?vf(s,n):on(s,n)):a&&on(a,n),(l||a)&&(r(),t("}")),u&&(e.isNonScopedSlot&&t(", undefined, true"),t(")"))}function tS(e,n){const{test:t,consequent:i,alternate:r,newline:o}=e,{push:s,indent:a,deindent:l,newline:u}=n;if(t.type===4){const f=!gf(t.content);f&&s("("),zg(t,n),f&&s(")")}else s("("),on(t,n),s(")");o&&a(),n.indentLevel++,o||s(" "),s("? "),on(i,n),n.indentLevel--,o&&u(),o||s(" "),s(": ");const c=r.type===19;c||n.indentLevel++,on(r,n),c||n.indentLevel--,o&&l(!0)}function nS(e,n){const{push:t,helper:i,indent:r,deindent:o,newline:s}=n;t(`_cache[${e.index}] || (`),e.isVOnce&&(r(),t(`${i(La)}(-1),`),s(),t("(")),t(`_cache[${e.index}] = `),on(e.value,n),e.isVOnce&&(t(`).cacheIndex = ${e.index},`),s(),t(`${i(La)}(1),`),s(),t(`_cache[${e.index}]`),o()),t(")")}new RegExp("\\b"+"arguments,await,break,case,catch,class,const,continue,debugger,default,delete,do,else,export,extends,finally,for,function,if,import,let,new,return,super,switch,throw,try,var,void,while,with,yield".split(",").join("\\b|\\b")+"\\b");const iS=Kg(/^(if|else|else-if)$/,(e,n,t)=>rS(e,n,t,(i,r,o)=>{const s=t.parent.children;let a=s.indexOf(i),l=0;for(;a-->=0;){const u=s[a];u&&u.type===9&&(l+=u.branches.length)}return()=>{if(o)i.codegenNode=Rd(r,l,t);else{const u=sS(i.codegenNode);u.alternate=Rd(r,l+i.branches.length-1,t)}}}));function rS(e,n,t,i){if(n.name!=="else"&&(!n.exp||!n.exp.content.trim())){const r=n.exp?n.exp.loc:e.loc;t.onError(Dt(28,n.loc)),n.exp=Ve("true",!1,r)}if(n.name==="if"){const r=Nd(e,n),o={type:9,loc:e.loc,branches:[r]};if(t.replaceNode(o),i)return i(o,r,!0)}else{const r=t.parent.children;let o=r.indexOf(e);for(;o-->=-1;){const s=r[o];if(s&&s.type===3){t.removeNode(s);continue}if(s&&s.type===2&&!s.content.trim().length){t.removeNode(s);continue}if(s&&s.type===9){n.name==="else-if"&&s.branches[s.branches.length-1].condition===void 0&&t.onError(Dt(30,e.loc)),t.removeNode();const a=Nd(e,n);s.branches.push(a);const l=i&&i(s,a,!1);bl(a,t),l&&l(),t.currentNode=null}else t.onError(Dt(30,e.loc));break}}}function Nd(e,n){const t=e.tagType===3;return{type:10,loc:e.loc,condition:n.name==="else"?void 0:n.exp,children:t&&!Qn(e,"for")?e.children:[e],userKey:yl(e,"key"),isTemplateIf:t}}function Rd(e,n,t){return e.condition?Ru(e.condition,_d(e,n,t),Bt(t.helper(bo),['""',"true"])):_d(e,n,t)}function _d(e,n,t){const{helper:i}=t,r=Ft("key",Ve(`${n}`,!1,$n,2)),{children:o}=e,s=o[0];if(o.length!==1||s.type!==1)if(o.length===1&&s.type===11){const l=s.codegenNode;return Va(l,r,t),l}else{let l=64;return to(t,i(qs),Un([r]),o,l,void 0,void 0,!0,!1,!1,e.loc)}else{const l=s.codegenNode,u=SE(l);return u.type===13&&pf(u,t),Va(u,r,t),l}}function sS(e){for(;;)if(e.type===19)if(e.alternate.type===19)e=e.alternate;else return e;else e.type===20&&(e=e.value)}const oS=(e,n,t)=>{const{modifiers:i,loc:r}=e,o=e.arg;let{exp:s}=e;if(s&&s.type===4&&!s.content.trim()&&(s=void 0),!s){if(o.type!==4||!o.isStatic)return t.onError(Dt(52,o.loc)),{props:[Ft(o,Ve("",!0,r))]};Zg(e),s=e.exp}return o.type!==4?(o.children.unshift("("),o.children.push(') || ""')):o.isStatic||(o.content=`${o.content} || ""`),i.includes("camel")&&(o.type===4?o.isStatic?o.content=bt(o.content):o.content=`${t.helperString(Pu)}(${o.content})`:(o.children.unshift(`${t.helperString(Pu)}(`),o.children.push(")"))),t.inSSR||(i.includes("prop")&&Fd(o,"."),i.includes("attr")&&Fd(o,"^")),{props:[Ft(o,s)]}},Zg=(e,n)=>{const t=e.arg,i=bt(t.content);e.exp=Ve(i,!1,t.loc)},Fd=(e,n)=>{e.type===4?e.isStatic?e.content=n+e.content:e.content=`\`${n}\${${e.content}}\``:(e.children.unshift(`'${n}' + (`),e.children.push(")"))},aS=Kg("for",(e,n,t)=>{const{helper:i,removeHelper:r}=t;return lS(e,n,t,o=>{const s=Bt(i(lf),[o.source]),a=$a(e),l=Qn(e,"memo"),u=yl(e,"key",!1,!0);u&&u.type===7&&!u.exp&&Zg(u);const c=u&&(u.type===6?u.value?Ve(u.value.content,!0):void 0:u.exp),f=u&&c?Ft("key",c):null,d=o.source.type===4&&o.source.constType>0,h=d?64:u?128:256;return o.codegenNode=to(t,i(qs),void 0,s,h,void 0,void 0,!0,!d,!1,e.loc),()=>{let p;const{children:m}=o,y=m.length!==1||m[0].type!==1,D=ja(e)?e:a&&e.children.length===1&&ja(e.children[0])?e.children[0]:null;if(D?(p=D.codegenNode,a&&f&&Va(p,f,t)):y?p=to(t,i(qs),f?Un([f]):void 0,e.children,64,void 0,void 0,!0,void 0,!1):(p=m[0].codegenNode,a&&f&&Va(p,f,t),p.isBlock!==!d&&(p.isBlock?(r(Mr),r(ss(t.inSSR,p.isComponent))):r(rs(t.inSSR,p.isComponent))),p.isBlock=!d,p.isBlock?(i(Mr),i(ss(t.inSSR,p.isComponent))):i(rs(t.inSSR,p.isComponent))),l){const S=is(Lu(o.parseResult,[Ve("_cached")]));S.body=fE([ti(["const _memo = (",l.exp,")"]),ti(["if (_cached",...c?[" && _cached.key === ",c]:[],` && ${t.helperString(Ng)}(_cached, _memo)) return _cached`]),ti(["const _item = ",p]),Ve("_item.memo = _memo"),Ve("return _item")]),s.arguments.push(S,Ve("_cache"),Ve(String(t.cached++)))}else s.arguments.push(is(Lu(o.parseResult),p,!0))}})});function lS(e,n,t,i){if(!n.exp){t.onError(Dt(31,n.loc));return}const r=n.forParseResult;if(!r){t.onError(Dt(32,n.loc));return}Xg(r);const{addIdentifiers:o,removeIdentifiers:s,scopes:a}=t,{source:l,value:u,key:c,index:f}=r,d={type:11,loc:n.loc,source:l,valueAlias:u,keyAlias:c,objectIndexAlias:f,parseResult:r,children:$a(e)?e.children:[e]};t.replaceNode(d),a.vFor++;const h=i&&i(d);return()=>{a.vFor--,h&&h()}}function Xg(e,n){e.finalized||(e.finalized=!0)}function Lu({value:e,key:n,index:t},i=[]){return uS([e,n,t,...i])}function uS(e){let n=e.length;for(;n--&&!e[n];);return e.slice(0,n+1).map((t,i)=>t||Ve("_".repeat(i+1),!1))}const Ld=Ve("undefined",!1),cS=(e,n)=>{if(e.type===1&&(e.tagType===1||e.tagType===3)){const t=Qn(e,"slot");if(t)return t.exp,n.scopes.vSlot++,()=>{n.scopes.vSlot--}}},fS=(e,n,t,i)=>is(e,t,!1,!0,t.length?t[0].loc:i);function dS(e,n,t=fS){n.helper(df);const{children:i,loc:r}=e,o=[],s=[];let a=n.scopes.vSlot>0||n.scopes.vFor>0;const l=Qn(e,"slot",!0);if(l){const{arg:y,exp:D}=l;y&&!wn(y)&&(a=!0),o.push(Ft(y||Ve("default",!0),t(D,void 0,i,r)))}let u=!1,c=!1;const f=[],d=new Set;let h=0;for(let y=0;y{const b=t(D,void 0,S,r);return n.compatConfig&&(b.isNonScopedSlot=!0),Ft("default",b)};u?f.length&&f.some(D=>Jg(D))&&(c?n.onError(Dt(39,f[0].loc)):o.push(y(void 0,f))):o.push(y(void 0,i))}const p=a?2:ca(e.children)?3:1;let m=Un(o.concat(Ft("_",Ve(p+"",!1))),r);return s.length&&(m=Bt(n.helper(Pg),[m,So(s)])),{slots:m,hasDynamicSlots:a}}function Bo(e,n,t){const i=[Ft("name",e),Ft("fn",n)];return t!=null&&i.push(Ft("key",Ve(String(t),!0))),Un(i)}function ca(e){for(let n=0;nfunction(){if(e=n.currentNode,!(e.type===1&&(e.tagType===0||e.tagType===1)))return;const{tag:i,props:r}=e,o=e.tagType===1;let s=o?pS(e,n):`"${i}"`;const a=ct(s)&&s.callee===rf;let l,u,c=0,f,d,h,p=a||s===Ls||s===Qc||!o&&(i==="svg"||i==="foreignObject"||i==="math");if(r.length>0){const m=qg(e,n,void 0,o,a);l=m.props,c=m.patchFlag,d=m.dynamicPropNames;const y=m.directives;h=y&&y.length?So(y.map(D=>gS(D,n))):void 0,m.shouldUseBlock&&(p=!0)}if(e.children.length>0)if(s===_a&&(p=!0,c|=1024),o&&s!==Ls&&s!==_a){const{slots:y,hasDynamicSlots:D}=dS(e,n);u=y,D&&(c|=1024)}else if(e.children.length===1&&s!==Ls){const y=e.children[0],D=y.type,S=D===5||D===8;S&&Wn(y,n)===0&&(c|=1),S||D===2?u=y:u=e.children}else u=e.children;d&&d.length&&(f=vS(d)),e.codegenNode=to(n,s,l,u,c===0?void 0:c,f,h,!!p,!1,o,e.loc)};function pS(e,n,t=!1){let{tag:i}=e;const r=ku(i),o=yl(e,"is",!1,!0);if(o)if(r||Dr("COMPILER_IS_ON_ELEMENT",n)){let a;if(o.type===6?a=o.value&&Ve(o.value.content,!0):(a=o.exp,a||(a=Ve("is",!1,o.loc))),a)return Bt(n.helper(rf),[a])}else o.type===6&&o.value.content.startsWith("vue:")&&(i=o.value.content.slice(4));const s=_g(i)||n.isBuiltInComponent(i);return s?(t||n.helper(s),s):(n.helper(nf),n.components.add(i),io(i,"component"))}function qg(e,n,t=e.props,i,r,o=!1){const{tag:s,loc:a,children:l}=e;let u=[];const c=[],f=[],d=l.length>0;let h=!1,p=0,m=!1,y=!1,D=!1,S=!1,b=!1,w=!1;const x=[],O=I=>{u.length&&(c.push(Un(kd(u),a)),u=[]),I&&c.push(I)},F=()=>{n.scopes.vFor>0&&u.push(Ft(Ve("ref_for",!0),Ve("true")))},L=({key:I,value:j})=>{if(wn(I)){const R=I.content,_=Nr(R);if(_&&(!i||r)&&R.toLowerCase()!=="onclick"&&R!=="onUpdate:modelValue"&&!Ki(R)&&(S=!0),_&&Ki(R)&&(w=!0),_&&j.type===14&&(j=j.arguments[0]),j.type===20||(j.type===4||j.type===8)&&Wn(j,n)>0)return;R==="ref"?m=!0:R==="class"?y=!0:R==="style"?D=!0:R!=="key"&&!x.includes(R)&&x.push(R),i&&(R==="class"||R==="style")&&!x.includes(R)&&x.push(R)}else b=!0};for(let I=0;I1?C=Bt(n.helper(Fa),c,a):C=c[0]):u.length&&(C=Un(kd(u),a)),b?p|=16:(y&&!i&&(p|=2),D&&!i&&(p|=4),x.length&&(p|=8),S&&(p|=32)),!h&&(p===0||p===32)&&(m||w||f.length>0)&&(p|=512),!n.inSSR&&C)switch(C.type){case 15:let I=-1,j=-1,R=!1;for(let G=0;GFt(s,o)),r))}return So(t,e.loc)}function vS(e){let n="[";for(let t=0,i=e.length;t{if(ja(e)){const{children:t,loc:i}=e,{slotName:r,slotProps:o}=bS(e,n),s=[n.prefixIdentifiers?"_ctx.$slots":"$slots",r,"{}","undefined","true"];let a=2;o&&(s[2]=o,a=3),t.length&&(s[3]=is([],t,!1,!1,i),a=4),n.scopeId&&!n.slotted&&(a=5),s.splice(a),e.codegenNode=Bt(n.helper(Ig),s,i)}};function bS(e,n){let t='"default"',i;const r=[];for(let o=0;o0){const{props:o,directives:s}=qg(e,n,r,!1,!1);i=o,s.length&&n.onError(Dt(36,s[0].loc))}return{slotName:t,slotProps:i}}const ES=/^\s*(async\s*)?(\([^)]*?\)|[\w$_]+)\s*(:[^=]+)?=>|^\s*(async\s+)?function(?:\s+[\w$]+)?\s*\(/,ev=(e,n,t,i)=>{const{loc:r,modifiers:o,arg:s}=e;!e.exp&&!o.length&&t.onError(Dt(35,r));let a;if(s.type===4)if(s.isStatic){let f=s.content;f.startsWith("vue:")&&(f=`vnode-${f.slice(4)}`);const d=n.tagType!==0||f.startsWith("vnode")||!/[A-Z]/.test(f)?br(bt(f)):`on:${f}`;a=Ve(d,!0,s.loc)}else a=ti([`${t.helperString(Nu)}(`,s,")"]);else a=s,a.children.unshift(`${t.helperString(Nu)}(`),a.children.push(")");let l=e.exp;l&&!l.content.trim()&&(l=void 0);let u=t.cacheHandlers&&!l&&!t.inVOnce;if(l){const f=Fg(l.content),d=!(f||ES.test(l.content)),h=l.content.includes(";");(d||u&&f)&&(l=ti([`${d?"$event":"(...args)"} => ${h?"{":"("}`,l,h?"}":")"]))}let c={props:[Ft(a,l||Ve("() => {}",!1,r))]};return i&&(c=i(c)),u&&(c.props[0].value=t.cache(c.props[0].value)),c.props.forEach(f=>f.key.isHandlerKey=!0),c},SS=(e,n)=>{if(e.type===0||e.type===1||e.type===11||e.type===10)return()=>{const t=e.children;let i,r=!1;for(let o=0;oo.type===7&&!n.directiveTransforms[o.name])&&e.tag!=="template")))for(let o=0;o{if(e.type===1&&Qn(e,"once",!0))return $d.has(e)||n.inVOnce||n.inSSR?void 0:($d.add(e),n.inVOnce=!0,n.helper(La),()=>{n.inVOnce=!1;const t=n.currentNode;t.codegenNode&&(t.codegenNode=n.cache(t.codegenNode,!0))})},tv=(e,n,t)=>{const{exp:i,arg:r}=e;if(!i)return t.onError(Dt(41,e.loc)),Ho();const o=i.loc.source,s=i.type===4?i.content:o,a=t.bindingMetadata[o];if(a==="props"||a==="props-aliased")return t.onError(Dt(44,i.loc)),Ho();const l=!1;if(!s.trim()||!Fg(s)&&!l)return t.onError(Dt(42,i.loc)),Ho();const u=r||Ve("modelValue",!0),c=r?wn(r)?`onUpdate:${bt(r.content)}`:ti(['"onUpdate:" + ',r]):"onUpdate:modelValue";let f;const d=t.isTS?"($event: any)":"$event";f=ti([`${d} => ((`,i,") = $event)"]);const h=[Ft(u,e.exp),Ft(c,f)];if(e.modifiers.length&&n.tagType===1){const p=e.modifiers.map(y=>(gf(y)?y:JSON.stringify(y))+": true").join(", "),m=r?wn(r)?`${r.content}Modifiers`:ti([r,' + "Modifiers"']):"modelModifiers";h.push(Ft(m,Ve(`{ ${p} }`,!1,e.loc,2)))}return Ho(h)};function Ho(e=[]){return{props:e}}const DS=/[\w).+\-_$\]]/,TS=(e,n)=>{Dr("COMPILER_FILTERS",n)&&(e.type===5?Ha(e.content,n):e.type===1&&e.props.forEach(t=>{t.type===7&&t.name!=="for"&&t.exp&&Ha(t.exp,n)}))};function Ha(e,n){if(e.type===4)jd(e,n);else for(let t=0;t=0&&(S=t.charAt(D),S===" ");D--);(!S||!DS.test(S))&&(s=!0)}}p===void 0?p=t.slice(0,h).trim():c!==0&&y();function y(){m.push(t.slice(c,h).trim()),c=h+1}if(m.length){for(h=0;h{if(e.type===1){const t=Qn(e,"memo");return!t||Vd.has(e)?void 0:(Vd.add(e),()=>{const i=e.codegenNode||n.currentNode.codegenNode;i&&i.type===13&&(e.tagType!==1&&pf(i,n),e.codegenNode=Bt(n.helper(hf),[t.exp,is(void 0,i),"_cache",String(n.cached++)]))})}};function xS(e){return[[wS,iS,OS,aS,TS,yS,hS,cS,SS],{on:ev,bind:oS,model:tv}]}function AS(e,n={}){const t=n.onError||mf,i=n.mode==="module";n.prefixIdentifiers===!0?t(Dt(47)):i&&t(Dt(48));const r=!1;n.cacheHandlers&&t(Dt(49)),n.scopeId&&!i&&t(Dt(50));const o=it({},n,{prefixIdentifiers:r}),s=ke(e)?_E(e,o):e,[a,l]=xS();return $E(s,it({},o,{nodeTransforms:[...a,...n.nodeTransforms||[]],directiveTransforms:it({},l,n.directiveTransforms||{})})),HE(s,o)}const MS=()=>({props:[]});/** -* @vue/compiler-dom v3.4.34 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/const nv=Symbol(""),iv=Symbol(""),rv=Symbol(""),sv=Symbol(""),$u=Symbol(""),ov=Symbol(""),av=Symbol(""),lv=Symbol(""),uv=Symbol(""),cv=Symbol("");lE({[nv]:"vModelRadio",[iv]:"vModelCheckbox",[rv]:"vModelText",[sv]:"vModelSelect",[$u]:"vModelDynamic",[ov]:"withModifiers",[av]:"withKeys",[lv]:"vShow",[uv]:"Transition",[cv]:"TransitionGroup"});let kr;function IS(e,n=!1){return kr||(kr=document.createElement("div")),n?(kr.innerHTML=`
`,kr.children[0].getAttribute("foo")):(kr.innerHTML=e,kr.textContent)}const PS={parseMode:"html",isVoidTag:qy,isNativeTag:e=>Xy(e)||Jy(e)||Qy(e),isPreTag:e=>e==="pre",decodeEntities:IS,isBuiltInComponent:e=>{if(e==="Transition"||e==="transition")return uv;if(e==="TransitionGroup"||e==="transition-group")return cv},getNamespace(e,n,t){let i=n?n.ns:t;if(n&&i===2)if(n.tag==="annotation-xml"){if(e==="svg")return 1;n.props.some(r=>r.type===6&&r.name==="encoding"&&r.value!=null&&(r.value.content==="text/html"||r.value.content==="application/xhtml+xml"))&&(i=0)}else/^m(?:[ions]|text)$/.test(n.tag)&&e!=="mglyph"&&e!=="malignmark"&&(i=0);else n&&i===1&&(n.tag==="foreignObject"||n.tag==="desc"||n.tag==="title")&&(i=0);if(i===0){if(e==="svg")return 1;if(e==="math")return 2}return i}},NS=e=>{e.type===1&&e.props.forEach((n,t)=>{n.type===6&&n.name==="style"&&n.value&&(e.props[t]={type:7,name:"bind",arg:Ve("style",!0,n.loc),exp:RS(n.value.content,n.loc),modifiers:[],loc:n.loc})})},RS=(e,n)=>{const t=rp(e);return Ve(JSON.stringify(t),!1,n,3)};function Xi(e,n){return Dt(e,n)}const _S=(e,n,t)=>{const{exp:i,loc:r}=e;return i||t.onError(Xi(53,r)),n.children.length&&(t.onError(Xi(54,r)),n.children.length=0),{props:[Ft(Ve("innerHTML",!0,r),i||Ve("",!0))]}},FS=(e,n,t)=>{const{exp:i,loc:r}=e;return i||t.onError(Xi(55,r)),n.children.length&&(t.onError(Xi(56,r)),n.children.length=0),{props:[Ft(Ve("textContent",!0),i?Wn(i,t)>0?i:Bt(t.helperString(vl),[i],r):Ve("",!0))]}},LS=(e,n,t)=>{const i=tv(e,n,t);if(!i.props.length||n.tagType===1)return i;e.arg&&t.onError(Xi(58,e.arg.loc));const{tag:r}=n,o=t.isCustomElement(r);if(r==="input"||r==="textarea"||r==="select"||o){let s=rv,a=!1;if(r==="input"||o){const l=yl(n,"type");if(l){if(l.type===7)s=$u;else if(l.value)switch(l.value.content){case"radio":s=nv;break;case"checkbox":s=iv;break;case"file":a=!0,t.onError(Xi(59,e.loc));break}}else yE(n)&&(s=$u)}else r==="select"&&(s=sv);a||(i.needRuntime=t.helper(s))}else t.onError(Xi(57,e.loc));return i.props=i.props.filter(s=>!(s.key.type===4&&s.key.content==="modelValue")),i},kS=kn("passive,once,capture"),$S=kn("stop,prevent,self,ctrl,shift,alt,meta,exact,middle"),jS=kn("left,right"),fv=kn("onkeyup,onkeydown,onkeypress",!0),VS=(e,n,t,i)=>{const r=[],o=[],s=[];for(let a=0;awn(e)&&e.content.toLowerCase()==="onclick"?Ve(n,!0):e.type!==4?ti(["(",e,`) === "onClick" ? "${n}" : (`,e,")"]):e,BS=(e,n,t)=>ev(e,n,t,i=>{const{modifiers:r}=e;if(!r.length)return i;let{key:o,value:s}=i.props[0];const{keyModifiers:a,nonKeyModifiers:l,eventOptionModifiers:u}=VS(o,r,t,e.loc);if(l.includes("right")&&(o=Bd(o,"onContextmenu")),l.includes("middle")&&(o=Bd(o,"onMouseup")),l.length&&(s=Bt(t.helper(ov),[s,JSON.stringify(l)])),a.length&&(!wn(o)||fv(o.content))&&(s=Bt(t.helper(av),[s,JSON.stringify(a)])),u.length){const c=u.map(nr).join("");o=wn(o)?Ve(`${o.content}${c}`,!0):ti(["(",o,`) + "${c}"`])}return{props:[Ft(o,s)]}}),HS=(e,n,t)=>{const{exp:i,loc:r}=e;return i||t.onError(Xi(61,r)),{props:[],needRuntime:t.helper(lv)}},US=(e,n)=>{e.type===1&&e.tagType===0&&(e.tag==="script"||e.tag==="style")&&n.removeNode()},WS=[NS],KS={cloak:MS,html:_S,text:FS,model:LS,on:BS,show:HS};function YS(e,n={}){return AS(e,it({},PS,n,{nodeTransforms:[US,...WS,...n.nodeTransforms||[]],directiveTransforms:it({},KS,n.directiveTransforms||{}),transformHoist:null}))}/** -* vue v3.4.34 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/const Hd=new WeakMap;function zS(e){let n=Hd.get(e??Je);return n||(n=Object.create(null),Hd.set(e??Je,n)),n}function GS(e,n){if(!ke(e))if(e.nodeType)e=e.innerHTML;else return $t;const t=e,i=zS(n),r=i[t];if(r)return r;if(e[0]==="#"){const l=document.querySelector(e);e=l?l.innerHTML:""}const o=it({hoistStatic:!0,onError:void 0,onWarn:$t},n);!o.isCustomElement&&typeof customElements<"u"&&(o.isCustomElement=l=>!!customElements.get(l));const{code:s}=YS(e,o),a=new Function("Vue",s)(nE);return a._rc=!0,i[t]=a}Hc(GS);const ZS={install(e){e.config.globalProperties.$admin={formatPrice:n=>{let t=document.querySelector('meta[http-equiv="content-language"]').content;t=t.replace(/([a-z]{2})_([A-Z]{2})/g,"$1-$2");const i=JSON.parse(document.querySelector('meta[name="currency"]').content),r=i.symbol!==""?i.symbol:i.code;if(!i.currency_position)return new Intl.NumberFormat(t,{style:"currency",currency:i.code}).format(n);const s=new Intl.NumberFormat(t,{style:"currency",currency:i.code,minimumFractionDigits:i.decimal??2}).formatToParts(n).map(a=>{switch(a.type){case"currency":return"";case"group":return i.group_separator===""?a.value:i.group_separator;case"decimal":return i.decimal_separator===""?a.value:i.decimal_separator;default:return a.value}}).join("");switch(i.currency_position){case"left":return r+s;case"left_with_space":return r+" "+s;case"right":return s+r;case"right_with_space":return s+" "+r;default:return s}}}}};function dv(e,n){return function(){return e.apply(n,arguments)}}const{toString:XS}=Object.prototype,{getPrototypeOf:yf}=Object,Sl=(e=>n=>{const t=XS.call(n);return e[t]||(e[t]=t.slice(8,-1).toLowerCase())})(Object.create(null)),si=e=>(e=e.toLowerCase(),n=>Sl(n)===e),wl=e=>n=>typeof n===e,{isArray:fs}=Array,so=wl("undefined");function JS(e){return e!==null&&!so(e)&&e.constructor!==null&&!so(e.constructor)&&Yn(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const hv=si("ArrayBuffer");function QS(e){let n;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?n=ArrayBuffer.isView(e):n=e&&e.buffer&&hv(e.buffer),n}const qS=wl("string"),Yn=wl("function"),pv=wl("number"),Dl=e=>e!==null&&typeof e=="object",ew=e=>e===!0||e===!1,fa=e=>{if(Sl(e)!=="object")return!1;const n=yf(e);return(n===null||n===Object.prototype||Object.getPrototypeOf(n)===null)&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)},tw=si("Date"),nw=si("File"),iw=si("Blob"),rw=si("FileList"),sw=e=>Dl(e)&&Yn(e.pipe),ow=e=>{let n;return e&&(typeof FormData=="function"&&e instanceof FormData||Yn(e.append)&&((n=Sl(e))==="formdata"||n==="object"&&Yn(e.toString)&&e.toString()==="[object FormData]"))},aw=si("URLSearchParams"),[lw,uw,cw,fw]=["ReadableStream","Request","Response","Headers"].map(si),dw=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function Do(e,n,{allOwnKeys:t=!1}={}){if(e===null||typeof e>"u")return;let i,r;if(typeof e!="object"&&(e=[e]),fs(e))for(i=0,r=e.length;i0;)if(r=t[i],n===r.toLowerCase())return r;return null}const gv=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),vv=e=>!so(e)&&e!==gv;function ju(){const{caseless:e}=vv(this)&&this||{},n={},t=(i,r)=>{const o=e&&mv(n,r)||r;fa(n[o])&&fa(i)?n[o]=ju(n[o],i):fa(i)?n[o]=ju({},i):fs(i)?n[o]=i.slice():n[o]=i};for(let i=0,r=arguments.length;i(Do(n,(r,o)=>{t&&Yn(r)?e[o]=dv(r,t):e[o]=r},{allOwnKeys:i}),e),pw=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),mw=(e,n,t,i)=>{e.prototype=Object.create(n.prototype,i),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:n.prototype}),t&&Object.assign(e.prototype,t)},gw=(e,n,t,i)=>{let r,o,s;const a={};if(n=n||{},e==null)return n;do{for(r=Object.getOwnPropertyNames(e),o=r.length;o-- >0;)s=r[o],(!i||i(s,e,n))&&!a[s]&&(n[s]=e[s],a[s]=!0);e=t!==!1&&yf(e)}while(e&&(!t||t(e,n))&&e!==Object.prototype);return n},vw=(e,n,t)=>{e=String(e),(t===void 0||t>e.length)&&(t=e.length),t-=n.length;const i=e.indexOf(n,t);return i!==-1&&i===t},yw=e=>{if(!e)return null;if(fs(e))return e;let n=e.length;if(!pv(n))return null;const t=new Array(n);for(;n-- >0;)t[n]=e[n];return t},bw=(e=>n=>e&&n instanceof e)(typeof Uint8Array<"u"&&yf(Uint8Array)),Ew=(e,n)=>{const i=(e&&e[Symbol.iterator]).call(e);let r;for(;(r=i.next())&&!r.done;){const o=r.value;n.call(e,o[0],o[1])}},Sw=(e,n)=>{let t;const i=[];for(;(t=e.exec(n))!==null;)i.push(t);return i},ww=si("HTMLFormElement"),Dw=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(t,i,r){return i.toUpperCase()+r}),Ud=(({hasOwnProperty:e})=>(n,t)=>e.call(n,t))(Object.prototype),Tw=si("RegExp"),yv=(e,n)=>{const t=Object.getOwnPropertyDescriptors(e),i={};Do(t,(r,o)=>{let s;(s=n(r,o,e))!==!1&&(i[o]=s||r)}),Object.defineProperties(e,i)},Cw=e=>{yv(e,(n,t)=>{if(Yn(e)&&["arguments","caller","callee"].indexOf(t)!==-1)return!1;const i=e[t];if(Yn(i)){if(n.enumerable=!1,"writable"in n){n.writable=!1;return}n.set||(n.set=()=>{throw Error("Can not rewrite read-only method '"+t+"'")})}})},Ow=(e,n)=>{const t={},i=r=>{r.forEach(o=>{t[o]=!0})};return fs(e)?i(e):i(String(e).split(n)),t},xw=()=>{},Aw=(e,n)=>e!=null&&Number.isFinite(e=+e)?e:n,Ul="abcdefghijklmnopqrstuvwxyz",Wd="0123456789",bv={DIGIT:Wd,ALPHA:Ul,ALPHA_DIGIT:Ul+Ul.toUpperCase()+Wd},Mw=(e=16,n=bv.ALPHA_DIGIT)=>{let t="";const{length:i}=n;for(;e--;)t+=n[Math.random()*i|0];return t};function Iw(e){return!!(e&&Yn(e.append)&&e[Symbol.toStringTag]==="FormData"&&e[Symbol.iterator])}const Pw=e=>{const n=new Array(10),t=(i,r)=>{if(Dl(i)){if(n.indexOf(i)>=0)return;if(!("toJSON"in i)){n[r]=i;const o=fs(i)?[]:{};return Do(i,(s,a)=>{const l=t(s,r+1);!so(l)&&(o[a]=l)}),n[r]=void 0,o}}return i};return t(e,0)},Nw=si("AsyncFunction"),Rw=e=>e&&(Dl(e)||Yn(e))&&Yn(e.then)&&Yn(e.catch),U={isArray:fs,isArrayBuffer:hv,isBuffer:JS,isFormData:ow,isArrayBufferView:QS,isString:qS,isNumber:pv,isBoolean:ew,isObject:Dl,isPlainObject:fa,isReadableStream:lw,isRequest:uw,isResponse:cw,isHeaders:fw,isUndefined:so,isDate:tw,isFile:nw,isBlob:iw,isRegExp:Tw,isFunction:Yn,isStream:sw,isURLSearchParams:aw,isTypedArray:bw,isFileList:rw,forEach:Do,merge:ju,extend:hw,trim:dw,stripBOM:pw,inherits:mw,toFlatObject:gw,kindOf:Sl,kindOfTest:si,endsWith:vw,toArray:yw,forEachEntry:Ew,matchAll:Sw,isHTMLForm:ww,hasOwnProperty:Ud,hasOwnProp:Ud,reduceDescriptors:yv,freezeMethods:Cw,toObjectSet:Ow,toCamelCase:Dw,noop:xw,toFiniteNumber:Aw,findKey:mv,global:gv,isContextDefined:vv,ALPHABET:bv,generateString:Mw,isSpecCompliantForm:Iw,toJSONObject:Pw,isAsyncFn:Nw,isThenable:Rw};function Le(e,n,t,i,r){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",n&&(this.code=n),t&&(this.config=t),i&&(this.request=i),r&&(this.response=r)}U.inherits(Le,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:U.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const Ev=Le.prototype,Sv={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{Sv[e]={value:e}});Object.defineProperties(Le,Sv);Object.defineProperty(Ev,"isAxiosError",{value:!0});Le.from=(e,n,t,i,r,o)=>{const s=Object.create(Ev);return U.toFlatObject(e,s,function(l){return l!==Error.prototype},a=>a!=="isAxiosError"),Le.call(s,e.message,n,t,i,r),s.cause=e,s.name=e.name,o&&Object.assign(s,o),s};const _w=null;function Vu(e){return U.isPlainObject(e)||U.isArray(e)}function wv(e){return U.endsWith(e,"[]")?e.slice(0,-2):e}function Kd(e,n,t){return e?e.concat(n).map(function(r,o){return r=wv(r),!t&&o?"["+r+"]":r}).join(t?".":""):n}function Fw(e){return U.isArray(e)&&!e.some(Vu)}const Lw=U.toFlatObject(U,{},null,function(n){return/^is[A-Z]/.test(n)});function Tl(e,n,t){if(!U.isObject(e))throw new TypeError("target must be an object");n=n||new FormData,t=U.toFlatObject(t,{metaTokens:!0,dots:!1,indexes:!1},!1,function(m,y){return!U.isUndefined(y[m])});const i=t.metaTokens,r=t.visitor||c,o=t.dots,s=t.indexes,l=(t.Blob||typeof Blob<"u"&&Blob)&&U.isSpecCompliantForm(n);if(!U.isFunction(r))throw new TypeError("visitor must be a function");function u(p){if(p===null)return"";if(U.isDate(p))return p.toISOString();if(!l&&U.isBlob(p))throw new Le("Blob is not supported. Use a Buffer instead.");return U.isArrayBuffer(p)||U.isTypedArray(p)?l&&typeof Blob=="function"?new Blob([p]):Buffer.from(p):p}function c(p,m,y){let D=p;if(p&&!y&&typeof p=="object"){if(U.endsWith(m,"{}"))m=i?m:m.slice(0,-2),p=JSON.stringify(p);else if(U.isArray(p)&&Fw(p)||(U.isFileList(p)||U.endsWith(m,"[]"))&&(D=U.toArray(p)))return m=wv(m),D.forEach(function(b,w){!(U.isUndefined(b)||b===null)&&n.append(s===!0?Kd([m],w,o):s===null?m:m+"[]",u(b))}),!1}return Vu(p)?!0:(n.append(Kd(y,m,o),u(p)),!1)}const f=[],d=Object.assign(Lw,{defaultVisitor:c,convertValue:u,isVisitable:Vu});function h(p,m){if(!U.isUndefined(p)){if(f.indexOf(p)!==-1)throw Error("Circular reference detected in "+m.join("."));f.push(p),U.forEach(p,function(D,S){(!(U.isUndefined(D)||D===null)&&r.call(n,D,U.isString(S)?S.trim():S,m,d))===!0&&h(D,m?m.concat(S):[S])}),f.pop()}}if(!U.isObject(e))throw new TypeError("data must be an object");return h(e),n}function Yd(e){const n={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(i){return n[i]})}function bf(e,n){this._pairs=[],e&&Tl(e,this,n)}const Dv=bf.prototype;Dv.append=function(n,t){this._pairs.push([n,t])};Dv.toString=function(n){const t=n?function(i){return n.call(this,i,Yd)}:Yd;return this._pairs.map(function(r){return t(r[0])+"="+t(r[1])},"").join("&")};function kw(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function Tv(e,n,t){if(!n)return e;const i=t&&t.encode||kw,r=t&&t.serialize;let o;if(r?o=r(n,t):o=U.isURLSearchParams(n)?n.toString():new bf(n,t).toString(i),o){const s=e.indexOf("#");s!==-1&&(e=e.slice(0,s)),e+=(e.indexOf("?")===-1?"?":"&")+o}return e}class $w{constructor(){this.handlers=[]}use(n,t,i){return this.handlers.push({fulfilled:n,rejected:t,synchronous:i?i.synchronous:!1,runWhen:i?i.runWhen:null}),this.handlers.length-1}eject(n){this.handlers[n]&&(this.handlers[n]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(n){U.forEach(this.handlers,function(i){i!==null&&n(i)})}}const zd=$w,Cv={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},jw=typeof URLSearchParams<"u"?URLSearchParams:bf,Vw=typeof FormData<"u"?FormData:null,Bw=typeof Blob<"u"?Blob:null,Hw={isBrowser:!0,classes:{URLSearchParams:jw,FormData:Vw,Blob:Bw},protocols:["http","https","file","blob","url","data"]},Ef=typeof window<"u"&&typeof document<"u",Uw=(e=>Ef&&["ReactNative","NativeScript","NS"].indexOf(e)<0)(typeof navigator<"u"&&navigator.product),Ww=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),Kw=Ef&&window.location.href||"http://localhost",Yw=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:Ef,hasStandardBrowserEnv:Uw,hasStandardBrowserWebWorkerEnv:Ww,origin:Kw},Symbol.toStringTag,{value:"Module"})),ni={...Yw,...Hw};function zw(e,n){return Tl(e,new ni.classes.URLSearchParams,Object.assign({visitor:function(t,i,r,o){return ni.isNode&&U.isBuffer(t)?(this.append(i,t.toString("base64")),!1):o.defaultVisitor.apply(this,arguments)}},n))}function Gw(e){return U.matchAll(/\w+|\[(\w*)]/g,e).map(n=>n[0]==="[]"?"":n[1]||n[0])}function Zw(e){const n={},t=Object.keys(e);let i;const r=t.length;let o;for(i=0;i=t.length;return s=!s&&U.isArray(r)?r.length:s,l?(U.hasOwnProp(r,s)?r[s]=[r[s],i]:r[s]=i,!a):((!r[s]||!U.isObject(r[s]))&&(r[s]=[]),n(t,i,r[s],o)&&U.isArray(r[s])&&(r[s]=Zw(r[s])),!a)}if(U.isFormData(e)&&U.isFunction(e.entries)){const t={};return U.forEachEntry(e,(i,r)=>{n(Gw(i),r,t,0)}),t}return null}function Xw(e,n,t){if(U.isString(e))try{return(n||JSON.parse)(e),U.trim(e)}catch(i){if(i.name!=="SyntaxError")throw i}return(t||JSON.stringify)(e)}const Sf={transitional:Cv,adapter:["xhr","http","fetch"],transformRequest:[function(n,t){const i=t.getContentType()||"",r=i.indexOf("application/json")>-1,o=U.isObject(n);if(o&&U.isHTMLForm(n)&&(n=new FormData(n)),U.isFormData(n))return r?JSON.stringify(Ov(n)):n;if(U.isArrayBuffer(n)||U.isBuffer(n)||U.isStream(n)||U.isFile(n)||U.isBlob(n)||U.isReadableStream(n))return n;if(U.isArrayBufferView(n))return n.buffer;if(U.isURLSearchParams(n))return t.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),n.toString();let a;if(o){if(i.indexOf("application/x-www-form-urlencoded")>-1)return zw(n,this.formSerializer).toString();if((a=U.isFileList(n))||i.indexOf("multipart/form-data")>-1){const l=this.env&&this.env.FormData;return Tl(a?{"files[]":n}:n,l&&new l,this.formSerializer)}}return o||r?(t.setContentType("application/json",!1),Xw(n)):n}],transformResponse:[function(n){const t=this.transitional||Sf.transitional,i=t&&t.forcedJSONParsing,r=this.responseType==="json";if(U.isResponse(n)||U.isReadableStream(n))return n;if(n&&U.isString(n)&&(i&&!this.responseType||r)){const s=!(t&&t.silentJSONParsing)&&r;try{return JSON.parse(n)}catch(a){if(s)throw a.name==="SyntaxError"?Le.from(a,Le.ERR_BAD_RESPONSE,this,null,this.response):a}}return n}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:ni.classes.FormData,Blob:ni.classes.Blob},validateStatus:function(n){return n>=200&&n<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};U.forEach(["delete","get","head","post","put","patch"],e=>{Sf.headers[e]={}});const wf=Sf,Jw=U.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),Qw=e=>{const n={};let t,i,r;return e&&e.split(` -`).forEach(function(s){r=s.indexOf(":"),t=s.substring(0,r).trim().toLowerCase(),i=s.substring(r+1).trim(),!(!t||n[t]&&Jw[t])&&(t==="set-cookie"?n[t]?n[t].push(i):n[t]=[i]:n[t]=n[t]?n[t]+", "+i:i)}),n},Gd=Symbol("internals");function gs(e){return e&&String(e).trim().toLowerCase()}function da(e){return e===!1||e==null?e:U.isArray(e)?e.map(da):String(e)}function qw(e){const n=Object.create(null),t=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let i;for(;i=t.exec(e);)n[i[1]]=i[2];return n}const eD=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function Wl(e,n,t,i,r){if(U.isFunction(i))return i.call(this,n,t);if(r&&(n=t),!!U.isString(n)){if(U.isString(i))return n.indexOf(i)!==-1;if(U.isRegExp(i))return i.test(n)}}function tD(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(n,t,i)=>t.toUpperCase()+i)}function nD(e,n){const t=U.toCamelCase(" "+n);["get","set","has"].forEach(i=>{Object.defineProperty(e,i+t,{value:function(r,o,s){return this[i].call(this,n,r,o,s)},configurable:!0})})}class Cl{constructor(n){n&&this.set(n)}set(n,t,i){const r=this;function o(a,l,u){const c=gs(l);if(!c)throw new Error("header name must be a non-empty string");const f=U.findKey(r,c);(!f||r[f]===void 0||u===!0||u===void 0&&r[f]!==!1)&&(r[f||l]=da(a))}const s=(a,l)=>U.forEach(a,(u,c)=>o(u,c,l));if(U.isPlainObject(n)||n instanceof this.constructor)s(n,t);else if(U.isString(n)&&(n=n.trim())&&!eD(n))s(Qw(n),t);else if(U.isHeaders(n))for(const[a,l]of n.entries())o(l,a,i);else n!=null&&o(t,n,i);return this}get(n,t){if(n=gs(n),n){const i=U.findKey(this,n);if(i){const r=this[i];if(!t)return r;if(t===!0)return qw(r);if(U.isFunction(t))return t.call(this,r,i);if(U.isRegExp(t))return t.exec(r);throw new TypeError("parser must be boolean|regexp|function")}}}has(n,t){if(n=gs(n),n){const i=U.findKey(this,n);return!!(i&&this[i]!==void 0&&(!t||Wl(this,this[i],i,t)))}return!1}delete(n,t){const i=this;let r=!1;function o(s){if(s=gs(s),s){const a=U.findKey(i,s);a&&(!t||Wl(i,i[a],a,t))&&(delete i[a],r=!0)}}return U.isArray(n)?n.forEach(o):o(n),r}clear(n){const t=Object.keys(this);let i=t.length,r=!1;for(;i--;){const o=t[i];(!n||Wl(this,this[o],o,n,!0))&&(delete this[o],r=!0)}return r}normalize(n){const t=this,i={};return U.forEach(this,(r,o)=>{const s=U.findKey(i,o);if(s){t[s]=da(r),delete t[o];return}const a=n?tD(o):String(o).trim();a!==o&&delete t[o],t[a]=da(r),i[a]=!0}),this}concat(...n){return this.constructor.concat(this,...n)}toJSON(n){const t=Object.create(null);return U.forEach(this,(i,r)=>{i!=null&&i!==!1&&(t[r]=n&&U.isArray(i)?i.join(", "):i)}),t}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([n,t])=>n+": "+t).join(` -`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(n){return n instanceof this?n:new this(n)}static concat(n,...t){const i=new this(n);return t.forEach(r=>i.set(r)),i}static accessor(n){const i=(this[Gd]=this[Gd]={accessors:{}}).accessors,r=this.prototype;function o(s){const a=gs(s);i[a]||(nD(r,s),i[a]=!0)}return U.isArray(n)?n.forEach(o):o(n),this}}Cl.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);U.reduceDescriptors(Cl.prototype,({value:e},n)=>{let t=n[0].toUpperCase()+n.slice(1);return{get:()=>e,set(i){this[t]=i}}});U.freezeMethods(Cl);const ii=Cl;function Kl(e,n){const t=this||wf,i=n||t,r=ii.from(i.headers);let o=i.data;return U.forEach(e,function(a){o=a.call(t,o,r.normalize(),n?n.status:void 0)}),r.normalize(),o}function xv(e){return!!(e&&e.__CANCEL__)}function ds(e,n,t){Le.call(this,e??"canceled",Le.ERR_CANCELED,n,t),this.name="CanceledError"}U.inherits(ds,Le,{__CANCEL__:!0});function Av(e,n,t){const i=t.config.validateStatus;!t.status||!i||i(t.status)?e(t):n(new Le("Request failed with status code "+t.status,[Le.ERR_BAD_REQUEST,Le.ERR_BAD_RESPONSE][Math.floor(t.status/100)-4],t.config,t.request,t))}function iD(e){const n=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return n&&n[1]||""}function rD(e,n){e=e||10;const t=new Array(e),i=new Array(e);let r=0,o=0,s;return n=n!==void 0?n:1e3,function(l){const u=Date.now(),c=i[o];s||(s=u),t[r]=l,i[r]=u;let f=o,d=0;for(;f!==r;)d+=t[f++],f=f%e;if(r=(r+1)%e,r===o&&(o=(o+1)%e),u-si)return r&&(clearTimeout(r),r=null),t=a,e.apply(null,arguments);r||(r=setTimeout(()=>(r=null,t=Date.now(),e.apply(null,arguments)),i-(a-t)))}}const Ua=(e,n,t=3)=>{let i=0;const r=rD(50,250);return sD(o=>{const s=o.loaded,a=o.lengthComputable?o.total:void 0,l=s-i,u=r(l),c=s<=a;i=s;const f={loaded:s,total:a,progress:a?s/a:void 0,bytes:l,rate:u||void 0,estimated:u&&a&&c?(a-s)/u:void 0,event:o,lengthComputable:a!=null};f[n?"download":"upload"]=!0,e(f)},t)},oD=ni.hasStandardBrowserEnv?function(){const n=/(msie|trident)/i.test(navigator.userAgent),t=document.createElement("a");let i;function r(o){let s=o;return n&&(t.setAttribute("href",s),s=t.href),t.setAttribute("href",s),{href:t.href,protocol:t.protocol?t.protocol.replace(/:$/,""):"",host:t.host,search:t.search?t.search.replace(/^\?/,""):"",hash:t.hash?t.hash.replace(/^#/,""):"",hostname:t.hostname,port:t.port,pathname:t.pathname.charAt(0)==="/"?t.pathname:"/"+t.pathname}}return i=r(window.location.href),function(s){const a=U.isString(s)?r(s):s;return a.protocol===i.protocol&&a.host===i.host}}():function(){return function(){return!0}}(),aD=ni.hasStandardBrowserEnv?{write(e,n,t,i,r,o){const s=[e+"="+encodeURIComponent(n)];U.isNumber(t)&&s.push("expires="+new Date(t).toGMTString()),U.isString(i)&&s.push("path="+i),U.isString(r)&&s.push("domain="+r),o===!0&&s.push("secure"),document.cookie=s.join("; ")},read(e){const n=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return n?decodeURIComponent(n[3]):null},remove(e){this.write(e,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function lD(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function uD(e,n){return n?e.replace(/\/?\/$/,"")+"/"+n.replace(/^\/+/,""):e}function Mv(e,n){return e&&!lD(n)?uD(e,n):n}const Zd=e=>e instanceof ii?{...e}:e;function Ir(e,n){n=n||{};const t={};function i(u,c,f){return U.isPlainObject(u)&&U.isPlainObject(c)?U.merge.call({caseless:f},u,c):U.isPlainObject(c)?U.merge({},c):U.isArray(c)?c.slice():c}function r(u,c,f){if(U.isUndefined(c)){if(!U.isUndefined(u))return i(void 0,u,f)}else return i(u,c,f)}function o(u,c){if(!U.isUndefined(c))return i(void 0,c)}function s(u,c){if(U.isUndefined(c)){if(!U.isUndefined(u))return i(void 0,u)}else return i(void 0,c)}function a(u,c,f){if(f in n)return i(u,c);if(f in e)return i(void 0,u)}const l={url:o,method:o,data:o,baseURL:s,transformRequest:s,transformResponse:s,paramsSerializer:s,timeout:s,timeoutMessage:s,withCredentials:s,withXSRFToken:s,adapter:s,responseType:s,xsrfCookieName:s,xsrfHeaderName:s,onUploadProgress:s,onDownloadProgress:s,decompress:s,maxContentLength:s,maxBodyLength:s,beforeRedirect:s,transport:s,httpAgent:s,httpsAgent:s,cancelToken:s,socketPath:s,responseEncoding:s,validateStatus:a,headers:(u,c)=>r(Zd(u),Zd(c),!0)};return U.forEach(Object.keys(Object.assign({},e,n)),function(c){const f=l[c]||r,d=f(e[c],n[c],c);U.isUndefined(d)&&f!==a||(t[c]=d)}),t}const Iv=e=>{const n=Ir({},e);let{data:t,withXSRFToken:i,xsrfHeaderName:r,xsrfCookieName:o,headers:s,auth:a}=n;n.headers=s=ii.from(s),n.url=Tv(Mv(n.baseURL,n.url),e.params,e.paramsSerializer),a&&s.set("Authorization","Basic "+btoa((a.username||"")+":"+(a.password?unescape(encodeURIComponent(a.password)):"")));let l;if(U.isFormData(t)){if(ni.hasStandardBrowserEnv||ni.hasStandardBrowserWebWorkerEnv)s.setContentType(void 0);else if((l=s.getContentType())!==!1){const[u,...c]=l?l.split(";").map(f=>f.trim()).filter(Boolean):[];s.setContentType([u||"multipart/form-data",...c].join("; "))}}if(ni.hasStandardBrowserEnv&&(i&&U.isFunction(i)&&(i=i(n)),i||i!==!1&&oD(n.url))){const u=r&&o&&aD.read(o);u&&s.set(r,u)}return n},cD=typeof XMLHttpRequest<"u",fD=cD&&function(e){return new Promise(function(t,i){const r=Iv(e);let o=r.data;const s=ii.from(r.headers).normalize();let{responseType:a}=r,l;function u(){r.cancelToken&&r.cancelToken.unsubscribe(l),r.signal&&r.signal.removeEventListener("abort",l)}let c=new XMLHttpRequest;c.open(r.method.toUpperCase(),r.url,!0),c.timeout=r.timeout;function f(){if(!c)return;const h=ii.from("getAllResponseHeaders"in c&&c.getAllResponseHeaders()),m={data:!a||a==="text"||a==="json"?c.responseText:c.response,status:c.status,statusText:c.statusText,headers:h,config:e,request:c};Av(function(D){t(D),u()},function(D){i(D),u()},m),c=null}"onloadend"in c?c.onloadend=f:c.onreadystatechange=function(){!c||c.readyState!==4||c.status===0&&!(c.responseURL&&c.responseURL.indexOf("file:")===0)||setTimeout(f)},c.onabort=function(){c&&(i(new Le("Request aborted",Le.ECONNABORTED,r,c)),c=null)},c.onerror=function(){i(new Le("Network Error",Le.ERR_NETWORK,r,c)),c=null},c.ontimeout=function(){let p=r.timeout?"timeout of "+r.timeout+"ms exceeded":"timeout exceeded";const m=r.transitional||Cv;r.timeoutErrorMessage&&(p=r.timeoutErrorMessage),i(new Le(p,m.clarifyTimeoutError?Le.ETIMEDOUT:Le.ECONNABORTED,r,c)),c=null},o===void 0&&s.setContentType(null),"setRequestHeader"in c&&U.forEach(s.toJSON(),function(p,m){c.setRequestHeader(m,p)}),U.isUndefined(r.withCredentials)||(c.withCredentials=!!r.withCredentials),a&&a!=="json"&&(c.responseType=r.responseType),typeof r.onDownloadProgress=="function"&&c.addEventListener("progress",Ua(r.onDownloadProgress,!0)),typeof r.onUploadProgress=="function"&&c.upload&&c.upload.addEventListener("progress",Ua(r.onUploadProgress)),(r.cancelToken||r.signal)&&(l=h=>{c&&(i(!h||h.type?new ds(null,e,c):h),c.abort(),c=null)},r.cancelToken&&r.cancelToken.subscribe(l),r.signal&&(r.signal.aborted?l():r.signal.addEventListener("abort",l)));const d=iD(r.url);if(d&&ni.protocols.indexOf(d)===-1){i(new Le("Unsupported protocol "+d+":",Le.ERR_BAD_REQUEST,e));return}c.send(o||null)})},dD=(e,n)=>{let t=new AbortController,i;const r=function(l){if(!i){i=!0,s();const u=l instanceof Error?l:this.reason;t.abort(u instanceof Le?u:new ds(u instanceof Error?u.message:u))}};let o=n&&setTimeout(()=>{r(new Le(`timeout ${n} of ms exceeded`,Le.ETIMEDOUT))},n);const s=()=>{e&&(o&&clearTimeout(o),o=null,e.forEach(l=>{l&&(l.removeEventListener?l.removeEventListener("abort",r):l.unsubscribe(r))}),e=null)};e.forEach(l=>l&&l.addEventListener&&l.addEventListener("abort",r));const{signal:a}=t;return a.unsubscribe=s,[a,()=>{o&&clearTimeout(o),o=null}]},hD=dD,pD=function*(e,n){let t=e.byteLength;if(!n||t{const o=mD(e,n,r);let s=0;return new ReadableStream({type:"bytes",async pull(a){const{done:l,value:u}=await o.next();if(l){a.close(),i();return}let c=u.byteLength;t&&t(s+=c),a.enqueue(new Uint8Array(u))},cancel(a){return i(a),o.return()}},{highWaterMark:2})},Jd=(e,n)=>{const t=e!=null;return i=>setTimeout(()=>n({lengthComputable:t,total:e,loaded:i}))},Ol=typeof fetch=="function"&&typeof Request=="function"&&typeof Response=="function",Pv=Ol&&typeof ReadableStream=="function",Bu=Ol&&(typeof TextEncoder=="function"?(e=>n=>e.encode(n))(new TextEncoder):async e=>new Uint8Array(await new Response(e).arrayBuffer())),gD=Pv&&(()=>{let e=!1;const n=new Request(ni.origin,{body:new ReadableStream,method:"POST",get duplex(){return e=!0,"half"}}).headers.has("Content-Type");return e&&!n})(),Qd=64*1024,Hu=Pv&&!!(()=>{try{return U.isReadableStream(new Response("").body)}catch{}})(),Wa={stream:Hu&&(e=>e.body)};Ol&&(e=>{["text","arrayBuffer","blob","formData","stream"].forEach(n=>{!Wa[n]&&(Wa[n]=U.isFunction(e[n])?t=>t[n]():(t,i)=>{throw new Le(`Response type '${n}' is not supported`,Le.ERR_NOT_SUPPORT,i)})})})(new Response);const vD=async e=>{if(e==null)return 0;if(U.isBlob(e))return e.size;if(U.isSpecCompliantForm(e))return(await new Request(e).arrayBuffer()).byteLength;if(U.isArrayBufferView(e))return e.byteLength;if(U.isURLSearchParams(e)&&(e=e+""),U.isString(e))return(await Bu(e)).byteLength},yD=async(e,n)=>{const t=U.toFiniteNumber(e.getContentLength());return t??vD(n)},bD=Ol&&(async e=>{let{url:n,method:t,data:i,signal:r,cancelToken:o,timeout:s,onDownloadProgress:a,onUploadProgress:l,responseType:u,headers:c,withCredentials:f="same-origin",fetchOptions:d}=Iv(e);u=u?(u+"").toLowerCase():"text";let[h,p]=r||o||s?hD([r,o],s):[],m,y;const D=()=>{!m&&setTimeout(()=>{h&&h.unsubscribe()}),m=!0};let S;try{if(l&&gD&&t!=="get"&&t!=="head"&&(S=await yD(c,i))!==0){let O=new Request(n,{method:"POST",body:i,duplex:"half"}),F;U.isFormData(i)&&(F=O.headers.get("content-type"))&&c.setContentType(F),O.body&&(i=Xd(O.body,Qd,Jd(S,Ua(l)),null,Bu))}U.isString(f)||(f=f?"cors":"omit"),y=new Request(n,{...d,signal:h,method:t.toUpperCase(),headers:c.normalize().toJSON(),body:i,duplex:"half",withCredentials:f});let b=await fetch(y);const w=Hu&&(u==="stream"||u==="response");if(Hu&&(a||w)){const O={};["status","statusText","headers"].forEach(L=>{O[L]=b[L]});const F=U.toFiniteNumber(b.headers.get("content-length"));b=new Response(Xd(b.body,Qd,a&&Jd(F,Ua(a,!0)),w&&D,Bu),O)}u=u||"text";let x=await Wa[U.findKey(Wa,u)||"text"](b,e);return!w&&D(),p&&p(),await new Promise((O,F)=>{Av(O,F,{data:x,headers:ii.from(b.headers),status:b.status,statusText:b.statusText,config:e,request:y})})}catch(b){throw D(),b&&b.name==="TypeError"&&/fetch/i.test(b.message)?Object.assign(new Le("Network Error",Le.ERR_NETWORK,e,y),{cause:b.cause||b}):Le.from(b,b&&b.code,e,y)}}),Uu={http:_w,xhr:fD,fetch:bD};U.forEach(Uu,(e,n)=>{if(e){try{Object.defineProperty(e,"name",{value:n})}catch{}Object.defineProperty(e,"adapterName",{value:n})}});const qd=e=>`- ${e}`,ED=e=>U.isFunction(e)||e===null||e===!1,Nv={getAdapter:e=>{e=U.isArray(e)?e:[e];const{length:n}=e;let t,i;const r={};for(let o=0;o`adapter ${a} `+(l===!1?"is not supported by the environment":"is not available in the build"));let s=n?o.length>1?`since : -`+o.map(qd).join(` -`):" "+qd(o[0]):"as no adapter specified";throw new Le("There is no suitable adapter to dispatch the request "+s,"ERR_NOT_SUPPORT")}return i},adapters:Uu};function Yl(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new ds(null,e)}function eh(e){return Yl(e),e.headers=ii.from(e.headers),e.data=Kl.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),Nv.getAdapter(e.adapter||wf.adapter)(e).then(function(i){return Yl(e),i.data=Kl.call(e,e.transformResponse,i),i.headers=ii.from(i.headers),i},function(i){return xv(i)||(Yl(e),i&&i.response&&(i.response.data=Kl.call(e,e.transformResponse,i.response),i.response.headers=ii.from(i.response.headers))),Promise.reject(i)})}const Rv="1.7.2",Df={};["object","boolean","number","function","string","symbol"].forEach((e,n)=>{Df[e]=function(i){return typeof i===e||"a"+(n<1?"n ":" ")+e}});const th={};Df.transitional=function(n,t,i){function r(o,s){return"[Axios v"+Rv+"] Transitional option '"+o+"'"+s+(i?". "+i:"")}return(o,s,a)=>{if(n===!1)throw new Le(r(s," has been removed"+(t?" in "+t:"")),Le.ERR_DEPRECATED);return t&&!th[s]&&(th[s]=!0,console.warn(r(s," has been deprecated since v"+t+" and will be removed in the near future"))),n?n(o,s,a):!0}};function SD(e,n,t){if(typeof e!="object")throw new Le("options must be an object",Le.ERR_BAD_OPTION_VALUE);const i=Object.keys(e);let r=i.length;for(;r-- >0;){const o=i[r],s=n[o];if(s){const a=e[o],l=a===void 0||s(a,o,e);if(l!==!0)throw new Le("option "+o+" must be "+l,Le.ERR_BAD_OPTION_VALUE);continue}if(t!==!0)throw new Le("Unknown option "+o,Le.ERR_BAD_OPTION)}}const Wu={assertOptions:SD,validators:Df},_i=Wu.validators;let Ka=class{constructor(n){this.defaults=n,this.interceptors={request:new zd,response:new zd}}async request(n,t){try{return await this._request(n,t)}catch(i){if(i instanceof Error){let r;Error.captureStackTrace?Error.captureStackTrace(r={}):r=new Error;const o=r.stack?r.stack.replace(/^.+\n/,""):"";try{i.stack?o&&!String(i.stack).endsWith(o.replace(/^.+\n.+\n/,""))&&(i.stack+=` -`+o):i.stack=o}catch{}}throw i}}_request(n,t){typeof n=="string"?(t=t||{},t.url=n):t=n||{},t=Ir(this.defaults,t);const{transitional:i,paramsSerializer:r,headers:o}=t;i!==void 0&&Wu.assertOptions(i,{silentJSONParsing:_i.transitional(_i.boolean),forcedJSONParsing:_i.transitional(_i.boolean),clarifyTimeoutError:_i.transitional(_i.boolean)},!1),r!=null&&(U.isFunction(r)?t.paramsSerializer={serialize:r}:Wu.assertOptions(r,{encode:_i.function,serialize:_i.function},!0)),t.method=(t.method||this.defaults.method||"get").toLowerCase();let s=o&&U.merge(o.common,o[t.method]);o&&U.forEach(["delete","get","head","post","put","patch","common"],p=>{delete o[p]}),t.headers=ii.concat(s,o);const a=[];let l=!0;this.interceptors.request.forEach(function(m){typeof m.runWhen=="function"&&m.runWhen(t)===!1||(l=l&&m.synchronous,a.unshift(m.fulfilled,m.rejected))});const u=[];this.interceptors.response.forEach(function(m){u.push(m.fulfilled,m.rejected)});let c,f=0,d;if(!l){const p=[eh.bind(this),void 0];for(p.unshift.apply(p,a),p.push.apply(p,u),d=p.length,c=Promise.resolve(t);f{if(!i._listeners)return;let o=i._listeners.length;for(;o-- >0;)i._listeners[o](r);i._listeners=null}),this.promise.then=r=>{let o;const s=new Promise(a=>{i.subscribe(a),o=a}).then(r);return s.cancel=function(){i.unsubscribe(o)},s},n(function(o,s,a){i.reason||(i.reason=new ds(o,s,a),t(i.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(n){if(this.reason){n(this.reason);return}this._listeners?this._listeners.push(n):this._listeners=[n]}unsubscribe(n){if(!this._listeners)return;const t=this._listeners.indexOf(n);t!==-1&&this._listeners.splice(t,1)}static source(){let n;return{token:new Tf(function(r){n=r}),cancel:n}}}const wD=Tf;function DD(e){return function(t){return e.apply(null,t)}}function TD(e){return U.isObject(e)&&e.isAxiosError===!0}const Ku={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Ku).forEach(([e,n])=>{Ku[n]=e});const CD=Ku;function _v(e){const n=new ha(e),t=dv(ha.prototype.request,n);return U.extend(t,ha.prototype,n,{allOwnKeys:!0}),U.extend(t,n,null,{allOwnKeys:!0}),t.create=function(r){return _v(Ir(e,r))},t}const jt=_v(wf);jt.Axios=ha;jt.CanceledError=ds;jt.CancelToken=wD;jt.isCancel=xv;jt.VERSION=Rv;jt.toFormData=Tl;jt.AxiosError=Le;jt.Cancel=jt.CanceledError;jt.all=function(n){return Promise.all(n)};jt.spread=DD;jt.isAxiosError=TD;jt.mergeConfig=Ir;jt.AxiosHeaders=ii;jt.formToJSON=e=>Ov(U.isHTMLForm(e)?new FormData(e):e);jt.getAdapter=Nv.getAdapter;jt.HttpStatusCode=CD;jt.default=jt;const Fv=jt;window.axios=Fv;window.axios.defaults.headers.common["X-Requested-With"]="XMLHttpRequest";const OD={install(e){e.config.globalProperties.$axios=Fv}};function xD(e){return{all:e=e||new Map,on:function(n,t){var i=e.get(n);i?i.push(t):e.set(n,[t])},off:function(n,t){var i=e.get(n);i&&(t?i.splice(i.indexOf(t)>>>0,1):e.set(n,[]))},emit:function(n,t){var i=e.get(n);i&&i.slice().map(function(r){r(t)}),(i=e.get("*"))&&i.slice().map(function(r){r(n,t)})}}}const Lv=xD();window.emitter=Lv;const AD={install:(e,n)=>{e.config.globalProperties.$emitter=Lv}};var zl=["onChange","onClose","onDayCreate","onDestroy","onKeyDown","onMonthChange","onOpen","onParseConfig","onReady","onValueUpdate","onYearChange","onPreCalendarPosition"],Qr={_disable:[],allowInput:!1,allowInvalidPreload:!1,altFormat:"F j, Y",altInput:!1,altInputClass:"form-control input",animate:typeof window=="object"&&window.navigator.userAgent.indexOf("MSIE")===-1,ariaDateFormat:"F j, Y",autoFillDefaultTime:!0,clickOpens:!0,closeOnSelect:!0,conjunction:", ",dateFormat:"Y-m-d",defaultHour:12,defaultMinute:0,defaultSeconds:0,disable:[],disableMobile:!1,enableSeconds:!1,enableTime:!1,errorHandler:function(e){return typeof console<"u"&&console.warn(e)},getWeek:function(e){var n=new Date(e.getTime());n.setHours(0,0,0,0),n.setDate(n.getDate()+3-(n.getDay()+6)%7);var t=new Date(n.getFullYear(),0,4);return 1+Math.round(((n.getTime()-t.getTime())/864e5-3+(t.getDay()+6)%7)/7)},hourIncrement:1,ignoredFocusElements:[],inline:!1,locale:"default",minuteIncrement:5,mode:"single",monthSelectorType:"dropdown",nextArrow:"",noCalendar:!1,now:new Date,onChange:[],onClose:[],onDayCreate:[],onDestroy:[],onKeyDown:[],onMonthChange:[],onOpen:[],onParseConfig:[],onReady:[],onValueUpdate:[],onYearChange:[],onPreCalendarPosition:[],plugins:[],position:"auto",positionElement:void 0,prevArrow:"",shorthandCurrentMonth:!1,showMonths:1,static:!1,time_24hr:!1,weekNumbers:!1,wrap:!1},oo={weekdays:{shorthand:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],longhand:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},months:{shorthand:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],longhand:["January","February","March","April","May","June","July","August","September","October","November","December"]},daysInMonth:[31,28,31,30,31,30,31,31,30,31,30,31],firstDayOfWeek:0,ordinal:function(e){var n=e%100;if(n>3&&n<21)return"th";switch(n%10){case 1:return"st";case 2:return"nd";case 3:return"rd";default:return"th"}},rangeSeparator:" to ",weekAbbreviation:"Wk",scrollTitle:"Scroll to increment",toggleTitle:"Click to toggle",amPM:["AM","PM"],yearAriaLabel:"Year",monthAriaLabel:"Month",hourAriaLabel:"Hour",minuteAriaLabel:"Minute",time_24hr:!1},yn=function(e,n){return n===void 0&&(n=2),("000"+e).slice(n*-1)},Hn=function(e){return e===!0?1:0};function nh(e,n){var t;return function(){var i=this,r=arguments;clearTimeout(t),t=setTimeout(function(){return e.apply(i,r)},n)}}var Gl=function(e){return e instanceof Array?e:[e]};function an(e,n,t){if(t===!0)return e.classList.add(n);e.classList.remove(n)}function rt(e,n,t){var i=window.document.createElement(e);return n=n||"",t=t||"",i.className=n,t!==void 0&&(i.textContent=t),i}function Uo(e){for(;e.firstChild;)e.removeChild(e.firstChild)}function kv(e,n){if(n(e))return e;if(e.parentNode)return kv(e.parentNode,n)}function Wo(e,n){var t=rt("div","numInputWrapper"),i=rt("input","numInput "+e),r=rt("span","arrowUp"),o=rt("span","arrowDown");if(navigator.userAgent.indexOf("MSIE 9.0")===-1?i.type="number":(i.type="text",i.pattern="\\d*"),n!==void 0)for(var s in n)i.setAttribute(s,n[s]);return t.appendChild(i),t.appendChild(r),t.appendChild(o),t}function xn(e){try{if(typeof e.composedPath=="function"){var n=e.composedPath();return n[0]}return e.target}catch{return e.target}}var Zl=function(){},Ya=function(e,n,t){return t.months[n?"shorthand":"longhand"][e]},MD={D:Zl,F:function(e,n,t){e.setMonth(t.months.longhand.indexOf(n))},G:function(e,n){e.setHours((e.getHours()>=12?12:0)+parseFloat(n))},H:function(e,n){e.setHours(parseFloat(n))},J:function(e,n){e.setDate(parseFloat(n))},K:function(e,n,t){e.setHours(e.getHours()%12+12*Hn(new RegExp(t.amPM[1],"i").test(n)))},M:function(e,n,t){e.setMonth(t.months.shorthand.indexOf(n))},S:function(e,n){e.setSeconds(parseFloat(n))},U:function(e,n){return new Date(parseFloat(n)*1e3)},W:function(e,n,t){var i=parseInt(n),r=new Date(e.getFullYear(),0,2+(i-1)*7,0,0,0,0);return r.setDate(r.getDate()-r.getDay()+t.firstDayOfWeek),r},Y:function(e,n){e.setFullYear(parseFloat(n))},Z:function(e,n){return new Date(n)},d:function(e,n){e.setDate(parseFloat(n))},h:function(e,n){e.setHours((e.getHours()>=12?12:0)+parseFloat(n))},i:function(e,n){e.setMinutes(parseFloat(n))},j:function(e,n){e.setDate(parseFloat(n))},l:Zl,m:function(e,n){e.setMonth(parseFloat(n)-1)},n:function(e,n){e.setMonth(parseFloat(n)-1)},s:function(e,n){e.setSeconds(parseFloat(n))},u:function(e,n){return new Date(parseFloat(n))},w:Zl,y:function(e,n){e.setFullYear(2e3+parseFloat(n))}},mr={D:"",F:"",G:"(\\d\\d|\\d)",H:"(\\d\\d|\\d)",J:"(\\d\\d|\\d)\\w+",K:"",M:"",S:"(\\d\\d|\\d)",U:"(.+)",W:"(\\d\\d|\\d)",Y:"(\\d{4})",Z:"(.+)",d:"(\\d\\d|\\d)",h:"(\\d\\d|\\d)",i:"(\\d\\d|\\d)",j:"(\\d\\d|\\d)",l:"",m:"(\\d\\d|\\d)",n:"(\\d\\d|\\d)",s:"(\\d\\d|\\d)",u:"(.+)",w:"(\\d\\d|\\d)",y:"(\\d{2})"},ks={Z:function(e){return e.toISOString()},D:function(e,n,t){return n.weekdays.shorthand[ks.w(e,n,t)]},F:function(e,n,t){return Ya(ks.n(e,n,t)-1,!1,n)},G:function(e,n,t){return yn(ks.h(e,n,t))},H:function(e){return yn(e.getHours())},J:function(e,n){return n.ordinal!==void 0?e.getDate()+n.ordinal(e.getDate()):e.getDate()},K:function(e,n){return n.amPM[Hn(e.getHours()>11)]},M:function(e,n){return Ya(e.getMonth(),!0,n)},S:function(e){return yn(e.getSeconds())},U:function(e){return e.getTime()/1e3},W:function(e,n,t){return t.getWeek(e)},Y:function(e){return yn(e.getFullYear(),4)},d:function(e){return yn(e.getDate())},h:function(e){return e.getHours()%12?e.getHours()%12:12},i:function(e){return yn(e.getMinutes())},j:function(e){return e.getDate()},l:function(e,n){return n.weekdays.longhand[e.getDay()]},m:function(e){return yn(e.getMonth()+1)},n:function(e){return e.getMonth()+1},s:function(e){return e.getSeconds()},u:function(e){return e.getTime()},w:function(e){return e.getDay()},y:function(e){return String(e.getFullYear()).substring(2)}},$v=function(e){var n=e.config,t=n===void 0?Qr:n,i=e.l10n,r=i===void 0?oo:i,o=e.isMobile,s=o===void 0?!1:o;return function(a,l,u){var c=u||r;return t.formatDate!==void 0&&!s?t.formatDate(a,l,c):l.split("").map(function(f,d,h){return ks[f]&&h[d-1]!=="\\"?ks[f](a,c,t):f!=="\\"?f:""}).join("")}},Yu=function(e){var n=e.config,t=n===void 0?Qr:n,i=e.l10n,r=i===void 0?oo:i;return function(o,s,a,l){if(!(o!==0&&!o)){var u=l||r,c,f=o;if(o instanceof Date)c=new Date(o.getTime());else if(typeof o!="string"&&o.toFixed!==void 0)c=new Date(o);else if(typeof o=="string"){var d=s||(t||Qr).dateFormat,h=String(o).trim();if(h==="today")c=new Date,a=!0;else if(t&&t.parseDate)c=t.parseDate(o,d);else if(/Z$/.test(h)||/GMT$/.test(h))c=new Date(o);else{for(var p=void 0,m=[],y=0,D=0,S="";yMath.min(n,t)&&e=0?new Date:new Date(t.config.minDate.getTime()),N=Jl(t.config);T.setHours(N.hours,N.minutes,N.seconds,T.getMilliseconds()),t.selectedDates=[T],t.latestSelectedDateObj=T}E!==void 0&&E.type!=="blur"&&At(E);var H=t._input.value;f(),Ee(),t._input.value!==H&&t._debouncedChange()}function u(E,T){return E%12+12*Hn(T===t.l10n.amPM[1])}function c(E){switch(E%24){case 0:case 12:return 12;default:return E%12}}function f(){if(!(t.hourElement===void 0||t.minuteElement===void 0)){var E=(parseInt(t.hourElement.value.slice(-2),10)||0)%24,T=(parseInt(t.minuteElement.value,10)||0)%60,N=t.secondElement!==void 0?(parseInt(t.secondElement.value,10)||0)%60:0;t.amPM!==void 0&&(E=u(E,t.amPM.textContent));var H=t.config.minTime!==void 0||t.config.minDate&&t.minDateHasTime&&t.latestSelectedDateObj&&An(t.latestSelectedDateObj,t.config.minDate,!0)===0,se=t.config.maxTime!==void 0||t.config.maxDate&&t.maxDateHasTime&&t.latestSelectedDateObj&&An(t.latestSelectedDateObj,t.config.maxDate,!0)===0;if(t.config.maxTime!==void 0&&t.config.minTime!==void 0&&t.config.minTime>t.config.maxTime){var he=Xl(t.config.minTime.getHours(),t.config.minTime.getMinutes(),t.config.minTime.getSeconds()),$e=Xl(t.config.maxTime.getHours(),t.config.maxTime.getMinutes(),t.config.maxTime.getSeconds()),Se=Xl(E,T,N);if(Se>$e&&Se=12)]),t.secondElement!==void 0&&(t.secondElement.value=yn(N)))}function p(E){var T=xn(E),N=parseInt(T.value)+(E.delta||0);(N/1e3>1||E.key==="Enter"&&!/[^\d]/.test(N.toString()))&&ce(N)}function m(E,T,N,H){if(T instanceof Array)return T.forEach(function(se){return m(E,se,N,H)});if(E instanceof Array)return E.forEach(function(se){return m(se,T,N,H)});E.addEventListener(T,N,H),t._handlers.push({remove:function(){return E.removeEventListener(T,N,H)}})}function y(){K("onChange")}function D(){if(t.config.wrap&&["open","close","toggle","clear"].forEach(function(N){Array.prototype.forEach.call(t.element.querySelectorAll("[data-"+N+"]"),function(H){return m(H,"click",t[N])})}),t.isMobile){z();return}var E=nh(M,50);if(t._debouncedChange=nh(y,RD),t.daysContainer&&!/iPhone|iPad|iPod/i.test(navigator.userAgent)&&m(t.daysContainer,"mouseover",function(N){t.config.mode==="range"&&dt(xn(N))}),m(t._input,"keydown",mt),t.calendarContainer!==void 0&&m(t.calendarContainer,"keydown",mt),!t.config.inline&&!t.config.static&&m(window,"resize",E),window.ontouchstart!==void 0?m(window.document,"touchstart",q):m(window.document,"mousedown",q),m(window.document,"focus",q,{capture:!0}),t.config.clickOpens===!0&&(m(t._input,"focus",t.open),m(t._input,"click",t.open)),t.daysContainer!==void 0&&(m(t.monthNav,"click",Me),m(t.monthNav,["keyup","increment"],p),m(t.daysContainer,"click",ve)),t.timeContainer!==void 0&&t.minuteElement!==void 0&&t.hourElement!==void 0){var T=function(N){return xn(N).select()};m(t.timeContainer,["increment"],l),m(t.timeContainer,"blur",l,{capture:!0}),m(t.timeContainer,"click",b),m([t.hourElement,t.minuteElement],["focus","click"],T),t.secondElement!==void 0&&m(t.secondElement,"focus",function(){return t.secondElement&&t.secondElement.select()}),t.amPM!==void 0&&m(t.amPM,"click",function(N){l(N)})}t.config.allowInput&&m(t._input,"blur",ft)}function S(E,T){var N=E!==void 0?t.parseDate(E):t.latestSelectedDateObj||(t.config.minDate&&t.config.minDate>t.now?t.config.minDate:t.config.maxDate&&t.config.maxDate1),t.calendarContainer.appendChild(E);var se=t.config.appendTo!==void 0&&t.config.appendTo.nodeType!==void 0;if((t.config.inline||t.config.static)&&(t.calendarContainer.classList.add(t.config.inline?"inline":"static"),t.config.inline&&(!se&&t.element.parentNode?t.element.parentNode.insertBefore(t.calendarContainer,t._input.nextSibling):t.config.appendTo!==void 0&&t.config.appendTo.appendChild(t.calendarContainer)),t.config.static)){var he=rt("div","flatpickr-wrapper");t.element.parentNode&&t.element.parentNode.insertBefore(he,t.element),he.appendChild(t.element),t.altInput&&he.appendChild(t.altInput),he.appendChild(t.calendarContainer)}!t.config.static&&!t.config.inline&&(t.config.appendTo!==void 0?t.config.appendTo:window.document.body).appendChild(t.calendarContainer)}function O(E,T,N,H){var se=Ne(T,!0),he=rt("span",E,T.getDate().toString());return he.dateObj=T,he.$i=H,he.setAttribute("aria-label",t.formatDate(T,t.config.ariaDateFormat)),E.indexOf("hidden")===-1&&An(T,t.now)===0&&(t.todayDateElem=he,he.classList.add("today"),he.setAttribute("aria-current","date")),se?(he.tabIndex=-1,we(T)&&(he.classList.add("selected"),t.selectedDateElem=he,t.config.mode==="range"&&(an(he,"startRange",t.selectedDates[0]&&An(T,t.selectedDates[0],!0)===0),an(he,"endRange",t.selectedDates[1]&&An(T,t.selectedDates[1],!0)===0),E==="nextMonthDay"&&he.classList.add("inRange")))):he.classList.add("flatpickr-disabled"),t.config.mode==="range"&&me(T)&&!we(T)&&he.classList.add("inRange"),t.weekNumbers&&t.config.showMonths===1&&E!=="prevMonthDay"&&H%7===6&&t.weekNumbers.insertAdjacentHTML("beforeend",""+t.config.getWeek(T)+""),K("onDayCreate",he),he}function F(E){E.focus(),t.config.mode==="range"&&dt(E)}function L(E){for(var T=E>0?0:t.config.showMonths-1,N=E>0?t.config.showMonths:-1,H=T;H!=N;H+=E)for(var se=t.daysContainer.children[H],he=E>0?0:se.children.length-1,$e=E>0?se.children.length:-1,Se=he;Se!=$e;Se+=E){var He=se.children[Se];if(He.className.indexOf("hidden")===-1&&Ne(He.dateObj))return He}}function C(E,T){for(var N=E.className.indexOf("Month")===-1?E.dateObj.getMonth():t.currentMonth,H=T>0?t.config.showMonths:-1,se=T>0?1:-1,he=N-t.currentMonth;he!=H;he+=se)for(var $e=t.daysContainer.children[he],Se=N-t.currentMonth===he?E.$i+T:T<0?$e.children.length-1:0,He=$e.children.length,ye=Se;ye>=0&&ye0?He:-1);ye+=se){var Ie=$e.children[ye];if(Ie.className.indexOf("hidden")===-1&&Ne(Ie.dateObj)&&Math.abs(E.$i-ye)>=Math.abs(T))return F(Ie)}t.changeMonth(se),I(L(se),0)}function I(E,T){var N=o(),H=De(N||document.body),se=E!==void 0?E:H?N:t.selectedDateElem!==void 0&&De(t.selectedDateElem)?t.selectedDateElem:t.todayDateElem!==void 0&&De(t.todayDateElem)?t.todayDateElem:L(T>0?1:-1);se===void 0?t._input.focus():H?C(se,T):F(se)}function j(E,T){for(var N=(new Date(E,T,1).getDay()-t.l10n.firstDayOfWeek+7)%7,H=t.utils.getDaysInMonth((T-1+12)%12,E),se=t.utils.getDaysInMonth(T,E),he=window.document.createDocumentFragment(),$e=t.config.showMonths>1,Se=$e?"prevMonthDay hidden":"prevMonthDay",He=$e?"nextMonthDay hidden":"nextMonthDay",ye=H+1-N,Ie=0;ye<=H;ye++,Ie++)he.appendChild(O("flatpickr-day "+Se,new Date(E,T-1,ye),ye,Ie));for(ye=1;ye<=se;ye++,Ie++)he.appendChild(O("flatpickr-day",new Date(E,T,ye),ye,Ie));for(var ht=se+1;ht<=42-N&&(t.config.showMonths===1||Ie%7!==0);ht++,Ie++)he.appendChild(O("flatpickr-day "+He,new Date(E,T+1,ht%se),ht,Ie));var oi=rt("div","dayContainer");return oi.appendChild(he),oi}function R(){if(t.daysContainer!==void 0){Uo(t.daysContainer),t.weekNumbers&&Uo(t.weekNumbers);for(var E=document.createDocumentFragment(),T=0;T1||t.config.monthSelectorType!=="dropdown")){var E=function(H){return t.config.minDate!==void 0&&t.currentYear===t.config.minDate.getFullYear()&&Ht.config.maxDate.getMonth())};t.monthsDropdownContainer.tabIndex=-1,t.monthsDropdownContainer.innerHTML="";for(var T=0;T<12;T++)if(E(T)){var N=rt("option","flatpickr-monthDropdown-month");N.value=new Date(t.currentYear,T).getMonth().toString(),N.textContent=Ya(T,t.config.shorthandCurrentMonth,t.l10n),N.tabIndex=-1,t.currentMonth===T&&(N.selected=!0),t.monthsDropdownContainer.appendChild(N)}}}function V(){var E=rt("div","flatpickr-month"),T=window.document.createDocumentFragment(),N;t.config.showMonths>1||t.config.monthSelectorType==="static"?N=rt("span","cur-month"):(t.monthsDropdownContainer=rt("select","flatpickr-monthDropdown-months"),t.monthsDropdownContainer.setAttribute("aria-label",t.l10n.monthAriaLabel),m(t.monthsDropdownContainer,"change",function($e){var Se=xn($e),He=parseInt(Se.value,10);t.changeMonth(He-t.currentMonth),K("onMonthChange")}),_(),N=t.monthsDropdownContainer);var H=Wo("cur-year",{tabindex:"-1"}),se=H.getElementsByTagName("input")[0];se.setAttribute("aria-label",t.l10n.yearAriaLabel),t.config.minDate&&se.setAttribute("min",t.config.minDate.getFullYear().toString()),t.config.maxDate&&(se.setAttribute("max",t.config.maxDate.getFullYear().toString()),se.disabled=!!t.config.minDate&&t.config.minDate.getFullYear()===t.config.maxDate.getFullYear());var he=rt("div","flatpickr-current-month");return he.appendChild(N),he.appendChild(H),T.appendChild(he),E.appendChild(T),{container:E,yearElement:se,monthElement:N}}function G(){Uo(t.monthNav),t.monthNav.appendChild(t.prevMonthNav),t.config.showMonths&&(t.yearElements=[],t.monthElements=[]);for(var E=t.config.showMonths;E--;){var T=V();t.yearElements.push(T.yearElement),t.monthElements.push(T.monthElement),t.monthNav.appendChild(T.container)}t.monthNav.appendChild(t.nextMonthNav)}function $(){return t.monthNav=rt("div","flatpickr-months"),t.yearElements=[],t.monthElements=[],t.prevMonthNav=rt("span","flatpickr-prev-month"),t.prevMonthNav.innerHTML=t.config.prevArrow,t.nextMonthNav=rt("span","flatpickr-next-month"),t.nextMonthNav.innerHTML=t.config.nextArrow,G(),Object.defineProperty(t,"_hidePrevMonthArrow",{get:function(){return t.__hidePrevMonthArrow},set:function(E){t.__hidePrevMonthArrow!==E&&(an(t.prevMonthNav,"flatpickr-disabled",E),t.__hidePrevMonthArrow=E)}}),Object.defineProperty(t,"_hideNextMonthArrow",{get:function(){return t.__hideNextMonthArrow},set:function(E){t.__hideNextMonthArrow!==E&&(an(t.nextMonthNav,"flatpickr-disabled",E),t.__hideNextMonthArrow=E)}}),t.currentYearElement=t.yearElements[0],re(),t.monthNav}function W(){t.calendarContainer.classList.add("hasTime"),t.config.noCalendar&&t.calendarContainer.classList.add("noCalendar");var E=Jl(t.config);t.timeContainer=rt("div","flatpickr-time"),t.timeContainer.tabIndex=-1;var T=rt("span","flatpickr-time-separator",":"),N=Wo("flatpickr-hour",{"aria-label":t.l10n.hourAriaLabel});t.hourElement=N.getElementsByTagName("input")[0];var H=Wo("flatpickr-minute",{"aria-label":t.l10n.minuteAriaLabel});if(t.minuteElement=H.getElementsByTagName("input")[0],t.hourElement.tabIndex=t.minuteElement.tabIndex=-1,t.hourElement.value=yn(t.latestSelectedDateObj?t.latestSelectedDateObj.getHours():t.config.time_24hr?E.hours:c(E.hours)),t.minuteElement.value=yn(t.latestSelectedDateObj?t.latestSelectedDateObj.getMinutes():E.minutes),t.hourElement.setAttribute("step",t.config.hourIncrement.toString()),t.minuteElement.setAttribute("step",t.config.minuteIncrement.toString()),t.hourElement.setAttribute("min",t.config.time_24hr?"0":"1"),t.hourElement.setAttribute("max",t.config.time_24hr?"23":"12"),t.hourElement.setAttribute("maxlength","2"),t.minuteElement.setAttribute("min","0"),t.minuteElement.setAttribute("max","59"),t.minuteElement.setAttribute("maxlength","2"),t.timeContainer.appendChild(N),t.timeContainer.appendChild(T),t.timeContainer.appendChild(H),t.config.time_24hr&&t.timeContainer.classList.add("time24hr"),t.config.enableSeconds){t.timeContainer.classList.add("hasSeconds");var se=Wo("flatpickr-second");t.secondElement=se.getElementsByTagName("input")[0],t.secondElement.value=yn(t.latestSelectedDateObj?t.latestSelectedDateObj.getSeconds():E.seconds),t.secondElement.setAttribute("step",t.minuteElement.getAttribute("step")),t.secondElement.setAttribute("min","0"),t.secondElement.setAttribute("max","59"),t.secondElement.setAttribute("maxlength","2"),t.timeContainer.appendChild(rt("span","flatpickr-time-separator",":")),t.timeContainer.appendChild(se)}return t.config.time_24hr||(t.amPM=rt("span","flatpickr-am-pm",t.l10n.amPM[Hn((t.latestSelectedDateObj?t.hourElement.value:t.config.defaultHour)>11)]),t.amPM.title=t.l10n.toggleTitle,t.amPM.tabIndex=-1,t.timeContainer.appendChild(t.amPM)),t.timeContainer}function J(){t.weekdayContainer?Uo(t.weekdayContainer):t.weekdayContainer=rt("div","flatpickr-weekdays");for(var E=t.config.showMonths;E--;){var T=rt("div","flatpickr-weekdaycontainer");t.weekdayContainer.appendChild(T)}return Ce(),t.weekdayContainer}function Ce(){if(t.weekdayContainer){var E=t.l10n.firstDayOfWeek,T=ih(t.l10n.weekdays.shorthand);E>0&&E - `+T.join("")+` - - `}}function Qe(){t.calendarContainer.classList.add("hasWeeks");var E=rt("div","flatpickr-weekwrapper");E.appendChild(rt("span","flatpickr-weekday",t.l10n.weekAbbreviation));var T=rt("div","flatpickr-weeks");return E.appendChild(T),{weekWrapper:E,weekNumbers:T}}function Pe(E,T){T===void 0&&(T=!0);var N=T?E:E-t.currentMonth;N<0&&t._hidePrevMonthArrow===!0||N>0&&t._hideNextMonthArrow===!0||(t.currentMonth+=N,(t.currentMonth<0||t.currentMonth>11)&&(t.currentYear+=t.currentMonth>11?1:-1,t.currentMonth=(t.currentMonth+12)%12,K("onYearChange"),_()),R(),K("onMonthChange"),re())}function Be(E,T){if(E===void 0&&(E=!0),T===void 0&&(T=!0),t.input.value="",t.altInput!==void 0&&(t.altInput.value=""),t.mobileInput!==void 0&&(t.mobileInput.value=""),t.selectedDates=[],t.latestSelectedDateObj=void 0,T===!0&&(t.currentYear=t._initialDate.getFullYear(),t.currentMonth=t._initialDate.getMonth()),t.config.enableTime===!0){var N=Jl(t.config),H=N.hours,se=N.minutes,he=N.seconds;h(H,se,he)}t.redraw(),E&&K("onChange")}function at(){t.isOpen=!1,t.isMobile||(t.calendarContainer!==void 0&&t.calendarContainer.classList.remove("open"),t._input!==void 0&&t._input.classList.remove("active")),K("onClose")}function Ke(){t.config!==void 0&&K("onDestroy");for(var E=t._handlers.length;E--;)t._handlers[E].remove();if(t._handlers=[],t.mobileInput)t.mobileInput.parentNode&&t.mobileInput.parentNode.removeChild(t.mobileInput),t.mobileInput=void 0;else if(t.calendarContainer&&t.calendarContainer.parentNode)if(t.config.static&&t.calendarContainer.parentNode){var T=t.calendarContainer.parentNode;if(T.lastChild&&T.removeChild(T.lastChild),T.parentNode){for(;T.firstChild;)T.parentNode.insertBefore(T.firstChild,T);T.parentNode.removeChild(T)}}else t.calendarContainer.parentNode.removeChild(t.calendarContainer);t.altInput&&(t.input.type="text",t.altInput.parentNode&&t.altInput.parentNode.removeChild(t.altInput),delete t.altInput),t.input&&(t.input.type=t.input._type,t.input.classList.remove("flatpickr-input"),t.input.removeAttribute("readonly")),["_showTimeInput","latestSelectedDateObj","_hideNextMonthArrow","_hidePrevMonthArrow","__hideNextMonthArrow","__hidePrevMonthArrow","isMobile","isOpen","selectedDateElem","minDateHasTime","maxDateHasTime","days","daysContainer","_input","_positionElement","innerContainer","rContainer","monthNav","todayDateElem","calendarContainer","weekdayContainer","prevMonthNav","nextMonthNav","monthsDropdownContainer","currentMonthElement","currentYearElement","navigationCurrentMonth","selectedDateElem","config"].forEach(function(N){try{delete t[N]}catch{}})}function nt(E){return t.calendarContainer.contains(E)}function q(E){if(t.isOpen&&!t.config.inline){var T=xn(E),N=nt(T),H=T===t.input||T===t.altInput||t.element.contains(T)||E.path&&E.path.indexOf&&(~E.path.indexOf(t.input)||~E.path.indexOf(t.altInput)),se=!H&&!N&&!nt(E.relatedTarget),he=!t.config.ignoredFocusElements.some(function($e){return $e.contains(T)});se&&he&&(t.config.allowInput&&t.setDate(t._input.value,!1,t.config.altInput?t.config.altFormat:t.config.dateFormat),t.timeContainer!==void 0&&t.minuteElement!==void 0&&t.hourElement!==void 0&&t.input.value!==""&&t.input.value!==void 0&&l(),t.close(),t.config&&t.config.mode==="range"&&t.selectedDates.length===1&&t.clear(!1))}}function ce(E){if(!(!E||t.config.minDate&&Et.config.maxDate.getFullYear())){var T=E,N=t.currentYear!==T;t.currentYear=T||t.currentYear,t.config.maxDate&&t.currentYear===t.config.maxDate.getFullYear()?t.currentMonth=Math.min(t.config.maxDate.getMonth(),t.currentMonth):t.config.minDate&&t.currentYear===t.config.minDate.getFullYear()&&(t.currentMonth=Math.max(t.config.minDate.getMonth(),t.currentMonth)),N&&(t.redraw(),K("onYearChange"),_())}}function Ne(E,T){var N;T===void 0&&(T=!0);var H=t.parseDate(E,void 0,T);if(t.config.minDate&&H&&An(H,t.config.minDate,T!==void 0?T:!t.minDateHasTime)<0||t.config.maxDate&&H&&An(H,t.config.maxDate,T!==void 0?T:!t.maxDateHasTime)>0)return!1;if(!t.config.enable&&t.config.disable.length===0)return!0;if(H===void 0)return!1;for(var se=!!t.config.enable,he=(N=t.config.enable)!==null&&N!==void 0?N:t.config.disable,$e=0,Se=void 0;$e=Se.from.getTime()&&H.getTime()<=Se.to.getTime())return se}return!se}function De(E){return t.daysContainer!==void 0?E.className.indexOf("hidden")===-1&&E.className.indexOf("flatpickr-disabled")===-1&&t.daysContainer.contains(E):!1}function ft(E){var T=E.target===t._input,N=t._input.value.trimEnd()!==de();T&&N&&!(E.relatedTarget&&nt(E.relatedTarget))&&t.setDate(t._input.value,!0,E.target===t.altInput?t.config.altFormat:t.config.dateFormat)}function mt(E){var T=xn(E),N=t.config.wrap?e.contains(T):T===t._input,H=t.config.allowInput,se=t.isOpen&&(!H||!N),he=t.config.inline&&N&&!H;if(E.keyCode===13&&N){if(H)return t.setDate(t._input.value,!0,T===t.altInput?t.config.altFormat:t.config.dateFormat),t.close(),T.blur();t.open()}else if(nt(T)||se||he){var $e=!!t.timeContainer&&t.timeContainer.contains(T);switch(E.keyCode){case 13:$e?(E.preventDefault(),l(),le()):ve(E);break;case 27:E.preventDefault(),le();break;case 8:case 46:N&&!t.config.allowInput&&(E.preventDefault(),t.clear());break;case 37:case 39:if(!$e&&!N){E.preventDefault();var Se=o();if(t.daysContainer!==void 0&&(H===!1||Se&&De(Se))){var He=E.keyCode===39?1:-1;E.ctrlKey?(E.stopPropagation(),Pe(He),I(L(1),0)):I(void 0,He)}}else t.hourElement&&t.hourElement.focus();break;case 38:case 40:E.preventDefault();var ye=E.keyCode===40?1:-1;t.daysContainer&&T.$i!==void 0||T===t.input||T===t.altInput?E.ctrlKey?(E.stopPropagation(),ce(t.currentYear-ye),I(L(1),0)):$e||I(void 0,ye*7):T===t.currentYearElement?ce(t.currentYear-ye):t.config.enableTime&&(!$e&&t.hourElement&&t.hourElement.focus(),l(E),t._debouncedChange());break;case 9:if($e){var Ie=[t.hourElement,t.minuteElement,t.secondElement,t.amPM].concat(t.pluginElements).filter(function(On){return On}),ht=Ie.indexOf(T);if(ht!==-1){var oi=Ie[ht+(E.shiftKey?-1:1)];E.preventDefault(),(oi||t._input).focus()}}else!t.config.noCalendar&&t.daysContainer&&t.daysContainer.contains(T)&&E.shiftKey&&(E.preventDefault(),t._input.focus());break}}if(t.amPM!==void 0&&T===t.amPM)switch(E.key){case t.l10n.amPM[0].charAt(0):case t.l10n.amPM[0].charAt(0).toLowerCase():t.amPM.textContent=t.l10n.amPM[0],f(),Ee();break;case t.l10n.amPM[1].charAt(0):case t.l10n.amPM[1].charAt(0).toLowerCase():t.amPM.textContent=t.l10n.amPM[1],f(),Ee();break}(N||nt(T))&&K("onKeyDown",E)}function dt(E,T){if(T===void 0&&(T="flatpickr-day"),!(t.selectedDates.length!==1||E&&(!E.classList.contains(T)||E.classList.contains("flatpickr-disabled")))){for(var N=E?E.dateObj.getTime():t.days.firstElementChild.dateObj.getTime(),H=t.parseDate(t.selectedDates[0],void 0,!0).getTime(),se=Math.min(N,t.selectedDates[0].getTime()),he=Math.max(N,t.selectedDates[0].getTime()),$e=!1,Se=0,He=0,ye=se;yese&&yeSe)?Se=ye:ye>H&&(!He||ye ."+T));Ie.forEach(function(ht){var oi=ht.dateObj,On=oi.getTime(),hs=Se>0&&On0&&On>He;if(hs){ht.classList.add("notAllowed"),["inRange","startRange","endRange"].forEach(function(Fr){ht.classList.remove(Fr)});return}else if($e&&!hs)return;["startRange","inRange","endRange","notAllowed"].forEach(function(Fr){ht.classList.remove(Fr)}),E!==void 0&&(E.classList.add(N<=t.selectedDates[0].getTime()?"startRange":"endRange"),HN&&On===H&&ht.classList.add("endRange"),On>=Se&&(He===0||On<=He)&&ID(On,H,N)&&ht.classList.add("inRange"))})}}function M(){t.isOpen&&!t.config.static&&!t.config.inline&&ne()}function P(E,T){if(T===void 0&&(T=t._positionElement),t.isMobile===!0){if(E){E.preventDefault();var N=xn(E);N&&N.blur()}t.mobileInput!==void 0&&(t.mobileInput.focus(),t.mobileInput.click()),K("onOpen");return}else if(t._input.disabled||t.config.inline)return;var H=t.isOpen;t.isOpen=!0,H||(t.calendarContainer.classList.add("open"),t._input.classList.add("active"),K("onOpen"),ne(T)),t.config.enableTime===!0&&t.config.noCalendar===!0&&t.config.allowInput===!1&&(E===void 0||!t.timeContainer.contains(E.relatedTarget))&&setTimeout(function(){return t.hourElement.select()},50)}function B(E){return function(T){var N=t.config["_"+E+"Date"]=t.parseDate(T,t.config.dateFormat),H=t.config["_"+(E==="min"?"max":"min")+"Date"];N!==void 0&&(t[E==="min"?"minDateHasTime":"maxDateHasTime"]=N.getHours()>0||N.getMinutes()>0||N.getSeconds()>0),t.selectedDates&&(t.selectedDates=t.selectedDates.filter(function(se){return Ne(se)}),!t.selectedDates.length&&E==="min"&&d(N),Ee()),t.daysContainer&&(X(),N!==void 0?t.currentYearElement[E]=N.getFullYear().toString():t.currentYearElement.removeAttribute(E),t.currentYearElement.disabled=!!H&&N!==void 0&&H.getFullYear()===N.getFullYear())}}function Z(){var E=["wrap","weekNumbers","allowInput","allowInvalidPreload","clickOpens","time_24hr","enableTime","noCalendar","altInput","shorthandCurrentMonth","inline","static","enableSeconds","disableMobile"],T=tn(tn({},JSON.parse(JSON.stringify(e.dataset||{}))),n),N={};t.config.parseDate=T.parseDate,t.config.formatDate=T.formatDate,Object.defineProperty(t.config,"enable",{get:function(){return t.config._enable},set:function(Ie){t.config._enable=g(Ie)}}),Object.defineProperty(t.config,"disable",{get:function(){return t.config._disable},set:function(Ie){t.config._disable=g(Ie)}});var H=T.mode==="time";if(!T.dateFormat&&(T.enableTime||H)){var se=kt.defaultConfig.dateFormat||Qr.dateFormat;N.dateFormat=T.noCalendar||H?"H:i"+(T.enableSeconds?":S":""):se+" H:i"+(T.enableSeconds?":S":"")}if(T.altInput&&(T.enableTime||H)&&!T.altFormat){var he=kt.defaultConfig.altFormat||Qr.altFormat;N.altFormat=T.noCalendar||H?"h:i"+(T.enableSeconds?":S K":" K"):he+(" h:i"+(T.enableSeconds?":S":"")+" K")}Object.defineProperty(t.config,"minDate",{get:function(){return t.config._minDate},set:B("min")}),Object.defineProperty(t.config,"maxDate",{get:function(){return t.config._maxDate},set:B("max")});var $e=function(Ie){return function(ht){t.config[Ie==="min"?"_minTime":"_maxTime"]=t.parseDate(ht,"H:i:S")}};Object.defineProperty(t.config,"minTime",{get:function(){return t.config._minTime},set:$e("min")}),Object.defineProperty(t.config,"maxTime",{get:function(){return t.config._maxTime},set:$e("max")}),T.mode==="time"&&(t.config.noCalendar=!0,t.config.enableTime=!0),Object.assign(t.config,N,T);for(var Se=0;Se-1?t.config[ye]=Gl(He[ye]).map(s).concat(t.config[ye]):typeof T[ye]>"u"&&(t.config[ye]=He[ye])}T.altInputClass||(t.config.altInputClass=Y().className+" "+t.config.altInputClass),K("onParseConfig")}function Y(){return t.config.wrap?e.querySelector("[data-input]"):e}function Q(){typeof t.config.locale!="object"&&typeof kt.l10ns[t.config.locale]>"u"&&t.config.errorHandler(new Error("flatpickr: invalid locale "+t.config.locale)),t.l10n=tn(tn({},kt.l10ns.default),typeof t.config.locale=="object"?t.config.locale:t.config.locale!=="default"?kt.l10ns[t.config.locale]:void 0),mr.D="("+t.l10n.weekdays.shorthand.join("|")+")",mr.l="("+t.l10n.weekdays.longhand.join("|")+")",mr.M="("+t.l10n.months.shorthand.join("|")+")",mr.F="("+t.l10n.months.longhand.join("|")+")",mr.K="("+t.l10n.amPM[0]+"|"+t.l10n.amPM[1]+"|"+t.l10n.amPM[0].toLowerCase()+"|"+t.l10n.amPM[1].toLowerCase()+")";var E=tn(tn({},n),JSON.parse(JSON.stringify(e.dataset||{})));E.time_24hr===void 0&&kt.defaultConfig.time_24hr===void 0&&(t.config.time_24hr=t.l10n.time_24hr),t.formatDate=$v(t),t.parseDate=Yu({config:t.config,l10n:t.l10n})}function ne(E){if(typeof t.config.position=="function")return void t.config.position(t,E);if(t.calendarContainer!==void 0){K("onPreCalendarPosition");var T=E||t._positionElement,N=Array.prototype.reduce.call(t.calendarContainer.children,function(Py,Ny){return Py+Ny.offsetHeight},0),H=t.calendarContainer.offsetWidth,se=t.config.position.split(" "),he=se[0],$e=se.length>1?se[1]:null,Se=T.getBoundingClientRect(),He=window.innerHeight-Se.bottom,ye=he==="above"||he!=="below"&&HeN,Ie=window.pageYOffset+Se.top+(ye?-N-2:T.offsetHeight+2);if(an(t.calendarContainer,"arrowTop",!ye),an(t.calendarContainer,"arrowBottom",ye),!t.config.inline){var ht=window.pageXOffset+Se.left,oi=!1,On=!1;$e==="center"?(ht-=(H-Se.width)/2,oi=!0):$e==="right"&&(ht-=H-Se.width,On=!0),an(t.calendarContainer,"arrowLeft",!oi&&!On),an(t.calendarContainer,"arrowCenter",oi),an(t.calendarContainer,"arrowRight",On);var hs=window.document.body.offsetWidth-(window.pageXOffset+Se.right),Fr=ht+H>window.document.body.offsetWidth,Ty=hs+H>window.document.body.offsetWidth;if(an(t.calendarContainer,"rightMost",Fr),!t.config.static)if(t.calendarContainer.style.top=Ie+"px",!Fr)t.calendarContainer.style.left=ht+"px",t.calendarContainer.style.right="auto";else if(!Ty)t.calendarContainer.style.left="auto",t.calendarContainer.style.right=hs+"px";else{var Pl=te();if(Pl===void 0)return;var Cy=window.document.body.offsetWidth,Oy=Math.max(0,Cy/2-H/2),xy=".flatpickr-calendar.centerMost:before",Ay=".flatpickr-calendar.centerMost:after",My=Pl.cssRules.length,Iy="{left:"+Se.left+"px;right:auto;}";an(t.calendarContainer,"rightMost",!1),an(t.calendarContainer,"centerMost",!0),Pl.insertRule(xy+","+Ay+Iy,My),t.calendarContainer.style.left=Oy+"px",t.calendarContainer.style.right="auto"}}}}function te(){for(var E=null,T=0;Tt.currentMonth+t.config.showMonths-1)&&t.config.mode!=="range";if(t.selectedDateElem=H,t.config.mode==="single")t.selectedDates=[se];else if(t.config.mode==="multiple"){var $e=we(se);$e?t.selectedDates.splice(parseInt($e),1):t.selectedDates.push(se)}else t.config.mode==="range"&&(t.selectedDates.length===2&&t.clear(!1,!1),t.latestSelectedDateObj=se,t.selectedDates.push(se),An(se,t.selectedDates[0],!0)!==0&&t.selectedDates.sort(function(Ie,ht){return Ie.getTime()-ht.getTime()}));if(f(),he){var Se=t.currentYear!==se.getFullYear();t.currentYear=se.getFullYear(),t.currentMonth=se.getMonth(),Se&&(K("onYearChange"),_()),K("onMonthChange")}if(re(),R(),Ee(),!he&&t.config.mode!=="range"&&t.config.showMonths===1?F(H):t.selectedDateElem!==void 0&&t.hourElement===void 0&&t.selectedDateElem&&t.selectedDateElem.focus(),t.hourElement!==void 0&&t.hourElement!==void 0&&t.hourElement.focus(),t.config.closeOnSelect){var He=t.config.mode==="single"&&!t.config.enableTime,ye=t.config.mode==="range"&&t.selectedDates.length===2&&!t.config.enableTime;(He||ye)&&le()}y()}}var fe={locale:[Q,Ce],showMonths:[G,a,J],minDate:[S],maxDate:[S],positionElement:[k],clickOpens:[function(){t.config.clickOpens===!0?(m(t._input,"focus",t.open),m(t._input,"click",t.open)):(t._input.removeEventListener("focus",t.open),t._input.removeEventListener("click",t.open))}]};function Te(E,T){if(E!==null&&typeof E=="object"){Object.assign(t.config,E);for(var N in E)fe[N]!==void 0&&fe[N].forEach(function(H){return H()})}else t.config[E]=T,fe[E]!==void 0?fe[E].forEach(function(H){return H()}):zl.indexOf(E)>-1&&(t.config[E]=Gl(T));t.redraw(),Ee(!0)}function Ae(E,T){var N=[];if(E instanceof Array)N=E.map(function(H){return t.parseDate(H,T)});else if(E instanceof Date||typeof E=="number")N=[t.parseDate(E,T)];else if(typeof E=="string")switch(t.config.mode){case"single":case"time":N=[t.parseDate(E,T)];break;case"multiple":N=E.split(t.config.conjunction).map(function(H){return t.parseDate(H,T)});break;case"range":N=E.split(t.l10n.rangeSeparator).map(function(H){return t.parseDate(H,T)});break}else t.config.errorHandler(new Error("Invalid date supplied: "+JSON.stringify(E)));t.selectedDates=t.config.allowInvalidPreload?N:N.filter(function(H){return H instanceof Date&&Ne(H,!1)}),t.config.mode==="range"&&t.selectedDates.sort(function(H,se){return H.getTime()-se.getTime()})}function ze(E,T,N){if(T===void 0&&(T=!1),N===void 0&&(N=t.config.dateFormat),E!==0&&!E||E instanceof Array&&E.length===0)return t.clear(T);Ae(E,N),t.latestSelectedDateObj=t.selectedDates[t.selectedDates.length-1],t.redraw(),S(void 0,T),d(),t.selectedDates.length===0&&t.clear(!1),Ee(T),T&&K("onChange")}function g(E){return E.slice().map(function(T){return typeof T=="string"||typeof T=="number"||T instanceof Date?t.parseDate(T,void 0,!0):T&&typeof T=="object"&&T.from&&T.to?{from:t.parseDate(T.from,void 0),to:t.parseDate(T.to,void 0)}:T}).filter(function(T){return T})}function v(){t.selectedDates=[],t.now=t.parseDate(t.config.now)||new Date;var E=t.config.defaultDate||((t.input.nodeName==="INPUT"||t.input.nodeName==="TEXTAREA")&&t.input.placeholder&&t.input.value===t.input.placeholder?null:t.input.value);E&&Ae(E,t.config.dateFormat),t._initialDate=t.selectedDates.length>0?t.selectedDates[0]:t.config.minDate&&t.config.minDate.getTime()>t.now.getTime()?t.config.minDate:t.config.maxDate&&t.config.maxDate.getTime()0&&(t.latestSelectedDateObj=t.selectedDates[0]),t.config.minTime!==void 0&&(t.config.minTime=t.parseDate(t.config.minTime,"H:i")),t.config.maxTime!==void 0&&(t.config.maxTime=t.parseDate(t.config.maxTime,"H:i")),t.minDateHasTime=!!t.config.minDate&&(t.config.minDate.getHours()>0||t.config.minDate.getMinutes()>0||t.config.minDate.getSeconds()>0),t.maxDateHasTime=!!t.config.maxDate&&(t.config.maxDate.getHours()>0||t.config.maxDate.getMinutes()>0||t.config.maxDate.getSeconds()>0)}function A(){if(t.input=Y(),!t.input){t.config.errorHandler(new Error("Invalid input element specified"));return}t.input._type=t.input.type,t.input.type="text",t.input.classList.add("flatpickr-input"),t._input=t.input,t.config.altInput&&(t.altInput=rt(t.input.nodeName,t.config.altInputClass),t._input=t.altInput,t.altInput.placeholder=t.input.placeholder,t.altInput.disabled=t.input.disabled,t.altInput.required=t.input.required,t.altInput.tabIndex=t.input.tabIndex,t.altInput.type="text",t.input.setAttribute("type","hidden"),!t.config.static&&t.input.parentNode&&t.input.parentNode.insertBefore(t.altInput,t.input.nextSibling)),t.config.allowInput||t._input.setAttribute("readonly","readonly"),k()}function k(){t._positionElement=t.config.positionElement||t._input}function z(){var E=t.config.enableTime?t.config.noCalendar?"time":"datetime-local":"date";t.mobileInput=rt("input",t.input.className+" flatpickr-mobile"),t.mobileInput.tabIndex=1,t.mobileInput.type=E,t.mobileInput.disabled=t.input.disabled,t.mobileInput.required=t.input.required,t.mobileInput.placeholder=t.input.placeholder,t.mobileFormatStr=E==="datetime-local"?"Y-m-d\\TH:i:S":E==="date"?"Y-m-d":"H:i:S",t.selectedDates.length>0&&(t.mobileInput.defaultValue=t.mobileInput.value=t.formatDate(t.selectedDates[0],t.mobileFormatStr)),t.config.minDate&&(t.mobileInput.min=t.formatDate(t.config.minDate,"Y-m-d")),t.config.maxDate&&(t.mobileInput.max=t.formatDate(t.config.maxDate,"Y-m-d")),t.input.getAttribute("step")&&(t.mobileInput.step=String(t.input.getAttribute("step"))),t.input.type="hidden",t.altInput!==void 0&&(t.altInput.type="hidden");try{t.input.parentNode&&t.input.parentNode.insertBefore(t.mobileInput,t.input.nextSibling)}catch{}m(t.mobileInput,"change",function(T){t.setDate(xn(T).value,!1,t.mobileFormatStr),K("onChange"),K("onClose")})}function ee(E){if(t.isOpen===!0)return t.close();t.open(E)}function K(E,T){if(t.config!==void 0){var N=t.config[E];if(N!==void 0&&N.length>0)for(var H=0;N[H]&&H=0&&An(E,t.selectedDates[1])<=0}function re(){t.config.noCalendar||t.isMobile||!t.monthNav||(t.yearElements.forEach(function(E,T){var N=new Date(t.currentYear,t.currentMonth,1);N.setMonth(t.currentMonth+T),t.config.showMonths>1||t.config.monthSelectorType==="static"?t.monthElements[T].textContent=Ya(N.getMonth(),t.config.shorthandCurrentMonth,t.l10n)+" ":t.monthsDropdownContainer.value=N.getMonth().toString(),E.value=N.getFullYear().toString()}),t._hidePrevMonthArrow=t.config.minDate!==void 0&&(t.currentYear===t.config.minDate.getFullYear()?t.currentMonth<=t.config.minDate.getMonth():t.currentYeart.config.maxDate.getMonth():t.currentYear>t.config.maxDate.getFullYear()))}function de(E){var T=E||(t.config.altInput?t.config.altFormat:t.config.dateFormat);return t.selectedDates.map(function(N){return t.formatDate(N,T)}).filter(function(N,H,se){return t.config.mode!=="range"||t.config.enableTime||se.indexOf(N)===H}).join(t.config.mode!=="range"?t.config.conjunction:t.l10n.rangeSeparator)}function Ee(E){E===void 0&&(E=!0),t.mobileInput!==void 0&&t.mobileFormatStr&&(t.mobileInput.value=t.latestSelectedDateObj!==void 0?t.formatDate(t.latestSelectedDateObj,t.mobileFormatStr):""),t.input.value=de(t.config.dateFormat),t.altInput!==void 0&&(t.altInput.value=de(t.config.altFormat)),E!==!1&&K("onValueUpdate")}function Me(E){var T=xn(E),N=t.prevMonthNav.contains(T),H=t.nextMonthNav.contains(T);N||H?Pe(N?-1:1):t.yearElements.indexOf(T)>=0?T.select():T.classList.contains("arrowUp")?t.changeYear(t.currentYear+1):T.classList.contains("arrowDown")&&t.changeYear(t.currentYear-1)}function At(E){E.preventDefault();var T=E.type==="keydown",N=xn(E),H=N;t.amPM!==void 0&&N===t.amPM&&(t.amPM.textContent=t.l10n.amPM[Hn(t.amPM.textContent===t.l10n.amPM[0])]);var se=parseFloat(H.getAttribute("min")),he=parseFloat(H.getAttribute("max")),$e=parseFloat(H.getAttribute("step")),Se=parseInt(H.value,10),He=E.delta||(T?E.which===38?1:-1:0),ye=Se+$e*He;if(typeof H.value<"u"&&H.value.length===2){var Ie=H===t.hourElement,ht=H===t.minuteElement;yehe&&(ye=H===t.hourElement?ye-he-Hn(!t.amPM):se,ht&&w(void 0,1,t.hourElement)),t.amPM&&Ie&&($e===1?ye+Se===23:Math.abs(ye-Se)>$e)&&(t.amPM.textContent=t.l10n.amPM[Hn(t.amPM.textContent===t.l10n.amPM[0])]),H.value=yn(ye)}}return r(),t}function qr(e,n){for(var t=Array.prototype.slice.call(e).filter(function(s){return s instanceof HTMLElement}),i=[],r=0;r{window.Flatpickr=kt;const n=i=>{var o;if((o=document.getElementById("flatpickr"))==null||o.remove(),i==="light")return;const r=document.createElement("link");r.rel="stylesheet",r.type="text/css",r.href=`https://npmcdn.com/flatpickr/dist/themes/${i}.css`,r.id="flatpickr",document.head.appendChild(r)},t=document.documentElement.classList.contains("dark")?"dark":"light";n(t),e.config.globalProperties.$emitter.on("change-theme",i=>{n(i)})}};/** -* vue v3.4.34 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/const LD=()=>{},kD=Object.freeze(Object.defineProperty({__proto__:null,BaseTransition:yc,BaseTransitionPropsValidators:dl,Comment:Ht,DeprecationTypes:rg,EffectScope:il,ErrorCodes:Fp,ErrorTypeStrings:Qm,Fragment:tt,KeepAlive:zp,ReactiveEffect:Cr,Static:Zi,Suspense:Fm,Teleport:Om,Text:wi,TrackOpTypes:Np,Transition:er,TransitionGroup:zc,TriggerOpTypes:Rp,VueElement:yo,assertNumber:_p,callWithAsyncErrorHandling:Dn,callWithErrorHandling:ci,camelize:bt,capitalize:nr,cloneVNode:ri,compatUtils:ig,compile:LD,computed:Xe,createApp:Jc,createBlock:_n,createCommentVNode:je,createElementBlock:ge,createElementVNode:yt,createHydrationRenderer:Nc,createPropsRestProxy:fm,createRenderer:Pc,createSSRApp:wg,createSlots:Gs,createStaticVNode:Hm,createTextVNode:Xt,createVNode:ot,customRef:gc,defineAsyncComponent:Yp,defineComponent:_r,defineCustomElement:Yc,defineEmits:em,defineExpose:tm,defineModel:rm,defineOptions:nm,defineProps:qp,defineSSRCustomElement:dg,defineSlots:im,devtools:qm,effect:dp,effectScope:lp,getCurrentInstance:Cn,getCurrentScope:ac,getTransitionRawChildren:uo,guardReactiveProps:Vc,h:qi,handleError:sr,hasInjectionContext:mm,hydrate:Xc,initCustomFormatter:Zm,initDirectivesForSSR:Cg,inject:Gi,isMemoSame:Uc,isProxy:al,isReactive:zi,isReadonly:Oi,isRef:_t,isRuntimeOnly:Ym,isShallow:Qi,isVNode:Ai,markRaw:dc,mergeDefaults:um,mergeModels:cm,mergeProps:Js,nextTick:cn,normalizeClass:Rt,normalizeProps:Sa,normalizeStyle:Yt,onActivated:bc,onBeforeMount:Sc,onBeforeUnmount:us,onBeforeUpdate:wc,onDeactivated:Ec,onErrorCaptured:Oc,onMounted:or,onRenderTracked:Cc,onRenderTriggered:Tc,onScopeDispose:cp,onServerPrefetch:Dc,onUnmounted:ho,onUpdated:fo,openBlock:ae,popScopeId:Bp,provide:po,proxyRefs:ll,pushScopeId:Vp,queuePostFlushCb:Ks,reactive:Ci,readonly:lo,ref:Jt,registerRuntimeCompiler:Hc,render:Ra,renderList:dn,renderSlot:qe,resolveComponent:ui,resolveDirective:Xp,resolveDynamicComponent:cs,resolveFilter:ng,resolveTransitionHooks:Or,setBlockTracking:xa,setDevtoolsHook:eg,setTransitionHooks:xi,shallowReactive:fc,shallowReadonly:Op,shallowRef:mc,ssrContextKey:_c,ssrUtils:tg,stop:hp,toDisplayString:vt,toHandlerKey:br,toHandlers:Qp,toRaw:Ge,toRef:yi,toRefs:Ip,toValue:We,transformVNodeArgs:Vm,triggerRef:Mp,unref:ut,useAttrs:am,useCssModule:hg,useCssVars:fg,useModel:Nm,useSSRContext:Fc,useSlots:om,useTransitionState:fl,vModelCheckbox:ml,vModelDynamic:Zc,vModelRadio:gl,vModelSelect:Gc,vModelText:Qs,vShow:Kc,version:Wc,warn:Jm,watch:Fn,watchEffect:Lc,watchPostEffect:kc,watchSyncEffect:$c,withAsyncContext:dm,withCtx:pt,withDefaults:sm,withDirectives:Up,withKeys:Na,withMemo:Xm,withModifiers:ji,withScopeId:Hp},Symbol.toStringTag,{value:"Module"}));/** - * vee-validate v4.13.2 - * (c) 2024 Abdelrahman Awad - * @license MIT - */function zt(e){return typeof e=="function"}function jv(e){return e==null}const Pr=e=>e!==null&&!!e&&typeof e=="object"&&!Array.isArray(e);function Cf(e){return Number(e)>=0}function $D(e){const n=parseFloat(e);return isNaN(n)?e:n}function jD(e){return typeof e=="object"&&e!==null}function VD(e){return e==null?e===void 0?"[object Undefined]":"[object Null]":Object.prototype.toString.call(e)}function rh(e){if(!jD(e)||VD(e)!=="[object Object]")return!1;if(Object.getPrototypeOf(e)===null)return!0;let n=e;for(;Object.getPrototypeOf(n)!==null;)n=Object.getPrototypeOf(n);return Object.getPrototypeOf(e)===n}function ao(e,n){return Object.keys(n).forEach(t=>{if(rh(n[t])&&rh(e[t])){e[t]||(e[t]={}),ao(e[t],n[t]);return}e[t]=n[t]}),e}function Cs(e){const n=e.split(".");if(!n.length)return"";let t=String(n[0]);for(let i=1;iKD(r)&&o in r?r[o]:t,e):t}function gi(e,n,t){if(Al(n)){e[xf(n)]=t;return}const i=n.split(/\.|\[(\d+)\]/).filter(Boolean);let r=e;for(let o=0;oSn(e,t.slice(0,s).join(".")));for(let o=r.length-1;o>=0;o--)if(YD(r[o])){if(o===0){Ql(e,t[0]);continue}Ql(r[o-1],t[o-1])}}function Nn(e){return Object.keys(e)}function Uv(e,n=void 0){const t=Cn();return(t==null?void 0:t.provides[e])||Gi(e,n)}function uh(e,n,t){if(Array.isArray(e)){const i=[...e],r=i.findIndex(o=>hn(o,n));return r>=0?i.splice(r,1):i.push(n),i}return hn(e,n)?t:n}function ch(e,n=0){let t=null,i=[];return function(...r){return t&&clearTimeout(t),t=setTimeout(()=>{const o=e(...r);i.forEach(s=>s(o)),i=[]},n),new Promise(o=>i.push(o))}}function XD(e,n){return Pr(n)&&n.number?$D(e):e}function Gu(e,n){let t;return async function(...r){const o=e(...r);t=o;const s=await o;return o!==t?s:(t=void 0,n(s,r))}}function Zu(e){return Array.isArray(e)?e:e?[e]:[]}function Ko(e,n){const t={};for(const i in e)n.includes(i)||(t[i]=e[i]);return t}function JD(e){let n=null,t=[];return function(...i){const r=cn(()=>{if(n!==r)return;const o=e(...i);t.forEach(s=>s(o)),t=[],n=null});return n=r,new Promise(o=>t.push(o))}}function Af(e,n,t){return n.slots.default?typeof e=="string"||!e?n.slots.default(t()):{default:()=>{var i,r;return(r=(i=n.slots).default)===null||r===void 0?void 0:r.call(i,t())}}:n.slots.default}function ql(e){if(Wv(e))return e._value}function Wv(e){return"_value"in e}function QD(e){return e.type==="number"||e.type==="range"?Number.isNaN(e.valueAsNumber)?e.value:e.valueAsNumber:e.value}function Za(e){if(!Of(e))return e;const n=e.target;if(To(n.type)&&Wv(n))return ql(n);if(n.type==="file"&&n.files){const t=Array.from(n.files);return n.multiple?t:t[0]}if(zD(n))return Array.from(n.options).filter(t=>t.selected&&!t.disabled).map(ql);if(Bv(n)){const t=Array.from(n.options).find(i=>i.selected);return t?ql(t):n.value}return QD(n)}function Kv(e){const n={};return Object.defineProperty(n,"_$$isNormalized",{value:!0,writable:!1,enumerable:!1,configurable:!1}),e?Pr(e)&&e._$$isNormalized?e:Pr(e)?Object.keys(e).reduce((t,i)=>{const r=qD(e[i]);return e[i]!==!1&&(t[i]=fh(r)),t},n):typeof e!="string"?n:e.split("|").reduce((t,i)=>{const r=eT(i);return r.name&&(t[r.name]=fh(r.params)),t},n):n}function qD(e){return e===!0?[]:Array.isArray(e)||Pr(e)?e:[e]}function fh(e){const n=t=>typeof t=="string"&&t[0]==="@"?tT(t.slice(1)):t;return Array.isArray(e)?e.map(n):e instanceof RegExp?[e]:Object.keys(e).reduce((t,i)=>(t[i]=n(e[i]),t),{})}const eT=e=>{let n=[];const t=e.split(":")[0];return e.includes(":")&&(n=e.split(":").slice(1).join(":").split(",")),{name:t,params:n}};function tT(e){const n=t=>Sn(t,e)||t[e];return n.__locatorRef=e,n}function nT(e){return Array.isArray(e)?e.filter(zu):Nn(e).filter(n=>zu(e[n])).map(n=>e[n])}const iT={generateMessage:({field:e})=>`${e} is not valid.`,bails:!0,validateOnBlur:!0,validateOnChange:!0,validateOnInput:!1,validateOnModelUpdate:!0};let Xu=Object.assign({},iT);const yr=()=>Xu,rT=e=>{Xu=Object.assign(Object.assign({},Xu),e)},sT=rT;async function Yv(e,n,t={}){const i=t==null?void 0:t.bails,r={name:(t==null?void 0:t.name)||"{field}",rules:n,label:t==null?void 0:t.label,bails:i??!0,formData:(t==null?void 0:t.values)||{}},o=await oT(r,e);return Object.assign(Object.assign({},o),{valid:!o.errors.length})}async function oT(e,n){const t=e.rules;if(ei(t)||Ga(t))return lT(n,Object.assign(Object.assign({},e),{rules:t}));if(zt(t)||Array.isArray(t)){const a={field:e.label||e.name,name:e.name,label:e.label,form:e.formData,value:n},l=Array.isArray(t)?t:[t],u=l.length,c=[];for(let f=0;f{const u=l.path||"";return a[u]||(a[u]={errors:[],path:u}),a[u].errors.push(...l.errors),a},{});return{errors:Object.values(s)}}}}}async function lT(e,n){const i=await(ei(n.rules)?n.rules:zv(n.rules)).parse(e,{formData:n.formData}),r=[];for(const o of i.errors)o.errors.length&&r.push(...o.errors);return{value:i.value,errors:r}}async function uT(e,n,t){const i=BD(t.name);if(!i)throw new Error(`No such validator '${t.name}' exists.`);const r=cT(t.params,e.formData),o={field:e.label||e.name,name:e.name,label:e.label,value:n,form:e.formData,rule:Object.assign(Object.assign({},t),{params:r})},s=await i(n,r,o);return typeof s=="string"?{error:s}:{error:s?void 0:Gv(o)}}function Gv(e){const n=yr().generateMessage;return n?n(e):"Field is invalid"}function cT(e,n){const t=i=>zu(i)?i(n):i;return Array.isArray(e)?e.map(t):Object.keys(e).reduce((i,r)=>(i[r]=t(e[r]),i),{})}async function fT(e,n){const i=await(ei(e)?e:zv(e)).parse(lt(n)),r={},o={};for(const s of i.errors){const a=s.errors,l=(s.path||"").replace(/\["(\d+)"\]/g,(u,c)=>`[${c}]`);r[l]={valid:!a.length,errors:a},a.length&&(o[l]=a[0])}return{valid:!i.errors.length,results:r,errors:o,values:i.value,source:"schema"}}async function dT(e,n,t){const r=Nn(e).map(async u=>{var c,f,d;const h=(c=t==null?void 0:t.names)===null||c===void 0?void 0:c[u],p=await Yv(Sn(n,u),e[u],{name:(h==null?void 0:h.name)||u,label:h==null?void 0:h.label,values:n,bails:(d=(f=t==null?void 0:t.bailsMap)===null||f===void 0?void 0:f[u])!==null&&d!==void 0?d:!0});return Object.assign(Object.assign({},p),{path:u})});let o=!0;const s=await Promise.all(r),a={},l={};for(const u of s)a[u.path]={valid:u.valid,errors:u.errors},u.valid||(o=!1,l[u.path]=u.errors[0]);return{valid:o,results:a,errors:l,source:"schema"}}let dh=0;function hT(e,n){const{value:t,initialValue:i,setInitialValue:r}=pT(e,n.modelValue,n.form);if(!n.form){let d=function(h){var p;"value"in h&&(t.value=h.value),"errors"in h&&u(h.errors),"touched"in h&&(f.touched=(p=h.touched)!==null&&p!==void 0?p:f.touched),"initialValue"in h&&r(h.initialValue)};const{errors:l,setErrors:u}=vT(),c=dh>=Number.MAX_SAFE_INTEGER?0:++dh,f=gT(t,i,l,n.schema);return{id:c,path:e,value:t,initialValue:i,meta:f,flags:{pendingUnmount:{[c]:!1},pendingReset:!1},errors:l,setState:d}}const o=n.form.createPathState(e,{bails:n.bails,label:n.label,type:n.type,validate:n.validate,schema:n.schema}),s=Xe(()=>o.errors);function a(l){var u,c,f;"value"in l&&(t.value=l.value),"errors"in l&&((u=n.form)===null||u===void 0||u.setFieldError(ut(e),l.errors)),"touched"in l&&((c=n.form)===null||c===void 0||c.setFieldTouched(ut(e),(f=l.touched)!==null&&f!==void 0?f:!1)),"initialValue"in l&&r(l.initialValue)}return{id:Array.isArray(o.id)?o.id[o.id.length-1]:o.id,path:e,value:t,errors:s,meta:o,initialValue:i,flags:o.__flags,setState:a}}function pT(e,n,t){const i=Jt(ut(n));function r(){return t?Sn(t.initialValues.value,ut(e),ut(i)):ut(i)}function o(u){if(!t){i.value=u;return}t.setFieldInitialValue(ut(e),u,!0)}const s=Xe(r);if(!t)return{value:Jt(r()),initialValue:s,setInitialValue:o};const a=mT(n,t,s,e);return t.stageInitialValue(ut(e),a,!0),{value:Xe({get(){return Sn(t.values,ut(e))},set(u){t.setFieldValue(ut(e),u,!1)}}),initialValue:s,setInitialValue:o}}function mT(e,n,t,i){return _t(e)?ut(e):e!==void 0?e:Sn(n.values,ut(i),ut(t))}function gT(e,n,t,i){const r=Xe(()=>{var s,a,l;return(l=(a=(s=We(i))===null||s===void 0?void 0:s.describe)===null||a===void 0?void 0:a.call(s).required)!==null&&l!==void 0?l:!1}),o=Ci({touched:!1,pending:!1,valid:!0,required:r,validated:!!ut(t).length,initialValue:Xe(()=>ut(n)),dirty:Xe(()=>!hn(ut(e),ut(n)))});return Fn(t,s=>{o.valid=!s.length},{immediate:!0,flush:"sync"}),o}function vT(){const e=Jt([]);return{errors:e,setErrors:n=>{e.value=Zu(n)}}}function yT(e,n,t){return To(t==null?void 0:t.type)?ET(e,n,t):Zv(e,n,t)}function Zv(e,n,t){const{initialValue:i,validateOnMount:r,bails:o,type:s,checkedValue:a,label:l,validateOnValueUpdate:u,uncheckedValue:c,controlled:f,keepValueOnUnmount:d,syncVModel:h,form:p}=bT(t),m=f?Uv(xl):void 0,y=p||m,D=Xe(()=>Cs(We(e))),S=Xe(()=>{if(We(y==null?void 0:y.schema))return;const ce=ut(n);return Ga(ce)||ei(ce)||zt(ce)||Array.isArray(ce)?ce:Kv(ce)}),b=!zt(S.value)&&ei(We(n)),{id:w,value:x,initialValue:O,meta:F,setState:L,errors:C,flags:I}=hT(D,{modelValue:i,form:y,bails:o,label:l,type:s,validate:S.value?$:void 0,schema:b?n:void 0}),j=Xe(()=>C.value[0]);h&&ST({value:x,prop:h,handleChange:W,shouldValidate:()=>u&&!I.pendingReset});const R=(q,ce=!1)=>{F.touched=!0,ce&&V()};async function _(q){var ce,Ne;if(y!=null&&y.validateSchema){const{results:De}=await y.validateSchema(q);return(ce=De[We(D)])!==null&&ce!==void 0?ce:{valid:!0,errors:[]}}return S.value?Yv(x.value,S.value,{name:We(D),label:We(l),values:(Ne=y==null?void 0:y.values)!==null&&Ne!==void 0?Ne:{},bails:o}):{valid:!0,errors:[]}}const V=Gu(async()=>(F.pending=!0,F.validated=!0,_("validated-only")),q=>(I.pendingUnmount[Ke.id]||(L({errors:q.errors}),F.pending=!1,F.valid=q.valid),q)),G=Gu(async()=>_("silent"),q=>(F.valid=q.valid,q));function $(q){return(q==null?void 0:q.mode)==="silent"?G():V()}function W(q,ce=!0){const Ne=Za(q);Pe(Ne,ce)}or(()=>{if(r)return V();(!y||!y.validateSchema)&&G()});function J(q){F.touched=q}function Ce(q){var ce;const Ne=q&&"value"in q?q.value:O.value;L({value:lt(Ne),initialValue:lt(Ne),touched:(ce=q==null?void 0:q.touched)!==null&&ce!==void 0?ce:!1,errors:(q==null?void 0:q.errors)||[]}),F.pending=!1,F.validated=!1,G()}const Qe=Cn();function Pe(q,ce=!0){x.value=Qe&&h?XD(q,Qe.props.modelModifiers):q,(ce?V:G)()}function Be(q){L({errors:Array.isArray(q)?q:[q]})}const at=Xe({get(){return x.value},set(q){Pe(q,u)}}),Ke={id:w,name:D,label:l,value:at,meta:F,errors:C,errorMessage:j,type:s,checkedValue:a,uncheckedValue:c,bails:o,keepValueOnUnmount:d,resetField:Ce,handleReset:()=>Ce(),validate:$,handleChange:W,handleBlur:R,setState:L,setTouched:J,setErrors:Be,setValue:Pe};if(po(UD,Ke),_t(n)&&typeof ut(n)!="function"&&Fn(n,(q,ce)=>{hn(q,ce)||(F.validated?V():G())},{deep:!0}),!y)return Ke;const nt=Xe(()=>{const q=S.value;return!q||zt(q)||Ga(q)||ei(q)||Array.isArray(q)?{}:Object.keys(q).reduce((ce,Ne)=>{const De=nT(q[Ne]).map(ft=>ft.__locatorRef).reduce((ft,mt)=>{const dt=Sn(y.values,mt)||y.values[mt];return dt!==void 0&&(ft[mt]=dt),ft},{});return Object.assign(ce,De),ce},{})});return Fn(nt,(q,ce)=>{if(!Object.keys(q).length)return;!hn(q,ce)&&(F.validated?V():G())}),us(()=>{var q;const ce=(q=We(Ke.keepValueOnUnmount))!==null&&q!==void 0?q:We(y.keepValuesOnUnmount),Ne=We(D);if(ce||!y||I.pendingUnmount[Ke.id]){y==null||y.removePathState(Ne,w);return}I.pendingUnmount[Ke.id]=!0;const De=y.getPathState(Ne);if(Array.isArray(De==null?void 0:De.id)&&(De!=null&&De.multiple)?De!=null&&De.id.includes(Ke.id):(De==null?void 0:De.id)===Ke.id){if(De!=null&&De.multiple&&Array.isArray(De.value)){const mt=De.value.findIndex(dt=>hn(dt,We(Ke.checkedValue)));if(mt>-1){const dt=[...De.value];dt.splice(mt,1),y.setFieldValue(Ne,dt)}Array.isArray(De.id)&&De.id.splice(De.id.indexOf(Ke.id),1)}else y.unsetPathValue(We(D));y.removePathState(Ne,w)}}),Ke}function bT(e){const n=()=>({initialValue:void 0,validateOnMount:!1,bails:!0,label:void 0,validateOnValueUpdate:!0,keepValueOnUnmount:void 0,syncVModel:!1,controlled:!0}),t=!!(e!=null&&e.syncVModel),i=typeof(e==null?void 0:e.syncVModel)=="string"?e.syncVModel:(e==null?void 0:e.modelPropName)||"modelValue",r=t&&!("initialValue"in(e||{}))?Ju(Cn(),i):e==null?void 0:e.initialValue;if(!e)return Object.assign(Object.assign({},n()),{initialValue:r});const o="valueProp"in e?e.valueProp:e.checkedValue,s="standalone"in e?!e.standalone:e.controlled,a=(e==null?void 0:e.modelPropName)||(e==null?void 0:e.syncVModel)||!1;return Object.assign(Object.assign(Object.assign({},n()),e||{}),{initialValue:r,controlled:s??!0,checkedValue:o,syncVModel:a})}function ET(e,n,t){const i=t!=null&&t.standalone?void 0:Uv(xl),r=t==null?void 0:t.checkedValue,o=t==null?void 0:t.uncheckedValue;function s(a){const l=a.handleChange,u=Xe(()=>{const f=We(a.value),d=We(r);return Array.isArray(f)?f.findIndex(h=>hn(h,d))>=0:hn(d,f)});function c(f,d=!0){var h,p;if(u.value===((h=f==null?void 0:f.target)===null||h===void 0?void 0:h.checked)){d&&a.validate();return}const m=We(e),y=i==null?void 0:i.getPathState(m),D=Za(f);let S=(p=We(r))!==null&&p!==void 0?p:D;i&&(y!=null&&y.multiple)&&y.type==="checkbox"?S=uh(Sn(i.values,m)||[],S,void 0):(t==null?void 0:t.type)==="checkbox"&&(S=uh(We(a.value),S,We(o))),l(S,d)}return Object.assign(Object.assign({},a),{checked:u,checkedValue:r,uncheckedValue:o,handleChange:c})}return s(Zv(e,n,t))}function ST({prop:e,value:n,handleChange:t,shouldValidate:i}){const r=Cn();if(!r||!e)return;const o=typeof e=="string"?e:"modelValue",s=`update:${o}`;o in r.props&&(Fn(n,a=>{hn(a,Ju(r,o))||r.emit(s,a)}),Fn(()=>Ju(r,o),a=>{if(a===za&&n.value===void 0)return;const l=a===za?void 0:a;hn(l,n.value)||t(l,i())}))}function Ju(e,n){if(e)return e.props[n]}const wT=_r({name:"Field",inheritAttrs:!1,props:{as:{type:[String,Object],default:void 0},name:{type:String,required:!0},rules:{type:[Object,String,Function],default:void 0},validateOnMount:{type:Boolean,default:!1},validateOnBlur:{type:Boolean,default:void 0},validateOnChange:{type:Boolean,default:void 0},validateOnInput:{type:Boolean,default:void 0},validateOnModelUpdate:{type:Boolean,default:void 0},bails:{type:Boolean,default:()=>yr().bails},label:{type:String,default:void 0},uncheckedValue:{type:null,default:void 0},modelValue:{type:null,default:za},modelModifiers:{type:null,default:()=>({})},"onUpdate:modelValue":{type:null,default:void 0},standalone:{type:Boolean,default:!1},keepValue:{type:Boolean,default:void 0}},setup(e,n){const t=yi(e,"rules"),i=yi(e,"name"),r=yi(e,"label"),o=yi(e,"uncheckedValue"),s=yi(e,"keepValue"),{errors:a,value:l,errorMessage:u,validate:c,handleChange:f,handleBlur:d,setTouched:h,resetField:p,handleReset:m,meta:y,checked:D,setErrors:S,setValue:b}=yT(i,t,{validateOnMount:e.validateOnMount,bails:e.bails,standalone:e.standalone,type:n.attrs.type,initialValue:TT(e,n),checkedValue:n.attrs.value,uncheckedValue:o,label:r,validateOnValueUpdate:e.validateOnModelUpdate,keepValueOnUnmount:s,syncVModel:!0}),w=function(I,j=!0){f(I,j)},x=Xe(()=>{const{validateOnInput:C,validateOnChange:I,validateOnBlur:j,validateOnModelUpdate:R}=DT(e);function _(W){d(W,j),zt(n.attrs.onBlur)&&n.attrs.onBlur(W)}function V(W){w(W,C),zt(n.attrs.onInput)&&n.attrs.onInput(W)}function G(W){w(W,I),zt(n.attrs.onChange)&&n.attrs.onChange(W)}const $={name:e.name,onBlur:_,onInput:V,onChange:G};return $["onUpdate:modelValue"]=W=>w(W,R),$}),O=Xe(()=>{const C=Object.assign({},x.value);To(n.attrs.type)&&D&&(C.checked=D.value);const I=hh(e,n);return ZD(I,n.attrs)&&(C.value=l.value),C}),F=Xe(()=>Object.assign(Object.assign({},x.value),{modelValue:l.value}));function L(){return{field:O.value,componentField:F.value,value:l.value,meta:y,errors:a.value,errorMessage:u.value,validate:c,resetField:p,handleChange:w,handleInput:C=>w(C,!1),handleReset:m,handleBlur:x.value.onBlur,setTouched:h,setErrors:S,setValue:b}}return n.expose({value:l,meta:y,errors:a,errorMessage:u,setErrors:S,setTouched:h,setValue:b,reset:p,validate:c,handleChange:f}),()=>{const C=cs(hh(e,n)),I=Af(C,n,L);return C?qi(C,Object.assign(Object.assign({},n.attrs),O.value),I):I}}});function hh(e,n){let t=e.as||"";return!e.as&&!n.slots.default&&(t="input"),t}function DT(e){var n,t,i,r;const{validateOnInput:o,validateOnChange:s,validateOnBlur:a,validateOnModelUpdate:l}=yr();return{validateOnInput:(n=e.validateOnInput)!==null&&n!==void 0?n:o,validateOnChange:(t=e.validateOnChange)!==null&&t!==void 0?t:s,validateOnBlur:(i=e.validateOnBlur)!==null&&i!==void 0?i:a,validateOnModelUpdate:(r=e.validateOnModelUpdate)!==null&&r!==void 0?r:l}}function TT(e,n){return To(n.attrs.type)?oh(e,"modelValue")?e.modelValue:void 0:oh(e,"modelValue")?e.modelValue:n.attrs.value}const CT=wT;let OT=0;const Yo=["bails","fieldsCount","id","multiple","type","validate"];function Xv(e){const n=(e==null?void 0:e.initialValues)||{},t=Object.assign({},We(n)),i=ut(e==null?void 0:e.validationSchema);return i&&ei(i)&&zt(i.cast)?lt(i.cast(t)||{}):lt(t)}function xT(e){var n;const t=OT++;let i=0;const r=Jt(!1),o=Jt(!1),s=Jt(0),a=[],l=Ci(Xv(e)),u=Jt([]),c=Jt({}),f=Jt({}),d=JD(()=>{f.value=u.value.reduce((g,v)=>(g[Cs(We(v.path))]=v,g),{})});function h(g,v){const A=$(g);if(!A){typeof g=="string"&&(c.value[Cs(g)]=Zu(v));return}if(typeof g=="string"){const k=Cs(g);c.value[k]&&delete c.value[k]}A.errors=Zu(v),A.valid=!A.errors.length}function p(g){Nn(g).forEach(v=>{h(v,g[v])})}e!=null&&e.initialErrors&&p(e.initialErrors);const m=Xe(()=>{const g=u.value.reduce((v,A)=>(A.errors.length&&(v[A.path]=A.errors),v),{});return Object.assign(Object.assign({},c.value),g)}),y=Xe(()=>Nn(m.value).reduce((g,v)=>{const A=m.value[v];return A!=null&&A.length&&(g[v]=A[0]),g},{})),D=Xe(()=>u.value.reduce((g,v)=>(g[v.path]={name:v.path||"",label:v.label||""},g),{})),S=Xe(()=>u.value.reduce((g,v)=>{var A;return g[v.path]=(A=v.bails)!==null&&A!==void 0?A:!0,g},{})),b=Object.assign({},(e==null?void 0:e.initialErrors)||{}),w=(n=e==null?void 0:e.keepValuesOnUnmount)!==null&&n!==void 0?n:!1,{initialValues:x,originalInitialValues:O,setInitialValues:F}=MT(u,l,e),L=AT(u,l,O,y),C=Xe(()=>u.value.reduce((g,v)=>{const A=Sn(l,v.path);return gi(g,v.path,A),g},{})),I=e==null?void 0:e.validationSchema;function j(g,v){var A,k;const z=Xe(()=>Sn(x.value,We(g))),ee=f.value[We(g)],K=(v==null?void 0:v.type)==="checkbox"||(v==null?void 0:v.type)==="radio";if(ee&&K){ee.multiple=!0;const Me=i++;return Array.isArray(ee.id)?ee.id.push(Me):ee.id=[ee.id,Me],ee.fieldsCount++,ee.__flags.pendingUnmount[Me]=!1,ee}const ue=Xe(()=>Sn(l,We(g))),we=We(g),me=J.findIndex(Me=>Me===we);me!==-1&&J.splice(me,1);const re=Xe(()=>{var Me,At,E,T;const N=We(I);if(ei(N))return(At=(Me=N.describe)===null||Me===void 0?void 0:Me.call(N,We(g)).required)!==null&&At!==void 0?At:!1;const H=We(v==null?void 0:v.schema);return ei(H)&&(T=(E=H.describe)===null||E===void 0?void 0:E.call(H).required)!==null&&T!==void 0?T:!1}),de=i++,Ee=Ci({id:de,path:g,touched:!1,pending:!1,valid:!0,validated:!!(!((A=b[we])===null||A===void 0)&&A.length),required:re,initialValue:z,errors:mc([]),bails:(k=v==null?void 0:v.bails)!==null&&k!==void 0?k:!1,label:v==null?void 0:v.label,type:(v==null?void 0:v.type)||"default",value:ue,multiple:!1,__flags:{pendingUnmount:{[de]:!1},pendingReset:!1},fieldsCount:1,validate:v==null?void 0:v.validate,dirty:Xe(()=>!hn(ut(ue),ut(z)))});return u.value.push(Ee),f.value[we]=Ee,d(),y.value[we]&&!b[we]&&cn(()=>{ne(we,{mode:"silent"})}),_t(g)&&Fn(g,Me=>{d();const At=lt(ue.value);f.value[Me]=Ee,cn(()=>{gi(l,Me,At)})}),Ee}const R=ch(le,5),_=ch(le,5),V=Gu(async g=>await(g==="silent"?R():_()),(g,[v])=>{const A=Nn(q.errorBag.value),z=[...new Set([...Nn(g.results),...u.value.map(ee=>ee.path),...A])].sort().reduce((ee,K)=>{var ue;const we=K,me=$(we)||W(we),re=((ue=g.results[we])===null||ue===void 0?void 0:ue.errors)||[],de=We(me==null?void 0:me.path)||we,Ee=IT({errors:re,valid:!re.length},ee.results[de]);return ee.results[de]=Ee,Ee.valid||(ee.errors[de]=Ee.errors[0]),me&&c.value[de]&&delete c.value[de],me?(me.valid=Ee.valid,v==="silent"||v==="validated-only"&&!me.validated||h(me,Ee.errors),ee):(h(de,re),ee)},{valid:g.valid,results:{},errors:{},source:g.source});return g.values&&(z.values=g.values,z.source=g.source),Nn(z.results).forEach(ee=>{var K;const ue=$(ee);ue&&v!=="silent"&&(v==="validated-only"&&!ue.validated||h(ue,(K=z.results[ee])===null||K===void 0?void 0:K.errors))}),z});function G(g){u.value.forEach(g)}function $(g){const v=typeof g=="string"?Cs(g):g;return typeof v=="string"?f.value[v]:v}function W(g){return u.value.filter(A=>g.startsWith(A.path)).reduce((A,k)=>A?k.path.length>A.path.length?k:A:k,void 0)}let J=[],Ce;function Qe(g){return J.push(g),Ce||(Ce=cn(()=>{[...J].sort().reverse().forEach(A=>{lh(l,A)}),J=[],Ce=null})),Ce}function Pe(g){return function(A,k){return function(ee){return ee instanceof Event&&(ee.preventDefault(),ee.stopPropagation()),G(K=>K.touched=!0),r.value=!0,s.value++,Q().then(K=>{const ue=lt(l);if(K.valid&&typeof A=="function"){const we=lt(C.value);let me=g?we:ue;return K.values&&(me=K.source==="schema"?K.values:Object.assign({},me,K.values)),A(me,{evt:ee,controlledValues:we,setErrors:p,setFieldError:h,setTouched:B,setFieldTouched:mt,setValues:De,setFieldValue:ce,resetForm:Y,resetField:Z})}!K.valid&&typeof k=="function"&&k({values:ue,evt:ee,errors:K.errors,results:K.results})}).then(K=>(r.value=!1,K),K=>{throw r.value=!1,K})}}}const at=Pe(!1);at.withControlled=Pe(!0);function Ke(g,v){const A=u.value.findIndex(z=>z.path===g&&(Array.isArray(z.id)?z.id.includes(v):z.id===v)),k=u.value[A];if(!(A===-1||!k)){if(cn(()=>{ne(g,{mode:"silent",warn:!1})}),k.multiple&&k.fieldsCount&&k.fieldsCount--,Array.isArray(k.id)){const z=k.id.indexOf(v);z>=0&&k.id.splice(z,1),delete k.__flags.pendingUnmount[v]}(!k.multiple||k.fieldsCount<=0)&&(u.value.splice(A,1),te(g),d(),delete f.value[g])}}function nt(g){Nn(f.value).forEach(v=>{v.startsWith(g)&&delete f.value[v]}),u.value=u.value.filter(v=>!v.path.startsWith(g)),cn(()=>{d()})}const q={formId:t,values:l,controlledValues:C,errorBag:m,errors:y,schema:I,submitCount:s,meta:L,isSubmitting:r,isValidating:o,fieldArrays:a,keepValuesOnUnmount:w,validateSchema:ut(I)?V:void 0,validate:Q,setFieldError:h,validateField:ne,setFieldValue:ce,setValues:De,setErrors:p,setFieldTouched:mt,setTouched:B,resetForm:Y,resetField:Z,handleSubmit:at,useFieldModel:Te,defineInputBinds:Ae,defineComponentBinds:ze,defineField:fe,stageInitialValue:ie,unsetInitialValue:te,setFieldInitialValue:X,createPathState:j,getPathState:$,unsetPathValue:Qe,removePathState:Ke,initialValues:x,getAllPathStates:()=>u.value,destroyPath:nt,isFieldTouched:dt,isFieldDirty:M,isFieldValid:P};function ce(g,v,A=!0){const k=lt(v),z=typeof g=="string"?g:g.path;$(z)||j(z),gi(l,z,k),A&&ne(z)}function Ne(g,v=!0){Nn(l).forEach(A=>{delete l[A]}),Nn(g).forEach(A=>{ce(A,g[A],!1)}),v&&Q()}function De(g,v=!0){ao(l,g),a.forEach(A=>A&&A.reset()),v&&Q()}function ft(g,v){const A=$(We(g))||j(g);return Xe({get(){return A.value},set(k){var z;const ee=We(g);ce(ee,k,(z=We(v))!==null&&z!==void 0?z:!1)}})}function mt(g,v){const A=$(g);A&&(A.touched=v)}function dt(g){const v=$(g);return v?v.touched:u.value.filter(A=>A.path.startsWith(g)).some(A=>A.touched)}function M(g){const v=$(g);return v?v.dirty:u.value.filter(A=>A.path.startsWith(g)).some(A=>A.dirty)}function P(g){const v=$(g);return v?v.valid:u.value.filter(A=>A.path.startsWith(g)).every(A=>A.valid)}function B(g){if(typeof g=="boolean"){G(v=>{v.touched=g});return}Nn(g).forEach(v=>{mt(v,!!g[v])})}function Z(g,v){var A;const k=v&&"value"in v?v.value:Sn(x.value,g),z=$(g);z&&(z.__flags.pendingReset=!0),X(g,lt(k),!0),ce(g,k,!1),mt(g,(A=v==null?void 0:v.touched)!==null&&A!==void 0?A:!1),h(g,(v==null?void 0:v.errors)||[]),cn(()=>{z&&(z.__flags.pendingReset=!1)})}function Y(g,v){let A=lt(g!=null&&g.values?g.values:O.value);A=v!=null&&v.force?A:ao(O.value,A),A=ei(I)&&zt(I.cast)?I.cast(A):A,F(A,{force:v==null?void 0:v.force}),G(k=>{var z;k.__flags.pendingReset=!0,k.validated=!1,k.touched=((z=g==null?void 0:g.touched)===null||z===void 0?void 0:z[k.path])||!1,ce(k.path,Sn(A,k.path),!1),h(k.path,void 0)}),v!=null&&v.force?Ne(A,!1):De(A,!1),p((g==null?void 0:g.errors)||{}),s.value=(g==null?void 0:g.submitCount)||0,cn(()=>{Q({mode:"silent"}),G(k=>{k.__flags.pendingReset=!1})})}async function Q(g){const v=(g==null?void 0:g.mode)||"force";if(v==="force"&&G(K=>K.validated=!0),q.validateSchema)return q.validateSchema(v);o.value=!0;const A=await Promise.all(u.value.map(K=>K.validate?K.validate(g).then(ue=>({key:K.path,valid:ue.valid,errors:ue.errors,value:ue.value})):Promise.resolve({key:K.path,valid:!0,errors:[],value:void 0})));o.value=!1;const k={},z={},ee={};for(const K of A)k[K.key]={valid:K.valid,errors:K.errors},K.value&&gi(ee,K.key,K.value),K.errors.length&&(z[K.key]=K.errors[0]);return{valid:A.every(K=>K.valid),results:k,errors:z,values:ee,source:"fields"}}async function ne(g,v){var A;const k=$(g);if(k&&(v==null?void 0:v.mode)!=="silent"&&(k.validated=!0),I){const{results:z}=await V((v==null?void 0:v.mode)||"validated-only");return z[g]||{errors:[],valid:!0}}return k!=null&&k.validate?k.validate(v):(!k&&(A=v==null?void 0:v.warn),Promise.resolve({errors:[],valid:!0}))}function te(g){lh(x.value,g)}function ie(g,v,A=!1){X(g,v),gi(l,g,v),A&&!(e!=null&&e.initialValues)&&gi(O.value,g,lt(v))}function X(g,v,A=!1){gi(x.value,g,lt(v)),A&&gi(O.value,g,lt(v))}async function le(){const g=ut(I);if(!g)return{valid:!0,results:{},errors:{},source:"none"};o.value=!0;const v=Ga(g)||ei(g)?await fT(g,l):await dT(g,l,{names:D.value,bailsMap:S.value});return o.value=!1,v}const ve=at((g,{evt:v})=>{Hv(v)&&v.target.submit()});or(()=>{if(e!=null&&e.initialErrors&&p(e.initialErrors),e!=null&&e.initialTouched&&B(e.initialTouched),e!=null&&e.validateOnMount){Q();return}q.validateSchema&&q.validateSchema("silent")}),_t(I)&&Fn(I,()=>{var g;(g=q.validateSchema)===null||g===void 0||g.call(q,"validated-only")}),po(xl,q);function fe(g,v){const A=zt(v)||v==null?void 0:v.label,k=$(We(g))||j(g,{label:A}),z=()=>zt(v)?v(Ko(k,Yo)):v||{};function ee(){var re;k.touched=!0,((re=z().validateOnBlur)!==null&&re!==void 0?re:yr().validateOnBlur)&&ne(k.path)}function K(){var re;((re=z().validateOnInput)!==null&&re!==void 0?re:yr().validateOnInput)&&cn(()=>{ne(k.path)})}function ue(){var re;((re=z().validateOnChange)!==null&&re!==void 0?re:yr().validateOnChange)&&cn(()=>{ne(k.path)})}const we=Xe(()=>{const re={onChange:ue,onInput:K,onBlur:ee};return zt(v)?Object.assign(Object.assign({},re),v(Ko(k,Yo)).props||{}):v!=null&&v.props?Object.assign(Object.assign({},re),v.props(Ko(k,Yo))):re});return[ft(g,()=>{var re,de,Ee;return(Ee=(re=z().validateOnModelUpdate)!==null&&re!==void 0?re:(de=yr())===null||de===void 0?void 0:de.validateOnModelUpdate)!==null&&Ee!==void 0?Ee:!0}),we]}function Te(g){return Array.isArray(g)?g.map(v=>ft(v,!0)):ft(g)}function Ae(g,v){const[A,k]=fe(g,v);function z(){k.value.onBlur()}function ee(ue){const we=Za(ue);ce(We(g),we,!1),k.value.onInput()}function K(ue){const we=Za(ue);ce(We(g),we,!1),k.value.onChange()}return Xe(()=>Object.assign(Object.assign({},k.value),{onBlur:z,onInput:ee,onChange:K,value:A.value}))}function ze(g,v){const[A,k]=fe(g,v),z=$(We(g));function ee(K){A.value=K}return Xe(()=>{const K=zt(v)?v(Ko(z,Yo)):v||{};return Object.assign({[K.model||"modelValue"]:A.value,[`onUpdate:${K.model||"modelValue"}`]:ee},k.value)})}return Object.assign(Object.assign({},q),{values:lo(l),handleReset:()=>Y(),submitForm:ve})}function AT(e,n,t,i){const r={touched:"some",pending:"some",valid:"every"},o=Xe(()=>!hn(n,ut(t)));function s(){const l=e.value;return Nn(r).reduce((u,c)=>{const f=r[c];return u[c]=l[f](d=>d[c]),u},{})}const a=Ci(s());return Lc(()=>{const l=s();a.touched=l.touched,a.valid=l.valid,a.pending=l.pending}),Xe(()=>Object.assign(Object.assign({initialValues:ut(t)},a),{valid:a.valid&&!Nn(i.value).length,dirty:o.value}))}function MT(e,n,t){const i=Xv(t),r=Jt(i),o=Jt(lt(i));function s(a,l){l!=null&&l.force?(r.value=lt(a),o.value=lt(a)):(r.value=ao(lt(r.value)||{},lt(a)),o.value=ao(lt(o.value)||{},lt(a))),l!=null&&l.updateFields&&e.value.forEach(u=>{if(u.touched)return;const f=Sn(r.value,u.path);gi(n,u.path,lt(f))})}return{initialValues:r,originalInitialValues:o,setInitialValues:s}}function IT(e,n){return n?{valid:e.valid&&n.valid,errors:[...e.errors,...n.errors]}:e}const PT=_r({name:"Form",inheritAttrs:!1,props:{as:{type:null,default:"form"},validationSchema:{type:Object,default:void 0},initialValues:{type:Object,default:void 0},initialErrors:{type:Object,default:void 0},initialTouched:{type:Object,default:void 0},validateOnMount:{type:Boolean,default:!1},onSubmit:{type:Function,default:void 0},onInvalidSubmit:{type:Function,default:void 0},keepValues:{type:Boolean,default:!1}},setup(e,n){const t=yi(e,"validationSchema"),i=yi(e,"keepValues"),{errors:r,errorBag:o,values:s,meta:a,isSubmitting:l,isValidating:u,submitCount:c,controlledValues:f,validate:d,validateField:h,handleReset:p,resetForm:m,handleSubmit:y,setErrors:D,setFieldError:S,setFieldValue:b,setValues:w,setFieldTouched:x,setTouched:O,resetField:F}=xT({validationSchema:t.value?t:void 0,initialValues:e.initialValues,initialErrors:e.initialErrors,initialTouched:e.initialTouched,validateOnMount:e.validateOnMount,keepValuesOnUnmount:i}),L=y(($,{evt:W})=>{Hv(W)&&W.target.submit()},e.onInvalidSubmit),C=e.onSubmit?y(e.onSubmit,e.onInvalidSubmit):L;function I($){Of($)&&$.preventDefault(),p(),typeof n.attrs.onReset=="function"&&n.attrs.onReset()}function j($,W){return y(typeof $=="function"&&!W?$:W,e.onInvalidSubmit)($)}function R(){return lt(s)}function _(){return lt(a.value)}function V(){return lt(r.value)}function G(){return{meta:a.value,errors:r.value,errorBag:o.value,values:s,isSubmitting:l.value,isValidating:u.value,submitCount:c.value,controlledValues:f.value,validate:d,validateField:h,handleSubmit:j,handleReset:p,submitForm:L,setErrors:D,setFieldError:S,setFieldValue:b,setValues:w,setFieldTouched:x,setTouched:O,resetForm:m,resetField:F,getValues:R,getMeta:_,getErrors:V}}return n.expose({setFieldError:S,setErrors:D,setFieldValue:b,setValues:w,setFieldTouched:x,setTouched:O,resetForm:m,validate:d,validateField:h,resetField:F,getValues:R,getMeta:_,getErrors:V,values:s,meta:a,errors:r}),function(){const W=e.as==="form"?e.as:e.as?cs(e.as):null,J=Af(W,n,G);return W?qi(W,Object.assign(Object.assign(Object.assign({},W==="form"?{novalidate:!0}:{}),n.attrs),{onSubmit:C,onReset:I}),J):J}}}),NT=PT,RT=_r({name:"ErrorMessage",props:{as:{type:String,default:void 0},name:{type:String,required:!0}},setup(e,n){const t=Gi(xl,void 0),i=Xe(()=>t==null?void 0:t.errors.value[e.name]);function r(){return{message:i.value}}return()=>{if(!i.value)return;const o=e.as?cs(e.as):e.as,s=Af(o,n,r),a=Object.assign({role:"alert"},n.attrs);return!o&&(Array.isArray(s)||!s)&&(s!=null&&s.length)?s:(Array.isArray(s)||!s)&&!(s!=null&&s.length)?qi(o||"span",a,i.value):qi(o,a,s)}}}),_T=RT;/** - * vee-validate v4.13.2 - * (c) 2024 Abdelrahman Awad - * @license MIT - */function ph(e){return typeof e=="function"}function FT(e){return typeof e=="object"&&e!==null}function LT(e){return e==null?e===void 0?"[object Undefined]":"[object Null]":Object.prototype.toString.call(e)}function mh(e){if(!FT(e)||LT(e)!=="[object Object]")return!1;if(Object.getPrototypeOf(e)===null)return!0;let n=e;for(;Object.getPrototypeOf(n)!==null;)n=Object.getPrototypeOf(n);return Object.getPrototypeOf(e)===n}function Jv(e,n){return Object.keys(n).forEach(t=>{if(mh(n[t])&&mh(e[t])){e[t]||(e[t]={}),Jv(e[t],n[t]);return}e[t]=n[t]}),e}function gh(e,n,t){const{prefix:i,suffix:r}=t,o=new RegExp(`([0-9]:)?${i}([^${r}]+)${r}`,"g");return e.replace(o,function(s,a,l){if(!a||!n.params)return l in n?n[l]:n.params&&l in n.params?n.params[l]:`${i}${l}${r}`;if(!Array.isArray(n.params))return l in n.params?n.params[l]:`${i}${l}${r}`;const u=Number(a.replace(":",""));return u in n.params?n.params[u]:`${a}${i}${l}${r}`})}class kT{constructor(n,t,i={prefix:"{",suffix:"}"}){this.container={},this.locale=n,this.interpolateOptions=i,this.merge(t)}resolve(n,t){return this.format(this.locale,n,t)}getLocaleDefault(n,t){var i,r,o,s,a;return((o=(r=(i=this.container[n])===null||i===void 0?void 0:i.fields)===null||r===void 0?void 0:r[t])===null||o===void 0?void 0:o._default)||((a=(s=this.container[n])===null||s===void 0?void 0:s.messages)===null||a===void 0?void 0:a._default)}resolveLabel(n,t,i){var r,o,s,a;return i?((o=(r=this.container[n])===null||r===void 0?void 0:r.names)===null||o===void 0?void 0:o[i])||i:((a=(s=this.container[n])===null||s===void 0?void 0:s.names)===null||a===void 0?void 0:a[t])||t}format(n,t,i){var r,o,s,a,l;let u;const{rule:c,form:f,label:d,name:h}=t,p=this.resolveLabel(n,h,d);return c?(u=((s=(o=(r=this.container[n])===null||r===void 0?void 0:r.fields)===null||o===void 0?void 0:o[h])===null||s===void 0?void 0:s[c.name])||((l=(a=this.container[n])===null||a===void 0?void 0:a.messages)===null||l===void 0?void 0:l[c.name]),u||(u=this.getLocaleDefault(n,h)||`${p} is not valid`),ph(u)?u(t):gh(u,Object.assign(Object.assign({},f),{field:p,params:c.params}),i??this.interpolateOptions)):(u=this.getLocaleDefault(n,h)||`${p} is not valid`,ph(u)?u(t):gh(u,Object.assign(Object.assign({},f),{field:p}),i??this.interpolateOptions))}merge(n){Jv(this.container,n)}}const Os=new kT("en",{});function $T(e,n,t){const i=r=>Os.resolve(r,t);return typeof e=="string"?(Os.locale=e,n&&Os.merge({[e]:n}),i):(Os.merge(e),i)}function jT(e){Os.locale=e}const VT="ar",BT={alpha:"{field} يجب ان يحتوي على حروف فقط",alpha_num:"{field} قد يحتوي فقط على حروف وارقام",alpha_dash:"{field} قد يحتوي على حروف او الرموز - و _",alpha_spaces:"{field} قد يحتوي فقط على حروف ومسافات",between:"قيمة {field} يجب ان تكون ما بين 0:{min} و 1:{max}",confirmed:"{field} لا يماثل التأكيد",digits:"{field} يجب ان تحتوي فقط على ارقام والا يزيد عددها عن 0:{length} رقم",dimensions:"{field} يجب ان تكون بمقاس 0:{width} بكسل في 1:{height} بكسل",email:"{field} يجب ان يكون بريدا اليكتروني صحيح",not_one_of:"الحقل {field} غير صحيح",ext:"نوع ملف {field} غير صحيح",image:"{field} يجب ان تكون صورة",integer:"الحقل {field} يجب ان يكون عدداً صحيحاً",length:"حقل {field} يجب الا يزيد عن 0:{length}",max_value:"قيمة الحقل {field} يجب ان تكون اصغر من 0:{min} او تساويها",max:"الحقل {field} يجب ان يحتوي على 0:{length} حروف على الأكثر",mimes:"نوع ملف {field} غير صحيح",min_value:"قيمة الحقل {field} يجب ان تكون اكبر من 0:{min} او تساويها",min:"الحقل {field} يجب ان يحتوي على 0:{length} حروف على الأقل",numeric:"{field} يمكن ان يحتوي فقط على ارقام",one_of:"الحقل {field} يجب ان يكون قيمة صحيحة",regex:"الحقل {field} غير صحيح",required:"{field} مطلوب",required_if:"حقل {field} مطلوب",size:"{field} يجب ان يكون اقل من 0:{size} كيلوبايت",url:"حقل {field} ليس رابطاً صحيحاً"},vh={code:VT,messages:BT},HT="bn",UT={alpha:"এই {field} ক্ষেত্রে কেবলমাত্র অক্ষর থাকতে পারে",alpha_num:"এই {field} ক্ষেত্রে কেবলমাত্র অক্ষর, সংখ্যা থাকতে পারে",alpha_dash:"এই {field} ক্ষেত্রে কেবলমাত্র অক্ষর, সংখ্যা, ড্যাশ এবং আন্ডারস্কোর থাকতে পারে",alpha_spaces:"এই {field} ক্ষেত্রে কেবলমাত্র অক্ষর, সংখ্যা, ড্যাশ এবং আন্ডারস্কোর থাকতে পারে",between:"এই {field} ক্ষেত্রটি 0:{min} এবং 1:{max} এর মধ্যে হতে হবে",confirmed:"এই {field} ক্ষেত্রটি মিলছে না",digits:"এই {field} ক্ষেত্রটি সংখ্যা হতে হবে এবং ঠিক 0:{length} অঙ্ক থাকতে হবে",dimensions:"এই {field} ক্ষেত্রটি 0:{width} পিক্সেল 1:{height} পিক্সেল হতে হবে",email:"এই {field} ক্ষেত্রটি একটি বৈধ ইমেল হতে হবে",not_one_of:"এই {field} ক্ষেত্রটির মান বৈধ না",ext:"এই {field} ক্ষেত্রটির ফাইল বৈধ না",image:"এই {field} ক্ষেত্রটি একটি চিত্র হতে হবে",integer:"এই {field} ক্ষেত্রটি পূর্ণসংখ্যা হতে হবে",length:"এই {field} ক্ষেত্রটি 0:{length} দীর্ঘ হতে হবে",max_value:"এই {field} ক্ষেত্রটি 0:{max} বা তার চেয়ে কম হতে হবে",max:"এই {field} ক্ষেত্রটি 0:{length} অক্ষরের চেয়ে বেশি হওয়া উচিত নয়",mimes:"এই {field} ক্ষেত্রের একটি বৈধ ফাইল প্রকার থাকতে হবে",min_value:"এই {field} ক্ষেত্রটি 0:{min} বা তার বেশি হতে হবে",min:"এই {field} ক্ষেত্রটি কমপক্ষে 0:{length} অক্ষর হতে হবে",numeric:"এই {field} ক্ষেত্রে কেবলমাত্র সংখ্যা থাকতে পারে",one_of:"এই {field} ক্ষেত্রটির মান বৈধ না",regex:"এই {field} ক্ষেত্রটির বিন্যাস বৈধ না",required_if:"এই {field} ক্ষেত্রটি অবশ্যক",required:"এই {field} ক্ষেত্রটি অবশ্যক",size:"এই {field} ক্ষেত্রের আকার 0:{size}KB এর চেয়ে কম হওয়া উচিত"},yh={code:HT,messages:UT},WT="de",KT={_default:"{field} ist ungültig",alpha:"{field} darf nur alphabetische Zeichen enthalten",alpha_dash:"{field} darf alphanumerische Zeichen sowie Striche und Unterstriche enthalten",alpha_num:"{field} darf nur alphanumerische Zeichen enthalten",alpha_spaces:"{field} darf nur alphanumerische Zeichen und Leerzeichen enthalten",between:"{field} muss zwischen 0:{min} und 1:{max} liegen",confirmed:"Die Bestätigung von {field} stimmt nicht überein",digits:"{field} muss numerisch sein und exakt 0:{length} Ziffern enthalten",dimensions:"{field} muss 0:{width} x 1:{height} Bildpunkte groß sein",email:"{field} muss eine gültige E-Mail-Adresse sein",not_one_of:"{field} muss ein gültiger Wert sein",ext:"{field} muss eine gültige Datei sein",image:"{field} muss eine Grafik sein",one_of:"{field} muss ein gültiger Wert sein",integer:"{field} muss eine ganze Zahl sein",length:"Die Länge von {field} muss 0:{length} sein",max:"{field} darf nicht länger als 0:{length} Zeichen sein",max_value:"{field} darf maximal 0:{max} sein",mimes:"{field} muss einen gültigen Dateityp haben",min:"{field} muss mindestens 0:{length} Zeichen lang sein",min_value:"{field} muss mindestens 0:{min} sein",numeric:"{field} darf nur numerische Zeichen enthalten",regex:"Das Format von {field} ist ungültig",required:"{field} ist ein Pflichtfeld",required_if:"{field} ist ein Pflichtfeld",size:"{field} muss kleiner als 0:{size}KB sein",url:"{field} ist keine gültige URL"},bh={code:WT,messages:KT},YT="en",zT={_default:"The {field} is not valid",alpha:"The {field} field may only contain alphabetic characters",alpha_num:"The {field} field may only contain alpha-numeric characters",alpha_dash:"The {field} field may contain alpha-numeric characters as well as dashes and underscores",alpha_spaces:"The {field} field may only contain alphabetic characters as well as spaces",between:"The {field} field must be between 0:{min} and 1:{max}",confirmed:"The {field} field confirmation does not match",digits:"The {field} field must be numeric and exactly contain 0:{length} digits",dimensions:"The {field} field must be 0:{width} pixels by 1:{height} pixels",email:"The {field} field must be a valid email",not_one_of:"The {field} field is not a valid value",ext:"The {field} field is not a valid file",image:"The {field} field must be an image",integer:"The {field} field must be an integer",length:"The {field} field must be 0:{length} long",max_value:"The {field} field must be 0:{max} or less",max:"The {field} field may not be greater than 0:{length} characters",mimes:"The {field} field must have a valid file type",min_value:"The {field} field must be 0:{min} or more",min:"The {field} field must be at least 0:{length} characters",numeric:"The {field} field may only contain numeric characters",one_of:"The {field} field is not a valid value",regex:"The {field} field format is invalid",required_if:"The {field} field is required",required:"The {field} field is required",size:"The {field} field size must be less than 0:{size}KB",url:"The {field} field is not a valid URL"},Eh={code:YT,messages:zT},GT="es",ZT={alpha:"El campo {field} solo debe contener letras",alpha_dash:"El campo {field} solo debe contener letras, números y guiones",alpha_num:"El campo {field} solo debe contener letras y números",alpha_spaces:"El campo {field} solo debe contener letras y espacios",between:"El campo {field} debe estar entre 0:{min} y 1:{max}",confirmed:"El campo {field} no coincide",digits:"El campo {field} debe ser numérico y contener exactamente 0:{length} dígitos",dimensions:"El campo {field} debe ser de 0:{width} píxeles por 1:{height} píxeles",email:"El campo {field} debe ser un correo electrónico válido",not_one_of:"El campo {field} debe ser un valor válido",ext:"El campo {field} debe ser un archivo válido",image:"El campo {field} debe ser una imagen",one_of:"El campo {field} debe ser un valor válido",integer:"El campo {field} debe ser un entero",length:"El largo del campo {field} debe ser 0:{length}",max:"El campo {field} no debe ser mayor a 0:{length} caracteres",max_value:"El campo {field} debe de ser 0:{max} o menor",mimes:"El campo {field} debe ser un tipo de archivo válido",min:"El campo {field} debe tener al menos 0:{length} caracteres",min_value:"El campo {field} debe ser 0:{min} o superior",numeric:"El campo {field} debe contener solo caracteres numéricos",regex:"El formato del campo {field} no es válido",required:"El campo {field} es obligatorio",required_if:"El campo {field} es obligatorio",size:"El campo {field} debe ser menor a 0:{size}KB"},Sh={code:GT,messages:ZT},XT="fa",JT={alpha:"{field} فقط می تواند از حروف تشکیل شود",alpha_num:"{field} فقط میتواند از حروف و اعداد تشکیل شود",alpha_dash:"{field} فقط می تواند از حروف، اعداد، خط فاصله و زیرخط تشکیل شود",alpha_spaces:"{field} فقط می تواند از حروف و فاصله تشکیل شود",between:"{field} باید بین 0:{min} و 1:{max} کارکتر باشد",confirmed:"{field} با تاییدیه اش مطابقت ندارد",digits:"{field} باید یک مقدار عددی و دقیقاً 0:{length} رقم باشد",dimensions:"{field} باید در اندازه 0:{width} پیکسل عرض و 1:{height} پیکسل ارتفاع باشد",email:"{field} باید یک پست الکترونیک معتبر باشد",not_one_of:"{field}باید یک مقدار معتبر باشد",ext:"{field} باید یک فایل معتبر باشد",image:"{field} باید یک تصویر باشد",integer:"{field} باید یک عدد صحیح باشد",length:"{field} باید دقیقا 0:{length} کاراکتر باشد",max_value:"مقدار {field} باید 0:{max} یا کمتر باشد",max:"{field} نباید بیشتر از 0:{length} کارکتر باشد",mimes:"{field} باید از نوع معتبر باشد",min_value:"مقدار {field} باید 0:{min} یا بیشتر باشد",min:"{field} باید حداقل 0:{length} کارکتر باشد",numeric:"{field} فقط می تواند عددی باشد",one_of:"{field} باید یک مقدار معتبر باشد",regex:"قالب {field} قابل قبول نیست",required_if:"{field} الزامی است",required:"{field} الزامی است",size:"حجم {field} کمتر از 0:{size}KB باشد"},wh={code:XT,messages:JT},QT="fr",qT={_default:"Le champ {field} est invalide",alpha:"Le champ {field} ne peut contenir que des lettres",alpha_num:"Le champ {field} ne peut contenir que des caractères alpha-numériques",alpha_dash:"Le champ {field} ne peut contenir que des caractères alpha-numériques, tirets ou soulignés",alpha_spaces:"Le champ {field} ne peut contenir que des lettres ou des espaces",between:"Le champ {field} doit être compris entre 0:{min} et 1:{max}",confirmed:"Le champ {field} ne correspond pas",digits:"Le champ {field} doit être un nombre entier de 0:{length} chiffres",dimensions:"Le champ {field} doit avoir une taille de 0:{width} pixels par 1:{height} pixels",email:"Le champ {field} doit être une adresse e-mail valide",not_one_of:"Le champ {field} doit être une valeur valide",ext:"Le champ {field} doit être un fichier valide",image:"Le champ {field} doit être une image",integer:"Le champ {field} doit être un entier",length:"Le champ {field} doit contenir 0:{length} caractères",max_value:"Le champ {field} doit avoir une valeur de 0:{max} ou moins",max:"Le champ {field} ne peut pas contenir plus de 0:{length} caractères",mimes:"Le champ {field} doit avoir un type MIME valide",min_value:"Le champ {field} doit avoir une valeur de 0:{min} ou plus",min:"Le champ {field} doit contenir au minimum 0:{length} caractères",numeric:"Le champ {field} ne peut contenir que des chiffres",one_of:"Le champ {field} doit être une valeur valide",regex:"Le champ {field} est invalide",required:"Le champ {field} est obligatoire",required_if:"Le champ {field} est obligatoire lorsque {target} possède cette valeur",size:"Le champ {field} doit avoir un poids inférieur à 0:{size}KB"},Dh={code:QT,messages:qT},e1="he",t1={alpha:"השדה {field} יכול להכיל רק אותיות",alpha_num:"השדה {field} יכול להכיל רק אותיות ומספרים.",alpha_dash:"השדה {field} יכול להכיל רק אותיות, מספרים ומקפים",alpha_spaces:"השדה {field} יכול להכיל רק אותיות ורווחים",between:"הערך {field} חייב להיות בין 0:{min} ל- 1:{max}",confirmed:"הערכים של {field} חייבים להיות זהים",digits:"השדה {field} חייב להיות מספר ולהכיל 0:{length} ספרות בדיוק",dimensions:"השדה {field} חייב להיות 0:{width} פיקסלים על 1:{height} פיקסלים",email:"השדה {field} חייב להכיל כתובת אימייל תקינה",not_one_of:"השדה {field} חייב להכיל ערך תקין",ext:"השדה {field} חייב להכיל קובץ תקין",image:"השדה {field} חייב להכיל תמונה",max_value:"השדה {field} יכול להיות 0:{max} לכל היותר",max:"השדה {field} לא יכול להכיל יותר מ- 0:{length} תווים",mimes:"הקובץ חייב להיות מסוג תקין",min_value:"הערך של {field} חייב להיות לפחות 0:{min}",min:"השדה {field} חייב להכיל 0:{length} תווים לפחות",numeric:"השדה {field} יכול להכיל ספרות בלבד",one_of:"השדה {field} חייב להיות בעל ערך תקין",regex:"הפורמט של {field} אינו תקין",required:"חובה למלא את השדה {field}",required_if:"חובה למלא את השדה {field}",size:"השדה {field} חייב לשקול פחות מ 0:{size}KB"},Th={code:e1,messages:t1},n1="hi_IN",i1={_default:"यह {field} मान्य नहीं है",alpha:"{field} फ़ील्ड में केवल वर्णात्मक अक्षर हो सकते हैं",alpha_num:"{field} फ़ील्ड में केवल वर्णात्मक और संख्यात्मक अक्षर हो सकते हैं",alpha_dash:"{field} फ़ील्ड में वर्णात्मक और संख्यात्मक अक्षरों के साथ डैश और अंडरस्कोर हो सकते हैं",alpha_spaces:"{field} फ़ील्ड में केवल वर्णात्मक अक्षर और अंतर हो सकते हैं",between:"{field} फ़ील्ड 0:{min} और 1:{max} के बीच होना चाहिए",confirmed:"{field} फ़ील्ड की पुष्टि मेल नहीं खाती",digits:"{field} फ़ील्ड संख्यात्मक होनी चाहिए और बिल्कुल 0:{length} अंक होने चाहिए",dimensions:"{field} फ़ील्ड 0:{width} पिक्सेल और 1:{height} पिक्सेल होना चाहिए",email:"{field} फ़ील्ड में एक मान्य ईमेल होना चाहिए",not_one_of:"{field} फ़ील्ड मान्य मूल्य नहीं है",ext:"{field} फ़ील्ड में मान्य फ़ाइल नहीं है",image:"{field} फ़ील्ड एक छवि होनी चाहिए",integer:"{field} फ़ील्ड एक पूर्णांक होना चाहिए",length:"{field} फ़ील्ड 0:{length} लंबा होना चाहिए",max_value:"{field} फ़ील्ड 0:{max} या उससे कम होना चाहिए",max:"{field} फ़ील्ड 0:{length} अक्षरों से अधिक नहीं हो सकता",mimes:"{field} फ़ील्ड को मान्य फ़ाइल प्रकार होना चाहिए",min_value:"{field} फ़ील्ड 0:{min} या उससे अधिक होना चाहिए",min:"{field} फ़ील्ड कम से कम 0:{length} अक्षरों का होना चाहिए",numeric:"{field} फ़ील्ड में केवल संख्याएँ हो सकती हैं",one_of:"{field} फ़ील्ड मान्य मूल्य नहीं है",regex:"{field} फ़ील्ड का प्रारूप अवैध है",required_if:"{field} फ़ील्ड आवश्यक है",required:"{field} फ़ील्ड आवश्यक है",size:"{field} फ़ील्ड का आकार 0:{size}KB से कम होना चाहिए",url:"{field} फ़ील्ड में एक मान्य URL नहीं है"},Ch={code:n1,messages:i1},r1="it",s1={alpha:"Il campo {field} può contenere solo caratteri alfabetici",alpha_num:"Il campo {field} può contenere solo caratteri alfanumerici",alpha_dash:"Il campo {field} può contenere caratteri alfa-numerici così come lineette e trattini di sottolineatura",alpha_spaces:"Il campo {field} può contenere solo caratteri alfanumerici così come spazi",between:"Il campo {field} deve essere compreso tra 0:{min} e 1:{max}",confirmed:"Il campo {field} non corrisponde",digits:"Il campo {field} deve essere numerico e contenere esattamente 0:{length} cifre",dimensions:"Il campo {field} deve essere 0:{width} x 1:{height}",email:"Il campo {field} deve essere un indirizzo email valido",not_one_of:"Il campo {field} deve avere un valore valido",ext:"Il campo {field} deve essere un file valido",image:"Il campo {field} deve essere un'immagine",integer:"Il campo {field} deve essere un numero",is_not:"Il campo {field} non è valido",length:"La lunghezza del campo {field} deve essere 0:{length}",max_value:"Il campo {field} deve essere minore o uguale a 0:{max}",max:"Il campo {field} non può essere più lungo di 0:{length} caratteri",mimes:"Il campo {field} deve avere un tipo di file valido",min_value:"Il campo {field} deve essere maggiore o uguale a 0:{min}",min:"Il campo {field} deve avere almeno 0:{length} caratteri",numeric:"Il campo {field} può contenere solo caratteri numerici",one_of:"Il campo {field} deve avere un valore valido",regex:"Il campo {field} non ha un formato valido",required:"Il campo {field} è richiesto",required_if:"Il campo {field} è richiesto",size:"Il campo {field} deve essere inferiore a 0:{size}KB"},Oh={code:r1,messages:s1},o1="ja",a1={_default:"{field}は有効な値ではありません",alpha:"{field}はアルファベットのみ使用できます",alpha_num:"{field}は英数字のみ使用できます",alpha_dash:"{field}は英数字とハイフン、アンダースコアのみ使用できます",alpha_spaces:"{field}はアルファベットと空白のみ使用できます",between:"{field}は 0:{min} から 1:{max} の間でなければなりません",confirmed:"{field}が一致しません",digits:"{field}は 0:{length}桁の数字でなければなりません",dimensions:"{field}は幅 0:{width}px、高さ 1:{height}px 以内でなければなりません",email:"{field}は有効なメールアドレスではありません",not_one_of:"{field}は不正な値です",ext:"{field}は有効なファイル形式ではありません",image:"{field}は有効な画像形式ではありません",integer:"{field}は整数のみ使用できます",is:"{field}が一致しません",length:"{field}は 0:{length} 文字でなければなりません",max_value:"{field}は 0:{max} 以下でなければなりません",max:"{field}は 0:{length} 文字以内にしてください",mimes:"{field}は有効なファイル形式ではありません",min_value:"{field}は 0:{min} 以上でなければなりません",min:"{field}は 0:{length} 文字以上でなければなりません",numeric:"{field}は数字のみ使用できます",one_of:"{field}は有効な値ではありません",regex:"{field}のフォーマットが正しくありません",required:"{field}は必須項目です",required_if:"{field}は必須項目です",size:"{field}は 0:{size}KB 以内でなければなりません",url:"{field}は有効なURLではありません"},xh={code:o1,messages:a1},l1="nl",u1={_default:"{field} is ongeldig",alpha:"{field} mag alleen letters bevatten",alpha_dash:"{field} mag alleen letters, nummers, en streepjes bevatten",alpha_num:"{field} mag alleen letters en nummers bevatten",alpha_spaces:"{field} mag alleen letters en spaties bevatten",between:"{field} moet tussen 0:{min} en 1:{max} liggen",confirmed:"{field} bevestiging komt niet overeen",digits:"{field} moet een nummer zijn en exact 0:{length} tekens bevatten",dimensions:"{field} moet 0:{width} pixels breed zijn en 1:{height} pixels hoog",email:"{field} moet een geldig e-mailadres zijn",not_one_of:"{field} is ongeldig",ext:"{field} moet een geldig bestand zijn",image:"{field} moet een afbeelding zijn",one_of:"{field} moet een geldige waarde zijn",max:"{field} mag niet groter zijn dan 0:{length} karakters",max_value:"{field} mag maximaal 0:{max} zijn",mimes:"{field} moet een geldig bestandstype hebben",min:"{field} moet minimaal 0:{length} karakters zijn",min_value:"{field} moet minimaal 0:{min} zijn",numeric:"{field} mag alleen nummers bevatten",regex:"{field} formaat is ongeldig",required:"{field} is verplicht",required_if:"{field} is verplicht",size:"{field} mag niet groter zijn dan 0:{size}KB"},Ah={code:l1,messages:u1},c1="pl",f1={alpha:"Pole {field} może zawierać tylko litery",alpha_dash:"Pole {field} może zawierać litery, cyfry oraz myślnik lub podkreślnik",alpha_num:"Pole {field} może zawierać tylko litery i cyfry",alpha_spaces:"Pole {field} może zawierać tylko litery oraz spacje",between:"Pole {field} musi być pomiędzy 0:{min} oraz 1:{max}",confirmed:"Pole {field} nie zgadza się z polem potwierdzającym {target}",digits:"Pole {field} musi być liczbą i dokładnie 0:{length} cyfr",dimensions:"Obraz {field} musi być szeroki na 0:{width} pikseli i wysoki na 1:{height} pikseli",email:"Pole {field} musi być poprawnym adresem email",not_one_of:"Pole {field} musi być poprawną wartością",ext:"Plik {field} musi być poprawnym plikiem",image:"Pole {field} musi być obrazem",one_of:"Pole {field} musi być poprawną wartością",integer:"Pole {field} musi być liczbą całkowitą",length:"Pole {field} musi mieć długość 0:{length}",max:"Pole {field} nie może być dłuższe niż 0:{length}",max_value:"Pole {field} musi mieć maksymalną wartość 0:{max}",mimes:"Plik {field} musi posiadać poprawne rozszerzenie",min:"Pole {field} musi być długie na co najmniej 0:{length}",min_value:"Pole {field} musi mieć minimalną wartość 0:{min}",numeric:"Pole {field} może zawierać tylko cyfry",regex:"Format pola {field} jest nieodpowiedni",required:"Pole {field} jest wymagane",required_if:"Pole {field} jest wymagane",size:"Plik {field} musi być mniejszy niż 0:{size}KB"},Mh={code:c1,messages:f1},d1="pt_BR",h1={alpha:"O campo {field} deve conter somente letras",alpha_dash:"O campo {field} deve conter letras, números e traços",alpha_num:"O campo {field} deve conter somente letras e números",alpha_spaces:"O campo {field} só pode conter caracteres alfabéticos e espaços",between:"O campo {field} deve estar entre 0:{min} e 1:{max}",confirmed:"A confirmação do campo {field} deve ser igual",digits:"O campo {field} deve ser numérico e ter exatamente 0:{length} dígitos",dimensions:"O campo {field} deve ter 0:{width} pixels de largura por 1:{height} pixels de altura",email:"O campo {field} deve ser um email válido",not_one_of:"O campo {field} deve ser um valor válido",ext:"O campo {field} deve ser um arquivo válido",image:"O campo {field} deve ser uma imagem",integer:"O campo {field} deve ser um número inteiro",is:"O valor inserido no campo {field} não é válido",one_of:"O campo {field} deve ter um valor válido",length:"O tamanho do campo {field} deve ser 0:{length}",max:"O campo {field} não deve ter mais que 0:{length} caracteres",max_value:"O campo {field} precisa ser 0:{max} ou menor",mimes:"O campo {field} deve ser um tipo de arquivo válido",min:"O campo {field} deve conter pelo menos 0:{length} caracteres",min_value:"O campo {field} precisa ser 0:{min} ou maior",numeric:"O campo {field} deve conter apenas números",regex:"O campo {field} possui um formato inválido",required:"O campo {field} é obrigatório",required_if:"O campo {field} é obrigatório",size:"O campo {field} deve ser menor que 0:{size}KB",url:"O campo {field} deve ser uma URL válida"},Ih={code:d1,messages:h1},p1="ru",m1={_default:"Поле {field} некорректно",alpha:"Поле {field} может содержать только буквы",alpha_num:"Поле {field} может содержать только буквы и цифры",alpha_dash:"Поле {field} может содержать только буквы, цифры и дефис",alpha_spaces:"Поле {field} может содержать только буквы и пробелы",between:"Поле {field} должно быть числом между 0:{min} и 1:{max}",confirmed:"Поле {field} не совпадает с другим полем",digits:"Поле {field} должно быть числом ровно из 0:{length} цифр",dimensions:"Поле {field} должно быть изображением 0:{width} пикселей на 1:{height} пикселей",email:"Поле {field} должно быть действительным электронным адресом",not_one_of:"Поле {field} должно быть допустимым значением",ext:"Поле {field} должно быть действительным файлом",image:"Поле {field} должно быть изображением",integer:"Поле {field} должно быть целым числом",length:"Длина поля {field} должна быть 0:{length}",max_value:"Поле {field} должно быть числом 0:{max} или меньше",max:"Поле {field} не может быть длиннее 0:{length} символов",mimes:"Поле {field} должно иметь допустимый тип файла",min_value:"Поле {field} должно быть числом 0:{min} или больше",min:"Поле {field} должно быть не короче 0:{length} символов",numeric:"Поле {field} должно быть числом",one_of:"Поле {field} должно быть допустимым значением",regex:"Поле {field} имеет некорректный формат",required_if:"Поле {field} обязательно для заполнения",required:"Поле {field} обязательно для заполнения",size:"Поле {field} должно быть меньше, чем 0:{size}KB",url:"Поле {field} содержит ссылку в некорректном формате"},Ph={code:p1,messages:m1},g1="sin",v1={_default:"මේ {field} වල වලංගු නොවේ",alpha:"{field} ක්ෂණික සංඛ්‍යාවක් පිළිබඳව සියල්ල සියල්ල සහිතව හැකිය",alpha_num:"{field} ක්ෂණික සහ සංඛ්‍යාවක් පිළිබඳව සියල්ල සහිතව හැකිය",alpha_dash:"{field} ක්ෂණික සහ සංඛ්‍යාවක් සමග දැහැ හෝ පරිදි ලොව සහිතව හැකිය",alpha_spaces:"{field} ක්ෂණික සංඛ්‍යාවක් සහිතව හැකිය, සහ වීඩියෝ හෝම්හෝ සහිතව හැකිය",between:"{field} ක්ෂණික 0:{min} සහ 1:{max} අතර විය යුතුය",confirmed:"{field} ක්ෂණික තහවුරු නොගත් බව තහවුරු කර නොයාය",digits:"{field} ක්ෂණික සෂ්යෝගයක් හා සියලුමේ විය 0:{length} දිගු විය යුතුය",dimensions:"{field} ක්ෂණික 0:{width} පික්සල සහ 1:{height} පික්සල විය යුතුය",email:"{field} ක්ෂණික වලංගු ඊමේල් එක හෝ යුක්ත විය යුතුය",not_one_of:"{field} ක්ෂණික වලංගු අගය නොවේ",ext:"{field} ක්ෂණික වලංගු ගොනුව නොවේ",image:"{field} ක්ෂණික වලංගු ඡායාරූපය යුතුය",integer:"{field} ක්ෂණික වලංගු නික්මෙර වර්ගයේ යුතුය",length:"{field} ක්ෂණික වලංගු 0:{length} හෝමාව යුතුය",max_value:"{field} ක්ෂණික 0:{max} හෝමා හෝමා හෝමා යුතුය",max:"{field} ක්ෂණික 0:{length} අකුරු වලංගු වී නොයාය",mimes:"{field} ක්ෂණික ගොනුවේ වලංගු ගොනු වර්ගය හෝ හෝ හෝ යුතුය",min_value:"{field} ක්ෂණික 0:{min} හෝමාව හෝමාව හෝමාව හෝමාව හෝමාව යුතුය",min:"{field} ක්ෂණික 0:{length} හෝමාවක් හෝමාවක් හෝමාවක් හෝමාවක් යුතුය",numeric:"{field} ක්ෂණික වලංගු සංඛ්‍යාවෙන් වයස්ක්‍ර සංඛ්‍යාවෙන් වයස්ක්‍ර විය ෺",one_of:"{field} ක්ෂණික වලංගු අගය නොවේ",regex:"{field} ක්ෂණික වලංගු ආකාරය අවලංගුය",required_if:"{field} ක්ෂණිකයෙන් හෝයි",required:"{field} ක්ෂණිකයෙන් හෝයි",size:"{field} ක්ෂණික වලංගු විය හැකි ආකාරය 0:{size}KB හෝ හොයා යුතුයි",url:"{field} ක්ෂණික වලංගු වර්ගවල URL නොවේ"},Nh={code:g1,messages:v1},y1="tr",b1={alpha:"{field} yalnızca harf içerebilir",alpha_dash:"{field} alanı harf ve tire (-) ya da alttan tire (_) içerebilir",alpha_num:"{field} yalnızca harf ve rakam içerebilir",alpha_spaces:"{field} yalnızca harf boşluk (space) içerebilir",between:"{field} 0:{min} ile 1:{max} aralığında olmalıdır",confirmed:"{field} doğrulaması hatalı",digits:"{field} sayısal ve 0:{length} basamaklı olmalıdır",dimensions:"{field} alanı 0:{width} piksel ile 1:{height} piksel arasında olmalıdır",email:"{field} alanının geçerli bir e-posta olması gerekir",not_one_of:"{field} alanına geçerli bir değer giriniz",ext:"{field} alanı geçerli bir dosya olmalıdır",image:"{field} alanı resim dosyası olmalıdır",integer:"{field} alanı bir tamsayı olmalıdır",length:"{field} alanı 0:{length} uzunluğunda olmalıdır",one_of:"{field} alanına geçerli bir değer giriniz",max:"{field} alanı 0:{length} karakterden fazla olmamalıdır",max_value:"{field} alanı 0:{max} ya da daha az bir değer olmalıdır",mimes:"{field} geçerli bir dosya olmalıdır",min:"{field} alanına en az 0:{length} karakter girilmelidir",min_value:"{field} alanı 0:{min} ya da daha fazla bir değer olmalıdır",numeric:"{field} alanına sayısal bir değer giriniz",regex:"{field} formatı geçersiz",required:"{field} alanı gereklidir",required_if:"{field} alanı gereklidir",size:"{field} alanı 0:{size}KB'dan daha az olmalıdır",url:"{field} geçerli bir URL değil"},Rh={code:y1,messages:b1},E1="uk",S1={alpha:"Поле {field} може містити тільки літери",alpha_dash:"Поле {field} може містити буквено-цифрові символи, а також тире та підкреслення",alpha_num:"Поле {field} може містити тільки літери та цифри",alpha_spaces:"Поле {field} може містити тільки літери та пробіли",between:"Поле {field} повинно бути між 0:{min} та 1:{max}",confirmed:"Поле {field} не співпадає з підтвердженням",digits:"Поле {field} повинно бути числовим та точно містити 0:{length} цифри",dimensions:"Поле {field} повинно бути 0:{width} пікселів на 1:{height} пікселів",email:"В полі {field} повинна бути адреса електронної пошти",not_one_of:"Поле {field} повинно мати допустиме значення",ext:"Поле {field} повинно бути дійсним файлом",image:"В полі {field} має бути зображення",one_of:"Поле {field} повинно бути допустимим значенням",max:"Поле {field} не може бути більше, ніж 0:{length} символів",max_value:"Поле {field} повинно бути 0:{max} або менше",mimes:"Поле {field} повиннно мати дійсний тип файлу",min:"Поле {field} має бути принаймні 0:{length} символів",min_value:"Поле {field} повинно бути 0:{min} або більше",numeric:"Поле {field} може містить лише цифри",regex:"Поле {field} має невірний формат",required:"Поле {field} повинно мати значення",required_if:"Поле {field} повинно мати значення",size:"Поле {field} повинно бути менше 0:{size}KB"},_h={code:E1,messages:S1},w1="zh_CN",D1={_default:"{field}不是一个有效值",alpha:"{field}只能包含字母字符",alpha_dash:"{field}能够包含字母数字字符、破折号和下划线",alpha_num:"{field}只能包含字母数字字符",alpha_spaces:"{field}只能包含字母字符和空格",between:"{field}必须在0:{min}与1:{max}之间",confirmed:"{field}不能和0:{target}匹配",digits:"{field}必须是数字,且精确到0:{length}位数",dimensions:"{field}必须在0:{width}像素与1:{height}像素之间",email:"{field}不是一个有效的邮箱",not_one_of:"{field}不是一个有效值",ext:"{field}不是一个有效的文件",image:"{field}不是一张有效的图片",one_of:"{field}不是一个有效值",integer:"{field}必须是整数",length:"{field}长度必须为0:{length}",max:"{field}不能超过0:{length}个字符",max_value:"{field}必须小于或等于0:{max}",mimes:"{field}不是一个有效的文件类型",min:"{field}必须至少有0:{length}个字符",min_value:"{field}必须大于或等于0:{min}",numeric:"{field}只能包含数字字符",regex:"{field}格式无效",required:"{field}是必须的",required_if:"{field}是必须的",size:"{field}必须小于0:{size}KB",url:"{field}不是一个有效的URL"},Fh={code:w1,messages:D1};/** - * vee-validate v4.13.2 - * (c) 2024 Abdelrahman Awad - * @license MIT - */const zo={en:/^[A-Z]*$/i,cs:/^[A-ZÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ]*$/i,da:/^[A-ZÆØÅ]*$/i,de:/^[A-ZÄÖÜß]*$/i,es:/^[A-ZÁÉÍÑÓÚÜ]*$/i,fr:/^[A-ZÀÂÆÇÉÈÊËÏÎÔŒÙÛÜŸ]*$/i,it:/^[A-Z\xC0-\xFF]*$/i,lt:/^[A-ZĄČĘĖĮŠŲŪŽ]*$/i,nl:/^[A-ZÉËÏÓÖÜ]*$/i,hu:/^[A-ZÁÉÍÓÖŐÚÜŰ]*$/i,pl:/^[A-ZĄĆĘŚŁŃÓŻŹ]*$/i,pt:/^[A-ZÃÁÀÂÇÉÊÍÕÓÔÚÜ]*$/i,ru:/^[А-ЯЁ]*$/i,kz:/^[А-ЯЁ\u04D8\u04B0\u0406\u04A2\u0492\u04AE\u049A\u04E8\u04BA]*$/i,sk:/^[A-ZÁÄČĎÉÍĹĽŇÓŔŠŤÚÝŽ]*$/i,sr:/^[A-ZČĆŽŠĐ]*$/i,sv:/^[A-ZÅÄÖ]*$/i,tr:/^[A-ZÇĞİıÖŞÜ]*$/i,uk:/^[А-ЩЬЮЯЄІЇҐ]*$/i,ar:/^[ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰ]*$/,az:/^[A-ZÇƏĞİıÖŞÜ]*$/i,ug:/^[A-Zچۋېرتيۇڭوپھسداەىقكلزشغۈبنمژفگخجۆئ]*$/i},Go={en:/^[A-Z\s]*$/i,cs:/^[A-ZÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ\s]*$/i,da:/^[A-ZÆØÅ\s]*$/i,de:/^[A-ZÄÖÜß\s]*$/i,es:/^[A-ZÁÉÍÑÓÚÜ\s]*$/i,fr:/^[A-ZÀÂÆÇÉÈÊËÏÎÔŒÙÛÜŸ\s]*$/i,it:/^[A-Z\xC0-\xFF\s]*$/i,lt:/^[A-ZĄČĘĖĮŠŲŪŽ\s]*$/i,nl:/^[A-ZÉËÏÓÖÜ\s]*$/i,hu:/^[A-ZÁÉÍÓÖŐÚÜŰ\s]*$/i,pl:/^[A-ZĄĆĘŚŁŃÓŻŹ\s]*$/i,pt:/^[A-ZÃÁÀÂÇÉÊÍÕÓÔÚÜ\s]*$/i,ru:/^[А-ЯЁ\s]*$/i,kz:/^[А-ЯЁ\u04D8\u04B0\u0406\u04A2\u0492\u04AE\u049A\u04E8\u04BA\s]*$/i,sk:/^[A-ZÁÄČĎÉÍĹĽŇÓŔŠŤÚÝŽ\s]*$/i,sr:/^[A-ZČĆŽŠĐ\s]*$/i,sv:/^[A-ZÅÄÖ\s]*$/i,tr:/^[A-ZÇĞİıÖŞÜ\s]*$/i,uk:/^[А-ЩЬЮЯЄІЇҐ\s]*$/i,ar:/^[ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰ\s]*$/,az:/^[A-ZÇƏĞİıÖŞÜ\s]*$/i,ug:/^[A-Zچۋېرتيۇڭوپھسداەىقكلزشغۈبنمژفگخجۆئ\s]*$/i},Zo={en:/^[0-9A-Z]*$/i,cs:/^[0-9A-ZÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ]*$/i,da:/^[0-9A-ZÆØÅ]$/i,de:/^[0-9A-ZÄÖÜß]*$/i,es:/^[0-9A-ZÁÉÍÑÓÚÜ]*$/i,fr:/^[0-9A-ZÀÂÆÇÉÈÊËÏÎÔŒÙÛÜŸ]*$/i,it:/^[0-9A-Z\xC0-\xFF]*$/i,lt:/^[0-9A-ZĄČĘĖĮŠŲŪŽ]*$/i,hu:/^[0-9A-ZÁÉÍÓÖŐÚÜŰ]*$/i,nl:/^[0-9A-ZÉËÏÓÖÜ]*$/i,pl:/^[0-9A-ZĄĆĘŚŁŃÓŻŹ]*$/i,pt:/^[0-9A-ZÃÁÀÂÇÉÊÍÕÓÔÚÜ]*$/i,ru:/^[0-9А-ЯЁ]*$/i,kz:/^[0-9А-ЯЁ\u04D8\u04B0\u0406\u04A2\u0492\u04AE\u049A\u04E8\u04BA]*$/i,sk:/^[0-9A-ZÁÄČĎÉÍĹĽŇÓŔŠŤÚÝŽ]*$/i,sr:/^[0-9A-ZČĆŽŠĐ]*$/i,sv:/^[0-9A-ZÅÄÖ]*$/i,tr:/^[0-9A-ZÇĞİıÖŞÜ]*$/i,uk:/^[0-9А-ЩЬЮЯЄІЇҐ]*$/i,ar:/^[٠١٢٣٤٥٦٧٨٩0-9ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰ]*$/,az:/^[0-9A-ZÇƏĞİıÖŞÜ]*$/i,ug:/^[0-9A-Zچۋېرتيۇڭوپھسداەىقكلزشغۈبنمژفگخجۆئ]*$/i},Xo={en:/^[0-9A-Z_-]*$/i,cs:/^[0-9A-ZÁČĎÉĚÍŇÓŘŠŤÚŮÝŽ_-]*$/i,da:/^[0-9A-ZÆØÅ_-]*$/i,de:/^[0-9A-ZÄÖÜß_-]*$/i,es:/^[0-9A-ZÁÉÍÑÓÚÜ_-]*$/i,fr:/^[0-9A-ZÀÂÆÇÉÈÊËÏÎÔŒÙÛÜŸ_-]*$/i,it:/^[0-9A-Z\xC0-\xFF_-]*$/i,lt:/^[0-9A-ZĄČĘĖĮŠŲŪŽ_-]*$/i,nl:/^[0-9A-ZÉËÏÓÖÜ_-]*$/i,hu:/^[0-9A-ZÁÉÍÓÖŐÚÜŰ_-]*$/i,pl:/^[0-9A-ZĄĆĘŚŁŃÓŻŹ_-]*$/i,pt:/^[0-9A-ZÃÁÀÂÇÉÊÍÕÓÔÚÜ_-]*$/i,ru:/^[0-9А-ЯЁ_-]*$/i,kz:/^[0-9А-ЯЁ\u04D8\u04B0\u0406\u04A2\u0492\u04AE\u049A\u04E8\u04BA_-]*$/i,sk:/^[0-9A-ZÁÄČĎÉÍĹĽŇÓŔŠŤÚÝŽ_-]*$/i,sr:/^[0-9A-ZČĆŽŠĐ_-]*$/i,sv:/^[0-9A-ZÅÄÖ_-]*$/i,tr:/^[0-9A-ZÇĞİıÖŞÜ_-]*$/i,uk:/^[0-9А-ЩЬЮЯЄІЇҐ_-]*$/i,ar:/^[٠١٢٣٤٥٦٧٨٩0-9ءآأؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهوىيًٌٍَُِّْٰ_-]*$/,az:/^[0-9A-ZÇƏĞİıÖŞÜ_-]*$/i,ug:/^[0-9A-Zچۋېرتيۇڭوپھسداەىقكلزشغۈبنمژفگخجۆئ_-]*$/i},Ml=e=>{if(e)return Array.isArray(e)?e[0]:e.locale};function Gn(e,n){return Array.isArray(e)?e[0]:e[n]}function xt(e){return!!(e==null||e===""||Array.isArray(e)&&e.length===0)}const Qv=(e,n)=>{if(xt(e))return!0;const t=Ml(n);if(Array.isArray(e))return e.every(r=>Qv(r,{locale:t}));const i=String(e);return t?(zo[t]||zo.en).test(i):Object.keys(zo).some(r=>zo[r].test(i))},qv=(e,n)=>{if(xt(e))return!0;const t=Ml(n);if(Array.isArray(e))return e.every(r=>qv(r,{locale:t}));const i=String(e);return t?(Xo[t]||Xo.en).test(i):Object.keys(Xo).some(r=>Xo[r].test(i))},ey=(e,n)=>{if(xt(e))return!0;const t=Ml(n);if(Array.isArray(e))return e.every(r=>ey(r,{locale:t}));const i=String(e);return t?(Zo[t]||Zo.en).test(i):Object.keys(Zo).some(r=>Zo[r].test(i))},ty=(e,n)=>{if(xt(e))return!0;const t=Ml(n);if(Array.isArray(e))return e.every(r=>ty(r,{locale:t}));const i=String(e);return t?(Go[t]||Go.en).test(i):Object.keys(Go).some(r=>Go[r].test(i))};function T1(e){return Array.isArray(e)?{min:e[0],max:e[1]}:e}const ny=(e,n)=>{if(xt(e))return!0;const{min:t,max:i}=T1(n);if(Array.isArray(e))return e.every(o=>ny(o,{min:t,max:i}));const r=Number(e);return Number(t)<=r&&Number(i)>=r},C1=(e,n)=>{const t=Gn(n,"target");return String(e)===String(t)},iy=(e,n)=>{if(xt(e))return!0;const t=Gn(n,"length");if(Array.isArray(e))return e.every(r=>iy(r,{length:t}));const i=String(e);return/^[0-9]*$/.test(i)&&i.length===Number(t)},O1=(e,n,t)=>{const i=window.URL||window.webkitURL;return new Promise(r=>{const o=new Image;o.onerror=()=>r(!1),o.onload=()=>r(o.width===n&&o.height===t),o.src=i.createObjectURL(e)})};function x1(e){return e?Array.isArray(e)?{width:Number(e[0]),height:Number(e[1])}:{width:Number(e.width),height:Number(e.height)}:{width:0,height:0}}const A1=(e,n)=>{if(xt(e))return!0;const{width:t,height:i}=x1(n),r=[],o=Array.isArray(e)?e:[e];for(let s=0;sO1(s,t,i))).then(s=>s.every(a=>a))},Lh=/^(?!\.)(?!.*\.\.)([A-Z0-9_+-\.]*)[A-Z0-9_+-]@([A-Z0-9][A-Z0-9\-]*\.)+[A-Z]{2,}$/i,M1=e=>xt(e)?!0:Array.isArray(e)?e.every(n=>Lh.test(String(n))):Lh.test(String(e)),I1=(e,n)=>{if(xt(e))return!0;const t=new RegExp(`\\.(${n.join("|")})$`,"i");return Array.isArray(e)?e.every(i=>t.test(i.name)):t.test(e.name)},P1=e=>{if(xt(e))return!0;const n=/\.(jpg|svg|jpeg|png|bmp|gif|webp)$/i;return Array.isArray(e)?e.every(t=>n.test(t.name)):n.test(e.name)},N1=e=>xt(e)?!0:Array.isArray(e)?e.every(n=>/^-?[0-9]+$/.test(String(n))):/^-?[0-9]+$/.test(String(e)),R1=(e,n)=>{const t=Gn(n,"other");return e===t},_1=(e,n)=>{const t=Gn(n,"other");return e!==t},F1=(e,n)=>{if(xt(e))return!0;const t=Gn(n,"length");return typeof e=="number"&&(e=String(e)),e.length||(e=Array.from(e)),e.length===Number(t)},ry=(e,n)=>{if(xt(e))return!0;const t=Gn(n,"length");return Array.isArray(e)?e.every(i=>ry(i,{length:t})):[...String(e)].length<=Number(t)},sy=(e,n)=>{if(xt(e))return!0;const t=Gn(n,"max");return Array.isArray(e)?e.length>0&&e.every(i=>sy(i,{max:t})):Number(e)<=Number(t)},kh=/\+(.+)?/;function L1(e){let n=e;return kh.test(e)&&(n=e.replace(kh,"(\\+$1)?")),new RegExp(n.replace("*",".+"),"i")}const k1=(e,n)=>{if(xt(e))return!0;n||(n=[]);const t=n.map(L1);return Array.isArray(e)?e.every(i=>t.some(r=>r.test(i.type))):t.some(i=>i.test(e.type))},oy=(e,n)=>{if(xt(e))return!0;const t=Gn(n,"length");return Array.isArray(e)?e.every(i=>oy(i,{length:t})):[...String(e)].length>=Number(t)},ay=(e,n)=>{if(xt(e))return!0;const t=Gn(n,"min");return Array.isArray(e)?e.length>0&&e.every(i=>ay(i,{min:t})):Number(e)>=Number(t)},Mf=(e,n)=>xt(e)?!0:Array.isArray(e)?e.every(t=>Mf(t,n)):Array.from(n).some(t=>t==e),$1=(e,n)=>xt(e)?!0:!Mf(e,n),j1=/^[٠١٢٣٤٥٦٧٨٩]+$/,V1=/^[0-9]+$/,B1=e=>{if(xt(e))return!0;const n=t=>{const i=String(t);return V1.test(i)||j1.test(i)};return Array.isArray(e)?e.every(n):n(e)},ly=(e,n)=>{if(xt(e))return!0;let t=Gn(n,"regex");return typeof t=="string"&&(t=new RegExp(t)),Array.isArray(e)?e.every(i=>ly(i,{regex:t})):t.test(String(e))};function H1(e){return e==null}function U1(e){return Array.isArray(e)&&e.length===0}const W1=e=>H1(e)||U1(e)||e===!1?!1:!!String(e).trim().length,K1=(e,n)=>{if(xt(e))return!0;let t=Gn(n,"size");if(t=Number(t),isNaN(t))return!1;const i=t*1024;if(!Array.isArray(e))return e.size<=i;for(let r=0;ri)return!1;return!0},Y1=(e,n)=>{var t;if(xt(e))return!0;let i=Gn(n,"pattern");typeof i=="string"&&(i=new RegExp(i));try{new URL(e)}catch{return!1}return(t=i==null?void 0:i.test(e))!==null&&t!==void 0?t:!0},z1={alpha_dash:qv,alpha_num:ey,alpha_spaces:ty,alpha:Qv,between:ny,confirmed:C1,digits:iy,dimensions:A1,email:M1,ext:I1,image:P1,integer:N1,is_not:_1,is:R1,length:F1,max_value:sy,max:ry,mimes:k1,min_value:ay,min:oy,not_one_of:$1,numeric:B1,one_of:Mf,regex:ly,required:W1,size:K1,url:Y1};window.defineRule=dr;const G1={install:e=>{e.component("VForm",NT),e.component("VField",CT),e.component("VErrorMessage",_T),window.addEventListener("load",()=>jT(document.documentElement.attributes.lang.value)),Object.entries(z1).forEach(([n,t])=>dr(n,t)),dr("phone",n=>!n||!n.length?!0:!!/^\+?\d+$/.test(n)),dr("address",n=>!n||!n.length?!0:!!/^[a-zA-Z0-9\s.\/*'\u0600-\u06FF\u0750-\u077F\u08A0-\u08FF\u0590-\u05FF\u3040-\u309F\u30A0-\u30FF\u0400-\u04FF\u0D80-\u0DFF\u3400-\u4DBF\u2000-\u2A6D\u00C0-\u017F\u0980-\u09FF\u0900-\u097F\u4E00-\u9FFF,\(\)-]{1,60}$/iu.test(n)),dr("decimal",(n,{decimals:t="*",separator:i="."}={})=>{if(n==null||n==="")return!0;if(Number(t)===0)return/^-?\d*$/.test(n);const r=t==="*"?"+":`{1,${t}}`;return new RegExp(`^[-+]?\\d*(\\${i}\\d${r})?([eE]{1}[-]?\\d+)?$`).test(n)}),dr("required_if",(n,{condition:t=!0}={})=>!(t&&(n==null||n===""))),dr("",()=>!0),sT({generateMessage:$T({ar:{...vh,messages:{...vh.messages,phone:"يجب أن يكون هذا {field} رقم هاتف صالحًا"}},bn:{...yh,messages:{...yh.messages,phone:"এই {field} একটি বৈধ ফোন নম্বর হতে হবে"}},de:{...bh,messages:{...bh.messages,phone:"Dieses {field} muss eine gültige Telefonnummer sein."}},en:{...Eh,messages:{...Eh.messages,phone:"This {field} must be a valid phone number"}},es:{...Sh,messages:{...Sh.messages,phone:"Este {field} debe ser un número de teléfono válido."}},fa:{...wh,messages:{...wh.messages,phone:"این {field} باید یک شماره تلفن معتبر باشد."}},fr:{...Dh,messages:{...Dh.messages,phone:"Ce {field} doit être un numéro de téléphone valide."}},he:{...Th,messages:{...Th.messages,phone:"זה {field} חייב להיות מספר טלפון תקין."}},hi_IN:{...Ch,messages:{...Ch.messages,phone:"यह {field} कोई मान्य फ़ोन नंबर होना चाहिए।"}},it:{...Oh,messages:{...Oh.messages,phone:"Questo {field} deve essere un numero di telefono valido."}},ja:{...xh,messages:{...xh.messages,phone:"この{field}は有効な電話番号である必要があります。"}},nl:{...Ah,messages:{...Ah.messages,phone:"Dit {field} moet een geldig telefoonnummer zijn."}},pl:{...Mh,messages:{...Mh.messages,phone:"To {field} musi być prawidłowy numer telefonu."}},pt_BR:{...Ih,messages:{...Ih.messages,phone:"Este {field} deve ser um número de telefone válido."}},ru:{...Ph,messages:{...Ph.messages,phone:"Это {field} должно быть действительным номером телефона."}},sin:{...Nh,messages:{...Nh.messages,phone:"මෙම {field} වටේ වලංගු දුරකතන අංකය විය යුතුයි."}},tr:{...Rh,messages:{...Rh.messages,phone:"Bu {field} geçerli bir telefon numarası olmalıdır."}},uk:{..._h,messages:{..._h.messages,phone:"Це {field} повинно бути дійсним номером телефону."}},zh_CN:{...Fh,messages:{...Fh.messages,phone:"这个 {field} 必须是一个有效的电话号码。"}}}),validateOnBlur:!0,validateOnInput:!0,validateOnChange:!0})}},Z1={install(e){e.config.globalProperties.$h=qi,e.config.globalProperties.$resolveComponent=ui}};var X1=Object.defineProperty,J1=(e,n,t)=>n in e?X1(e,n,{enumerable:!0,configurable:!0,writable:!0,value:t}):e[n]=t,Ei=(e,n,t)=>(J1(e,typeof n!="symbol"?n+"":n,t),t);/** - * vue-cal v4.9.0 - * (c) 2024 Antoni Andre - * @license MIT - */let vs,$h,jh,Vn,ys={},$r={};class Q1{constructor(n){Ei(this,"_vuecal",null),Ei(this,"selectCell",(t=!1,i,r)=>{this._vuecal.$emit("cell-click",r?{date:i,split:r}:i),this._vuecal.clickToNavigate||t?this._vuecal.switchToNarrowerView():this._vuecal.dblclickToNavigate&&"ontouchstart"in window&&(this._vuecal.domEvents.dblTapACell.taps++,setTimeout(()=>this._vuecal.domEvents.dblTapACell.taps=0,this._vuecal.domEvents.dblTapACell.timeout),this._vuecal.domEvents.dblTapACell.taps>=2&&(this._vuecal.domEvents.dblTapACell.taps=0,this._vuecal.switchToNarrowerView(),this._vuecal.$emit("cell-dblclick",r?{date:i,split:r}:i)))}),Ei(this,"keyPressEnterCell",(t,i)=>{this._vuecal.$emit("cell-keypress-enter",i?{date:t,split:i}:t),this._vuecal.switchToNarrowerView()}),Ei(this,"getPosition",t=>{const{left:i,top:r}=this._vuecal.cellsEl.getBoundingClientRect(),{clientX:o,clientY:s}="ontouchstart"in window&&t.touches?t.touches[0]:t;return{x:o-i,y:s-r}}),Ei(this,"minutesAtCursor",t=>{let i=0,r={x:0,y:0};const{timeStep:o,timeCellHeight:s,timeFrom:a}=this._vuecal.$props;return typeof t=="number"?i=t:typeof t=="object"&&(r=this.getPosition(t),i=Math.round(r.y*o/parseInt(s)+a)),{minutes:Math.max(Math.min(i,1440),0),cursorCoords:r}}),this._vuecal=n}}const eu=1440;let Tt,Ct,tu;class q1{constructor(n,t){Ei(this,"_vuecal",null),Ei(this,"eventDefaults",{_eid:null,start:"",startTimeMinutes:0,end:"",endTimeMinutes:0,title:"",content:"",background:!1,allDay:!1,segments:null,repeat:null,daysCount:1,deletable:!0,deleting:!1,titleEditable:!0,resizable:!0,resizing:!1,draggable:!0,dragging:!1,draggingStatic:!1,focused:!1,class:""}),this._vuecal=n,Tt=t}createAnEvent(n,t,i){if(typeof n=="string"&&(n=Tt.stringToDate(n)),!(n instanceof Date))return!1;const r=Tt.dateToMinutes(n),o=r+(t=1*t||120),s=Tt.addMinutes(new Date(n),t);i.end&&(typeof i.end=="string"&&(i.end=Tt.stringToDate(i.end)),i.endTimeMinutes=Tt.dateToMinutes(i.end));const a={...this.eventDefaults,_eid:`${this._vuecal._.uid}_${this._vuecal.eventIdIncrement++}`,start:n,startTimeMinutes:r,end:s,endTimeMinutes:o,segments:null,...i};return typeof this._vuecal.onEventCreate!="function"||this._vuecal.onEventCreate(a,()=>this.deleteAnEvent(a))?(a.startDateF!==a.endDateF&&(a.daysCount=Tt.countDays(a.start,a.end)),this._vuecal.mutableEvents.push(a),this._vuecal.addEventsToView([a]),this._vuecal.emitWithEvent("event-create",a),this._vuecal.$emit("event-change",{event:this._vuecal.cleanupEvent(a),originalEvent:null}),a):void 0}addEventSegment(n){n.segments||(n.segments={},n.segments[Tt.formatDateLite(n.start)]={start:n.start,startTimeMinutes:n.startTimeMinutes,endTimeMinutes:eu,isFirstDay:!0,isLastDay:!1});const t=n.segments[Tt.formatDateLite(n.end)];t&&(t.isLastDay=!1,t.endTimeMinutes=eu);const i=Tt.addDays(n.end,1),r=Tt.formatDateLite(i);return i.setHours(0,0,0,0),n.segments[r]={start:i,startTimeMinutes:0,endTimeMinutes:n.endTimeMinutes,isFirstDay:!1,isLastDay:!0},n.end=Tt.addMinutes(i,n.endTimeMinutes),n.daysCount=Object.keys(n.segments).length,r}removeEventSegment(n){let t=Object.keys(n.segments).length;if(t<=1)return Tt.formatDateLite(n.end);delete n.segments[Tt.formatDateLite(n.end)],t--;const i=Tt.subtractDays(n.end,1),r=Tt.formatDateLite(i),o=n.segments[r];return t?o&&(o.isLastDay=!0,o.endTimeMinutes=n.endTimeMinutes):n.segments=null,n.daysCount=t||1,n.end=i,r}createEventSegments(n,t,i){const r=t.getTime(),o=i.getTime();let s,a,l,u=n.start.getTime(),c=n.end.getTime(),f=!1;for(n.end.getHours()||n.end.getMinutes()||(c-=1e3),n.segments={},n.repeat?(s=r,a=Math.min(o,n.repeat.until?Tt.stringToDate(n.repeat.until).getTime():o)):(s=Math.max(r,u),a=Math.min(o,c));s<=a;){let d=!1;const h=Tt.addDays(new Date(s),1).setHours(0,0,0,0);let p,m,y,D;if(n.repeat){const S=new Date(s),b=Tt.formatDateLite(S);(f||n.occurrences&&n.occurrences[b])&&(f||(u=n.occurrences[b].start,l=new Date(u).setHours(0,0,0,0),c=n.occurrences[b].end),f=!0,d=!0),p=s===l,m=b===Tt.formatDateLite(new Date(c)),y=new Date(p?u:s),D=Tt.formatDateLite(y),m&&(f=!1)}else d=!0,p=s===u,m=a===c&&h>a,y=p?n.start:new Date(s),D=Tt.formatDateLite(p?n.start:y);d&&(n.segments[D]={start:y,startTimeMinutes:p?n.startTimeMinutes:0,endTimeMinutes:m?n.endTimeMinutes:eu,isFirstDay:p,isLastDay:m}),s=h}return n}deleteAnEvent(n){this._vuecal.emitWithEvent("event-delete",n),this._vuecal.mutableEvents=this._vuecal.mutableEvents.filter(t=>t._eid!==n._eid),this._vuecal.view.events=this._vuecal.view.events.filter(t=>t._eid!==n._eid)}checkCellOverlappingEvents(n,t){tu=n.slice(0),Ct={},n.forEach(r=>{tu.shift(),Ct[r._eid]||(Ct[r._eid]={overlaps:[],start:r.start,position:0}),Ct[r._eid].position=0,tu.forEach(o=>{Ct[o._eid]||(Ct[o._eid]={overlaps:[],start:o.start,position:0});const s=this.eventInRange(o,r.start,r.end),a=t.overlapsPerTimeStep?Tt.datesInSameTimeStep(r.start,o.start,t.timeStep):1;if(r.background||r.allDay||o.background||o.allDay||!s||!a){let l,u;(l=(Ct[r._eid]||{overlaps:[]}).overlaps.indexOf(o._eid))>-1&&Ct[r._eid].overlaps.splice(l,1),(u=(Ct[o._eid]||{overlaps:[]}).overlaps.indexOf(r._eid))>-1&&Ct[o._eid].overlaps.splice(u,1),Ct[o._eid].position--}else Ct[r._eid].overlaps.push(o._eid),Ct[r._eid].overlaps=[...new Set(Ct[r._eid].overlaps)],Ct[o._eid].overlaps.push(r._eid),Ct[o._eid].overlaps=[...new Set(Ct[o._eid].overlaps)],Ct[o._eid].position++})});let i=0;for(const r in Ct){const o=Ct[r],s=o.overlaps.map(a=>({id:a,start:Ct[a].start}));s.push({id:r,start:o.start}),s.sort((a,l)=>a.startl.start?1:a.id>l.id?-1:1),o.position=s.findIndex(a=>a.id===r),i=Math.max(this.getOverlapsStreak(o,Ct),i)}return[Ct,i]}getOverlapsStreak(n,t={}){let i=n.overlaps.length+1,r=[];return n.overlaps.forEach(o=>{r.includes(o)||n.overlaps.filter(s=>s!==o).forEach(s=>{t[s].overlaps.includes(o)||r.push(s)})}),r=[...new Set(r)],i-=r.length,i}eventInRange(n,t,i){if(n.allDay||!this._vuecal.time){const s=new Date(n.start).setHours(0,0,0,0);return new Date(n.end).setHours(23,59,0,0)>=new Date(t).setHours(0,0,0,0)&&s<=new Date(i).setHours(0,0,0,0)}const r=n.start.getTime(),o=n.end.getTime();return rt.getTime()}}const eC={class:"vuecal__flex vuecal__weekdays-headings"},tC=["onClick"],nC={class:"vuecal__flex weekday-label",grow:""},iC={class:"full"},rC={class:"small"},sC={class:"xsmall"},oC={key:0},aC={key:0,class:"vuecal__flex vuecal__split-days-headers",grow:""},os=(e,n)=>{const t=e.__vccOpts||e;for(const[i,r]of n)t[i]=r;return t},uy=os({inject:["vuecal","utils","view"],props:{transitionDirection:{type:String,default:"right"},weekDays:{type:Array,default:()=>[]},switchToNarrowerView:{type:Function,default:()=>{}}},methods:{selectCell(e,n){e.getTime()!==this.view.selectedDate.getTime()&&(this.view.selectedDate=e),this.utils.cell.selectCell(!1,e,n)},cleanupHeading:e=>({label:e.full,date:e.date,...e.today?{today:e.today}:{}})},computed:{headings(){if(!["month","week"].includes(this.view.id))return[];let e=!1;return this.weekDays.map((n,t)=>{const i=this.utils.date.addDays(this.view.startDate,this.vuecal.startWeekOnSunday?t-1:t);return{hide:n.hide,full:n.label,small:n.short||n.label.substr(0,3),xsmall:n.short||n.label.substr(0,1),...this.view.id==="week"?{dayOfMonth:i.getDate(),date:i,today:!e&&this.utils.date.isToday(i)&&!e++}:{}}})},cellWidth(){return 100/(7-this.weekDays.reduce((e,n)=>e+n.hide,0))},weekdayCellStyles(){return{...this.vuecal.hideWeekdays.length?{width:`${this.cellWidth}%`}:{}}},cellHeadingsClickable(){return this.view.id==="week"&&(this.vuecal.clickToNavigate||this.vuecal.dblclickToNavigate)}}},[["render",function(e,n,t,i,r,o){return ae(),ge("div",eC,[(ae(!0),ge(tt,null,dn(o.headings,(s,a)=>(ae(),ge(tt,{key:a},[s.hide?je("",!0):(ae(),ge("div",{key:0,class:Rt(["vuecal__flex vuecal__heading",{today:s.today,clickable:o.cellHeadingsClickable}]),style:Yt(o.weekdayCellStyles),onClick:l=>o.view.id==="week"&&o.selectCell(s.date,l),onDblclick:n[0]||(n[0]=l=>o.view.id==="week"&&o.vuecal.dblclickToNavigate&&t.switchToNarrowerView())},[ot(er,{name:`slide-fade--${t.transitionDirection}`,appear:o.vuecal.transitions},{default:pt(()=>[(ae(),ge("div",{class:"vuecal__flex",column:"",key:!!o.vuecal.transitions&&`${a}-${s.dayOfMonth}`},[yt("div",nC,[qe(e.$slots,"weekday-heading",{heading:o.cleanupHeading(s),view:o.view},()=>[yt("span",iC,vt(s.full),1),yt("span",rC,vt(s.small),1),yt("span",sC,vt(s.xsmall),1),s.dayOfMonth?(ae(),ge("span",oC," "+vt(s.dayOfMonth),1)):je("",!0)])]),o.vuecal.hasSplits&&o.vuecal.stickySplitLabels?(ae(),ge("div",aC,[(ae(!0),ge(tt,null,dn(o.vuecal.daySplits,(l,u)=>(ae(),ge("div",{class:Rt(["day-split-header",l.class||!1]),key:u},[qe(e.$slots,"split-label",{split:l,view:o.view},()=>[Xt(vt(l.label),1)])],2))),128))])):je("",!0)]))]),_:2},1032,["name","appear"])],46,tC))],64))),128))])}]]),lC={class:"vuecal__header"},uC={key:0,class:"vuecal__flex vuecal__menu",role:"tablist","aria-label":"Calendar views navigation"},cC=["onDragenter","onDragleave","onClick","aria-label"],fC={key:1,class:"vuecal__title-bar"},dC=["aria-label"],hC={class:"vuecal__flex vuecal__title",grow:""},pC=["aria-label"],mC={key:0,class:"vuecal__flex vuecal__split-days-headers"},gC=os({inject:["vuecal","previous","next","switchView","updateSelectedDate","modules","view"],components:{WeekdaysHeadings:uy},props:{options:{type:Object,default:()=>({})},editEvents:{type:Object,required:!0},hasSplits:{type:[Boolean,Number],default:!1},daySplits:{type:Array,default:()=>[]},viewProps:{type:Object,default:()=>({})},weekDays:{type:Array,default:()=>[]},switchToNarrowerView:{type:Function,default:()=>{}}},data:()=>({highlightedControl:null}),methods:{goToToday(){this.updateSelectedDate(new Date(new Date().setHours(0,0,0,0)))},switchToBroaderView(){this.transitionDirection="left",this.broaderView&&this.switchView(this.broaderView)}},computed:{transitionDirection:{get(){return this.vuecal.transitionDirection},set(e){this.vuecal.transitionDirection=e}},broaderView(){const{enabledViews:e}=this.vuecal;return e[e.indexOf(this.view.id)-1]},showDaySplits(){return this.view.id==="day"&&this.hasSplits&&this.options.stickySplitLabels&&!this.options.minSplitWidth},dnd(){return this.modules.dnd}}},[["render",function(e,n,t,i,r,o){const s=ui("weekdays-headings");return ae(),ge("div",lC,[t.options.hideViewSelector?je("",!0):(ae(),ge("div",uC,[(ae(!0),ge(tt,null,dn(t.viewProps.views,(a,l)=>(ae(),ge(tt,{key:l},[a.enabled?(ae(),ge("button",{key:0,class:Rt(["vuecal__view-btn",{"vuecal__view-btn--active":o.view.id===l,"vuecal__view-btn--highlighted":e.highlightedControl===l}]),type:"button",onDragenter:u=>t.editEvents.drag&&o.dnd&&o.dnd.viewSelectorDragEnter(u,l,e.$data),onDragleave:u=>t.editEvents.drag&&o.dnd&&o.dnd.viewSelectorDragLeave(u,l,e.$data),onClick:u=>o.switchView(l,null,!0),"aria-label":`${a.label} view`},vt(a.label),43,cC)):je("",!0)],64))),128))])),t.options.hideTitleBar?je("",!0):(ae(),ge("div",fC,[yt("button",{class:Rt(["vuecal__arrow vuecal__arrow--prev",{"vuecal__arrow--highlighted":e.highlightedControl==="previous"}]),type:"button",onClick:n[0]||(n[0]=(...a)=>o.previous&&o.previous(...a)),onDragenter:n[1]||(n[1]=a=>t.editEvents.drag&&o.dnd&&o.dnd.viewSelectorDragEnter(a,"previous",e.$data)),onDragleave:n[2]||(n[2]=a=>t.editEvents.drag&&o.dnd&&o.dnd.viewSelectorDragLeave(a,"previous",e.$data)),"aria-label":`Previous ${o.view.id}`},[qe(e.$slots,"arrow-prev")],42,dC),yt("div",hC,[ot(er,{name:t.options.transitions?`slide-fade--${o.transitionDirection}`:""},{default:pt(()=>[(ae(),_n(cs(o.broaderView?"button":"span"),{type:!!o.broaderView&&"button",key:`${o.view.id}${o.view.startDate.toString()}`,onClick:n[3]||(n[3]=a=>!!o.broaderView&&o.switchToBroaderView()),"aria-label":!!o.broaderView&&`Go to ${o.broaderView} view`},{default:pt(()=>[qe(e.$slots,"title")]),_:3},8,["type","aria-label"]))]),_:3},8,["name"])]),t.options.todayButton?(ae(),ge("button",{key:0,class:Rt(["vuecal__today-btn",{"vuecal__today-btn--highlighted":e.highlightedControl==="today"}]),type:"button",onClick:n[4]||(n[4]=(...a)=>o.goToToday&&o.goToToday(...a)),onDragenter:n[5]||(n[5]=a=>t.editEvents.drag&&o.dnd&&o.dnd.viewSelectorDragEnter(a,"today",e.$data)),onDragleave:n[6]||(n[6]=a=>t.editEvents.drag&&o.dnd&&o.dnd.viewSelectorDragLeave(a,"today",e.$data)),"aria-label":"Today"},[qe(e.$slots,"today-button")],34)):je("",!0),yt("button",{class:Rt(["vuecal__arrow vuecal__arrow--next",{"vuecal__arrow--highlighted":e.highlightedControl==="next"}]),type:"button",onClick:n[7]||(n[7]=(...a)=>o.next&&o.next(...a)),onDragenter:n[8]||(n[8]=a=>t.editEvents.drag&&o.dnd&&o.dnd.viewSelectorDragEnter(a,"next",e.$data)),onDragleave:n[9]||(n[9]=a=>t.editEvents.drag&&o.dnd&&o.dnd.viewSelectorDragLeave(a,"next",e.$data)),"aria-label":`Next ${o.view.id}`},[qe(e.$slots,"arrow-next")],42,pC)])),t.viewProps.weekDaysInHeader?(ae(),_n(s,{key:2,"week-days":t.weekDays,"transition-direction":o.transitionDirection,"switch-to-narrower-view":t.switchToNarrowerView},Gs({_:2},[e.$slots["weekday-heading"]?{name:"weekday-heading",fn:pt(({heading:a,view:l})=>[qe(e.$slots,"weekday-heading",{heading:a,view:l})]),key:"0"}:void 0,e.$slots["split-label"]?{name:"split-label",fn:pt(({split:a})=>[qe(e.$slots,"split-label",{split:a,view:o.view})]),key:"1"}:void 0]),1032,["week-days","transition-direction","switch-to-narrower-view"])):je("",!0),ot(er,{name:`slide-fade--${o.transitionDirection}`},{default:pt(()=>[o.showDaySplits?(ae(),ge("div",mC,[(ae(!0),ge(tt,null,dn(t.daySplits,(a,l)=>(ae(),ge("div",{class:Rt(["day-split-header",a.class||!1]),key:l},[qe(e.$slots,"split-label",{split:a,view:o.view.id},()=>[Xt(vt(a.label),1)])],2))),128))])):je("",!0)]),_:3},8,["name"])])}]]),vC=["draggable"],yC={inject:["vuecal","utils","modules","view","domEvents","editEvents"],props:{cellFormattedDate:{type:String,default:""},event:{type:Object,default:()=>({})},cellEvents:{type:Array,default:()=>[]},overlaps:{type:Array,default:()=>[]},eventPosition:{type:Number,default:0},overlapsStreak:{type:Number,default:0},allDay:{type:Boolean,default:!1}},data:()=>({touch:{dragThreshold:30,startX:0,startY:0,dragged:!1}}),methods:{onMouseDown(e,n=!1){if("ontouchstart"in window&&!n)return!1;const{clickHoldAnEvent:t,focusAnEvent:i,resizeAnEvent:r,dragAnEvent:o}=this.domEvents;if(i._eid===this.event._eid&&t._eid===this.event._eid)return!0;this.focusEvent(),t._eid=null,this.vuecal.editEvents.delete&&this.event.deletable&&(t.timeoutId=setTimeout(()=>{r._eid||o._eid||(t._eid=this.event._eid,this.event.deleting=!0)},t.timeout))},onMouseUp(e){this.domEvents.focusAnEvent._eid!==this.event._eid||this.touch.dragged||(this.domEvents.focusAnEvent.mousedUp=!0),this.touch.dragged=!1},onMouseEnter(e){e.preventDefault(),this.vuecal.emitWithEvent("event-mouse-enter",this.event)},onMouseLeave(e){e.preventDefault(),this.vuecal.emitWithEvent("event-mouse-leave",this.event)},onTouchMove(e){if(typeof this.vuecal.onEventClick!="function")return;const{clientX:n,clientY:t}=e.touches[0],{startX:i,startY:r,dragThreshold:o}=this.touch;(Math.abs(n-i)>o||Math.abs(t-r)>o)&&(this.touch.dragged=!0)},onTouchStart(e){this.touch.startX=e.touches[0].clientX,this.touch.startY=e.touches[0].clientY,this.onMouseDown(e,!0)},onEnterKeypress(e){if(typeof this.vuecal.onEventClick=="function")return this.vuecal.onEventClick(this.event,e)},onDblClick(e){if(typeof this.vuecal.onEventDblclick=="function")return this.vuecal.onEventDblclick(this.event,e)},onDragStart(e){this.dnd&&this.dnd.eventDragStart(e,this.event)},onDragEnd(){this.dnd&&this.dnd.eventDragEnd(this.event)},onResizeHandleMouseDown(){this.focusEvent(),this.domEvents.dragAnEvent._eid=null,this.domEvents.resizeAnEvent=Object.assign(this.domEvents.resizeAnEvent,{_eid:this.event._eid,start:(this.segment||this.event).start,split:this.event.split||null,segment:!!this.segment&&this.utils.date.formatDateLite(this.segment.start),originalEnd:new Date((this.segment||this.event).end),originalEndTimeMinutes:this.event.endTimeMinutes}),this.event.resizing=!0},deleteEvent(e=!1){if("ontouchstart"in window&&!e)return!1;this.utils.event.deleteAnEvent(this.event)},touchDeleteEvent(e){this.deleteEvent(!0)},cancelDeleteEvent(){this.event.deleting=!1},focusEvent(){const{focusAnEvent:e}=this.domEvents,n=e._eid;if(n!==this.event._eid){if(n){const t=this.view.events.find(i=>i._eid===n);t&&(t.focused=!1)}this.vuecal.cancelDelete(),this.vuecal.emitWithEvent("event-focus",this.event),e._eid=this.event._eid,this.event.focused=!0}}},computed:{eventDimensions(){const{startTimeMinutes:e,endTimeMinutes:n}=this.segment||this.event;let t=e-this.vuecal.timeFrom;const i=Math.max(Math.round(t*this.vuecal.timeCellHeight/this.vuecal.timeStep),0);t=Math.min(n,this.vuecal.timeTo)-this.vuecal.timeFrom;const r=Math.round(t*this.vuecal.timeCellHeight/this.vuecal.timeStep);return{top:i,height:Math.max(r-i,5)}},eventStyles(){if(this.event.allDay||!this.vuecal.time||!this.event.endTimeMinutes||this.view.id==="month"||this.allDay)return{};let e=100/Math.min(this.overlaps.length+1,this.overlapsStreak),n=100/(this.overlaps.length+1)*this.eventPosition;this.vuecal.minEventWidth&&eo.focusEvent&&o.focusEvent(...s)),onKeypress:n[5]||(n[5]=Na(ji((...s)=>o.onEnterKeypress&&o.onEnterKeypress(...s),["stop"]),["enter"])),onMouseenter:n[6]||(n[6]=(...s)=>o.onMouseEnter&&o.onMouseEnter(...s)),onMouseleave:n[7]||(n[7]=(...s)=>o.onMouseLeave&&o.onMouseLeave(...s)),onTouchstart:n[8]||(n[8]=ji((...s)=>o.onTouchStart&&o.onTouchStart(...s),["stop"])),onMousedown:n[9]||(n[9]=s=>o.onMouseDown(s)),onMouseup:n[10]||(n[10]=(...s)=>o.onMouseUp&&o.onMouseUp(...s)),onTouchend:n[11]||(n[11]=(...s)=>o.onMouseUp&&o.onMouseUp(...s)),onTouchmove:n[12]||(n[12]=(...s)=>o.onTouchMove&&o.onTouchMove(...s)),onDblclick:n[13]||(n[13]=(...s)=>o.onDblClick&&o.onDblClick(...s)),draggable:o.draggable,onDragstart:n[14]||(n[14]=s=>o.draggable&&o.onDragStart(s)),onDragend:n[15]||(n[15]=s=>o.draggable&&o.onDragEnd())},[o.vuecal.editEvents.delete&&t.event.deletable?(ae(),ge("div",{key:0,class:"vuecal__event-delete",onClick:n[0]||(n[0]=ji((...s)=>o.deleteEvent&&o.deleteEvent(...s),["stop"])),onTouchstart:n[1]||(n[1]=ji((...s)=>o.touchDeleteEvent&&o.touchDeleteEvent(...s),["stop"]))},vt(o.vuecal.texts.deleteEvent),33)):je("",!0),qe(e.$slots,"event",{event:t.event,view:o.view.id}),o.resizable?(ae(),ge("div",{key:1,class:"vuecal__event-resize-handle",contenteditable:"false",onMousedown:n[2]||(n[2]=ji((...s)=>o.onResizeHandleMouseDown&&o.onResizeHandleMouseDown(...s),["stop","prevent"])),onTouchstart:n[3]||(n[3]=ji((...s)=>o.onResizeHandleMouseDown&&o.onResizeHandleMouseDown(...s),["stop","prevent"]))},null,32)):je("",!0)],46,vC)}]])},props:{options:{type:Object,default:()=>({})},editEvents:{type:Object,required:!0},data:{type:Object,required:!0},cellSplits:{type:Array,default:()=>[]},minTimestamp:{type:[Number,null],default:null},maxTimestamp:{type:[Number,null],default:null},cellWidth:{type:[Number,Boolean],default:!1},allDay:{type:Boolean,default:!1}},data:()=>({cellOverlaps:{},cellOverlapsStreak:1,timeAtCursor:null,highlighted:!1,highlightedSplit:null}),methods:{getSplitAtCursor({target:e}){let n=e.classList.contains("vuecal__cell-split")?e:this.vuecal.findAncestor(e,"vuecal__cell-split");return n&&(n=n.attributes["data-split"].value,parseInt(n).toString()===n.toString()&&(n=parseInt(n))),n||null},splitClasses(e){return{"vuecal__cell-split":!0,"vuecal__cell-split--highlighted":this.highlightedSplit===e.id,[e.class]:!!e.class}},checkCellOverlappingEvents(){this.options.time&&this.eventsCount&&!this.splitsCount&&(this.eventsCount===1?(this.cellOverlaps=[],this.cellOverlapsStreak=1):[this.cellOverlaps,this.cellOverlapsStreak]=this.utils.event.checkCellOverlappingEvents(this.events,this.options))},isDOMElementAnEvent(e){return this.vuecal.isDOMElementAnEvent(e)},selectCell(e,n=!1){const t=this.splitsCount?this.getSplitAtCursor(e):null;this.utils.cell.selectCell(n,this.timeAtCursor,t),this.timeAtCursor=null},onCellkeyPressEnter(e){this.isSelected||this.onCellFocus(e);const n=this.splitsCount?this.getSplitAtCursor(e):null;this.utils.cell.keyPressEnterCell(this.timeAtCursor,n),this.timeAtCursor=null},onCellFocus(e){if(!this.isSelected&&!this.isDisabled){this.isSelected=this.data.startDate;const n=this.splitsCount?this.getSplitAtCursor(e):null,t=this.timeAtCursor||this.data.startDate;this.vuecal.$emit("cell-focus",n?{date:t,split:n}:t)}},onCellMouseDown(e,n=null,t=!1){if("ontouchstart"in window&&!t)return!1;this.isSelected||this.onCellFocus(e);const{clickHoldACell:i,focusAnEvent:r}=this.domEvents;this.domEvents.cancelClickEventCreation=!1,i.eventCreated=!1,this.timeAtCursor=new Date(this.data.startDate);const{minutes:o,cursorCoords:{y:s}}=this.vuecal.minutesAtCursor(e);this.timeAtCursor.setMinutes(o);const a=this.isDOMElementAnEvent(e.target);!a&&r._eid&&((this.view.events.find(l=>l._eid===r._eid)||{}).focused=!1),this.editEvents.create&&!a&&this.setUpEventCreation(e,s)},setUpEventCreation(e,n){if(this.options.dragToCreateEvent&&["week","day"].includes(this.view.id)){const{dragCreateAnEvent:t}=this.domEvents;if(t.startCursorY=n,t.split=this.splitsCount?this.getSplitAtCursor(e):null,t.start=this.timeAtCursor,this.options.snapToTime){let i=60*this.timeAtCursor.getHours()+this.timeAtCursor.getMinutes();const r=i+this.options.snapToTime/2;i=r-r%this.options.snapToTime,t.start.setHours(0,i,0,0)}}else this.options.cellClickHold&&["month","week","day"].includes(this.view.id)&&this.setUpCellHoldTimer(e)},setUpCellHoldTimer(e){const{clickHoldACell:n}=this.domEvents;n.cellId=`${this.vuecal._.uid}_${this.data.formattedDate}`,n.split=this.splitsCount?this.getSplitAtCursor(e):null,n.timeoutId=setTimeout(()=>{if(n.cellId&&!this.domEvents.cancelClickEventCreation){const{_eid:t}=this.utils.event.createAnEvent(this.timeAtCursor,null,n.split?{split:n.split}:{});n.eventCreated=t}},n.timeout)},onCellTouchStart(e,n=null){this.onCellMouseDown(e,n,!0)},onCellClick(e){this.isDOMElementAnEvent(e.target)||this.selectCell(e)},onCellDblClick(e){const n=new Date(this.data.startDate);n.setMinutes(this.vuecal.minutesAtCursor(e).minutes);const t=this.splitsCount?this.getSplitAtCursor(e):null;this.vuecal.$emit("cell-dblclick",t?{date:n,split:t}:n),this.options.dblclickToNavigate&&this.vuecal.switchToNarrowerView()},onCellContextMenu(e){e.stopPropagation(),e.preventDefault();const n=new Date(this.data.startDate),{cursorCoords:t,minutes:i}=this.vuecal.minutesAtCursor(e);n.setMinutes(i);const r=this.splitsCount?this.getSplitAtCursor(e):null;this.vuecal.$emit("cell-contextmenu",{date:n,...t,...r||{},e})}},computed:{dnd(){return this.modules.dnd},nowInMinutes(){return this.utils.date.dateToMinutes(this.vuecal.now)},isBeforeMinDate(){return this.minTimestamp!==null&&this.minTimestamp>this.data.endDate.getTime()},isAfterMaxDate(){return this.maxTimestamp&&this.maxTimestamp{let{from:n,to:t}=e;return n=Math.max(n,this.options.timeFrom),t=Math.min(t,this.options.timeTo),{...e,height:(t-n)*this.timeScale,top:(n-this.options.timeFrom)*this.timeScale}})},events(){const{startDate:e,endDate:n}=this.data;let t=[];if(!["years","year"].includes(this.view.id)||this.options.eventsCountOnYearView){if(t=this.view.events.slice(0),this.view.id==="month"&&t.push(...this.view.outOfScopeEvents),t=t.filter(i=>this.utils.event.eventInRange(i,e,n)),this.options.showAllDayEvents&&this.view.id!=="month"&&(t=t.filter(i=>!!i.allDay===this.allDay)),this.options.time&&this.isWeekOrDayView&&!this.allDay){const{timeFrom:i,timeTo:r}=this.options;t=t.filter(o=>{const s=o.daysCount>1&&o.segments[this.data.formattedDate]||{},a=o.daysCount===1&&o.startTimeMinutesi,l=o.daysCount>1&&s.startTimeMinutesi;return o.allDay||a||l||!1})}!this.options.time||!this.isWeekOrDayView||this.options.showAllDayEvents&&this.allDay||t.sort((i,r)=>i.start{const t=this.events.filter(o=>o.split===e.id),[i,r]=this.utils.event.checkCellOverlappingEvents(t.filter(o=>!o.background&&!o.allDay),this.options);return{...e,overlaps:i,overlapsStreak:r,events:t}})},splitsCount(){return this.splits.length},cellClasses(){return{[this.data.class]:!!this.data.class,"vuecal__cell--current":this.data.current,"vuecal__cell--today":this.data.today,"vuecal__cell--out-of-scope":this.data.outOfScope,"vuecal__cell--before-min":this.isDisabled&&this.isBeforeMinDate,"vuecal__cell--after-max":this.isDisabled&&this.isAfterMaxDate,"vuecal__cell--disabled":this.isDisabled,"vuecal__cell--selected":this.isSelected,"vuecal__cell--highlighted":this.highlighted,"vuecal__cell--has-splits":this.splitsCount,"vuecal__cell--has-events":this.eventsCount}},cellStyles(){return{...this.cellWidth?{width:`${this.cellWidth}%`}:{}}},timelineVisible(){const{time:e,timeTo:n}=this.options;return this.data.today&&this.isWeekOrDayView&&e&&!this.allDay&&this.nowInMinutes<=n},todaysTimePosition(){if(!this.data.today||!this.options.time)return;const e=this.nowInMinutes-this.options.timeFrom;return Math.round(e*this.timeScale)},timeScale(){return this.options.timeCellHeight/this.options.timeStep}}},[["render",function(e,n,t,i,r,o){const s=ui("event");return ae(),_n(zc,{class:Rt(["vuecal__cell",o.cellClasses]),name:`slide-fade--${o.transitionDirection}`,tag:"div",appear:t.options.transitions,style:Yt(o.cellStyles)},{default:pt(()=>[(ae(!0),ge(tt,null,dn(o.splitsCount?o.splits:1,(a,l)=>(ae(),ge("div",{class:Rt(["vuecal__flex vuecal__cell-content",o.splitsCount&&o.splitClasses(a)]),key:t.options.transitions?`${o.view.id}-${t.data.content}-${l}`:l,"data-split":!!o.splitsCount&&a.id,column:"",tabindex:"0","aria-label":t.data.content,onFocus:n[0]||(n[0]=u=>o.onCellFocus(u)),onKeypress:n[1]||(n[1]=Na(u=>o.onCellkeyPressEnter(u),["enter"])),onTouchstart:u=>!o.isDisabled&&o.onCellTouchStart(u,o.splitsCount?a.id:null),onMousedown:u=>!o.isDisabled&&o.onCellMouseDown(u,o.splitsCount?a.id:null),onClick:n[2]||(n[2]=u=>!o.isDisabled&&o.onCellClick(u)),onDblclick:n[3]||(n[3]=u=>!o.isDisabled&&o.onCellDblClick(u)),onContextmenu:n[4]||(n[4]=u=>!o.isDisabled&&t.options.cellContextmenu&&o.onCellContextMenu(u)),onDragenter:n[5]||(n[5]=u=>!o.isDisabled&&t.editEvents.drag&&o.dnd&&o.dnd.cellDragEnter(u,e.$data,t.data.startDate)),onDragover:u=>!o.isDisabled&&t.editEvents.drag&&o.dnd&&o.dnd.cellDragOver(u,e.$data,t.data.startDate,o.splitsCount?a.id:null),onDragleave:n[6]||(n[6]=u=>!o.isDisabled&&t.editEvents.drag&&o.dnd&&o.dnd.cellDragLeave(u,e.$data,t.data.startDate)),onDrop:u=>!o.isDisabled&&t.editEvents.drag&&o.dnd&&o.dnd.cellDragDrop(u,e.$data,t.data.startDate,o.splitsCount?a.id:null)},[t.options.showTimeInCells&&t.options.time&&o.isWeekOrDayView&&!t.allDay?(ae(),ge("div",EC,[(ae(!0),ge(tt,null,dn(o.vuecal.timeCells,(u,c)=>(ae(),ge("span",{class:"cell-time-label",key:c},vt(u.label),1))),128))])):je("",!0),o.isWeekOrDayView&&!t.allDay&&o.specialHours.length?(ae(!0),ge(tt,{key:1},dn(o.specialHours,(u,c)=>(ae(),ge("div",{class:Rt(["vuecal__special-hours",`vuecal__special-hours--day${u.day} ${u.class}`]),style:Yt(`height: ${u.height}px;top: ${u.top}px`)},[u.label?(ae(),ge("div",{key:0,class:"special-hours-label",innerHTML:u.label},null,8,SC)):je("",!0)],6))),256)):je("",!0),qe(e.$slots,"cell-content",{events:o.events,selectCell:u=>o.selectCell(u,!0),split:!!o.splitsCount&&a}),o.eventsCount&&(o.isWeekOrDayView||o.view.id==="month"&&t.options.eventsOnMonthView)?(ae(),ge("div",wC,[(ae(!0),ge(tt,null,dn(o.splitsCount?a.events:o.events,(u,c)=>(ae(),_n(s,{key:c,"cell-formatted-date":t.data.formattedDate,event:u,"all-day":t.allDay,"cell-events":o.splitsCount?a.events:o.events,overlaps:((o.splitsCount?a.overlaps[u._eid]:e.cellOverlaps[u._eid])||[]).overlaps,"event-position":((o.splitsCount?a.overlaps[u._eid]:e.cellOverlaps[u._eid])||[]).position,"overlaps-streak":o.splitsCount?a.overlapsStreak:e.cellOverlapsStreak},{event:pt(({event:f,view:d})=>[qe(e.$slots,"event",{view:d,event:f})]),_:2},1032,["cell-formatted-date","event","all-day","cell-events","overlaps","event-position","overlaps-streak"]))),128))])):je("",!0)],42,bC))),128)),o.timelineVisible?(ae(),ge("div",{class:"vuecal__now-line",style:Yt(`top: ${o.todaysTimePosition}px`),key:t.options.transitions?`${o.view.id}-now-line`:"now-line",title:o.utils.date.formatTime(o.vuecal.now)},null,12,DC)):je("",!0)]),_:3},8,["class","name","appear","style"])}]]),TC={key:0,class:"vuecal__all-day-text",style:{width:"3em"}},CC=os({inject:["vuecal","view","editEvents"],components:{"vuecal-cell":cy},props:{options:{type:Object,required:!0},cells:{type:Array,required:!0},label:{type:String,required:!0},daySplits:{type:Array,default:()=>[]},shortEvents:{type:Boolean,default:!0},height:{type:String,default:""},cellOrSplitMinWidth:{type:Number,default:null}},computed:{hasCellOrSplitWidth(){return!!(this.options.minCellWidth||this.daySplits.length&&this.options.minSplitWidth)}}},[["render",function(e,n,t,i,r,o){const s=ui("vuecal-cell");return ae(),ge("div",{class:"vuecal__flex vuecal__all-day",style:Yt(t.cellOrSplitMinWidth&&{height:t.height})},[t.cellOrSplitMinWidth?je("",!0):(ae(),ge("div",TC,[yt("span",null,vt(t.label),1)])),yt("div",{class:Rt(["vuecal__flex vuecal__cells",`${o.view.id}-view`]),grow:"",style:Yt(t.cellOrSplitMinWidth?`min-width: ${t.cellOrSplitMinWidth}px`:"")},[(ae(!0),ge(tt,null,dn(t.cells,(a,l)=>(ae(),_n(s,{key:l,options:t.options,"edit-events":o.editEvents,data:a,"all-day":!0,"cell-width":t.options.hideWeekdays.length&&(o.vuecal.isWeekView||o.vuecal.isMonthView)&&o.vuecal.cellWidth,"min-timestamp":t.options.minTimestamp,"max-timestamp":t.options.maxTimestamp,"cell-splits":t.daySplits},{event:pt(({event:u,view:c})=>[qe(e.$slots,"event",{view:c,event:u})]),_:2},1032,["options","edit-events","data","cell-width","min-timestamp","max-timestamp","cell-splits"]))),128))],6)],4)}]]),OC=["lang"],xC=yt("i",{class:"angle"},null,-1),AC=yt("i",{class:"angle"},null,-1),MC={class:"default"},IC={key:0,class:"vuecal__flex vuecal__body",grow:""},PC=["onBlur","innerHTML"],NC=["innerHTML"],RC=["innerHTML"],_C={class:"vuecal__flex",row:"",grow:""},FC={key:0,class:"vuecal__time-column"},LC=yt("span",{class:"vuecal__time-cell-line"},null,-1),kC={class:"vuecal__time-cell-label"},$C={key:1,class:"vuecal__flex vuecal__week-numbers",column:""},jC=["wrap","column"],VC=["onBlur","innerHTML"],BC=["innerHTML"],HC=["innerHTML"],UC=["wrap"],WC=["innerHTML"],KC=["innerHTML"],YC={key:2,class:"vuecal__cell-events-count"},zC={key:3,class:"vuecal__no-event"},GC=["onBlur","innerHTML"],ZC=["innerHTML"],XC={key:2,class:"vuecal__event-time"},JC={key:0},QC={key:1,class:"days-to-end"},qC=["innerHTML"],eO={key:0,class:"vuecal__scrollbar-check"},tO=[yt("div",null,null,-1)],bs=1440,xs={weekDays:Array(7).fill(""),weekDaysShort:[],months:Array(12).fill(""),years:"",year:"",month:"",week:"",day:"",today:"",noEvent:"",allDay:"",deleteEvent:"",createEvent:"",dateFormat:"dddd MMMM D, YYYY",am:"am",pm:"pm"},Vh=["years","year","month","week","day"],Bh=new class{constructor(e,n=!1){Ei(this,"texts",{}),Ei(this,"dateToMinutes",t=>60*t.getHours()+t.getMinutes()),Vn=this,this._texts=e,n||!Date||Date.prototype.addDays||this._initDatePrototypes()}_initDatePrototypes(){Date.prototype.addDays=function(e){return Vn.addDays(this,e)},Date.prototype.subtractDays=function(e){return Vn.subtractDays(this,e)},Date.prototype.addHours=function(e){return Vn.addHours(this,e)},Date.prototype.subtractHours=function(e){return Vn.subtractHours(this,e)},Date.prototype.addMinutes=function(e){return Vn.addMinutes(this,e)},Date.prototype.subtractMinutes=function(e){return Vn.subtractMinutes(this,e)},Date.prototype.getWeek=function(){return Vn.getWeek(this)},Date.prototype.isToday=function(){return Vn.isToday(this)},Date.prototype.isLeapYear=function(){return Vn.isLeapYear(this)},Date.prototype.format=function(e="YYYY-MM-DD"){return Vn.formatDate(this,e)},Date.prototype.formatTime=function(e="HH:mm"){return Vn.formatTime(this,e)}}removePrototypes(){delete Date.prototype.addDays,delete Date.prototype.subtractDays,delete Date.prototype.addHours,delete Date.prototype.subtractHours,delete Date.prototype.addMinutes,delete Date.prototype.subtractMinutes,delete Date.prototype.getWeek,delete Date.prototype.isToday,delete Date.prototype.isLeapYear,delete Date.prototype.format,delete Date.prototype.formatTime}updateTexts(e){this._texts=e}_todayFormatted(){return $h!==new Date().getDate()&&(vs=new Date,$h=vs.getDate(),jh=`${vs.getFullYear()}-${vs.getMonth()}-${vs.getDate()}`),jh}addDays(e,n){const t=new Date(e.valueOf());return t.setDate(t.getDate()+n),t}subtractDays(e,n){const t=new Date(e.valueOf());return t.setDate(t.getDate()-n),t}addHours(e,n){const t=new Date(e.valueOf());return t.setHours(t.getHours()+n),t}subtractHours(e,n){const t=new Date(e.valueOf());return t.setHours(t.getHours()-n),t}addMinutes(e,n){const t=new Date(e.valueOf());return t.setMinutes(t.getMinutes()+n),t}subtractMinutes(e,n){const t=new Date(e.valueOf());return t.setMinutes(t.getMinutes()-n),t}getWeek(e){const n=new Date(Date.UTC(e.getFullYear(),e.getMonth(),e.getDate())),t=n.getUTCDay()||7;n.setUTCDate(n.getUTCDate()+4-t);const i=new Date(Date.UTC(n.getUTCFullYear(),0,1));return Math.ceil(((n-i)/864e5+1)/7)}isToday(e){return`${e.getFullYear()}-${e.getMonth()}-${e.getDate()}`===this._todayFormatted()}isLeapYear(e){const n=e.getFullYear();return!(n%400)||n%100&&!(n%4)}getPreviousFirstDayOfWeek(e=null,n){const t=e&&new Date(e.valueOf())||new Date,i=n?7:6;return t.setDate(t.getDate()-(t.getDay()+i)%7),t}stringToDate(e){return e instanceof Date?e:(e.length===10&&(e+=" 00:00"),new Date(e.replace(/-/g,"/")))}countDays(e,n){typeof e=="string"&&(e=e.replace(/-/g,"/")),typeof n=="string"&&(n=n.replace(/-/g,"/")),e=new Date(e).setHours(0,0,0,0),n=new Date(n).setHours(0,0,1,0);const t=60*(new Date(n).getTimezoneOffset()-new Date(e).getTimezoneOffset())*1e3;return Math.ceil((n-e-t)/864e5)}datesInSameTimeStep(e,n,t){return Math.abs(e.getTime()-n.getTime())<=60*t*1e3}formatDate(e,n="YYYY-MM-DD",t=null){if(t||(t=this._texts),n||(n="YYYY-MM-DD"),n==="YYYY-MM-DD")return this.formatDateLite(e);ys={},$r={};const i={YYYY:()=>this._hydrateDateObject(e,t).YYYY,YY:()=>this._hydrateDateObject(e,t).YY(),M:()=>this._hydrateDateObject(e,t).M,MM:()=>this._hydrateDateObject(e,t).MM(),MMM:()=>this._hydrateDateObject(e,t).MMM(),MMMM:()=>this._hydrateDateObject(e,t).MMMM(),MMMMG:()=>this._hydrateDateObject(e,t).MMMMG(),D:()=>this._hydrateDateObject(e,t).D,DD:()=>this._hydrateDateObject(e,t).DD(),S:()=>this._hydrateDateObject(e,t).S(),d:()=>this._hydrateDateObject(e,t).d,dd:()=>this._hydrateDateObject(e,t).dd(),ddd:()=>this._hydrateDateObject(e,t).ddd(),dddd:()=>this._hydrateDateObject(e,t).dddd(),HH:()=>this._hydrateTimeObject(e,t).HH,H:()=>this._hydrateTimeObject(e,t).H,hh:()=>this._hydrateTimeObject(e,t).hh,h:()=>this._hydrateTimeObject(e,t).h,am:()=>this._hydrateTimeObject(e,t).am,AM:()=>this._hydrateTimeObject(e,t).AM,mm:()=>this._hydrateTimeObject(e,t).mm,m:()=>this._hydrateTimeObject(e,t).m};return n.replace(/(\{[a-zA-Z]+\}|[a-zA-Z]+)/g,(r,o)=>{const s=i[o.replace(/\{|\}/g,"")];return s!==void 0?s():o})}formatDateLite(e){const n=e.getMonth()+1,t=e.getDate();return`${e.getFullYear()}-${n<10?"0":""}${n}-${t<10?"0":""}${t}`}formatTime(e,n="HH:mm",t=null,i=!1){let r=!1;if(i){const[a,l,u]=[e.getHours(),e.getMinutes(),e.getSeconds()];a+l+u===141&&(r=!0)}if(e instanceof Date&&n==="HH:mm")return r?"24:00":this.formatTimeLite(e);$r={},t||(t=this._texts);const o=this._hydrateTimeObject(e,t),s=n.replace(/(\{[a-zA-Z]+\}|[a-zA-Z]+)/g,(a,l)=>{const u=o[l.replace(/\{|\}/g,"")];return u!==void 0?u:l});return r?s.replace("23:59","24:00"):s}formatTimeLite(e){const n=e.getHours(),t=e.getMinutes();return`${(n<10?"0":"")+n}:${(t<10?"0":"")+t}`}_nth(e){if(e>3&&e<21)return"th";switch(e%10){case 1:return"st";case 2:return"nd";case 3:return"rd";default:return"th"}}_hydrateDateObject(e,n){if(ys.D)return ys;const t=e.getFullYear(),i=e.getMonth()+1,r=e.getDate(),o=(e.getDay()-1+7)%7;return ys={YYYY:t,YY:()=>t.toString().substring(2),M:i,MM:()=>(i<10?"0":"")+i,MMM:()=>n.months[i-1].substring(0,3),MMMM:()=>n.months[i-1],MMMMG:()=>(n.monthsGenitive||n.months)[i-1],D:r,DD:()=>(r<10?"0":"")+r,S:()=>this._nth(r),d:o+1,dd:()=>n.weekDays[o][0],ddd:()=>n.weekDays[o].substr(0,3),dddd:()=>n.weekDays[o]},ys}_hydrateTimeObject(e,n){if($r.am)return $r;let t,i;e instanceof Date?(t=e.getHours(),i=e.getMinutes()):(t=Math.floor(e/60),i=Math.floor(e%60));const r=t%12?t%12:12,o=(n||{am:"am",pm:"pm"})[t===24||t<12?"am":"pm"];return $r={H:t,h:r,HH:(t<10?"0":"")+t,hh:(r<10?"0":"")+r,am:o,AM:o.toUpperCase(),m:i,mm:(i<10?"0":"")+i},$r}}(xs),nO={name:"vue-cal",components:{"vuecal-cell":cy,"vuecal-header":gC,WeekdaysHeadings:uy,AllDayBar:CC},provide(){return{vuecal:this,utils:this.utils,modules:this.modules,previous:this.previous,next:this.next,switchView:this.switchView,updateSelectedDate:this.updateSelectedDate,editEvents:this.editEvents,view:this.view,domEvents:this.domEvents}},props:{activeView:{type:String,default:"week"},allDayBarHeight:{type:[String,Number],default:"25px"},cellClickHold:{type:Boolean,default:!0},cellContextmenu:{type:Boolean,default:!1},clickToNavigate:{type:Boolean,default:!1},dblclickToNavigate:{type:Boolean,default:!0},disableDatePrototypes:{type:Boolean,default:!1},disableDays:{type:Array,default:()=>[]},disableViews:{type:Array,default:()=>[]},dragToCreateEvent:{type:Boolean,default:!0},dragToCreateThreshold:{type:Number,default:15},editableEvents:{type:[Boolean,Object],default:!1},events:{type:Array,default:()=>[]},eventsCountOnYearView:{type:Boolean,default:!1},eventsOnMonthView:{type:[Boolean,String],default:!1},hideBody:{type:Boolean,default:!1},hideTitleBar:{type:Boolean,default:!1},hideViewSelector:{type:Boolean,default:!1},hideWeekdays:{type:Array,default:()=>[]},hideWeekends:{type:Boolean,default:!1},locale:{type:[String,Object],default:"en"},maxDate:{type:[String,Date],default:""},minCellWidth:{type:Number,default:0},minDate:{type:[String,Date],default:""},minEventWidth:{type:Number,default:0},minSplitWidth:{type:Number,default:0},onEventClick:{type:[Function,null],default:null},onEventCreate:{type:[Function,null],default:null},onEventDblclick:{type:[Function,null],default:null},overlapsPerTimeStep:{type:Boolean,default:!1},resizeX:{type:Boolean,default:!1},selectedDate:{type:[String,Date],default:""},showAllDayEvents:{type:[Boolean,String],default:!1},showTimeInCells:{type:Boolean,default:!1},showWeekNumbers:{type:[Boolean,String],default:!1},snapToTime:{type:Number,default:0},small:{type:Boolean,default:!1},specialHours:{type:Object,default:()=>({})},splitDays:{type:Array,default:()=>[]},startWeekOnSunday:{type:Boolean,default:!1},stickySplitLabels:{type:Boolean,default:!1},time:{type:Boolean,default:!0},timeCellHeight:{type:Number,default:40},timeFormat:{type:String,default:""},timeFrom:{type:Number,default:0},timeStep:{type:Number,default:60},timeTo:{type:Number,default:bs},todayButton:{type:Boolean,default:!1},transitions:{type:Boolean,default:!0},twelveHour:{type:Boolean,default:!1},watchRealTime:{type:Boolean,default:!1},xsmall:{type:Boolean,default:!1}},data(){return{ready:!1,texts:{...xs},utils:{date:!!this.disableDatePrototypes&&Bh.removePrototypes()||Bh,cell:null,event:null},modules:{dnd:null},cellsEl:null,view:{id:"",title:"",startDate:null,endDate:null,firstCellDate:null,lastCellDate:null,selectedDate:null,events:[]},eventIdIncrement:1,now:new Date,timeTickerIds:[null,null],domEvents:{resizeAnEvent:{_eid:null,start:null,split:null,segment:null,originalEndTimeMinutes:0,originalEnd:null,end:null,startCell:null,endCell:null},dragAnEvent:{_eid:null},dragCreateAnEvent:{startCursorY:null,start:null,split:null,event:null},focusAnEvent:{_eid:null,mousedUp:!1},clickHoldAnEvent:{_eid:null,timeout:1200,timeoutId:null},dblTapACell:{taps:0,timeout:500},clickHoldACell:{cellId:null,split:null,timeout:1200,timeoutId:null,eventCreated:!1},cancelClickEventCreation:!1},mutableEvents:[],transitionDirection:"right"}},methods:{async loadLocale(e){if(typeof this.locale=="object")return this.texts=Object.assign({},xs,e),void this.utils.date.updateTexts(this.texts);if(this.locale==="en"){const n=await Re(()=>import("./en.es-d28ce695.js"),[],import.meta.url);this.texts=Object.assign({},xs,n)}else((n,t)=>{const i=n[t];return i?typeof i=="function"?i():Promise.resolve(i):new Promise((r,o)=>{(typeof queueMicrotask=="function"?queueMicrotask:setTimeout)(o.bind(null,new Error("Unknown variable dynamic import: "+t)))})})(Object.assign({"./i18n/ar.json":()=>Re(()=>import("./ar.es-2968a13f.js"),[],import.meta.url),"./i18n/bg.json":()=>Re(()=>import("./bg.es-182cdcb3.js"),[],import.meta.url),"./i18n/bn.json":()=>Re(()=>import("./bn.es-3f8773a4.js"),[],import.meta.url),"./i18n/bs.json":()=>Re(()=>import("./bs.es-47a220af.js"),[],import.meta.url),"./i18n/ca.json":()=>Re(()=>import("./ca.es-47a49a5a.js"),[],import.meta.url),"./i18n/cs.json":()=>Re(()=>import("./cs.es-29e50c14.js"),[],import.meta.url),"./i18n/da.json":()=>Re(()=>import("./da.es-eecb0b06.js"),[],import.meta.url),"./i18n/de.json":()=>Re(()=>import("./de.es-83841cfd.js"),[],import.meta.url),"./i18n/el.json":()=>Re(()=>import("./el.es-b1c0d142.js"),[],import.meta.url),"./i18n/en.json":()=>Re(()=>import("./en.es-d28ce695.js"),[],import.meta.url),"./i18n/es.json":()=>Re(()=>import("./es.es-232cf334.js"),[],import.meta.url),"./i18n/et.json":()=>Re(()=>import("./et.es-7e6a3380.js"),[],import.meta.url),"./i18n/fa.json":()=>Re(()=>import("./fa.es-b08cd112.js"),[],import.meta.url),"./i18n/fi.json":()=>Re(()=>import("./fi.es-d164093c.js"),[],import.meta.url),"./i18n/fr.json":()=>Re(()=>import("./fr.es-bb780d19.js"),[],import.meta.url),"./i18n/he.json":()=>Re(()=>import("./he.es-38780c8b.js"),[],import.meta.url),"./i18n/hr.json":()=>Re(()=>import("./hr.es-fdafdc21.js"),[],import.meta.url),"./i18n/hu.json":()=>Re(()=>import("./hu.es-3630014a.js"),[],import.meta.url),"./i18n/id.json":()=>Re(()=>import("./id.es-3e6a36ce.js"),[],import.meta.url),"./i18n/is.json":()=>Re(()=>import("./is.es-a5785bf6.js"),[],import.meta.url),"./i18n/it.json":()=>Re(()=>import("./it.es-a9d8c123.js"),[],import.meta.url),"./i18n/ja.json":()=>Re(()=>import("./ja.es-6a0383c1.js"),[],import.meta.url),"./i18n/ka.json":()=>Re(()=>import("./ka.es-75616353.js"),[],import.meta.url),"./i18n/ko.json":()=>Re(()=>import("./ko.es-52b4fe30.js"),[],import.meta.url),"./i18n/lt.json":()=>Re(()=>import("./lt.es-fb2fe7b5.js"),[],import.meta.url),"./i18n/mn.json":()=>Re(()=>import("./mn.es-fcd02e46.js"),[],import.meta.url),"./i18n/nl.json":()=>Re(()=>import("./nl.es-558331c7.js"),[],import.meta.url),"./i18n/no.json":()=>Re(()=>import("./no.es-8b33619c.js"),[],import.meta.url),"./i18n/pl.json":()=>Re(()=>import("./pl.es-631374bd.js"),[],import.meta.url),"./i18n/pt-br.json":()=>Re(()=>import("./pt-br.es-a39b3c5f.js"),[],import.meta.url),"./i18n/pt-pt.json":()=>Re(()=>import("./pt-pt.es-a39b3c5f.js"),[],import.meta.url),"./i18n/ro.json":()=>Re(()=>import("./ro.es-8080c341.js"),[],import.meta.url),"./i18n/ru.json":()=>Re(()=>import("./ru.es-9e02a02e.js"),[],import.meta.url),"./i18n/sk.json":()=>Re(()=>import("./sk.es-7894e5cb.js"),[],import.meta.url),"./i18n/sl.json":()=>Re(()=>import("./sl.es-886c86bd.js"),[],import.meta.url),"./i18n/sq.json":()=>Re(()=>import("./sq.es-600bc51c.js"),[],import.meta.url),"./i18n/sr.json":()=>Re(()=>import("./sr.es-f3348729.js"),[],import.meta.url),"./i18n/sv.json":()=>Re(()=>import("./sv.es-f0a285bd.js"),[],import.meta.url),"./i18n/tr.json":()=>Re(()=>import("./tr.es-f57d7128.js"),[],import.meta.url),"./i18n/uk.json":()=>Re(()=>import("./uk.es-0afcf35e.js"),[],import.meta.url),"./i18n/vi.json":()=>Re(()=>import("./vi.es-c0302793.js"),[],import.meta.url),"./i18n/zh-cn.json":()=>Re(()=>import("./zh-cn.es-b584d7c2.js"),[],import.meta.url),"./i18n/zh-hk.json":()=>Re(()=>import("./zh-hk.es-3b3b5fba.js"),[],import.meta.url)}),`./i18n/${e}.json`).then(n=>{this.texts=Object.assign({},xs,n.default),this.utils.date.updateTexts(this.texts)})},loadDragAndDrop(){Re(()=>import("./drag-and-drop.es-0df93f71.js"),[],import.meta.url).then(e=>{const{DragAndDrop:n}=e;this.modules.dnd=new n(this)}).catch(()=>console.warn("Vue Cal: Missing drag & drop module."))},validateView(e){return Vh.includes(e)||(console.error(`Vue Cal: invalid active-view parameter provided: "${e}". -A valid view must be one of: ${Vh.join(", ")}.`),e="week"),this.enabledViews.includes(e)||(console.warn(`Vue Cal: the provided active-view "${e}" is disabled. Using the "${this.enabledViews[0]}" view instead.`),e=this.enabledViews[0]),e},switchToNarrowerView(e=null){this.transitionDirection="right";const n=this.enabledViews[this.enabledViews.indexOf(this.view.id)+1];n&&this.switchView(n,e)},switchView(e,n=null,t=!1){e=this.validateView(e);const i=this.utils.date,r=this.view.startDate&&this.view.startDate.getTime();if(this.transitions&&t){if(this.view.id===e)return;const a=this.enabledViews;this.transitionDirection=a.indexOf(this.view.id)>a.indexOf(e)?"left":"right"}const o=this.view.id;switch(this.view.events=[],this.view.id=e,this.view.firstCellDate=null,this.view.lastCellDate=null,n||(n=this.view.selectedDate||this.view.startDate),e){case"years":this.view.startDate=new Date(25*Math.floor(n.getFullYear()/25)||2e3,0,1),this.view.endDate=new Date(this.view.startDate.getFullYear()+25,0,1),this.view.endDate.setSeconds(-1);break;case"year":this.view.startDate=new Date(n.getFullYear(),0,1),this.view.endDate=new Date(n.getFullYear()+1,0,1),this.view.endDate.setSeconds(-1);break;case"month":{this.view.startDate=new Date(n.getFullYear(),n.getMonth(),1),this.view.endDate=new Date(n.getFullYear(),n.getMonth()+1,1),this.view.endDate.setSeconds(-1);let a=new Date(this.view.startDate);if(a.getDay()!==(this.startWeekOnSunday?0:1)&&(a=i.getPreviousFirstDayOfWeek(a,this.startWeekOnSunday)),this.view.firstCellDate=a,this.view.lastCellDate=i.addDays(a,41),this.view.lastCellDate.setHours(23,59,59,0),this.hideWeekends){if([0,6].includes(this.view.firstCellDate.getDay())){const l=this.view.firstCellDate.getDay()!==6||this.startWeekOnSunday?1:2;this.view.firstCellDate=i.addDays(this.view.firstCellDate,l)}if([0,6].includes(this.view.startDate.getDay())){const l=this.view.startDate.getDay()===6?2:1;this.view.startDate=i.addDays(this.view.startDate,l)}if([0,6].includes(this.view.lastCellDate.getDay())){const l=this.view.lastCellDate.getDay()!==0||this.startWeekOnSunday?1:2;this.view.lastCellDate=i.subtractDays(this.view.lastCellDate,l)}if([0,6].includes(this.view.endDate.getDay())){const l=this.view.endDate.getDay()===0?2:1;this.view.endDate=i.subtractDays(this.view.endDate,l)}}break}case"week":{n=i.getPreviousFirstDayOfWeek(n,this.startWeekOnSunday);const a=this.hideWeekends?5:7;this.view.startDate=this.hideWeekends&&this.startWeekOnSunday?i.addDays(n,1):n,this.view.startDate.setHours(0,0,0,0),this.view.endDate=i.addDays(n,a),this.view.endDate.setSeconds(-1);break}case"day":this.view.startDate=n,this.view.startDate.setHours(0,0,0,0),this.view.endDate=new Date(n),this.view.endDate.setHours(23,59,59,0)}this.addEventsToView();const s=this.view.startDate&&this.view.startDate.getTime();if((o!==e||s!==r)&&(this.$emit("update:activeView",e),this.ready)){const a=this.view.startDate,l={view:e,startDate:a,endDate:this.view.endDate,...this.isMonthView?{firstCellDate:this.view.firstCellDate,lastCellDate:this.view.lastCellDate,outOfScopeEvents:this.view.outOfScopeEvents.map(this.cleanupEvent)}:{},events:this.view.events.map(this.cleanupEvent),...this.isWeekView?{week:i.getWeek(this.startWeekOnSunday?i.addDays(a,1):a)}:{}};this.$emit("view-change",l)}},previous(){this.previousNext(!1)},next(){this.previousNext()},previousNext(e=!0){const n=this.utils.date;this.transitionDirection=e?"right":"left";const t=e?1:-1;let i=null;const{startDate:r,id:o}=this.view;switch(o){case"years":i=new Date(r.getFullYear()+25*t,0,1);break;case"year":i=new Date(r.getFullYear()+1*t,1,1);break;case"month":i=new Date(r.getFullYear(),r.getMonth()+1*t,1);break;case"week":i=n[e?"addDays":"subtractDays"](n.getPreviousFirstDayOfWeek(r,this.startWeekOnSunday),7);break;case"day":i=n[e?"addDays":"subtractDays"](r,1);const s=i.getDay(),a=this.startWeekOnSunday?s:(s||7)-1;if(this.weekDays[a].hide){const l=this.weekDays.map((c,f)=>({...c,i:f}));let u=0;e?([...l.slice(a),...l].find(c=>(u++,!c.hide)).i,u--):[...l,...l.slice(0,a)].reverse().find(c=>(u++,!c.hide)).i,i=n[e?"addDays":"subtractDays"](i,u)}}i&&this.switchView(o,i)},addEventsToView(e=[]){const n=this.utils.event,{startDate:t,endDate:i,firstCellDate:r,lastCellDate:o}=this.view;if(e.length||(this.view.events=[]),!(e=e.length?e:[...this.mutableEvents])||this.isYearsOrYearView&&!this.eventsCountOnYearView)return;let s=e.filter(a=>n.eventInRange(a,t,i));this.isYearsOrYearView||this.isMonthView&&!this.eventsOnMonthView||(s=s.map(a=>a.daysCount>1?n.createEventSegments(a,r||t,o||i):a)),this.view.events.push(...s),this.isMonthView&&(this.view.outOfScopeEvents=[],e.forEach(a=>{(n.eventInRange(a,r,t)||n.eventInRange(a,i,o))&&(this.view.events.some(l=>l._eid===a._eid)||this.view.outOfScopeEvents.push(a))}))},findAncestor(e,n){for(;(e=e.parentElement)&&!e.classList.contains(n););return e},isDOMElementAnEvent(e){return e.classList.contains("vuecal__event")||this.findAncestor(e,"vuecal__event")},onMouseMove(e){const{resizeAnEvent:n,dragAnEvent:t,dragCreateAnEvent:i}=this.domEvents;(n._eid!==null||t._eid!==null||i.start)&&(e.preventDefault(),n._eid?this.eventResizing(e):this.dragToCreateEvent&&i.start&&this.eventDragCreation(e))},onMouseUp(e){const{focusAnEvent:n,resizeAnEvent:t,clickHoldAnEvent:i,clickHoldACell:r,dragCreateAnEvent:o}=this.domEvents,{_eid:s}=i,{_eid:a}=t;let l=!1;const{event:u,start:c}=o,f=this.isDOMElementAnEvent(e.target),d=n.mousedUp;if(n.mousedUp=!1,f&&(this.domEvents.cancelClickEventCreation=!0),r.eventCreated)return;if(a){const{originalEnd:p,originalEndTimeMinutes:m,endTimeMinutes:y}=t,D=this.view.events.find(S=>S._eid===t._eid);if(l=y&&y!==m,D&&D.end.getTime()!==p.getTime()){const S=this.mutableEvents.find(x=>x._eid===t._eid);S.endTimeMinutes=D.endTimeMinutes,S.end=D.end;const b=this.cleanupEvent(D),w={...this.cleanupEvent(D),end:p,endTimeMinutes:D.originalEndTimeMinutes};this.$emit("event-duration-change",{event:b,oldDate:t.originalEnd,originalEvent:w}),this.$emit("event-change",{event:b,originalEvent:w})}D&&(D.resizing=!1),t._eid=null,t.start=null,t.split=null,t.segment=null,t.originalEndTimeMinutes=null,t.originalEnd=null,t.endTimeMinutes=null,t.startCell=null,t.endCell=null}else c&&(u&&(this.emitWithEvent("event-drag-create",u),o.event.resizing=!1),o.start=null,o.split=null,o.event=null);f||a||this.unfocusEvent(),i.timeoutId&&!s&&(clearTimeout(i.timeoutId),i.timeoutId=null),r.timeoutId&&(clearTimeout(r.timeoutId),r.timeoutId=null);const h=typeof this.onEventClick=="function";if(d&&!l&&!s&&!u&&h){let p=this.view.events.find(m=>m._eid===n._eid);return!p&&this.isMonthView&&(p=this.view.outOfScopeEvents.find(m=>m._eid===n._eid)),p&&this.onEventClick(p,e)}},onKeyUp(e){e.keyCode===27&&this.cancelDelete()},eventResizing(e){const{resizeAnEvent:n}=this.domEvents,t=this.view.events.find(u=>u._eid===n._eid)||{segments:{}},{minutes:i,cursorCoords:r}=this.minutesAtCursor(e),o=t.segments&&t.segments[n.segment],{date:s,event:a}=this.utils,l=Math.max(i,this.timeFrom+1,(o||t).startTimeMinutes+1);if(t.endTimeMinutes=n.endTimeMinutes=l,this.snapToTime){const u=t.endTimeMinutes+this.snapToTime/2;t.endTimeMinutes=u-u%this.snapToTime}if(o&&(o.endTimeMinutes=t.endTimeMinutes),t.end.setHours(0,t.endTimeMinutes,t.endTimeMinutes===bs?-1:0,0),this.resizeX&&this.isWeekView){t.daysCount=s.countDays(t.start,t.end);const u=this.cellsEl,c=u.offsetWidth/u.childElementCount,f=Math.floor(r.x/c);if(n.startCell===null&&(n.startCell=f-(t.daysCount-1)),n.endCell!==f){n.endCell=f;const d=s.addDays(t.start,f-n.startCell),h=Math.max(s.countDays(t.start,d),1);if(h!==t.daysCount){let p=null;p=h>t.daysCount?a.addEventSegment(t):a.removeEventSegment(t),n.segment=p,t.endTimeMinutes+=.001}}}this.$emit("event-resizing",{_eid:t._eid,end:t.end,endTimeMinutes:t.endTimeMinutes})},eventDragCreation(e){const{dragCreateAnEvent:n}=this.domEvents,{start:t,startCursorY:i,split:r}=n,o=new Date(t),{minutes:s,cursorCoords:{y:a}}=this.minutesAtCursor(e);if(n.event||!(Math.abs(i-a)i._eid===(e._eid||n._eid));e._eid=null,n._eid=null,t&&(t.focused=!1,t.deleting=!1)},cancelDelete(){const{clickHoldAnEvent:e}=this.domEvents;if(e._eid){const n=this.view.events.find(t=>t._eid===e._eid);n&&(n.deleting=!1),e._eid=null,e.timeoutId=null}},onEventTitleBlur(e,n){if(n.title===e.target.innerHTML)return;const t=n.title;n.title=e.target.innerHTML;const i=this.cleanupEvent(n);this.$emit("event-title-change",{event:i,oldTitle:t}),this.$emit("event-change",{event:i,originalEvent:{...i,title:t}})},updateMutableEvents(){const e=this.utils.date;this.mutableEvents=[],this.events.forEach(n=>{const t=typeof n.start=="string"?e.stringToDate(n.start):n.start,i=e.formatDateLite(t),r=e.dateToMinutes(t);let o=null;typeof n.end=="string"&&n.end.includes("24:00")?(o=new Date(n.end.replace(" 24:00","")),o.setHours(23,59,59,0)):o=typeof n.end=="string"?e.stringToDate(n.end):n.end;let s=e.formatDateLite(o),a=e.dateToMinutes(o);a&&a!==bs||(!this.time||typeof n.end=="string"&&n.end.length===10?o.setHours(23,59,59,0):o.setSeconds(o.getSeconds()-1),s=e.formatDateLite(o),a=bs);const l=i!==s;n=Object.assign({...this.utils.event.eventDefaults},n,{_eid:`${this._.uid}_${this.eventIdIncrement++}`,segments:l?{}:null,start:t,startTimeMinutes:r,end:o,endTimeMinutes:a,daysCount:l?e.countDays(t,o):1,class:n.class}),this.mutableEvents.push(n)})},minutesAtCursor(e){return this.utils.cell.minutesAtCursor(e)},createEvent(e,n,t={}){return this.utils.event.createAnEvent(e,n,t)},cleanupEvent(e){return e={...e},["segments","deletable","deleting","titleEditable","resizable","resizing","draggable","dragging","draggingStatic","focused"].forEach(n=>{n in e&&delete e[n]}),e.repeat||delete e.repeat,e},emitWithEvent(e,n){this.$emit(e,this.cleanupEvent(n))},updateSelectedDate(e){if((e=e&&typeof e=="string"?this.utils.date.stringToDate(e):new Date(e))&&e instanceof Date){const{selectedDate:n}=this.view;n&&(this.transitionDirection=n.getTime()>e.getTime()?"left":"right"),e.setHours(0,0,0,0),n&&n.getTime()===e.getTime()||(this.view.selectedDate=e),this.switchView(this.view.id)}this.$emit("update:selected-date",this.view.selectedDate)},getWeekNumber(e){const n=this.utils.date,t=this.firstCellDateWeekNumber+e,i=this.startWeekOnSunday?1:0;return t>52?n.getWeek(n.addDays(this.view.firstCellDate,7*e+i)):t},timeTick(){this.now=new Date,this.timeTickerIds[1]=setTimeout(this.timeTick,6e4)},updateDateTexts(){this.utils.date.updateTexts(this.texts)},alignWithScrollbar(){if(document.getElementById("vuecal-align-with-scrollbar"))return;const e=this.$refs.vuecal.getElementsByClassName("vuecal__scrollbar-check")[0],n=e.offsetWidth-e.children[0].offsetWidth;if(n){const t=document.createElement("style");t.id="vuecal-align-with-scrollbar",t.type="text/css",t.innerHTML=`.vuecal--view-with-time .vuecal__weekdays-headings,.vuecal--view-with-time .vuecal__all-day {padding-right: ${n}px}`,document.head.appendChild(t)}},cellOrSplitHasEvents:(e,n=null)=>e.length&&(!n&&e.length||n&&e.some(t=>t.split===n.id))},created(){this.utils.cell=new Q1(this),this.utils.event=new q1(this,this.utils.date),this.loadLocale(this.locale),this.editEvents.drag&&this.loadDragAndDrop(),this.updateMutableEvents(this.events),this.view.id=this.currentView,this.selectedDate?this.updateSelectedDate(this.selectedDate):(this.view.selectedDate=new Date,this.switchView(this.currentView)),this.time&&this.watchRealTime&&(this.timeTickerIds[0]=setTimeout(this.timeTick,1e3*(60-this.now.getSeconds())))},mounted(){const e=this.utils.date,n="ontouchstart"in window,{resize:t,drag:i,create:r,delete:o,title:s}=this.editEvents,a=this.onEventClick&&typeof this.onEventClick=="function";(t||i||r||o||s||a)&&window.addEventListener(n?"touchend":"mouseup",this.onMouseUp),(t||i||r&&this.dragToCreateEvent)&&window.addEventListener(n?"touchmove":"mousemove",this.onMouseMove,{passive:!1}),s&&window.addEventListener("keyup",this.onKeyUp),n&&(this.$refs.vuecal.oncontextmenu=function(c){c.preventDefault(),c.stopPropagation()}),this.hideBody||this.alignWithScrollbar();const l=this.view.startDate,u={view:this.view.id,startDate:l,endDate:this.view.endDate,...this.isMonthView?{firstCellDate:this.view.firstCellDate,lastCellDate:this.view.lastCellDate}:{},events:this.view.events.map(this.cleanupEvent),...this.isWeekView?{week:e.getWeek(this.startWeekOnSunday?e.addDays(l,1):l)}:{}};this.$emit("ready",u),this.ready=!0},beforeUnmount(){const e="ontouchstart"in window;window.removeEventListener(e?"touchmove":"mousemove",this.onMouseMove,{passive:!1}),window.removeEventListener(e?"touchend":"mouseup",this.onMouseUp),window.removeEventListener("keyup",this.onKeyUp),this.timeTickerIds[0]&&clearTimeout(this.timeTickerIds[0]),this.timeTickerIds[1]&&clearTimeout(this.timeTickerIds[1]),this.timeTickerIds=[null,null]},computed:{editEvents(){return this.editableEvents&&typeof this.editableEvents=="object"?{title:!!this.editableEvents.title,drag:!!this.editableEvents.drag,resize:!!this.editableEvents.resize,create:!!this.editableEvents.create,delete:!!this.editableEvents.delete}:{title:!!this.editableEvents,drag:!!this.editableEvents,resize:!!this.editableEvents,create:!!this.editableEvents,delete:!!this.editableEvents}},views(){return{years:{label:this.texts.years,enabled:!this.disableViews.includes("years")},year:{label:this.texts.year,enabled:!this.disableViews.includes("year")},month:{label:this.texts.month,enabled:!this.disableViews.includes("month")},week:{label:this.texts.week,enabled:!this.disableViews.includes("week")},day:{label:this.texts.day,enabled:!this.disableViews.includes("day")}}},currentView(){return this.validateView(this.activeView)},enabledViews(){return Object.keys(this.views).filter(e=>this.views[e].enabled)},hasTimeColumn(){return this.time&&this.isWeekOrDayView},isShortMonthView(){return this.isMonthView&&this.eventsOnMonthView==="short"},firstCellDateWeekNumber(){const e=this.utils.date,n=this.view.firstCellDate;return e.getWeek(this.startWeekOnSunday?e.addDays(n,1):n)},timeCells(){const e=[];for(let n=this.timeFrom,t=this.timeTo;n!e.hide)||[]).map((e,n)=>({...e,id:e.id||n+1}))},hasSplits(){return this.daySplits.length&&this.isWeekOrDayView},hasShortEvents(){return this.showAllDayEvents==="short"},cellOrSplitMinWidth(){let e=null;return this.hasSplits&&this.minSplitWidth?e=this.visibleDaysCount*this.minSplitWidth*this.daySplits.length:this.minCellWidth&&this.isWeekView&&(e=this.visibleDaysCount*this.minCellWidth),e},allDayBar(){let e=this.allDayBarHeight||null;return e&&!isNaN(e)&&(e+="px"),{cells:this.viewCells,options:this.$props,label:this.texts.allDay,shortEvents:this.hasShortEvents,daySplits:this.hasSplits&&this.daySplits||[],cellOrSplitMinWidth:this.cellOrSplitMinWidth,height:e}},minTimestamp(){let e=null;return this.minDate&&typeof this.minDate=="string"?e=this.utils.date.stringToDate(this.minDate):this.minDate&&this.minDate instanceof Date&&(e=this.minDate),e?e.getTime():null},maxTimestamp(){let e=null;return this.maxDate&&typeof this.maxDate=="string"?e=this.utils.date.stringToDate(this.maxDate):this.maxDate&&this.minDate instanceof Date&&(e=this.maxDate),e?e.getTime():null},weekDays(){let{weekDays:e,weekDaysShort:n=[]}=this.texts;return e=e.slice(0).map((t,i)=>({label:t,...n.length?{short:n[i]}:{},hide:this.hideWeekends&&i>=5||this.hideWeekdays.length&&this.hideWeekdays.includes(i+1)})),this.startWeekOnSunday&&e.unshift(e.pop()),e},weekDaysInHeader(){return this.isMonthView||this.isWeekView&&!this.minCellWidth&&!(this.hasSplits&&this.minSplitWidth)},months(){return this.texts.months.map(e=>({label:e}))},specialDayHours(){return this.specialHours&&Object.keys(this.specialHours).length?Array(7).fill("").map((e,n)=>{let t=this.specialHours[n+1]||[];return Array.isArray(t)||(t=[t]),e=[],t.forEach(({from:i,to:r,class:o,label:s},a)=>{e[a]={day:n+1,from:[null,void 0].includes(i)?null:1*i,to:[null,void 0].includes(r)?null:1*r,class:o||"",label:s||""}}),e}):{}},viewTitle(){const e=this.utils.date;let n="";const t=this.view.startDate,i=t.getFullYear(),r=t.getMonth();switch(this.view.id){case"years":n=this.texts.years;break;case"year":n=i;break;case"month":n=`${this.months[r].label} ${i}`;break;case"week":{const o=this.view.endDate,s=t.getFullYear();let a=this.texts.months[t.getMonth()];this.xsmall&&(a=a.substring(0,3));let l=`${a} ${s}`;if(o.getMonth()!==t.getMonth()){const u=o.getFullYear();let c=this.texts.months[o.getMonth()];this.xsmall&&(c=c.substring(0,3)),l=s===u?`${a} - ${c} ${s}`:this.small?`${a.substring(0,3)} ${s} - ${c.substring(0,3)} ${u}`:`${a} ${s} - ${c} ${u}`}n=`${this.texts.week} ${e.getWeek(this.startWeekOnSunday?e.addDays(t,1):t)} (${l})`;break}case"day":n=this.utils.date.formatDate(t,this.texts.dateFormat,this.texts)}return n},viewCells(){const e=this.utils.date;let n=[],t=null,i=!1;this.watchRealTime||(this.now=new Date);const r=this.now;switch(this.view.id){case"years":t=this.view.startDate.getFullYear(),n=Array.apply(null,Array(25)).map((o,s)=>{const a=new Date(t+s,0,1),l=new Date(t+s+1,0,1);return l.setSeconds(-1),{startDate:a,formattedDate:e.formatDateLite(a),endDate:l,content:t+s,current:t+s===r.getFullYear()}});break;case"year":t=this.view.startDate.getFullYear(),n=Array.apply(null,Array(12)).map((o,s)=>{const a=new Date(t,s,1),l=new Date(t,s+1,1);return l.setSeconds(-1),{startDate:a,formattedDate:e.formatDateLite(a),endDate:l,content:this.xsmall?this.months[s].label.substr(0,3):this.months[s].label,current:s===r.getMonth()&&t===r.getFullYear()}});break;case"month":{const o=this.view.startDate.getMonth(),s=new Date(this.view.firstCellDate);i=!1,n=Array.apply(null,Array(42)).map((a,l)=>{const u=e.addDays(s,l),c=new Date(u);c.setHours(23,59,59,0);const f=!i&&e.isToday(u)&&!i++;return{startDate:u,formattedDate:e.formatDateLite(u),endDate:c,content:u.getDate(),today:f,outOfScope:u.getMonth()!==o,class:`vuecal__cell--day${u.getDay()||7}`}}),(this.hideWeekends||this.hideWeekdays.length)&&(n=n.filter(a=>{const l=a.startDate.getDay()||7;return!(this.hideWeekends&&l>=6||this.hideWeekdays.length&&this.hideWeekdays.includes(l))}));break}case"week":{i=!1;const o=this.view.startDate,s=this.weekDays;n=s.map((a,l)=>{const u=e.addDays(o,this.startWeekOnSunday?l-1:l),c=new Date(u);c.setHours(23,59,59,0);const f=(u.getDay()||7)-1;return{startDate:u,formattedDate:e.formatDateLite(u),endDate:c,today:!i&&e.isToday(u)&&!i++,specialHours:this.specialDayHours[f]||[]}}).filter((a,l)=>!s[l].hide);break}case"day":{const o=this.view.startDate,s=new Date(this.view.startDate);s.setHours(23,59,59,0);const a=(o.getDay()||7)-1;n=[{startDate:o,formattedDate:e.formatDateLite(o),endDate:s,today:e.isToday(o),specialHours:this.specialDayHours[a]||[]}];break}}return n},visibleDaysCount(){return this.isDayView?1:7-this.weekDays.reduce((e,n)=>e+n.hide,0)},cellWidth(){return 100/this.visibleDaysCount},cssClasses(){const{resizeAnEvent:e,dragAnEvent:n,dragCreateAnEvent:t}=this.domEvents;return{[`vuecal--${this.view.id}-view`]:!0,[`vuecal--${this.locale}`]:this.locale,"vuecal--no-time":!this.time,"vuecal--view-with-time":this.hasTimeColumn,"vuecal--week-numbers":this.showWeekNumbers&&this.isMonthView,"vuecal--twelve-hour":this.twelveHour,"vuecal--click-to-navigate":this.clickToNavigate,"vuecal--hide-weekends":this.hideWeekends,"vuecal--split-days":this.hasSplits,"vuecal--sticky-split-labels":this.hasSplits&&this.stickySplitLabels,"vuecal--overflow-x":this.minCellWidth&&this.isWeekView||this.hasSplits&&this.minSplitWidth,"vuecal--small":this.small,"vuecal--xsmall":this.xsmall,"vuecal--resizing-event":e._eid,"vuecal--drag-creating-event":t.event,"vuecal--dragging-event":n._eid,"vuecal--events-on-month-view":this.eventsOnMonthView,"vuecal--short-events":this.isMonthView&&this.eventsOnMonthView==="short","vuecal--has-touch":typeof window<"u"&&"ontouchstart"in window}},isYearsOrYearView(){return["years","year"].includes(this.view.id)},isYearsView(){return this.view.id==="years"},isYearView(){return this.view.id==="year"},isMonthView(){return this.view.id==="month"},isWeekOrDayView(){return["week","day"].includes(this.view.id)},isWeekView(){return this.view.id==="week"},isDayView(){return this.view.id==="day"}},watch:{events:{handler(e,n){this.updateMutableEvents(e),this.addEventsToView()},deep:!0},locale(e){this.loadLocale(e)},selectedDate(e){this.updateSelectedDate(e)},activeView(e){this.switchView(e)}}},iO=os(nO,[["render",function(e,n,t,i,r,o){const s=ui("vuecal-header"),a=ui("all-day-bar"),l=ui("weekdays-headings"),u=ui("vuecal-cell");return ae(),ge("div",{class:Rt(["vuecal__flex vuecal",o.cssClasses]),column:"",ref:"vuecal",lang:t.locale},[ot(s,{options:e.$props,"edit-events":o.editEvents,"view-props":{views:o.views,weekDaysInHeader:o.weekDaysInHeader},"week-days":o.weekDays,"has-splits":o.hasSplits,"day-splits":o.daySplits,"switch-to-narrower-view":o.switchToNarrowerView},Gs({"arrow-prev":pt(()=>[qe(e.$slots,"arrow-prev",{},()=>[Xt(" "),xC,Xt(" ")])]),"arrow-next":pt(()=>[qe(e.$slots,"arrow-next",{},()=>[Xt(" "),AC,Xt(" ")])]),"today-button":pt(()=>[qe(e.$slots,"today-button",{},()=>[yt("span",MC,vt(r.texts.today),1)])]),title:pt(()=>[qe(e.$slots,"title",{title:o.viewTitle,view:r.view},()=>[Xt(vt(o.viewTitle),1)])]),_:2},[e.$slots["weekday-heading"]?{name:"weekday-heading",fn:pt(({heading:c,view:f})=>[qe(e.$slots,"weekday-heading",{heading:c,view:f})]),key:"0"}:void 0,e.$slots["split-label"]?{name:"split-label",fn:pt(({split:c})=>[qe(e.$slots,"split-label",{split:c,view:r.view.id})]),key:"1"}:void 0]),1032,["options","edit-events","view-props","week-days","has-splits","day-splits","switch-to-narrower-view"]),t.hideBody?je("",!0):(ae(),ge("div",IC,[ot(er,{name:`slide-fade--${r.transitionDirection}`,appear:t.transitions},{default:pt(()=>[(ae(),ge("div",{class:"vuecal__flex",style:{"min-width":"100%"},key:!!t.transitions&&r.view.id,column:""},[t.showAllDayEvents&&o.hasTimeColumn&&(!o.cellOrSplitMinWidth||o.isDayView&&!t.minSplitWidth)?(ae(),_n(a,Sa(Js({key:0},o.allDayBar)),{event:pt(({event:c,view:f})=>[qe(e.$slots,"event",{view:f,event:c},()=>[o.editEvents.title&&c.titleEditable?(ae(),ge("div",{key:0,class:"vuecal__event-title vuecal__event-title--edit",contenteditable:"",onBlur:d=>o.onEventTitleBlur(d,c),innerHTML:c.title},null,40,PC)):c.title?(ae(),ge("div",{key:1,class:"vuecal__event-title",innerHTML:c.title},null,8,NC)):je("",!0),!c.content||o.hasShortEvents||o.isShortMonthView?je("",!0):(ae(),ge("div",{key:2,class:"vuecal__event-content",innerHTML:c.content},null,8,RC))])]),_:3},16)):je("",!0),yt("div",{class:Rt(["vuecal__bg",{vuecal__flex:!o.hasTimeColumn}]),column:""},[yt("div",_C,[o.hasTimeColumn?(ae(),ge("div",FC,[t.showAllDayEvents&&o.cellOrSplitMinWidth&&(!o.isDayView||t.minSplitWidth)?(ae(),ge("div",{key:0,class:"vuecal__all-day-text",style:Yt({height:o.allDayBar.height})},[yt("span",null,vt(r.texts.allDay),1)],4)):je("",!0),(ae(!0),ge(tt,null,dn(o.timeCells,(c,f)=>(ae(),ge("div",{class:"vuecal__time-cell",key:f,style:Yt(`height: ${t.timeCellHeight}px`)},[qe(e.$slots,"time-cell",{hours:c.hours,minutes:c.minutes},()=>[LC,yt("span",kC,vt(c.label),1)])],4))),128))])):je("",!0),t.showWeekNumbers&&o.isMonthView?(ae(),ge("div",$C,[(ae(),ge(tt,null,dn(6,c=>yt("div",{class:"vuecal__flex vuecal__week-number-cell",key:c,grow:""},[qe(e.$slots,"week-number-cell",{week:o.getWeekNumber(c-1)},()=>[Xt(vt(o.getWeekNumber(c-1)),1)])])),64))])):je("",!0),yt("div",{class:Rt(["vuecal__flex vuecal__cells",`${r.view.id}-view`]),grow:"",wrap:!o.cellOrSplitMinWidth||!o.isWeekView,column:!!o.cellOrSplitMinWidth},[o.cellOrSplitMinWidth&&o.isWeekView?(ae(),_n(l,{key:0,"transition-direction":r.transitionDirection,"week-days":o.weekDays,"switch-to-narrower-view":o.switchToNarrowerView,style:Yt(o.cellOrSplitMinWidth?`min-width: ${o.cellOrSplitMinWidth}px`:"")},Gs({_:2},[e.$slots["weekday-heading"]?{name:"weekday-heading",fn:pt(({heading:c,view:f})=>[qe(e.$slots,"weekday-heading",{heading:c,view:f})]),key:"0"}:void 0,e.$slots["split-label"]?{name:"split-label",fn:pt(({split:c})=>[qe(e.$slots,"split-label",{split:c,view:r.view.id})]),key:"1"}:void 0]),1032,["transition-direction","week-days","switch-to-narrower-view","style"])):o.hasSplits&&t.stickySplitLabels&&t.minSplitWidth?(ae(),ge("div",{key:1,class:"vuecal__flex vuecal__split-days-headers",style:Yt(o.cellOrSplitMinWidth?`min-width: ${o.cellOrSplitMinWidth}px`:"")},[(ae(!0),ge(tt,null,dn(o.daySplits,(c,f)=>(ae(),ge("div",{class:Rt(["day-split-header",c.class||!1]),key:f},[qe(e.$slots,"split-label",{split:c,view:r.view.id},()=>[Xt(vt(c.label),1)])],2))),128))],4)):je("",!0),t.showAllDayEvents&&o.hasTimeColumn&&(o.isWeekView&&o.cellOrSplitMinWidth||o.isDayView&&o.hasSplits&&t.minSplitWidth)?(ae(),_n(a,Sa(Js({key:2},o.allDayBar)),{event:pt(({event:c,view:f})=>[qe(e.$slots,"event",{view:f,event:c},()=>[o.editEvents.title&&c.titleEditable?(ae(),ge("div",{key:0,class:"vuecal__event-title vuecal__event-title--edit",contenteditable:"",onBlur:d=>o.onEventTitleBlur(d,c),innerHTML:c.title},null,40,VC)):c.title?(ae(),ge("div",{key:1,class:"vuecal__event-title",innerHTML:c.title},null,8,BC)):je("",!0),!c.content||o.hasShortEvents||o.isShortMonthView?je("",!0):(ae(),ge("div",{key:2,class:"vuecal__event-content",innerHTML:c.content},null,8,HC))])]),_:3},16)):je("",!0),yt("div",{class:"vuecal__flex",ref:c=>r.cellsEl=c,grow:"",wrap:!o.cellOrSplitMinWidth||!o.isWeekView,style:Yt(o.cellOrSplitMinWidth?`min-width: ${o.cellOrSplitMinWidth}px`:"")},[(ae(!0),ge(tt,null,dn(o.viewCells,(c,f)=>(ae(),_n(u,{key:f,options:e.$props,"edit-events":o.editEvents,data:c,"cell-width":t.hideWeekdays.length&&(o.isWeekView||o.isMonthView)&&o.cellWidth,"min-timestamp":o.minTimestamp,"max-timestamp":o.maxTimestamp,"cell-splits":o.hasSplits&&o.daySplits||[]},{"cell-content":pt(({events:d,split:h,selectCell:p})=>[qe(e.$slots,"cell-content",{cell:c,view:r.view,goNarrower:p,events:d},()=>[h&&!t.stickySplitLabels?(ae(),ge("div",{key:0,class:"split-label",innerHTML:h.label},null,8,WC)):je("",!0),c.content?(ae(),ge("div",{key:1,class:"vuecal__cell-date",innerHTML:c.content},null,8,KC)):je("",!0),(o.isMonthView&&!t.eventsOnMonthView||o.isYearsOrYearView&&t.eventsCountOnYearView)&&d.length?(ae(),ge("div",YC,[qe(e.$slots,"events-count",{view:r.view,events:d},()=>[Xt(vt(d.length),1)])])):je("",!0),!o.cellOrSplitHasEvents(d,h)&&o.isWeekOrDayView?(ae(),ge("div",zC,[qe(e.$slots,"no-event",{},()=>[Xt(vt(r.texts.noEvent),1)])])):je("",!0)])]),event:pt(({event:d,view:h})=>[qe(e.$slots,"event",{view:h,event:d},()=>[o.editEvents.title&&d.titleEditable?(ae(),ge("div",{key:0,class:"vuecal__event-title vuecal__event-title--edit",contenteditable:"",onBlur:p=>o.onEventTitleBlur(p,d),innerHTML:d.title},null,40,GC)):d.title?(ae(),ge("div",{key:1,class:"vuecal__event-title",innerHTML:d.title},null,8,ZC)):je("",!0),!t.time||d.allDay||o.isMonthView&&(d.allDay||t.showAllDayEvents==="short")||o.isShortMonthView?je("",!0):(ae(),ge("div",XC,[Xt(vt(r.utils.date.formatTime(d.start,o.TimeFormat)),1),d.endTimeMinutes?(ae(),ge("span",JC," - "+vt(r.utils.date.formatTime(d.end,o.TimeFormat,null,!0)),1)):je("",!0),d.daysCount>1&&(d.segments[c.formattedDate]||{}).isFirstDay?(ae(),ge("small",QC," +"+vt(d.daysCount-1)+vt((r.texts.day[0]||"").toLowerCase()),1)):je("",!0)])),!d.content||o.isMonthView&&d.allDay&&t.showAllDayEvents==="short"||o.isShortMonthView?je("",!0):(ae(),ge("div",{key:3,class:"vuecal__event-content",innerHTML:d.content},null,8,qC))])]),"no-event":pt(()=>[qe(e.$slots,"no-event",{},()=>[Xt(vt(r.texts.noEvent),1)])]),_:2},1032,["options","edit-events","data","cell-width","min-timestamp","max-timestamp","cell-splits"]))),128))],12,UC)],10,jC)])],2)]))]),_:3},8,["name","appear"]),r.ready?je("",!0):(ae(),ge("div",eO,tO))]))],10,OC)}]]);const rO={install:(e,n)=>e.component("v-vue-cal",iO)};var sO=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function oO(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function fy(e){if(e.__esModule)return e;var n=e.default;if(typeof n=="function"){var t=function i(){return this instanceof i?Reflect.construct(n,arguments,this.constructor):n.apply(this,arguments)};t.prototype=n.prototype}else t={};return Object.defineProperty(t,"__esModule",{value:!0}),Object.keys(e).forEach(function(i){var r=Object.getOwnPropertyDescriptor(e,i);Object.defineProperty(t,i,r.get?r:{enumerable:!0,get:function(){return e[i]}})}),t}var dy={exports:{}};const aO=fy(kD);/**! - * Sortable 1.14.0 - * @author RubaXa - * @author owenm - * @license MIT - */function Hh(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);n&&(i=i.filter(function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable})),t.push.apply(t,i)}return t}function di(e){for(var n=1;n=0)&&(t[r]=e[r]);return t}function cO(e,n){if(e==null)return{};var t=uO(e,n),i,r;if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r=0)&&Object.prototype.propertyIsEnumerable.call(e,i)&&(t[i]=e[i])}return t}function fO(e){return dO(e)||hO(e)||pO(e)||mO()}function dO(e){if(Array.isArray(e))return Qu(e)}function hO(e){if(typeof Symbol<"u"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function pO(e,n){if(e){if(typeof e=="string")return Qu(e,n);var t=Object.prototype.toString.call(e).slice(8,-1);if(t==="Object"&&e.constructor&&(t=e.constructor.name),t==="Map"||t==="Set")return Array.from(e);if(t==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t))return Qu(e,n)}}function Qu(e,n){(n==null||n>e.length)&&(n=e.length);for(var t=0,i=new Array(n);t"&&(n=n.substring(1)),e)try{if(e.matches)return e.matches(n);if(e.msMatchesSelector)return e.msMatchesSelector(n);if(e.webkitMatchesSelector)return e.webkitMatchesSelector(n)}catch{return!1}return!1}}function yO(e){return e.host&&e!==document&&e.host.nodeType?e.host:e.parentNode}function Jn(e,n,t,i){if(e){t=t||document;do{if(n!=null&&(n[0]===">"?e.parentNode===t&&Xa(e,n):Xa(e,n))||i&&e===t)return e;if(e===t)break}while(e=yO(e))}return null}var Wh=/\s+/g;function Ot(e,n,t){if(e&&n)if(e.classList)e.classList[t?"add":"remove"](n);else{var i=(" "+e.className+" ").replace(Wh," ").replace(" "+n+" "," ");e.className=(i+(t?" "+n:"")).replace(Wh," ")}}function be(e,n,t){var i=e&&e.style;if(i){if(t===void 0)return document.defaultView&&document.defaultView.getComputedStyle?t=document.defaultView.getComputedStyle(e,""):e.currentStyle&&(t=e.currentStyle),n===void 0?t:t[n];!(n in i)&&n.indexOf("webkit")===-1&&(n="-webkit-"+n),i[n]=t+(typeof t=="string"?"":"px")}}function Tr(e,n){var t="";if(typeof e=="string")t=e;else do{var i=be(e,"transform");i&&i!=="none"&&(t=i+" "+t)}while(!n&&(e=e.parentNode));var r=window.DOMMatrix||window.WebKitCSSMatrix||window.CSSMatrix||window.MSCSSMatrix;return r&&new r(t)}function my(e,n,t){if(e){var i=e.getElementsByTagName(n),r=0,o=i.length;if(t)for(;r=o:s=r<=o,!s)return i;if(i===fi())break;i=Wi(i,!1)}return!1}function as(e,n,t,i){for(var r=0,o=0,s=e.children;o2&&arguments[2]!==void 0?arguments[2]:{},r=i.evt,o=cO(i,CO);Oo.pluginEvent.bind(Oe)(n,t,di({dragEl:oe,parentEl:Mt,ghostEl:Fe,rootEl:Et,nextEl:hr,lastDownEl:ma,cloneEl:It,cloneHidden:Ui,dragStarted:Ms,putSortable:Gt,activeSortable:Oe.active,originalEvent:r,oldIndex:Wr,oldDraggableIndex:Vs,newIndex:In,newDraggableIndex:Bi,hideGhostForTarget:Sy,unhideGhostForTarget:wy,cloneNowHidden:function(){Ui=!0},cloneNowShown:function(){Ui=!1},dispatchSortableEvent:function(a){un({sortable:t,name:a,originalEvent:r})}},o))};function un(e){As(di({putSortable:Gt,cloneEl:It,targetEl:oe,rootEl:Et,oldIndex:Wr,oldDraggableIndex:Vs,newIndex:In,newDraggableIndex:Bi},e))}var oe,Mt,Fe,Et,hr,ma,It,Ui,Wr,In,Vs,Bi,Jo,Gt,Ur=!1,Ja=!1,Qa=[],ur,Zn,su,ou,Gh,Zh,Ms,Vr,Bs,Hs=!1,Qo=!1,ga,qt,au=[],qu=!1,qa=[],Il=typeof document<"u",qo=hy,Xh=Co||Ii?"cssFloat":"float",OO=Il&&!vO&&!hy&&"draggable"in document.createElement("div"),yy=function(){if(Il){if(Ii)return!1;var e=document.createElement("x");return e.style.cssText="pointer-events:auto",e.style.pointerEvents==="auto"}}(),by=function(n,t){var i=be(n),r=parseInt(i.width)-parseInt(i.paddingLeft)-parseInt(i.paddingRight)-parseInt(i.borderLeftWidth)-parseInt(i.borderRightWidth),o=as(n,0,t),s=as(n,1,t),a=o&&be(o),l=s&&be(s),u=a&&parseInt(a.marginLeft)+parseInt(a.marginRight)+wt(o).width,c=l&&parseInt(l.marginLeft)+parseInt(l.marginRight)+wt(s).width;if(i.display==="flex")return i.flexDirection==="column"||i.flexDirection==="column-reverse"?"vertical":"horizontal";if(i.display==="grid")return i.gridTemplateColumns.split(" ").length<=1?"vertical":"horizontal";if(o&&a.float&&a.float!=="none"){var f=a.float==="left"?"left":"right";return s&&(l.clear==="both"||l.clear===f)?"vertical":"horizontal"}return o&&(a.display==="block"||a.display==="flex"||a.display==="table"||a.display==="grid"||u>=r&&i[Xh]==="none"||s&&i[Xh]==="none"&&u+c>r)?"vertical":"horizontal"},xO=function(n,t,i){var r=i?n.left:n.top,o=i?n.right:n.bottom,s=i?n.width:n.height,a=i?t.left:t.top,l=i?t.right:t.bottom,u=i?t.width:t.height;return r===a||o===l||r+s/2===a+u/2},AO=function(n,t){var i;return Qa.some(function(r){var o=r[rn].options.emptyInsertThreshold;if(!(!o||If(r))){var s=wt(r),a=n>=s.left-o&&n<=s.right+o,l=t>=s.top-o&&t<=s.bottom+o;if(a&&l)return i=r}}),i},Ey=function(n){function t(o,s){return function(a,l,u,c){var f=a.options.group.name&&l.options.group.name&&a.options.group.name===l.options.group.name;if(o==null&&(s||f))return!0;if(o==null||o===!1)return!1;if(s&&o==="clone")return o;if(typeof o=="function")return t(o(a,l,u,c),s)(a,l,u,c);var d=(s?a:l).options.group.name;return o===!0||typeof o=="string"&&o===d||o.join&&o.indexOf(d)>-1}}var i={},r=n.group;(!r||pa(r)!="object")&&(r={name:r}),i.name=r.name,i.checkPull=t(r.pull,!0),i.checkPut=t(r.put),i.revertClone=r.revertClone,n.group=i},Sy=function(){!yy&&Fe&&be(Fe,"display","none")},wy=function(){!yy&&Fe&&be(Fe,"display","")};Il&&document.addEventListener("click",function(e){if(Ja)return e.preventDefault(),e.stopPropagation&&e.stopPropagation(),e.stopImmediatePropagation&&e.stopImmediatePropagation(),Ja=!1,!1},!0);var cr=function(n){if(oe){n=n.touches?n.touches[0]:n;var t=AO(n.clientX,n.clientY);if(t){var i={};for(var r in n)n.hasOwnProperty(r)&&(i[r]=n[r]);i.target=i.rootEl=t,i.preventDefault=void 0,i.stopPropagation=void 0,t[rn]._onDragOver(i)}}},MO=function(n){oe&&oe.parentNode[rn]._isOutsideThisEl(n.target)};function Oe(e,n){if(!(e&&e.nodeType&&e.nodeType===1))throw"Sortable: `el` must be an HTMLElement, not ".concat({}.toString.call(e));this.el=e,this.options=n=zn({},n),e[rn]=this;var t={group:null,sort:!0,disabled:!1,store:null,handle:null,draggable:/^[uo]l$/i.test(e.nodeName)?">li":">*",swapThreshold:1,invertSwap:!1,invertedSwapThreshold:null,removeCloneOnHide:!0,direction:function(){return by(e,this.options)},ghostClass:"sortable-ghost",chosenClass:"sortable-chosen",dragClass:"sortable-drag",ignore:"a, img",filter:null,preventOnFilter:!0,animation:0,easing:null,setData:function(s,a){s.setData("Text",a.textContent)},dropBubble:!1,dragoverBubble:!1,dataIdAttr:"data-id",delay:0,delayOnTouchOnly:!1,touchStartThreshold:(Number.parseInt?Number:window).parseInt(window.devicePixelRatio,10)||1,forceFallback:!1,fallbackClass:"sortable-fallback",fallbackOnBody:!1,fallbackTolerance:0,fallbackOffset:{x:0,y:0},supportPointer:Oe.supportPointer!==!1&&"PointerEvent"in window&&!$s,emptyInsertThreshold:5};Oo.initializePlugins(this,e,t);for(var i in t)!(i in n)&&(n[i]=t[i]);Ey(n);for(var r in this)r.charAt(0)==="_"&&typeof this[r]=="function"&&(this[r]=this[r].bind(this));this.nativeDraggable=n.forceFallback?!1:OO,this.nativeDraggable&&(this.options.touchStartThreshold=1),n.supportPointer?Ye(e,"pointerdown",this._onTapStart):(Ye(e,"mousedown",this._onTapStart),Ye(e,"touchstart",this._onTapStart)),this.nativeDraggable&&(Ye(e,"dragover",this),Ye(e,"dragenter",this)),Qa.push(this.el),n.store&&n.store.get&&this.sort(n.store.get(this)||[]),zn(this,wO())}Oe.prototype={constructor:Oe,_isOutsideThisEl:function(n){!this.el.contains(n)&&n!==this.el&&(Vr=null)},_getDirection:function(n,t){return typeof this.options.direction=="function"?this.options.direction.call(this,n,t,oe):this.options.direction},_onTapStart:function(n){if(n.cancelable){var t=this,i=this.el,r=this.options,o=r.preventOnFilter,s=n.type,a=n.touches&&n.touches[0]||n.pointerType&&n.pointerType==="touch"&&n,l=(a||n).target,u=n.target.shadowRoot&&(n.path&&n.path[0]||n.composedPath&&n.composedPath()[0])||l,c=r.filter;if(kO(i),!oe&&!(/mousedown|pointerdown/.test(s)&&n.button!==0||r.disabled)&&!u.isContentEditable&&!(!this.nativeDraggable&&$s&&l&&l.tagName.toUpperCase()==="SELECT")&&(l=Jn(l,r.draggable,i,!1),!(l&&l.animated)&&ma!==l)){if(Wr=Pt(l),Vs=Pt(l,r.draggable),typeof c=="function"){if(c.call(this,n,l,this)){un({sortable:t,rootEl:u,name:"filter",targetEl:l,toEl:i,fromEl:i}),pn("filter",t,{evt:n}),o&&n.cancelable&&n.preventDefault();return}}else if(c&&(c=c.split(",").some(function(f){if(f=Jn(u,f.trim(),i,!1),f)return un({sortable:t,rootEl:f,name:"filter",targetEl:l,fromEl:i,toEl:i}),pn("filter",t,{evt:n}),!0}),c)){o&&n.cancelable&&n.preventDefault();return}r.handle&&!Jn(u,r.handle,i,!1)||this._prepareDragStart(n,a,l)}}},_prepareDragStart:function(n,t,i){var r=this,o=r.el,s=r.options,a=o.ownerDocument,l;if(i&&!oe&&i.parentNode===o){var u=wt(i);if(Et=o,oe=i,Mt=oe.parentNode,hr=oe.nextSibling,ma=i,Jo=s.group,Oe.dragged=oe,ur={target:oe,clientX:(t||n).clientX,clientY:(t||n).clientY},Gh=ur.clientX-u.left,Zh=ur.clientY-u.top,this._lastX=(t||n).clientX,this._lastY=(t||n).clientY,oe.style["will-change"]="all",l=function(){if(pn("delayEnded",r,{evt:n}),Oe.eventCanceled){r._onDrop();return}r._disableDelayedDragEvents(),!Uh&&r.nativeDraggable&&(oe.draggable=!0),r._triggerDragStart(n,t),un({sortable:r,name:"choose",originalEvent:n}),Ot(oe,s.chosenClass,!0)},s.ignore.split(",").forEach(function(c){my(oe,c.trim(),lu)}),Ye(a,"dragover",cr),Ye(a,"mousemove",cr),Ye(a,"touchmove",cr),Ye(a,"mouseup",r._onDrop),Ye(a,"touchend",r._onDrop),Ye(a,"touchcancel",r._onDrop),Uh&&this.nativeDraggable&&(this.options.touchStartThreshold=4,oe.draggable=!0),pn("delayStart",this,{evt:n}),s.delay&&(!s.delayOnTouchOnly||t)&&(!this.nativeDraggable||!(Co||Ii))){if(Oe.eventCanceled){this._onDrop();return}Ye(a,"mouseup",r._disableDelayedDrag),Ye(a,"touchend",r._disableDelayedDrag),Ye(a,"touchcancel",r._disableDelayedDrag),Ye(a,"mousemove",r._delayedDragTouchMoveHandler),Ye(a,"touchmove",r._delayedDragTouchMoveHandler),s.supportPointer&&Ye(a,"pointermove",r._delayedDragTouchMoveHandler),r._dragStartTimer=setTimeout(l,s.delay)}else l()}},_delayedDragTouchMoveHandler:function(n){var t=n.touches?n.touches[0]:n;Math.max(Math.abs(t.clientX-this._lastX),Math.abs(t.clientY-this._lastY))>=Math.floor(this.options.touchStartThreshold/(this.nativeDraggable&&window.devicePixelRatio||1))&&this._disableDelayedDrag()},_disableDelayedDrag:function(){oe&&lu(oe),clearTimeout(this._dragStartTimer),this._disableDelayedDragEvents()},_disableDelayedDragEvents:function(){var n=this.el.ownerDocument;Ue(n,"mouseup",this._disableDelayedDrag),Ue(n,"touchend",this._disableDelayedDrag),Ue(n,"touchcancel",this._disableDelayedDrag),Ue(n,"mousemove",this._delayedDragTouchMoveHandler),Ue(n,"touchmove",this._delayedDragTouchMoveHandler),Ue(n,"pointermove",this._delayedDragTouchMoveHandler)},_triggerDragStart:function(n,t){t=t||n.pointerType=="touch"&&n,!this.nativeDraggable||t?this.options.supportPointer?Ye(document,"pointermove",this._onTouchMove):t?Ye(document,"touchmove",this._onTouchMove):Ye(document,"mousemove",this._onTouchMove):(Ye(oe,"dragend",this),Ye(Et,"dragstart",this._onDragStart));try{document.selection?va(function(){document.selection.empty()}):window.getSelection().removeAllRanges()}catch{}},_dragStarted:function(n,t){if(Ur=!1,Et&&oe){pn("dragStarted",this,{evt:t}),this.nativeDraggable&&Ye(document,"dragover",MO);var i=this.options;!n&&Ot(oe,i.dragClass,!1),Ot(oe,i.ghostClass,!0),Oe.active=this,n&&this._appendGhost(),un({sortable:this,name:"start",originalEvent:t})}else this._nulling()},_emulateDragOver:function(){if(Zn){this._lastX=Zn.clientX,this._lastY=Zn.clientY,Sy();for(var n=document.elementFromPoint(Zn.clientX,Zn.clientY),t=n;n&&n.shadowRoot&&(n=n.shadowRoot.elementFromPoint(Zn.clientX,Zn.clientY),n!==t);)t=n;if(oe.parentNode[rn]._isOutsideThisEl(n),t)do{if(t[rn]){var i=void 0;if(i=t[rn]._onDragOver({clientX:Zn.clientX,clientY:Zn.clientY,target:n,rootEl:t}),i&&!this.options.dragoverBubble)break}n=t}while(t=t.parentNode);wy()}},_onTouchMove:function(n){if(ur){var t=this.options,i=t.fallbackTolerance,r=t.fallbackOffset,o=n.touches?n.touches[0]:n,s=Fe&&Tr(Fe,!0),a=Fe&&s&&s.a,l=Fe&&s&&s.d,u=qo&&qt&&Yh(qt),c=(o.clientX-ur.clientX+r.x)/(a||1)+(u?u[0]-au[0]:0)/(a||1),f=(o.clientY-ur.clientY+r.y)/(l||1)+(u?u[1]-au[1]:0)/(l||1);if(!Oe.active&&!Ur){if(i&&Math.max(Math.abs(o.clientX-this._lastX),Math.abs(o.clientY-this._lastY))=0&&(un({rootEl:Mt,name:"add",toEl:Mt,fromEl:Et,originalEvent:n}),un({sortable:this,name:"remove",toEl:Mt,originalEvent:n}),un({rootEl:Mt,name:"sort",toEl:Mt,fromEl:Et,originalEvent:n}),un({sortable:this,name:"sort",toEl:Mt,originalEvent:n})),Gt&&Gt.save()):In!==Wr&&In>=0&&(un({sortable:this,name:"update",toEl:Mt,originalEvent:n}),un({sortable:this,name:"sort",toEl:Mt,originalEvent:n})),Oe.active&&((In==null||In===-1)&&(In=Wr,Bi=Vs),un({sortable:this,name:"end",toEl:Mt,originalEvent:n}),this.save()))),this._nulling()},_nulling:function(){pn("nulling",this),Et=oe=Mt=Fe=hr=It=ma=Ui=ur=Zn=Ms=In=Bi=Wr=Vs=Vr=Bs=Gt=Jo=Oe.dragged=Oe.ghost=Oe.clone=Oe.active=null,qa.forEach(function(n){n.checked=!0}),qa.length=su=ou=0},handleEvent:function(n){switch(n.type){case"drop":case"dragend":this._onDrop(n);break;case"dragenter":case"dragover":oe&&(this._onDragOver(n),IO(n));break;case"selectstart":n.preventDefault();break}},toArray:function(){for(var n=[],t,i=this.el.children,r=0,o=i.length,s=this.options;ri.right+r||e.clientX<=i.right&&e.clientY>i.bottom&&e.clientX>=i.left:e.clientX>i.right&&e.clientY>i.top||e.clientX<=i.right&&e.clientY>i.bottom+r}function _O(e,n,t,i,r,o,s,a){var l=i?e.clientY:e.clientX,u=i?t.height:t.width,c=i?t.top:t.left,f=i?t.bottom:t.right,d=!1;if(!s){if(a&&gac+u*o/2:lf-ga)return-Bs}else if(l>c+u*(1-r)/2&&lf-u*o/2)?l>c+u/2?1:-1:0}function FO(e){return Pt(oe)1&&(_e.forEach(function(a){o.addAnimationState({target:a,rect:mn?wt(a):s}),iu(a),a.fromRect=s,i.removeAnimationState(a)}),mn=!1,HO(!this.options.removeCloneOnHide,r))},dragOverCompleted:function(t){var i=t.sortable,r=t.isOwner,o=t.insertion,s=t.activeSortable,a=t.parentEl,l=t.putSortable,u=this.options;if(o){if(r&&s._hideClone(),Ss=!1,u.animation&&_e.length>1&&(mn||!r&&!s.options.sort&&!l)){var c=wt(gt,!1,!0,!0);_e.forEach(function(d){d!==gt&&(zh(d,c),a.appendChild(d))}),mn=!0}if(!r)if(mn||na(),_e.length>1){var f=ta;s._showClone(i),s.options.animation&&!ta&&f&&Mn.forEach(function(d){s.addAnimationState({target:d,rect:ws}),d.fromRect=ws,d.thisAnimationDuration=null})}else s._showClone(i)}},dragOverAnimationCapture:function(t){var i=t.dragRect,r=t.isOwner,o=t.activeSortable;if(_e.forEach(function(a){a.thisAnimationDuration=null}),o.options.animation&&!r&&o.multiDrag.isMultiDrag){ws=zn({},i);var s=Tr(gt,!0);ws.top-=s.f,ws.left-=s.e}},dragOverAnimationComplete:function(){mn&&(mn=!1,na())},drop:function(t){var i=t.originalEvent,r=t.rootEl,o=t.parentEl,s=t.sortable,a=t.dispatchSortableEvent,l=t.oldIndex,u=t.putSortable,c=u||this.sortable;if(i){var f=this.options,d=o.children;if(!Br)if(f.multiDragKey&&!this.multiDragKeyDown&&this._deselectMultiDrag(),Ot(gt,f.selectedClass,!~_e.indexOf(gt)),~_e.indexOf(gt))_e.splice(_e.indexOf(gt),1),Es=null,As({sortable:s,rootEl:r,name:"deselect",targetEl:gt,originalEvt:i});else{if(_e.push(gt),As({sortable:s,rootEl:r,name:"select",targetEl:gt,originalEvt:i}),i.shiftKey&&Es&&s.el.contains(Es)){var h=Pt(Es),p=Pt(gt);if(~h&&~p&&h!==p){var m,y;for(p>h?(y=h,m=p):(y=p,m=h+1);y1){var D=wt(gt),S=Pt(gt,":not(."+this.options.selectedClass+")");if(!Ss&&f.animation&&(gt.thisAnimationDuration=null),c.captureAnimationState(),!Ss&&(f.animation&&(gt.fromRect=D,_e.forEach(function(w){if(w.thisAnimationDuration=null,w!==gt){var x=mn?wt(w):D;w.fromRect=x,c.addAnimationState({target:w,rect:x})}})),na(),_e.forEach(function(w){d[S]?o.insertBefore(w,d[S]):o.appendChild(w),S++}),l===Pt(gt))){var b=!1;_e.forEach(function(w){if(w.sortableIndex!==Pt(w)){b=!0;return}}),b&&a("update")}_e.forEach(function(w){iu(w)}),c.animateAll()}Xn=c}(r===o||u&&u.lastPutMode!=="clone")&&Mn.forEach(function(w){w.parentNode&&w.parentNode.removeChild(w)})}},nullingGlobal:function(){this.isMultiDrag=Br=!1,Mn.length=0},destroyGlobal:function(){this._deselectMultiDrag(),Ue(document,"pointerup",this._deselectMultiDrag),Ue(document,"mouseup",this._deselectMultiDrag),Ue(document,"touchend",this._deselectMultiDrag),Ue(document,"keydown",this._checkKeyDown),Ue(document,"keyup",this._checkKeyUp)},_deselectMultiDrag:function(t){if(!(typeof Br<"u"&&Br)&&Xn===this.sortable&&!(t&&Jn(t.target,this.options.draggable,this.sortable.el,!1))&&!(t&&t.button!==0))for(;_e.length;){var i=_e[0];Ot(i,this.options.selectedClass,!1),_e.shift(),As({sortable:this.sortable,rootEl:this.sortable.el,name:"deselect",targetEl:i,originalEvt:t})}},_checkKeyDown:function(t){t.key===this.options.multiDragKey&&(this.multiDragKeyDown=!0)},_checkKeyUp:function(t){t.key===this.options.multiDragKey&&(this.multiDragKeyDown=!1)}},zn(e,{pluginName:"multiDrag",utils:{select:function(t){var i=t.parentNode[rn];!i||!i.options.multiDrag||~_e.indexOf(t)||(Xn&&Xn!==i&&(Xn.multiDrag._deselectMultiDrag(),Xn=i),Ot(t,i.options.selectedClass,!0),_e.push(t))},deselect:function(t){var i=t.parentNode[rn],r=_e.indexOf(t);!i||!i.options.multiDrag||!~r||(Ot(t,i.options.selectedClass,!1),_e.splice(r,1))}},eventProperties:function(){var t=this,i=[],r=[];return _e.forEach(function(o){i.push({multiDragElement:o,index:o.sortableIndex});var s;mn&&o!==gt?s=-1:mn?s=Pt(o,":not(."+t.options.selectedClass+")"):s=Pt(o),r.push({multiDragElement:o,index:s})}),{items:fO(_e),clones:[].concat(Mn),oldIndicies:i,newIndicies:r}},optionListeners:{multiDragKey:function(t){return t=t.toLowerCase(),t==="ctrl"?t="Control":t.length>1&&(t=t.charAt(0).toUpperCase()+t.substr(1)),t}}})}function HO(e,n){_e.forEach(function(t,i){var r=n.children[t.sortableIndex+(e?Number(i):0)];r?n.insertBefore(t,r):n.appendChild(t)})}function Qh(e,n){Mn.forEach(function(t,i){var r=n.children[t.sortableIndex+(e?Number(i):0)];r?n.insertBefore(t,r):n.appendChild(t)})}function na(){_e.forEach(function(e){e!==gt&&e.parentNode&&e.parentNode.removeChild(e)})}Oe.mount(new $O);Oe.mount(Rf,Nf);const UO=Object.freeze(Object.defineProperty({__proto__:null,MultiDrag:BO,Sortable:Oe,Swap:jO,default:Oe},Symbol.toStringTag,{value:"Module"})),WO=fy(UO);(function(e,n){(function(i,r){e.exports=r(aO,WO)})(typeof self<"u"?self:sO,function(t,i){return function(r){var o={};function s(a){if(o[a])return o[a].exports;var l=o[a]={i:a,l:!1,exports:{}};return r[a].call(l.exports,l,l.exports,s),l.l=!0,l.exports}return s.m=r,s.c=o,s.d=function(a,l,u){s.o(a,l)||Object.defineProperty(a,l,{enumerable:!0,get:u})},s.r=function(a){typeof Symbol<"u"&&Symbol.toStringTag&&Object.defineProperty(a,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(a,"__esModule",{value:!0})},s.t=function(a,l){if(l&1&&(a=s(a)),l&8||l&4&&typeof a=="object"&&a&&a.__esModule)return a;var u=Object.create(null);if(s.r(u),Object.defineProperty(u,"default",{enumerable:!0,value:a}),l&2&&typeof a!="string")for(var c in a)s.d(u,c,(function(f){return a[f]}).bind(null,c));return u},s.n=function(a){var l=a&&a.__esModule?function(){return a.default}:function(){return a};return s.d(l,"a",l),l},s.o=function(a,l){return Object.prototype.hasOwnProperty.call(a,l)},s.p="",s(s.s="fb15")}({"00ee":function(r,o,s){var a=s("b622"),l=a("toStringTag"),u={};u[l]="z",r.exports=String(u)==="[object z]"},"0366":function(r,o,s){var a=s("1c0b");r.exports=function(l,u,c){if(a(l),u===void 0)return l;switch(c){case 0:return function(){return l.call(u)};case 1:return function(f){return l.call(u,f)};case 2:return function(f,d){return l.call(u,f,d)};case 3:return function(f,d,h){return l.call(u,f,d,h)}}return function(){return l.apply(u,arguments)}}},"057f":function(r,o,s){var a=s("fc6a"),l=s("241c").f,u={}.toString,c=typeof window=="object"&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],f=function(d){try{return l(d)}catch{return c.slice()}};r.exports.f=function(h){return c&&u.call(h)=="[object Window]"?f(h):l(a(h))}},"06cf":function(r,o,s){var a=s("83ab"),l=s("d1e7"),u=s("5c6c"),c=s("fc6a"),f=s("c04e"),d=s("5135"),h=s("0cfb"),p=Object.getOwnPropertyDescriptor;o.f=a?p:function(y,D){if(y=c(y),D=f(D,!0),h)try{return p(y,D)}catch{}if(d(y,D))return u(!l.f.call(y,D),y[D])}},"0cfb":function(r,o,s){var a=s("83ab"),l=s("d039"),u=s("cc12");r.exports=!a&&!l(function(){return Object.defineProperty(u("div"),"a",{get:function(){return 7}}).a!=7})},"13d5":function(r,o,s){var a=s("23e7"),l=s("d58f").left,u=s("a640"),c=s("ae40"),f=u("reduce"),d=c("reduce",{1:0});a({target:"Array",proto:!0,forced:!f||!d},{reduce:function(p){return l(this,p,arguments.length,arguments.length>1?arguments[1]:void 0)}})},"14c3":function(r,o,s){var a=s("c6b6"),l=s("9263");r.exports=function(u,c){var f=u.exec;if(typeof f=="function"){var d=f.call(u,c);if(typeof d!="object")throw TypeError("RegExp exec method returned something other than an Object or null");return d}if(a(u)!=="RegExp")throw TypeError("RegExp#exec called on incompatible receiver");return l.call(u,c)}},"159b":function(r,o,s){var a=s("da84"),l=s("fdbc"),u=s("17c2"),c=s("9112");for(var f in l){var d=a[f],h=d&&d.prototype;if(h&&h.forEach!==u)try{c(h,"forEach",u)}catch{h.forEach=u}}},"17c2":function(r,o,s){var a=s("b727").forEach,l=s("a640"),u=s("ae40"),c=l("forEach"),f=u("forEach");r.exports=!c||!f?function(h){return a(this,h,arguments.length>1?arguments[1]:void 0)}:[].forEach},"1be4":function(r,o,s){var a=s("d066");r.exports=a("document","documentElement")},"1c0b":function(r,o){r.exports=function(s){if(typeof s!="function")throw TypeError(String(s)+" is not a function");return s}},"1c7e":function(r,o,s){var a=s("b622"),l=a("iterator"),u=!1;try{var c=0,f={next:function(){return{done:!!c++}},return:function(){u=!0}};f[l]=function(){return this},Array.from(f,function(){throw 2})}catch{}r.exports=function(d,h){if(!h&&!u)return!1;var p=!1;try{var m={};m[l]=function(){return{next:function(){return{done:p=!0}}}},d(m)}catch{}return p}},"1d80":function(r,o){r.exports=function(s){if(s==null)throw TypeError("Can't call method on "+s);return s}},"1dde":function(r,o,s){var a=s("d039"),l=s("b622"),u=s("2d00"),c=l("species");r.exports=function(f){return u>=51||!a(function(){var d=[],h=d.constructor={};return h[c]=function(){return{foo:1}},d[f](Boolean).foo!==1})}},"23cb":function(r,o,s){var a=s("a691"),l=Math.max,u=Math.min;r.exports=function(c,f){var d=a(c);return d<0?l(d+f,0):u(d,f)}},"23e7":function(r,o,s){var a=s("da84"),l=s("06cf").f,u=s("9112"),c=s("6eeb"),f=s("ce4e"),d=s("e893"),h=s("94ca");r.exports=function(p,m){var y=p.target,D=p.global,S=p.stat,b,w,x,O,F,L;if(D?w=a:S?w=a[y]||f(y,{}):w=(a[y]||{}).prototype,w)for(x in m){if(F=m[x],p.noTargetGet?(L=l(w,x),O=L&&L.value):O=w[x],b=h(D?x:y+(S?".":"#")+x,p.forced),!b&&O!==void 0){if(typeof F==typeof O)continue;d(F,O)}(p.sham||O&&O.sham)&&u(F,"sham",!0),c(w,x,F,p)}}},"241c":function(r,o,s){var a=s("ca84"),l=s("7839"),u=l.concat("length","prototype");o.f=Object.getOwnPropertyNames||function(f){return a(f,u)}},"25f0":function(r,o,s){var a=s("6eeb"),l=s("825a"),u=s("d039"),c=s("ad6d"),f="toString",d=RegExp.prototype,h=d[f],p=u(function(){return h.call({source:"a",flags:"b"})!="/a/b"}),m=h.name!=f;(p||m)&&a(RegExp.prototype,f,function(){var D=l(this),S=String(D.source),b=D.flags,w=String(b===void 0&&D instanceof RegExp&&!("flags"in d)?c.call(D):b);return"/"+S+"/"+w},{unsafe:!0})},"2ca0":function(r,o,s){var a=s("23e7"),l=s("06cf").f,u=s("50c4"),c=s("5a34"),f=s("1d80"),d=s("ab13"),h=s("c430"),p="".startsWith,m=Math.min,y=d("startsWith"),D=!h&&!y&&!!function(){var S=l(String.prototype,"startsWith");return S&&!S.writable}();a({target:"String",proto:!0,forced:!D&&!y},{startsWith:function(b){var w=String(f(this));c(b);var x=u(m(arguments.length>1?arguments[1]:void 0,w.length)),O=String(b);return p?p.call(w,O,x):w.slice(x,x+O.length)===O}})},"2d00":function(r,o,s){var a=s("da84"),l=s("342f"),u=a.process,c=u&&u.versions,f=c&&c.v8,d,h;f?(d=f.split("."),h=d[0]+d[1]):l&&(d=l.match(/Edge\/(\d+)/),(!d||d[1]>=74)&&(d=l.match(/Chrome\/(\d+)/),d&&(h=d[1]))),r.exports=h&&+h},"342f":function(r,o,s){var a=s("d066");r.exports=a("navigator","userAgent")||""},"35a1":function(r,o,s){var a=s("f5df"),l=s("3f8c"),u=s("b622"),c=u("iterator");r.exports=function(f){if(f!=null)return f[c]||f["@@iterator"]||l[a(f)]}},"37e8":function(r,o,s){var a=s("83ab"),l=s("9bf2"),u=s("825a"),c=s("df75");r.exports=a?Object.defineProperties:function(d,h){u(d);for(var p=c(h),m=p.length,y=0,D;m>y;)l.f(d,D=p[y++],h[D]);return d}},"3bbe":function(r,o,s){var a=s("861d");r.exports=function(l){if(!a(l)&&l!==null)throw TypeError("Can't set "+String(l)+" as a prototype");return l}},"3ca3":function(r,o,s){var a=s("6547").charAt,l=s("69f3"),u=s("7dd0"),c="String Iterator",f=l.set,d=l.getterFor(c);u(String,"String",function(h){f(this,{type:c,string:String(h),index:0})},function(){var p=d(this),m=p.string,y=p.index,D;return y>=m.length?{value:void 0,done:!0}:(D=a(m,y),p.index+=D.length,{value:D,done:!1})})},"3f8c":function(r,o){r.exports={}},4160:function(r,o,s){var a=s("23e7"),l=s("17c2");a({target:"Array",proto:!0,forced:[].forEach!=l},{forEach:l})},"428f":function(r,o,s){var a=s("da84");r.exports=a},"44ad":function(r,o,s){var a=s("d039"),l=s("c6b6"),u="".split;r.exports=a(function(){return!Object("z").propertyIsEnumerable(0)})?function(c){return l(c)=="String"?u.call(c,""):Object(c)}:Object},"44d2":function(r,o,s){var a=s("b622"),l=s("7c73"),u=s("9bf2"),c=a("unscopables"),f=Array.prototype;f[c]==null&&u.f(f,c,{configurable:!0,value:l(null)}),r.exports=function(d){f[c][d]=!0}},"44e7":function(r,o,s){var a=s("861d"),l=s("c6b6"),u=s("b622"),c=u("match");r.exports=function(f){var d;return a(f)&&((d=f[c])!==void 0?!!d:l(f)=="RegExp")}},4930:function(r,o,s){var a=s("d039");r.exports=!!Object.getOwnPropertySymbols&&!a(function(){return!String(Symbol())})},"4d64":function(r,o,s){var a=s("fc6a"),l=s("50c4"),u=s("23cb"),c=function(f){return function(d,h,p){var m=a(d),y=l(m.length),D=u(p,y),S;if(f&&h!=h){for(;y>D;)if(S=m[D++],S!=S)return!0}else for(;y>D;D++)if((f||D in m)&&m[D]===h)return f||D||0;return!f&&-1}};r.exports={includes:c(!0),indexOf:c(!1)}},"4de4":function(r,o,s){var a=s("23e7"),l=s("b727").filter,u=s("1dde"),c=s("ae40"),f=u("filter"),d=c("filter");a({target:"Array",proto:!0,forced:!f||!d},{filter:function(p){return l(this,p,arguments.length>1?arguments[1]:void 0)}})},"4df4":function(r,o,s){var a=s("0366"),l=s("7b0b"),u=s("9bdd"),c=s("e95a"),f=s("50c4"),d=s("8418"),h=s("35a1");r.exports=function(m){var y=l(m),D=typeof this=="function"?this:Array,S=arguments.length,b=S>1?arguments[1]:void 0,w=b!==void 0,x=h(y),O=0,F,L,C,I,j,R;if(w&&(b=a(b,S>2?arguments[2]:void 0,2)),x!=null&&!(D==Array&&c(x)))for(I=x.call(y),j=I.next,L=new D;!(C=j.call(I)).done;O++)R=w?u(I,b,[C.value,O],!0):C.value,d(L,O,R);else for(F=f(y.length),L=new D(F);F>O;O++)R=w?b(y[O],O):y[O],d(L,O,R);return L.length=O,L}},"4fad":function(r,o,s){var a=s("23e7"),l=s("6f53").entries;a({target:"Object",stat:!0},{entries:function(c){return l(c)}})},"50c4":function(r,o,s){var a=s("a691"),l=Math.min;r.exports=function(u){return u>0?l(a(u),9007199254740991):0}},5135:function(r,o){var s={}.hasOwnProperty;r.exports=function(a,l){return s.call(a,l)}},5319:function(r,o,s){var a=s("d784"),l=s("825a"),u=s("7b0b"),c=s("50c4"),f=s("a691"),d=s("1d80"),h=s("8aa5"),p=s("14c3"),m=Math.max,y=Math.min,D=Math.floor,S=/\$([$&'`]|\d\d?|<[^>]*>)/g,b=/\$([$&'`]|\d\d?)/g,w=function(x){return x===void 0?x:String(x)};a("replace",2,function(x,O,F,L){var C=L.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE,I=L.REPLACE_KEEPS_$0,j=C?"$":"$0";return[function(V,G){var $=d(this),W=V==null?void 0:V[x];return W!==void 0?W.call(V,$,G):O.call(String($),V,G)},function(_,V){if(!C&&I||typeof V=="string"&&V.indexOf(j)===-1){var G=F(O,_,this,V);if(G.done)return G.value}var $=l(_),W=String(this),J=typeof V=="function";J||(V=String(V));var Ce=$.global;if(Ce){var Qe=$.unicode;$.lastIndex=0}for(var Pe=[];;){var Be=p($,W);if(Be===null||(Pe.push(Be),!Ce))break;var at=String(Be[0]);at===""&&($.lastIndex=h(W,c($.lastIndex),Qe))}for(var Ke="",nt=0,q=0;q=nt&&(Ke+=W.slice(nt,Ne)+M,nt=Ne+ce.length)}return Ke+W.slice(nt)}];function R(_,V,G,$,W,J){var Ce=G+_.length,Qe=$.length,Pe=b;return W!==void 0&&(W=u(W),Pe=S),O.call(J,Pe,function(Be,at){var Ke;switch(at.charAt(0)){case"$":return"$";case"&":return _;case"`":return V.slice(0,G);case"'":return V.slice(Ce);case"<":Ke=W[at.slice(1,-1)];break;default:var nt=+at;if(nt===0)return Be;if(nt>Qe){var q=D(nt/10);return q===0?Be:q<=Qe?$[q-1]===void 0?at.charAt(1):$[q-1]+at.charAt(1):Be}Ke=$[nt-1]}return Ke===void 0?"":Ke})}})},5692:function(r,o,s){var a=s("c430"),l=s("c6cd");(r.exports=function(u,c){return l[u]||(l[u]=c!==void 0?c:{})})("versions",[]).push({version:"3.6.5",mode:a?"pure":"global",copyright:"© 2020 Denis Pushkarev (zloirock.ru)"})},"56ef":function(r,o,s){var a=s("d066"),l=s("241c"),u=s("7418"),c=s("825a");r.exports=a("Reflect","ownKeys")||function(d){var h=l.f(c(d)),p=u.f;return p?h.concat(p(d)):h}},"5a34":function(r,o,s){var a=s("44e7");r.exports=function(l){if(a(l))throw TypeError("The method doesn't accept regular expressions");return l}},"5c6c":function(r,o){r.exports=function(s,a){return{enumerable:!(s&1),configurable:!(s&2),writable:!(s&4),value:a}}},"5db7":function(r,o,s){var a=s("23e7"),l=s("a2bf"),u=s("7b0b"),c=s("50c4"),f=s("1c0b"),d=s("65f0");a({target:"Array",proto:!0},{flatMap:function(p){var m=u(this),y=c(m.length),D;return f(p),D=d(m,0),D.length=l(D,m,m,y,0,1,p,arguments.length>1?arguments[1]:void 0),D}})},6547:function(r,o,s){var a=s("a691"),l=s("1d80"),u=function(c){return function(f,d){var h=String(l(f)),p=a(d),m=h.length,y,D;return p<0||p>=m?c?"":void 0:(y=h.charCodeAt(p),y<55296||y>56319||p+1===m||(D=h.charCodeAt(p+1))<56320||D>57343?c?h.charAt(p):y:c?h.slice(p,p+2):(y-55296<<10)+(D-56320)+65536)}};r.exports={codeAt:u(!1),charAt:u(!0)}},"65f0":function(r,o,s){var a=s("861d"),l=s("e8b5"),u=s("b622"),c=u("species");r.exports=function(f,d){var h;return l(f)&&(h=f.constructor,typeof h=="function"&&(h===Array||l(h.prototype))?h=void 0:a(h)&&(h=h[c],h===null&&(h=void 0))),new(h===void 0?Array:h)(d===0?0:d)}},"69f3":function(r,o,s){var a=s("7f9a"),l=s("da84"),u=s("861d"),c=s("9112"),f=s("5135"),d=s("f772"),h=s("d012"),p=l.WeakMap,m,y,D,S=function(C){return D(C)?y(C):m(C,{})},b=function(C){return function(I){var j;if(!u(I)||(j=y(I)).type!==C)throw TypeError("Incompatible receiver, "+C+" required");return j}};if(a){var w=new p,x=w.get,O=w.has,F=w.set;m=function(C,I){return F.call(w,C,I),I},y=function(C){return x.call(w,C)||{}},D=function(C){return O.call(w,C)}}else{var L=d("state");h[L]=!0,m=function(C,I){return c(C,L,I),I},y=function(C){return f(C,L)?C[L]:{}},D=function(C){return f(C,L)}}r.exports={set:m,get:y,has:D,enforce:S,getterFor:b}},"6eeb":function(r,o,s){var a=s("da84"),l=s("9112"),u=s("5135"),c=s("ce4e"),f=s("8925"),d=s("69f3"),h=d.get,p=d.enforce,m=String(String).split("String");(r.exports=function(y,D,S,b){var w=b?!!b.unsafe:!1,x=b?!!b.enumerable:!1,O=b?!!b.noTargetGet:!1;if(typeof S=="function"&&(typeof D=="string"&&!u(S,"name")&&l(S,"name",D),p(S).source=m.join(typeof D=="string"?D:"")),y===a){x?y[D]=S:c(D,S);return}else w?!O&&y[D]&&(x=!0):delete y[D];x?y[D]=S:l(y,D,S)})(Function.prototype,"toString",function(){return typeof this=="function"&&h(this).source||f(this)})},"6f53":function(r,o,s){var a=s("83ab"),l=s("df75"),u=s("fc6a"),c=s("d1e7").f,f=function(d){return function(h){for(var p=u(h),m=l(p),y=m.length,D=0,S=[],b;y>D;)b=m[D++],(!a||c.call(p,b))&&S.push(d?[b,p[b]]:p[b]);return S}};r.exports={entries:f(!0),values:f(!1)}},"73d9":function(r,o,s){var a=s("44d2");a("flatMap")},7418:function(r,o){o.f=Object.getOwnPropertySymbols},"746f":function(r,o,s){var a=s("428f"),l=s("5135"),u=s("e538"),c=s("9bf2").f;r.exports=function(f){var d=a.Symbol||(a.Symbol={});l(d,f)||c(d,f,{value:u.f(f)})}},7839:function(r,o){r.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},"7b0b":function(r,o,s){var a=s("1d80");r.exports=function(l){return Object(a(l))}},"7c73":function(r,o,s){var a=s("825a"),l=s("37e8"),u=s("7839"),c=s("d012"),f=s("1be4"),d=s("cc12"),h=s("f772"),p=">",m="<",y="prototype",D="script",S=h("IE_PROTO"),b=function(){},w=function(C){return m+D+p+C+m+"/"+D+p},x=function(C){C.write(w("")),C.close();var I=C.parentWindow.Object;return C=null,I},O=function(){var C=d("iframe"),I="java"+D+":",j;return C.style.display="none",f.appendChild(C),C.src=String(I),j=C.contentWindow.document,j.open(),j.write(w("document.F=Object")),j.close(),j.F},F,L=function(){try{F=document.domain&&new ActiveXObject("htmlfile")}catch{}L=F?x(F):O();for(var C=u.length;C--;)delete L[y][u[C]];return L()};c[S]=!0,r.exports=Object.create||function(I,j){var R;return I!==null?(b[y]=a(I),R=new b,b[y]=null,R[S]=I):R=L(),j===void 0?R:l(R,j)}},"7dd0":function(r,o,s){var a=s("23e7"),l=s("9ed3"),u=s("e163"),c=s("d2bb"),f=s("d44e"),d=s("9112"),h=s("6eeb"),p=s("b622"),m=s("c430"),y=s("3f8c"),D=s("ae93"),S=D.IteratorPrototype,b=D.BUGGY_SAFARI_ITERATORS,w=p("iterator"),x="keys",O="values",F="entries",L=function(){return this};r.exports=function(C,I,j,R,_,V,G){l(j,I,R);var $=function(q){if(q===_&&Pe)return Pe;if(!b&&q in Ce)return Ce[q];switch(q){case x:return function(){return new j(this,q)};case O:return function(){return new j(this,q)};case F:return function(){return new j(this,q)}}return function(){return new j(this)}},W=I+" Iterator",J=!1,Ce=C.prototype,Qe=Ce[w]||Ce["@@iterator"]||_&&Ce[_],Pe=!b&&Qe||$(_),Be=I=="Array"&&Ce.entries||Qe,at,Ke,nt;if(Be&&(at=u(Be.call(new C)),S!==Object.prototype&&at.next&&(!m&&u(at)!==S&&(c?c(at,S):typeof at[w]!="function"&&d(at,w,L)),f(at,W,!0,!0),m&&(y[W]=L))),_==O&&Qe&&Qe.name!==O&&(J=!0,Pe=function(){return Qe.call(this)}),(!m||G)&&Ce[w]!==Pe&&d(Ce,w,Pe),y[I]=Pe,_)if(Ke={values:$(O),keys:V?Pe:$(x),entries:$(F)},G)for(nt in Ke)(b||J||!(nt in Ce))&&h(Ce,nt,Ke[nt]);else a({target:I,proto:!0,forced:b||J},Ke);return Ke}},"7f9a":function(r,o,s){var a=s("da84"),l=s("8925"),u=a.WeakMap;r.exports=typeof u=="function"&&/native code/.test(l(u))},"825a":function(r,o,s){var a=s("861d");r.exports=function(l){if(!a(l))throw TypeError(String(l)+" is not an object");return l}},"83ab":function(r,o,s){var a=s("d039");r.exports=!a(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!=7})},8418:function(r,o,s){var a=s("c04e"),l=s("9bf2"),u=s("5c6c");r.exports=function(c,f,d){var h=a(f);h in c?l.f(c,h,u(0,d)):c[h]=d}},"861d":function(r,o){r.exports=function(s){return typeof s=="object"?s!==null:typeof s=="function"}},8875:function(r,o,s){var a,l,u;(function(c,f){l=[],a=f,u=typeof a=="function"?a.apply(o,l):a,u!==void 0&&(r.exports=u)})(typeof self<"u"?self:this,function(){function c(){var f=Object.getOwnPropertyDescriptor(document,"currentScript");if(!f&&"currentScript"in document&&document.currentScript||f&&f.get!==c&&document.currentScript)return document.currentScript;try{throw new Error}catch(F){var d=/.*at [^(]*\((.*):(.+):(.+)\)$/ig,h=/@([^@]*):(\d+):(\d+)\s*$/ig,p=d.exec(F.stack)||h.exec(F.stack),m=p&&p[1]||!1,y=p&&p[2]||!1,D=document.location.href.replace(document.location.hash,""),S,b,w,x=document.getElementsByTagName("script");m===D&&(S=document.documentElement.outerHTML,b=new RegExp("(?:[^\\n]+?\\n){0,"+(y-2)+"}[^<]*