├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── __pycache__ └── locustfile.cpython-311.pyc ├── app ├── Components │ └── Admin │ │ └── Dashboard.php ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ └── Controller.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ ├── VerifyCsrfToken.php │ │ └── VerifyEmail.php │ └── Pages │ │ ├── Admin │ │ └── Dashboard.php │ │ ├── ForgotPassword.php │ │ ├── Home.php │ │ ├── Login.php │ │ ├── Register.php │ │ ├── ResetPassword.php │ │ └── VerifyEmail.php ├── Models │ └── User.php └── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── blade-heroicons.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2024_05_01_153551_create_jobs_table.php │ └── 2024_05_01_153556_create_failed_jobs_table.php └── seeders │ └── DatabaseSeeder.php ├── lang └── en │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── locustfile.py ├── package-lock.json ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── build │ ├── assets │ │ ├── app-26594b4d.js │ │ ├── app-52b82e38.js │ │ ├── app-817b7c4a.css │ │ └── app-940db5db.css │ └── manifest.json ├── favicon.png ├── img │ └── logo.svg ├── index.php ├── manifest.json ├── robots.txt ├── vendor │ ├── blade-heroicons │ │ ├── m-academic-cap.svg │ │ ├── m-adjustments-horizontal.svg │ │ ├── m-adjustments-vertical.svg │ │ ├── m-archive-box-arrow-down.svg │ │ ├── m-archive-box-x-mark.svg │ │ ├── m-archive-box.svg │ │ ├── m-arrow-down-circle.svg │ │ ├── m-arrow-down-left.svg │ │ ├── m-arrow-down-on-square-stack.svg │ │ ├── m-arrow-down-on-square.svg │ │ ├── m-arrow-down-right.svg │ │ ├── m-arrow-down-tray.svg │ │ ├── m-arrow-down.svg │ │ ├── m-arrow-left-circle.svg │ │ ├── m-arrow-left-on-rectangle.svg │ │ ├── m-arrow-left.svg │ │ ├── m-arrow-long-down.svg │ │ ├── m-arrow-long-left.svg │ │ ├── m-arrow-long-right.svg │ │ ├── m-arrow-long-up.svg │ │ ├── m-arrow-path-rounded-square.svg │ │ ├── m-arrow-path.svg │ │ ├── m-arrow-right-circle.svg │ │ ├── m-arrow-right-on-rectangle.svg │ │ ├── m-arrow-right.svg │ │ ├── m-arrow-small-down.svg │ │ ├── m-arrow-small-left.svg │ │ ├── m-arrow-small-right.svg │ │ ├── m-arrow-small-up.svg │ │ ├── m-arrow-top-right-on-square.svg │ │ ├── m-arrow-trending-down.svg │ │ ├── m-arrow-trending-up.svg │ │ ├── m-arrow-up-circle.svg │ │ ├── m-arrow-up-left.svg │ │ ├── m-arrow-up-on-square-stack.svg │ │ ├── m-arrow-up-on-square.svg │ │ ├── m-arrow-up-right.svg │ │ ├── m-arrow-up-tray.svg │ │ ├── m-arrow-up.svg │ │ ├── m-arrow-uturn-down.svg │ │ ├── m-arrow-uturn-left.svg │ │ ├── m-arrow-uturn-right.svg │ │ ├── m-arrow-uturn-up.svg │ │ ├── m-arrows-pointing-in.svg │ │ ├── m-arrows-pointing-out.svg │ │ ├── m-arrows-right-left.svg │ │ ├── m-arrows-up-down.svg │ │ ├── m-at-symbol.svg │ │ ├── m-backspace.svg │ │ ├── m-backward.svg │ │ ├── m-banknotes.svg │ │ ├── m-bars-2.svg │ │ ├── m-bars-3-bottom-left.svg │ │ ├── m-bars-3-bottom-right.svg │ │ ├── m-bars-3-center-left.svg │ │ ├── m-bars-3.svg │ │ ├── m-bars-4.svg │ │ ├── m-bars-arrow-down.svg │ │ ├── m-bars-arrow-up.svg │ │ ├── m-battery-0.svg │ │ ├── m-battery-100.svg │ │ ├── m-battery-50.svg │ │ ├── m-beaker.svg │ │ ├── m-bell-alert.svg │ │ ├── m-bell-slash.svg │ │ ├── m-bell-snooze.svg │ │ ├── m-bell.svg │ │ ├── m-bolt-slash.svg │ │ ├── m-bolt.svg │ │ ├── m-book-open.svg │ │ ├── m-bookmark-slash.svg │ │ ├── m-bookmark-square.svg │ │ ├── m-bookmark.svg │ │ ├── m-briefcase.svg │ │ ├── m-bug-ant.svg │ │ ├── m-building-library.svg │ │ ├── m-building-office-2.svg │ │ ├── m-building-office.svg │ │ ├── m-building-storefront.svg │ │ ├── m-cake.svg │ │ ├── m-calculator.svg │ │ ├── m-calendar-days.svg │ │ ├── m-calendar.svg │ │ ├── m-camera.svg │ │ ├── m-chart-bar-square.svg │ │ ├── m-chart-bar.svg │ │ ├── m-chart-pie.svg │ │ ├── m-chat-bubble-bottom-center-text.svg │ │ ├── m-chat-bubble-bottom-center.svg │ │ ├── m-chat-bubble-left-ellipsis.svg │ │ ├── m-chat-bubble-left-right.svg │ │ ├── m-chat-bubble-left.svg │ │ ├── m-chat-bubble-oval-left-ellipsis.svg │ │ ├── m-chat-bubble-oval-left.svg │ │ ├── m-check-badge.svg │ │ ├── m-check-circle.svg │ │ ├── m-check.svg │ │ ├── m-chevron-double-down.svg │ │ ├── m-chevron-double-left.svg │ │ ├── m-chevron-double-right.svg │ │ ├── m-chevron-double-up.svg │ │ ├── m-chevron-down.svg │ │ ├── m-chevron-left.svg │ │ ├── m-chevron-right.svg │ │ ├── m-chevron-up-down.svg │ │ ├── m-chevron-up.svg │ │ ├── m-circle-stack.svg │ │ ├── m-clipboard-document-check.svg │ │ ├── m-clipboard-document-list.svg │ │ ├── m-clipboard-document.svg │ │ ├── m-clipboard.svg │ │ ├── m-clock.svg │ │ ├── m-cloud-arrow-down.svg │ │ ├── m-cloud-arrow-up.svg │ │ ├── m-cloud.svg │ │ ├── m-code-bracket-square.svg │ │ ├── m-code-bracket.svg │ │ ├── m-cog-6-tooth.svg │ │ ├── m-cog-8-tooth.svg │ │ ├── m-cog.svg │ │ ├── m-command-line.svg │ │ ├── m-computer-desktop.svg │ │ ├── m-cpu-chip.svg │ │ ├── m-credit-card.svg │ │ ├── m-cube-transparent.svg │ │ ├── m-cube.svg │ │ ├── m-currency-bangladeshi.svg │ │ ├── m-currency-dollar.svg │ │ ├── m-currency-euro.svg │ │ ├── m-currency-pound.svg │ │ ├── m-currency-rupee.svg │ │ ├── m-currency-yen.svg │ │ ├── m-cursor-arrow-rays.svg │ │ ├── m-cursor-arrow-ripple.svg │ │ ├── m-device-phone-mobile.svg │ │ ├── m-device-tablet.svg │ │ ├── m-document-arrow-down.svg │ │ ├── m-document-arrow-up.svg │ │ ├── m-document-chart-bar.svg │ │ ├── m-document-check.svg │ │ ├── m-document-duplicate.svg │ │ ├── m-document-magnifying-glass.svg │ │ ├── m-document-minus.svg │ │ ├── m-document-plus.svg │ │ ├── m-document-text.svg │ │ ├── m-document.svg │ │ ├── m-ellipsis-horizontal-circle.svg │ │ ├── m-ellipsis-horizontal.svg │ │ ├── m-ellipsis-vertical.svg │ │ ├── m-envelope-open.svg │ │ ├── m-envelope.svg │ │ ├── m-exclamation-circle.svg │ │ ├── m-exclamation-triangle.svg │ │ ├── m-eye-dropper.svg │ │ ├── m-eye-slash.svg │ │ ├── m-eye.svg │ │ ├── m-face-frown.svg │ │ ├── m-face-smile.svg │ │ ├── m-film.svg │ │ ├── m-finger-print.svg │ │ ├── m-fire.svg │ │ ├── m-flag.svg │ │ ├── m-folder-arrow-down.svg │ │ ├── m-folder-minus.svg │ │ ├── m-folder-open.svg │ │ ├── m-folder-plus.svg │ │ ├── m-folder.svg │ │ ├── m-forward.svg │ │ ├── m-funnel.svg │ │ ├── m-gif.svg │ │ ├── m-gift-top.svg │ │ ├── m-gift.svg │ │ ├── m-globe-alt.svg │ │ ├── m-globe-americas.svg │ │ ├── m-globe-asia-australia.svg │ │ ├── m-globe-europe-africa.svg │ │ ├── m-hand-raised.svg │ │ ├── m-hand-thumb-down.svg │ │ ├── m-hand-thumb-up.svg │ │ ├── m-hashtag.svg │ │ ├── m-heart.svg │ │ ├── m-home-modern.svg │ │ ├── m-home.svg │ │ ├── m-identification.svg │ │ ├── m-inbox-arrow-down.svg │ │ ├── m-inbox-stack.svg │ │ ├── m-inbox.svg │ │ ├── m-information-circle.svg │ │ ├── m-key.svg │ │ ├── m-language.svg │ │ ├── m-lifebuoy.svg │ │ ├── m-light-bulb.svg │ │ ├── m-link.svg │ │ ├── m-list-bullet.svg │ │ ├── m-lock-closed.svg │ │ ├── m-lock-open.svg │ │ ├── m-magnifying-glass-circle.svg │ │ ├── m-magnifying-glass-minus.svg │ │ ├── m-magnifying-glass-plus.svg │ │ ├── m-magnifying-glass.svg │ │ ├── m-map-pin.svg │ │ ├── m-map.svg │ │ ├── m-megaphone.svg │ │ ├── m-microphone.svg │ │ ├── m-minus-circle.svg │ │ ├── m-minus-small.svg │ │ ├── m-minus.svg │ │ ├── m-moon.svg │ │ ├── m-musical-note.svg │ │ ├── m-newspaper.svg │ │ ├── m-no-symbol.svg │ │ ├── m-paint-brush.svg │ │ ├── m-paper-airplane.svg │ │ ├── m-paper-clip.svg │ │ ├── m-pause-circle.svg │ │ ├── m-pause.svg │ │ ├── m-pencil-square.svg │ │ ├── m-pencil.svg │ │ ├── m-phone-arrow-down-left.svg │ │ ├── m-phone-arrow-up-right.svg │ │ ├── m-phone-x-mark.svg │ │ ├── m-phone.svg │ │ ├── m-photo.svg │ │ ├── m-play-circle.svg │ │ ├── m-play-pause.svg │ │ ├── m-play.svg │ │ ├── m-plus-circle.svg │ │ ├── m-plus-small.svg │ │ ├── m-plus.svg │ │ ├── m-power.svg │ │ ├── m-presentation-chart-bar.svg │ │ ├── m-presentation-chart-line.svg │ │ ├── m-printer.svg │ │ ├── m-puzzle-piece.svg │ │ ├── m-qr-code.svg │ │ ├── m-question-mark-circle.svg │ │ ├── m-queue-list.svg │ │ ├── m-radio.svg │ │ ├── m-receipt-percent.svg │ │ ├── m-receipt-refund.svg │ │ ├── m-rectangle-group.svg │ │ ├── m-rectangle-stack.svg │ │ ├── m-rocket-launch.svg │ │ ├── m-rss.svg │ │ ├── m-scale.svg │ │ ├── m-scissors.svg │ │ ├── m-server-stack.svg │ │ ├── m-server.svg │ │ ├── m-share.svg │ │ ├── m-shield-check.svg │ │ ├── m-shield-exclamation.svg │ │ ├── m-shopping-bag.svg │ │ ├── m-shopping-cart.svg │ │ ├── m-signal-slash.svg │ │ ├── m-signal.svg │ │ ├── m-sparkles.svg │ │ ├── m-speaker-wave.svg │ │ ├── m-speaker-x-mark.svg │ │ ├── m-square-2-stack.svg │ │ ├── m-square-3-stack-3d.svg │ │ ├── m-squares-2x2.svg │ │ ├── m-squares-plus.svg │ │ ├── m-star.svg │ │ ├── m-stop-circle.svg │ │ ├── m-stop.svg │ │ ├── m-sun.svg │ │ ├── m-swatch.svg │ │ ├── m-table-cells.svg │ │ ├── m-tag.svg │ │ ├── m-ticket.svg │ │ ├── m-trash.svg │ │ ├── m-trophy.svg │ │ ├── m-truck.svg │ │ ├── m-tv.svg │ │ ├── m-user-circle.svg │ │ ├── m-user-group.svg │ │ ├── m-user-minus.svg │ │ ├── m-user-plus.svg │ │ ├── m-user.svg │ │ ├── m-users.svg │ │ ├── m-variable.svg │ │ ├── m-video-camera-slash.svg │ │ ├── m-video-camera.svg │ │ ├── m-view-columns.svg │ │ ├── m-viewfinder-circle.svg │ │ ├── m-wallet.svg │ │ ├── m-wifi.svg │ │ ├── m-window.svg │ │ ├── m-wrench-screwdriver.svg │ │ ├── m-wrench.svg │ │ ├── m-x-circle.svg │ │ ├── m-x-mark.svg │ │ ├── o-academic-cap.svg │ │ ├── o-adjustments-horizontal.svg │ │ ├── o-adjustments-vertical.svg │ │ ├── o-archive-box-arrow-down.svg │ │ ├── o-archive-box-x-mark.svg │ │ ├── o-archive-box.svg │ │ ├── o-arrow-down-circle.svg │ │ ├── o-arrow-down-left.svg │ │ ├── o-arrow-down-on-square-stack.svg │ │ ├── o-arrow-down-on-square.svg │ │ ├── o-arrow-down-right.svg │ │ ├── o-arrow-down-tray.svg │ │ ├── o-arrow-down.svg │ │ ├── o-arrow-left-circle.svg │ │ ├── o-arrow-left-on-rectangle.svg │ │ ├── o-arrow-left.svg │ │ ├── o-arrow-long-down.svg │ │ ├── o-arrow-long-left.svg │ │ ├── o-arrow-long-right.svg │ │ ├── o-arrow-long-up.svg │ │ ├── o-arrow-path-rounded-square.svg │ │ ├── o-arrow-path.svg │ │ ├── o-arrow-right-circle.svg │ │ ├── o-arrow-right-on-rectangle.svg │ │ ├── o-arrow-right.svg │ │ ├── o-arrow-small-down.svg │ │ ├── o-arrow-small-left.svg │ │ ├── o-arrow-small-right.svg │ │ ├── o-arrow-small-up.svg │ │ ├── o-arrow-top-right-on-square.svg │ │ ├── o-arrow-trending-down.svg │ │ ├── o-arrow-trending-up.svg │ │ ├── o-arrow-up-circle.svg │ │ ├── o-arrow-up-left.svg │ │ ├── o-arrow-up-on-square-stack.svg │ │ ├── o-arrow-up-on-square.svg │ │ ├── o-arrow-up-right.svg │ │ ├── o-arrow-up-tray.svg │ │ ├── o-arrow-up.svg │ │ ├── o-arrow-uturn-down.svg │ │ ├── o-arrow-uturn-left.svg │ │ ├── o-arrow-uturn-right.svg │ │ ├── o-arrow-uturn-up.svg │ │ ├── o-arrows-pointing-in.svg │ │ ├── o-arrows-pointing-out.svg │ │ ├── o-arrows-right-left.svg │ │ ├── o-arrows-up-down.svg │ │ ├── o-at-symbol.svg │ │ ├── o-backspace.svg │ │ ├── o-backward.svg │ │ ├── o-banknotes.svg │ │ ├── o-bars-2.svg │ │ ├── o-bars-3-bottom-left.svg │ │ ├── o-bars-3-bottom-right.svg │ │ ├── o-bars-3-center-left.svg │ │ ├── o-bars-3.svg │ │ ├── o-bars-4.svg │ │ ├── o-bars-arrow-down.svg │ │ ├── o-bars-arrow-up.svg │ │ ├── o-battery-0.svg │ │ ├── o-battery-100.svg │ │ ├── o-battery-50.svg │ │ ├── o-beaker.svg │ │ ├── o-bell-alert.svg │ │ ├── o-bell-slash.svg │ │ ├── o-bell-snooze.svg │ │ ├── o-bell.svg │ │ ├── o-bolt-slash.svg │ │ ├── o-bolt.svg │ │ ├── o-book-open.svg │ │ ├── o-bookmark-slash.svg │ │ ├── o-bookmark-square.svg │ │ ├── o-bookmark.svg │ │ ├── o-briefcase.svg │ │ ├── o-bug-ant.svg │ │ ├── o-building-library.svg │ │ ├── o-building-office-2.svg │ │ ├── o-building-office.svg │ │ ├── o-building-storefront.svg │ │ ├── o-cake.svg │ │ ├── o-calculator.svg │ │ ├── o-calendar-days.svg │ │ ├── o-calendar.svg │ │ ├── o-camera.svg │ │ ├── o-chart-bar-square.svg │ │ ├── o-chart-bar.svg │ │ ├── o-chart-pie.svg │ │ ├── o-chat-bubble-bottom-center-text.svg │ │ ├── o-chat-bubble-bottom-center.svg │ │ ├── o-chat-bubble-left-ellipsis.svg │ │ ├── o-chat-bubble-left-right.svg │ │ ├── o-chat-bubble-left.svg │ │ ├── o-chat-bubble-oval-left-ellipsis.svg │ │ ├── o-chat-bubble-oval-left.svg │ │ ├── o-check-badge.svg │ │ ├── o-check-circle.svg │ │ ├── o-check.svg │ │ ├── o-chevron-double-down.svg │ │ ├── o-chevron-double-left.svg │ │ ├── o-chevron-double-right.svg │ │ ├── o-chevron-double-up.svg │ │ ├── o-chevron-down.svg │ │ ├── o-chevron-left.svg │ │ ├── o-chevron-right.svg │ │ ├── o-chevron-up-down.svg │ │ ├── o-chevron-up.svg │ │ ├── o-circle-stack.svg │ │ ├── o-clipboard-document-check.svg │ │ ├── o-clipboard-document-list.svg │ │ ├── o-clipboard-document.svg │ │ ├── o-clipboard.svg │ │ ├── o-clock.svg │ │ ├── o-cloud-arrow-down.svg │ │ ├── o-cloud-arrow-up.svg │ │ ├── o-cloud.svg │ │ ├── o-code-bracket-square.svg │ │ ├── o-code-bracket.svg │ │ ├── o-cog-6-tooth.svg │ │ ├── o-cog-8-tooth.svg │ │ ├── o-cog.svg │ │ ├── o-command-line.svg │ │ ├── o-computer-desktop.svg │ │ ├── o-cpu-chip.svg │ │ ├── o-credit-card.svg │ │ ├── o-cube-transparent.svg │ │ ├── o-cube.svg │ │ ├── o-currency-bangladeshi.svg │ │ ├── o-currency-dollar.svg │ │ ├── o-currency-euro.svg │ │ ├── o-currency-pound.svg │ │ ├── o-currency-rupee.svg │ │ ├── o-currency-yen.svg │ │ ├── o-cursor-arrow-rays.svg │ │ ├── o-cursor-arrow-ripple.svg │ │ ├── o-device-phone-mobile.svg │ │ ├── o-device-tablet.svg │ │ ├── o-document-arrow-down.svg │ │ ├── o-document-arrow-up.svg │ │ ├── o-document-chart-bar.svg │ │ ├── o-document-check.svg │ │ ├── o-document-duplicate.svg │ │ ├── o-document-magnifying-glass.svg │ │ ├── o-document-minus.svg │ │ ├── o-document-plus.svg │ │ ├── o-document-text.svg │ │ ├── o-document.svg │ │ ├── o-ellipsis-horizontal-circle.svg │ │ ├── o-ellipsis-horizontal.svg │ │ ├── o-ellipsis-vertical.svg │ │ ├── o-envelope-open.svg │ │ ├── o-envelope.svg │ │ ├── o-exclamation-circle.svg │ │ ├── o-exclamation-triangle.svg │ │ ├── o-eye-dropper.svg │ │ ├── o-eye-slash.svg │ │ ├── o-eye.svg │ │ ├── o-face-frown.svg │ │ ├── o-face-smile.svg │ │ ├── o-film.svg │ │ ├── o-finger-print.svg │ │ ├── o-fire.svg │ │ ├── o-flag.svg │ │ ├── o-folder-arrow-down.svg │ │ ├── o-folder-minus.svg │ │ ├── o-folder-open.svg │ │ ├── o-folder-plus.svg │ │ ├── o-folder.svg │ │ ├── o-forward.svg │ │ ├── o-funnel.svg │ │ ├── o-gif.svg │ │ ├── o-gift-top.svg │ │ ├── o-gift.svg │ │ ├── o-globe-alt.svg │ │ ├── o-globe-americas.svg │ │ ├── o-globe-asia-australia.svg │ │ ├── o-globe-europe-africa.svg │ │ ├── o-hand-raised.svg │ │ ├── o-hand-thumb-down.svg │ │ ├── o-hand-thumb-up.svg │ │ ├── o-hashtag.svg │ │ ├── o-heart.svg │ │ ├── o-home-modern.svg │ │ ├── o-home.svg │ │ ├── o-identification.svg │ │ ├── o-inbox-arrow-down.svg │ │ ├── o-inbox-stack.svg │ │ ├── o-inbox.svg │ │ ├── o-information-circle.svg │ │ ├── o-key.svg │ │ ├── o-language.svg │ │ ├── o-lifebuoy.svg │ │ ├── o-light-bulb.svg │ │ ├── o-link.svg │ │ ├── o-list-bullet.svg │ │ ├── o-lock-closed.svg │ │ ├── o-lock-open.svg │ │ ├── o-magnifying-glass-circle.svg │ │ ├── o-magnifying-glass-minus.svg │ │ ├── o-magnifying-glass-plus.svg │ │ ├── o-magnifying-glass.svg │ │ ├── o-map-pin.svg │ │ ├── o-map.svg │ │ ├── o-megaphone.svg │ │ ├── o-microphone.svg │ │ ├── o-minus-circle.svg │ │ ├── o-minus-small.svg │ │ ├── o-minus.svg │ │ ├── o-moon.svg │ │ ├── o-musical-note.svg │ │ ├── o-newspaper.svg │ │ ├── o-no-symbol.svg │ │ ├── o-paint-brush.svg │ │ ├── o-paper-airplane.svg │ │ ├── o-paper-clip.svg │ │ ├── o-pause-circle.svg │ │ ├── o-pause.svg │ │ ├── o-pencil-square.svg │ │ ├── o-pencil.svg │ │ ├── o-phone-arrow-down-left.svg │ │ ├── o-phone-arrow-up-right.svg │ │ ├── o-phone-x-mark.svg │ │ ├── o-phone.svg │ │ ├── o-photo.svg │ │ ├── o-play-circle.svg │ │ ├── o-play-pause.svg │ │ ├── o-play.svg │ │ ├── o-plus-circle.svg │ │ ├── o-plus-small.svg │ │ ├── o-plus.svg │ │ ├── o-power.svg │ │ ├── o-presentation-chart-bar.svg │ │ ├── o-presentation-chart-line.svg │ │ ├── o-printer.svg │ │ ├── o-puzzle-piece.svg │ │ ├── o-qr-code.svg │ │ ├── o-question-mark-circle.svg │ │ ├── o-queue-list.svg │ │ ├── o-radio.svg │ │ ├── o-receipt-percent.svg │ │ ├── o-receipt-refund.svg │ │ ├── o-rectangle-group.svg │ │ ├── o-rectangle-stack.svg │ │ ├── o-rocket-launch.svg │ │ ├── o-rss.svg │ │ ├── o-scale.svg │ │ ├── o-scissors.svg │ │ ├── o-server-stack.svg │ │ ├── o-server.svg │ │ ├── o-share.svg │ │ ├── o-shield-check.svg │ │ ├── o-shield-exclamation.svg │ │ ├── o-shopping-bag.svg │ │ ├── o-shopping-cart.svg │ │ ├── o-signal-slash.svg │ │ ├── o-signal.svg │ │ ├── o-sparkles.svg │ │ ├── o-speaker-wave.svg │ │ ├── o-speaker-x-mark.svg │ │ ├── o-square-2-stack.svg │ │ ├── o-square-3-stack-3d.svg │ │ ├── o-squares-2x2.svg │ │ ├── o-squares-plus.svg │ │ ├── o-star.svg │ │ ├── o-stop-circle.svg │ │ ├── o-stop.svg │ │ ├── o-sun.svg │ │ ├── o-swatch.svg │ │ ├── o-table-cells.svg │ │ ├── o-tag.svg │ │ ├── o-ticket.svg │ │ ├── o-trash.svg │ │ ├── o-trophy.svg │ │ ├── o-truck.svg │ │ ├── o-tv.svg │ │ ├── o-user-circle.svg │ │ ├── o-user-group.svg │ │ ├── o-user-minus.svg │ │ ├── o-user-plus.svg │ │ ├── o-user.svg │ │ ├── o-users.svg │ │ ├── o-variable.svg │ │ ├── o-video-camera-slash.svg │ │ ├── o-video-camera.svg │ │ ├── o-view-columns.svg │ │ ├── o-viewfinder-circle.svg │ │ ├── o-wallet.svg │ │ ├── o-wifi.svg │ │ ├── o-window.svg │ │ ├── o-wrench-screwdriver.svg │ │ ├── o-wrench.svg │ │ ├── o-x-circle.svg │ │ ├── o-x-mark.svg │ │ ├── s-academic-cap.svg │ │ ├── s-adjustments-horizontal.svg │ │ ├── s-adjustments-vertical.svg │ │ ├── s-archive-box-arrow-down.svg │ │ ├── s-archive-box-x-mark.svg │ │ ├── s-archive-box.svg │ │ ├── s-arrow-down-circle.svg │ │ ├── s-arrow-down-left.svg │ │ ├── s-arrow-down-on-square-stack.svg │ │ ├── s-arrow-down-on-square.svg │ │ ├── s-arrow-down-right.svg │ │ ├── s-arrow-down-tray.svg │ │ ├── s-arrow-down.svg │ │ ├── s-arrow-left-circle.svg │ │ ├── s-arrow-left-on-rectangle.svg │ │ ├── s-arrow-left.svg │ │ ├── s-arrow-long-down.svg │ │ ├── s-arrow-long-left.svg │ │ ├── s-arrow-long-right.svg │ │ ├── s-arrow-long-up.svg │ │ ├── s-arrow-path-rounded-square.svg │ │ ├── s-arrow-path.svg │ │ ├── s-arrow-right-circle.svg │ │ ├── s-arrow-right-on-rectangle.svg │ │ ├── s-arrow-right.svg │ │ ├── s-arrow-small-down.svg │ │ ├── s-arrow-small-left.svg │ │ ├── s-arrow-small-right.svg │ │ ├── s-arrow-small-up.svg │ │ ├── s-arrow-top-right-on-square.svg │ │ ├── s-arrow-trending-down.svg │ │ ├── s-arrow-trending-up.svg │ │ ├── s-arrow-up-circle.svg │ │ ├── s-arrow-up-left.svg │ │ ├── s-arrow-up-on-square-stack.svg │ │ ├── s-arrow-up-on-square.svg │ │ ├── s-arrow-up-right.svg │ │ ├── s-arrow-up-tray.svg │ │ ├── s-arrow-up.svg │ │ ├── s-arrow-uturn-down.svg │ │ ├── s-arrow-uturn-left.svg │ │ ├── s-arrow-uturn-right.svg │ │ ├── s-arrow-uturn-up.svg │ │ ├── s-arrows-pointing-in.svg │ │ ├── s-arrows-pointing-out.svg │ │ ├── s-arrows-right-left.svg │ │ ├── s-arrows-up-down.svg │ │ ├── s-at-symbol.svg │ │ ├── s-backspace.svg │ │ ├── s-backward.svg │ │ ├── s-banknotes.svg │ │ ├── s-bars-2.svg │ │ ├── s-bars-3-bottom-left.svg │ │ ├── s-bars-3-bottom-right.svg │ │ ├── s-bars-3-center-left.svg │ │ ├── s-bars-3.svg │ │ ├── s-bars-4.svg │ │ ├── s-bars-arrow-down.svg │ │ ├── s-bars-arrow-up.svg │ │ ├── s-battery-0.svg │ │ ├── s-battery-100.svg │ │ ├── s-battery-50.svg │ │ ├── s-beaker.svg │ │ ├── s-bell-alert.svg │ │ ├── s-bell-slash.svg │ │ ├── s-bell-snooze.svg │ │ ├── s-bell.svg │ │ ├── s-bolt-slash.svg │ │ ├── s-bolt.svg │ │ ├── s-book-open.svg │ │ ├── s-bookmark-slash.svg │ │ ├── s-bookmark-square.svg │ │ ├── s-bookmark.svg │ │ ├── s-briefcase.svg │ │ ├── s-bug-ant.svg │ │ ├── s-building-library.svg │ │ ├── s-building-office-2.svg │ │ ├── s-building-office.svg │ │ ├── s-building-storefront.svg │ │ ├── s-cake.svg │ │ ├── s-calculator.svg │ │ ├── s-calendar-days.svg │ │ ├── s-calendar.svg │ │ ├── s-camera.svg │ │ ├── s-chart-bar-square.svg │ │ ├── s-chart-bar.svg │ │ ├── s-chart-pie.svg │ │ ├── s-chat-bubble-bottom-center-text.svg │ │ ├── s-chat-bubble-bottom-center.svg │ │ ├── s-chat-bubble-left-ellipsis.svg │ │ ├── s-chat-bubble-left-right.svg │ │ ├── s-chat-bubble-left.svg │ │ ├── s-chat-bubble-oval-left-ellipsis.svg │ │ ├── s-chat-bubble-oval-left.svg │ │ ├── s-check-badge.svg │ │ ├── s-check-circle.svg │ │ ├── s-check.svg │ │ ├── s-chevron-double-down.svg │ │ ├── s-chevron-double-left.svg │ │ ├── s-chevron-double-right.svg │ │ ├── s-chevron-double-up.svg │ │ ├── s-chevron-down.svg │ │ ├── s-chevron-left.svg │ │ ├── s-chevron-right.svg │ │ ├── s-chevron-up-down.svg │ │ ├── s-chevron-up.svg │ │ ├── s-circle-stack.svg │ │ ├── s-clipboard-document-check.svg │ │ ├── s-clipboard-document-list.svg │ │ ├── s-clipboard-document.svg │ │ ├── s-clipboard.svg │ │ ├── s-clock.svg │ │ ├── s-cloud-arrow-down.svg │ │ ├── s-cloud-arrow-up.svg │ │ ├── s-cloud.svg │ │ ├── s-code-bracket-square.svg │ │ ├── s-code-bracket.svg │ │ ├── s-code-square.svg │ │ ├── s-code.svg │ │ ├── s-cog-6-tooth.svg │ │ ├── s-cog-8-tooth.svg │ │ ├── s-cog.svg │ │ ├── s-command-line.svg │ │ ├── s-computer-desktop.svg │ │ ├── s-cpu-chip.svg │ │ ├── s-credit-card.svg │ │ ├── s-cube-transparent.svg │ │ ├── s-cube.svg │ │ ├── s-currency-bangladeshi.svg │ │ ├── s-currency-dollar.svg │ │ ├── s-currency-euro.svg │ │ ├── s-currency-pound.svg │ │ ├── s-currency-rupee.svg │ │ ├── s-currency-yen.svg │ │ ├── s-cursor-arrow-rays.svg │ │ ├── s-cursor-arrow-ripple.svg │ │ ├── s-device-phone-mobile.svg │ │ ├── s-device-tablet.svg │ │ ├── s-document-arrow-down.svg │ │ ├── s-document-arrow-up.svg │ │ ├── s-document-chart-bar.svg │ │ ├── s-document-check.svg │ │ ├── s-document-duplicate.svg │ │ ├── s-document-magnifying-glass.svg │ │ ├── s-document-minus.svg │ │ ├── s-document-plus.svg │ │ ├── s-document-text.svg │ │ ├── s-document.svg │ │ ├── s-ellipsis-horizontal-circle.svg │ │ ├── s-ellipsis-horizontal.svg │ │ ├── s-ellipsis-vertical.svg │ │ ├── s-envelope-open.svg │ │ ├── s-envelope.svg │ │ ├── s-exclamation-circle.svg │ │ ├── s-exclamation-triangle.svg │ │ ├── s-eye-dropper.svg │ │ ├── s-eye-slash.svg │ │ ├── s-eye.svg │ │ ├── s-face-frown.svg │ │ ├── s-face-smile.svg │ │ ├── s-film.svg │ │ ├── s-finger-print.svg │ │ ├── s-fire.svg │ │ ├── s-flag.svg │ │ ├── s-folder-arrow-down.svg │ │ ├── s-folder-minus.svg │ │ ├── s-folder-open.svg │ │ ├── s-folder-plus.svg │ │ ├── s-folder.svg │ │ ├── s-forward.svg │ │ ├── s-funnel.svg │ │ ├── s-gif.svg │ │ ├── s-gift-top.svg │ │ ├── s-gift.svg │ │ ├── s-globe-alt.svg │ │ ├── s-globe-americas.svg │ │ ├── s-globe-asia-australia.svg │ │ ├── s-globe-europe-africa.svg │ │ ├── s-hand-raised.svg │ │ ├── s-hand-thumb-down.svg │ │ ├── s-hand-thumb-up.svg │ │ ├── s-hashtag.svg │ │ ├── s-heart.svg │ │ ├── s-home-modern.svg │ │ ├── s-home.svg │ │ ├── s-identification.svg │ │ ├── s-inbox-arrow-down.svg │ │ ├── s-inbox-stack.svg │ │ ├── s-inbox.svg │ │ ├── s-information-circle.svg │ │ ├── s-key.svg │ │ ├── s-language.svg │ │ ├── s-lifebuoy.svg │ │ ├── s-light-bulb.svg │ │ ├── s-link.svg │ │ ├── s-list-bullet.svg │ │ ├── s-lock-closed.svg │ │ ├── s-lock-open.svg │ │ ├── s-magnifying-glass-circle.svg │ │ ├── s-magnifying-glass-minus.svg │ │ ├── s-magnifying-glass-plus.svg │ │ ├── s-magnifying-glass.svg │ │ ├── s-map-pin.svg │ │ ├── s-map.svg │ │ ├── s-megaphone.svg │ │ ├── s-microphone.svg │ │ ├── s-minus-circle.svg │ │ ├── s-minus-small.svg │ │ ├── s-minus.svg │ │ ├── s-moon.svg │ │ ├── s-musical-note.svg │ │ ├── s-newspaper.svg │ │ ├── s-no-symbol.svg │ │ ├── s-paint-brush.svg │ │ ├── s-paper-airplane.svg │ │ ├── s-paper-clip.svg │ │ ├── s-pause-circle.svg │ │ ├── s-pause.svg │ │ ├── s-pencil-square.svg │ │ ├── s-pencil.svg │ │ ├── s-phone-arrow-down-left.svg │ │ ├── s-phone-arrow-up-right.svg │ │ ├── s-phone-x-mark.svg │ │ ├── s-phone.svg │ │ ├── s-photo.svg │ │ ├── s-play-circle.svg │ │ ├── s-play-pause.svg │ │ ├── s-play.svg │ │ ├── s-plus-circle.svg │ │ ├── s-plus-small.svg │ │ ├── s-plus.svg │ │ ├── s-power.svg │ │ ├── s-presentation-chart-bar.svg │ │ ├── s-presentation-chart-line.svg │ │ ├── s-printer.svg │ │ ├── s-puzzle-piece.svg │ │ ├── s-qr-code.svg │ │ ├── s-question-mark-circle.svg │ │ ├── s-queue-list.svg │ │ ├── s-radio.svg │ │ ├── s-receipt-percent.svg │ │ ├── s-receipt-refund.svg │ │ ├── s-rectangle-group.svg │ │ ├── s-rectangle-stack.svg │ │ ├── s-rocket-launch.svg │ │ ├── s-rss.svg │ │ ├── s-scale.svg │ │ ├── s-scissors.svg │ │ ├── s-server-stack.svg │ │ ├── s-server.svg │ │ ├── s-share.svg │ │ ├── s-shield-check.svg │ │ ├── s-shield-exclamation.svg │ │ ├── s-shopping-bag.svg │ │ ├── s-shopping-cart.svg │ │ ├── s-signal-slash.svg │ │ ├── s-signal.svg │ │ ├── s-sparkles.svg │ │ ├── s-speaker-wave.svg │ │ ├── s-speaker-x-mark.svg │ │ ├── s-square-2-stack.svg │ │ ├── s-square-3-stack-3d.svg │ │ ├── s-squares-2x2.svg │ │ ├── s-squares-plus.svg │ │ ├── s-star.svg │ │ ├── s-stop-circle.svg │ │ ├── s-stop.svg │ │ ├── s-sun.svg │ │ ├── s-swatch.svg │ │ ├── s-table-cells.svg │ │ ├── s-tag.svg │ │ ├── s-ticket.svg │ │ ├── s-trash.svg │ │ ├── s-trophy.svg │ │ ├── s-truck.svg │ │ ├── s-tv.svg │ │ ├── s-user-circle.svg │ │ ├── s-user-group.svg │ │ ├── s-user-minus.svg │ │ ├── s-user-plus.svg │ │ ├── s-user.svg │ │ ├── s-users.svg │ │ ├── s-variable.svg │ │ ├── s-video-camera-slash.svg │ │ ├── s-video-camera.svg │ │ ├── s-view-columns.svg │ │ ├── s-viewfinder-circle.svg │ │ ├── s-wallet.svg │ │ ├── s-wifi.svg │ │ ├── s-window.svg │ │ ├── s-wrench-screwdriver.svg │ │ ├── s-wrench.svg │ │ ├── s-x-circle.svg │ │ └── s-x-mark.svg │ ├── streams │ │ ├── core │ │ │ ├── js │ │ │ │ ├── index.js │ │ │ │ └── index.js.LICENSE.txt │ │ │ └── types │ │ │ │ ├── Config │ │ │ │ ├── Repository.d.ts │ │ │ │ └── index.d.ts │ │ │ │ ├── CoreServiceProvider.d.ts │ │ │ │ ├── Dispatcher │ │ │ │ ├── Dispatcher.d.ts │ │ │ │ └── index.d.ts │ │ │ │ ├── Foundation │ │ │ │ ├── Application.d.ts │ │ │ │ └── index.d.ts │ │ │ │ ├── Http │ │ │ │ ├── ETag.d.ts │ │ │ │ ├── ETagCache.d.ts │ │ │ │ ├── HttpServiceProvider.d.ts │ │ │ │ └── index.d.ts │ │ │ │ ├── Storage │ │ │ │ ├── LocalStorageAdapter.d.ts │ │ │ │ ├── SessionStorageAdapter.d.ts │ │ │ │ ├── StorageAdapter.d.ts │ │ │ │ ├── StorageAdapterInterface.d.ts │ │ │ │ ├── StorageServiceProvider.d.ts │ │ │ │ ├── Transformer.d.ts │ │ │ │ └── index.d.ts │ │ │ │ ├── Support │ │ │ │ ├── Collection.d.ts │ │ │ │ ├── ServiceProvider.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ └── utils.d.ts │ │ │ │ ├── defaultConfig.d.ts │ │ │ │ ├── global.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ └── types │ │ │ │ ├── config.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ └── streams.d.ts │ │ └── ui │ │ │ ├── css │ │ │ ├── tailwind.css │ │ │ ├── tailwind.css.map │ │ │ ├── theme.css │ │ │ ├── theme.css.map │ │ │ ├── variables.css │ │ │ └── variables.css.map │ │ │ ├── fonts │ │ │ ├── Inter-Regular.woff │ │ │ ├── Inter-Regular.woff2 │ │ │ ├── Inter-SemiBold.woff │ │ │ ├── Inter-SemiBold.woff2 │ │ │ ├── JetBrainsMono-Bold copy.woff │ │ │ ├── JetBrainsMono-Bold copy.woff2 │ │ │ ├── JetBrainsMono-Bold.woff │ │ │ ├── JetBrainsMono-Bold.woff2 │ │ │ ├── JetBrainsMono-BoldItalic copy.woff │ │ │ ├── JetBrainsMono-BoldItalic copy.woff2 │ │ │ ├── JetBrainsMono-BoldItalic.woff │ │ │ ├── JetBrainsMono-BoldItalic.woff2 │ │ │ ├── JetBrainsMono-ExtraBold copy.woff │ │ │ ├── JetBrainsMono-ExtraBold copy.woff2 │ │ │ ├── JetBrainsMono-ExtraBold.woff │ │ │ ├── JetBrainsMono-ExtraBold.woff2 │ │ │ ├── JetBrainsMono-ExtraBoldItalic copy.woff │ │ │ ├── JetBrainsMono-ExtraBoldItalic copy.woff2 │ │ │ ├── JetBrainsMono-ExtraBoldItalic.woff │ │ │ ├── JetBrainsMono-ExtraBoldItalic.woff2 │ │ │ ├── JetBrainsMono-Italic copy.woff │ │ │ ├── JetBrainsMono-Italic copy.woff2 │ │ │ ├── JetBrainsMono-Italic.woff │ │ │ ├── JetBrainsMono-Italic.woff2 │ │ │ ├── JetBrainsMono-Medium copy.woff │ │ │ ├── JetBrainsMono-Medium copy.woff2 │ │ │ ├── JetBrainsMono-Medium.woff │ │ │ ├── JetBrainsMono-Medium.woff2 │ │ │ ├── JetBrainsMono-MediumItalic copy.woff │ │ │ ├── JetBrainsMono-MediumItalic copy.woff2 │ │ │ ├── JetBrainsMono-MediumItalic.woff │ │ │ ├── JetBrainsMono-MediumItalic.woff2 │ │ │ ├── JetBrainsMono-Regular copy.woff │ │ │ ├── JetBrainsMono-Regular copy.woff2 │ │ │ ├── JetBrainsMono-Regular.woff │ │ │ ├── JetBrainsMono-Regular.woff2 │ │ │ └── stylesheet.css │ │ │ ├── js │ │ │ ├── index.js │ │ │ ├── index.js.LICENSE.txt │ │ │ ├── index.js.map │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_abap_abap_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_apex_apex_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_azcli_azcli_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_bat_bat_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_bicep_bicep_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_cameligo_cameligo_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_clojure_clojure_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_coffee_coffee_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_cpp_cpp_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_csharp_csharp_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_csp_csp_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_css_css_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_cypher_cypher_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_dart_dart_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_dockerfile_dockerfile_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_ecl_ecl_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_elixir_elixir_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_flow9_flow9_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_freemarker2_freemarker2_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_fsharp_fsharp_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_go_go_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_graphql_graphql_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_handlebars_handlebars_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_hcl_hcl_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_html_html_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_ini_ini_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_java_java_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_javascript_javascript_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_julia_julia_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_kotlin_kotlin_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_less_less_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_lexon_lexon_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_liquid_liquid_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_lua_lua_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_m3_m3_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_markdown_markdown_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_mips_mips_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_msdax_msdax_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_mysql_mysql_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_objective-c_objective-c_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_pascal_pascal_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_pascaligo_pascaligo_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_perl_perl_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_pgsql_pgsql_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_php_php_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_pla_pla_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_postiats_postiats_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_powerquery_powerquery_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_powershell_powershell_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_protobuf_protobuf_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_pug_pug_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_python_python_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_qsharp_qsharp_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_r_r_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_razor_razor_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_redis_redis_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_redshift_redshift_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_restructuredtext_restructuredtext_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_ruby_ruby_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_rust_rust_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_sb_sb_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_scala_scala_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_scheme_scheme_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_scss_scss_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_shell_shell_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_solidity_solidity_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_sophia_sophia_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_sparql_sparql_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_sql_sql_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_st_st_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_swift_swift_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_systemverilog_systemverilog_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_tcl_tcl_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_twig_twig_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_typescript_typescript_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_vb_vb_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_xml_xml_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_basic-languages_yaml_yaml_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_language_css_cssMode_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_language_html_htmlMode_js.js │ │ │ ├── node_modules_monaco-editor_esm_vs_language_json_jsonMode_js.js │ │ │ └── node_modules_monaco-editor_esm_vs_language_typescript_tsMode_js.js │ │ │ └── types │ │ │ ├── Core │ │ │ ├── Config │ │ │ │ ├── Repository.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── CoreServiceProvider.d.ts │ │ │ ├── Dispatcher │ │ │ │ ├── Dispatcher.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── Foundation │ │ │ │ ├── Application.d.ts │ │ │ │ ├── helpers.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── Http │ │ │ │ ├── HttpServiceProvider.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── Storage │ │ │ │ ├── LocalStorageAdapter.d.ts │ │ │ │ ├── SessionStorageAdapter.d.ts │ │ │ │ ├── StorageAdapter.d.ts │ │ │ │ ├── StorageAdapterInterface.d.ts │ │ │ │ ├── StorageServiceProvider.d.ts │ │ │ │ ├── Transformer.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── Support │ │ │ │ ├── Collection.d.ts │ │ │ │ ├── Observable.d.ts │ │ │ │ ├── ServiceProvider.d.ts │ │ │ │ ├── functions │ │ │ │ │ ├── getSetDescendantProp.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── kindOf.d.ts │ │ │ │ │ ├── makeLog.d.ts │ │ │ │ │ ├── objectify.d.ts │ │ │ │ │ └── thenBy.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── defaultConfig.d.ts │ │ │ ├── index.d.ts │ │ │ └── types │ │ │ │ ├── config.d.ts │ │ │ │ ├── fields.d.ts │ │ │ │ ├── helpers.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ └── streams.d.ts │ │ │ ├── Ui │ │ │ ├── Elements │ │ │ │ ├── Components │ │ │ │ │ ├── Alert.d.ts │ │ │ │ │ ├── Toolbar.d.ts │ │ │ │ │ └── index.d.ts │ │ │ │ ├── ControlPanel │ │ │ │ │ ├── ControlPanel.d.ts │ │ │ │ │ ├── ControlPanelHeader.d.ts │ │ │ │ │ ├── ControlPanelSidebar.d.ts │ │ │ │ │ └── index.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── Support │ │ │ │ ├── Decorators │ │ │ │ │ ├── element.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── styled.d.ts │ │ │ │ ├── DefinitionCollection.d.ts │ │ │ │ ├── ElementCollection.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── Theme │ │ │ │ ├── Color.d.ts │ │ │ │ ├── FreeStyle.d.ts │ │ │ │ ├── Theme.d.ts │ │ │ │ ├── ThemeManager.d.ts │ │ │ │ ├── colors.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── setup.d.ts │ │ │ │ ├── utils.d.ts │ │ │ │ └── variables.d.ts │ │ │ ├── UIManager.d.ts │ │ │ ├── UiServiceProvider.d.ts │ │ │ ├── constants.d.ts │ │ │ ├── index.d.ts │ │ │ └── types │ │ │ │ ├── config.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── _expose.d.ts │ │ │ ├── index.d.ts │ │ │ └── require.d.ts │ └── web-tinker │ │ ├── app.css │ │ ├── app.js │ │ ├── github.css │ │ └── mix-manifest.json └── worker.js ├── resources ├── js │ ├── app.js │ └── bootstrap.js ├── scss │ └── app.scss └── views │ ├── admin │ └── dashboard.blade.php │ ├── forgot-password.blade.php │ ├── home.blade.php │ ├── layouts │ └── app.blade.php │ ├── login.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ └── verify-email.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore ├── logs │ └── .gitignore └── streams │ └── .gitignore ├── streams ├── files.json ├── navigation.json ├── people.json ├── users.json └── variables.json ├── tailwind.config.js ├── tailwind.presets.js ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | insert_final_newline = true 7 | indent_style = space 8 | indent_size = 4 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [*.{yml,yaml}] 15 | indent_size = 2 16 | 17 | [docker-compose.yml] 18 | indent_size = 4 19 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.blade.php diff=html 4 | *.css diff=css 5 | *.html diff=html 6 | *.md diff=markdown 7 | *.php diff=php 8 | 9 | /.github export-ignore 10 | CHANGELOG.md export-ignore 11 | .styleci.yml export-ignore 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /public/hot 3 | /public/storage 4 | /storage/*.key 5 | /vendor 6 | .env 7 | .env.backup 8 | .phpunit.result.cache 9 | Homestead.json 10 | Homestead.yaml 11 | composer.lock 12 | auth.json 13 | npm-debug.log 14 | yarn-error.log 15 | /.idea 16 | /.vscode 17 | -------------------------------------------------------------------------------- /__pycache__/locustfile.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/__pycache__/locustfile.cpython-311.pyc -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 16 | ]; 17 | } 18 | -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 16 | ]; 17 | } 18 | -------------------------------------------------------------------------------- /app/Http/Pages/Admin/Dashboard.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-down-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-down-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-down-on-square.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-down-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-long-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-long-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-long-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-long-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-right-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-small-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-small-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-small-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-small-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-up-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-up-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-up-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-uturn-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-uturn-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-uturn-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-arrow-uturn-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-at-symbol.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-backward.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-bars-2.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-bars-3-bottom-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-bars-3-bottom-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-bars-3-center-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-bars-3.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-bell.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-bolt.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-bookmark-slash.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-bookmark-square.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-bookmark.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-camera.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-chart-bar.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-chart-pie.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-chat-bubble-oval-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-check-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-check.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-chevron-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-chevron-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-chevron-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-chevron-up-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-chevron-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-clock.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-cloud-arrow-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-cloud-arrow-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-cloud.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-credit-card.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-cube.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-device-tablet.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-document-minus.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-document-text.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-document.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-ellipsis-horizontal-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-ellipsis-horizontal.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-ellipsis-vertical.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-envelope.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-exclamation-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-exclamation-triangle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-eye.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-flag.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-folder-minus.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-forward.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-hand-raised.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-heart.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-home.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-information-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-key.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-light-bulb.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-lock-closed.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-lock-open.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-magnifying-glass-circle.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-magnifying-glass-minus.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-magnifying-glass.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-microphone.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-minus-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-minus-small.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-minus.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-moon.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-no-symbol.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-paint-brush.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-paper-airplane.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-pause-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-pause.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-pencil.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-play-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-play.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-plus-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-plus-small.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-plus.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-power.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-question-mark-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-queue-list.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-share.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-square-2-stack.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-stop-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-stop.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-tag.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-tv.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-user-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-user-minus.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-user-plus.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-user.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-video-camera-slash.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-video-camera.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-view-columns.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-x-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/m-x-mark.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-adjustments-vertical.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-down-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-down-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-down-on-square.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-down-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-down-tray.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-left-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-left-on-rectangle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-long-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-long-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-long-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-long-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-path.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-right-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-right-on-rectangle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-small-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-small-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-small-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-small-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-top-right-on-square.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-trending-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-trending-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-up-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-up-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-up-on-square.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-up-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-up-tray.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-uturn-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-uturn-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-uturn-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrow-uturn-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrows-pointing-in.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrows-pointing-out.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrows-right-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-arrows-up-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-at-symbol.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-bars-2.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-bars-3-bottom-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-bars-3-bottom-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-bars-3-center-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-bars-3.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-bars-4.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-bars-arrow-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-bars-arrow-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-battery-0.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-bell.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-bolt-slash.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-bolt.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-bookmark-slash.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-bookmark-square.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-bookmark.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-building-library.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-building-office.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-calendar.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-chart-bar-square.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-chart-pie.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-check-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-check.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-chevron-double-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-chevron-double-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-chevron-double-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-chevron-double-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-chevron-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-chevron-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-chevron-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-chevron-up-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-chevron-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-clock.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-cloud-arrow-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-cloud-arrow-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-cloud.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-code-bracket-square.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-code-bracket.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-command-line.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-credit-card.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-cube.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-currency-bangladeshi.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-currency-euro.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-currency-rupee.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-currency-yen.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-cursor-arrow-rays.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-cursor-arrow-ripple.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-device-phone-mobile.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-device-tablet.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-ellipsis-horizontal.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-ellipsis-vertical.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-exclamation-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-exclamation-triangle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-flag.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-folder-arrow-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-folder-minus.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-folder-plus.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-hashtag.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-heart.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-information-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-key.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-link.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-lock-closed.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-lock-open.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-magnifying-glass-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-magnifying-glass-minus.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-magnifying-glass-plus.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-magnifying-glass.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-map-pin.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-microphone.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-minus-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-minus-small.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-minus.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-moon.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-no-symbol.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-paper-airplane.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-paper-clip.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-pause-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-pause.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-pencil.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-play-pause.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-play.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-plus-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-plus-small.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-plus.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-power.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-question-mark-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-queue-list.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-rss.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-shield-check.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-square-3-stack-3d.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-stop.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-sun.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-tv.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-user-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-user-minus.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-user-plus.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-user.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-video-camera.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-view-columns.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-viewfinder-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-wifi.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-window.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-x-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/o-x-mark.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-down-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-down-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-down-on-square.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-down-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-left-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-long-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-long-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-long-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-long-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-right-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-small-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-small-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-small-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-small-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-up-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-up-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-up-on-square.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-up-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-uturn-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-uturn-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-uturn-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-arrow-uturn-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-backward.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-bars-2.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-bars-3-bottom-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-bars-3-bottom-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-bars-3-center-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-bars-3.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-battery-0.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-bolt-slash.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-bolt.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-bookmark-slash.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-bookmark-square.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-bookmark.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-check-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-check.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-chevron-double-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-chevron-double-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-chevron-double-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-chevron-double-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-chevron-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-chevron-left.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-chevron-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-chevron-up-down.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-chevron-up.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-clock.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-cloud.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-command-line.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-credit-card.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-cube.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-ellipsis-horizontal.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-ellipsis-vertical.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-envelope.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-exclamation-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-exclamation-triangle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-folder-minus.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-folder-plus.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-folder.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-forward.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-lock-closed.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-lock-open.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-magnifying-glass-minus.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-magnifying-glass.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-microphone.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-minus-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-minus-small.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-minus.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-moon.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-no-symbol.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-paper-airplane.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-pause.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-pencil.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-play-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-play.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-plus-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-plus-small.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-plus.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-power.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-queue-list.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-share.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-square-2-stack.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-stop-circle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-stop.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-tag.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-user-minus.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-user.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-video-camera.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-view-columns.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/blade-heroicons/s-x-mark.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /public/vendor/streams/core/types/Config/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './Repository'; 2 | -------------------------------------------------------------------------------- /public/vendor/streams/core/types/CoreServiceProvider.d.ts: -------------------------------------------------------------------------------- 1 | import { ServiceProvider } from './Support'; 2 | import { StorageServiceProvider } from './Storage'; 3 | export declare class CoreServiceProvider extends ServiceProvider { 4 | providers: (typeof StorageServiceProvider)[]; 5 | } 6 | -------------------------------------------------------------------------------- /public/vendor/streams/core/types/Dispatcher/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './Dispatcher'; 2 | -------------------------------------------------------------------------------- /public/vendor/streams/core/types/Foundation/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './Application'; 2 | -------------------------------------------------------------------------------- /public/vendor/streams/core/types/Http/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './HttpServiceProvider'; 2 | -------------------------------------------------------------------------------- /public/vendor/streams/core/types/Storage/LocalStorageAdapter.d.ts: -------------------------------------------------------------------------------- 1 | import { StorageAdapter } from '../Storage/StorageAdapter'; 2 | export declare class LocalStorageAdapter extends StorageAdapter { 3 | constructor(); 4 | } 5 | -------------------------------------------------------------------------------- /public/vendor/streams/core/types/Storage/SessionStorageAdapter.d.ts: -------------------------------------------------------------------------------- 1 | import { StorageAdapter } from '../Storage/StorageAdapter'; 2 | export declare class SessionStorageAdapter extends StorageAdapter { 3 | constructor(); 4 | } 5 | -------------------------------------------------------------------------------- /public/vendor/streams/core/types/Storage/StorageAdapterInterface.d.ts: -------------------------------------------------------------------------------- 1 | export interface StorageAdapterInterface { 2 | get(key: string, defaultValue?: any): T; 3 | set(key: string, value: any): this; 4 | has(key: string): boolean; 5 | unset(key: string): this; 6 | clear(): this; 7 | } 8 | -------------------------------------------------------------------------------- /public/vendor/streams/core/types/Storage/StorageServiceProvider.d.ts: -------------------------------------------------------------------------------- 1 | import { ServiceProvider } from '../Support'; 2 | import { StorageAdapterInterface } from './StorageAdapterInterface'; 3 | export declare class StorageServiceProvider extends ServiceProvider { 4 | register(): void; 5 | } 6 | declare module '../Foundation/Application' { 7 | interface Application { 8 | storage: StorageAdapterInterface; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /public/vendor/streams/core/types/Storage/Transformer.d.ts: -------------------------------------------------------------------------------- 1 | export declare class Transformer { 2 | static typePrefix: string; 3 | static get prefixesLength(): number; 4 | static compress(value: any): string; 5 | static decompress(value: any): any; 6 | static encode(value: any): any; 7 | static decode(value: any): any; 8 | } 9 | -------------------------------------------------------------------------------- /public/vendor/streams/core/types/Storage/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './LocalStorageAdapter'; 2 | export * from './SessionStorageAdapter'; 3 | export * from './StorageAdapter'; 4 | export * from './StorageAdapterInterface'; 5 | export * from './StorageServiceProvider'; 6 | export * from './Transformer'; 7 | -------------------------------------------------------------------------------- /public/vendor/streams/core/types/Support/Collection.d.ts: -------------------------------------------------------------------------------- 1 | export declare class Collection extends Array implements Array { 2 | /** 3 | * Create a new collection instance. 4 | * 5 | * @param items 6 | */ 7 | constructor(...items: Type[]); 8 | } 9 | -------------------------------------------------------------------------------- /public/vendor/streams/core/types/Support/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './Collection'; 2 | export * from './ServiceProvider'; 3 | -------------------------------------------------------------------------------- /public/vendor/streams/core/types/Support/utils.d.ts: -------------------------------------------------------------------------------- 1 | import { IServiceProviderClass } from './ServiceProvider'; 2 | export declare const makeLog: (namespace: string) => any; 3 | export declare const isServiceProviderClass: (value: any) => value is IServiceProviderClass; 4 | -------------------------------------------------------------------------------- /public/vendor/streams/core/types/defaultConfig.d.ts: -------------------------------------------------------------------------------- 1 | import { Configuration } from './types'; 2 | export declare const defaultConfig: Configuration; 3 | -------------------------------------------------------------------------------- /public/vendor/streams/core/types/global.d.ts: -------------------------------------------------------------------------------- 1 | declare global { 2 | export interface StreamsGlobal { 3 | core: typeof import('./index'); 4 | } 5 | 6 | export interface Window { 7 | streams: StreamsGlobal; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /public/vendor/streams/core/types/index.d.ts: -------------------------------------------------------------------------------- 1 | import 'reflect-metadata'; 2 | export * from './Config'; 3 | export * from './Dispatcher'; 4 | export * from './Foundation'; 5 | export * from './Http'; 6 | export * from './Storage'; 7 | export * from './Support'; 8 | export * from './types'; 9 | export * from './CoreServiceProvider'; 10 | -------------------------------------------------------------------------------- /public/vendor/streams/core/types/types/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './config'; 2 | export * from './streams'; 3 | export * from './fields'; 4 | import { Streams as streams } from './streams'; 5 | declare module './streams' { 6 | export namespace Streams.Ui { 7 | interface Ui { 8 | form?: streams.Ui.Form.Form; 9 | table?: streams.Ui.Table.Table; 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/css/tailwind.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"resources/public/css/tailwind.css","mappings":"AAAA,mlICAA,w0GDAA,kDEAA,YFAA,aEAA,C","sources":["webpack://streams.ui/./node_modules/tailwindcss/base.css","webpack://streams.ui/./node_modules/tailwindcss/utilities.css","webpack://streams.ui/"],"sourcesContent":["@tailwind base;\n","@tailwind utilities;\n"],"names":[],"sourceRoot":""} -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/Inter-Regular.woff -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/Inter-Regular.woff2 -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/Inter-SemiBold.woff -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-Bold copy.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-Bold copy.woff -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-Bold copy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-Bold copy.woff2 -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-Bold.woff -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-Bold.woff2 -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-BoldItalic copy.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-BoldItalic copy.woff -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-BoldItalic copy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-BoldItalic copy.woff2 -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-BoldItalic.woff -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-BoldItalic.woff2 -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-ExtraBold copy.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-ExtraBold copy.woff -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-ExtraBold copy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-ExtraBold copy.woff2 -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-ExtraBold.woff -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-ExtraBold.woff2 -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-ExtraBoldItalic copy.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-ExtraBoldItalic copy.woff -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-ExtraBoldItalic copy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-ExtraBoldItalic copy.woff2 -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-Italic copy.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-Italic copy.woff -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-Italic copy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-Italic copy.woff2 -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-Italic.woff -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-Italic.woff2 -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-Medium copy.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-Medium copy.woff -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-Medium copy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-Medium copy.woff2 -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-Medium.woff -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-Medium.woff2 -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-MediumItalic copy.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-MediumItalic copy.woff -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-MediumItalic copy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-MediumItalic copy.woff2 -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-MediumItalic.woff -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-MediumItalic.woff2 -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-Regular copy.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-Regular copy.woff -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-Regular copy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-Regular copy.woff2 -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-Regular.woff -------------------------------------------------------------------------------- /public/vendor/streams/ui/fonts/JetBrainsMono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-streams/streams/06fde618b8f8f8a12680f9d98314728de34c03dd/public/vendor/streams/ui/fonts/JetBrainsMono-Regular.woff2 -------------------------------------------------------------------------------- /public/vendor/streams/ui/js/index.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ 2 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Core/Config/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './Repository'; 2 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Core/CoreServiceProvider.d.ts: -------------------------------------------------------------------------------- 1 | import { ServiceProvider } from './Support'; 2 | import { StorageServiceProvider } from './Storage'; 3 | export declare class CoreServiceProvider extends ServiceProvider { 4 | providers: (typeof StorageServiceProvider)[]; 5 | } 6 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Core/Dispatcher/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './Dispatcher'; 2 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Core/Foundation/helpers.d.ts: -------------------------------------------------------------------------------- 1 | import { Application } from './Application'; 2 | export declare const onStarted: (cb: (app: Application) => void) => void; 3 | export declare const onBooted: (cb: (app: Application) => void) => void; 4 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Core/Foundation/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './Application'; 2 | export * from './helpers'; 3 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Core/Http/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './HttpServiceProvider'; 2 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Core/Storage/LocalStorageAdapter.d.ts: -------------------------------------------------------------------------------- 1 | import { StorageAdapter } from './StorageAdapter'; 2 | export declare class LocalStorageAdapter extends StorageAdapter { 3 | constructor(); 4 | } 5 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Core/Storage/SessionStorageAdapter.d.ts: -------------------------------------------------------------------------------- 1 | import { StorageAdapter } from './StorageAdapter'; 2 | export declare class SessionStorageAdapter extends StorageAdapter { 3 | constructor(); 4 | } 5 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Core/Storage/StorageAdapterInterface.d.ts: -------------------------------------------------------------------------------- 1 | export interface StorageAdapterInterface { 2 | get(key: string, defaultValue?: any): T; 3 | set(key: string, value: any): this; 4 | has(key: string): boolean; 5 | unset(key: string): this; 6 | clear(): this; 7 | } 8 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Core/Storage/StorageServiceProvider.d.ts: -------------------------------------------------------------------------------- 1 | import { ServiceProvider } from '../Support'; 2 | import { StorageAdapterInterface } from './StorageAdapterInterface'; 3 | export declare class StorageServiceProvider extends ServiceProvider { 4 | register(): void; 5 | } 6 | declare module '../Foundation/Application' { 7 | interface Application { 8 | storage: StorageAdapterInterface; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Core/Storage/Transformer.d.ts: -------------------------------------------------------------------------------- 1 | export declare class Transformer { 2 | static typePrefix: string; 3 | static get prefixesLength(): number; 4 | static compress(value: any): string; 5 | static decompress(value: any): any; 6 | static encode(value: any): any; 7 | static decode(value: any): any; 8 | } 9 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Core/Storage/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './LocalStorageAdapter'; 2 | export * from './SessionStorageAdapter'; 3 | export * from './StorageAdapter'; 4 | export * from './StorageAdapterInterface'; 5 | export * from './StorageServiceProvider'; 6 | export * from './Transformer'; 7 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Core/Support/Collection.d.ts: -------------------------------------------------------------------------------- 1 | export declare class Collection extends Array implements Array { 2 | /** 3 | * Create a new collection instance. 4 | * 5 | * @param items 6 | */ 7 | constructor(...items: Type[]); 8 | } 9 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Core/Support/Observable.d.ts: -------------------------------------------------------------------------------- 1 | export * from 'object-observer'; 2 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Core/Support/functions/getSetDescendantProp.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getSetDescendantProp(items: any, key: any, value?: any): any; 2 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Core/Support/functions/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './kindOf'; 2 | export * from './objectify'; 3 | export * from './thenBy'; 4 | export * from './makeLog'; 5 | export * from './getSetDescendantProp'; 6 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Core/Support/functions/makeLog.d.ts: -------------------------------------------------------------------------------- 1 | export declare const makeLog: (namespace: string) => any; 2 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Core/Support/functions/objectify.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * @param obj 4 | * @param k 5 | * @param v 6 | * @example 7 | * 8 | * params = Object.entries(params).filter(([ key, value ]) => { 9 | * return value.toString().length > 0; 10 | * }).reduce(utils.objectify, {}); 11 | * 12 | */ 13 | export declare const objectify: (obj: any, [k, v]: [any, any]) => any; 14 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Core/Support/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './functions'; 2 | export * from './Collection'; 3 | export * from './ServiceProvider'; 4 | export * from './Observable'; 5 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Core/defaultConfig.d.ts: -------------------------------------------------------------------------------- 1 | import { Configuration } from './types'; 2 | export declare const defaultConfig: Configuration; 3 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Core/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './Config'; 2 | export * from './Dispatcher'; 3 | export * from './Foundation'; 4 | export * from './Storage'; 5 | export * from './Support'; 6 | export * from './types'; 7 | export * from './CoreServiceProvider'; 8 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Core/types/config.d.ts: -------------------------------------------------------------------------------- 1 | import { Repository } from '../Config'; 2 | import { IServiceProviderClass } from '../Support'; 3 | export declare type Config = Repository & Configuration; 4 | export interface Configuration { 5 | debug?: boolean; 6 | csrf?: string; 7 | } 8 | export interface ApplicationInitOptions { 9 | providers?: IServiceProviderClass[]; 10 | config?: Configuration; 11 | } 12 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Core/types/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './config'; 2 | export * from './streams'; 3 | export * from './fields'; 4 | import { Streams as streams } from './streams'; 5 | declare module './streams' { 6 | namespace Streams.Ui { 7 | interface Ui { 8 | form?: streams.Ui.Form.Form; 9 | table?: streams.Ui.Table.Table; 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Ui/Elements/Components/Alert.d.ts: -------------------------------------------------------------------------------- 1 | import { FASTElement } from '@microsoft/fast-element'; 2 | export declare class Alert extends FASTElement { 3 | label?: string; 4 | type: string; 5 | types: string[]; 6 | get classes(): string; 7 | } 8 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Ui/Elements/Components/Toolbar.d.ts: -------------------------------------------------------------------------------- 1 | import { FASTElement } from '@microsoft/fast-element'; 2 | import { styled } from '../../Support'; 3 | export interface Toolbar extends styled.Element { 4 | } 5 | export declare class Toolbar extends FASTElement { 6 | static defaultCss: styled.CSS; 7 | handleButtonClick(e: any): void; 8 | } 9 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Ui/Elements/Components/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './Alert'; 2 | export * from './Toolbar'; 3 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Ui/Elements/ControlPanel/ControlPanel.d.ts: -------------------------------------------------------------------------------- 1 | import { FASTElement } from '@microsoft/fast-element'; 2 | export declare class ControlPanel extends FASTElement { 3 | brand_mode: string; 4 | sidebar: HTMLElement[]; 5 | header: HTMLElement[]; 6 | title: string; 7 | } 8 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Ui/Elements/ControlPanel/ControlPanelHeader.d.ts: -------------------------------------------------------------------------------- 1 | import { FASTElement } from '@microsoft/fast-element'; 2 | export declare class ControlPanelHeader extends FASTElement { 3 | } 4 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Ui/Elements/ControlPanel/ControlPanelSidebar.d.ts: -------------------------------------------------------------------------------- 1 | import { FASTElement } from '@microsoft/fast-element'; 2 | export declare class ControlPanelSidebar extends FASTElement { 3 | } 4 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Ui/Elements/ControlPanel/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './ControlPanel'; 2 | export * from './ControlPanelHeader'; 3 | export * from './ControlPanelSidebar'; 4 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Ui/Elements/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './Components/Alert'; 2 | export * from './ControlPanel'; 3 | export * from './Components'; 4 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Ui/Support/Decorators/element.d.ts: -------------------------------------------------------------------------------- 1 | import { PartialFASTElementDefinition } from '@microsoft/fast-element'; 2 | export declare function element(name: string): ClassDecorator; 3 | export declare function element(def: PartialFASTElementDefinition): ClassDecorator; 4 | export declare function element(name: string, def?: Omit): ClassDecorator; 5 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Ui/Support/Decorators/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './element'; 2 | export * from './styled'; 3 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Ui/Support/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './Decorators'; 2 | export * from './DefinitionCollection'; 3 | export * from './ElementCollection'; 4 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Ui/Theme/index.d.ts: -------------------------------------------------------------------------------- 1 | import './setup'; 2 | export * from './Color'; 3 | export * from './colors'; 4 | export * from './variables'; 5 | export * from './Theme'; 6 | export * from './ThemeManager'; 7 | export { default as utils } from './utils'; 8 | export * from './utils'; 9 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Ui/Theme/setup.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Ui/UIManager.d.ts: -------------------------------------------------------------------------------- 1 | import { DefinitionCollection, ElementCollection } from './Support'; 2 | import { ThemeManager } from './Theme'; 3 | export declare class UIManager { 4 | elements: ElementCollection; 5 | definitions: DefinitionCollection; 6 | themes: ThemeManager; 7 | } 8 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Ui/constants.d.ts: -------------------------------------------------------------------------------- 1 | export declare const constants: { 2 | fontPath: string; 3 | rootSelector: string; 4 | normalize: boolean; 5 | }; 6 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Ui/index.d.ts: -------------------------------------------------------------------------------- 1 | import './Elements'; 2 | export * from './Elements'; 3 | export * from './UiServiceProvider'; 4 | export * from './Support'; 5 | export * from './Theme'; 6 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Ui/types/config.d.ts: -------------------------------------------------------------------------------- 1 | export interface StreamsUiConfiguration { 2 | theme?: string; 3 | fontPath?: string; 4 | rootSelector?: string; 5 | normalize?: boolean; 6 | } 7 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/Ui/types/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './config'; 2 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/_expose.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/index.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | import 'reflect-metadata'; 3 | export * from './Core'; 4 | export * from './Ui'; 5 | import './_expose.ts'; 6 | -------------------------------------------------------------------------------- /public/vendor/streams/ui/types/require.d.ts: -------------------------------------------------------------------------------- 1 | import 'requirejs'; 2 | -------------------------------------------------------------------------------- /public/vendor/web-tinker/mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/app.js": "/app.js?id=54675ea5df087610508e", 3 | "/app.css": "/app.css?id=1e19e507bfac7fe73255" 4 | } 5 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | import '../scss/app.scss'; 3 | import 'tippy.js/dist/tippy.css'; 4 | 5 | import { Alpine } from '../../vendor/livewire/livewire/dist/livewire.esm'; 6 | 7 | import Tooltip from "@ryangjchandler/alpine-tooltip"; 8 | import Mousetrap from '@danharrin/alpine-mousetrap'; 9 | 10 | Alpine.plugin(Tooltip); 11 | Alpine.plugin(Mousetrap); 12 | -------------------------------------------------------------------------------- /resources/scss/app.scss: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | * { 6 | font-size: 16px; 7 | } 8 | 9 | // LastPass Autofill Fix 10 | [autocomplete="off"] + div[data-lastpass-icon-root="true"] { 11 | opacity: 0 !important; 12 | display: none !important; 13 | } 14 | 15 | [autocomplete="off"] + div[data-lastpass-infield="true"] { 16 | opacity: 0 !important; 17 | display: none !important; 18 | } 19 | -------------------------------------------------------------------------------- /resources/views/admin/dashboard.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | Count: {{ $count }} 4 |
5 |
6 | Increment 7 |
8 |
9 | Decrement 10 |
11 |
12 | Reset 13 | 14 |
15 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | compiled.php 2 | config.php 3 | down 4 | events.scanned.php 5 | maintenance.php 6 | routes.php 7 | routes.scanned.php 8 | schedule-* 9 | services.json 10 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/streams/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | import preset from './vendor/streams/ui/tailwind.preset.js' 2 | 3 | export default { 4 | presets: [preset], 5 | content: [ 6 | './vendor/streams/ui/**/*.blade.php', 7 | './resources/**/*.blade.php', 8 | './docs/*.md', 9 | ], 10 | plugins: [ 11 | require('@tailwindcss/forms'), 12 | require('@tailwindcss/typography'), 13 | ], 14 | } 15 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import laravel from 'laravel-vite-plugin'; 3 | 4 | export default defineConfig({ 5 | plugins: [ 6 | laravel({ 7 | input: [ 8 | 'resources/js/app.js', 9 | ], 10 | refresh: [ 11 | './vendor/streams/ui/**/*.blade.php', 12 | ], 13 | }), 14 | ] 15 | }); 16 | --------------------------------------------------------------------------------