mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-05-04 05:05:58 +00:00
Merge remote-tracking branch 'origin/master' into ads
# Conflicts: # package.json # public/9346.js # public/chunks/admin.js # public/chunks/app-environment.js # public/chunks/app-server.js # public/chunks/billing.js # public/chunks/forgotten-password.js # public/chunks/homepage.js # public/chunks/plan-create/metered.js # public/chunks/plan-settings.js # public/chunks/platform.js # public/chunks/profile.js # public/chunks/recent-uploads.js # public/chunks/request.js # public/chunks/settings.js # public/chunks/shared.js # public/chunks/shared/authenticate.js # public/chunks/shared/single-file.js # public/chunks/sign-in.js # public/css/tailwind.css # public/js/main.js # public/js/main.js.LICENSE.txt # public/mix-manifest.json
This commit is contained in:
+5
-2
@@ -1,6 +1,6 @@
|
||||
APP_NAME=Laravel
|
||||
APP_ENV=local
|
||||
APP_KEY=base64:qBL7kIM+I1U3jdkTiAelfVgVOLT3hfu0iOr8bUz2k1I=
|
||||
APP_KEY=base64:loZzMlfoaLRn2ASLI94No42c7aUvmhXkoU/I2ljmxQI=
|
||||
APP_DEBUG=true
|
||||
APP_URL=http://localhost
|
||||
APP_DEMO=false
|
||||
@@ -18,7 +18,7 @@ FILESYSTEM_DISK=local
|
||||
BROADCAST_DRIVER=null
|
||||
CACHE_DRIVER=file
|
||||
SESSION_DRIVER=file
|
||||
SESSION_LIFETIME=120
|
||||
SESSION_LIFETIME="15120"
|
||||
SCOUT_DRIVER=tntsearch
|
||||
|
||||
REDIS_HOST=127.0.0.1
|
||||
@@ -40,3 +40,6 @@ S3_DEFAULT_REGION=us-east-1
|
||||
S3_BUCKET=
|
||||
|
||||
SANCTUM_STATEFUL_DOMAINS=localhost,127.0.0.1,127.0.0.1:8000,::1
|
||||
|
||||
|
||||
DB_MYSQLDUMP_PATH="/usr/bin"
|
||||
@@ -17,7 +17,7 @@
|
||||
- [Upgrading From Testing Environment to the Production Mode](#upgrading-from-testing-environment-to-the-production-mode)
|
||||
- [Broadcasting](#broadcasting)
|
||||
- [About Broadcasting](#about-broadcasting)
|
||||
- [Install Broadcast Server](#install-broadcast-server)
|
||||
- [Install VueFileManager Broadcast Server](#install-vuefilemanager-broadcast-server)
|
||||
- [Developers](#developers)
|
||||
- [Running Environment On Your Localhost](#running-environment-on-your-localhost)
|
||||
- [Express Installation](#express-installation)
|
||||
@@ -36,12 +36,13 @@
|
||||
|
||||
**For running app make sure you have:**
|
||||
|
||||
- PHP >= 8.0.2 version (8.1+ recommended)
|
||||
- PHP >= 8.1
|
||||
- MySQL 5.6+
|
||||
- Nginx or Apache (Nginx recommended)
|
||||
|
||||
**These PHP Extensions are require:**
|
||||
|
||||
- finfo
|
||||
- Intl
|
||||
- GD
|
||||
- BCMath
|
||||
@@ -91,24 +92,13 @@ That was the hardest part of installation process. Please follow instructions in
|
||||
|
||||
#### If you are running VueFileManager on shared web hosting (CPanel, Plesk etc.)
|
||||
1. Create new cron job
|
||||
2. Set execution cycle every minute
|
||||
3. Search the absolute directory path where you uploaded VueFileManager files (like `/www/project_files`). The path must start with `/`.
|
||||
4. Copy the command below, paste it to the command text area and replace in command string `replace_by_your_path` exactly with your path you found in step 3.
|
||||
5. It should [look like this](https://i.ibb.co/SmR585j/Screenshot-2022-03-31-at-09-30-36.png) with your pasted project path.
|
||||
```
|
||||
php replace_by_your_path/artisan schedule:run >> /dev/null 2>&1
|
||||
```
|
||||
6. If you have multiple php versions installed on your server, you should specify php path to the latest php version (8+). So, you should edit `php` in command above and replace it by path. For Example:
|
||||
```
|
||||
/usr/bin/php8.1/php replace_by_your_path/artisan schedule:run >> /dev/null 2>&1
|
||||
```
|
||||
2. Set execution cycle for every minute
|
||||
3. Login to the VueFileManager as admin and go to the admin dashboard, you will see command which you have to copy and paste into the command input.
|
||||
|
||||
#### If you are running VueFileManager on linux server
|
||||
1. Search the absolute directory path where you uploaded VueFileManager files (like `/www/project_files`). The path must start with `/`.
|
||||
2. Copy the command below, paste it to your cron list and replace in command string `/www/project_files` exactly with your path you found in step 1.
|
||||
```
|
||||
* * * * * cd /www/project_files && php artisan schedule:run >> /dev/null 2>&1
|
||||
```
|
||||
1. Go to the terminal and run command `crontab -e`
|
||||
2. Login to the VueFileManager as admin and go to the admin dashboard, you will see command which you have to copy and paste into the end of file.
|
||||
3. Leave crontab and save the file.
|
||||
|
||||
### 8. CORS Configuration (When you Set External S3 Storage)
|
||||
In your s3 bucket settings you should have option to set up your CORS (Cross-Origin Resource Sharing). It's basically adding your app url to the list of allowed CORS. This step is required for reading pdf documents from s3 in your VueFileManager app without loading issues.
|
||||
@@ -221,7 +211,7 @@ VueFileManager support 2 types of connections:
|
||||
1. [Pusher](https://pusher.com/) - Suitable for all users and all hosting platforms
|
||||
2. VueFileManager Broadcast Server - Free of charge, suitable for experienced users, limited for VPS servers
|
||||
|
||||
## Install Broadcast Server
|
||||
## Install VueFileManager Broadcast Server
|
||||
We strongly recommend only for experienced users to set up and running VueFileManager broadcast server. For others, we recommend to use Pusher service to easy set up and host broadcasting service.
|
||||
|
||||
### Server Requirements
|
||||
|
||||
-19441
File diff suppressed because it is too large
Load Diff
+67
-1
@@ -1,12 +1,78 @@
|
||||
## Version 2.2.2
|
||||
#### Release date: 16. July 2022
|
||||
- Fixed issue when email wasn't sent in active app language
|
||||
- Fixed issue with subscription module loading
|
||||
|
||||
## Version 2.2.1
|
||||
#### Release date: 1. July 2022
|
||||
### New Usage Restriction Rules for User Accounts for Metered Billing
|
||||
- Allow limiting max usage before users will be forced to increase balance in first month of account existence
|
||||
- Force users to increase balance when usage is bigger than their current balance
|
||||
|
||||
#### Release date: 29. Jun 2022
|
||||
- Fixed reCaptcha for the contact form
|
||||
|
||||
## Version 2.2.0.13
|
||||
#### Release date: 29. Jun 2022
|
||||
- Extended login time up to 3 months
|
||||
- Fixed deleted at language string in grid view browsed in trash section
|
||||
|
||||
- ## Version 2.2.0.12
|
||||
#### Release date: 28. Jun 2022
|
||||
- Fixed paystack transaction issue
|
||||
|
||||
## Version 2.2.0.11
|
||||
#### Release date: 27. Jun 2022
|
||||
- Added hint to set cron command in dashboard panel when cron is not set correctly
|
||||
|
||||
## Version 2.2.0.10
|
||||
#### Release date: 27. Jun 2022
|
||||
- Fixed issue with downloading certain file types when you are using Backblaze storage driver
|
||||
- Fixed issue when Google Analytics doesn't record visitors
|
||||
|
||||
## Version 2.2.0.9
|
||||
#### Release date: 23. Jun 2022
|
||||
- Added spinner when pdf is loading
|
||||
- Set sandbox/live mode in PayPal key configuration setup form
|
||||
- Fixed issue when after deleting user, the related subscription wasn't deleted
|
||||
- Fixed issue when you perform composer update with private repository
|
||||
- Fixed issue where change in sorting option will duplicate the content in file view
|
||||
- Fixed issue where Dragged & Dropped folder from desktop didn't start uploading
|
||||
- Fixed issue when you upload empty .txt file, it stops the upload process
|
||||
|
||||
## Version 2.2.0.8
|
||||
#### Release date: 15. Jun 2022
|
||||
- Fixed issue when you tried switch to another language, the language stay same
|
||||
|
||||
## Version 2.2.0.7
|
||||
#### Release date: 13. Jun 2022
|
||||
- Solved issue when you click on the PayPal logo it makes the new copy of the payment buttons
|
||||
|
||||
## Version 2.2.0.6
|
||||
#### Release date: 13. Jun 2022
|
||||
- Solved issue when user wasn't redirected into stripe checkout
|
||||
|
||||
## Version 2.2.0.5
|
||||
#### Release date: 12. Jun 2022
|
||||
- Solved issue with showing trash content (Affected since 2.2.0)
|
||||
|
||||
## Version 2.2
|
||||
#### Release date: 18. May 2022
|
||||
|
||||
### Fixes
|
||||
- Solved issue with database backup notifications
|
||||
- Solved issue where after team member was invited into team folder, email with urging the recipient to create new account was sent
|
||||
- You are now allowed to set price for metered billing in 3 decimal places
|
||||
- Solved UI issue with empty notification popup
|
||||
- Plans in fixed subscription are now automatically sorted from lower to higher price
|
||||
- When new user was created via admin, the verification email was send
|
||||
- Item name in list view type is now extended on the full page width
|
||||
|
||||
### New Features
|
||||
- API version 1 released
|
||||
- Paginated records loading with infinity scroller
|
||||
- If you send file request for native user via email option, the push notification will be sent to the user
|
||||
- Ability to test your websocket (Broadcasting) connection via Admin / Server / Broadcasting tab
|
||||
- Plans in fixed subscription are now automatically sorted from lower to higher price
|
||||
|
||||
## Version 2.1.3
|
||||
#### Release date: 10. May 2022
|
||||
|
||||
+4
-4
@@ -29,7 +29,7 @@
|
||||
"laravel/ui": "^3.4.2",
|
||||
"league/flysystem-aws-s3-v3": "^3.0.9",
|
||||
"league/flysystem-ftp": "^3.0",
|
||||
"makingcg/subscription": "^1.0.6",
|
||||
"makingcg/saas-billing": "^1.0",
|
||||
"matthewbdaly/laravel-azure-storage": "^2.0",
|
||||
"pusher/pusher-php-server": "^7.0",
|
||||
"spatie/data-transfer-object": "^3.7.3",
|
||||
@@ -55,10 +55,10 @@
|
||||
"fakerphp/faker": "^1.19.0",
|
||||
"ext-json": "*"
|
||||
},
|
||||
"repositories": [
|
||||
"repositories":[
|
||||
{
|
||||
"type": "vcs",
|
||||
"url": "https://github.com/VueFileManager/subscription.git"
|
||||
"type": "github",
|
||||
"url": "https://github.com/makingcg/saas-billing.git"
|
||||
}
|
||||
],
|
||||
"config": {
|
||||
|
||||
Generated
+873
-649
File diff suppressed because it is too large
Load Diff
+2
-2
@@ -164,7 +164,7 @@ return [
|
||||
|
||||
'from' => [
|
||||
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
|
||||
'name' => env('MAIL_FROM_NAME', 'Example'),
|
||||
'name' => env('MAIL_FROM_NAME', 'Example'),
|
||||
],
|
||||
],
|
||||
],
|
||||
@@ -178,7 +178,7 @@ return [
|
||||
[
|
||||
'name' => env('APP_NAME', 'vuefilemanager-backup'),
|
||||
'disks' => [
|
||||
env('FILESYSTEM_DISK', 'local')
|
||||
env('FILESYSTEM_DISK', 'local'),
|
||||
],
|
||||
'health_checks' => [
|
||||
\Spatie\Backup\Tasks\Monitor\HealthChecks\MaximumAgeInDays::class => 1,
|
||||
|
||||
+102
-184
@@ -22,191 +22,109 @@ return [
|
||||
],
|
||||
],
|
||||
'content' => [
|
||||
'regular' => [
|
||||
[
|
||||
'name' => 'section_features',
|
||||
'value' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'section_feature_boxes',
|
||||
'value' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'section_get_started',
|
||||
'value' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'header_title',
|
||||
'value' => 'Simple <span class="text-theme">&</span> Powerful Personal Cloud Storage',
|
||||
],
|
||||
[
|
||||
'name' => 'header_description',
|
||||
'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Truly freedom.',
|
||||
],
|
||||
[
|
||||
'name' => 'features_title',
|
||||
'value' => 'The Fastest Growing <span class="text-theme">File Manager</span> on the CodeCanyon Market',
|
||||
],
|
||||
[
|
||||
'name' => 'features_description',
|
||||
'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Truly freedom.',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_title_1',
|
||||
'value' => 'Truly Freedom',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_description_1',
|
||||
'value' => 'You have full control over VueFileManager, no third authorities will control your service or usage, only you.',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_title_2',
|
||||
'value' => 'The Sky is the Limit',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_description_2',
|
||||
'value' => 'VueFileManager is cloud storage software. You have to install and running application on your own server hosting.',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_title_3',
|
||||
'value' => 'No Monthly Fees',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_description_3',
|
||||
'value' => 'When you running VueFileManager on your own server hosting, anybody can\'t control your content or resell your user data. Your data is safe.',
|
||||
],
|
||||
[
|
||||
'name' => 'get_started_title',
|
||||
'value' => 'Ready to Get <span class="text-theme">Started</span><br> With Us?',
|
||||
],
|
||||
[
|
||||
'name' => 'get_started_description',
|
||||
'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Truly freedom.',
|
||||
],
|
||||
[
|
||||
'name' => 'footer_content',
|
||||
'value' => '© 2022 Simple & Powerful Personal Cloud Storage. Developed by <a href="https://hi5ve.digital" target="_blank">Hi5Ve.Digital</a>',
|
||||
],
|
||||
[
|
||||
'name' => 'allow_homepage',
|
||||
'value' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'allowed_adsense',
|
||||
'value' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'allowed_recaptcha',
|
||||
'value' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'section_features',
|
||||
'value' => 1,
|
||||
],
|
||||
'extended' => [
|
||||
[
|
||||
'name' => 'section_features',
|
||||
'value' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'section_feature_boxes',
|
||||
'value' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'section_pricing_content',
|
||||
'value' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'section_get_started',
|
||||
'value' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'header_title',
|
||||
'value' => 'Simple <span class="text-theme">&</span> Powerful Personal Cloud Storage',
|
||||
],
|
||||
[
|
||||
'name' => 'header_description',
|
||||
'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Truly freedom.',
|
||||
],
|
||||
[
|
||||
'name' => 'features_title',
|
||||
'value' => 'The Fastest Growing <span class="text-theme">File Manager</span> on the CodeCanyon Market',
|
||||
],
|
||||
[
|
||||
'name' => 'features_description',
|
||||
'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Truly freedom.',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_title_1',
|
||||
'value' => 'Truly Freedom',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_description_1',
|
||||
'value' => 'You have full control over VueFileManager, no third authorities will control your service or usage, only you.',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_title_2',
|
||||
'value' => 'The Sky is the Limit',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_description_2',
|
||||
'value' => 'VueFileManager is cloud storage software. You have to install and running application on your own server hosting.',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_title_3',
|
||||
'value' => 'No Monthly Fees',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_description_3',
|
||||
'value' => 'When you running VueFileManager on your own server hosting, anybody can\'t control your content or resell your user data. Your data is safe.',
|
||||
],
|
||||
[
|
||||
'name' => 'pricing_title',
|
||||
'value' => 'Pick the <span class="text-theme">Best Plan</span> For Your Needs',
|
||||
],
|
||||
[
|
||||
'name' => 'pricing_description',
|
||||
'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Truly freedom.',
|
||||
],
|
||||
[
|
||||
'name' => 'get_started_title',
|
||||
'value' => 'Ready to Get <span class="text-theme">Started</span><br> With Us?',
|
||||
],
|
||||
[
|
||||
'name' => 'get_started_description',
|
||||
'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Truly freedom.',
|
||||
],
|
||||
[
|
||||
'name' => 'footer_content',
|
||||
'value' => '© 2022 Simple & Powerful Personal Cloud Storage. Developed by <a href="https://hi5ve.digital" target="_blank" class="text-theme">Hi5Ve.Digital</a>',
|
||||
],
|
||||
[
|
||||
'name' => 'allowed_adsense',
|
||||
'value' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'allowed_recaptcha',
|
||||
'value' => 0,
|
||||
],
|
||||
|
||||
// Subscription
|
||||
[
|
||||
'name' => 'paypal_payment_description',
|
||||
'value' => 'Available PayPal Credit, Debit or Credit Card.',
|
||||
],
|
||||
[
|
||||
'name' => 'paystack_payment_description',
|
||||
'value' => 'Available Bank Account, USSD, Mobile Money, Apple Pay.',
|
||||
],
|
||||
[
|
||||
'name' => 'stripe_payment_description',
|
||||
'value' => 'Available credit card or Apple Pay.',
|
||||
],
|
||||
[
|
||||
'name' => 'allowed_registration_bonus',
|
||||
'value' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'registration_bonus_amount',
|
||||
'value' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'section_feature_boxes',
|
||||
'value' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'section_pricing_content',
|
||||
'value' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'section_get_started',
|
||||
'value' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'header_title',
|
||||
'value' => 'Simple <span class="text-theme">&</span> Powerful Personal Cloud Storage',
|
||||
],
|
||||
[
|
||||
'name' => 'header_description',
|
||||
'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Truly freedom.',
|
||||
],
|
||||
[
|
||||
'name' => 'features_title',
|
||||
'value' => 'The Fastest Growing <span class="text-theme">File Manager</span> on the CodeCanyon Market',
|
||||
],
|
||||
[
|
||||
'name' => 'features_description',
|
||||
'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Truly freedom.',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_title_1',
|
||||
'value' => 'Truly Freedom',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_description_1',
|
||||
'value' => 'You have full control over VueFileManager, no third authorities will control your service or usage, only you.',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_title_2',
|
||||
'value' => 'The Sky is the Limit',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_description_2',
|
||||
'value' => 'VueFileManager is cloud storage software. You have to install and running application on your own server hosting.',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_title_3',
|
||||
'value' => 'No Monthly Fees',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_description_3',
|
||||
'value' => 'When you running VueFileManager on your own server hosting, anybody can\'t control your content or resell your user data. Your data is safe.',
|
||||
],
|
||||
[
|
||||
'name' => 'pricing_title',
|
||||
'value' => 'Pick the <span class="text-theme">Best Plan</span> For Your Needs',
|
||||
],
|
||||
[
|
||||
'name' => 'pricing_description',
|
||||
'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Truly freedom.',
|
||||
],
|
||||
[
|
||||
'name' => 'get_started_title',
|
||||
'value' => 'Ready to Get <span class="text-theme">Started</span><br> With Us?',
|
||||
],
|
||||
[
|
||||
'name' => 'get_started_description',
|
||||
'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Truly freedom.',
|
||||
],
|
||||
[
|
||||
'name' => 'footer_content',
|
||||
'value' => '© 2022 Simple & Powerful Personal Cloud Storage. Developed by <a href="https://hi5ve.digital" target="_blank" class="text-theme">Hi5Ve.Digital</a>',
|
||||
],
|
||||
[
|
||||
'name' => 'allowed_adsense',
|
||||
'value' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'allowed_recaptcha',
|
||||
'value' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'paypal_payment_description',
|
||||
'value' => 'Available PayPal Credit, Debit or Credit Card.',
|
||||
],
|
||||
[
|
||||
'name' => 'paystack_payment_description',
|
||||
'value' => 'Available Bank Account, USSD, Mobile Money, Apple Pay.',
|
||||
],
|
||||
[
|
||||
'name' => 'stripe_payment_description',
|
||||
'value' => 'Available credit card or Apple Pay.',
|
||||
],
|
||||
[
|
||||
'name' => 'allowed_registration_bonus',
|
||||
'value' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'registration_bonus_amount',
|
||||
'value' => 0,
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
@@ -108,7 +108,7 @@ return [
|
||||
'want_to_delete_card_description' => 'We will no longer settle your payments automatically and you will have to fund your account for the next payments.',
|
||||
'credit_card_deleted' => 'Your credit card was deleted.',
|
||||
'billed_annually' => 'Billed Annually',
|
||||
'restricted_account_warning' => 'Your functionality is restricted. Please review your billing settings.',
|
||||
'restricted_account_warning' => 'Your functionality is restricted.',
|
||||
'subscription_type' => 'Subscription Type',
|
||||
'subscription_type_note' => 'Please do not change in production environment.',
|
||||
'select_subscription_type' => 'Select your subscription type',
|
||||
@@ -267,6 +267,22 @@ return [
|
||||
'synchronizing_plans' => 'Synchronizing Plans...',
|
||||
'plans_are_synchronizing' => 'Your plans are synchronizing with the payment gateways',
|
||||
'plans_was_synchronized' => 'Plans was successfully synchronized',
|
||||
'limit_usage_in_new_accounts_1_subject' => 'Please make first payment for your account to fund your usage',
|
||||
'limit_usage_in_new_accounts_1_line' => 'We are happy you are using our service. To continue to using our service, please make first payment for your account balance to fund your usage.',
|
||||
'limit_usage_in_new_accounts_2_subject' => '📆 Reminder: Please make first payment for your account to fund your usage',
|
||||
'limit_usage_in_new_accounts_2_line' => 'We are happy you are using our service. To continue to using our service, please make first payment for your account balance to fund your usage.',
|
||||
'limit_usage_in_new_accounts_3_subject' => '‼️ Uh-oh! Your functionality was restricted. Please make payment to continue using your account',
|
||||
'limit_usage_in_new_accounts_3_line' => 'We are sorry for the inconvenience with using our service. To continue to using our service, please make first payment for your account balance to fund your usage and your functionality will be allowed as soon as possible.',
|
||||
'usage_bigger_than_balance_1_subject' => "⚠️ You don't have sufficient funds in your account, please increase your account balance",
|
||||
'usage_bigger_than_balance_1_line' => 'We are happy you are using our service. To continue to using our service, please increase your funds for your account balance to cover your usage.',
|
||||
'usage_bigger_than_balance_2_subject' => "📆 Reminder: You don't have sufficient funds in your account, please increase your account balance",
|
||||
'usage_bigger_than_balance_2_line' => 'We are happy you are using our service. To continue to using our service, please increase your funds for your account balance to cover your usage.',
|
||||
'usage_bigger_than_balance_3_subject' => '‼️ Uh-oh! Your functionality was restricted. Please increase your funds for your account balance to cover your usage',
|
||||
'usage_bigger_than_balance_3_line' => 'We are sorry for the inconvenience with using our service. To continue to using our service, please increase your funds for your account balance to cover your usage and your functionality will be allowed as soon as possible.',
|
||||
'dunning_notification_description' => 'Please resolve your billing as soon as possible. Your functions can be restricted.',
|
||||
'allow_limit_usage_in_new_accounts' => 'Allow limiting max usage before users will be forced to increase balance in first month of account existence',
|
||||
'allow_limit_usage_bigger_than_balance' => 'Force users to increase balance when usage is bigger than their current balance',
|
||||
'limit_usage_description_for_restrictions' => 'If user does not increase his balance or store his credit card, after third notification user account functionality will be restricted.',
|
||||
],
|
||||
'regular' => [
|
||||
'type' => 'Type',
|
||||
@@ -328,7 +344,7 @@ return [
|
||||
'admin_settings.appearance.title' => 'App Title',
|
||||
'admin_settings.appearance.title_plac' => 'Type your app title',
|
||||
'admin_settings.email.driver' => 'Mail Driver',
|
||||
'admin_settings.email.email_disclaimer' => "This form is not fully pre-filled for security reasons. Your email settings is available in your <b class='text-theme dark-text-theme'>.env</b> file. For apply new Email settings, please confirm your options by button at the end of formular.",
|
||||
'admin_settings.email.email_disclaimer' => "This form is not fully pre-filled for security reasons. Your email settings is available in your <b class='text-theme dark-text-theme'>.env</b> file. For apply new Email settings, please confirm your options by button at the end of form.",
|
||||
'admin_settings.email.encryption' => 'Mail Encryption',
|
||||
'admin_settings.email.host' => 'Mail Host',
|
||||
'admin_settings.email.password' => 'Mail Password',
|
||||
@@ -537,7 +553,7 @@ return [
|
||||
'preview_sorting.grid_view' => 'Grid View',
|
||||
'preview_sorting.list_view' => 'List View',
|
||||
'preview_sorting.preview_sorting_button' => 'View',
|
||||
'preview_sorting.sort_alphabet' => 'Sort By Aplhabet',
|
||||
'preview_sorting.sort_alphabet' => 'Sort By Alphabet',
|
||||
'preview_sorting.sort_date' => 'Sort By Date',
|
||||
'profile.store_pass' => 'Store New Password',
|
||||
'pronouns.of' => 'of',
|
||||
@@ -910,7 +926,7 @@ return [
|
||||
'new_team_invitation' => 'New Team Invitation',
|
||||
'x_invite_to_join_team' => ':name invite you to join into Team Folder.',
|
||||
'team_invitation_notify_title' => 'You are invited to collaboration with team folder in :app',
|
||||
'team_invitation_notify_desc' => 'You are invited to collaboration with team folder',
|
||||
'team_invitation_notify_desc' => 'You are invited to collaboration with team folder.',
|
||||
'team_invitation_notify_desc_without_account' => 'You are invited to collaboration with team folder. But at first, you have to create an account to proceed into team folder.',
|
||||
'join_into_team_folder' => 'Join into Team Folder',
|
||||
'join_and_create_account' => 'Join & Create an Account',
|
||||
|
||||
+13
-1
@@ -23,6 +23,7 @@ return [
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
'DunningEmailToCoverAccountUsageNotification' => \Domain\Subscriptions\Notifications\DunningEmailToCoverAccountUsageNotification::class,
|
||||
'ChargeFromCreditCardFailedAgainNotification' => \Domain\Subscriptions\Notifications\ChargeFromCreditCardFailedAgainNotification::class,
|
||||
'ChargeFromCreditCardFailedNotification' => \Domain\Subscriptions\Notifications\ChargeFromCreditCardFailedNotification::class,
|
||||
'SubscriptionWasCreatedNotification' => \Domain\Subscriptions\Notifications\SubscriptionWasCreatedNotification::class,
|
||||
@@ -32,8 +33,18 @@ return [
|
||||
'BonusCreditAddedNotification' => \Domain\Subscriptions\Notifications\BonusCreditAddedNotification::class,
|
||||
],
|
||||
|
||||
'metered_billing' => [
|
||||
'metered_billing' => [
|
||||
'settlement_period' => 30,
|
||||
|
||||
'fraud_prevention_mechanism' => [
|
||||
'usage_bigger_than_balance' => [
|
||||
'active' => true,
|
||||
],
|
||||
'limit_usage_in_new_accounts' => [
|
||||
'active' => true,
|
||||
'amount' => 5,
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'paystack' => [
|
||||
@@ -48,4 +59,5 @@ return [
|
||||
],
|
||||
|
||||
'is_demo' => env('APP_DEMO', false),
|
||||
'is_local' => env('APP_ENV', 'production') === 'local',
|
||||
];
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'version' => '2.2',
|
||||
'version' => '2.2.3',
|
||||
|
||||
'is_demo' => env('APP_DEMO', false),
|
||||
|
||||
'is_prefilled_users' => env('IS_PREFILLED_USERS', false),
|
||||
'is_setup_wizard_demo' => env('IS_SETUP_WIZARD_DEMO', false),
|
||||
'is_setup_wizard_debug' => env('IS_SETUP_WIZARD_DEBUG', false),
|
||||
'is_admin_vuefilemanager_bar' => env('IS_ADMIN_VUEFILEMANAGER_BAR', true),
|
||||
@@ -61,6 +62,10 @@ return [
|
||||
],
|
||||
],
|
||||
|
||||
'paginate' => [
|
||||
'perPage' => env('PAGINATE_RECORDS_PER_PAGE', 50),
|
||||
],
|
||||
|
||||
// The update versions which need to run upgrade process
|
||||
'updates' => [
|
||||
'2_0_10',
|
||||
@@ -70,5 +75,9 @@ return [
|
||||
'2_1_1',
|
||||
'2_1_2',
|
||||
'2_2_0',
|
||||
'2_2_0_13',
|
||||
'2_2_1',
|
||||
'2_2_2',
|
||||
'2_2_3',
|
||||
],
|
||||
];
|
||||
|
||||
Generated
+3063
-1246
File diff suppressed because it is too large
Load Diff
+15
-14
@@ -10,35 +10,36 @@
|
||||
"production": "mix --production"
|
||||
},
|
||||
"devDependencies": {
|
||||
"autoprefixer": "^10.4.4",
|
||||
"autoprefixer": "^10.4.8",
|
||||
"axios": "^0.21.4",
|
||||
"cross-env": "^5.1",
|
||||
"laravel-echo": "^1.11.4",
|
||||
"laravel-mix": "^6.0.43",
|
||||
"postcss": "^8.4.12",
|
||||
"prettier": "^2.6.2",
|
||||
"laravel-echo": "^1.13.1",
|
||||
"laravel-mix": "^6.0.49",
|
||||
"postcss": "^8.4.14",
|
||||
"prettier": "^2.7.1",
|
||||
"prettier-plugin-import-sort": "0.0.7",
|
||||
"prettier-plugin-tailwindcss": "^0.1.8",
|
||||
"pusher-js": "^7.0.6",
|
||||
"prettier-plugin-tailwindcss": "^0.1.13",
|
||||
"pusher-js": "^7.3.0",
|
||||
"resolve-url-loader": "^2.3.1",
|
||||
"sass": "^1.49.11",
|
||||
"sass": "^1.54.3",
|
||||
"sass-loader": "^8.0.2",
|
||||
"tailwindcss": "^3.0.23",
|
||||
"tailwindcss": "^3.1.7",
|
||||
"tailwindcss-debug-screens": "^2.2.1",
|
||||
"vue-loader": "^15.9.8",
|
||||
"vue-template-compiler": "^2.6.14"
|
||||
"vue-loader": "^15.10.0",
|
||||
"vue-template-compiler": "^2.7.8"
|
||||
},
|
||||
"dependencies": {
|
||||
"@paypal/paypal-js": "^4.2.2",
|
||||
"@stripe/stripe-js": "^1.26.0",
|
||||
"@stripe/stripe-js": "^1.35.0",
|
||||
"datatransfer-files-promise": "^1.3.1",
|
||||
"lodash": "^4.17.21",
|
||||
"node-sass": "^4.14.1",
|
||||
"pdfvuer": "^1.9.2",
|
||||
"tailwind-scrollbar-hide": "^1.1.7",
|
||||
"twemoji": "^13.1.1",
|
||||
"v-click-outside": "^3.1.2",
|
||||
"v-click-outside": "^3.2.0",
|
||||
"vee-validate": "^3.4.14",
|
||||
"vue": "^2.6.14",
|
||||
"vue": "^2.7.8",
|
||||
"vue-feather-icons": "^5.1.0",
|
||||
"vue-google-adsense": "^1.10.1",
|
||||
"vue-i18n": "^8.27.1",
|
||||
|
||||
Vendored
+2
File diff suppressed because one or more lines are too long
@@ -0,0 +1,30 @@
|
||||
/*!
|
||||
* The buffer module from node.js, for the browser.
|
||||
*
|
||||
* @author Feross Aboukhadijeh <http://feross.org>
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
||||
|
||||
/**
|
||||
* @licstart The following is the entire license notice for the
|
||||
* Javascript code in this page
|
||||
*
|
||||
* Copyright 2020 Mozilla Foundation
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
* @licend The above is the entire license notice for the
|
||||
* Javascript code in this page
|
||||
*/
|
||||
Vendored
+2
File diff suppressed because one or more lines are too long
@@ -0,0 +1,30 @@
|
||||
/*!
|
||||
* The buffer module from node.js, for the browser.
|
||||
*
|
||||
* @author Feross Aboukhadijeh <http://feross.org>
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
||||
|
||||
/**
|
||||
* @licstart The following is the entire license notice for the
|
||||
* Javascript code in this page
|
||||
*
|
||||
* Copyright 2020 Mozilla Foundation
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
* @licend The above is the entire license notice for the
|
||||
* Javascript code in this page
|
||||
*/
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
@@ -1 +1 @@
|
||||
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[4738],{6226:(t,e,n)=>{n.d(e,{Z:()=>r});const a={name:"CardNavigation",props:["pages"],computed:{routeName:function(){return this.$route.name}},data:function(){return{fixedNav:!1}},created:function(){var t=this;window.addEventListener("scroll",(function(){var e=document.getElementById("card-navigation");t.fixedNav=e.getBoundingClientRect().top<0}))}};const r=(0,n(1900).Z)(a,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"mb-7",staticStyle:{height:"62px"},attrs:{id:"card-navigation"}},[n("div",{class:{"fixed top-0 left-0 right-0 z-10 rounded-none bg-white bg-opacity-50 px-6 backdrop-blur-lg backdrop-filter dark:bg-dark-foreground":t.fixedNav}},[n("div",{staticClass:"overflow-x-auto whitespace-nowrap"},t._l(t.pages,(function(e,a){return n("router-link",{key:a,staticClass:"border-bottom-theme inline-block border-b-2 border-transparent px-4 py-5 text-sm font-bold",class:{"text-theme":t.routeName===e.route,"text-gray-600 dark:text-gray-100":t.routeName!==e.route},attrs:{to:{name:e.route},replace:""}},[t._v("\n "+t._s(e.title)+"\n ")])})),1)])])}),[],!1,null,null,null).exports},4677:(t,e,n)=>{n.r(e),n.d(e,{default:()=>r});const a={name:"AppSettings",components:{CardNavigation:n(6226).Z},data:function(){return{pages:[{title:this.$t("admin_settings.tabs.others"),route:"AppOthers"},{title:this.$t("login_and_registration"),route:"AppSignInUp"},{title:this.$t("appearance"),route:"AppAppearance"},{title:this.$t("Adsense"),route:"AppAdsense"},{title:this.$t("homepage"),route:"AppIndex"},{title:this.$t("environment"),route:"AppEnvironment"},{title:this.$t("server"),route:"AppServer"}]}},mounted:function(){"/admin/settings"===this.$route.path&&this.$router.push({name:"AppOthers"})}};const r=(0,n(1900).Z)(a,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("div",{staticClass:"card z-10 shadow-card",staticStyle:{"padding-bottom":"0","padding-top":"0"}},[n("CardNavigation",{staticClass:"-mx-1",attrs:{pages:t.pages}})],1),t._v(" "),n("router-view")],1)}),[],!1,null,null,null).exports}}]);
|
||||
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[4738],{3037:(t,e,n)=>{n.d(e,{Z:()=>r});const a={name:"CardNavigation",props:["pages"],computed:{routeName:function(){return this.$route.name}},data:function(){return{fixedNav:!1}},created:function(){var t=this;window.addEventListener("scroll",(function(){var e=document.getElementById("card-navigation");t.fixedNav=e.getBoundingClientRect().top<0}))}};const r=(0,n(1900).Z)(a,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"mb-7",staticStyle:{height:"62px"},attrs:{id:"card-navigation"}},[e("div",{class:{"fixed top-0 left-0 right-0 z-10 rounded-none bg-white bg-opacity-50 px-6 backdrop-blur-lg backdrop-filter dark:bg-dark-foreground":t.fixedNav}},[e("div",{staticClass:"overflow-x-auto whitespace-nowrap"},t._l(t.pages,(function(n,a){return e("router-link",{key:a,staticClass:"border-bottom-theme inline-block border-b-2 border-transparent px-4 py-5 text-sm font-bold",class:{"text-theme":t.routeName===n.route,"text-gray-600 dark:text-gray-100":t.routeName!==n.route},attrs:{to:{name:n.route},replace:""}},[t._v("\n "+t._s(n.title)+"\n ")])})),1)])])}),[],!1,null,null,null).exports},8270:(t,e,n)=>{n.r(e),n.d(e,{default:()=>r});const a={name:"AppSettings",components:{CardNavigation:n(3037).Z},data:function(){return{pages:[{title:this.$t("admin_settings.tabs.others"),route:"AppOthers"},{title:this.$t("login_and_registration"),route:"AppSignInUp"},{title:this.$t("appearance"),route:"AppAppearance"},{title:this.$t("Adsense"),route:"AppAdsense"},{title:this.$t("homepage"),route:"AppIndex"},{title:this.$t("environment"),route:"AppEnvironment"},{title:this.$t("server"),route:"AppServer"}]}},mounted:function(){"/admin/settings"===this.$route.path&&this.$router.push({name:"AppOthers"})}};const r=(0,n(1900).Z)(a,(function(){var t=this,e=t._self._c;return e("div",[e("div",{staticClass:"card z-10 shadow-card",staticStyle:{"padding-bottom":"0","padding-top":"0"}},[e("CardNavigation",{staticClass:"-mx-1",attrs:{pages:t.pages}})],1),t._v(" "),e("router-view")],1)}),[],!1,null,null,null).exports}}]);
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
@@ -1 +1 @@
|
||||
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[5867],{5713:(t,e,n)=>{n.d(e,{Z:()=>i});var r=n(3645),s=n.n(r)()((function(t){return t[1]}));s.push([t.id,".sync-alt[data-v-0c7f3326]{-webkit-animation:spin-data-v-0c7f3326 1s linear infinite;animation:spin-data-v-0c7f3326 1s linear infinite}@-webkit-keyframes spin-data-v-0c7f3326{0%{transform:rotate(0)}to{transform:rotate(1turn)}}@keyframes spin-data-v-0c7f3326{0%{transform:rotate(0)}to{transform:rotate(1turn)}}",""]);const i=s},4026:(t,e,n)=>{n.d(e,{Z:()=>s});const r={name:"AuthContent",props:["visible","name"],data:function(){return{isVisible:!1}},created:function(){this.isVisible=this.visible}};const s=(0,n(1900).Z)(r,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.isVisible?n("div",{staticClass:"w-full max-w-xl text-center"},[t._t("default")],2):t._e()}),[],!1,null,null,null).exports},5111:(t,e,n)=>{n.d(e,{Z:()=>s});const r={name:"AuthContentWrapper"};const s=(0,n(1900).Z)(r,(function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{staticClass:"flex items-center justify-center px-2.5 md:px-6"},[t._t("default")],2)}),[],!1,null,null,null).exports},371:(t,e,n)=>{n.d(e,{Z:()=>c});var r=n(9101);const s={name:"AuthContent",props:["loading","icon","text"],components:{ChevronRightIcon:r.XCv,RefreshCwIcon:r.Iyk},data:function(){return{isVisible:!1}},created:function(){this.isVisible=this.visible}};var i=n(3379),o=n.n(i),a=n(5713),l={insert:"head",singleton:!1};o()(a.Z,l);a.Z.locals;const c=(0,n(1900).Z)(s,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("button",{staticClass:"group mx-auto inline-block flex items-center whitespace-nowrap rounded-lg border-2 border-black px-7 py-2.5 dark:border-gray-300"},[n("span",{staticClass:"pr-1 text-lg font-extrabold"},[t._v("\n "+t._s(t.text)+"\n ")]),t._v(" "),t.loading?n("refresh-cw-icon",{staticClass:"vue-feather text-theme sync-alt -mr-1",attrs:{size:"20"}}):t._e(),t._v(" "),!t.loading&&t.icon?n("chevron-right-icon",{staticClass:"vue-feather text-theme -mr-1",attrs:{size:"20"}}):t._e()],1)}),[],!1,null,"0c7f3326",null).exports},5993:(t,e,n)=>{n.d(e,{Z:()=>a});function r(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function s(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?r(Object(n),!0).forEach((function(e){i(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):r(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function i(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}const o={name:"Headline",props:["description","title"],computed:s(s({},(0,n(629).Se)(["config","isDarkMode"])),{},{logoSrc:function(){return this.isDarkMode&&this.config.app_logo?this.config.app_logo_dark:this.config.app_logo}})};const a=(0,n(1900).Z)(o,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"mb-14"},[t._t("default"),t._v(" "),t.$slots.default?t._e():n("div",[t.config.app_logo?n("img",{staticClass:"mx-auto mb-6 h-16 md:h-20 mb-10",attrs:{src:t.$getImage(t.logoSrc),alt:t.config.app_name}}):t._e(),t._v(" "),t.config.app_logo?t._e():n("b",{staticClass:"mb-10 block text-xl font-bold"},[t._v("\n "+t._s(t.config.app_name)+"\n ")])]),t._v(" "),n("h1",{staticClass:"mb-0.5 text-3xl font-extrabold md:text-4xl"},[t._v("\n "+t._s(t.title)+"\n ")]),t._v(" "),n("h2",{staticClass:"text-xl font-normal md:text-2xl"},[t._v("\n "+t._s(t.description)+"\n ")])],2)}),[],!1,null,null,null).exports},9493:(t,e,n)=>{n.r(e),n.d(e,{default:()=>l});var r=n(5111),s=n(4026),i=n(371),o=n(5993);const a={name:"Demo",components:{AuthContentWrapper:r.Z,AuthContent:s.Z,AuthButton:i.Z,Headline:o.Z}};const l=(0,n(1900).Z)(a,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("AuthContentWrapper",{ref:"auth",staticClass:"h-screen"},[n("AuthContent",{attrs:{visible:!0}},[n("Headline",{attrs:{title:"You Are Nearly Here!",description:"Just click on the button below."}}),t._v(" "),n("a",{attrs:{href:t.$store.getters.config.host+"/sign-in",target:"_blank"}},[n("AuthButton",{staticClass:"mb-12 w-full justify-center md:w-min",attrs:{icon:"chevron-right",text:"Visit Demo"}})],1)],1)],1)}),[],!1,null,null,null).exports}}]);
|
||||
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[5867],{5408:(t,e,n)=>{n.d(e,{Z:()=>i});var r=n(3645),s=n.n(r)()((function(t){return t[1]}));s.push([t.id,".sync-alt[data-v-0c7f3326]{-webkit-animation:spin-0c7f3326 1s linear infinite;animation:spin-0c7f3326 1s linear infinite}@-webkit-keyframes spin-0c7f3326{0%{transform:rotate(0)}to{transform:rotate(1turn)}}@keyframes spin-0c7f3326{0%{transform:rotate(0)}to{transform:rotate(1turn)}}",""]);const i=s},309:(t,e,n)=>{n.d(e,{Z:()=>s});const r={name:"AuthContent",props:["visible","name"],data:function(){return{isVisible:!1}},created:function(){this.isVisible=this.visible}};const s=(0,n(1900).Z)(r,(function(){var t=this,e=t._self._c;return t.isVisible?e("div",{staticClass:"w-full max-w-xl text-center m-auto py-6"},[t._t("default")],2):t._e()}),[],!1,null,null,null).exports},8901:(t,e,n)=>{n.d(e,{Z:()=>s});const r={name:"AuthContentWrapper"};const s=(0,n(1900).Z)(r,(function(){return(0,this._self._c)("div",{staticClass:"flex px-2.5 md:px-6"},[this._t("default")],2)}),[],!1,null,null,null).exports},3627:(t,e,n)=>{n.d(e,{Z:()=>c});var r=n(9101);const s={name:"AuthContent",props:["loading","icon","text"],components:{ChevronRightIcon:r.XCv,RefreshCwIcon:r.Iyk},data:function(){return{isVisible:!1}},created:function(){this.isVisible=this.visible}};var i=n(3379),o=n.n(i),a=n(5408),l={insert:"head",singleton:!1};o()(a.Z,l);a.Z.locals;const c=(0,n(1900).Z)(s,(function(){var t=this,e=t._self._c;return e("button",{staticClass:"group mx-auto inline-block flex items-center whitespace-nowrap rounded-lg border-2 border-black px-7 py-2.5 dark:border-gray-300"},[e("span",{staticClass:"pr-1 text-lg font-extrabold"},[t._v("\n "+t._s(t.text)+"\n ")]),t._v(" "),t.loading?e("refresh-cw-icon",{staticClass:"vue-feather text-theme sync-alt -mr-1",attrs:{size:"20"}}):t._e(),t._v(" "),!t.loading&&t.icon?e("chevron-right-icon",{staticClass:"vue-feather text-theme -mr-1",attrs:{size:"20"}}):t._e()],1)}),[],!1,null,"0c7f3326",null).exports},1191:(t,e,n)=>{n.d(e,{Z:()=>a});function r(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function s(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?r(Object(n),!0).forEach((function(e){i(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):r(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function i(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}const o={name:"Headline",props:["description","title"],computed:s(s({},(0,n(629).Se)(["config","isDarkMode"])),{},{logoSrc:function(){return this.isDarkMode&&this.config.app_logo?this.config.app_logo_dark:this.config.app_logo}})};const a=(0,n(1900).Z)(o,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"mb-14"},[t._t("default"),t._v(" "),t.$slots.default?t._e():e("div",[t.config.app_logo?e("img",{staticClass:"mx-auto mb-6 h-16 md:h-20 mb-10",attrs:{src:t.$getImage(t.logoSrc),alt:t.config.app_name}}):t._e(),t._v(" "),t.config.app_logo?t._e():e("b",{staticClass:"mb-10 block text-xl font-bold"},[t._v("\n "+t._s(t.config.app_name)+"\n ")])]),t._v(" "),e("h1",{staticClass:"mb-0.5 text-3xl font-extrabold md:text-4xl"},[t._v("\n "+t._s(t.title)+"\n ")]),t._v(" "),e("h2",{staticClass:"text-xl font-normal md:text-2xl"},[t._v("\n "+t._s(t.description)+"\n ")])],2)}),[],!1,null,null,null).exports},7026:(t,e,n)=>{n.r(e),n.d(e,{default:()=>l});var r=n(8901),s=n(309),i=n(3627),o=n(1191);const a={name:"Demo",components:{AuthContentWrapper:r.Z,AuthContent:s.Z,AuthButton:i.Z,Headline:o.Z}};const l=(0,n(1900).Z)(a,(function(){var t=this,e=t._self._c;return e("AuthContentWrapper",{ref:"auth",staticClass:"h-screen"},[e("AuthContent",{attrs:{visible:!0}},[e("Headline",{attrs:{title:"You Are Nearly Here!",description:"Just click on the button below."}}),t._v(" "),e("a",{attrs:{href:"".concat(t.$store.getters.config.host,"/sign-in"),target:"_blank"}},[e("AuthButton",{staticClass:"mb-12 w-full justify-center md:w-min",attrs:{icon:"chevron-right",text:"Visit Demo"}})],1)],1)],1)}),[],!1,null,null,null).exports}}]);
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
@@ -1 +1 @@
|
||||
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[7980],{6226:(t,e,a)=>{a.d(e,{Z:()=>r});const n={name:"CardNavigation",props:["pages"],computed:{routeName:function(){return this.$route.name}},data:function(){return{fixedNav:!1}},created:function(){var t=this;window.addEventListener("scroll",(function(){var e=document.getElementById("card-navigation");t.fixedNav=e.getBoundingClientRect().top<0}))}};const r=(0,a(1900).Z)(n,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"mb-7",staticStyle:{height:"62px"},attrs:{id:"card-navigation"}},[a("div",{class:{"fixed top-0 left-0 right-0 z-10 rounded-none bg-white bg-opacity-50 px-6 backdrop-blur-lg backdrop-filter dark:bg-dark-foreground":t.fixedNav}},[a("div",{staticClass:"overflow-x-auto whitespace-nowrap"},t._l(t.pages,(function(e,n){return a("router-link",{key:n,staticClass:"border-bottom-theme inline-block border-b-2 border-transparent px-4 py-5 text-sm font-bold",class:{"text-theme":t.routeName===e.route,"text-gray-600 dark:text-gray-100":t.routeName!==e.route},attrs:{to:{name:e.route},replace:""}},[t._v("\n "+t._s(e.title)+"\n ")])})),1)])])}),[],!1,null,null,null).exports},4157:(t,e,a)=>{a.r(e),a.d(e,{default:()=>r});const n={name:"PaymentSettings",components:{CardNavigation:a(6226).Z},data:function(){return{pages:[{title:this.$t("payments"),route:"AppPayments"},{title:this.$t("billings"),route:"AppBillings"}]}},mounted:function(){this.$router.replace({name:"AppPayments"})}};const r=(0,a(1900).Z)(n,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[a("div",{staticClass:"card z-10 shadow-card",staticStyle:{"padding-bottom":"0","padding-top":"0"}},[a("CardNavigation",{staticClass:"-mx-1",attrs:{pages:t.pages}})],1),t._v(" "),a("router-view")],1)}),[],!1,null,null,null).exports}}]);
|
||||
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[7980],{3037:(t,e,a)=>{a.d(e,{Z:()=>r});const n={name:"CardNavigation",props:["pages"],computed:{routeName:function(){return this.$route.name}},data:function(){return{fixedNav:!1}},created:function(){var t=this;window.addEventListener("scroll",(function(){var e=document.getElementById("card-navigation");t.fixedNav=e.getBoundingClientRect().top<0}))}};const r=(0,a(1900).Z)(n,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"mb-7",staticStyle:{height:"62px"},attrs:{id:"card-navigation"}},[e("div",{class:{"fixed top-0 left-0 right-0 z-10 rounded-none bg-white bg-opacity-50 px-6 backdrop-blur-lg backdrop-filter dark:bg-dark-foreground":t.fixedNav}},[e("div",{staticClass:"overflow-x-auto whitespace-nowrap"},t._l(t.pages,(function(a,n){return e("router-link",{key:n,staticClass:"border-bottom-theme inline-block border-b-2 border-transparent px-4 py-5 text-sm font-bold",class:{"text-theme":t.routeName===a.route,"text-gray-600 dark:text-gray-100":t.routeName!==a.route},attrs:{to:{name:a.route},replace:""}},[t._v("\n "+t._s(a.title)+"\n ")])})),1)])])}),[],!1,null,null,null).exports},9955:(t,e,a)=>{a.r(e),a.d(e,{default:()=>r});const n={name:"PaymentSettings",components:{CardNavigation:a(3037).Z},data:function(){return{pages:[{title:this.$t("payments"),route:"AppPayments"},{title:this.$t("billings"),route:"AppBillings"}]}},mounted:function(){this.$router.replace({name:"AppPayments"})}};const r=(0,a(1900).Z)(n,(function(){var t=this,e=t._self._c;return e("div",[e("div",{staticClass:"card z-10 shadow-card",staticStyle:{"padding-bottom":"0","padding-top":"0"}},[e("CardNavigation",{staticClass:"-mx-1",attrs:{pages:t.pages}})],1),t._v(" "),e("router-view")],1)}),[],!1,null,null,null).exports}}]);
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
@@ -1 +1 @@
|
||||
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[8355],{6226:(t,e,a)=>{a.d(e,{Z:()=>r});const n={name:"CardNavigation",props:["pages"],computed:{routeName:function(){return this.$route.name}},data:function(){return{fixedNav:!1}},created:function(){var t=this;window.addEventListener("scroll",(function(){var e=document.getElementById("card-navigation");t.fixedNav=e.getBoundingClientRect().top<0}))}};const r=(0,a(1900).Z)(n,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"mb-7",staticStyle:{height:"62px"},attrs:{id:"card-navigation"}},[a("div",{class:{"fixed top-0 left-0 right-0 z-10 rounded-none bg-white bg-opacity-50 px-6 backdrop-blur-lg backdrop-filter dark:bg-dark-foreground":t.fixedNav}},[a("div",{staticClass:"overflow-x-auto whitespace-nowrap"},t._l(t.pages,(function(e,n){return a("router-link",{key:n,staticClass:"border-bottom-theme inline-block border-b-2 border-transparent px-4 py-5 text-sm font-bold",class:{"text-theme":t.routeName===e.route,"text-gray-600 dark:text-gray-100":t.routeName!==e.route},attrs:{to:{name:e.route},replace:""}},[t._v("\n "+t._s(e.title)+"\n ")])})),1)])])}),[],!1,null,null,null).exports},7778:(t,e,a)=>{a.r(e),a.d(e,{default:()=>l});var n=a(6226),r=a(8524),i=a(9669),s=a.n(i);const o={name:"FixedPlan",components:{CardNavigation:n.Z,Spinner:r.Z},data:function(){return{isLoading:!0,plan:void 0,pages:[{title:this.$t("settings"),route:"PlanFixedSettings"},{title:this.$t("subscribers"),route:"PlanFixedSubscribers"},{title:this.$t("delete_plan"),route:"PlanFixedDelete"}]}},created:function(){var t=this;s().get("/api/subscriptions/admin/plans/"+this.$route.params.id).then((function(e){t.plan=e.data.data})).finally((function(){t.isLoading=!1}))}};const l=(0,a(1900).Z)(o,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[t.plan?a("div",{staticClass:"card sticky top-0 z-10 shadow-card",staticStyle:{"padding-bottom":"0"}},[a("div",{staticClass:"mb-2"},[a("h1",{staticClass:"text-lg font-bold sm:text-xl"},[t._v("\n "+t._s(t.plan.attributes.name)+"\n ")]),t._v(" "),a("small",{staticClass:"text-xs font-bold dark:text-gray-500 text-gray-500 sm:text-sm"},[t._v("\n "+t._s(t.plan.attributes.price)+" /\n "+t._s(t.$t("interval."+t.plan.attributes.interval))+"\n ")])]),t._v(" "),a("CardNavigation",{staticClass:"-mx-1.5",attrs:{pages:t.pages}})],1):t._e(),t._v(" "),t.isLoading?t._e():a("router-view",{attrs:{plan:t.plan}}),t._v(" "),t.isLoading?a("div",{attrs:{id:"loader"}},[a("Spinner")],1):t._e()],1)}),[],!1,null,null,null).exports},2441:(t,e,a)=>{a.r(e),a.d(e,{default:()=>p});var n=a(6226),r=a(8524),i=a(9669),s=a.n(i),o=a(629);function l(t,e){var a=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),a.push.apply(a,n)}return a}function c(t){for(var e=1;e<arguments.length;e++){var a=null!=arguments[e]?arguments[e]:{};e%2?l(Object(a),!0).forEach((function(e){d(t,e,a[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(a)):l(Object(a)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(a,e))}))}return t}function d(t,e,a){return e in t?Object.defineProperty(t,e,{value:a,enumerable:!0,configurable:!0,writable:!0}):t[e]=a,t}const u={name:"MeteredPlan",components:{CardNavigation:n.Z,Spinner:r.Z},computed:c(c({},(0,o.Se)(["config"])),{},{pages:function(){var t=[{title:this.$t("settings"),route:"PlanMeteredSettings"},{title:this.$t("subscribers"),route:"PlanMeteredSubscribers"}];return this.plan&&"active"===this.plan.attributes.status&&t.push({title:this.$t("delete_plan"),route:"PlanMeteredDelete"}),t}}),data:function(){return{isLoading:!0,plan:void 0}},created:function(){var t=this;s().get("/api/subscriptions/admin/plans/"+this.$route.params.id).then((function(e){t.plan=e.data.data})).finally((function(){t.isLoading=!1}))}};const p=(0,a(1900).Z)(u,(function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",[t.plan?a("div",{staticClass:"card sticky top-0 z-10 shadow-card",staticStyle:{"padding-bottom":"0"}},[a("div",{staticClass:"mb-2"},[a("h1",{staticClass:"text-lg font-bold sm:text-xl"},[t._v("\n "+t._s(t.plan.attributes.name)+"\n ")]),t._v(" "),a("small",{staticClass:"text-xs font-bold dark:text-gray-500 text-gray-500 sm:text-sm"},[t._v("\n "+t._s(t.$t("x_days_intervals"))+"\n ")])]),t._v(" "),a("CardNavigation",{staticClass:"-mx-1",attrs:{pages:t.pages}})],1):t._e(),t._v(" "),t.isLoading?t._e():a("router-view",{attrs:{plan:t.plan}}),t._v(" "),t.isLoading?a("div",{attrs:{id:"loader"}},[a("Spinner")],1):t._e()],1)}),[],!1,null,null,null).exports}}]);
|
||||
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[8355],{3037:(t,e,a)=>{a.d(e,{Z:()=>r});const n={name:"CardNavigation",props:["pages"],computed:{routeName:function(){return this.$route.name}},data:function(){return{fixedNav:!1}},created:function(){var t=this;window.addEventListener("scroll",(function(){var e=document.getElementById("card-navigation");t.fixedNav=e.getBoundingClientRect().top<0}))}};const r=(0,a(1900).Z)(n,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"mb-7",staticStyle:{height:"62px"},attrs:{id:"card-navigation"}},[e("div",{class:{"fixed top-0 left-0 right-0 z-10 rounded-none bg-white bg-opacity-50 px-6 backdrop-blur-lg backdrop-filter dark:bg-dark-foreground":t.fixedNav}},[e("div",{staticClass:"overflow-x-auto whitespace-nowrap"},t._l(t.pages,(function(a,n){return e("router-link",{key:n,staticClass:"border-bottom-theme inline-block border-b-2 border-transparent px-4 py-5 text-sm font-bold",class:{"text-theme":t.routeName===a.route,"text-gray-600 dark:text-gray-100":t.routeName!==a.route},attrs:{to:{name:a.route},replace:""}},[t._v("\n "+t._s(a.title)+"\n ")])})),1)])])}),[],!1,null,null,null).exports},4857:(t,e,a)=>{a.r(e),a.d(e,{default:()=>l});var n=a(3037),r=a(3592),i=a(9669),s=a.n(i);const o={name:"FixedPlan",components:{CardNavigation:n.Z,Spinner:r.Z},data:function(){return{isLoading:!0,plan:void 0,pages:[{title:this.$t("settings"),route:"PlanFixedSettings"},{title:this.$t("subscribers"),route:"PlanFixedSubscribers"},{title:this.$t("delete_plan"),route:"PlanFixedDelete"}]}},created:function(){var t=this;s().get("/api/subscriptions/admin/plans/"+this.$route.params.id).then((function(e){t.plan=e.data.data})).finally((function(){t.isLoading=!1}))}};const l=(0,a(1900).Z)(o,(function(){var t=this,e=t._self._c;return e("div",[t.plan?e("div",{staticClass:"card sticky top-0 z-10 shadow-card",staticStyle:{"padding-bottom":"0"}},[e("div",{staticClass:"mb-2"},[e("h1",{staticClass:"text-lg font-bold sm:text-xl"},[t._v("\n "+t._s(t.plan.attributes.name)+"\n ")]),t._v(" "),e("small",{staticClass:"text-xs font-bold dark:text-gray-500 text-gray-500 sm:text-sm"},[t._v("\n "+t._s(t.plan.attributes.price)+" /\n "+t._s(t.$t("interval.".concat(t.plan.attributes.interval)))+"\n ")])]),t._v(" "),e("CardNavigation",{staticClass:"-mx-1.5",attrs:{pages:t.pages}})],1):t._e(),t._v(" "),t.isLoading?t._e():e("router-view",{attrs:{plan:t.plan}}),t._v(" "),t.isLoading?e("div",{attrs:{id:"loader"}},[e("Spinner")],1):t._e()],1)}),[],!1,null,null,null).exports},9250:(t,e,a)=>{a.r(e),a.d(e,{default:()=>p});var n=a(3037),r=a(3592),i=a(9669),s=a.n(i),o=a(629);function l(t,e){var a=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),a.push.apply(a,n)}return a}function c(t){for(var e=1;e<arguments.length;e++){var a=null!=arguments[e]?arguments[e]:{};e%2?l(Object(a),!0).forEach((function(e){d(t,e,a[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(a)):l(Object(a)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(a,e))}))}return t}function d(t,e,a){return e in t?Object.defineProperty(t,e,{value:a,enumerable:!0,configurable:!0,writable:!0}):t[e]=a,t}const u={name:"MeteredPlan",components:{CardNavigation:n.Z,Spinner:r.Z},computed:c(c({},(0,o.Se)(["config"])),{},{pages:function(){var t=[{title:this.$t("settings"),route:"PlanMeteredSettings"},{title:this.$t("subscribers"),route:"PlanMeteredSubscribers"}];return this.plan&&"active"===this.plan.attributes.status&&t.push({title:this.$t("delete_plan"),route:"PlanMeteredDelete"}),t}}),data:function(){return{isLoading:!0,plan:void 0}},created:function(){var t=this;s().get("/api/subscriptions/admin/plans/"+this.$route.params.id).then((function(e){t.plan=e.data.data})).finally((function(){t.isLoading=!1}))}};const p=(0,a(1900).Z)(u,(function(){var t=this,e=t._self._c;return e("div",[t.plan?e("div",{staticClass:"card sticky top-0 z-10 shadow-card",staticStyle:{"padding-bottom":"0"}},[e("div",{staticClass:"mb-2"},[e("h1",{staticClass:"text-lg font-bold sm:text-xl"},[t._v("\n "+t._s(t.plan.attributes.name)+"\n ")]),t._v(" "),e("small",{staticClass:"text-xs font-bold dark:text-gray-500 text-gray-500 sm:text-sm"},[t._v("\n "+t._s(t.$t("x_days_intervals"))+"\n ")])]),t._v(" "),e("CardNavigation",{staticClass:"-mx-1",attrs:{pages:t.pages}})],1):t._e(),t._v(" "),t.isLoading?t._e():e("router-view",{attrs:{plan:t.plan}}),t._v(" "),t.isLoading?e("div",{attrs:{id:"loader"}},[e("Spinner")],1):t._e()],1)}),[],!1,null,null,null).exports}}]);
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
@@ -1 +1 @@
|
||||
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[7866],{8335:(t,n,e)=>{e.r(n),e.d(n,{default:()=>u});const s={name:"SetupWizard",mounted:function(){var t=this.$root.$data.config.installation;t&&"installation-done"===t&&this.$router.push({name:"SignIn"})}};const u=(0,e(1900).Z)(s,(function(){var t=this.$createElement;return(this._self._c||t)("router-view")}),[],!1,null,null,null).exports}}]);
|
||||
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[7866],{3022:(n,t,e)=>{e.r(t),e.d(t,{default:()=>s});const u={name:"SetupWizard",mounted:function(){var n=this.$root.$data.config.installation;n&&"installation-done"===n&&this.$router.push({name:"SignIn"})}};const s=(0,e(1900).Z)(u,(function(){return(0,this._self._c)("router-view")}),[],!1,null,null,null).exports}}]);
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
@@ -1 +1 @@
|
||||
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[6900],{5713:(t,e,n)=>{n.d(e,{Z:()=>a});var s=n(3645),r=n.n(s)()((function(t){return t[1]}));r.push([t.id,".sync-alt[data-v-0c7f3326]{-webkit-animation:spin-data-v-0c7f3326 1s linear infinite;animation:spin-data-v-0c7f3326 1s linear infinite}@-webkit-keyframes spin-data-v-0c7f3326{0%{transform:rotate(0)}to{transform:rotate(1turn)}}@keyframes spin-data-v-0c7f3326{0%{transform:rotate(0)}to{transform:rotate(1turn)}}",""]);const a=r},4026:(t,e,n)=>{n.d(e,{Z:()=>r});const s={name:"AuthContent",props:["visible","name"],data:function(){return{isVisible:!1}},created:function(){this.isVisible=this.visible}};const r=(0,n(1900).Z)(s,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.isVisible?n("div",{staticClass:"w-full max-w-xl text-center"},[t._t("default")],2):t._e()}),[],!1,null,null,null).exports},5111:(t,e,n)=>{n.d(e,{Z:()=>r});const s={name:"AuthContentWrapper"};const r=(0,n(1900).Z)(s,(function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{staticClass:"flex items-center justify-center px-2.5 md:px-6"},[t._t("default")],2)}),[],!1,null,null,null).exports},371:(t,e,n)=>{n.d(e,{Z:()=>c});var s=n(9101);const r={name:"AuthContent",props:["loading","icon","text"],components:{ChevronRightIcon:s.XCv,RefreshCwIcon:s.Iyk},data:function(){return{isVisible:!1}},created:function(){this.isVisible=this.visible}};var a=n(3379),i=n.n(a),o=n(5713),l={insert:"head",singleton:!1};i()(o.Z,l);o.Z.locals;const c=(0,n(1900).Z)(r,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("button",{staticClass:"group mx-auto inline-block flex items-center whitespace-nowrap rounded-lg border-2 border-black px-7 py-2.5 dark:border-gray-300"},[n("span",{staticClass:"pr-1 text-lg font-extrabold"},[t._v("\n "+t._s(t.text)+"\n ")]),t._v(" "),t.loading?n("refresh-cw-icon",{staticClass:"vue-feather text-theme sync-alt -mr-1",attrs:{size:"20"}}):t._e(),t._v(" "),!t.loading&&t.icon?n("chevron-right-icon",{staticClass:"vue-feather text-theme -mr-1",attrs:{size:"20"}}):t._e()],1)}),[],!1,null,"0c7f3326",null).exports},5993:(t,e,n)=>{n.d(e,{Z:()=>o});function s(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(t);e&&(s=s.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,s)}return n}function r(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?s(Object(n),!0).forEach((function(e){a(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):s(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function a(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}const i={name:"Headline",props:["description","title"],computed:r(r({},(0,n(629).Se)(["config","isDarkMode"])),{},{logoSrc:function(){return this.isDarkMode&&this.config.app_logo?this.config.app_logo_dark:this.config.app_logo}})};const o=(0,n(1900).Z)(i,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"mb-14"},[t._t("default"),t._v(" "),t.$slots.default?t._e():n("div",[t.config.app_logo?n("img",{staticClass:"mx-auto mb-6 h-16 md:h-20 mb-10",attrs:{src:t.$getImage(t.logoSrc),alt:t.config.app_name}}):t._e(),t._v(" "),t.config.app_logo?t._e():n("b",{staticClass:"mb-10 block text-xl font-bold"},[t._v("\n "+t._s(t.config.app_name)+"\n ")])]),t._v(" "),n("h1",{staticClass:"mb-0.5 text-3xl font-extrabold md:text-4xl"},[t._v("\n "+t._s(t.title)+"\n ")]),t._v(" "),n("h2",{staticClass:"text-xl font-normal md:text-2xl"},[t._v("\n "+t._s(t.description)+"\n ")])],2)}),[],!1,null,null,null).exports},8332:(t,e,n)=>{n.r(e),n.d(e,{default:()=>l});var s=n(5111),r=n(4026),a=n(371),i=n(5993);const o={name:"SuccessfullySendEmail",components:{AuthContentWrapper:s.Z,AuthContent:r.Z,AuthButton:a.Z,Headline:i.Z}};const l=(0,n(1900).Z)(o,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("AuthContentWrapper",{staticClass:"h-screen"},[n("AuthContent",{attrs:{visible:!0}},[n("Headline",{attrs:{title:t.$t("page_email_successfully_send.title"),description:t.$t("page_email_successfully_send.subtitle")}}),t._v(" "),n("span",{staticClass:"block"},[n("router-link",{staticClass:"text-theme font-bold",attrs:{to:{name:"Homepage"}}},[t._v("\n "+t._s(t.$t("go_home"))+"\n ")])],1)],1)],1)}),[],!1,null,null,null).exports}}]);
|
||||
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[6900],{5408:(t,e,n)=>{n.d(e,{Z:()=>i});var s=n(3645),r=n.n(s)()((function(t){return t[1]}));r.push([t.id,".sync-alt[data-v-0c7f3326]{-webkit-animation:spin-0c7f3326 1s linear infinite;animation:spin-0c7f3326 1s linear infinite}@-webkit-keyframes spin-0c7f3326{0%{transform:rotate(0)}to{transform:rotate(1turn)}}@keyframes spin-0c7f3326{0%{transform:rotate(0)}to{transform:rotate(1turn)}}",""]);const i=r},309:(t,e,n)=>{n.d(e,{Z:()=>r});const s={name:"AuthContent",props:["visible","name"],data:function(){return{isVisible:!1}},created:function(){this.isVisible=this.visible}};const r=(0,n(1900).Z)(s,(function(){var t=this,e=t._self._c;return t.isVisible?e("div",{staticClass:"w-full max-w-xl text-center m-auto py-6"},[t._t("default")],2):t._e()}),[],!1,null,null,null).exports},8901:(t,e,n)=>{n.d(e,{Z:()=>r});const s={name:"AuthContentWrapper"};const r=(0,n(1900).Z)(s,(function(){return(0,this._self._c)("div",{staticClass:"flex px-2.5 md:px-6"},[this._t("default")],2)}),[],!1,null,null,null).exports},3627:(t,e,n)=>{n.d(e,{Z:()=>c});var s=n(9101);const r={name:"AuthContent",props:["loading","icon","text"],components:{ChevronRightIcon:s.XCv,RefreshCwIcon:s.Iyk},data:function(){return{isVisible:!1}},created:function(){this.isVisible=this.visible}};var i=n(3379),o=n.n(i),a=n(5408),l={insert:"head",singleton:!1};o()(a.Z,l);a.Z.locals;const c=(0,n(1900).Z)(r,(function(){var t=this,e=t._self._c;return e("button",{staticClass:"group mx-auto inline-block flex items-center whitespace-nowrap rounded-lg border-2 border-black px-7 py-2.5 dark:border-gray-300"},[e("span",{staticClass:"pr-1 text-lg font-extrabold"},[t._v("\n "+t._s(t.text)+"\n ")]),t._v(" "),t.loading?e("refresh-cw-icon",{staticClass:"vue-feather text-theme sync-alt -mr-1",attrs:{size:"20"}}):t._e(),t._v(" "),!t.loading&&t.icon?e("chevron-right-icon",{staticClass:"vue-feather text-theme -mr-1",attrs:{size:"20"}}):t._e()],1)}),[],!1,null,"0c7f3326",null).exports},1191:(t,e,n)=>{n.d(e,{Z:()=>a});function s(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(t);e&&(s=s.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,s)}return n}function r(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?s(Object(n),!0).forEach((function(e){i(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):s(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function i(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}const o={name:"Headline",props:["description","title"],computed:r(r({},(0,n(629).Se)(["config","isDarkMode"])),{},{logoSrc:function(){return this.isDarkMode&&this.config.app_logo?this.config.app_logo_dark:this.config.app_logo}})};const a=(0,n(1900).Z)(o,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"mb-14"},[t._t("default"),t._v(" "),t.$slots.default?t._e():e("div",[t.config.app_logo?e("img",{staticClass:"mx-auto mb-6 h-16 md:h-20 mb-10",attrs:{src:t.$getImage(t.logoSrc),alt:t.config.app_name}}):t._e(),t._v(" "),t.config.app_logo?t._e():e("b",{staticClass:"mb-10 block text-xl font-bold"},[t._v("\n "+t._s(t.config.app_name)+"\n ")])]),t._v(" "),e("h1",{staticClass:"mb-0.5 text-3xl font-extrabold md:text-4xl"},[t._v("\n "+t._s(t.title)+"\n ")]),t._v(" "),e("h2",{staticClass:"text-xl font-normal md:text-2xl"},[t._v("\n "+t._s(t.description)+"\n ")])],2)}),[],!1,null,null,null).exports},5486:(t,e,n)=>{n.r(e),n.d(e,{default:()=>l});var s=n(8901),r=n(309),i=n(3627),o=n(1191);const a={name:"SuccessfullySendEmail",components:{AuthContentWrapper:s.Z,AuthContent:r.Z,AuthButton:i.Z,Headline:o.Z}};const l=(0,n(1900).Z)(a,(function(){var t=this,e=t._self._c;return e("AuthContentWrapper",{staticClass:"h-screen"},[e("AuthContent",{attrs:{visible:!0}},[e("Headline",{attrs:{title:t.$t("page_email_successfully_send.title"),description:t.$t("page_email_successfully_send.subtitle")}}),t._v(" "),e("span",{staticClass:"block"},[e("router-link",{staticClass:"text-theme font-bold",attrs:{to:{name:"Homepage"}}},[t._v("\n "+t._s(t.$t("go_home"))+"\n ")])],1)],1)],1)}),[],!1,null,null,null).exports}}]);
|
||||
+1
-1
@@ -1 +1 @@
|
||||
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[8283],{5713:(t,e,n)=>{n.d(e,{Z:()=>i});var r=n(3645),s=n.n(r)()((function(t){return t[1]}));s.push([t.id,".sync-alt[data-v-0c7f3326]{-webkit-animation:spin-data-v-0c7f3326 1s linear infinite;animation:spin-data-v-0c7f3326 1s linear infinite}@-webkit-keyframes spin-data-v-0c7f3326{0%{transform:rotate(0)}to{transform:rotate(1turn)}}@keyframes spin-data-v-0c7f3326{0%{transform:rotate(0)}to{transform:rotate(1turn)}}",""]);const i=s},4026:(t,e,n)=>{n.d(e,{Z:()=>s});const r={name:"AuthContent",props:["visible","name"],data:function(){return{isVisible:!1}},created:function(){this.isVisible=this.visible}};const s=(0,n(1900).Z)(r,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.isVisible?n("div",{staticClass:"w-full max-w-xl text-center"},[t._t("default")],2):t._e()}),[],!1,null,null,null).exports},5111:(t,e,n)=>{n.d(e,{Z:()=>s});const r={name:"AuthContentWrapper"};const s=(0,n(1900).Z)(r,(function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{staticClass:"flex items-center justify-center px-2.5 md:px-6"},[t._t("default")],2)}),[],!1,null,null,null).exports},371:(t,e,n)=>{n.d(e,{Z:()=>c});var r=n(9101);const s={name:"AuthContent",props:["loading","icon","text"],components:{ChevronRightIcon:r.XCv,RefreshCwIcon:r.Iyk},data:function(){return{isVisible:!1}},created:function(){this.isVisible=this.visible}};var i=n(3379),a=n.n(i),o=n(5713),l={insert:"head",singleton:!1};a()(o.Z,l);o.Z.locals;const c=(0,n(1900).Z)(s,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("button",{staticClass:"group mx-auto inline-block flex items-center whitespace-nowrap rounded-lg border-2 border-black px-7 py-2.5 dark:border-gray-300"},[n("span",{staticClass:"pr-1 text-lg font-extrabold"},[t._v("\n "+t._s(t.text)+"\n ")]),t._v(" "),t.loading?n("refresh-cw-icon",{staticClass:"vue-feather text-theme sync-alt -mr-1",attrs:{size:"20"}}):t._e(),t._v(" "),!t.loading&&t.icon?n("chevron-right-icon",{staticClass:"vue-feather text-theme -mr-1",attrs:{size:"20"}}):t._e()],1)}),[],!1,null,"0c7f3326",null).exports},5993:(t,e,n)=>{n.d(e,{Z:()=>o});function r(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function s(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?r(Object(n),!0).forEach((function(e){i(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):r(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function i(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}const a={name:"Headline",props:["description","title"],computed:s(s({},(0,n(629).Se)(["config","isDarkMode"])),{},{logoSrc:function(){return this.isDarkMode&&this.config.app_logo?this.config.app_logo_dark:this.config.app_logo}})};const o=(0,n(1900).Z)(a,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"mb-14"},[t._t("default"),t._v(" "),t.$slots.default?t._e():n("div",[t.config.app_logo?n("img",{staticClass:"mx-auto mb-6 h-16 md:h-20 mb-10",attrs:{src:t.$getImage(t.logoSrc),alt:t.config.app_name}}):t._e(),t._v(" "),t.config.app_logo?t._e():n("b",{staticClass:"mb-10 block text-xl font-bold"},[t._v("\n "+t._s(t.config.app_name)+"\n ")])]),t._v(" "),n("h1",{staticClass:"mb-0.5 text-3xl font-extrabold md:text-4xl"},[t._v("\n "+t._s(t.title)+"\n ")]),t._v(" "),n("h2",{staticClass:"text-xl font-normal md:text-2xl"},[t._v("\n "+t._s(t.description)+"\n ")])],2)}),[],!1,null,null,null).exports},2883:(t,e,n)=>{n.r(e),n.d(e,{default:()=>l});var r=n(5111),s=n(4026),i=n(371),a=n(5993);const o={name:"SuccessfullyEmailVerified",components:{AuthContentWrapper:r.Z,AuthContent:s.Z,AuthButton:i.Z,Headline:a.Z}};const l=(0,n(1900).Z)(o,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("AuthContentWrapper",{staticClass:"h-screen"},[n("AuthContent",{attrs:{visible:!0}},[n("Headline",{attrs:{title:t.$t("page_email_successfully_verified.title"),description:t.$t("page_email_successfully_verified.subtitle")}}),t._v(" "),n("router-link",{attrs:{to:{name:"SignIn"}}},[n("AuthButton",{attrs:{icon:"chevron-right",text:t.$t("log_in")}})],1)],1)],1)}),[],!1,null,null,null).exports}}]);
|
||||
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[8283],{5408:(t,e,n)=>{n.d(e,{Z:()=>i});var r=n(3645),s=n.n(r)()((function(t){return t[1]}));s.push([t.id,".sync-alt[data-v-0c7f3326]{-webkit-animation:spin-0c7f3326 1s linear infinite;animation:spin-0c7f3326 1s linear infinite}@-webkit-keyframes spin-0c7f3326{0%{transform:rotate(0)}to{transform:rotate(1turn)}}@keyframes spin-0c7f3326{0%{transform:rotate(0)}to{transform:rotate(1turn)}}",""]);const i=s},309:(t,e,n)=>{n.d(e,{Z:()=>s});const r={name:"AuthContent",props:["visible","name"],data:function(){return{isVisible:!1}},created:function(){this.isVisible=this.visible}};const s=(0,n(1900).Z)(r,(function(){var t=this,e=t._self._c;return t.isVisible?e("div",{staticClass:"w-full max-w-xl text-center m-auto py-6"},[t._t("default")],2):t._e()}),[],!1,null,null,null).exports},8901:(t,e,n)=>{n.d(e,{Z:()=>s});const r={name:"AuthContentWrapper"};const s=(0,n(1900).Z)(r,(function(){return(0,this._self._c)("div",{staticClass:"flex px-2.5 md:px-6"},[this._t("default")],2)}),[],!1,null,null,null).exports},3627:(t,e,n)=>{n.d(e,{Z:()=>c});var r=n(9101);const s={name:"AuthContent",props:["loading","icon","text"],components:{ChevronRightIcon:r.XCv,RefreshCwIcon:r.Iyk},data:function(){return{isVisible:!1}},created:function(){this.isVisible=this.visible}};var i=n(3379),o=n.n(i),a=n(5408),l={insert:"head",singleton:!1};o()(a.Z,l);a.Z.locals;const c=(0,n(1900).Z)(s,(function(){var t=this,e=t._self._c;return e("button",{staticClass:"group mx-auto inline-block flex items-center whitespace-nowrap rounded-lg border-2 border-black px-7 py-2.5 dark:border-gray-300"},[e("span",{staticClass:"pr-1 text-lg font-extrabold"},[t._v("\n "+t._s(t.text)+"\n ")]),t._v(" "),t.loading?e("refresh-cw-icon",{staticClass:"vue-feather text-theme sync-alt -mr-1",attrs:{size:"20"}}):t._e(),t._v(" "),!t.loading&&t.icon?e("chevron-right-icon",{staticClass:"vue-feather text-theme -mr-1",attrs:{size:"20"}}):t._e()],1)}),[],!1,null,"0c7f3326",null).exports},1191:(t,e,n)=>{n.d(e,{Z:()=>a});function r(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function s(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?r(Object(n),!0).forEach((function(e){i(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):r(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function i(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}const o={name:"Headline",props:["description","title"],computed:s(s({},(0,n(629).Se)(["config","isDarkMode"])),{},{logoSrc:function(){return this.isDarkMode&&this.config.app_logo?this.config.app_logo_dark:this.config.app_logo}})};const a=(0,n(1900).Z)(o,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"mb-14"},[t._t("default"),t._v(" "),t.$slots.default?t._e():e("div",[t.config.app_logo?e("img",{staticClass:"mx-auto mb-6 h-16 md:h-20 mb-10",attrs:{src:t.$getImage(t.logoSrc),alt:t.config.app_name}}):t._e(),t._v(" "),t.config.app_logo?t._e():e("b",{staticClass:"mb-10 block text-xl font-bold"},[t._v("\n "+t._s(t.config.app_name)+"\n ")])]),t._v(" "),e("h1",{staticClass:"mb-0.5 text-3xl font-extrabold md:text-4xl"},[t._v("\n "+t._s(t.title)+"\n ")]),t._v(" "),e("h2",{staticClass:"text-xl font-normal md:text-2xl"},[t._v("\n "+t._s(t.description)+"\n ")])],2)}),[],!1,null,null,null).exports},3818:(t,e,n)=>{n.r(e),n.d(e,{default:()=>l});var r=n(8901),s=n(309),i=n(3627),o=n(1191);const a={name:"SuccessfullyEmailVerified",components:{AuthContentWrapper:r.Z,AuthContent:s.Z,AuthButton:i.Z,Headline:o.Z}};const l=(0,n(1900).Z)(a,(function(){var t=this,e=t._self._c;return e("AuthContentWrapper",{staticClass:"h-screen"},[e("AuthContent",{attrs:{visible:!0}},[e("Headline",{attrs:{title:t.$t("page_email_successfully_verified.title"),description:t.$t("page_email_successfully_verified.subtitle")}}),t._v(" "),e("router-link",{attrs:{to:{name:"SignIn"}}},[e("AuthButton",{attrs:{icon:"chevron-right",text:t.$t("log_in")}})],1)],1)],1)}),[],!1,null,null,null).exports}}]);
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
@@ -1 +1 @@
|
||||
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[6707],{4026:(t,e,n)=>{n.d(e,{Z:()=>a});const r={name:"AuthContent",props:["visible","name"],data:function(){return{isVisible:!1}},created:function(){this.isVisible=this.visible}};const a=(0,n(1900).Z)(r,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.isVisible?n("div",{staticClass:"w-full max-w-xl text-center"},[t._t("default")],2):t._e()}),[],!1,null,null,null).exports},5111:(t,e,n)=>{n.d(e,{Z:()=>a});const r={name:"AuthContentWrapper"};const a=(0,n(1900).Z)(r,(function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{staticClass:"flex items-center justify-center px-2.5 md:px-6"},[t._t("default")],2)}),[],!1,null,null,null).exports},5993:(t,e,n)=>{n.d(e,{Z:()=>i});function r(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function a(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?r(Object(n),!0).forEach((function(e){l(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):r(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function l(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}const s={name:"Headline",props:["description","title"],computed:a(a({},(0,n(629).Se)(["config","isDarkMode"])),{},{logoSrc:function(){return this.isDarkMode&&this.config.app_logo?this.config.app_logo_dark:this.config.app_logo}})};const i=(0,n(1900).Z)(s,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"mb-14"},[t._t("default"),t._v(" "),t.$slots.default?t._e():n("div",[t.config.app_logo?n("img",{staticClass:"mx-auto mb-6 h-16 md:h-20 mb-10",attrs:{src:t.$getImage(t.logoSrc),alt:t.config.app_name}}):t._e(),t._v(" "),t.config.app_logo?t._e():n("b",{staticClass:"mb-10 block text-xl font-bold"},[t._v("\n "+t._s(t.config.app_name)+"\n ")])]),t._v(" "),n("h1",{staticClass:"mb-0.5 text-3xl font-extrabold md:text-4xl"},[t._v("\n "+t._s(t.title)+"\n ")]),t._v(" "),n("h2",{staticClass:"text-xl font-normal md:text-2xl"},[t._v("\n "+t._s(t.description)+"\n ")])],2)}),[],!1,null,null,null).exports},898:(t,e,n)=>{n.r(e),n.d(e,{default:()=>i});var r=n(5111),a=n(4026),l=n(5993);const s={name:"TemporaryUnavailable",components:{AuthContentWrapper:r.Z,AuthContent:a.Z,Headline:l.Z}};const i=(0,n(1900).Z)(s,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("AuthContentWrapper",{ref:"auth",staticClass:"h-screen"},[n("AuthContent",{attrs:{visible:!0}},[n("Headline",{attrs:{title:t.$t("temporary_unavailable"),description:t.$t("shared_link_temporary_unavailable")}}),t._v(" "),n("span",{staticClass:"additional-link"},[t._v(t._s(t.$t("page_registration.have_an_account"))+"\n "),n("router-link",{staticClass:"text-theme font-bold",attrs:{to:{name:"SignIn"}}},[t._v("\n "+t._s(t.$t("log_in"))+"\n ")])],1)],1)],1)}),[],!1,null,null,null).exports}}]);
|
||||
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[6707],{309:(t,e,n)=>{n.d(e,{Z:()=>s});const r={name:"AuthContent",props:["visible","name"],data:function(){return{isVisible:!1}},created:function(){this.isVisible=this.visible}};const s=(0,n(1900).Z)(r,(function(){var t=this,e=t._self._c;return t.isVisible?e("div",{staticClass:"w-full max-w-xl text-center m-auto py-6"},[t._t("default")],2):t._e()}),[],!1,null,null,null).exports},8901:(t,e,n)=>{n.d(e,{Z:()=>s});const r={name:"AuthContentWrapper"};const s=(0,n(1900).Z)(r,(function(){return(0,this._self._c)("div",{staticClass:"flex px-2.5 md:px-6"},[this._t("default")],2)}),[],!1,null,null,null).exports},1191:(t,e,n)=>{n.d(e,{Z:()=>o});function r(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function s(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?r(Object(n),!0).forEach((function(e){a(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):r(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function a(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}const l={name:"Headline",props:["description","title"],computed:s(s({},(0,n(629).Se)(["config","isDarkMode"])),{},{logoSrc:function(){return this.isDarkMode&&this.config.app_logo?this.config.app_logo_dark:this.config.app_logo}})};const o=(0,n(1900).Z)(l,(function(){var t=this,e=t._self._c;return e("div",{staticClass:"mb-14"},[t._t("default"),t._v(" "),t.$slots.default?t._e():e("div",[t.config.app_logo?e("img",{staticClass:"mx-auto mb-6 h-16 md:h-20 mb-10",attrs:{src:t.$getImage(t.logoSrc),alt:t.config.app_name}}):t._e(),t._v(" "),t.config.app_logo?t._e():e("b",{staticClass:"mb-10 block text-xl font-bold"},[t._v("\n "+t._s(t.config.app_name)+"\n ")])]),t._v(" "),e("h1",{staticClass:"mb-0.5 text-3xl font-extrabold md:text-4xl"},[t._v("\n "+t._s(t.title)+"\n ")]),t._v(" "),e("h2",{staticClass:"text-xl font-normal md:text-2xl"},[t._v("\n "+t._s(t.description)+"\n ")])],2)}),[],!1,null,null,null).exports},1359:(t,e,n)=>{n.r(e),n.d(e,{default:()=>o});var r=n(8901),s=n(309),a=n(1191);const l={name:"TemporaryUnavailable",components:{AuthContentWrapper:r.Z,AuthContent:s.Z,Headline:a.Z}};const o=(0,n(1900).Z)(l,(function(){var t=this,e=t._self._c;return e("AuthContentWrapper",{ref:"auth",staticClass:"h-screen"},[e("AuthContent",{attrs:{visible:!0}},[e("Headline",{attrs:{title:t.$t("temporary_unavailable"),description:t.$t("shared_link_temporary_unavailable")}}),t._v(" "),e("span",{staticClass:"additional-link"},[t._v(t._s(t.$t("page_registration.have_an_account"))+"\n "),e("router-link",{staticClass:"text-theme font-bold",attrs:{to:{name:"SignIn"}}},[t._v("\n "+t._s(t.$t("log_in"))+"\n ")])],1)],1)],1)}),[],!1,null,null,null).exports}}]);
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -1,11 +1,5 @@
|
||||
/*!
|
||||
* vue-script2 v2.1.0
|
||||
* (c) 2016-2019 Greg Slepak
|
||||
* @license MIT License
|
||||
*/
|
||||
|
||||
/*!
|
||||
* Pusher JavaScript Library v7.0.6
|
||||
* Pusher JavaScript Library v7.3.0
|
||||
* https://pusher.com/
|
||||
*
|
||||
* Copyright 2020, Pusher
|
||||
@@ -13,8 +7,8 @@
|
||||
*/
|
||||
|
||||
/*!
|
||||
* Vue.js v2.6.14
|
||||
* (c) 2014-2021 Evan You
|
||||
* Vue.js v2.7.8
|
||||
* (c) 2014-2022 Evan You
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
|
||||
@@ -24,6 +18,8 @@
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|
||||
|
||||
/**
|
||||
* @license
|
||||
* Lodash <https://lodash.com/>
|
||||
|
||||
+71
-71
@@ -1,76 +1,76 @@
|
||||
{
|
||||
"/js/main.js": "/js/main.js",
|
||||
"/chunks/request.js": "/chunks/request.js?id=d6517366f16e7b4d",
|
||||
"/chunks/request-upload.js": "/chunks/request-upload.js?id=34d9480695b0b3db",
|
||||
"/chunks/setup-wizard.js": "/chunks/setup-wizard.js?id=3c2fc454c3fce8d2",
|
||||
"/chunks/status-check.js": "/chunks/status-check.js?id=44685686b881308a",
|
||||
"/chunks/purchase-code.js": "/chunks/purchase-code.js?id=f858e6cd4e9e59f6",
|
||||
"/chunks/database.js": "/chunks/database.js?id=56c814ac7a530010",
|
||||
"/chunks/environment.js": "/chunks/environment.js?id=1cf279f28dcb597f",
|
||||
"/chunks/app-setup.js": "/chunks/app-setup.js?id=2efed338e56fccab",
|
||||
"/chunks/admin-account.js": "/chunks/admin-account.js?id=e8c8b0f2c83e8736",
|
||||
"/chunks/shared.js": "/chunks/shared.js?id=33f57a68e2dd13fd",
|
||||
"/chunks/shared/browser.js": "/chunks/shared/browser.js?id=0f9b6a07b2d5e3d5",
|
||||
"/chunks/shared/single-file.js": "/chunks/shared/single-file.js?id=e1c8e5537cba1734",
|
||||
"/chunks/shared/authenticate.js": "/chunks/shared/authenticate.js?id=bdbfd1bc1ce194b3",
|
||||
"/chunks/not-found.js": "/chunks/not-found.js?id=bd6f4028c9d5f194",
|
||||
"/chunks/temporary-unavailable.js": "/chunks/temporary-unavailable.js?id=f1cbdc3b62c510de",
|
||||
"/chunks/admin.js": "/chunks/admin.js?id=1269e33cbe155717",
|
||||
"/chunks/dashboard.js": "/chunks/dashboard.js?id=50f9ca92c1fb1056",
|
||||
"/chunks/invoices.js": "/chunks/invoices.js?id=2ad8029efb381c2a",
|
||||
"/chunks/subscriptions.js": "/chunks/subscriptions.js?id=e081b6ee62f749d1",
|
||||
"/chunks/pages.js": "/chunks/pages.js?id=e4dffd90dbd041de",
|
||||
"/chunks/page-edit.js": "/chunks/page-edit.js?id=9b21bfa01a9a4cc2",
|
||||
"/chunks/plans.js": "/chunks/plans.js?id=45634f1499de207e",
|
||||
"/chunks/users.js": "/chunks/users.js?id=46520527325c005f",
|
||||
"/chunks/user-create.js": "/chunks/user-create.js?id=4210ecb12e1bc179",
|
||||
"/chunks/plan-create/fixed.js": "/chunks/plan-create/fixed.js?id=7b62c646529ce70d",
|
||||
"/chunks/plan-create/metered.js": "/chunks/plan-create/metered.js?id=b10c10c76e15f380",
|
||||
"/chunks/user.js": "/chunks/user.js?id=8f1f08244520be73",
|
||||
"/chunks/user-detail.js": "/chunks/user-detail.js?id=d22afa05b9a3757f",
|
||||
"/chunks/user-storage.js": "/chunks/user-storage.js?id=7fe7900e2af5b0d6",
|
||||
"/chunks/user-subscription.js": "/chunks/user-subscription.js?id=df8b67661a90e559",
|
||||
"/chunks/user-password.js": "/chunks/user-password.js?id=2f6feb7b2fe85993",
|
||||
"/chunks/user-delete.js": "/chunks/user-delete.js?id=556ee0e95b61526c",
|
||||
"/chunks/plan.js": "/chunks/plan.js?id=64c2482191d0264f",
|
||||
"/chunks/plan-subscribers.js": "/chunks/plan-subscribers.js?id=b171c0d1b134f7b4",
|
||||
"/chunks/plan-settings.js": "/chunks/plan-settings.js?id=4bc51268f02e0e22",
|
||||
"/chunks/plan-delete.js": "/chunks/plan-delete.js?id=c70ebcff48b7f1fd",
|
||||
"/chunks/payments.js": "/chunks/payments.js?id=995c8bd6ac4c5770",
|
||||
"/chunks/payments/billings.js": "/chunks/payments/billings.js?id=03f371c8b1ce81da",
|
||||
"/chunks/payments/settings.js": "/chunks/payments/settings.js?id=c23bb951788b8df8",
|
||||
"/chunks/app-settings.js": "/chunks/app-settings.js?id=6fd0fd89ccfdd290",
|
||||
"/chunks/app-appearance.js": "/chunks/app-appearance.js?id=0eb829fd80113549",
|
||||
"/chunks/app-index.js": "/chunks/app-index.js?id=22b024b841518628",
|
||||
"/chunks/app-environment.js": "/chunks/app-environment.js?id=19c4201c3884f80b",
|
||||
"/chunks/app-others.js": "/chunks/app-others.js?id=44647e5dacec3146",
|
||||
"/chunks/app-sign-in-out.js": "/chunks/app-sign-in-out.js?id=9d9adc0f9adf64b5",
|
||||
"/chunks/app-adsense.js": "/chunks/app-adsense.js?id=abe3fd03fc6aa6b5",
|
||||
"/chunks/app-server.js": "/chunks/app-server.js?id=6b9b73faa772372d",
|
||||
"/chunks/app-language.js": "/chunks/app-language.js?id=0d67a5ffe354681b",
|
||||
"/chunks/homepage.js": "/chunks/homepage.js?id=fcabc98cf275d1e4",
|
||||
"/chunks/dynamic-page.js": "/chunks/dynamic-page.js?id=8f0e89961cc767ef",
|
||||
"/chunks/contact-us.js": "/chunks/contact-us.js?id=e6902071177114a9",
|
||||
"/chunks/demo.js": "/chunks/demo.js?id=ba84ea5e95dff084",
|
||||
"/chunks/successfully-email-verified.js": "/chunks/successfully-email-verified.js?id=5ac8ec655bcb572a",
|
||||
"/chunks/successfully-email-send.js": "/chunks/successfully-email-send.js?id=2086cf5e64520632",
|
||||
"/chunks/sign-in.js": "/chunks/sign-in.js?id=4d7cf0728c24f64f",
|
||||
"/chunks/sign-up.js": "/chunks/sign-up.js?id=efd32a18f36acdd3",
|
||||
"/chunks/forgotten-password.js": "/chunks/forgotten-password.js?id=c47bdfe70136b01f",
|
||||
"/chunks/create-new-password.js": "/chunks/create-new-password.js?id=ba2e1007acbe3e19",
|
||||
"/chunks/settings.js": "/chunks/settings.js?id=16569ecc45d329a5",
|
||||
"/chunks/profile.js": "/chunks/profile.js?id=5b0bc3af761389bb",
|
||||
"/chunks/settings-password.js": "/chunks/settings-password.js?id=3aecc301e7a35dcb",
|
||||
"/chunks/settings-storage.js": "/chunks/settings-storage.js?id=7c0f9d623e284c77",
|
||||
"/chunks/billing.js": "/chunks/billing.js?id=5778be0e201f1c46",
|
||||
"/chunks/platform.js": "/chunks/platform.js?id=8771ff88d211ee30",
|
||||
"/chunks/files.js": "/chunks/files.js?id=bb6cf4622ef19877",
|
||||
"/chunks/recent-uploads.js": "/chunks/recent-uploads.js?id=5c96928cd24e1189",
|
||||
"/chunks/my-shared-items.js": "/chunks/my-shared-items.js?id=db935ea38aac76d5",
|
||||
"/chunks/trash.js": "/chunks/trash.js?id=90f55386befcaaac",
|
||||
"/chunks/team-folders.js": "/chunks/team-folders.js?id=f0052da1f3440630",
|
||||
"/chunks/shared-with-me.js": "/chunks/shared-with-me.js?id=7b577eb32a0ead2c",
|
||||
"/chunks/invitation.js": "/chunks/invitation.js?id=26703e583c07a989",
|
||||
"/chunks/request.js": "/chunks/request.js?id=24e5a5b2f135d39e",
|
||||
"/chunks/request-upload.js": "/chunks/request-upload.js?id=1fececdb666b7499",
|
||||
"/chunks/setup-wizard.js": "/chunks/setup-wizard.js?id=3d59c279540eccd7",
|
||||
"/chunks/status-check.js": "/chunks/status-check.js?id=93f87d94efcedc18",
|
||||
"/chunks/purchase-code.js": "/chunks/purchase-code.js?id=320e3fc4cf8b8c2a",
|
||||
"/chunks/database.js": "/chunks/database.js?id=5b1a99ccb29936db",
|
||||
"/chunks/environment.js": "/chunks/environment.js?id=301a287e694c95f0",
|
||||
"/chunks/app-setup.js": "/chunks/app-setup.js?id=a1f145a78a991227",
|
||||
"/chunks/admin-account.js": "/chunks/admin-account.js?id=27307041d4424315",
|
||||
"/chunks/shared.js": "/chunks/shared.js?id=2a1ad4917d8455b6",
|
||||
"/chunks/shared/browser.js": "/chunks/shared/browser.js?id=91073d6c2aaaf6fd",
|
||||
"/chunks/shared/single-file.js": "/chunks/shared/single-file.js?id=b9ad0ca8d6cf9c85",
|
||||
"/chunks/shared/authenticate.js": "/chunks/shared/authenticate.js?id=53b64cff4293869c",
|
||||
"/chunks/not-found.js": "/chunks/not-found.js?id=6db7525f9a230ad7",
|
||||
"/chunks/temporary-unavailable.js": "/chunks/temporary-unavailable.js?id=dac7c2c9f65f21b0",
|
||||
"/chunks/admin.js": "/chunks/admin.js?id=017e4b1c9b437481",
|
||||
"/chunks/dashboard.js": "/chunks/dashboard.js?id=2d4e3f496499dcff",
|
||||
"/chunks/invoices.js": "/chunks/invoices.js?id=dea58c6e9688b491",
|
||||
"/chunks/subscriptions.js": "/chunks/subscriptions.js?id=69f0375002134da8",
|
||||
"/chunks/pages.js": "/chunks/pages.js?id=2915af7add4cc8a6",
|
||||
"/chunks/page-edit.js": "/chunks/page-edit.js?id=a5f7b0e18cdf5718",
|
||||
"/chunks/plans.js": "/chunks/plans.js?id=c606d61c1bef613e",
|
||||
"/chunks/users.js": "/chunks/users.js?id=68bae8ec1347b90a",
|
||||
"/chunks/user-create.js": "/chunks/user-create.js?id=4c44396a09188a12",
|
||||
"/chunks/plan-create/fixed.js": "/chunks/plan-create/fixed.js?id=aadbfeace2fb8cbc",
|
||||
"/chunks/plan-create/metered.js": "/chunks/plan-create/metered.js?id=2df58c1f8132a61b",
|
||||
"/chunks/user.js": "/chunks/user.js?id=422f2f6e6ed491d6",
|
||||
"/chunks/user-detail.js": "/chunks/user-detail.js?id=0b999f1d0687cf90",
|
||||
"/chunks/user-storage.js": "/chunks/user-storage.js?id=654fc8848a6722e4",
|
||||
"/chunks/user-subscription.js": "/chunks/user-subscription.js?id=644409c1ea6afc31",
|
||||
"/chunks/user-password.js": "/chunks/user-password.js?id=dbdf5d4e6d7e00ed",
|
||||
"/chunks/user-delete.js": "/chunks/user-delete.js?id=4e574b15b4b189d2",
|
||||
"/chunks/plan.js": "/chunks/plan.js?id=11d645f8108bf939",
|
||||
"/chunks/plan-subscribers.js": "/chunks/plan-subscribers.js?id=fd4c6b64b9c2ee22",
|
||||
"/chunks/plan-settings.js": "/chunks/plan-settings.js?id=6d8aca51ded6db26",
|
||||
"/chunks/plan-delete.js": "/chunks/plan-delete.js?id=b832b6913084c33a",
|
||||
"/chunks/payments.js": "/chunks/payments.js?id=52dba061f588b570",
|
||||
"/chunks/payments/billings.js": "/chunks/payments/billings.js?id=a0006524a7e2db1d",
|
||||
"/chunks/payments/settings.js": "/chunks/payments/settings.js?id=a5484fd31a6245ce",
|
||||
"/chunks/app-settings.js": "/chunks/app-settings.js?id=69801583df2560eb",
|
||||
"/chunks/app-appearance.js": "/chunks/app-appearance.js?id=30f33477df9abc96",
|
||||
"/chunks/app-index.js": "/chunks/app-index.js?id=57f19b6a5bdaad67",
|
||||
"/chunks/app-environment.js": "/chunks/app-environment.js?id=f7adab2b261bae51",
|
||||
"/chunks/app-others.js": "/chunks/app-others.js?id=0dacc12152cc024e",
|
||||
"/chunks/app-sign-in-out.js": "/chunks/app-sign-in-out.js?id=90aa480bef0db73c",
|
||||
"/chunks/app-adsense.js": "/chunks/app-adsense.js?id=9de9f8ddc4cdeca2",
|
||||
"/chunks/app-server.js": "/chunks/app-server.js?id=c1ba7809b184cf55",
|
||||
"/chunks/app-language.js": "/chunks/app-language.js?id=d7f0fbba18444513",
|
||||
"/chunks/homepage.js": "/chunks/homepage.js?id=74591a549e496117",
|
||||
"/chunks/dynamic-page.js": "/chunks/dynamic-page.js?id=fe7e9aa0bacd555a",
|
||||
"/chunks/contact-us.js": "/chunks/contact-us.js?id=e28a0cc6bc290c91",
|
||||
"/chunks/demo.js": "/chunks/demo.js?id=3194d943636a3291",
|
||||
"/chunks/successfully-email-verified.js": "/chunks/successfully-email-verified.js?id=62261818a28dc954",
|
||||
"/chunks/successfully-email-send.js": "/chunks/successfully-email-send.js?id=6e6eeb754b2885ba",
|
||||
"/chunks/sign-in.js": "/chunks/sign-in.js?id=6d565e8acfc80d48",
|
||||
"/chunks/sign-up.js": "/chunks/sign-up.js?id=afda8b77ab196bb5",
|
||||
"/chunks/forgotten-password.js": "/chunks/forgotten-password.js?id=0af1e98e4815cbb6",
|
||||
"/chunks/create-new-password.js": "/chunks/create-new-password.js?id=548b78f5a7ad566e",
|
||||
"/chunks/settings.js": "/chunks/settings.js?id=56f2eeebb046b2b9",
|
||||
"/chunks/profile.js": "/chunks/profile.js?id=effe2f332a91739f",
|
||||
"/chunks/settings-password.js": "/chunks/settings-password.js?id=bd5cafee19eb3c2d",
|
||||
"/chunks/settings-storage.js": "/chunks/settings-storage.js?id=2815b8f0a631832a",
|
||||
"/chunks/billing.js": "/chunks/billing.js?id=6ecaaefbc9d90d59",
|
||||
"/chunks/platform.js": "/chunks/platform.js?id=12fb39919a4f7649",
|
||||
"/chunks/files.js": "/chunks/files.js?id=8baa177afd765ca3",
|
||||
"/chunks/recent-uploads.js": "/chunks/recent-uploads.js?id=c87c76bad16c2931",
|
||||
"/chunks/my-shared-items.js": "/chunks/my-shared-items.js?id=258109ed03ca7da3",
|
||||
"/chunks/trash.js": "/chunks/trash.js?id=aaef6e404577cb44",
|
||||
"/chunks/team-folders.js": "/chunks/team-folders.js?id=eadb12efc3403883",
|
||||
"/chunks/shared-with-me.js": "/chunks/shared-with-me.js?id=ba53625baac5ae60",
|
||||
"/chunks/invitation.js": "/chunks/invitation.js?id=ea477c80cb20b626",
|
||||
"/css/tailwind.css": "/css/tailwind.css",
|
||||
"/css/app.css": "/css/app.css"
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
{{ data.app.license }}
|
||||
</ColorLabel>
|
||||
</a>
|
||||
<b v-if="data.app.license === 'extended'" class="mr-4 inline-block">
|
||||
<b class="mr-4 inline-block">
|
||||
<span class="text-sm font-bold"> {{ $t('subscription') }}: </span>
|
||||
<ColorLabel color="purple">
|
||||
{{ config.subscriptionType }}
|
||||
|
||||
@@ -114,7 +114,7 @@
|
||||
{{ $t(row.data.attributes.role) }}
|
||||
</ColorLabel>
|
||||
</td>
|
||||
<td class="px-3 md:px-1" v-if="config.isSaaS">
|
||||
<td class="px-3 md:px-1" v-if="config.subscriptionType === 'fixed'">
|
||||
<span class="text-sm font-bold">
|
||||
{{ row.data.relationships.subscription ? $t('premium') : $t('free') }}
|
||||
</span>
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
@dragover="dragEnter"
|
||||
@dragleave="dragLeave"
|
||||
@dragover.prevent
|
||||
@scroll="infiniteScroll"
|
||||
tabindex="-1"
|
||||
@click.self="deselect"
|
||||
>
|
||||
@@ -24,21 +25,34 @@
|
||||
:key="item.data.id"
|
||||
:item="item"
|
||||
/>
|
||||
|
||||
<!-- Infinite Loader Element -->
|
||||
<div
|
||||
v-show="showInfiniteLoadSpinner"
|
||||
class="relative h-8 md:mt-0 md:mb-4 my-4 col-span-full scale-50"
|
||||
ref="infinityLoader"
|
||||
>
|
||||
<Spinner />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { getFilesFromDataTransferItems } from 'datatransfer-files-promise'
|
||||
import Spinner from '../UI/Others/Spinner'
|
||||
import ItemHandler from './ItemHandler'
|
||||
import { events } from '../../bus'
|
||||
import { mapGetters } from 'vuex'
|
||||
import { debounce } from 'lodash'
|
||||
|
||||
export default {
|
||||
name: 'FileBrowser',
|
||||
components: {
|
||||
ItemHandler,
|
||||
Spinner
|
||||
},
|
||||
computed: {
|
||||
...mapGetters(['isVisibleSidebar', 'currentFolder', 'itemViewType', 'clipboard', 'entries', 'config']),
|
||||
...mapGetters(['isVisibleSidebar', 'currentFolder', 'itemViewType', 'clipboard', 'entries', 'config', 'paginate']),
|
||||
draggedItems() {
|
||||
// Set opacity for dragged items
|
||||
if (!this.clipboard.includes(this.draggingId)) {
|
||||
@@ -49,14 +63,39 @@ export default {
|
||||
return this.clipboard
|
||||
}
|
||||
},
|
||||
canLoadMoreEntries() {
|
||||
return this.paginate?.currentPage !== this.paginate?.lastPage
|
||||
},
|
||||
showInfiniteLoadSpinner() {
|
||||
return this.canLoadMoreEntries && this.entries.length !== 0 && this.paginate.perPage <= this.entries.length
|
||||
},
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
draggingId: undefined,
|
||||
isDragging: false,
|
||||
isLoadingNewEntries: false,
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
infiniteScroll: debounce(function () {
|
||||
if (this.isInfinityLoaderAtBottomPage() && this.canLoadMoreEntries && !this.isLoadingNewEntries) {
|
||||
this.isLoadingNewEntries = true
|
||||
|
||||
this.$getDataByLocation(this.paginate.currentPage + 1)
|
||||
.then(() => this.isLoadingNewEntries = false)
|
||||
}
|
||||
}, 150),
|
||||
isInfinityLoaderAtBottomPage() {
|
||||
let rect = this.$refs.infinityLoader.getBoundingClientRect()
|
||||
|
||||
return (
|
||||
rect.bottom > 0 &&
|
||||
rect.right > 0 &&
|
||||
rect.left < (window.innerWidth || document.documentElement.clientWidth) &&
|
||||
rect.top < (window.innerHeight || document.documentElement.clientHeight)
|
||||
);
|
||||
},
|
||||
deleteItems() {
|
||||
if ((this.clipboard.length > 0 && this.$checkPermission('master')) || this.$checkPermission('editor')) {
|
||||
this.$store.dispatch('deleteItem')
|
||||
@@ -81,10 +120,21 @@ export default {
|
||||
// Store dragged folder
|
||||
this.draggingId = data
|
||||
|
||||
// TODO: founded issue on firefox
|
||||
// TODO: found issue on firefox
|
||||
},
|
||||
dragFinish(data, event) {
|
||||
if (event.dataTransfer.items.length === 0) {
|
||||
async dragFinish(data, event) {
|
||||
|
||||
if (event.dataTransfer.files.length) {
|
||||
// Check if user dropped folder with files
|
||||
let files = await getFilesFromDataTransferItems(event.dataTransfer.items)
|
||||
|
||||
if (files.length !== 0 && event.dataTransfer.items.length === 0) {
|
||||
const id = data.data.type !== 'folder' ? this.currentFolder?.data.id : data.data.id
|
||||
|
||||
// Upload folder with files
|
||||
this.$uploadDraggedFolderOrFile(files, id)
|
||||
}
|
||||
} else {
|
||||
// Prevent to drop on file or image
|
||||
if (data.data.type !== 'folder' || this.draggingId === data) return
|
||||
|
||||
@@ -106,13 +156,7 @@ export default {
|
||||
item: null,
|
||||
})
|
||||
}
|
||||
} else {
|
||||
// Get id from current folder
|
||||
const id = data.data.type !== 'folder' ? this.currentFolder?.data.id : data.data.id
|
||||
|
||||
// Upload external file
|
||||
this.$uploadDraggedFiles(event, id)
|
||||
}
|
||||
}
|
||||
|
||||
this.isDragging = false
|
||||
},
|
||||
@@ -131,6 +175,11 @@ export default {
|
||||
},
|
||||
},
|
||||
created() {
|
||||
// Track document scrolling to load new entries if needed
|
||||
if (window.innerWidth <= 1024) {
|
||||
document.addEventListener('scroll', this.infiniteScroll)
|
||||
}
|
||||
|
||||
events.$on('drop', () => {
|
||||
this.isDragging = false
|
||||
|
||||
|
||||
@@ -115,7 +115,7 @@ export default {
|
||||
'isDarkMode',
|
||||
]),
|
||||
favourites() {
|
||||
return this.user.data.relationships.favourites.data.attributes.folders
|
||||
return this.user.data.relationships.favourites.attributes.folders
|
||||
},
|
||||
storage() {
|
||||
return this.$store.getters.user.data.attributes.storage
|
||||
|
||||
@@ -132,7 +132,7 @@ export default {
|
||||
computed: {
|
||||
...mapGetters(['isVisibleNavigationBars', 'navigation', 'clipboard', 'config', 'user']),
|
||||
favourites() {
|
||||
return this.user.data.relationships.favourites.data
|
||||
return this.user.data.relationships.favourites
|
||||
},
|
||||
storage() {
|
||||
return this.$store.getters.user.data.attributes.storage
|
||||
|
||||
@@ -3,6 +3,12 @@
|
||||
class="absolute bottom-0 top-0 left-0 right-0 z-10 mx-auto overflow-y-auto rounded-xl md:p-5"
|
||||
:style="{ width: documentSize + '%' }"
|
||||
>
|
||||
<div
|
||||
v-if="isLoading"
|
||||
class="mx-auto fixed left-0 right-0 top-1/2 translate-y-5 w-full z-10"
|
||||
>
|
||||
<Spinner />
|
||||
</div>
|
||||
<pdf
|
||||
:src="pdfData"
|
||||
v-for="i in numPages"
|
||||
@@ -12,39 +18,43 @@
|
||||
scale="page-width"
|
||||
id="printable-file"
|
||||
class="mx-auto mb-6 w-full overflow-hidden md:rounded-xl md:shadow-lg"
|
||||
>
|
||||
<template slot="loading">
|
||||
<b>
|
||||
{{ $t('loading_content') }}
|
||||
</b>
|
||||
</template>
|
||||
</pdf>
|
||||
@loading="documentLoaded"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Spinner from "../../UI/Others/Spinner"
|
||||
import { events } from '../../../bus'
|
||||
import pdf from 'pdfvuer'
|
||||
|
||||
export default {
|
||||
name: 'PdfFile',
|
||||
components: {
|
||||
Spinner,
|
||||
pdf,
|
||||
},
|
||||
props: ['file'],
|
||||
props: [
|
||||
'file'
|
||||
],
|
||||
watch: {
|
||||
file() {
|
||||
this.getPdf()
|
||||
this.isLoading = true
|
||||
},
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
pdfData: undefined,
|
||||
documentSize: 50,
|
||||
isLoading: true,
|
||||
numPages: 0,
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
documentLoaded() {
|
||||
this.isLoading = false
|
||||
},
|
||||
getPdf() {
|
||||
this.pdfData = undefined
|
||||
this.numPages = 0
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
<span v-if="description" class="block text-xs leading-4 dark:text-gray-500 text-gray-500" v-html="description"></span>
|
||||
|
||||
<!--Input Description-->
|
||||
<span v-if="error" class="error-message">
|
||||
<span v-if="error" class="text-left text-xs text-red-600">
|
||||
{{ error }}
|
||||
</span>
|
||||
</div>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user