stacks 0.50.0 → 0.52.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -17
- package/api/nitro.config.ts +17 -0
- package/api/package.json +42 -0
- package/api/routes/index.ts +1 -0
- package/api/serverless.yml +11 -0
- package/auto-imports.d.ts +476 -57
- package/components/vue/main.ts +1 -0
- package/components/vue/package.json +1 -1
- package/components/web/package.json +1 -1
- package/core/actions/README.md +1 -1
- package/core/actions/build.config.ts +13 -0
- package/core/actions/node_modules/.bin/markdown-it +2 -2
- package/core/actions/node_modules/.bin/unbuild +17 -0
- package/core/actions/package.json +215 -13
- package/core/actions/src/{build-component-libs.ts → build/component-libs.ts} +1 -1
- package/core/actions/src/build/core.ts +6 -0
- package/core/actions/src/{build-stacks.ts → build/stacks.ts} +1 -1
- package/core/actions/src/bump.ts +1 -1
- package/core/actions/src/changelog.ts +1 -1
- package/core/actions/src/clean.ts +9 -19
- package/core/actions/src/deploy/domains.ts +8 -0
- package/core/actions/src/deploy.ts +8 -0
- package/core/actions/src/{dev-components.ts → dev/components.ts} +1 -1
- package/core/actions/src/{test-ui.ts → dev/docs.ts} +2 -2
- package/core/actions/src/{dev.ts → dev/index.ts} +0 -25
- package/core/actions/src/fresh.ts +2 -2
- package/core/actions/src/{generate-component-meta.ts → generate/component-meta.ts} +1 -1
- package/core/actions/src/{generate-ide-helpers.ts → generate/ide-helpers.ts} +2 -1
- package/core/actions/src/{generate.ts → generate/index.ts} +21 -6
- package/core/actions/src/{generate-lib-entries.ts → generate/lib-entries.ts} +1 -1
- package/core/actions/src/{generate-package-jsons.ts → generate/package-jsons.ts} +1 -1
- package/core/actions/src/generate/settings.ts +4 -0
- package/core/actions/src/{generate-vscode-custom-data.ts → generate/vscode-custom-data.ts} +1 -1
- package/core/actions/src/{generate-vue-compat.ts → generate/vue-compat.ts} +1 -1
- package/core/actions/src/helpers/lib-entries.ts +7 -6
- package/core/actions/src/helpers/package-json.ts +9 -9
- package/core/actions/src/helpers/utils.ts +21 -25
- package/core/actions/src/helpers/vscode-custom-data.ts +1 -1
- package/core/actions/src/key-generate.ts +2 -2
- package/core/actions/src/{lint.ts → lint/index.ts} +1 -1
- package/core/actions/src/make.ts +63 -19
- package/core/actions/src/migrate.ts +3 -0
- package/core/actions/src/preinstall.ts +2 -2
- package/core/actions/src/prepublish.ts +1 -1
- package/core/actions/src/release.ts +4 -3
- package/core/actions/src/seed.ts +3 -0
- package/core/actions/src/{test-coverage.ts → test/coverage.ts} +1 -1
- package/core/actions/src/test/feature.ts +5 -0
- package/core/actions/src/{test-unit.ts → test/ui.ts} +1 -1
- package/core/actions/src/{test-feature.ts → test/unit.ts} +1 -1
- package/core/actions/src/test.ts +1 -1
- package/core/actions/src/tinker.ts +9 -0
- package/core/actions/src/typecheck.ts +1 -1
- package/core/actions/src/upgrade/framework.ts +29 -0
- package/core/actions/src/upgrade/index.ts +27 -0
- package/core/actions/src/upgrade/node.ts +4 -0
- package/core/actions/src/upgrade/package-manager.ts +4 -0
- package/core/actions/src/upgrade.ts +75 -0
- package/core/ai/README.md +1 -1
- package/core/ai/build.config.ts +13 -0
- package/core/ai/package.json +15 -12
- package/core/alias/README.md +1 -1
- package/core/alias/build.config.ts +13 -0
- package/core/alias/package.json +11 -11
- package/core/alias/src/index.ts +29 -12
- package/core/{drivers → analytics}/README.md +18 -9
- package/core/analytics/build.config.ts +13 -0
- package/core/analytics/package.json +64 -0
- package/core/arrays/README.md +1 -1
- package/core/arrays/build.config.ts +13 -0
- package/core/arrays/package.json +13 -12
- package/core/arrays/src/index.ts +4 -0
- package/core/auth/README.md +1 -1
- package/core/auth/build.config.ts +13 -0
- package/core/auth/package.json +11 -12
- package/{buddy → core/buddy}/README.md +19 -16
- package/core/buddy/build.config.ts +16 -0
- package/core/buddy/package.json +127 -0
- package/core/buddy/src/cli.ts +96 -0
- package/{buddy → core/buddy}/src/commands/add.ts +10 -11
- package/{buddy → core/buddy}/src/commands/build.ts +32 -29
- package/{buddy → core/buddy}/src/commands/changelog.ts +7 -6
- package/core/buddy/src/commands/clean.ts +30 -0
- package/{buddy → core/buddy}/src/commands/commit.ts +2 -2
- package/{buddy → core/buddy}/src/commands/create.ts +6 -6
- package/core/buddy/src/commands/deploy.ts +30 -0
- package/{buddy → core/buddy}/src/commands/dev.ts +51 -29
- package/{buddy → core/buddy}/src/commands/example.ts +14 -14
- package/{buddy → core/buddy}/src/commands/fresh.ts +5 -5
- package/{buddy → core/buddy}/src/commands/generate.ts +28 -22
- package/{buddy → core/buddy}/src/commands/index.ts +9 -1
- package/core/buddy/src/commands/inspire.ts +25 -0
- package/{buddy → core/buddy}/src/commands/key.ts +8 -7
- package/{buddy → core/buddy}/src/commands/lint.ts +13 -11
- package/{buddy → core/buddy}/src/commands/make.ts +65 -46
- package/core/buddy/src/commands/migrate.ts +32 -0
- package/core/buddy/src/commands/onboarding.ts +29 -0
- package/{buddy → core/buddy}/src/commands/preinstall.ts +2 -2
- package/{buddy → core/buddy}/src/commands/prepublish.ts +2 -2
- package/{buddy → core/buddy}/src/commands/release.ts +5 -5
- package/core/buddy/src/commands/seed.ts +31 -0
- package/core/buddy/src/commands/setting.ts +29 -0
- package/{buddy → core/buddy}/src/commands/setup.ts +3 -3
- package/{buddy → core/buddy}/src/commands/test.ts +44 -39
- package/core/buddy/src/commands/tinker.ts +29 -0
- package/{buddy → core/buddy}/src/commands/types.ts +3 -3
- package/core/buddy/src/commands/upgrade.ts +141 -0
- package/core/buddy/src/commands/version.ts +31 -0
- package/{buddy → core/buddy}/src/index.ts +2 -1
- package/core/build/README.md +1 -1
- package/core/build/build.config.ts +13 -0
- package/core/build/node_modules/.bin/unbuild +4 -4
- package/core/build/node_modules/.bin/vite +4 -4
- package/core/build/node_modules/.bin/vite-ssg +4 -4
- package/core/build/node_modules/.bin/vue-docgen-web-types +4 -4
- package/core/build/package.json +26 -24
- package/core/build/src/desktop.ts +141 -11
- package/core/build/src/pages.ts +1 -0
- package/core/build/src/stacks.ts +55 -30
- package/core/build/src/vue-components.ts +4 -10
- package/core/build/web-types.config.cjs +1 -0
- package/core/cache/README.md +1 -1
- package/core/cache/build.config.ts +13 -0
- package/core/cache/package.json +31 -16
- package/core/cache/src/drivers/dynamodb.ts +119 -117
- package/core/cache/src/drivers/memcached.ts +15 -14
- package/core/cache/src/drivers/redis.ts +7 -4
- package/core/cache/tests/Redis.test.ts +1 -0
- package/core/chat/README.md +2 -1
- package/core/chat/build.config.ts +13 -0
- package/core/chat/package.json +16 -16
- package/core/chat/src/drivers/slack.ts +20 -18
- package/core/chat/src/drivers/teams.ts +24 -0
- package/core/chat/src/index.ts +1 -0
- package/core/cli/README.md +2 -2
- package/core/cli/build.config.ts +14 -0
- package/core/cli/package.json +16 -14
- package/core/cli/src/actions/index.ts +0 -1
- package/core/cli/src/actions/install.ts +3 -3
- package/core/cli/src/command.ts +2 -7
- package/core/cli/src/console.ts +2 -3
- package/core/cli/src/index.ts +2 -0
- package/core/cli/src/parse.ts +99 -0
- package/core/cli/src/{actions/run.ts → run.ts} +38 -21
- package/core/cloud/README.md +1 -1
- package/core/cloud/build.config.ts +13 -0
- package/core/cloud/package.json +11 -12
- package/core/collections/README.md +1 -1
- package/core/collections/build.config.ts +13 -0
- package/core/collections/package.json +12 -13
- package/core/config/README.md +28 -10
- package/core/config/build.config.ts +40 -4
- package/core/config/package.json +20 -19
- package/core/config/src/defaults.ts +22 -0
- package/core/config/src/index.ts +3 -16
- package/core/config/src/stacks.ts +42 -0
- package/core/database/README.md +1 -1
- package/core/database/build.config.ts +17 -0
- package/core/database/package.json +19 -14
- package/core/database/src/factory/index.ts +16 -62
- package/core/database/src/migrations/index.ts +145 -3
- package/core/database/src/seeder/index.ts +75 -6
- package/core/datetime/README.md +1 -1
- package/core/datetime/build.config.ts +14 -0
- package/core/datetime/package.json +11 -12
- package/core/datetime/src/index.ts +1 -1
- package/core/desktop/README.md +1 -1
- package/core/desktop/build.config.ts +13 -0
- package/core/desktop/node_modules/.bin/tauri +4 -4
- package/core/desktop/package.json +16 -17
- package/core/development/README.md +27 -0
- package/core/development/build.config.ts +13 -0
- package/core/development/node_modules/.bin/tsc +17 -0
- package/core/development/node_modules/.bin/tsserver +17 -0
- package/core/development/node_modules/.bin/tsx +17 -0
- package/core/development/node_modules/.bin/unbuild +17 -0
- package/core/{x-ray → development}/package.json +32 -33
- package/core/development/src/index.ts +2 -0
- package/core/docs/README.md +1 -1
- package/core/docs/build.config.ts +15 -0
- package/core/docs/node_modules/.bin/vitepress +4 -4
- package/core/docs/package.json +14 -13
- package/core/docs/src/index.ts +3 -2
- package/core/domains/README.md +1 -1
- package/core/domains/build.config.ts +13 -0
- package/core/domains/package.json +11 -11
- package/core/email/README.md +1 -1
- package/core/email/build.config.ts +14 -0
- package/core/email/node_modules/.bin/maizzle +4 -4
- package/core/email/package.json +29 -24
- package/core/email/src/actions/send.ts +1 -1
- package/core/email/src/drivers/emailjs.ts +10 -8
- package/core/email/src/drivers/mailgun.ts +8 -6
- package/core/email/src/drivers/mailjet.ts +7 -5
- package/core/email/src/drivers/mandrill.ts +6 -4
- package/core/email/src/drivers/netcore.ts +6 -4
- package/core/email/src/drivers/nodemailer.ts +10 -8
- package/core/email/src/drivers/postmark.ts +6 -4
- package/core/email/src/drivers/sendgrid.ts +7 -5
- package/core/email/src/drivers/ses.ts +18 -15
- package/core/error-handling/README.md +1 -1
- package/core/error-handling/build.config.ts +14 -0
- package/core/error-handling/package.json +14 -12
- package/core/error-handling/src/index.ts +1 -3
- package/core/events/README.md +1 -1
- package/core/events/package.json +12 -12
- package/core/events/src/index.ts +3 -2
- package/core/faker/README.md +62 -0
- package/core/faker/build.config.ts +13 -0
- package/core/faker/package.json +55 -0
- package/core/faker/src/index.ts +1 -0
- package/core/git/README.md +1 -1
- package/core/git/build.config.ts +13 -0
- package/core/git/node_modules/.bin/bumpp +4 -4
- package/core/git/node_modules/.bin/changelogen +4 -4
- package/core/git/node_modules/.bin/commitizen +2 -2
- package/core/git/node_modules/.bin/cz +2 -2
- package/core/git/node_modules/.bin/giget +4 -4
- package/core/git/node_modules/.bin/git-cz +2 -2
- package/core/git/node_modules/.bin/simple-git-hooks +2 -2
- package/core/git/package.json +15 -16
- package/core/health/README.md +1 -1
- package/core/health/build.config.ts +13 -0
- package/core/health/package.json +11 -12
- package/core/lint/README.md +1 -1
- package/core/lint/build.config.ts +13 -0
- package/core/lint/node_modules/.bin/eslint +4 -4
- package/core/lint/node_modules/.bin/lint-staged +4 -4
- package/core/lint/node_modules/.bin/publint +17 -0
- package/core/lint/package.json +16 -16
- package/core/logging/README.md +1 -1
- package/core/logging/build.config.ts +15 -0
- package/core/logging/node_modules/.bin/tsc +4 -4
- package/core/logging/node_modules/.bin/tsserver +4 -4
- package/core/logging/node_modules/.bin/tsx +17 -0
- package/core/logging/node_modules/.bin/unbuild +17 -0
- package/core/logging/package.json +19 -11
- package/core/logging/src/index.ts +4 -8
- package/core/modules/README.md +1 -1
- package/core/modules/build.config.ts +13 -0
- package/core/modules/package.json +19 -11
- package/core/notifications/README.md +1 -1
- package/core/notifications/build.config.ts +0 -1
- package/core/notifications/node_modules/.bin/maizzle +4 -4
- package/core/notifications/package.json +33 -33
- package/core/notifications/src/index.ts +13 -7
- package/core/notifications/src/tailwind.config.ts +3 -3
- package/core/notifications/src/utils/config.ts +2 -2
- package/core/notifications/tests/email/Mailgun.test.ts +1 -1
- package/core/objects/README.md +1 -1
- package/core/objects/build.config.ts +13 -0
- package/core/objects/package.json +14 -13
- package/core/{cloud/dist/actions → orm}/README.md +14 -19
- package/core/orm/build.config.ts +15 -0
- package/core/{drivers → orm}/package.json +18 -19
- package/core/orm/src/index.ts +43 -0
- package/core/pages/build.config.ts +13 -0
- package/core/pages/package.json +57 -0
- package/core/pages/src/index.ts +39 -0
- package/core/pages/tests/example.test.ts +7 -0
- package/core/path/README.md +1 -1
- package/core/{tables → path}/build.config.ts +2 -5
- package/core/path/package.json +13 -11
- package/core/path/src/index.ts +101 -14
- package/core/payments/README.md +1 -1
- package/core/payments/build.config.ts +13 -0
- package/core/payments/package.json +18 -12
- package/core/payments/src/drivers/stripe.ts +136 -0
- package/core/payments/src/index.ts +1 -1
- package/core/push/README.md +1 -1
- package/core/push/build.config.ts +13 -0
- package/core/push/package.json +13 -16
- package/core/push/src/drivers/expo.ts +18 -16
- package/core/push/src/drivers/fcm.ts +18 -16
- package/core/{x-ray → query-builder}/README.md +14 -21
- package/core/query-builder/build.config.ts +13 -0
- package/core/query-builder/package.json +56 -0
- package/core/query-builder/src/index.ts +1 -0
- package/core/query-builder/src/kysely.ts +37 -0
- package/core/query-builder/tests/example.test.ts +7 -0
- package/core/queue/README.md +1 -1
- package/core/queue/build.config.ts +13 -0
- package/core/queue/package.json +11 -12
- package/core/realtime/README.md +1 -1
- package/core/realtime/build.config.ts +13 -0
- package/core/realtime/package.json +11 -12
- package/core/router/README.md +1 -1
- package/core/router/build.config.ts +13 -0
- package/core/router/package.json +12 -13
- package/core/router/src/index.ts +4 -3
- package/core/scheduler/README.md +137 -0
- package/core/scheduler/build.config.ts +13 -0
- package/core/{dashboard → scheduler}/package.json +20 -21
- package/core/scheduler/src/index.ts +120 -0
- package/core/scheduler/tests/example.test.ts +7 -0
- package/core/search-engine/README.md +1 -1
- package/core/search-engine/build.config.ts +13 -0
- package/core/search-engine/package.json +16 -15
- package/core/search-engine/src/drivers/meilisearch.ts +3 -1
- package/core/search-engine/src/index.ts +4 -2
- package/core/security/README.md +1 -1
- package/core/security/build.config.ts +13 -0
- package/core/security/package.json +12 -13
- package/core/security/src/crypt.ts +2 -2
- package/core/server/README.md +1 -1
- package/core/server/build.config.ts +13 -0
- package/core/server/node_modules/.bin/nitro +4 -4
- package/core/server/node_modules/.bin/nitropack +4 -4
- package/core/server/node_modules/.bin/vite +4 -4
- package/core/server/package.json +13 -13
- package/core/server/src/index.ts +1 -1
- package/core/server/src/nitro.config.ts +1 -0
- package/core/signals/README.md +105 -0
- package/core/signals/build.config.ts +13 -0
- package/core/signals/package.json +55 -0
- package/core/signals/src/index.ts +1 -0
- package/core/signals/tests/example.test.ts +7 -0
- package/core/{cloud/src/actions → slug}/README.md +11 -5
- package/core/slug/build.config.ts +13 -0
- package/core/slug/package.json +55 -0
- package/core/slug/src/index.ts +56 -0
- package/core/slug/tests/example.test.ts +7 -0
- package/core/sms/README.md +2 -1
- package/core/sms/build.config.ts +13 -0
- package/core/sms/package.json +22 -22
- package/core/sms/src/drivers/gupshup.ts +3 -3
- package/core/sms/src/drivers/nexmo.ts +4 -4
- package/core/sms/src/drivers/plivo.ts +4 -4
- package/core/sms/src/drivers/sms77.ts +3 -3
- package/core/sms/src/drivers/sns.ts +4 -4
- package/core/sms/src/drivers/telnyx.ts +4 -4
- package/core/sms/src/drivers/termii.ts +3 -3
- package/core/sms/src/drivers/twilio.ts +4 -4
- package/core/storage/README.md +1 -1
- package/core/storage/build.config.ts +13 -0
- package/core/storage/package.json +14 -14
- package/core/storage/src/index.ts +16 -0
- package/core/strings/README.md +7 -6
- package/core/strings/package.json +13 -13
- package/core/strings/src/case.ts +1 -0
- package/core/strings/src/pluralize.ts +5 -1
- package/core/strings/src/utils.ts +48 -6
- package/core/testing/README.md +1 -1
- package/core/testing/build.config.ts +13 -0
- package/core/testing/node_modules/.bin/playwright +4 -4
- package/core/testing/node_modules/.bin/tsc +4 -4
- package/core/testing/node_modules/.bin/tsserver +4 -4
- package/core/testing/node_modules/.bin/unbuild +17 -0
- package/core/testing/node_modules/.bin/vitest +4 -4
- package/core/testing/package.json +16 -15
- package/core/tinker/README.md +61 -0
- package/core/tinker/node_modules/.bin/tsx +17 -0
- package/core/tinker/package.json +45 -0
- package/core/tinker/tinker.js +2 -0
- package/core/types/README.md +1 -1
- package/core/types/build.config.ts +13 -0
- package/core/types/node_modules/.bin/markdown-it +2 -2
- package/core/types/node_modules/.bin/vite +17 -0
- package/core/types/node_modules/.bin/vite-ssg +4 -4
- package/core/types/node_modules/.bin/vitepress +4 -4
- package/core/types/package.json +33 -24
- package/core/types/src/app.ts +4 -16
- package/core/types/src/auto-imports.ts +1 -3
- package/core/types/src/build.ts +1 -1
- package/core/types/src/cache.ts +78 -0
- package/core/types/src/cdn.ts +15 -0
- package/core/types/src/cli.ts +94 -60
- package/core/types/src/components.ts +1 -3
- package/core/types/src/cron-jobs.ts +17 -0
- package/core/types/src/database.ts +39 -2
- package/core/types/src/deploy.ts +8 -11
- package/core/types/src/dns.ts +49 -0
- package/core/types/src/docs.ts +2 -0
- package/core/types/src/events.ts +1 -1
- package/core/types/src/git.ts +1 -1
- package/core/types/src/index.ts +10 -2
- package/core/types/src/library.ts +7 -2
- package/core/types/src/model.ts +46 -0
- package/core/types/src/notifications.ts +151 -117
- package/core/types/src/pages.ts +10 -8
- package/core/types/src/payments.ts +63 -0
- package/core/types/src/reactivity.ts +1 -3
- package/core/types/src/router.ts +30 -0
- package/core/types/src/search-engine.ts +56 -8
- package/core/types/src/ssg.ts +1 -1
- package/core/types/src/stacks.ts +203 -0
- package/core/types/src/ui.ts +1 -1
- package/core/ui/README.md +1 -1
- package/core/ui/build.config.ts +13 -0
- package/core/ui/node_modules/.bin/vue-tsc +4 -4
- package/core/ui/package.json +23 -20
- package/core/ui/src/index.ts +5 -2
- package/core/ui/src/unocss.config.ts +47 -0
- package/core/ui/src/unocss.ts +2 -2
- package/core/utils/build.config.ts +13 -0
- package/core/utils/node_modules/.bin/rimraf +4 -4
- package/core/utils/node_modules/.bin/semver +17 -0
- package/core/utils/package.json +46 -22
- package/core/utils/src/base.ts +11 -6
- package/core/utils/src/config.ts +97 -0
- package/core/utils/src/debounce.ts +1 -0
- package/core/utils/src/guards.ts +3 -3
- package/core/utils/src/helpers.ts +30 -22
- package/core/utils/src/index.ts +7 -4
- package/core/utils/src/is.ts +80 -11
- package/core/utils/src/promise.ts +1 -1
- package/core/utils/src/throttle.ts +45 -0
- package/core/validation/README.md +1 -1
- package/core/validation/build.config.ts +13 -0
- package/core/validation/package.json +13 -14
- package/core/validation/src/index.ts +26 -2
- package/docs/.vitepress/config.ts +9 -0
- package/docs/README.md +13 -0
- package/docs/node_modules/.bin/rimraf +17 -0
- package/docs/node_modules/.bin/vitepress +17 -0
- package/docs/package.json +46 -0
- package/package.json +75 -35
- package/pages/desktop/.gitignore +24 -0
- package/pages/desktop/README.md +73 -0
- package/{core/x-ray → pages/desktop}/index.html +1 -1
- package/pages/desktop/package.json +26 -0
- package/pages/desktop/public/favicon.svg +1 -0
- package/pages/desktop/src/.gitignore +3 -0
- package/pages/desktop/src/Cargo.lock +3599 -0
- package/pages/desktop/src/Cargo.toml +28 -0
- package/pages/desktop/src/build.rs +3 -0
- package/pages/desktop/src/icons/128x128.png +0 -0
- package/pages/desktop/src/icons/128x128@2x.png +0 -0
- package/pages/desktop/src/icons/32x32.png +0 -0
- package/pages/desktop/src/icons/Square107x107Logo.png +0 -0
- package/pages/desktop/src/icons/Square142x142Logo.png +0 -0
- package/pages/desktop/src/icons/Square150x150Logo.png +0 -0
- package/pages/desktop/src/icons/Square284x284Logo.png +0 -0
- package/pages/desktop/src/icons/Square30x30Logo.png +0 -0
- package/pages/desktop/src/icons/Square310x310Logo.png +0 -0
- package/pages/desktop/src/icons/Square44x44Logo.png +0 -0
- package/pages/desktop/src/icons/Square71x71Logo.png +0 -0
- package/pages/desktop/src/icons/Square89x89Logo.png +0 -0
- package/pages/desktop/src/icons/StoreLogo.png +0 -0
- package/pages/desktop/src/icons/icon.icns +0 -0
- package/pages/desktop/src/icons/icon.ico +0 -0
- package/pages/desktop/src/icons/icon.png +0 -0
- package/pages/desktop/src/src/main.rs +10 -0
- package/pages/desktop/src/tauri.conf.json +73 -0
- package/shims.d.ts +0 -12
- package/simple-git-hooks.cjs +1 -0
- package/tsconfig.json +35 -12
- package/vitest.config.ts +2 -2
- package/buddy/bin/stacks.mjs +0 -4
- package/buddy/build.config.ts +0 -17
- package/buddy/node_modules/.bin/only-allow +0 -17
- package/buddy/node_modules/.bin/tsc +0 -17
- package/buddy/node_modules/.bin/tsserver +0 -17
- package/buddy/node_modules/.bin/unbuild +0 -17
- package/buddy/package.json +0 -194
- package/buddy/src/cli.ts +0 -66
- package/buddy/src/commands/clean.ts +0 -18
- package/buddy/src/commands/update.ts +0 -108
- package/core/actions/node_modules/.bin/esno +0 -17
- package/core/actions/node_modules/.bin/mkdist +0 -17
- package/core/actions/node_modules/.bin/tsc +0 -17
- package/core/actions/node_modules/.bin/tsserver +0 -17
- package/core/actions/src/build-core.ts +0 -7
- package/core/actions/src/fix-lint-issues.ts +0 -4
- package/core/actions/src/update.ts +0 -149
- package/core/ai/node_modules/.bin/mkdist +0 -17
- package/core/ai/node_modules/.bin/tsc +0 -17
- package/core/ai/node_modules/.bin/tsserver +0 -17
- package/core/alias/node_modules/.bin/mkdist +0 -17
- package/core/alias/node_modules/.bin/tsc +0 -17
- package/core/alias/node_modules/.bin/tsserver +0 -17
- package/core/arrays/node_modules/.bin/mkdist +0 -17
- package/core/arrays/node_modules/.bin/tsc +0 -17
- package/core/arrays/node_modules/.bin/tsserver +0 -17
- package/core/auth/node_modules/.bin/mkdist +0 -17
- package/core/auth/node_modules/.bin/tsc +0 -17
- package/core/auth/node_modules/.bin/tsserver +0 -17
- package/core/build/node_modules/.bin/mkdist +0 -17
- package/core/build/node_modules/.bin/tsc +0 -17
- package/core/build/node_modules/.bin/tsserver +0 -17
- package/core/cache/node_modules/.bin/mkdist +0 -17
- package/core/cache/node_modules/.bin/tsc +0 -17
- package/core/cache/node_modules/.bin/tsserver +0 -17
- package/core/chat/node_modules/.bin/mkdist +0 -17
- package/core/chat/node_modules/.bin/tsc +0 -17
- package/core/chat/node_modules/.bin/tsserver +0 -17
- package/core/cli/node_modules/.bin/esno +0 -17
- package/core/cli/node_modules/.bin/mkdist +0 -17
- package/core/cloud/node_modules/.bin/mkdist +0 -17
- package/core/cloud/node_modules/.bin/tsc +0 -17
- package/core/cloud/node_modules/.bin/tsserver +0 -17
- package/core/collections/node_modules/.bin/mkdist +0 -17
- package/core/collections/node_modules/.bin/tsc +0 -17
- package/core/collections/node_modules/.bin/tsserver +0 -17
- package/core/config/node_modules/.bin/mkdist +0 -17
- package/core/config/node_modules/.bin/tsc +0 -17
- package/core/config/node_modules/.bin/tsserver +0 -17
- package/core/config/node_modules/.bin/unbuild +0 -17
- package/core/config/src/helpers.ts +0 -30
- package/core/dashboard/README.md +0 -74
- package/core/dashboard/node_modules/.bin/mkdist +0 -17
- package/core/database/node_modules/.bin/mkdist +0 -17
- package/core/database/node_modules/.bin/tsc +0 -17
- package/core/database/node_modules/.bin/tsserver +0 -17
- package/core/datetime/node_modules/.bin/mkdist +0 -17
- package/core/datetime/node_modules/.bin/tsc +0 -17
- package/core/datetime/node_modules/.bin/tsserver +0 -17
- package/core/desktop/node_modules/.bin/mkdist +0 -17
- package/core/desktop/node_modules/.bin/tsc +0 -17
- package/core/desktop/node_modules/.bin/tsserver +0 -17
- package/core/docs/node_modules/.bin/mkdist +0 -17
- package/core/docs/node_modules/.bin/tsc +0 -17
- package/core/docs/node_modules/.bin/tsserver +0 -17
- package/core/domains/node_modules/.bin/mkdist +0 -17
- package/core/domains/node_modules/.bin/tsc +0 -17
- package/core/domains/node_modules/.bin/tsserver +0 -17
- package/core/drivers/node_modules/.bin/mkdist +0 -17
- package/core/drivers/node_modules/.bin/tsc +0 -17
- package/core/drivers/node_modules/.bin/tsserver +0 -17
- package/core/drivers/src/index.ts +0 -10
- package/core/email/dist/utils/template.html +0 -8
- package/core/email/node_modules/.bin/mkdist +0 -17
- package/core/email/node_modules/.bin/tsc +0 -17
- package/core/email/node_modules/.bin/tsserver +0 -17
- package/core/error-handling/node_modules/.bin/mkdist +0 -17
- package/core/error-handling/node_modules/.bin/tsc +0 -17
- package/core/error-handling/node_modules/.bin/tsserver +0 -17
- package/core/events/node_modules/.bin/mkdist +0 -17
- package/core/events/node_modules/.bin/tsc +0 -17
- package/core/events/node_modules/.bin/tsserver +0 -17
- package/core/git/node_modules/.bin/mkdist +0 -17
- package/core/git/node_modules/.bin/tsc +0 -17
- package/core/git/node_modules/.bin/tsserver +0 -17
- package/core/health/node_modules/.bin/mkdist +0 -17
- package/core/health/node_modules/.bin/tsc +0 -17
- package/core/health/node_modules/.bin/tsserver +0 -17
- package/core/lint/node_modules/.bin/mkdist +0 -17
- package/core/lint/node_modules/.bin/tsc +0 -17
- package/core/lint/node_modules/.bin/tsserver +0 -17
- package/core/logging/debug-test.ts +0 -8
- package/core/logging/node_modules/.bin/mkdist +0 -17
- package/core/modules/node_modules/.bin/mkdist +0 -17
- package/core/modules/node_modules/.bin/tsc +0 -17
- package/core/modules/node_modules/.bin/tsserver +0 -17
- package/core/notifications/node_modules/.bin/mkdist +0 -17
- package/core/notifications/node_modules/.bin/tsc +0 -17
- package/core/notifications/node_modules/.bin/tsserver +0 -17
- package/core/notifications/node_modules/.bin/unbuild +0 -17
- package/core/objects/node_modules/.bin/mkdist +0 -17
- package/core/objects/node_modules/.bin/tsc +0 -17
- package/core/objects/node_modules/.bin/tsserver +0 -17
- package/core/path/node_modules/.bin/mkdist +0 -17
- package/core/path/node_modules/.bin/tsc +0 -17
- package/core/path/node_modules/.bin/tsserver +0 -17
- package/core/payments/node_modules/.bin/mkdist +0 -17
- package/core/payments/node_modules/.bin/tsc +0 -17
- package/core/payments/node_modules/.bin/tsserver +0 -17
- package/core/push/node_modules/.bin/mkdist +0 -17
- package/core/push/node_modules/.bin/tsc +0 -17
- package/core/push/node_modules/.bin/tsserver +0 -17
- package/core/queue/node_modules/.bin/mkdist +0 -17
- package/core/queue/node_modules/.bin/tsc +0 -17
- package/core/queue/node_modules/.bin/tsserver +0 -17
- package/core/realtime/node_modules/.bin/mkdist +0 -17
- package/core/realtime/node_modules/.bin/tsc +0 -17
- package/core/realtime/node_modules/.bin/tsserver +0 -17
- package/core/router/node_modules/.bin/mkdist +0 -17
- package/core/router/node_modules/.bin/tsc +0 -17
- package/core/router/node_modules/.bin/tsserver +0 -17
- package/core/search-engine/node_modules/.bin/mkdist +0 -17
- package/core/search-engine/node_modules/.bin/tsc +0 -17
- package/core/search-engine/node_modules/.bin/tsserver +0 -17
- package/core/security/node_modules/.bin/mkdist +0 -17
- package/core/security/node_modules/.bin/tsc +0 -17
- package/core/security/node_modules/.bin/tsserver +0 -17
- package/core/server/node_modules/.bin/mkdist +0 -17
- package/core/server/node_modules/.bin/tsc +0 -17
- package/core/server/node_modules/.bin/tsserver +0 -17
- package/core/sms/node_modules/.bin/mkdist +0 -17
- package/core/sms/node_modules/.bin/tsc +0 -17
- package/core/sms/node_modules/.bin/tsserver +0 -17
- package/core/storage/node_modules/.bin/mkdist +0 -17
- package/core/storage/node_modules/.bin/tsc +0 -17
- package/core/storage/node_modules/.bin/tsserver +0 -17
- package/core/strings/node_modules/.bin/mkdist +0 -17
- package/core/strings/node_modules/.bin/tsc +0 -17
- package/core/strings/node_modules/.bin/tsserver +0 -17
- package/core/strings/node_modules/.bin/unbuild +0 -17
- package/core/tables/README.md +0 -109
- package/core/tables/examples/vue/App.vue +0 -12
- package/core/tables/examples/vue/favicon.png +0 -0
- package/core/tables/examples/vue/index.html +0 -20
- package/core/tables/examples/web/favicon.png +0 -0
- package/core/tables/examples/web/index.html +0 -13
- package/core/tables/index.html +0 -13
- package/core/tables/node_modules/.bin/mkdist +0 -17
- package/core/tables/node_modules/.bin/tsc +0 -17
- package/core/tables/node_modules/.bin/tsserver +0 -17
- package/core/tables/node_modules/.bin/unbuild +0 -17
- package/core/tables/node_modules/.bin/vite +0 -17
- package/core/tables/old.vite.config.ts +0 -97
- package/core/tables/package.json +0 -64
- package/core/tables/src/App.vue +0 -23
- package/core/tables/src/components/Demo.vue +0 -89
- package/core/tables/src/components/README.md +0 -111
- package/core/tables/src/components/Table.vue +0 -342
- package/core/tables/src/components/TableBody.vue +0 -33
- package/core/tables/src/components/TableCellActionItems.vue +0 -9
- package/core/tables/src/components/TableFilters.vue +0 -703
- package/core/tables/src/components/TableHead.vue +0 -87
- package/core/tables/src/components/TablePagination.vue +0 -146
- package/core/tables/src/components/TableRow.vue +0 -78
- package/core/tables/src/components/TableSearch.vue +0 -38
- package/core/tables/src/components/Tooltip.vue +0 -10
- package/core/tables/src/docs/index.md +0 -0
- package/core/tables/src/functions/README.md +0 -8
- package/core/tables/src/functions/dark.ts +0 -3
- package/core/tables/src/functions/index.ts +0 -2
- package/core/tables/src/functions/table.ts +0 -207
- package/core/tables/src/main.js +0 -4
- package/core/tables/vite.config.ts +0 -26
- package/core/testing/node_modules/.bin/mkdist +0 -17
- package/core/types/node_modules/.bin/mkdist +0 -17
- package/core/types/node_modules/.bin/tsc +0 -17
- package/core/types/node_modules/.bin/tsserver +0 -17
- package/core/ui/node_modules/.bin/mkdist +0 -17
- package/core/ui/node_modules/.bin/tsc +0 -17
- package/core/ui/node_modules/.bin/tsserver +0 -17
- package/core/utils/node_modules/.bin/esno +0 -17
- package/core/utils/node_modules/.bin/mkdist +0 -17
- package/core/utils/node_modules/.bin/tsc +0 -17
- package/core/utils/node_modules/.bin/tsserver +0 -17
- package/core/utils/src/vendor.ts +0 -1
- package/core/validation/node_modules/.bin/mkdist +0 -17
- package/core/validation/node_modules/.bin/tsc +0 -17
- package/core/validation/node_modules/.bin/tsserver +0 -17
- package/core/x-ray/node_modules/.bin/mkdist +0 -17
- package/core/x-ray/node_modules/.bin/tsc +0 -17
- package/core/x-ray/node_modules/.bin/tsserver +0 -17
- package/core/x-ray/routes/index.ts +0 -19
- package/core/x-ray/src/client.ts +0 -14
- package/core/x-ray/src/desktop/api/nitro.config.ts +0 -18
- package/core/x-ray/src/desktop/api/routes/api/logs.ts +0 -7
- package/core/x-ray/src/desktop/api/routes/api/store-logs.ts +0 -22
- package/core/x-ray/src/desktop/api/src/types.ts +0 -7
- package/core/x-ray/src/desktop/api/storage/index.ts +0 -7
- package/core/x-ray/src/desktop/app.vue +0 -376
- package/core/x-ray/src/desktop/functions/http.ts +0 -26
- package/core/x-ray/src/desktop/functions/types.ts +0 -7
- package/core/x-ray/src/desktop/main.ts +0 -14
- package/core/x-ray/src/desktop/modules/counter/mod.vue +0 -44
- package/core/x-ray/src/desktop/modules/fetcher/mod.vue +0 -63
- package/core/x-ray/src/desktop/plugins/unified/unified-app.ts +0 -5
- package/core/x-ray/src/desktop/plugins/unified/unified-styles.scss +0 -0
- package/core/x-ray/src/desktop/services/http.ts +0 -45
- package/core/x-ray/src/desktop/styles/app.scss +0 -0
- package/core/x-ray/src/http.ts +0 -26
- package/core/x-ray/src/index.ts +0 -42
- package/core/x-ray/src/ray.config.js +0 -28
- package/core/x-ray/src/types.ts +0 -8
- package/examples/vue/App.vue +0 -12
- package/examples/vue/favicon.png +0 -0
- package/examples/vue/index.html +0 -20
- package/examples/web/favicon.png +0 -0
- package/examples/web/index.html +0 -13
- package/functions/package.json +0 -41
- /package/core/actions/src/{lint-fix.ts → lint/fix.ts} +0 -0
- /package/core/{dashboard/src/index.ts → actions/src/upgrade/dependencies.ts} +0 -0
- /package/core/{tables/src/cli/index.ts → analytics/src/drivers/fathom.ts} +0 -0
- /package/core/{tables/src/config/tables.ts → analytics/src/index.ts} +0 -0
- /package/core/{dashboard → analytics}/tests/example.test.ts +0 -0
- /package/{buddy → core/buddy}/art/social.png +0 -0
- /package/{netlify.toml → core/cloud/netlify.toml} +0 -0
- /package/core/{drivers → development}/tests/example.test.ts +0 -0
- /package/core/{tables → faker}/tests/example.test.ts +0 -0
- /package/core/{x-ray → orm}/tests/example.test.ts +0 -0
- /package/pages/{App.vue → web/App.vue} +0 -0
- /package/pages/{index.html → web/index.html} +0 -0
- /package/pages/{main.ts → web/main.ts} +0 -0
- /package/pages/{public → web/public}/_headers +0 -0
- /package/pages/{public → web/public}/favicon-dark.svg +0 -0
- /package/pages/{public → web/public}/favicon.svg +0 -0
- /package/pages/{public → web/public}/pwa-192x192.png +0 -0
- /package/pages/{public → web/public}/pwa-512x512.png +0 -0
- /package/pages/{public → web/public}/safari-pinned-tab.svg +0 -0
- /package/pages/{styles → web/styles}/main.css +0 -0
- /package/pages/{styles → web/styles}/markdown.css +0 -0
package/auto-imports.d.ts
CHANGED
|
@@ -8,21 +8,34 @@ declare global {
|
|
|
8
8
|
const $ref: typeof import('vue/macros')['$ref']
|
|
9
9
|
const $shallowRef: typeof import('vue/macros')['$shallowRef']
|
|
10
10
|
const $toRef: typeof import('vue/macros')['$toRef']
|
|
11
|
-
const Collection: typeof import('./core/
|
|
11
|
+
const Collection: typeof import('./core/objects/src/index')['Collection']
|
|
12
12
|
const EffectScope: typeof import('vue')['EffectScope']
|
|
13
|
+
const Err: typeof import('./core/error-handling/src/index')['Err']
|
|
14
|
+
const Ok: typeof import('./core/error-handling/src/index')['Ok']
|
|
15
|
+
const Result: typeof import('./core/error-handling/src/index')['Result']
|
|
16
|
+
const ResultAsync: typeof import('./core/error-handling/src/index')['ResultAsync']
|
|
13
17
|
const _dirname: typeof import('./core/storage/src/index')['_dirname']
|
|
14
18
|
const actionsPath: typeof import('./core/path/src/index')['actionsPath']
|
|
19
|
+
const addIrregularRule: typeof import('./core/strings/src/pluralize')['addIrregularRule']
|
|
20
|
+
const addPluralRule: typeof import('./core/strings/src/pluralize')['addPluralRule']
|
|
21
|
+
const addSingularRule: typeof import('./core/strings/src/pluralize')['addSingularRule']
|
|
22
|
+
const addUncountableRule: typeof import('./core/strings/src/pluralize')['addUncountableRule']
|
|
15
23
|
const afterAll: typeof import('vitest')['afterAll']
|
|
16
24
|
const afterEach: typeof import('vitest')['afterEach']
|
|
25
|
+
const aiPath: typeof import('./core/path/src/index')['aiPath']
|
|
17
26
|
const aliasPath: typeof import('./core/path/src/index')['aliasPath']
|
|
18
|
-
const
|
|
27
|
+
const all: typeof import('./core/events/src/index')['all']
|
|
28
|
+
const app: typeof import('../config/app')['default']
|
|
19
29
|
const arraysPath: typeof import('./core/path/src/index')['arraysPath']
|
|
20
|
-
const assert: typeof import('
|
|
30
|
+
const assert: typeof import('./core/utils/src/index')['assert']
|
|
21
31
|
const asyncComputed: typeof import('@vueuse/core')['asyncComputed']
|
|
32
|
+
const at: typeof import('./core/arrays/src/index')['at']
|
|
33
|
+
const authPath: typeof import('./core/path/src/index')['authPath']
|
|
22
34
|
const autoResetRef: typeof import('@vueuse/core')['autoResetRef']
|
|
23
35
|
const base64Encode: typeof import('./core/security/src/hash')['base64Encode']
|
|
24
36
|
const base64Verify: typeof import('./core/security/src/hash')['base64Verify']
|
|
25
37
|
const basename: typeof import('./core/path/src/index')['basename']
|
|
38
|
+
const batchInvoke: typeof import('./core/utils/src/function')['batchInvoke']
|
|
26
39
|
const bcryptEncode: typeof import('./core/security/src/hash')['bcryptEncode']
|
|
27
40
|
const bcryptVerify: typeof import('./core/security/src/hash')['bcryptVerify']
|
|
28
41
|
const beforeAll: typeof import('vitest')['beforeAll']
|
|
@@ -30,12 +43,21 @@ declare global {
|
|
|
30
43
|
const buildEnginePath: typeof import('./core/path/src/index')['buildEnginePath']
|
|
31
44
|
const buildEntriesPath: typeof import('./core/path/src/index')['buildEntriesPath']
|
|
32
45
|
const buildPath: typeof import('./core/path/src/index')['buildPath']
|
|
33
|
-
const
|
|
34
|
-
const
|
|
46
|
+
const cache: typeof import('../config/cache')['cache']
|
|
47
|
+
const cachePath: typeof import('./core/path/src/index')['cachePath']
|
|
48
|
+
const calculatePagination: typeof import('./core/search-engine/src/index')['calculatePagination']
|
|
49
|
+
const camelCase: typeof import('./core/strings/src/case')['camelCase']
|
|
50
|
+
const capitalCase: typeof import('./core/strings/src/case')['capitalCase']
|
|
51
|
+
const capitalize: typeof import('./core/strings/src/utils')['capitalize']
|
|
35
52
|
const chai: typeof import('vitest')['chai']
|
|
53
|
+
const chat: typeof import('./core/notifications/src/index')['chat']
|
|
54
|
+
const chatPath: typeof import('./core/path/src/index')['chatPath']
|
|
36
55
|
const clamp: typeof import('@vueuse/shared')['clamp']
|
|
56
|
+
const clampArrayRange: typeof import('./core/arrays/src/index')['clampArrayRange']
|
|
57
|
+
const clearUndefined: typeof import('./core/objects/src/index')['clearUndefined']
|
|
37
58
|
const cliPath: typeof import('./core/path/src/index')['cliPath']
|
|
38
|
-
const
|
|
59
|
+
const client: typeof import('./core/search-engine/src/index')['client']
|
|
60
|
+
const collect: typeof import('./core/objects/src/index')['collect']
|
|
39
61
|
const collectionsPath: typeof import('./core/path/src/index')['collectionsPath']
|
|
40
62
|
const componentsPath: typeof import('./core/path/src/index')['componentsPath']
|
|
41
63
|
const computed: typeof import('vue')['computed']
|
|
@@ -43,108 +65,235 @@ declare global {
|
|
|
43
65
|
const computedEager: typeof import('@vueuse/core')['computedEager']
|
|
44
66
|
const computedInject: typeof import('@vueuse/core')['computedInject']
|
|
45
67
|
const computedWithControl: typeof import('@vueuse/core')['computedWithControl']
|
|
68
|
+
const config: typeof import('./core/utils/src/helpers')['config']
|
|
46
69
|
const configPath: typeof import('./core/path/src/index')['configPath']
|
|
47
|
-
const constantCase: typeof import('./core/strings/src/
|
|
70
|
+
const constantCase: typeof import('./core/strings/src/case')['constantCase']
|
|
48
71
|
const contains: typeof import('./core/arrays/src/index')['contains']
|
|
72
|
+
const containsAll: typeof import('./core/arrays/src/index')['containsAll']
|
|
73
|
+
const containsAny: typeof import('./core/arrays/src/index')['containsAny']
|
|
74
|
+
const containsNone: typeof import('./core/arrays/src/index')['containsNone']
|
|
75
|
+
const containsOnly: typeof import('./core/arrays/src/index')['containsOnly']
|
|
49
76
|
const controlledComputed: typeof import('@vueuse/core')['controlledComputed']
|
|
50
77
|
const controlledRef: typeof import('@vueuse/core')['controlledRef']
|
|
51
78
|
const copyFolder: typeof import('./core/storage/src/index')['copyFolder']
|
|
52
79
|
const corePath: typeof import('./core/path/src/index')['corePath']
|
|
53
80
|
const count: typeof import('../functions/counter')['count']
|
|
54
81
|
const createApp: typeof import('vue')['createApp']
|
|
82
|
+
const createControlledPromise: typeof import('./core/utils/src/promise')['createControlledPromise']
|
|
55
83
|
const createEventHook: typeof import('@vueuse/core')['createEventHook']
|
|
84
|
+
const createFolder: typeof import('./core/storage/src/index')['createFolder']
|
|
56
85
|
const createGenericProjection: typeof import('@vueuse/math')['createGenericProjection']
|
|
57
86
|
const createGlobalState: typeof import('@vueuse/core')['createGlobalState']
|
|
58
87
|
const createInjectionState: typeof import('@vueuse/core')['createInjectionState']
|
|
59
88
|
const createProjection: typeof import('@vueuse/math')['createProjection']
|
|
89
|
+
const createPromiseLock: typeof import('./core/utils/src/promise')['createPromiseLock']
|
|
60
90
|
const createReactiveFn: typeof import('@vueuse/core')['createReactiveFn']
|
|
61
91
|
const createSharedComposable: typeof import('@vueuse/core')['createSharedComposable']
|
|
92
|
+
const createSingletonPromise: typeof import('./core/utils/src/promise')['createSingletonPromise']
|
|
62
93
|
const createUnrefFn: typeof import('@vueuse/core')['createUnrefFn']
|
|
94
|
+
const currentPage: typeof import('./core/search-engine/src/index')['currentPage']
|
|
63
95
|
const customElementsDataPath: typeof import('./core/path/src/index')['customElementsDataPath']
|
|
64
96
|
const customRef: typeof import('vue')['customRef']
|
|
97
|
+
const dashboardPath: typeof import('./core/path/src/index')['dashboardPath']
|
|
98
|
+
const database: typeof import('../config/database')['database']
|
|
99
|
+
const databasePath: typeof import('./core/path/src/index')['databasePath']
|
|
100
|
+
const dd: typeof import('./core/logging/src/index')['dd']
|
|
101
|
+
const debounce: typeof import('./core/utils/src/debounce')['debounce']
|
|
65
102
|
const debouncedRef: typeof import('@vueuse/core')['debouncedRef']
|
|
66
103
|
const debouncedWatch: typeof import('@vueuse/core')['debouncedWatch']
|
|
104
|
+
const debug: typeof import('./core/logging/src/index')['debug']
|
|
67
105
|
const decrypt: typeof import('./core/security/src/crypt')['decrypt']
|
|
106
|
+
const deepMerge: typeof import('./core/objects/src/index')['deepMerge']
|
|
68
107
|
const defineAsyncComponent: typeof import('vue')['defineAsyncComponent']
|
|
69
108
|
const defineComponent: typeof import('vue')['defineComponent']
|
|
70
109
|
const deleteEmptyFolders: typeof import('./core/storage/src/index')['deleteEmptyFolders']
|
|
71
110
|
const deleteFiles: typeof import('./core/storage/src/index')['deleteFiles']
|
|
72
111
|
const deleteFolder: typeof import('./core/storage/src/index')['deleteFolder']
|
|
73
112
|
const delimiter: typeof import('./core/path/src/index')['delimiter']
|
|
74
|
-
const deploy: typeof import('../config/deploy')['deploy']
|
|
75
113
|
const describe: typeof import('vitest')['describe']
|
|
114
|
+
const desktopPath: typeof import('./core/path/src/index')['desktopPath']
|
|
115
|
+
const detectIndent: typeof import('./core/utils/src/helpers')['detectIndent']
|
|
116
|
+
const detectNewline: typeof import('./core/utils/src/helpers')['detectNewline']
|
|
117
|
+
const determineResetPreset: typeof import('./core/utils/src/helpers')['determineResetPreset']
|
|
118
|
+
const determineState: typeof import('./core/search-engine/src/helpers')['determineState']
|
|
76
119
|
const dirname: typeof import('./core/path/src/index')['dirname']
|
|
120
|
+
const dispatch: typeof import('./core/events/src/index')['dispatch']
|
|
77
121
|
const docs: typeof import('../config/docs')['default']
|
|
78
122
|
const docsPath: typeof import('./core/path/src/index')['docsPath']
|
|
79
123
|
const doesFolderExist: typeof import('./core/storage/src/index')['doesFolderExist']
|
|
80
|
-
const
|
|
124
|
+
const domainsPath: typeof import('./core/path/src/index')['domainsPath']
|
|
125
|
+
const dotCase: typeof import('./core/strings/src/case')['dotCase']
|
|
126
|
+
const dump: typeof import('./core/logging/src/index')['dump']
|
|
81
127
|
const eagerComputed: typeof import('@vueuse/core')['eagerComputed']
|
|
82
128
|
const effectScope: typeof import('vue')['effectScope']
|
|
129
|
+
const email: typeof import('./core/notifications/src/index')['email']
|
|
130
|
+
const emailPath: typeof import('./core/path/src/index')['emailPath']
|
|
83
131
|
const encrypt: typeof import('./core/security/src/crypt')['encrypt']
|
|
132
|
+
const ensurePrefix: typeof import('./core/strings/src/utils')['ensurePrefix']
|
|
133
|
+
const ensureSuffix: typeof import('./core/strings/src/utils')['ensureSuffix']
|
|
134
|
+
const env: typeof import('./core/utils/src/helpers')['env']
|
|
135
|
+
const err: typeof import('./core/error-handling/src/index')['err']
|
|
136
|
+
const errAsync: typeof import('./core/error-handling/src/index')['errAsync']
|
|
137
|
+
const errorHandlingPath: typeof import('./core/path/src/index')['errorHandlingPath']
|
|
138
|
+
const events: typeof import('./core/events/src/index')['events']
|
|
139
|
+
const eventsPath: typeof import('./core/path/src/index')['eventsPath']
|
|
84
140
|
const examplesPath: typeof import('./core/path/src/index')['examplesPath']
|
|
85
141
|
const expect: typeof import('vitest')['expect']
|
|
86
142
|
const extendRef: typeof import('@vueuse/core')['extendRef']
|
|
87
143
|
const extname: typeof import('./core/path/src/index')['extname']
|
|
88
144
|
const filesystem: typeof import('./core/storage/src/index')['filesystem']
|
|
145
|
+
const filterName: typeof import('./core/search-engine/src/index')['filterName']
|
|
146
|
+
const filters: typeof import('./core/search-engine/src/index')['filters']
|
|
147
|
+
const flattenArrayable: typeof import('./core/arrays/src/index')['flattenArrayable']
|
|
89
148
|
const format: typeof import('./core/path/src/index')['format']
|
|
90
149
|
const frameworkPath: typeof import('./core/path/src/index')['frameworkPath']
|
|
91
|
-
const
|
|
150
|
+
const frameworkVersion: typeof import('./core/utils/src/helpers')['frameworkVersion']
|
|
151
|
+
const fromPromise: typeof import('./core/error-handling/src/index')['fromPromise']
|
|
152
|
+
const fromSafePromise: typeof import('./core/error-handling/src/index')['fromSafePromise']
|
|
153
|
+
const fromThrowable: typeof import('./core/error-handling/src/index')['fromThrowable']
|
|
92
154
|
const functionsPath: typeof import('./core/path/src/index')['functionsPath']
|
|
93
155
|
const generateAppKey: typeof import('./core/security/src/key')['generateAppKey']
|
|
94
156
|
const getCurrentInstance: typeof import('vue')['getCurrentInstance']
|
|
95
157
|
const getCurrentScope: typeof import('vue')['getCurrentScope']
|
|
158
|
+
const getTypeName: typeof import('./core/utils/src/index')['getTypeName']
|
|
96
159
|
const git: typeof import('../config/git')['git']
|
|
97
160
|
const gitPath: typeof import('./core/path/src/index')['gitPath']
|
|
161
|
+
const goToNextPage: typeof import('./core/search-engine/src/index')['goToNextPage']
|
|
162
|
+
const goToPage: typeof import('./core/search-engine/src/index')['goToPage']
|
|
163
|
+
const goToPrevPage: typeof import('./core/search-engine/src/index')['goToPrevPage']
|
|
98
164
|
const h: typeof import('vue')['h']
|
|
99
165
|
const hasComponents: typeof import('./core/storage/src/index')['hasComponents']
|
|
100
166
|
const hasFiles: typeof import('./core/storage/src/index')['hasFiles']
|
|
101
167
|
const hasFunctions: typeof import('./core/storage/src/index')['hasFunctions']
|
|
102
168
|
const hasOwn: typeof import('@vueuse/shared')['hasOwn']
|
|
169
|
+
const hasOwnProperty: typeof import('./core/objects/src/index')['hasOwnProperty']
|
|
170
|
+
const hasScript: typeof import('./core/utils/src/helpers')['hasScript']
|
|
103
171
|
const hashing: typeof import('../config/hashing')['hashing']
|
|
104
|
-
const headerCase: typeof import('./core/strings/src/
|
|
172
|
+
const headerCase: typeof import('./core/strings/src/case')['headerCase']
|
|
173
|
+
const healthPath: typeof import('./core/path/src/index')['healthPath']
|
|
174
|
+
const hits: typeof import('./core/search-engine/src/index')['hits']
|
|
105
175
|
const ignorableWatch: typeof import('@vueuse/core')['ignorableWatch']
|
|
106
176
|
const increment: typeof import('../functions/counter')['increment']
|
|
177
|
+
const index: typeof import('./core/search-engine/src/index')['index']
|
|
107
178
|
const inject: typeof import('vue')['inject']
|
|
108
179
|
const isAbsolute: typeof import('./core/path/src/index')['isAbsolute']
|
|
109
|
-
const
|
|
180
|
+
const isAlpha: typeof import('./core/strings/src/validation')['isAlpha']
|
|
181
|
+
const isAlphanumeric: typeof import('./core/strings/src/validation')['isAlphanumeric']
|
|
182
|
+
const isAppKeySet: typeof import('./core/utils/src/helpers')['isAppKeySet']
|
|
183
|
+
const isAscii: typeof import('./core/strings/src/validation')['isAscii']
|
|
184
|
+
const isBase32: typeof import('./core/strings/src/validation')['isBase32']
|
|
185
|
+
const isBase64: typeof import('./core/strings/src/validation')['isBase64']
|
|
186
|
+
const isBoolean: typeof import('./core/utils/src/is')['isBoolean']
|
|
187
|
+
const isBrowser: typeof import('./core/utils/src/is')['isBrowser']
|
|
188
|
+
const isByteLength: typeof import('./core/strings/src/validation')['isByteLength']
|
|
110
189
|
const isClient: typeof import('@vueuse/shared')['isClient']
|
|
190
|
+
const isCreditCard: typeof import('./core/strings/src/validation')['isCreditCard']
|
|
191
|
+
const isCurrency: typeof import('./core/strings/src/validation')['isCurrency']
|
|
111
192
|
const isDark: typeof import('../functions/dark')['isDark']
|
|
112
|
-
const
|
|
193
|
+
const isDataURI: typeof import('./core/strings/src/validation')['isDataURI']
|
|
194
|
+
const isDate: typeof import('./core/strings/src/validation')['isDate']
|
|
195
|
+
const isDeepEqual: typeof import('./core/utils/src/equal')['isDeepEqual']
|
|
196
|
+
const isDef: typeof import('./core/utils/src/is')['isDef']
|
|
113
197
|
const isDefined: typeof import('@vueuse/core')['isDefined']
|
|
198
|
+
const isEmail: typeof import('./core/strings/src/validation')['isEmail']
|
|
199
|
+
const isFQDN: typeof import('./core/strings/src/validation')['isFQDN']
|
|
114
200
|
const isFile: typeof import('./core/storage/src/index')['isFile']
|
|
115
201
|
const isFolder: typeof import('./core/storage/src/index')['isFolder']
|
|
116
|
-
const
|
|
202
|
+
const isFullWidth: typeof import('./core/strings/src/validation')['isFullWidth']
|
|
203
|
+
const isFunction: typeof import('./core/utils/src/is')['isFunction']
|
|
204
|
+
const isHSL: typeof import('./core/strings/src/validation')['isHSL']
|
|
205
|
+
const isHalfWidth: typeof import('./core/strings/src/validation')['isHalfWidth']
|
|
206
|
+
const isHash: typeof import('./core/strings/src/validation')['isHash']
|
|
207
|
+
const isHexColor: typeof import('./core/strings/src/validation')['isHexColor']
|
|
208
|
+
const isHexadecimal: typeof import('./core/strings/src/validation')['isHexadecimal']
|
|
209
|
+
const isIBAN: typeof import('./core/strings/src/validation')['isIBAN']
|
|
117
210
|
const isIOS: typeof import('@vueuse/shared')['isIOS']
|
|
118
|
-
const
|
|
119
|
-
const
|
|
211
|
+
const isIP: typeof import('./core/strings/src/validation')['isIP']
|
|
212
|
+
const isIPRange: typeof import('./core/strings/src/validation')['isIPRange']
|
|
213
|
+
const isISBN: typeof import('./core/strings/src/validation')['isISBN']
|
|
214
|
+
const isISIN: typeof import('./core/strings/src/validation')['isISIN']
|
|
215
|
+
const isISO31661Alpha2: typeof import('./core/strings/src/validation')['isISO31661Alpha2']
|
|
216
|
+
const isISO31661Alpha3: typeof import('./core/strings/src/validation')['isISO31661Alpha3']
|
|
217
|
+
const isISO8601: typeof import('./core/strings/src/validation')['isISO8601']
|
|
218
|
+
const isISRC: typeof import('./core/strings/src/validation')['isISRC']
|
|
219
|
+
const isISSN: typeof import('./core/strings/src/validation')['isISSN']
|
|
220
|
+
const isIdentityCard: typeof import('./core/strings/src/validation')['isIdentityCard']
|
|
221
|
+
const isJSON: typeof import('./core/strings/src/validation')['isJSON']
|
|
222
|
+
const isJWT: typeof import('./core/strings/src/validation')['isJWT']
|
|
223
|
+
const isKeyOf: typeof import('./core/objects/src/index')['isKeyOf']
|
|
224
|
+
const isLatLong: typeof import('./core/strings/src/validation')['isLatLong']
|
|
225
|
+
const isLatitude: typeof import('./core/strings/src/validation')['isLatitude']
|
|
226
|
+
const isLongitude: typeof import('./core/strings/src/validation')['isLongitude']
|
|
227
|
+
const isMACAddress: typeof import('./core/strings/src/validation')['isMACAddress']
|
|
228
|
+
const isManifest: typeof import('./core/utils/src/helpers')['isManifest']
|
|
229
|
+
const isMap: typeof import('./core/utils/src/is')['isMap']
|
|
230
|
+
const isMimeType: typeof import('./core/strings/src/validation')['isMimeType']
|
|
231
|
+
const isMobilePhone: typeof import('./core/strings/src/validation')['isMobilePhone']
|
|
232
|
+
const isMongoId: typeof import('./core/strings/src/validation')['isMongoId']
|
|
233
|
+
const isNumber: typeof import('./core/utils/src/is')['isNumber']
|
|
234
|
+
const isNumeric: typeof import('./core/strings/src/validation')['isNumeric']
|
|
235
|
+
const isObject: typeof import('./core/utils/src/is')['isObject']
|
|
236
|
+
const isOptionalString: typeof import('./core/utils/src/helpers')['isOptionalString']
|
|
237
|
+
const isPlural: typeof import('./core/strings/src/pluralize')['isPlural']
|
|
238
|
+
const isPostalCode: typeof import('./core/strings/src/validation')['isPostalCode']
|
|
239
|
+
const isProjectCreated: typeof import('./core/utils/src/helpers')['isProjectCreated']
|
|
240
|
+
const isPromise: typeof import('./core/utils/src/is')['isPromise']
|
|
120
241
|
const isProxy: typeof import('vue')['isProxy']
|
|
121
242
|
const isReactive: typeof import('vue')['isReactive']
|
|
122
243
|
const isReadonly: typeof import('vue')['isReadonly']
|
|
123
244
|
const isRef: typeof import('vue')['isRef']
|
|
124
|
-
const
|
|
125
|
-
const
|
|
245
|
+
const isServer: typeof import('./core/utils/src/is')['isServer']
|
|
246
|
+
const isSet: typeof import('./core/utils/src/is')['isSet']
|
|
247
|
+
const isSingular: typeof import('./core/strings/src/pluralize')['isSingular']
|
|
248
|
+
const isString: typeof import('./core/utils/src/is')['isString']
|
|
249
|
+
const isStrongPassword: typeof import('./core/strings/src/validation')['isStrongPassword']
|
|
250
|
+
const isTruthy: typeof import('./core/utils/src/guards')['isTruthy']
|
|
251
|
+
const isURL: typeof import('./core/strings/src/validation')['isURL']
|
|
252
|
+
const isUUID: typeof import('./core/strings/src/validation')['isUUID']
|
|
253
|
+
const isWindow: typeof import('./core/utils/src/is')['isWindow']
|
|
126
254
|
const it: typeof import('vitest')['it']
|
|
127
255
|
const join: typeof import('./core/path/src/index')['join']
|
|
128
|
-
const kebabCase: typeof import('./core/strings/src/
|
|
256
|
+
const kebabCase: typeof import('./core/strings/src/case')['kebabCase']
|
|
129
257
|
const langPath: typeof import('./core/path/src/index')['langPath']
|
|
258
|
+
const last: typeof import('./core/arrays/src/index')['last']
|
|
259
|
+
const lastPageNumber: typeof import('./core/search-engine/src/index')['lastPageNumber']
|
|
130
260
|
const library: typeof import('../config/library')['library']
|
|
131
261
|
const libraryEntryPath: typeof import('./core/path/src/index')['libraryEntryPath']
|
|
132
262
|
const lintPath: typeof import('./core/path/src/index')['lintPath']
|
|
263
|
+
const listen: typeof import('./core/events/src/index')['listen']
|
|
264
|
+
const log: typeof import('./core/logging/src/index')['log']
|
|
265
|
+
const loggingPath: typeof import('./core/path/src/index')['loggingPath']
|
|
133
266
|
const logicAnd: typeof import('@vueuse/math')['logicAnd']
|
|
134
267
|
const logicNot: typeof import('@vueuse/math')['logicNot']
|
|
135
268
|
const logicOr: typeof import('@vueuse/math')['logicOr']
|
|
269
|
+
const loop: typeof import('./core/utils/src/index')['loop']
|
|
136
270
|
const makeDestructurable: typeof import('@vueuse/core')['makeDestructurable']
|
|
137
271
|
const makeHash: typeof import('./core/security/src/hash')['makeHash']
|
|
138
272
|
const markRaw: typeof import('vue')['markRaw']
|
|
139
273
|
const md5Encode: typeof import('./core/security/src/hash')['md5Encode']
|
|
274
|
+
const mergeArrayable: typeof import('./core/arrays/src/index')['mergeArrayable']
|
|
275
|
+
const mitt: typeof import('./core/events/src/index')['mitt']
|
|
140
276
|
const modulesPath: typeof import('./core/path/src/index')['modulesPath']
|
|
277
|
+
const move: typeof import('./core/arrays/src/index')['move']
|
|
141
278
|
const nextTick: typeof import('vue')['nextTick']
|
|
142
|
-
const noCase: typeof import('./core/strings/src/
|
|
143
|
-
const
|
|
279
|
+
const noCase: typeof import('./core/strings/src/case')['noCase']
|
|
280
|
+
const noNull: typeof import('./core/utils/src/guards')['noNull']
|
|
281
|
+
const noop: typeof import('./core/utils/src/index')['noop']
|
|
144
282
|
const normalize: typeof import('./core/path/src/index')['normalize']
|
|
145
283
|
const normalizeString: typeof import('./core/path/src/index')['normalizeString']
|
|
284
|
+
const notNullish: typeof import('./core/utils/src/guards')['notNullish']
|
|
285
|
+
const notUndefined: typeof import('./core/utils/src/guards')['notUndefined']
|
|
286
|
+
const notification: typeof import('./core/notifications/src/index')['notification']
|
|
287
|
+
const notificationsPath: typeof import('./core/path/src/index')['notificationsPath']
|
|
146
288
|
const now: typeof import('@vueuse/shared')['now']
|
|
289
|
+
const objectEntries: typeof import('./core/objects/src/index')['objectEntries']
|
|
290
|
+
const objectKeys: typeof import('./core/objects/src/index')['objectKeys']
|
|
291
|
+
const objectMap: typeof import('./core/objects/src/index')['objectMap']
|
|
292
|
+
const objectPick: typeof import('./core/objects/src/index')['objectPick']
|
|
147
293
|
const objectsPath: typeof import('./core/path/src/index')['objectsPath']
|
|
294
|
+
const off: typeof import('./core/events/src/index')['off']
|
|
295
|
+
const ok: typeof import('./core/error-handling/src/index')['ok']
|
|
296
|
+
const okAsync: typeof import('./core/error-handling/src/index')['okAsync']
|
|
148
297
|
const onActivated: typeof import('vue')['onActivated']
|
|
149
298
|
const onBeforeMount: typeof import('vue')['onBeforeMount']
|
|
150
299
|
const onBeforeRouteLeave: typeof import('vue-router')['onBeforeRouteLeave']
|
|
@@ -164,19 +313,30 @@ declare global {
|
|
|
164
313
|
const onStartTyping: typeof import('@vueuse/core')['onStartTyping']
|
|
165
314
|
const onUnmounted: typeof import('vue')['onUnmounted']
|
|
166
315
|
const onUpdated: typeof import('vue')['onUpdated']
|
|
316
|
+
const p: typeof import('./core/utils/src/p')['p']
|
|
167
317
|
const packageJsonPath: typeof import('./core/path/src/index')['packageJsonPath']
|
|
168
318
|
const pagesPath: typeof import('./core/path/src/index')['pagesPath']
|
|
169
|
-
const paramCase: typeof import('./core/strings/src/
|
|
319
|
+
const paramCase: typeof import('./core/strings/src/case')['paramCase']
|
|
170
320
|
const parse: typeof import('./core/path/src/index')['parse']
|
|
171
|
-
const
|
|
321
|
+
const partition: typeof import('./core/arrays/src/index')['partition']
|
|
322
|
+
const pascalCase: typeof import('./core/strings/src/case')['pascalCase']
|
|
172
323
|
const path: typeof import('./core/path/src/index')['path']
|
|
173
|
-
const pathCase: typeof import('./core/strings/src/
|
|
324
|
+
const pathCase: typeof import('./core/strings/src/case')['pathCase']
|
|
174
325
|
const pathPath: typeof import('./core/path/src/index')['pathPath']
|
|
175
326
|
const pausableWatch: typeof import('@vueuse/core')['pausableWatch']
|
|
327
|
+
const paymentsPath: typeof import('./core/path/src/index')['paymentsPath']
|
|
328
|
+
const perPage: typeof import('./core/search-engine/src/index')['perPage']
|
|
329
|
+
const plural: typeof import('./core/strings/src/pluralize')['plural']
|
|
176
330
|
const preferredDark: typeof import('../functions/dark')['preferredDark']
|
|
177
331
|
const projectPath: typeof import('./core/path/src/index')['projectPath']
|
|
178
332
|
const provide: typeof import('vue')['provide']
|
|
333
|
+
const pushPath: typeof import('./core/path/src/index')['pushPath']
|
|
334
|
+
const query: typeof import('./core/search-engine/src/index')['query']
|
|
335
|
+
const queuePath: typeof import('./core/path/src/index')['queuePath']
|
|
179
336
|
const rand: typeof import('@vueuse/shared')['rand']
|
|
337
|
+
const randomStr: typeof import('./core/strings/src/utils')['randomStr']
|
|
338
|
+
const range: typeof import('./core/arrays/src/index')['range']
|
|
339
|
+
const ray: typeof import('./core/logging/src/index')['ray']
|
|
180
340
|
const reactify: typeof import('@vueuse/core')['reactify']
|
|
181
341
|
const reactifyObject: typeof import('@vueuse/core')['reactifyObject']
|
|
182
342
|
const reactive: typeof import('vue')['reactive']
|
|
@@ -186,6 +346,7 @@ declare global {
|
|
|
186
346
|
const readJsonFile: typeof import('./core/storage/src/index')['readJsonFile']
|
|
187
347
|
const readTextFile: typeof import('./core/storage/src/index')['readTextFile']
|
|
188
348
|
const readonly: typeof import('vue')['readonly']
|
|
349
|
+
const realtimePath: typeof import('./core/path/src/index')['realtimePath']
|
|
189
350
|
const ref: typeof import('vue')['ref']
|
|
190
351
|
const refAutoReset: typeof import('@vueuse/core')['refAutoReset']
|
|
191
352
|
const refDebounced: typeof import('@vueuse/core')['refDebounced']
|
|
@@ -193,42 +354,72 @@ declare global {
|
|
|
193
354
|
const refThrottled: typeof import('@vueuse/core')['refThrottled']
|
|
194
355
|
const refWithControl: typeof import('@vueuse/core')['refWithControl']
|
|
195
356
|
const relative: typeof import('./core/path/src/index')['relative']
|
|
357
|
+
const remove: typeof import('./core/arrays/src/index')['remove']
|
|
196
358
|
const resolve: typeof import('./core/path/src/index')['resolve']
|
|
197
359
|
const resolveComponent: typeof import('vue')['resolveComponent']
|
|
198
360
|
const resolveDirective: typeof import('vue')['resolveDirective']
|
|
199
361
|
const resolveRef: typeof import('@vueuse/core')['resolveRef']
|
|
200
362
|
const resolveUnref: typeof import('@vueuse/core')['resolveUnref']
|
|
363
|
+
const results: typeof import('./core/search-engine/src/index')['results']
|
|
364
|
+
const router: typeof import('./core/router/src/index')['router']
|
|
201
365
|
const routerPath: typeof import('./core/path/src/index')['routerPath']
|
|
202
366
|
const routesPath: typeof import('./core/path/src/index')['routesPath']
|
|
367
|
+
const runNpmScript: typeof import('./core/utils/src/helpers')['runNpmScript']
|
|
368
|
+
const runtimePath: typeof import('./core/path/src/index')['runtimePath']
|
|
369
|
+
const sample: typeof import('./core/arrays/src/index')['sample']
|
|
203
370
|
const scriptsPath: typeof import('./core/path/src/index')['scriptsPath']
|
|
371
|
+
const searchEngine: typeof import('../config/search-engine')['searchEngine']
|
|
372
|
+
const searchEnginePath: typeof import('./core/path/src/index')['searchEnginePath']
|
|
373
|
+
const searchFilters: typeof import('./core/search-engine/src/index')['searchFilters']
|
|
374
|
+
const searchParams: typeof import('./core/search-engine/src/index')['searchParams']
|
|
204
375
|
const securityPath: typeof import('./core/path/src/index')['securityPath']
|
|
205
|
-
const sentenceCase: typeof import('./core/strings/src/
|
|
376
|
+
const sentenceCase: typeof import('./core/strings/src/case')['sentenceCase']
|
|
206
377
|
const sep: typeof import('./core/path/src/index')['sep']
|
|
207
378
|
const serverPath: typeof import('./core/path/src/index')['serverPath']
|
|
208
379
|
const serverlessPath: typeof import('./core/path/src/index')['serverlessPath']
|
|
209
380
|
const services: typeof import('../config/services')['services']
|
|
381
|
+
const setEnvValue: typeof import('./core/utils/src/helpers')['setEnvValue']
|
|
382
|
+
const setTotalHits: typeof import('./core/search-engine/src/index')['setTotalHits']
|
|
210
383
|
const shallowReactive: typeof import('vue')['shallowReactive']
|
|
211
384
|
const shallowReadonly: typeof import('vue')['shallowReadonly']
|
|
212
385
|
const shallowRef: typeof import('vue')['shallowRef']
|
|
213
|
-
const
|
|
214
|
-
const
|
|
386
|
+
const shuffle: typeof import('./core/arrays/src/index')['shuffle']
|
|
387
|
+
const singular: typeof import('./core/strings/src/pluralize')['singular']
|
|
388
|
+
const slash: typeof import('./core/strings/src/utils')['slash']
|
|
389
|
+
const sleep: typeof import('./core/utils/src/promise')['sleep']
|
|
390
|
+
const sms: typeof import('./core/notifications/src/index')['sms']
|
|
391
|
+
const smsPath: typeof import('./core/path/src/index')['smsPath']
|
|
392
|
+
const snakeCase: typeof import('./core/strings/src/case')['snakeCase']
|
|
393
|
+
const sort: typeof import('./core/search-engine/src/index')['sort']
|
|
394
|
+
const sorts: typeof import('./core/search-engine/src/index')['sorts']
|
|
395
|
+
const src: typeof import('./core/ui/src/index')['default']
|
|
215
396
|
const stacksPath: typeof import('./core/path/src/index')['stacksPath']
|
|
397
|
+
const storage: typeof import('../config/storage')['storage']
|
|
398
|
+
const storagePath: typeof import('./core/path/src/index')['storagePath']
|
|
216
399
|
const stringsPath: typeof import('./core/path/src/index')['stringsPath']
|
|
217
400
|
const suite: typeof import('vitest')['suite']
|
|
218
401
|
const syncRef: typeof import('@vueuse/core')['syncRef']
|
|
219
402
|
const syncRefs: typeof import('@vueuse/core')['syncRefs']
|
|
403
|
+
const tablesPath: typeof import('./core/path/src/index')['tablesPath']
|
|
404
|
+
const tap: typeof import('./core/utils/src/function')['tap']
|
|
405
|
+
const template: typeof import('./core/strings/src/utils')['template']
|
|
220
406
|
const templateRef: typeof import('@vueuse/core')['templateRef']
|
|
221
407
|
const test: typeof import('vitest')['test']
|
|
222
408
|
const testingPath: typeof import('./core/path/src/index')['testingPath']
|
|
409
|
+
const testsPath: typeof import('./core/path/src/index')['testsPath']
|
|
410
|
+
const throttle: typeof import('./core/utils/src/debounce')['throttle']
|
|
223
411
|
const throttledRef: typeof import('@vueuse/core')['throttledRef']
|
|
224
412
|
const throttledWatch: typeof import('@vueuse/core')['throttledWatch']
|
|
225
413
|
const timestamp: typeof import('@vueuse/shared')['timestamp']
|
|
414
|
+
const toArray: typeof import('./core/arrays/src/index')['toArray']
|
|
226
415
|
const toNamespacedPath: typeof import('./core/path/src/index')['toNamespacedPath']
|
|
227
416
|
const toRaw: typeof import('vue')['toRaw']
|
|
228
417
|
const toReactive: typeof import('@vueuse/core')['toReactive']
|
|
229
418
|
const toRef: typeof import('vue')['toRef']
|
|
230
419
|
const toRefs: typeof import('vue')['toRefs']
|
|
420
|
+
const toString: typeof import('./core/utils/src/index')['toString']
|
|
231
421
|
const toggleDark: typeof import('../functions/dark')['toggleDark']
|
|
422
|
+
const totalPages: typeof import('./core/search-engine/src/index')['totalPages']
|
|
232
423
|
const triggerRef: typeof import('vue')['triggerRef']
|
|
233
424
|
const tryOnBeforeMount: typeof import('@vueuse/core')['tryOnBeforeMount']
|
|
234
425
|
const tryOnBeforeUnmount: typeof import('@vueuse/core')['tryOnBeforeUnmount']
|
|
@@ -236,11 +427,15 @@ declare global {
|
|
|
236
427
|
const tryOnScopeDispose: typeof import('@vueuse/core')['tryOnScopeDispose']
|
|
237
428
|
const tryOnUnmounted: typeof import('@vueuse/core')['tryOnUnmounted']
|
|
238
429
|
const typesPath: typeof import('./core/path/src/index')['typesPath']
|
|
239
|
-
const ui: typeof import('../config/ui')['
|
|
430
|
+
const ui: typeof import('../config/ui')['default']
|
|
240
431
|
const uiPath: typeof import('./core/path/src/index')['uiPath']
|
|
432
|
+
const uniq: typeof import('./core/arrays/src/index')['uniq']
|
|
433
|
+
const uniqueBy: typeof import('./core/arrays/src/index')['uniqueBy']
|
|
434
|
+
const unocss: typeof import('./core/ui/src/unocss')['default']
|
|
241
435
|
const unref: typeof import('vue')['unref']
|
|
242
436
|
const unrefElement: typeof import('@vueuse/core')['unrefElement']
|
|
243
437
|
const until: typeof import('@vueuse/core')['until']
|
|
438
|
+
const updateConfigFile: typeof import('./core/storage/src/index')['updateConfigFile']
|
|
244
439
|
const useAbs: typeof import('@vueuse/math')['useAbs']
|
|
245
440
|
const useActiveElement: typeof import('@vueuse/core')['useActiveElement']
|
|
246
441
|
const useArrayEvery: typeof import('@vueuse/core')['useArrayEvery']
|
|
@@ -251,6 +446,7 @@ declare global {
|
|
|
251
446
|
const useArrayMap: typeof import('@vueuse/core')['useArrayMap']
|
|
252
447
|
const useArrayReduce: typeof import('@vueuse/core')['useArrayReduce']
|
|
253
448
|
const useArraySome: typeof import('@vueuse/core')['useArraySome']
|
|
449
|
+
const useArrayUnique: typeof import('@vueuse/core')['useArrayUnique']
|
|
254
450
|
const useAsyncQueue: typeof import('@vueuse/core')['useAsyncQueue']
|
|
255
451
|
const useAsyncState: typeof import('@vueuse/core')['useAsyncState']
|
|
256
452
|
const useAttrs: typeof import('vue')['useAttrs']
|
|
@@ -263,6 +459,7 @@ declare global {
|
|
|
263
459
|
const useBrowserLocation: typeof import('@vueuse/core')['useBrowserLocation']
|
|
264
460
|
const useCached: typeof import('@vueuse/core')['useCached']
|
|
265
461
|
const useCeil: typeof import('@vueuse/math')['useCeil']
|
|
462
|
+
const useChat: typeof import('./core/notifications/src/index')['useChat']
|
|
266
463
|
const useClamp: typeof import('@vueuse/math')['useClamp']
|
|
267
464
|
const useClipboard: typeof import('@vueuse/core')['useClipboard']
|
|
268
465
|
const useCloned: typeof import('@vueuse/core')['useCloned']
|
|
@@ -292,6 +489,8 @@ declare global {
|
|
|
292
489
|
const useElementHover: typeof import('@vueuse/core')['useElementHover']
|
|
293
490
|
const useElementSize: typeof import('@vueuse/core')['useElementSize']
|
|
294
491
|
const useElementVisibility: typeof import('@vueuse/core')['useElementVisibility']
|
|
492
|
+
const useEmail: typeof import('./core/notifications/src/index')['useEmail']
|
|
493
|
+
const useEvent: typeof import('./core/events/src/index')['useEvent']
|
|
295
494
|
const useEventBus: typeof import('@vueuse/core')['useEventBus']
|
|
296
495
|
const useEventListener: typeof import('@vueuse/core')['useEventListener']
|
|
297
496
|
const useEventSource: typeof import('@vueuse/core')['useEventSource']
|
|
@@ -334,6 +533,7 @@ declare global {
|
|
|
334
533
|
const useMutationObserver: typeof import('@vueuse/core')['useMutationObserver']
|
|
335
534
|
const useNavigatorLanguage: typeof import('@vueuse/core')['useNavigatorLanguage']
|
|
336
535
|
const useNetwork: typeof import('@vueuse/core')['useNetwork']
|
|
536
|
+
const useNotification: typeof import('./core/notifications/src/index')['useNotification']
|
|
337
537
|
const useNow: typeof import('@vueuse/core')['useNow']
|
|
338
538
|
const useObjectUrl: typeof import('@vueuse/core')['useObjectUrl']
|
|
339
539
|
const useOffsetPagination: typeof import('@vueuse/core')['useOffsetPagination']
|
|
@@ -342,6 +542,7 @@ declare global {
|
|
|
342
542
|
const useParallax: typeof import('@vueuse/core')['useParallax']
|
|
343
543
|
const usePermission: typeof import('@vueuse/core')['usePermission']
|
|
344
544
|
const usePointer: typeof import('@vueuse/core')['usePointer']
|
|
545
|
+
const usePointerLock: typeof import('@vueuse/core')['usePointerLock']
|
|
345
546
|
const usePointerSwipe: typeof import('@vueuse/core')['usePointerSwipe']
|
|
346
547
|
const usePrecision: typeof import('@vueuse/math')['usePrecision']
|
|
347
548
|
const usePreferredColorScheme: typeof import('@vueuse/core')['usePreferredColorScheme']
|
|
@@ -349,6 +550,7 @@ declare global {
|
|
|
349
550
|
const usePreferredDark: typeof import('@vueuse/core')['usePreferredDark']
|
|
350
551
|
const usePreferredLanguages: typeof import('@vueuse/core')['usePreferredLanguages']
|
|
351
552
|
const usePreferredReducedMotion: typeof import('@vueuse/core')['usePreferredReducedMotion']
|
|
553
|
+
const usePrevious: typeof import('@vueuse/core')['usePrevious']
|
|
352
554
|
const useProjection: typeof import('@vueuse/math')['useProjection']
|
|
353
555
|
const useRafFn: typeof import('@vueuse/core')['useRafFn']
|
|
354
556
|
const useRefHistory: typeof import('@vueuse/core')['useRefHistory']
|
|
@@ -356,11 +558,13 @@ declare global {
|
|
|
356
558
|
const useRound: typeof import('@vueuse/math')['useRound']
|
|
357
559
|
const useRoute: typeof import('vue-router')['useRoute']
|
|
358
560
|
const useRouter: typeof import('vue-router')['useRouter']
|
|
561
|
+
const useSMS: typeof import('./core/notifications/src/index')['useSMS']
|
|
359
562
|
const useScreenOrientation: typeof import('@vueuse/core')['useScreenOrientation']
|
|
360
563
|
const useScreenSafeArea: typeof import('@vueuse/core')['useScreenSafeArea']
|
|
361
564
|
const useScriptTag: typeof import('@vueuse/core')['useScriptTag']
|
|
362
565
|
const useScroll: typeof import('@vueuse/core')['useScroll']
|
|
363
566
|
const useScrollLock: typeof import('@vueuse/core')['useScrollLock']
|
|
567
|
+
const useSearchEngine: typeof import('./core/search-engine/src/index')['useSearchEngine']
|
|
364
568
|
const useSessionStorage: typeof import('@vueuse/core')['useSessionStorage']
|
|
365
569
|
const useShare: typeof import('@vueuse/core')['useShare']
|
|
366
570
|
const useSlots: typeof import('vue')['useSlots']
|
|
@@ -408,6 +612,9 @@ declare global {
|
|
|
408
612
|
const useWindowScroll: typeof import('@vueuse/core')['useWindowScroll']
|
|
409
613
|
const useWindowSize: typeof import('@vueuse/core')['useWindowSize']
|
|
410
614
|
const utilsPath: typeof import('./core/path/src/index')['utilsPath']
|
|
615
|
+
const validate: typeof import('./core/validation/src/index')['validate']
|
|
616
|
+
const validateUsername: typeof import('./core/strings/src/validation')['validateUsername']
|
|
617
|
+
const validationPath: typeof import('./core/path/src/index')['validationPath']
|
|
411
618
|
const verifyHash: typeof import('./core/security/src/hash')['verifyHash']
|
|
412
619
|
const vi: typeof import('vitest')['vi']
|
|
413
620
|
const vitest: typeof import('vitest')['vitest']
|
|
@@ -427,6 +634,8 @@ declare global {
|
|
|
427
634
|
const whenever: typeof import('@vueuse/core')['whenever']
|
|
428
635
|
const writeJsonFile: typeof import('./core/storage/src/index')['writeJsonFile']
|
|
429
636
|
const writeTextFile: typeof import('./core/storage/src/index')['writeTextFile']
|
|
637
|
+
const xRayPath: typeof import('./core/path/src/index')['xRayPath']
|
|
638
|
+
const z: typeof import('./core/validation/src/index')['z']
|
|
430
639
|
}
|
|
431
640
|
// for vue template auto import
|
|
432
641
|
import { UnwrapRef } from 'vue'
|
|
@@ -439,21 +648,35 @@ declare module 'vue' {
|
|
|
439
648
|
readonly $ref: UnwrapRef<typeof import('vue/macros')['$ref']>
|
|
440
649
|
readonly $shallowRef: UnwrapRef<typeof import('vue/macros')['$shallowRef']>
|
|
441
650
|
readonly $toRef: UnwrapRef<typeof import('vue/macros')['$toRef']>
|
|
442
|
-
readonly
|
|
651
|
+
readonly // wip: UnwrapRef<typeof import('./core/realtime/src/index')['// wip']>
|
|
652
|
+
readonly Collection: UnwrapRef<typeof import('./core/objects/src/index')['Collection']>
|
|
443
653
|
readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
|
|
654
|
+
readonly Err: UnwrapRef<typeof import('./core/error-handling/src/index')['Err']>
|
|
655
|
+
readonly Ok: UnwrapRef<typeof import('./core/error-handling/src/index')['Ok']>
|
|
656
|
+
readonly Result: UnwrapRef<typeof import('./core/error-handling/src/index')['Result']>
|
|
657
|
+
readonly ResultAsync: UnwrapRef<typeof import('./core/error-handling/src/index')['ResultAsync']>
|
|
444
658
|
readonly _dirname: UnwrapRef<typeof import('./core/storage/src/index')['_dirname']>
|
|
445
659
|
readonly actionsPath: UnwrapRef<typeof import('./core/path/src/index')['actionsPath']>
|
|
660
|
+
readonly addIrregularRule: UnwrapRef<typeof import('./core/strings/src/pluralize')['addIrregularRule']>
|
|
661
|
+
readonly addPluralRule: UnwrapRef<typeof import('./core/strings/src/pluralize')['addPluralRule']>
|
|
662
|
+
readonly addSingularRule: UnwrapRef<typeof import('./core/strings/src/pluralize')['addSingularRule']>
|
|
663
|
+
readonly addUncountableRule: UnwrapRef<typeof import('./core/strings/src/pluralize')['addUncountableRule']>
|
|
446
664
|
readonly afterAll: UnwrapRef<typeof import('vitest')['afterAll']>
|
|
447
665
|
readonly afterEach: UnwrapRef<typeof import('vitest')['afterEach']>
|
|
666
|
+
readonly aiPath: UnwrapRef<typeof import('./core/path/src/index')['aiPath']>
|
|
448
667
|
readonly aliasPath: UnwrapRef<typeof import('./core/path/src/index')['aliasPath']>
|
|
449
|
-
readonly
|
|
668
|
+
readonly all: UnwrapRef<typeof import('./core/events/src/index')['all']>
|
|
669
|
+
readonly app: UnwrapRef<typeof import('../config/app')['default']>
|
|
450
670
|
readonly arraysPath: UnwrapRef<typeof import('./core/path/src/index')['arraysPath']>
|
|
451
|
-
readonly assert: UnwrapRef<typeof import('
|
|
671
|
+
readonly assert: UnwrapRef<typeof import('./core/utils/src/index')['assert']>
|
|
452
672
|
readonly asyncComputed: UnwrapRef<typeof import('@vueuse/core')['asyncComputed']>
|
|
673
|
+
readonly at: UnwrapRef<typeof import('./core/arrays/src/index')['at']>
|
|
674
|
+
readonly authPath: UnwrapRef<typeof import('./core/path/src/index')['authPath']>
|
|
453
675
|
readonly autoResetRef: UnwrapRef<typeof import('@vueuse/core')['autoResetRef']>
|
|
454
676
|
readonly base64Encode: UnwrapRef<typeof import('./core/security/src/hash')['base64Encode']>
|
|
455
677
|
readonly base64Verify: UnwrapRef<typeof import('./core/security/src/hash')['base64Verify']>
|
|
456
678
|
readonly basename: UnwrapRef<typeof import('./core/path/src/index')['basename']>
|
|
679
|
+
readonly batchInvoke: UnwrapRef<typeof import('./core/utils/src/function')['batchInvoke']>
|
|
457
680
|
readonly bcryptEncode: UnwrapRef<typeof import('./core/security/src/hash')['bcryptEncode']>
|
|
458
681
|
readonly bcryptVerify: UnwrapRef<typeof import('./core/security/src/hash')['bcryptVerify']>
|
|
459
682
|
readonly beforeAll: UnwrapRef<typeof import('vitest')['beforeAll']>
|
|
@@ -461,12 +684,21 @@ declare module 'vue' {
|
|
|
461
684
|
readonly buildEnginePath: UnwrapRef<typeof import('./core/path/src/index')['buildEnginePath']>
|
|
462
685
|
readonly buildEntriesPath: UnwrapRef<typeof import('./core/path/src/index')['buildEntriesPath']>
|
|
463
686
|
readonly buildPath: UnwrapRef<typeof import('./core/path/src/index')['buildPath']>
|
|
464
|
-
readonly
|
|
465
|
-
readonly
|
|
687
|
+
readonly cache: UnwrapRef<typeof import('../config/cache')['default']>
|
|
688
|
+
readonly cachePath: UnwrapRef<typeof import('./core/path/src/index')['cachePath']>
|
|
689
|
+
readonly calculatePagination: UnwrapRef<typeof import('./core/search-engine/src/index')['calculatePagination']>
|
|
690
|
+
readonly camelCase: UnwrapRef<typeof import('./core/strings/src/case')['camelCase']>
|
|
691
|
+
readonly capitalCase: UnwrapRef<typeof import('./core/strings/src/case')['capitalCase']>
|
|
692
|
+
readonly capitalize: UnwrapRef<typeof import('./core/strings/src/utils')['capitalize']>
|
|
466
693
|
readonly chai: UnwrapRef<typeof import('vitest')['chai']>
|
|
694
|
+
readonly chat: UnwrapRef<typeof import('./core/notifications/src/index')['chat']>
|
|
695
|
+
readonly chatPath: UnwrapRef<typeof import('./core/path/src/index')['chatPath']>
|
|
467
696
|
readonly clamp: UnwrapRef<typeof import('@vueuse/shared')['clamp']>
|
|
697
|
+
readonly clampArrayRange: UnwrapRef<typeof import('./core/arrays/src/index')['clampArrayRange']>
|
|
698
|
+
readonly clearUndefined: UnwrapRef<typeof import('./core/objects/src/index')['clearUndefined']>
|
|
468
699
|
readonly cliPath: UnwrapRef<typeof import('./core/path/src/index')['cliPath']>
|
|
469
|
-
readonly
|
|
700
|
+
readonly client: UnwrapRef<typeof import('./core/search-engine/src/index')['client']>
|
|
701
|
+
readonly collect: UnwrapRef<typeof import('./core/objects/src/index')['collect']>
|
|
470
702
|
readonly collectionsPath: UnwrapRef<typeof import('./core/path/src/index')['collectionsPath']>
|
|
471
703
|
readonly componentsPath: UnwrapRef<typeof import('./core/path/src/index')['componentsPath']>
|
|
472
704
|
readonly computed: UnwrapRef<typeof import('vue')['computed']>
|
|
@@ -474,108 +706,235 @@ declare module 'vue' {
|
|
|
474
706
|
readonly computedEager: UnwrapRef<typeof import('@vueuse/core')['computedEager']>
|
|
475
707
|
readonly computedInject: UnwrapRef<typeof import('@vueuse/core')['computedInject']>
|
|
476
708
|
readonly computedWithControl: UnwrapRef<typeof import('@vueuse/core')['computedWithControl']>
|
|
709
|
+
readonly config: UnwrapRef<typeof import('./core/utils/src/helpers')['config']>
|
|
477
710
|
readonly configPath: UnwrapRef<typeof import('./core/path/src/index')['configPath']>
|
|
478
|
-
readonly constantCase: UnwrapRef<typeof import('./core/strings/src/
|
|
711
|
+
readonly constantCase: UnwrapRef<typeof import('./core/strings/src/case')['constantCase']>
|
|
479
712
|
readonly contains: UnwrapRef<typeof import('./core/arrays/src/index')['contains']>
|
|
713
|
+
readonly containsAll: UnwrapRef<typeof import('./core/arrays/src/index')['containsAll']>
|
|
714
|
+
readonly containsAny: UnwrapRef<typeof import('./core/arrays/src/index')['containsAny']>
|
|
715
|
+
readonly containsNone: UnwrapRef<typeof import('./core/arrays/src/index')['containsNone']>
|
|
716
|
+
readonly containsOnly: UnwrapRef<typeof import('./core/arrays/src/index')['containsOnly']>
|
|
480
717
|
readonly controlledComputed: UnwrapRef<typeof import('@vueuse/core')['controlledComputed']>
|
|
481
718
|
readonly controlledRef: UnwrapRef<typeof import('@vueuse/core')['controlledRef']>
|
|
482
719
|
readonly copyFolder: UnwrapRef<typeof import('./core/storage/src/index')['copyFolder']>
|
|
483
720
|
readonly corePath: UnwrapRef<typeof import('./core/path/src/index')['corePath']>
|
|
484
721
|
readonly count: UnwrapRef<typeof import('../functions/counter')['count']>
|
|
485
722
|
readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
|
|
723
|
+
readonly createControlledPromise: UnwrapRef<typeof import('./core/utils/src/promise')['createControlledPromise']>
|
|
486
724
|
readonly createEventHook: UnwrapRef<typeof import('@vueuse/core')['createEventHook']>
|
|
725
|
+
readonly createFolder: UnwrapRef<typeof import('./core/storage/src/index')['createFolder']>
|
|
487
726
|
readonly createGenericProjection: UnwrapRef<typeof import('@vueuse/math')['createGenericProjection']>
|
|
488
727
|
readonly createGlobalState: UnwrapRef<typeof import('@vueuse/core')['createGlobalState']>
|
|
489
728
|
readonly createInjectionState: UnwrapRef<typeof import('@vueuse/core')['createInjectionState']>
|
|
490
729
|
readonly createProjection: UnwrapRef<typeof import('@vueuse/math')['createProjection']>
|
|
730
|
+
readonly createPromiseLock: UnwrapRef<typeof import('./core/utils/src/promise')['createPromiseLock']>
|
|
491
731
|
readonly createReactiveFn: UnwrapRef<typeof import('@vueuse/core')['createReactiveFn']>
|
|
492
732
|
readonly createSharedComposable: UnwrapRef<typeof import('@vueuse/core')['createSharedComposable']>
|
|
733
|
+
readonly createSingletonPromise: UnwrapRef<typeof import('./core/utils/src/promise')['createSingletonPromise']>
|
|
493
734
|
readonly createUnrefFn: UnwrapRef<typeof import('@vueuse/core')['createUnrefFn']>
|
|
735
|
+
readonly currentPage: UnwrapRef<typeof import('./core/search-engine/src/index')['currentPage']>
|
|
494
736
|
readonly customElementsDataPath: UnwrapRef<typeof import('./core/path/src/index')['customElementsDataPath']>
|
|
495
737
|
readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
|
|
738
|
+
readonly dashboardPath: UnwrapRef<typeof import('./core/path/src/index')['dashboardPath']>
|
|
739
|
+
readonly database: UnwrapRef<typeof import('../config/database')['default']>
|
|
740
|
+
readonly databasePath: UnwrapRef<typeof import('./core/path/src/index')['databasePath']>
|
|
741
|
+
readonly dd: UnwrapRef<typeof import('./core/logging/src/index')['dd']>
|
|
742
|
+
readonly debounce: UnwrapRef<typeof import('./core/utils/src/debounce')['debounce']>
|
|
496
743
|
readonly debouncedRef: UnwrapRef<typeof import('@vueuse/core')['debouncedRef']>
|
|
497
744
|
readonly debouncedWatch: UnwrapRef<typeof import('@vueuse/core')['debouncedWatch']>
|
|
745
|
+
readonly debug: UnwrapRef<typeof import('./core/logging/src/index')['debug']>
|
|
498
746
|
readonly decrypt: UnwrapRef<typeof import('./core/security/src/crypt')['decrypt']>
|
|
747
|
+
readonly deepMerge: UnwrapRef<typeof import('./core/objects/src/index')['deepMerge']>
|
|
499
748
|
readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
|
|
500
749
|
readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
|
|
501
750
|
readonly deleteEmptyFolders: UnwrapRef<typeof import('./core/storage/src/index')['deleteEmptyFolders']>
|
|
502
751
|
readonly deleteFiles: UnwrapRef<typeof import('./core/storage/src/index')['deleteFiles']>
|
|
503
752
|
readonly deleteFolder: UnwrapRef<typeof import('./core/storage/src/index')['deleteFolder']>
|
|
504
753
|
readonly delimiter: UnwrapRef<typeof import('./core/path/src/index')['delimiter']>
|
|
505
|
-
readonly deploy: UnwrapRef<typeof import('../config/deploy')['deploy']>
|
|
506
754
|
readonly describe: UnwrapRef<typeof import('vitest')['describe']>
|
|
755
|
+
readonly desktopPath: UnwrapRef<typeof import('./core/path/src/index')['desktopPath']>
|
|
756
|
+
readonly detectIndent: UnwrapRef<typeof import('./core/utils/src/helpers')['detectIndent']>
|
|
757
|
+
readonly detectNewline: UnwrapRef<typeof import('./core/utils/src/helpers')['detectNewline']>
|
|
758
|
+
readonly determineResetPreset: UnwrapRef<typeof import('./core/utils/src/helpers')['determineResetPreset']>
|
|
759
|
+
readonly determineState: UnwrapRef<typeof import('./core/search-engine/src/helpers')['determineState']>
|
|
507
760
|
readonly dirname: UnwrapRef<typeof import('./core/path/src/index')['dirname']>
|
|
761
|
+
readonly dispatch: UnwrapRef<typeof import('./core/events/src/index')['dispatch']>
|
|
508
762
|
readonly docs: UnwrapRef<typeof import('../config/docs')['default']>
|
|
509
763
|
readonly docsPath: UnwrapRef<typeof import('./core/path/src/index')['docsPath']>
|
|
510
764
|
readonly doesFolderExist: UnwrapRef<typeof import('./core/storage/src/index')['doesFolderExist']>
|
|
511
|
-
readonly
|
|
765
|
+
readonly domainsPath: UnwrapRef<typeof import('./core/path/src/index')['domainsPath']>
|
|
766
|
+
readonly dotCase: UnwrapRef<typeof import('./core/strings/src/case')['dotCase']>
|
|
767
|
+
readonly dump: UnwrapRef<typeof import('./core/logging/src/index')['dump']>
|
|
512
768
|
readonly eagerComputed: UnwrapRef<typeof import('@vueuse/core')['eagerComputed']>
|
|
513
769
|
readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
|
|
770
|
+
readonly email: UnwrapRef<typeof import('./core/notifications/src/index')['email']>
|
|
771
|
+
readonly emailPath: UnwrapRef<typeof import('./core/path/src/index')['emailPath']>
|
|
514
772
|
readonly encrypt: UnwrapRef<typeof import('./core/security/src/crypt')['encrypt']>
|
|
773
|
+
readonly ensurePrefix: UnwrapRef<typeof import('./core/strings/src/utils')['ensurePrefix']>
|
|
774
|
+
readonly ensureSuffix: UnwrapRef<typeof import('./core/strings/src/utils')['ensureSuffix']>
|
|
775
|
+
readonly env: UnwrapRef<typeof import('./core/utils/src/helpers')['env']>
|
|
776
|
+
readonly err: UnwrapRef<typeof import('./core/error-handling/src/index')['err']>
|
|
777
|
+
readonly errAsync: UnwrapRef<typeof import('./core/error-handling/src/index')['errAsync']>
|
|
778
|
+
readonly errorHandlingPath: UnwrapRef<typeof import('./core/path/src/index')['errorHandlingPath']>
|
|
779
|
+
readonly events: UnwrapRef<typeof import('./core/events/src/index')['events']>
|
|
780
|
+
readonly eventsPath: UnwrapRef<typeof import('./core/path/src/index')['eventsPath']>
|
|
515
781
|
readonly examplesPath: UnwrapRef<typeof import('./core/path/src/index')['examplesPath']>
|
|
516
782
|
readonly expect: UnwrapRef<typeof import('vitest')['expect']>
|
|
517
783
|
readonly extendRef: UnwrapRef<typeof import('@vueuse/core')['extendRef']>
|
|
518
784
|
readonly extname: UnwrapRef<typeof import('./core/path/src/index')['extname']>
|
|
519
785
|
readonly filesystem: UnwrapRef<typeof import('./core/storage/src/index')['filesystem']>
|
|
786
|
+
readonly filterName: UnwrapRef<typeof import('./core/search-engine/src/index')['filterName']>
|
|
787
|
+
readonly filters: UnwrapRef<typeof import('./core/search-engine/src/index')['filters']>
|
|
788
|
+
readonly flattenArrayable: UnwrapRef<typeof import('./core/arrays/src/index')['flattenArrayable']>
|
|
520
789
|
readonly format: UnwrapRef<typeof import('./core/path/src/index')['format']>
|
|
521
790
|
readonly frameworkPath: UnwrapRef<typeof import('./core/path/src/index')['frameworkPath']>
|
|
522
|
-
readonly
|
|
791
|
+
readonly frameworkVersion: UnwrapRef<typeof import('./core/utils/src/helpers')['frameworkVersion']>
|
|
792
|
+
readonly fromPromise: UnwrapRef<typeof import('./core/error-handling/src/index')['fromPromise']>
|
|
793
|
+
readonly fromSafePromise: UnwrapRef<typeof import('./core/error-handling/src/index')['fromSafePromise']>
|
|
794
|
+
readonly fromThrowable: UnwrapRef<typeof import('./core/error-handling/src/index')['fromThrowable']>
|
|
523
795
|
readonly functionsPath: UnwrapRef<typeof import('./core/path/src/index')['functionsPath']>
|
|
524
796
|
readonly generateAppKey: UnwrapRef<typeof import('./core/security/src/key')['generateAppKey']>
|
|
525
797
|
readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
|
|
526
798
|
readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
|
|
799
|
+
readonly getTypeName: UnwrapRef<typeof import('./core/utils/src/index')['getTypeName']>
|
|
527
800
|
readonly git: UnwrapRef<typeof import('../config/git')['git']>
|
|
528
801
|
readonly gitPath: UnwrapRef<typeof import('./core/path/src/index')['gitPath']>
|
|
802
|
+
readonly goToNextPage: UnwrapRef<typeof import('./core/search-engine/src/index')['goToNextPage']>
|
|
803
|
+
readonly goToPage: UnwrapRef<typeof import('./core/search-engine/src/index')['goToPage']>
|
|
804
|
+
readonly goToPrevPage: UnwrapRef<typeof import('./core/search-engine/src/index')['goToPrevPage']>
|
|
529
805
|
readonly h: UnwrapRef<typeof import('vue')['h']>
|
|
530
806
|
readonly hasComponents: UnwrapRef<typeof import('./core/storage/src/index')['hasComponents']>
|
|
531
807
|
readonly hasFiles: UnwrapRef<typeof import('./core/storage/src/index')['hasFiles']>
|
|
532
808
|
readonly hasFunctions: UnwrapRef<typeof import('./core/storage/src/index')['hasFunctions']>
|
|
533
809
|
readonly hasOwn: UnwrapRef<typeof import('@vueuse/shared')['hasOwn']>
|
|
810
|
+
readonly hasOwnProperty: UnwrapRef<typeof import('./core/objects/src/index')['hasOwnProperty']>
|
|
811
|
+
readonly hasScript: UnwrapRef<typeof import('./core/utils/src/helpers')['hasScript']>
|
|
534
812
|
readonly hashing: UnwrapRef<typeof import('../config/hashing')['hashing']>
|
|
535
|
-
readonly headerCase: UnwrapRef<typeof import('./core/strings/src/
|
|
813
|
+
readonly headerCase: UnwrapRef<typeof import('./core/strings/src/case')['headerCase']>
|
|
814
|
+
readonly healthPath: UnwrapRef<typeof import('./core/path/src/index')['healthPath']>
|
|
815
|
+
readonly hits: UnwrapRef<typeof import('./core/search-engine/src/index')['hits']>
|
|
536
816
|
readonly ignorableWatch: UnwrapRef<typeof import('@vueuse/core')['ignorableWatch']>
|
|
537
817
|
readonly increment: UnwrapRef<typeof import('../functions/counter')['increment']>
|
|
818
|
+
readonly index: UnwrapRef<typeof import('./core/search-engine/src/index')['index']>
|
|
538
819
|
readonly inject: UnwrapRef<typeof import('vue')['inject']>
|
|
539
820
|
readonly isAbsolute: UnwrapRef<typeof import('./core/path/src/index')['isAbsolute']>
|
|
540
|
-
readonly
|
|
821
|
+
readonly isAlpha: UnwrapRef<typeof import('./core/strings/src/validation')['isAlpha']>
|
|
822
|
+
readonly isAlphanumeric: UnwrapRef<typeof import('./core/strings/src/validation')['isAlphanumeric']>
|
|
823
|
+
readonly isAppKeySet: UnwrapRef<typeof import('./core/utils/src/helpers')['isAppKeySet']>
|
|
824
|
+
readonly isAscii: UnwrapRef<typeof import('./core/strings/src/validation')['isAscii']>
|
|
825
|
+
readonly isBase32: UnwrapRef<typeof import('./core/strings/src/validation')['isBase32']>
|
|
826
|
+
readonly isBase64: UnwrapRef<typeof import('./core/strings/src/validation')['isBase64']>
|
|
827
|
+
readonly isBoolean: UnwrapRef<typeof import('./core/utils/src/is')['isBoolean']>
|
|
828
|
+
readonly isBrowser: UnwrapRef<typeof import('./core/utils/src/is')['isBrowser']>
|
|
829
|
+
readonly isByteLength: UnwrapRef<typeof import('./core/strings/src/validation')['isByteLength']>
|
|
541
830
|
readonly isClient: UnwrapRef<typeof import('@vueuse/shared')['isClient']>
|
|
831
|
+
readonly isCreditCard: UnwrapRef<typeof import('./core/strings/src/validation')['isCreditCard']>
|
|
832
|
+
readonly isCurrency: UnwrapRef<typeof import('./core/strings/src/validation')['isCurrency']>
|
|
542
833
|
readonly isDark: UnwrapRef<typeof import('../functions/dark')['isDark']>
|
|
543
|
-
readonly
|
|
834
|
+
readonly isDataURI: UnwrapRef<typeof import('./core/strings/src/validation')['isDataURI']>
|
|
835
|
+
readonly isDate: UnwrapRef<typeof import('./core/strings/src/validation')['isDate']>
|
|
836
|
+
readonly isDeepEqual: UnwrapRef<typeof import('./core/utils/src/equal')['isDeepEqual']>
|
|
837
|
+
readonly isDef: UnwrapRef<typeof import('./core/utils/src/is')['isDef']>
|
|
544
838
|
readonly isDefined: UnwrapRef<typeof import('@vueuse/core')['isDefined']>
|
|
839
|
+
readonly isEmail: UnwrapRef<typeof import('./core/strings/src/validation')['isEmail']>
|
|
840
|
+
readonly isFQDN: UnwrapRef<typeof import('./core/strings/src/validation')['isFQDN']>
|
|
545
841
|
readonly isFile: UnwrapRef<typeof import('./core/storage/src/index')['isFile']>
|
|
546
842
|
readonly isFolder: UnwrapRef<typeof import('./core/storage/src/index')['isFolder']>
|
|
547
|
-
readonly
|
|
843
|
+
readonly isFullWidth: UnwrapRef<typeof import('./core/strings/src/validation')['isFullWidth']>
|
|
844
|
+
readonly isFunction: UnwrapRef<typeof import('./core/utils/src/is')['isFunction']>
|
|
845
|
+
readonly isHSL: UnwrapRef<typeof import('./core/strings/src/validation')['isHSL']>
|
|
846
|
+
readonly isHalfWidth: UnwrapRef<typeof import('./core/strings/src/validation')['isHalfWidth']>
|
|
847
|
+
readonly isHash: UnwrapRef<typeof import('./core/strings/src/validation')['isHash']>
|
|
848
|
+
readonly isHexColor: UnwrapRef<typeof import('./core/strings/src/validation')['isHexColor']>
|
|
849
|
+
readonly isHexadecimal: UnwrapRef<typeof import('./core/strings/src/validation')['isHexadecimal']>
|
|
850
|
+
readonly isIBAN: UnwrapRef<typeof import('./core/strings/src/validation')['isIBAN']>
|
|
548
851
|
readonly isIOS: UnwrapRef<typeof import('@vueuse/shared')['isIOS']>
|
|
549
|
-
readonly
|
|
550
|
-
readonly
|
|
852
|
+
readonly isIP: UnwrapRef<typeof import('./core/strings/src/validation')['isIP']>
|
|
853
|
+
readonly isIPRange: UnwrapRef<typeof import('./core/strings/src/validation')['isIPRange']>
|
|
854
|
+
readonly isISBN: UnwrapRef<typeof import('./core/strings/src/validation')['isISBN']>
|
|
855
|
+
readonly isISIN: UnwrapRef<typeof import('./core/strings/src/validation')['isISIN']>
|
|
856
|
+
readonly isISO31661Alpha2: UnwrapRef<typeof import('./core/strings/src/validation')['isISO31661Alpha2']>
|
|
857
|
+
readonly isISO31661Alpha3: UnwrapRef<typeof import('./core/strings/src/validation')['isISO31661Alpha3']>
|
|
858
|
+
readonly isISO8601: UnwrapRef<typeof import('./core/strings/src/validation')['isISO8601']>
|
|
859
|
+
readonly isISRC: UnwrapRef<typeof import('./core/strings/src/validation')['isISRC']>
|
|
860
|
+
readonly isISSN: UnwrapRef<typeof import('./core/strings/src/validation')['isISSN']>
|
|
861
|
+
readonly isIdentityCard: UnwrapRef<typeof import('./core/strings/src/validation')['isIdentityCard']>
|
|
862
|
+
readonly isJSON: UnwrapRef<typeof import('./core/strings/src/validation')['isJSON']>
|
|
863
|
+
readonly isJWT: UnwrapRef<typeof import('./core/strings/src/validation')['isJWT']>
|
|
864
|
+
readonly isKeyOf: UnwrapRef<typeof import('./core/objects/src/index')['isKeyOf']>
|
|
865
|
+
readonly isLatLong: UnwrapRef<typeof import('./core/strings/src/validation')['isLatLong']>
|
|
866
|
+
readonly isLatitude: UnwrapRef<typeof import('./core/strings/src/validation')['isLatitude']>
|
|
867
|
+
readonly isLongitude: UnwrapRef<typeof import('./core/strings/src/validation')['isLongitude']>
|
|
868
|
+
readonly isMACAddress: UnwrapRef<typeof import('./core/strings/src/validation')['isMACAddress']>
|
|
869
|
+
readonly isManifest: UnwrapRef<typeof import('./core/utils/src/helpers')['isManifest']>
|
|
870
|
+
readonly isMap: UnwrapRef<typeof import('./core/utils/src/is')['isMap']>
|
|
871
|
+
readonly isMimeType: UnwrapRef<typeof import('./core/strings/src/validation')['isMimeType']>
|
|
872
|
+
readonly isMobilePhone: UnwrapRef<typeof import('./core/strings/src/validation')['isMobilePhone']>
|
|
873
|
+
readonly isMongoId: UnwrapRef<typeof import('./core/strings/src/validation')['isMongoId']>
|
|
874
|
+
readonly isNumber: UnwrapRef<typeof import('./core/utils/src/is')['isNumber']>
|
|
875
|
+
readonly isNumeric: UnwrapRef<typeof import('./core/strings/src/validation')['isNumeric']>
|
|
876
|
+
readonly isObject: UnwrapRef<typeof import('./core/utils/src/is')['isObject']>
|
|
877
|
+
readonly isOptionalString: UnwrapRef<typeof import('./core/utils/src/helpers')['isOptionalString']>
|
|
878
|
+
readonly isPlural: UnwrapRef<typeof import('./core/strings/src/pluralize')['isPlural']>
|
|
879
|
+
readonly isPostalCode: UnwrapRef<typeof import('./core/strings/src/validation')['isPostalCode']>
|
|
880
|
+
readonly isProjectCreated: UnwrapRef<typeof import('./core/utils/src/helpers')['isProjectCreated']>
|
|
881
|
+
readonly isPromise: UnwrapRef<typeof import('./core/utils/src/is')['isPromise']>
|
|
551
882
|
readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
|
|
552
883
|
readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
|
|
553
884
|
readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
|
|
554
885
|
readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
|
|
555
|
-
readonly
|
|
556
|
-
readonly
|
|
886
|
+
readonly isServer: UnwrapRef<typeof import('./core/utils/src/is')['isServer']>
|
|
887
|
+
readonly isSet: UnwrapRef<typeof import('./core/utils/src/is')['isSet']>
|
|
888
|
+
readonly isSingular: UnwrapRef<typeof import('./core/strings/src/pluralize')['isSingular']>
|
|
889
|
+
readonly isString: UnwrapRef<typeof import('./core/utils/src/is')['isString']>
|
|
890
|
+
readonly isStrongPassword: UnwrapRef<typeof import('./core/strings/src/validation')['isStrongPassword']>
|
|
891
|
+
readonly isTruthy: UnwrapRef<typeof import('./core/utils/src/guards')['isTruthy']>
|
|
892
|
+
readonly isURL: UnwrapRef<typeof import('./core/strings/src/validation')['isURL']>
|
|
893
|
+
readonly isUUID: UnwrapRef<typeof import('./core/strings/src/validation')['isUUID']>
|
|
894
|
+
readonly isWindow: UnwrapRef<typeof import('./core/utils/src/is')['isWindow']>
|
|
557
895
|
readonly it: UnwrapRef<typeof import('vitest')['it']>
|
|
558
896
|
readonly join: UnwrapRef<typeof import('./core/path/src/index')['join']>
|
|
559
|
-
readonly kebabCase: UnwrapRef<typeof import('./core/strings/src/
|
|
897
|
+
readonly kebabCase: UnwrapRef<typeof import('./core/strings/src/case')['kebabCase']>
|
|
560
898
|
readonly langPath: UnwrapRef<typeof import('./core/path/src/index')['langPath']>
|
|
899
|
+
readonly last: UnwrapRef<typeof import('./core/arrays/src/index')['last']>
|
|
900
|
+
readonly lastPageNumber: UnwrapRef<typeof import('./core/search-engine/src/index')['lastPageNumber']>
|
|
561
901
|
readonly library: UnwrapRef<typeof import('../config/library')['library']>
|
|
562
902
|
readonly libraryEntryPath: UnwrapRef<typeof import('./core/path/src/index')['libraryEntryPath']>
|
|
563
903
|
readonly lintPath: UnwrapRef<typeof import('./core/path/src/index')['lintPath']>
|
|
904
|
+
readonly listen: UnwrapRef<typeof import('./core/events/src/index')['listen']>
|
|
905
|
+
readonly log: UnwrapRef<typeof import('./core/logging/src/index')['log']>
|
|
906
|
+
readonly loggingPath: UnwrapRef<typeof import('./core/path/src/index')['loggingPath']>
|
|
564
907
|
readonly logicAnd: UnwrapRef<typeof import('@vueuse/math')['logicAnd']>
|
|
565
908
|
readonly logicNot: UnwrapRef<typeof import('@vueuse/math')['logicNot']>
|
|
566
909
|
readonly logicOr: UnwrapRef<typeof import('@vueuse/math')['logicOr']>
|
|
910
|
+
readonly loop: UnwrapRef<typeof import('./core/utils/src/index')['loop']>
|
|
567
911
|
readonly makeDestructurable: UnwrapRef<typeof import('@vueuse/core')['makeDestructurable']>
|
|
568
912
|
readonly makeHash: UnwrapRef<typeof import('./core/security/src/hash')['makeHash']>
|
|
569
913
|
readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
|
|
570
914
|
readonly md5Encode: UnwrapRef<typeof import('./core/security/src/hash')['md5Encode']>
|
|
915
|
+
readonly mergeArrayable: UnwrapRef<typeof import('./core/arrays/src/index')['mergeArrayable']>
|
|
916
|
+
readonly mitt: UnwrapRef<typeof import('./core/events/src/index')['mitt']>
|
|
571
917
|
readonly modulesPath: UnwrapRef<typeof import('./core/path/src/index')['modulesPath']>
|
|
918
|
+
readonly move: UnwrapRef<typeof import('./core/arrays/src/index')['move']>
|
|
572
919
|
readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
|
|
573
|
-
readonly noCase: UnwrapRef<typeof import('./core/strings/src/
|
|
574
|
-
readonly
|
|
920
|
+
readonly noCase: UnwrapRef<typeof import('./core/strings/src/case')['noCase']>
|
|
921
|
+
readonly noNull: UnwrapRef<typeof import('./core/utils/src/guards')['noNull']>
|
|
922
|
+
readonly noop: UnwrapRef<typeof import('./core/utils/src/index')['noop']>
|
|
575
923
|
readonly normalize: UnwrapRef<typeof import('./core/path/src/index')['normalize']>
|
|
576
924
|
readonly normalizeString: UnwrapRef<typeof import('./core/path/src/index')['normalizeString']>
|
|
925
|
+
readonly notNullish: UnwrapRef<typeof import('./core/utils/src/guards')['notNullish']>
|
|
926
|
+
readonly notUndefined: UnwrapRef<typeof import('./core/utils/src/guards')['notUndefined']>
|
|
927
|
+
readonly notification: UnwrapRef<typeof import('./core/notifications/src/index')['notification']>
|
|
928
|
+
readonly notificationsPath: UnwrapRef<typeof import('./core/path/src/index')['notificationsPath']>
|
|
577
929
|
readonly now: UnwrapRef<typeof import('@vueuse/shared')['now']>
|
|
930
|
+
readonly objectEntries: UnwrapRef<typeof import('./core/objects/src/index')['objectEntries']>
|
|
931
|
+
readonly objectKeys: UnwrapRef<typeof import('./core/objects/src/index')['objectKeys']>
|
|
932
|
+
readonly objectMap: UnwrapRef<typeof import('./core/objects/src/index')['objectMap']>
|
|
933
|
+
readonly objectPick: UnwrapRef<typeof import('./core/objects/src/index')['objectPick']>
|
|
578
934
|
readonly objectsPath: UnwrapRef<typeof import('./core/path/src/index')['objectsPath']>
|
|
935
|
+
readonly off: UnwrapRef<typeof import('./core/events/src/index')['off']>
|
|
936
|
+
readonly ok: UnwrapRef<typeof import('./core/error-handling/src/index')['ok']>
|
|
937
|
+
readonly okAsync: UnwrapRef<typeof import('./core/error-handling/src/index')['okAsync']>
|
|
579
938
|
readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
|
|
580
939
|
readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
|
|
581
940
|
readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router')['onBeforeRouteLeave']>
|
|
@@ -595,19 +954,30 @@ declare module 'vue' {
|
|
|
595
954
|
readonly onStartTyping: UnwrapRef<typeof import('@vueuse/core')['onStartTyping']>
|
|
596
955
|
readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
|
|
597
956
|
readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
|
|
957
|
+
readonly p: UnwrapRef<typeof import('./core/utils/src/p')['p']>
|
|
598
958
|
readonly packageJsonPath: UnwrapRef<typeof import('./core/path/src/index')['packageJsonPath']>
|
|
599
959
|
readonly pagesPath: UnwrapRef<typeof import('./core/path/src/index')['pagesPath']>
|
|
600
|
-
readonly paramCase: UnwrapRef<typeof import('./core/strings/src/
|
|
960
|
+
readonly paramCase: UnwrapRef<typeof import('./core/strings/src/case')['paramCase']>
|
|
601
961
|
readonly parse: UnwrapRef<typeof import('./core/path/src/index')['parse']>
|
|
602
|
-
readonly
|
|
962
|
+
readonly partition: UnwrapRef<typeof import('./core/arrays/src/index')['partition']>
|
|
963
|
+
readonly pascalCase: UnwrapRef<typeof import('./core/strings/src/case')['pascalCase']>
|
|
603
964
|
readonly path: UnwrapRef<typeof import('./core/path/src/index')['path']>
|
|
604
|
-
readonly pathCase: UnwrapRef<typeof import('./core/strings/src/
|
|
965
|
+
readonly pathCase: UnwrapRef<typeof import('./core/strings/src/case')['pathCase']>
|
|
605
966
|
readonly pathPath: UnwrapRef<typeof import('./core/path/src/index')['pathPath']>
|
|
606
967
|
readonly pausableWatch: UnwrapRef<typeof import('@vueuse/core')['pausableWatch']>
|
|
968
|
+
readonly paymentsPath: UnwrapRef<typeof import('./core/path/src/index')['paymentsPath']>
|
|
969
|
+
readonly perPage: UnwrapRef<typeof import('./core/search-engine/src/index')['perPage']>
|
|
970
|
+
readonly plural: UnwrapRef<typeof import('./core/strings/src/pluralize')['plural']>
|
|
607
971
|
readonly preferredDark: UnwrapRef<typeof import('../functions/dark')['preferredDark']>
|
|
608
972
|
readonly projectPath: UnwrapRef<typeof import('./core/path/src/index')['projectPath']>
|
|
609
973
|
readonly provide: UnwrapRef<typeof import('vue')['provide']>
|
|
974
|
+
readonly pushPath: UnwrapRef<typeof import('./core/path/src/index')['pushPath']>
|
|
975
|
+
readonly query: UnwrapRef<typeof import('./core/search-engine/src/index')['query']>
|
|
976
|
+
readonly queuePath: UnwrapRef<typeof import('./core/path/src/index')['queuePath']>
|
|
610
977
|
readonly rand: UnwrapRef<typeof import('@vueuse/shared')['rand']>
|
|
978
|
+
readonly randomStr: UnwrapRef<typeof import('./core/strings/src/utils')['randomStr']>
|
|
979
|
+
readonly range: UnwrapRef<typeof import('./core/arrays/src/index')['range']>
|
|
980
|
+
readonly ray: UnwrapRef<typeof import('./core/logging/src/index')['ray']>
|
|
611
981
|
readonly reactify: UnwrapRef<typeof import('@vueuse/core')['reactify']>
|
|
612
982
|
readonly reactifyObject: UnwrapRef<typeof import('@vueuse/core')['reactifyObject']>
|
|
613
983
|
readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
|
|
@@ -617,6 +987,7 @@ declare module 'vue' {
|
|
|
617
987
|
readonly readJsonFile: UnwrapRef<typeof import('./core/storage/src/index')['readJsonFile']>
|
|
618
988
|
readonly readTextFile: UnwrapRef<typeof import('./core/storage/src/index')['readTextFile']>
|
|
619
989
|
readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
|
|
990
|
+
readonly realtimePath: UnwrapRef<typeof import('./core/path/src/index')['realtimePath']>
|
|
620
991
|
readonly ref: UnwrapRef<typeof import('vue')['ref']>
|
|
621
992
|
readonly refAutoReset: UnwrapRef<typeof import('@vueuse/core')['refAutoReset']>
|
|
622
993
|
readonly refDebounced: UnwrapRef<typeof import('@vueuse/core')['refDebounced']>
|
|
@@ -624,42 +995,72 @@ declare module 'vue' {
|
|
|
624
995
|
readonly refThrottled: UnwrapRef<typeof import('@vueuse/core')['refThrottled']>
|
|
625
996
|
readonly refWithControl: UnwrapRef<typeof import('@vueuse/core')['refWithControl']>
|
|
626
997
|
readonly relative: UnwrapRef<typeof import('./core/path/src/index')['relative']>
|
|
998
|
+
readonly remove: UnwrapRef<typeof import('./core/arrays/src/index')['remove']>
|
|
627
999
|
readonly resolve: UnwrapRef<typeof import('./core/path/src/index')['resolve']>
|
|
628
1000
|
readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
|
|
629
1001
|
readonly resolveDirective: UnwrapRef<typeof import('vue')['resolveDirective']>
|
|
630
1002
|
readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
|
|
631
1003
|
readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
|
|
1004
|
+
readonly results: UnwrapRef<typeof import('./core/search-engine/src/index')['results']>
|
|
1005
|
+
readonly router: UnwrapRef<typeof import('./core/router/src/index')['router']>
|
|
632
1006
|
readonly routerPath: UnwrapRef<typeof import('./core/path/src/index')['routerPath']>
|
|
633
1007
|
readonly routesPath: UnwrapRef<typeof import('./core/path/src/index')['routesPath']>
|
|
1008
|
+
readonly runNpmScript: UnwrapRef<typeof import('./core/utils/src/helpers')['runNpmScript']>
|
|
1009
|
+
readonly runtimePath: UnwrapRef<typeof import('./core/path/src/index')['runtimePath']>
|
|
1010
|
+
readonly sample: UnwrapRef<typeof import('./core/arrays/src/index')['sample']>
|
|
634
1011
|
readonly scriptsPath: UnwrapRef<typeof import('./core/path/src/index')['scriptsPath']>
|
|
1012
|
+
readonly searchEngine: UnwrapRef<typeof import('../config/search-engine')['default']>
|
|
1013
|
+
readonly searchEnginePath: UnwrapRef<typeof import('./core/path/src/index')['searchEnginePath']>
|
|
1014
|
+
readonly searchFilters: UnwrapRef<typeof import('./core/search-engine/src/index')['searchFilters']>
|
|
1015
|
+
readonly searchParams: UnwrapRef<typeof import('./core/search-engine/src/index')['searchParams']>
|
|
635
1016
|
readonly securityPath: UnwrapRef<typeof import('./core/path/src/index')['securityPath']>
|
|
636
|
-
readonly sentenceCase: UnwrapRef<typeof import('./core/strings/src/
|
|
1017
|
+
readonly sentenceCase: UnwrapRef<typeof import('./core/strings/src/case')['sentenceCase']>
|
|
637
1018
|
readonly sep: UnwrapRef<typeof import('./core/path/src/index')['sep']>
|
|
638
1019
|
readonly serverPath: UnwrapRef<typeof import('./core/path/src/index')['serverPath']>
|
|
639
1020
|
readonly serverlessPath: UnwrapRef<typeof import('./core/path/src/index')['serverlessPath']>
|
|
640
|
-
readonly services: UnwrapRef<typeof import('../config/services')['
|
|
1021
|
+
readonly services: UnwrapRef<typeof import('../config/services')['default']>
|
|
1022
|
+
readonly setEnvValue: UnwrapRef<typeof import('./core/utils/src/helpers')['setEnvValue']>
|
|
1023
|
+
readonly setTotalHits: UnwrapRef<typeof import('./core/search-engine/src/index')['setTotalHits']>
|
|
641
1024
|
readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
|
|
642
1025
|
readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
|
|
643
1026
|
readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
|
|
644
|
-
readonly
|
|
645
|
-
readonly
|
|
1027
|
+
readonly shuffle: UnwrapRef<typeof import('./core/arrays/src/index')['shuffle']>
|
|
1028
|
+
readonly singular: UnwrapRef<typeof import('./core/strings/src/pluralize')['singular']>
|
|
1029
|
+
readonly slash: UnwrapRef<typeof import('./core/strings/src/utils')['slash']>
|
|
1030
|
+
readonly sleep: UnwrapRef<typeof import('./core/utils/src/promise')['sleep']>
|
|
1031
|
+
readonly sms: UnwrapRef<typeof import('./core/notifications/src/index')['sms']>
|
|
1032
|
+
readonly smsPath: UnwrapRef<typeof import('./core/path/src/index')['smsPath']>
|
|
1033
|
+
readonly snakeCase: UnwrapRef<typeof import('./core/strings/src/case')['snakeCase']>
|
|
1034
|
+
readonly sort: UnwrapRef<typeof import('./core/search-engine/src/index')['sort']>
|
|
1035
|
+
readonly sorts: UnwrapRef<typeof import('./core/search-engine/src/index')['sorts']>
|
|
1036
|
+
readonly src: UnwrapRef<typeof import('./core/ui/src/index')['default']>
|
|
646
1037
|
readonly stacksPath: UnwrapRef<typeof import('./core/path/src/index')['stacksPath']>
|
|
1038
|
+
readonly storage: UnwrapRef<typeof import('../config/storage')['default']>
|
|
1039
|
+
readonly storagePath: UnwrapRef<typeof import('./core/path/src/index')['storagePath']>
|
|
647
1040
|
readonly stringsPath: UnwrapRef<typeof import('./core/path/src/index')['stringsPath']>
|
|
648
1041
|
readonly suite: UnwrapRef<typeof import('vitest')['suite']>
|
|
649
1042
|
readonly syncRef: UnwrapRef<typeof import('@vueuse/core')['syncRef']>
|
|
650
1043
|
readonly syncRefs: UnwrapRef<typeof import('@vueuse/core')['syncRefs']>
|
|
1044
|
+
readonly tablesPath: UnwrapRef<typeof import('./core/path/src/index')['tablesPath']>
|
|
1045
|
+
readonly tap: UnwrapRef<typeof import('./core/utils/src/function')['tap']>
|
|
1046
|
+
readonly template: UnwrapRef<typeof import('./core/strings/src/utils')['template']>
|
|
651
1047
|
readonly templateRef: UnwrapRef<typeof import('@vueuse/core')['templateRef']>
|
|
652
1048
|
readonly test: UnwrapRef<typeof import('vitest')['test']>
|
|
653
1049
|
readonly testingPath: UnwrapRef<typeof import('./core/path/src/index')['testingPath']>
|
|
1050
|
+
readonly testsPath: UnwrapRef<typeof import('./core/path/src/index')['testsPath']>
|
|
1051
|
+
readonly throttle: UnwrapRef<typeof import('./core/utils/src/debounce')['throttle']>
|
|
654
1052
|
readonly throttledRef: UnwrapRef<typeof import('@vueuse/core')['throttledRef']>
|
|
655
1053
|
readonly throttledWatch: UnwrapRef<typeof import('@vueuse/core')['throttledWatch']>
|
|
656
1054
|
readonly timestamp: UnwrapRef<typeof import('@vueuse/shared')['timestamp']>
|
|
1055
|
+
readonly toArray: UnwrapRef<typeof import('./core/arrays/src/index')['toArray']>
|
|
657
1056
|
readonly toNamespacedPath: UnwrapRef<typeof import('./core/path/src/index')['toNamespacedPath']>
|
|
658
1057
|
readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
|
|
659
1058
|
readonly toReactive: UnwrapRef<typeof import('@vueuse/core')['toReactive']>
|
|
660
1059
|
readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
|
|
661
1060
|
readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
|
|
1061
|
+
readonly toString: UnwrapRef<typeof import('./core/utils/src/index')['toString']>
|
|
662
1062
|
readonly toggleDark: UnwrapRef<typeof import('../functions/dark')['toggleDark']>
|
|
1063
|
+
readonly totalPages: UnwrapRef<typeof import('./core/search-engine/src/index')['totalPages']>
|
|
663
1064
|
readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
|
|
664
1065
|
readonly tryOnBeforeMount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeMount']>
|
|
665
1066
|
readonly tryOnBeforeUnmount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeUnmount']>
|
|
@@ -667,11 +1068,15 @@ declare module 'vue' {
|
|
|
667
1068
|
readonly tryOnScopeDispose: UnwrapRef<typeof import('@vueuse/core')['tryOnScopeDispose']>
|
|
668
1069
|
readonly tryOnUnmounted: UnwrapRef<typeof import('@vueuse/core')['tryOnUnmounted']>
|
|
669
1070
|
readonly typesPath: UnwrapRef<typeof import('./core/path/src/index')['typesPath']>
|
|
670
|
-
readonly ui: UnwrapRef<typeof import('../config/ui')['
|
|
1071
|
+
readonly ui: UnwrapRef<typeof import('../config/ui')['default']>
|
|
671
1072
|
readonly uiPath: UnwrapRef<typeof import('./core/path/src/index')['uiPath']>
|
|
1073
|
+
readonly uniq: UnwrapRef<typeof import('./core/arrays/src/index')['uniq']>
|
|
1074
|
+
readonly uniqueBy: UnwrapRef<typeof import('./core/arrays/src/index')['uniqueBy']>
|
|
1075
|
+
readonly unocss: UnwrapRef<typeof import('./core/ui/src/unocss')['default']>
|
|
672
1076
|
readonly unref: UnwrapRef<typeof import('vue')['unref']>
|
|
673
1077
|
readonly unrefElement: UnwrapRef<typeof import('@vueuse/core')['unrefElement']>
|
|
674
1078
|
readonly until: UnwrapRef<typeof import('@vueuse/core')['until']>
|
|
1079
|
+
readonly updateConfigFile: UnwrapRef<typeof import('./core/storage/src/index')['updateConfigFile']>
|
|
675
1080
|
readonly useAbs: UnwrapRef<typeof import('@vueuse/math')['useAbs']>
|
|
676
1081
|
readonly useActiveElement: UnwrapRef<typeof import('@vueuse/core')['useActiveElement']>
|
|
677
1082
|
readonly useArrayEvery: UnwrapRef<typeof import('@vueuse/core')['useArrayEvery']>
|
|
@@ -682,6 +1087,7 @@ declare module 'vue' {
|
|
|
682
1087
|
readonly useArrayMap: UnwrapRef<typeof import('@vueuse/core')['useArrayMap']>
|
|
683
1088
|
readonly useArrayReduce: UnwrapRef<typeof import('@vueuse/core')['useArrayReduce']>
|
|
684
1089
|
readonly useArraySome: UnwrapRef<typeof import('@vueuse/core')['useArraySome']>
|
|
1090
|
+
readonly useArrayUnique: UnwrapRef<typeof import('@vueuse/core')['useArrayUnique']>
|
|
685
1091
|
readonly useAsyncQueue: UnwrapRef<typeof import('@vueuse/core')['useAsyncQueue']>
|
|
686
1092
|
readonly useAsyncState: UnwrapRef<typeof import('@vueuse/core')['useAsyncState']>
|
|
687
1093
|
readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
|
|
@@ -694,6 +1100,7 @@ declare module 'vue' {
|
|
|
694
1100
|
readonly useBrowserLocation: UnwrapRef<typeof import('@vueuse/core')['useBrowserLocation']>
|
|
695
1101
|
readonly useCached: UnwrapRef<typeof import('@vueuse/core')['useCached']>
|
|
696
1102
|
readonly useCeil: UnwrapRef<typeof import('@vueuse/math')['useCeil']>
|
|
1103
|
+
readonly useChat: UnwrapRef<typeof import('./core/notifications/src/index')['useChat']>
|
|
697
1104
|
readonly useClamp: UnwrapRef<typeof import('@vueuse/math')['useClamp']>
|
|
698
1105
|
readonly useClipboard: UnwrapRef<typeof import('@vueuse/core')['useClipboard']>
|
|
699
1106
|
readonly useCloned: UnwrapRef<typeof import('@vueuse/core')['useCloned']>
|
|
@@ -723,6 +1130,8 @@ declare module 'vue' {
|
|
|
723
1130
|
readonly useElementHover: UnwrapRef<typeof import('@vueuse/core')['useElementHover']>
|
|
724
1131
|
readonly useElementSize: UnwrapRef<typeof import('@vueuse/core')['useElementSize']>
|
|
725
1132
|
readonly useElementVisibility: UnwrapRef<typeof import('@vueuse/core')['useElementVisibility']>
|
|
1133
|
+
readonly useEmail: UnwrapRef<typeof import('./core/notifications/src/index')['useEmail']>
|
|
1134
|
+
readonly useEvent: UnwrapRef<typeof import('./core/events/src/index')['useEvent']>
|
|
726
1135
|
readonly useEventBus: UnwrapRef<typeof import('@vueuse/core')['useEventBus']>
|
|
727
1136
|
readonly useEventListener: UnwrapRef<typeof import('@vueuse/core')['useEventListener']>
|
|
728
1137
|
readonly useEventSource: UnwrapRef<typeof import('@vueuse/core')['useEventSource']>
|
|
@@ -765,6 +1174,7 @@ declare module 'vue' {
|
|
|
765
1174
|
readonly useMutationObserver: UnwrapRef<typeof import('@vueuse/core')['useMutationObserver']>
|
|
766
1175
|
readonly useNavigatorLanguage: UnwrapRef<typeof import('@vueuse/core')['useNavigatorLanguage']>
|
|
767
1176
|
readonly useNetwork: UnwrapRef<typeof import('@vueuse/core')['useNetwork']>
|
|
1177
|
+
readonly useNotification: UnwrapRef<typeof import('./core/notifications/src/index')['useNotification']>
|
|
768
1178
|
readonly useNow: UnwrapRef<typeof import('@vueuse/core')['useNow']>
|
|
769
1179
|
readonly useObjectUrl: UnwrapRef<typeof import('@vueuse/core')['useObjectUrl']>
|
|
770
1180
|
readonly useOffsetPagination: UnwrapRef<typeof import('@vueuse/core')['useOffsetPagination']>
|
|
@@ -773,6 +1183,7 @@ declare module 'vue' {
|
|
|
773
1183
|
readonly useParallax: UnwrapRef<typeof import('@vueuse/core')['useParallax']>
|
|
774
1184
|
readonly usePermission: UnwrapRef<typeof import('@vueuse/core')['usePermission']>
|
|
775
1185
|
readonly usePointer: UnwrapRef<typeof import('@vueuse/core')['usePointer']>
|
|
1186
|
+
readonly usePointerLock: UnwrapRef<typeof import('@vueuse/core')['usePointerLock']>
|
|
776
1187
|
readonly usePointerSwipe: UnwrapRef<typeof import('@vueuse/core')['usePointerSwipe']>
|
|
777
1188
|
readonly usePrecision: UnwrapRef<typeof import('@vueuse/math')['usePrecision']>
|
|
778
1189
|
readonly usePreferredColorScheme: UnwrapRef<typeof import('@vueuse/core')['usePreferredColorScheme']>
|
|
@@ -780,6 +1191,7 @@ declare module 'vue' {
|
|
|
780
1191
|
readonly usePreferredDark: UnwrapRef<typeof import('@vueuse/core')['usePreferredDark']>
|
|
781
1192
|
readonly usePreferredLanguages: UnwrapRef<typeof import('@vueuse/core')['usePreferredLanguages']>
|
|
782
1193
|
readonly usePreferredReducedMotion: UnwrapRef<typeof import('@vueuse/core')['usePreferredReducedMotion']>
|
|
1194
|
+
readonly usePrevious: UnwrapRef<typeof import('@vueuse/core')['usePrevious']>
|
|
783
1195
|
readonly useProjection: UnwrapRef<typeof import('@vueuse/math')['useProjection']>
|
|
784
1196
|
readonly useRafFn: UnwrapRef<typeof import('@vueuse/core')['useRafFn']>
|
|
785
1197
|
readonly useRefHistory: UnwrapRef<typeof import('@vueuse/core')['useRefHistory']>
|
|
@@ -787,11 +1199,13 @@ declare module 'vue' {
|
|
|
787
1199
|
readonly useRound: UnwrapRef<typeof import('@vueuse/math')['useRound']>
|
|
788
1200
|
readonly useRoute: UnwrapRef<typeof import('vue-router')['useRoute']>
|
|
789
1201
|
readonly useRouter: UnwrapRef<typeof import('vue-router')['useRouter']>
|
|
1202
|
+
readonly useSMS: UnwrapRef<typeof import('./core/notifications/src/index')['useSMS']>
|
|
790
1203
|
readonly useScreenOrientation: UnwrapRef<typeof import('@vueuse/core')['useScreenOrientation']>
|
|
791
1204
|
readonly useScreenSafeArea: UnwrapRef<typeof import('@vueuse/core')['useScreenSafeArea']>
|
|
792
1205
|
readonly useScriptTag: UnwrapRef<typeof import('@vueuse/core')['useScriptTag']>
|
|
793
1206
|
readonly useScroll: UnwrapRef<typeof import('@vueuse/core')['useScroll']>
|
|
794
1207
|
readonly useScrollLock: UnwrapRef<typeof import('@vueuse/core')['useScrollLock']>
|
|
1208
|
+
readonly useSearchEngine: UnwrapRef<typeof import('./core/search-engine/src/index')['useSearchEngine']>
|
|
795
1209
|
readonly useSessionStorage: UnwrapRef<typeof import('@vueuse/core')['useSessionStorage']>
|
|
796
1210
|
readonly useShare: UnwrapRef<typeof import('@vueuse/core')['useShare']>
|
|
797
1211
|
readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
|
|
@@ -839,6 +1253,9 @@ declare module 'vue' {
|
|
|
839
1253
|
readonly useWindowScroll: UnwrapRef<typeof import('@vueuse/core')['useWindowScroll']>
|
|
840
1254
|
readonly useWindowSize: UnwrapRef<typeof import('@vueuse/core')['useWindowSize']>
|
|
841
1255
|
readonly utilsPath: UnwrapRef<typeof import('./core/path/src/index')['utilsPath']>
|
|
1256
|
+
readonly validate: UnwrapRef<typeof import('./core/validation/src/index')['validate']>
|
|
1257
|
+
readonly validateUsername: UnwrapRef<typeof import('./core/strings/src/validation')['validateUsername']>
|
|
1258
|
+
readonly validationPath: UnwrapRef<typeof import('./core/path/src/index')['validationPath']>
|
|
842
1259
|
readonly verifyHash: UnwrapRef<typeof import('./core/security/src/hash')['verifyHash']>
|
|
843
1260
|
readonly vi: UnwrapRef<typeof import('vitest')['vi']>
|
|
844
1261
|
readonly vitest: UnwrapRef<typeof import('vitest')['vitest']>
|
|
@@ -858,5 +1275,7 @@ declare module 'vue' {
|
|
|
858
1275
|
readonly whenever: UnwrapRef<typeof import('@vueuse/core')['whenever']>
|
|
859
1276
|
readonly writeJsonFile: UnwrapRef<typeof import('./core/storage/src/index')['writeJsonFile']>
|
|
860
1277
|
readonly writeTextFile: UnwrapRef<typeof import('./core/storage/src/index')['writeTextFile']>
|
|
1278
|
+
readonly xRayPath: UnwrapRef<typeof import('./core/path/src/index')['xRayPath']>
|
|
1279
|
+
readonly z: UnwrapRef<typeof import('./core/validation/src/index')['z']>
|
|
861
1280
|
}
|
|
862
1281
|
}
|