Skip to content

chore(deps): update dependency vue-i18n to v9.14.5 [security]#21

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/npm-vue-i18n-vulnerability
Open

chore(deps): update dependency vue-i18n to v9.14.5 [security]#21
renovate[bot] wants to merge 1 commit intomainfrom
renovate/npm-vue-i18n-vulnerability

Conversation

@renovate
Copy link

@renovate renovate bot commented Dec 2, 2024

This PR contains the following updates:

Package Change Age Confidence
vue-i18n (source) 9.13.19.14.5 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.

GitHub Vulnerability Alerts

CVE-2024-52809

Vulnerability type

XSS

Description

vue-i18n can be passed locale messages to createI18n or useI18n.
we can then translate them using t and $t.
vue-i18n has its own syntax for local messages, and uses a message compiler to generate AST.
In order to maximize the performance of the translation function, vue-i18n uses bundler plugins such as @intlify/unplugin-vue-i18n and bulder to convert the AST in advance when building the application.
By using that AST as the locale message, it is no longer necessary to compile, and it is possible to translate using the AST.

The AST generated by the message compiler has special properties for each node in the AST tree to maximize performance. In the PoC example below, it is a static property, but that is just one of the optimizations.
About details of special properties, see https://github.com/intlify/vue-i18n/blob/master/packages/message-compiler/src/nodes.ts

In general, the locale messages of vue-i18n are optimized during production builds using @intlify/unplugin-vue-i18n,
so there is always a property that is attached during optimization like this time.
But if you are using a locale message AST in development mode or your own, there is a possibility of XSS if a third party injects.

Reproduce (PoC)

<!doctype html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>vue-i18n XSS</title>
    <script src="https://unpkg.com/vue@3"></script>
    <script src="https://unpkg.com/vue-i18n@10"></script>
    <!-- Scripts that perform prototype contamination, such as being distributed from malicious hosting sites or injected through supply chain attacks, etc. -->
    <script>
      /**
       * Prototype pollution vulnerability with `Object.prototype`.
       * The 'static' property is part of the optimized AST generated by the vue-i18n message compiler.
       * About details of special properties, see https://github.com/intlify/vue-i18n/blob/master/packages/message-compiler/src/nodes.ts
       *
       * In general, the locale messages of vue-i18n are optimized during production builds using `@intlify/unplugin-vue-i18n`,
       * so there is always a property that is attached during optimization like this time.
       * But if you are using a locale message AST in development or your own, there is a possibility of XSS if a third party injects prototype pollution code.
       */
      Object.defineProperty(Object.prototype, 'static', {
        configurable: true,
        get() {
          alert('prototype polluted!')
          return 'prototype pollution'
        }
      })
    </script> 
 </head>
  <body>
    <div id="app">
      <p>{{ t('hello') }}</p>
    </div>
    <script>
      const { createApp } = Vue
      const { createI18n, useI18n } = VueI18n

      // AST style locale message, which build by `@intlify/unplugin-vue-i18n`
      const en = {
        hello: {
          type: 0,
          body: {
            items: [
              {
                type: 3,
                value: 'hello world!'
              }
            ]
          }
        }
      }

      const i18n = createI18n({
        legacy: false,
        locale: 'en',
        messages: {
          en
        }
      })

      const app = createApp({
        setup() {
          const { t } = useI18n()
          return { t }
        }
      })
      app.use(i18n)
      app.mount('#app')
    </script>
  </body>
</html>

Workarounds

Before v10.0.0, we can work around this vulnerability by using the regular compilation (jit: false of @intlify/unplugin-vue-i18n plugin configuration) way instead of jit compilation.

References

CVE-2024-52810

Vulnerability type: Prototype Pollution

Affected Package:

Product: @​intlify/shared
Version: 10.0.4

Vulnerability Location(s):

node_modules/@&#8203;intlify/shared/dist/shared.cjs:232:26

Description:

The latest version of @intlify/shared (10.0.4) is vulnerable to Prototype Pollution through the entry function(s) lib.deepCopy. An attacker can supply a payload with Object.prototype setter to introduce or modify properties within the global prototype chain, causing denial of service (DoS) the minimum consequence.

Moreover, the consequences of this vulnerability can escalate to other injection-based attacks, depending on how the library integrates within the application. For instance, if the polluted property propagates to sensitive Node.js APIs (e.g., exec, eval), it could enable an attacker to execute arbitrary commands within the application's context.

PoC:

// install the package with the latest version
~$ npm install @&#8203;intlify/shared@10.0.4
// run the script mentioned below 
~$ node poc.js
//The expected output (if the code still vulnerable) is below. 
// Note that the output may slightly differs from function to another.
Before Attack:  {}
After Attack:  {"pollutedKey":123}
(async () => {
const lib = await import('@&#8203;intlify/shared');
var someObj = {}
console.log("Before Attack: ", JSON.stringify({}.__proto__));
try {
// for multiple functions, uncomment only one for each execution.
lib.deepCopy (JSON.parse('{"__proto__":{"pollutedKey":123}}'), someObj)
} catch (e) { }
console.log("After Attack: ", JSON.stringify({}.__proto__));
delete Object.prototype.pollutedKey;
})();

References

Prototype Pollution Leading to Remote Code Execution - An example of how prototype pollution can lead to command code injection.

OWASP Prototype Pollution Prevention Cheat Sheet - Best practices for preventing prototype pollution.

PortSwigger Guide on Preventing Prototype Pollution - A detailed guide to securing your applications against prototype pollution.

CVE-2025-27597

Vulnerability type:
Prototype Pollution

Vulnerability Location(s):

# v9.1
node_modules/@&#8203;intlify/message-resolver/index.js

# v9.2 or later
node_modules/@&#8203;intlify/vue-i18n-core/index.js

Description:

The latest version of @intlify/message-resolver (9.1) and @intlify/vue-i18n-core (9.2 or later), (previous versions might also affected), is vulnerable to Prototype Pollution through the entry function(s) handleFlatJson. An attacker can supply a payload with Object.prototype setter to introduce or modify properties within the global prototype chain, causing denial of service (DoS) a the minimum consequence.

Moreover, the consequences of this vulnerability can escalate to other injection-based attacks, depending on how the library integrates within the application. For instance, if the polluted property propagates to sensitive Node.js APIs (e.g., exec, eval), it could enable an attacker to execute arbitrary commands within the application's context.

PoC:

// install the package with the latest version
~$ npm install @&#8203;intlify/message-resolver@9.1.10
// run the script mentioned below 
~$ node poc.js
//The expected output (if the code still vulnerable) is below. 
// Note that the output may slightly differs from function to another.
Before Attack:  {}
After Attack:  {"pollutedKey":123}
// poc.js
(async () => {
    const lib = await import('@&#8203;intlify/message-resolver');
    var someObj = {}
    console.log("Before Attack: ", JSON.stringify({}.__proto__));
    try {
        // for multiple functions, uncomment only one for each execution.
        lib.handleFlatJson ({ "__proto__.pollutedKey": "pollutedValue" })
    } catch (e) { }
    console.log("After Attack: ", JSON.stringify({}.__proto__));
    delete Object.prototype.pollutedKey;
})();

CVE-2025-53892

Summary

The escapeParameterHtml: true option in Vue I18n is designed to protect against HTML/script injection by escaping interpolated parameters. However, this setting fails to prevent execution of certain tag-based payloads, such as <img src=x onerror=...>, if the interpolated value is inserted inside an HTML context using v-html.

This may lead to a DOM-based XSS vulnerability, even when using escapeParameterHtml: true, if a translation string includes minor HTML and is rendered via v-html.

Details

When escapeParameterHtml: true is enabled, it correctly escapes common injection points.

However, it does not sanitize entire attribute contexts, which can be used as XSS vectors via:

<img src=x onerror=alert(1)>

PoC

In your Vue I18n configuration:

const i18n = createI18n({
  escapeParameterHtml: true,
  messages: {
    en: {
      vulnerable: 'Caution: <img src=x onerror="{payload}">'
    }
  }
});

Use this interpolated payload:

const payload = '<script>alert("xss")</script>';
Render the translation using v-html (even not using v-html):

<p v-html="$t('vulnerable', { payload })"></p>
Expected: escaped content should render as text, not execute.

Actual: script executes in some environments (or the payload is partially parsed as HTML).

Impact

This creates a DOM-based Cross-Site Scripting (XSS) vulnerability despite enabling a security option (escapeParameterHtml) .


Release Notes

intlify/vue-i18n (vue-i18n)

v9.14.5

Compare Source

What's Changed

🔒 Security Fixes

Full Changelog: intlify/vue-i18n@v9.14.4...v9.14.5

v9.14.4

Compare Source

What's Changed
🐛 Bug Fixes

Full Changelog: intlify/vue-i18n@v9.14.3...v9.14.4

v9.14.3

Compare Source

What's Changed
🔒 Security Fixes

Full Changelog: intlify/vue-i18n@v9.14.2...v9.14.3

v9.14.2

Compare Source

What's Changed

🔒 Security Fixes

Full Changelog: intlify/vue-i18n@v9.14.1...v9.14.2

v9.14.1

Compare Source

What's Changed

🐛 Bug Fixes

Full Changelog: intlify/vue-i18n@v9.14.0...v9.14.1

v9.14.0

Compare Source

What's Changed

⚡ Improvement Features

Full Changelog: intlify/vue-i18n@v9.13.1...v9.14.0


Configuration

📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@sourcery-ai
Copy link

sourcery-ai bot commented Dec 2, 2024

Reviewer's Guide by Sourcery

This PR updates the vue-i18n dependency from version 9.13.1 to 9.14.2 to address two critical security vulnerabilities: an XSS vulnerability (CVE-2024-52809) and a prototype pollution vulnerability (CVE-2024-52810). The update is implemented through dependency version changes in package.json and pnpm-lock.yaml files.

No diagrams generated as the changes look simple and do not need a visual representation.

File-Level Changes

Change Details Files
Update vue-i18n package version to patch security vulnerabilities
  • Bump vue-i18n from 9.13.1 to 9.14.2
  • Update related @intlify dependencies to compatible versions
  • Fix XSS vulnerability with prototype pollution on AST (CVE-2024-52809)
  • Fix prototype pollution vulnerability in deepCopy function (CVE-2024-52810)
frontend/package.json
frontend/pnpm-lock.yaml

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time. You can also use
    this command to specify where the summary should be inserted.

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

@coderabbitai
Copy link

coderabbitai bot commented Dec 2, 2024

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

  • 🔍 Trigger a full review

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have skipped reviewing this pull request. It seems to have been created by a bot (hey, renovate[bot]!). We assume it knows what it's doing!

@codiumai-pr-agent-free
Copy link

codiumai-pr-agent-free bot commented Dec 2, 2024

CI Failure Feedback 🧐

(Checks updated until commit 093c27b)

Action: go-tests

Failed stage: [❌]

Failure summary:

The action failed because it is stuck waiting for a runner to pick up the job. This indicates that
there might be no available runners to execute the job.

Relevant error logs:
1:  Job defined at: khulnasoft/devsecdb/.github/workflows/test_link.yml@refs/pull/21/merge
2:  Waiting for a runner to pick up this job...

✨ CI feedback usage guide:

The CI feedback tool (/checks) automatically triggers when a PR has a failed check.
The tool analyzes the failed checks and provides several feedbacks:

  • Failed stage
  • Failed test name
  • Failure summary
  • Relevant error logs

In addition to being automatically triggered, the tool can also be invoked manually by commenting on a PR:

/checks "https://github.com/{repo_name}/actions/runs/{run_number}/job/{job_number}"

where {repo_name} is the name of the repository, {run_number} is the run number of the failed check, and {job_number} is the job number of the failed check.

Configuration options

  • enable_auto_checks_feedback - if set to true, the tool will automatically provide feedback when a check is failed. Default is true.
  • excluded_checks_list - a list of checks to exclude from the feedback, for example: ["check1", "check2"]. Default is an empty list.
  • enable_help_text - if set to true, the tool will provide a help message with the feedback. Default is true.
  • persistent_comment - if set to true, the tool will overwrite a previous checks comment with the new feedback. Default is true.
  • final_update_message - if persistent_comment is true and updating a previous checks message, the tool will also create a new message: "Persistent checks updated to latest commit". Default is true.

See more information about the checks tool in the docs.

@renovate renovate bot changed the title chore(deps): update dependency vue-i18n to v9.14.2 [security] chore(deps): update dependency vue-i18n to v9.14.3 [security] Mar 8, 2025
@renovate renovate bot force-pushed the renovate/npm-vue-i18n-vulnerability branch from 093c27b to 9ae15af Compare March 8, 2025 04:15
@codiumai-pr-agent-free
Copy link

CI Feedback 🧐

A test triggered by this PR failed. Here is an AI-generated analysis of the failure:

Action: static-checks

Failed stage: Run pnpm type-check [❌]

Failed test name: pnpm type-check

Failure summary:

The type-check action failed because of TypeScript errors in Vue components. The primary issue is
that the property $t does not exist on component instances. This suggests that the
internationalization (i18n) functionality is not properly set up or imported in these components.

The error appears in multiple Vue files across the project, with the same pattern: "Property '$t'
does not exist on type..." indicating a systematic issue with how translation functions are being
accessed in the components.

In a few cases, there are also errors for missing $route and $router properties, which are related
to Vue Router integration.

Relevant error logs:
1:  ##[group]Operating System
2:  Ubuntu
...

216:  + lucide-vue-next 0.462.0
217:  + markdown-it 14.1.0
218:  + match-sorter 6.3.4
219:  + monaco-editor 0.45.0
220:  + monaco-editor-workers 0.45.0
221:  + monaco-languageclient 7.3.0
222:  + naive-ui 2.40.1
223:  + nice-grpc-common 2.0.2
224:  + nice-grpc-error-details 0.2.7
...

340:  ##[group]Run pnpm type-check
341:  �[36;1mpnpm type-check�[0m
342:  shell: /usr/bin/bash -e {0}
343:  env:
344:  PNPM_HOME: /home/runner/setup-pnpm/node_modules/.bin
345:  ##[endgroup]
346:  > devsecdb@ type-check /home/runner/work/devsecdb/devsecdb/frontend
347:  > export NODE_OPTIONS=--max_old_space_size=8000 && vue-tsc --build --force
348:  ##[error]src/components/PasswordSigninForm.vue(8,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ showForgotPassword?: boolean | undefined; }, {}>, { EyeIcon: typeof EyeIcon; EyeOffIcon: typeof EyeOffIcon; NButton: typeof NButton; BBTextField: typeof BBTextField; route: typeof route; state: typeof state; allowSignin: typeof allowSignin; trySignin: typeof ...'.
349:  ##[error]src/components/PasswordSigninForm.vue(31,14): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ showForgotPassword?: boolean | undefined; }, {}>, { EyeIcon: typeof EyeIcon; EyeOffIcon: typeof EyeOffIcon; NButton: typeof NButton; BBTextField: typeof BBTextField; route: typeof route; state: typeof state; allowSignin: typeof allowSignin; trySignin: typeof ...'.
350:  ##[error]src/components/PasswordSigninForm.vue(45,14): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ showForgotPassword?: boolean | undefined; }, {}>, { EyeIcon: typeof EyeIcon; EyeOffIcon: typeof EyeOffIcon; NButton: typeof NButton; BBTextField: typeof BBTextField; route: typeof route; state: typeof state; allowSignin: typeof allowSignin; trySignin: typeof ...'.
351:  ##[error]src/components/PasswordSigninForm.vue(80,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ showForgotPassword?: boolean | undefined; }, {}>, { EyeIcon: typeof EyeIcon; EyeOffIcon: typeof EyeOffIcon; NButton: typeof NButton; BBTextField: typeof BBTextField; route: typeof route; state: typeof state; allowSignin: typeof allowSignin; trySignin: typeof ...'.
352:  ##[error]src/views/auth/Signin.vue(29,25): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{}, {}>, { EyeIcon: typeof EyeIcon; EyeOffIcon: typeof EyeOffIcon; NButton: typeof NButton; NCard: typeof NCard; NTabPane: typeof NTabPane; ... 18 more ...; trySigninWithIdentityProvider: typeof trySigninWithIdentityProvider; }, ... 23 more ..., {}>'.
353:  ##[error]src/views/auth/Signin.vue(38,26): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{}, {}>, { EyeIcon: typeof EyeIcon; EyeOffIcon: typeof EyeOffIcon; NButton: typeof NButton; NCard: typeof NCard; NTabPane: typeof NTabPane; ... 18 more ...; trySigninWithIdentityProvider: typeof trySigninWithIdentityProvider; }, ... 23 more ..., {}>'.
354:  ##[error]src/views/auth/Signin.vue(41,63): error TS2339: Property '$route' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{}, {}>, { EyeIcon: typeof EyeIcon; EyeOffIcon: typeof EyeOffIcon; NButton: typeof NButton; NCard: typeof NCard; NTabPane: typeof NTabPane; ... 18 more ...; trySigninWithIdentityProvider: typeof trySigninWithIdentityProvider; }, ... 23 more ..., {}>'.
355:  ##[error]src/views/auth/Signin.vue(44,26): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{}, {}>, { EyeIcon: typeof EyeIcon; EyeOffIcon: typeof EyeOffIcon; NButton: typeof NButton; NCard: typeof NCard; NTabPane: typeof NTabPane; ... 18 more ...; trySigninWithIdentityProvider: typeof trySigninWithIdentityProvider; }, ... 23 more ..., {}>'.
356:  ##[error]src/views/auth/Signin.vue(69,26): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{}, {}>, { EyeIcon: typeof EyeIcon; EyeOffIcon: typeof EyeOffIcon; NButton: typeof NButton; NCard: typeof NCard; NTabPane: typeof NTabPane; ... 18 more ...; trySigninWithIdentityProvider: typeof trySigninWithIdentityProvider; }, ... 23 more ..., {}>'.
357:  ##[error]src/views/auth/Signin.vue(88,28): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{}, {}>, { EyeIcon: typeof EyeIcon; EyeOffIcon: typeof EyeOffIcon; NButton: typeof NButton; NCard: typeof NCard; NTabPane: typeof NTabPane; ... 18 more ...; trySigninWithIdentityProvider: typeof trySigninWithIdentityProvider; }, ... 23 more ..., {}>'.
358:  ##[error]src/views/auth/Signin.vue(124,26): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{}, {}>, { EyeIcon: typeof EyeIcon; EyeOffIcon: typeof EyeOffIcon; NButton: typeof NButton; NCard: typeof NCard; NTabPane: typeof NTabPane; ... 18 more ...; trySigninWithIdentityProvider: typeof trySigninWithIdentityProvider; }, ... 23 more ..., {}>'.
359:  ##[error]src/views/auth/Signin.vue(141,15): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{}, {}>, { EyeIcon: typeof EyeIcon; EyeOffIcon: typeof EyeOffIcon; NButton: typeof NButton; NCard: typeof NCard; NTabPane: typeof NTabPane; ... 18 more ...; trySigninWithIdentityProvider: typeof trySigninWithIdentityProvider; }, ... 23 more ..., {}>'.
360:  ##[error]src/views/auth/Signin.vue(156,17): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{}, {}>, { EyeIcon: typeof EyeIcon; EyeOffIcon: typeof EyeOffIcon; NButton: typeof NButton; NCard: typeof NCard; NTabPane: typeof NTabPane; ... 18 more ...; trySigninWithIdentityProvider: typeof trySigninWithIdentityProvider; }, ... 23 more ..., {}>'.
361:  ##[error]src/views/auth/SigninAdmin.vue(8,14): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{}, {}>, { NCard: typeof NCard; DevsecdbLogo: typeof DevsecdbLogo; PasswordSigninForm: typeof PasswordSigninForm; AuthFooter: typeof AuthFooter; }, ... 23 more ..., {}>'.
362:  ##[error]src/components/User/Settings/UserPassword.vue(3,18): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ password: string; passwordConfirm: string; passwordRestriction: PasswordRestrictionSetting; showLearnMore?: boolean | undefined; }, TypeEmitsToOptions<{ (event: "update:password", password: string): void; (event: "update:passwordConfirm", passwordConfirm: str...'.
363:  ##[error]src/components/User/Settings/UserPassword.vue(6,14): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ password: string; passwordConfirm: string; passwordRestriction: PasswordRestrictionSetting; showLearnMore?: boolean | undefined; }, TypeEmitsToOptions<{ (event: "update:password", password: string): void; (event: "update:passwordConfirm", passwordConfirm: str...'.
364:  ##[error]src/components/User/Settings/UserPassword.vue(14,14): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ password: string; passwordConfirm: string; passwordRestriction: PasswordRestrictionSetting; showLearnMore?: boolean | undefined; }, TypeEmitsToOptions<{ (event: "update:password", password: string): void; (event: "update:passwordConfirm", passwordConfirm: str...'.
365:  ##[error]src/components/User/Settings/UserPassword.vue(36,27): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ password: string; passwordConfirm: string; passwordRestriction: PasswordRestrictionSetting; showLearnMore?: boolean | undefined; }, TypeEmitsToOptions<{ (event: "update:password", password: string): void; (event: "update:passwordConfirm", passwordConfirm: str...'.
366:  ##[error]src/components/User/Settings/UserPassword.vue(53,18): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ password: string; passwordConfirm: string; passwordRestriction: PasswordRestrictionSetting; showLearnMore?: boolean | undefined; }, TypeEmitsToOptions<{ (event: "update:password", password: string): void; (event: "update:passwordConfirm", passwordConfirm: str...'.
367:  ##[error]src/components/User/Settings/UserPassword.vue(58,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ password: string; passwordConfirm: string; passwordRestriction: PasswordRestrictionSetting; showLearnMore?: boolean | undefined; }, TypeEmitsToOptions<{ (event: "update:password", password: string): void; (event: "update:passwordConfirm", passwordConfirm: str...'.
368:  ##[error]src/components/User/Settings/UserPassword.vue(67,27): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ password: string; passwordConfirm: string; passwordRestriction: PasswordRestrictionSetting; showLearnMore?: boolean | undefined; }, TypeEmitsToOptions<{ (event: "update:password", password: string): void; (event: "update:passwordConfirm", passwordConfirm: str...'.
369:  ##[error]src/components/User/Settings/UserPassword.vue(83,14): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ password: string; passwordConfirm: string; passwordRestriction: PasswordRestrictionSetting; showLearnMore?: boolean | undefined; }, TypeEmitsToOptions<{ (event: "update:password", password: string): void; (event: "update:passwordConfirm", passwordConfirm: str...'.
370:  ##[error]src/views/BannerDemo.vue(13,18): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{}, {}>, { NButton: typeof NButton; show: typeof show; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ... 18 more ..., {}>'.
371:  ##[error]src/views/BannerDemo.vue(25,16): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{}, {}>, { NButton: typeof NButton; show: typeof show; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ... 18 more ..., {}>'.
372:  ##[error]src/views/BannerDemo.vue(33,16): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{}, {}>, { NButton: typeof NButton; show: typeof show; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ... 18 more ..., {}>'.
373:  ##[error]src/views/BannerDemo.vue(40,38): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{}, {}>, { NButton: typeof NButton; show: typeof show; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ... 18 more ..., {}>'.
374:  ##[error]src/components/misc/NoPermissionPlaceholder.vue(6,29): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{}, {}>, { NoDataPlaceholder: typeof NoDataPlaceholder; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ... 18 more ..., {}>'.
375:  ##[error]src/components/ArchiveBanner.vue(5,8): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{}, {}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, ... 16 more ..., {}>'.
376:  ##[error]src/components/ExpirationSelector.vue(17,35): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ timestampInMs?: number | undefined; }, TypeEmitsToOptions<(event: "update:timestampInMs", timestampInMS: number | undefined) => void>>, ... 24 more ..., {}>'.
377:  ##[error]src/components/ExpirationSelector.vue(31,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ timestampInMs?: number | undefined; }, TypeEmitsToOptions<(event: "update:timestampInMs", timestampInMS: number | undefined) => void>>, ... 24 more ..., {}>'.
378:  ##[error]src/components/ExpirationSelector.vue(32,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ timestampInMs?: number | undefined; }, TypeEmitsToOptions<(event: "update:timestampInMs", timestampInMS: number | undefined) => void>>, ... 24 more ..., {}>'.
379:  ##[error]src/components/v2/Select/AnnouncementLevelSelect.vue(17,9): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ level?: Announcement_AlertLevel | undefined; allowEdit: boolean; }, TypeEmitsToOptions<(event: "update:level", level: Announcement_AlertLevel) => void>>, ... 24 more ..., {}>'.
380:  ##[error]src/components/InstanceAssignment.vue(4,15): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ show: boolean; selectedInstanceList?: string[] | undefined; }, { dismiss: (...args: any[]) => void; }>, { NButton: typeof NButton; NCheckbox: typeof NCheckbox; ... 23 more ...; updateAssignment: typeof updateAssignment; }, ... 23 more ..., { ...; }>'.
381:  ##[error]src/components/InstanceAssignment.vue(12,17): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ show: boolean; selectedInstanceList?: string[] | undefined; }, { dismiss: (...args: any[]) => void; }>, { NButton: typeof NButton; NCheckbox: typeof NCheckbox; ... 23 more ...; updateAssignment: typeof updateAssignment; }, ... 23 more ..., { ...; }>'.
382:  ##[error]src/components/InstanceAssignment.vue(107,18): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ show: boolean; selectedInstanceList?: string[] | undefined; }, { dismiss: (...args: any[]) => void; }>, { NButton: typeof NButton; NCheckbox: typeof NCheckbox; ... 23 more ...; updateAssignment: typeof updateAssignment; }, ... 23 more ..., { ...; }>'.
383:  ##[error]src/components/InstanceAssignment.vue(119,18): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ show: boolean; selectedInstanceList?: string[] | undefined; }, { dismiss: (...args: any[]) => void; }>, { NButton: typeof NButton; NCheckbox: typeof NCheckbox; ... 23 more ...; updateAssignment: typeof updateAssignment; }, ... 23 more ..., { ...; }>'.
384:  ##[error]src/components/FeatureGuard/FeatureAttention.vue(6,13): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<ExtractPropTypes<{ feature: { required: true; type: PropType<FeatureType>; }; description: { require: boolean; default: string; type: StringConstructor; }; customClass: { require: boolean; default: string; type: StringConstructor; }; instance: { ...; }; }>, {}>...'.
385:  ##[error]src/components/FeatureGuard/FeatureAttention.vue(13,13): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<ExtractPropTypes<{ feature: { required: true; type: PropType<FeatureType>; }; description: { require: boolean; default: string; type: StringConstructor; }; customClass: { require: boolean; default: string; type: StringConstructor; }; instance: { ...; }; }>, {}>...'.
386:  ##[error]src/components/FeatureGuard/FeatureAttentionForInstanceLicense.vue(10,13): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ type?: "info" | "warning" | undefined; feature: FeatureType; customClass?: string | undefined; }, {}>, { BBAttention: typeof BBAttention; ... 8 more ...; existInstanceWithoutLicense: typeof existInstanceWithoutLicense; }, ... 23 more ..., {}>'.
387:  ##[error]src/components/FeatureGuard/FeatureAttentionForInstanceLicense.vue(12,7): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ type?: "info" | "warning" | undefined; feature: FeatureType; customClass?: string | undefined; }, {}>, { BBAttention: typeof BBAttention; ... 8 more ...; existInstanceWithoutLicense: typeof existInstanceWithoutLicense; }, ... 23 more ..., {}>'.
388:  ##[error]src/components/FeatureGuard/FeatureAttentionForInstanceLicense.vue(16,11): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ type?: "info" | "warning" | undefined; feature: FeatureType; customClass?: string | undefined; }, {}>, { BBAttention: typeof BBAttention; ... 8 more ...; existInstanceWithoutLicense: typeof existInstanceWithoutLicense; }, ... 23 more ..., {}>'.
389:  ##[error]src/components/FeatureGuard/FeatureBadge.vue(20,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<ExtractPropTypes<{ feature: { required: true; type: PropType<FeatureType>; }; instance: { type: PropType<Instance | InstanceResource>; default: undefined; }; customClass: { require: boolean; default: string; type: StringConstructor; }; clickable: { ...; }; }>, ...'.
390:  ##[error]src/components/FeatureGuard/FeatureBadge.vue(29,38): error TS2339: Property '$router' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<ExtractPropTypes<{ feature: { required: true; type: PropType<FeatureType>; }; instance: { type: PropType<Instance | InstanceResource>; default: undefined; }; customClass: { require: boolean; default: string; type: StringConstructor; }; clickable: { ...; }; }>, ...'.
391:  ##[error]src/components/FeatureGuard/FeatureBadge.vue(40,11): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<ExtractPropTypes<{ feature: { required: true; type: PropType<FeatureType>; }; instance: { type: PropType<Instance | InstanceResource>; default: undefined; }; customClass: { require: boolean; default: string; type: StringConstructor; }; clickable: { ...; }; }>, ...'.
392:  ##[error]src/components/FeatureGuard/FeatureBadge.vue(41,27): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<ExtractPropTypes<{ feature: { required: true; type: PropType<FeatureType>; }; instance: { type: PropType<Instance | InstanceResource>; default: undefined; }; customClass: { require: boolean; default: string; type: StringConstructor; }; clickable: { ...; }; }>, ...'.
393:  ##[error]src/components/FeatureGuard/FeatureBadgeForInstanceLicense.vue(25,11): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ show?: boolean | undefined; feature: FeatureType; instance?: Instance | InstanceResource | undefined; customClass?: string | undefined; tooltip?: string | undefined; }, {}>, ... 24 more ..., { ...; }>'.
394:  ##[error]src/components/FeatureGuard/FeatureBadgeForInstanceLicense.vue(26,22): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ show?: boolean | undefined; feature: FeatureType; instance?: Instance | InstanceResource | undefined; customClass?: string | undefined; tooltip?: string | undefined; }, {}>, ... 24 more ..., { ...; }>'.
395:  ##[error]src/components/FeatureGuard/FeatureModal.vue(16,14): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<ExtractPropTypes<{ open: { required: true; type: BooleanConstructor; }; feature: { required: true; type: PropType<FeatureType>; default: string; }; instance: { type: PropType<Instance | InstanceResource>; default: undefined; }; }>, { ...; }>, ... 24 more ..., {...'.
396:  ##[error]src/components/FeatureGuard/FeatureModal.vue(21,14): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<ExtractPropTypes<{ open: { required: true; type: BooleanConstructor; }; feature: { required: true; type: PropType<FeatureType>; default: string; }; instance: { type: PropType<Instance | InstanceResource>; default: undefined; }; }>, { ...; }>, ... 24 more ..., {...'.
397:  ##[error]src/components/FeatureGuard/FeatureModal.vue(38,21): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<ExtractPropTypes<{ open: { required: true; type: BooleanConstructor; }; feature: { required: true; type: PropType<FeatureType>; default: string; }; instance: { type: PropType<Instance | InstanceResource>; default: undefined; }; }>, { ...; }>, ... 24 more ..., {...'.
398:  ##[error]src/components/FeatureGuard/FeatureModal.vue(47,20): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<ExtractPropTypes<{ open: { required: true; type: BooleanConstructor; }; feature: { required: true; type: PropType<FeatureType>; default: string; }; instance: { type: PropType<Instance | InstanceResource>; default: undefined; }; }>, { ...; }>, ... 24 more ..., {...'.
399:  ##[error]src/components/FeatureGuard/FeatureModal.vue(51,19): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<ExtractPropTypes<{ open: { required: true; type: BooleanConstructor; }; feature: { required: true; type: PropType<FeatureType>; default: string; }; instance: { type: PropType<Instance | InstanceResource>; default: undefined; }; }>, { ...; }>, ... 24 more ..., {...'.
400:  ##[error]src/components/FeatureGuard/FeatureModal.vue(70,19): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<ExtractPropTypes<{ open: { required: true; type: BooleanConstructor; }; feature: { required: true; type: PropType<FeatureType>; default: string; }; instance: { type: PropType<Instance | InstanceResource>; default: undefined; }; }>, { ...; }>, ... 24 more ..., {...'.
401:  ##[error]src/components/FeatureGuard/FeatureModal.vue(85,14): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<ExtractPropTypes<{ open: { required: true; type: BooleanConstructor; }; feature: { required: true; type: PropType<FeatureType>; default: string; }; instance: { type: PropType<Instance | InstanceResource>; default: undefined; }; }>, { ...; }>, ... 24 more ..., {...'.
402:  ##[error]src/components/FeatureGuard/FeatureModal.vue(90,15): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<ExtractPropTypes<{ open: { required: true; type: BooleanConstructor; }; feature: { required: true; type: PropType<FeatureType>; default: string; }; instance: { type: PropType<Instance | InstanceResource>; default: undefined; }; }>, { ...; }>, ... 24 more ..., {...'.
403:  ##[error]src/components/FeatureGuard/FeatureModal.vue(99,17): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<ExtractPropTypes<{ open: { required: true; type: BooleanConstructor; }; feature: { required: true; type: PropType<FeatureType>; default: string; }; instance: { type: PropType<Instance | InstanceResource>; default: undefined; }; }>, { ...; }>, ... 24 more ..., {...'.
404:  ##[error]src/components/FeatureGuard/FeatureModal.vue(100,17): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<ExtractPropTypes<{ open: { required: true; type: BooleanConstructor; }; feature: { required: true; type: PropType<FeatureType>; default: string; }; instance: { type: PropType<Instance | InstanceResource>; default: undefined; }; }>, { ...; }>, ... 24 more ..., {...'.
405:  ##[error]src/components/FeatureGuard/FeatureModal.vue(108,13): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<ExtractPropTypes<{ open: { required: true; type: BooleanConstructor; }; feature: { required: true; type: PropType<FeatureType>; default: string; }; instance: { type: PropType<Instance | InstanceResource>; default: undefined; }; }>, { ...; }>, ... 24 more ..., {...'.
406:  ##[error]src/components/v2/Form/ResourceIdField.vue(5,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ value?: string | undefined; resourceType: ResourceType; resourceTitle?: string | undefined; suffix?: boolean | undefined; readonly?: boolean | undefined; inputProps?: Partial<...> | undefined; editingClass?: string | undefined; validate?: ((resourceId: string...'.
407:  ##[error]src/components/v2/Form/ResourceIdField.vue(10,14): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ value?: string | undefined; resourceType: ResourceType; resourceTitle?: string | undefined; suffix?: boolean | undefined; readonly?: boolean | undefined; inputProps?: Partial<...> | undefined; editingClass?: string | undefined; validate?: ((resourceId: string...'.
408:  ##[error]src/components/v2/Form/ResourceIdField.vue(15,16): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ value?: string | undefined; resourceType: ResourceType; resourceTitle?: string | undefined; suffix?: boolean | undefined; readonly?: boolean | undefined; inputProps?: Partial<...> | undefined; editingClass?: string | undefined; validate?: ((resourceId: string...'.
409:  ##[error]src/components/v2/Form/ResourceIdField.vue(22,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ value?: string | undefined; resourceType: ResourceType; resourceTitle?: string | undefined; suffix?: boolean | undefined; readonly?: boolean | undefined; inputProps?: Partial<...> | undefined; editingClass?: string | undefined; validate?: ((resourceId: string...'.
410:  ##[error]src/components/v2/Form/ResourceIdField.vue(26,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ value?: string | undefined; resourceType: ResourceType; resourceTitle?: string | undefined; suffix?: boolean | undefined; readonly?: boolean | undefined; inputProps?: Partial<...> | undefined; editingClass?: string | undefined; validate?: ((resourceId: string...'.
411:  ##[error]src/components/v2/Form/StepTab.vue(41,14): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ currentIndex: number; showCancel?: boolean | undefined; allowNext?: boolean | undefined; showFooter?: boolean | undefined; sticky?: boolean | undefined; finishTitle?: string | undefined; ... 6 more ...; finishButtonProps?: ButtonProps | undefined; }, TypeEmit...'.
412:  ##[error]src/components/v2/Form/StepTab.vue(54,21): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ currentIndex: number; showCancel?: boolean | undefined; allowNext?: boolean | undefined; showFooter?: boolean | undefined; sticky?: boolean | undefined; finishTitle?: string | undefined; ... 6 more ...; finishButtonProps?: ButtonProps | undefined; }, TypeEmit...'.
413:  ##[error]src/components/v2/Form/StepTab.vue(63,14): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ currentIndex: number; showCancel?: boolean | undefined; allowNext?: boolean | undefined; showFooter?: boolean | undefined; sticky?: boolean | undefined; finishTitle?: string | undefined; ... 6 more ...; finishButtonProps?: ButtonProps | undefined; }, TypeEmit...'.
414:  ##[error]src/components/v2/Form/StepTab.vue(72,14): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ currentIndex: number; showCancel?: boolean | undefined; allowNext?: boolean | undefined; showFooter?: boolean | undefined; sticky?: boolean | undefined; finishTitle?: string | undefined; ... 6 more ...; finishButtonProps?: ButtonProps | undefined; }, TypeEmit...'.
415:  ##[error]src/components/v2/Form/Switch.vue(13,40): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ text?: boolean | undefined; }, {}>, { NSwitch: typeof NSwitch; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ... 18 more ..., {}>'.
416:  ##[error]src/components/v2/Form/Switch.vue(16,40): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ text?: boolean | undefined; }, {}>, { NSwitch: typeof NSwitch; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ... 18 more ..., {}>'.
417:  ##[error]src/components/v2/Model/ProductionEnvironmentV1Icon.vue(11,14): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ environment: Environment; tier?: EnvironmentTier | undefined; tooltip?: boolean | undefined; }, {}>, { NTooltip: typeof NTooltip; enabled: typeof enabled; }, ... 23 more ..., { ...; }>'.
418:  ##[error]src/components/Instance/InstanceSyncButton.vue(22,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ type?: "default" | "primary" | undefined; size?: "small" | "medium" | undefined; disabled?: boolean | undefined; quaternary?: boolean | undefined; }, TypeEmitsToOptions<(name: "sync-schema", enableFullSync: boolean) => void>>, ... 24 more ..., { ...; }>'.
419:  ##[error]src/components/Instance/InstanceSyncButton.vue(25,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ type?: "default" | "primary" | undefined; size?: "small" | "medium" | undefined; disabled?: boolean | undefined; quaternary?: boolean | undefined; }, TypeEmitsToOptions<(name: "sync-schema", enableFullSync: boolean) => void>>, ... 24 more ..., { ...; }>'.
420:  ##[error]src/components/v2/Model/Instance/InstanceV1Table/InstanceOperations.vue(7,7): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ instanceList: ComposedInstance[]; }, {}>, { NButton: typeof NButton; InstanceAssignment: typeof InstanceAssignment; state: typeof state; actions: typeof actions; }, ... 23 more ..., {}>'.
421:  ##[error]src/components/v2/Model/DatabaseV1Table/cells/ProjectNameCell.vue(19,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ project: Project; mode?: Mode | undefined; link?: boolean | undefined; keyword?: string | undefined; suffix?: string | undefined; }, {}>, ... 24 more ..., { ...; }>'.
422:  ##[error]src/components/v2/Model/DatabaseV1Table/cells/ProjectNameCell.vue(22,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ project: Project; mode?: Mode | undefined; link?: boolean | undefined; keyword?: string | undefined; suffix?: string | undefined; }, {}>, ... 24 more ..., { ...; }>'.
423:  ##[error]src/components/v2/Model/DatabaseV1Table/cells/ProjectNameCell.vue(31,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ project: Project; mode?: Mode | undefined; link?: boolean | undefined; keyword?: string | undefined; suffix?: string | undefined; }, {}>, ... 24 more ..., { ...; }>'.
424:  ##[error]src/components/v2/Model/DatabaseV1Table/DatabaseLabelFilter.vue(6,19): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ selected: KV[]; databaseList: ComposedDatabase[]; placement?: "bottom-start" | "left-start" | undefined; }, TypeEmitsToOptions<(event: "update:selected", selected: KV[]) => void>>, ... 24 more ..., { ...; }>'.
425:  ##[error]src/components/SchemaEditorLite/Modals/ActionConfirmModal.vue(13,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<ExtractPropTypes<{ show: { type: BooleanConstructor; default: boolean; }; title: { type: StringConstructor; default: string; }; description: { type: StringConstructor; default: string; }; negativeButtonProps: { ...; }; positiveButtonProps: { ...; }; }>, TypeEmi...'.
426:  ##[error]src/components/SchemaEditorLite/Modals/ActionConfirmModal.vue(16,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<ExtractPropTypes<{ show: { type: BooleanConstructor; default: boolean; }; title: { type: StringConstructor; default: string; }; description: { type: StringConstructor; default: string; }; negativeButtonProps: { ...; }; positiveButtonProps: { ...; }; }>, TypeEmi...'.
427:  ##[error]src/components/SchemaEditorLite/Modals/ColumnDefaultValueExpressionModal.vue(3,13): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ expression?: string | undefined; }, TypeEmitsToOptions<{ (event: "close"): void; (event: "update:expression", value: string): void; }>>, ... 24 more ..., {}>'.
428:  ##[error]src/components/SchemaEditorLite/Modals/ColumnDefaultValueExpressionModal.vue(17,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ expression?: string | undefined; }, TypeEmitsToOptions<{ (event: "close"): void; (event: "update:expression", value: string): void; }>>, ... 24 more ..., {}>'.
429:  ##[error]src/components/SchemaEditorLite/Modals/ColumnDefaultValueExpressionModal.vue(20,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ expression?: string | undefined; }, TypeEmitsToOptions<{ (event: "close"): void; (event: "update:expression", value: string): void; }>>, ... 24 more ..., {}>'.
430:  ##[error]src/components/SchemaTemplate/ClassificationTree.vue(6,21): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ classificationConfig: DataClassificationSetting_DataClassificationConfig; }, TypeEmitsToOptions<(event: "apply", classificationId: string) => void>>, ... 24 more ..., {}>'.
431:  ##[error]src/components/SchemaTemplate/SelectClassificationDrawer.vue(3,28): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ show: boolean; classificationConfig: DataClassificationSetting_DataClassificationConfig; }, TypeEmitsToOptions<{ (event: "dismiss"): void; (event: "apply", classificationId: string): void; }>>, ... 24 more ..., {}>'.
432:  ##[error]src/components/SchemaTemplate/SelectClassificationDrawer.vue(15,18): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ show: boolean; classificationConfig: DataClassificationSetting_DataClassificationConfig; }, TypeEmitsToOptions<{ (event: "dismiss"): void; (event: "apply", classificationId: string): void; }>>, ... 24 more ..., {}>'.
433:  ##[error]src/components/Label/LabelEditorRow.vue(11,23): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ kv: Label; index: number; readonly: boolean; errors: { key: string[]; value: string[]; }; }, TypeEmitsToOptions<{ (event: "update-key", key: string): void; (event: "update-value", value: string): void; (event: "remove"): void; }>>, ... 24 more ..., {}>'.
434:  ##[error]src/components/Label/LabelEditorRow.vue(22,16): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ kv: Label; index: number; readonly: boolean; errors: { key: string[]; value: string[]; }; }, TypeEmitsToOptions<{ (event: "update-key", key: string): void; (event: "update-value", value: string): void; (event: "remove"): void; }>>, ... 24 more ..., {}>'.
435:  ##[error]src/components/Label/LabelEditorRow.vue(28,25): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ kv: Label; index: number; readonly: boolean; errors: { key: string[]; value: string[]; }; }, TypeEmitsToOptions<{ (event: "update-key", key: string): void; (event: "update-value", value: string): void; (event: "remove"): void; }>>, ... 24 more ..., {}>'.
436:  ##[error]src/components/Label/LabelListEditor.vue(25,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ kvList: Label[]; readonly: boolean; showErrors: boolean; }, TypeEmitsToOptions<(event: "update:kvList", kvList: Label[]) => void>>, ... 24 more ..., {}>'.
437:  ##[error]src/components/LabelEditorDrawer.vue(5,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ show: boolean; readonly: boolean; title: string; labels: { [key: string]: string; }[]; }, TypeEmitsToOptions<{ (event: "dismiss"): void; (event: "apply", labels: { [key: string]: string; }[]): void; }>>, ... 24 more ..., {}>'.
438:  ##[error]src/components/LabelEditorDrawer.vue(17,18): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ show: boolean; readonly: boolean; title: string; labels: { [key: string]: string; }[]; }, TypeEmitsToOptions<{ (event: "dismiss"): void; (event: "apply", labels: { [key: string]: string; }[]): void; }>>, ... 24 more ..., {}>'.
439:  ##[error]src/components/LabelEditorDrawer.vue(25,18): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ show: boolean; readonly: boolean; title: string; labels: { [key: string]: string; }[]; }, TypeEmitsToOptions<{ (event: "dismiss"): void; (event: "apply", labels: { [key: string]: string; }[]): void; }>>, ... 24 more ..., {}>'.
440:  ##[error]src/bbkit/BBGrid/BBGrid.vue(67,30): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ columnList?: BBGridColumn[] | undefined; dataSource?: any[] | undefined; rowKey?: string | ((item: any, row: number) => any) | undefined; showHeader?: boolean | undefined; ... 7 more ...; expandedRowClass?: VueClass | undefined; }, TypeEmitsToOptions<...>>, ....'.
441:  ##[error]src/components/SensitiveData/components/SemanticTypesTable.vue(20,13): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ readonly: boolean; semanticItemList: SemanticItem[]; rowClickable: boolean; }, TypeEmitsToOptions<{ (event: "select", id: string): void; (event: "remove", index: number): void; (event: "cancel", index: number): void; (event: "confirm", index: number): void; }...'.
442:  ##[error]src/components/SensitiveData/components/SemanticTypesTable.vue(37,13): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ readonly: boolean; semanticItemList: SemanticItem[]; rowClickable: boolean; }, TypeEmitsToOptions<{ (event: "select", id: string): void; (event: "remove", index: number): void; (event: "cancel", index: number): void; (event: "confirm", index: number): void; }...'.
443:  ##[error]src/components/SensitiveData/components/SemanticTypesTable.vue(49,13): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ readonly: boolean; semanticItemList: SemanticItem[]; rowClickable: boolean; }, TypeEmitsToOptions<{ (event: "select", id: string): void; (event: "remove", index: number): void; (event: "cancel", index: number): void; (event: "confirm", index: number): void; }...'.
444:  ##[error]src/components/SensitiveData/components/SemanticTypesTable.vue(57,25): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ readonly: boolean; semanticItemList: SemanticItem[]; rowClickable: boolean; }, TypeEmitsToOptions<{ (event: "select", id: string): void; (event: "remove", index: number): void; (event: "cancel", index: number): void; (event: "confirm", index: number): void; }...'.
445:  ##[error]src/components/SensitiveData/components/SemanticTypesTable.vue(60,22): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ readonly: boolean; semanticItemList: SemanticItem[]; rowClickable: boolean; }, TypeEmitsToOptions<{ (event: "select", id: string): void; (event: "remove", index: number): void; (event: "cancel", index: number): void; (event: "confirm", index: number): void; }...'.
446:  ##[error]src/components/SensitiveData/components/SemanticTypesTable.vue(76,13): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ readonly: boolean; semanticItemList: SemanticItem[]; rowClickable: boolean; }, TypeEmitsToOptions<{ (event: "select", id: string): void; (event: "remove", index: number): void; (event: "cancel", index: number): void; (event: "confirm", index: number): void; }...'.
447:  ##[error]src/components/SensitiveData/components/SemanticTypesTable.vue(84,25): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ readonly: boolean; semanticItemList: SemanticItem[]; rowClickable: boolean; }, TypeEmitsToOptions<{ (event: "select", id: string): void; (event: "remove", index: number): void; (event: "cancel", index: number): void; (event: "confirm", index: number): void; }...'.
448:  ##[error]src/components/SensitiveData/components/SemanticTypesTable.vue(87,22): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ readonly: boolean; semanticItemList: SemanticItem[]; rowClickable: boolean; }, TypeEmitsToOptions<{ (event: "select", id: string): void; (event: "remove", index: number): void; (event: "cancel", index: number): void; (event: "confirm", index: number): void; }...'.
449:  ##[error]src/components/SensitiveData/components/SemanticTypesTable.vue(110,16): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ readonly: boolean; semanticItemList: SemanticItem[]; rowClickable: boolean; }, TypeEmitsToOptions<{ (event: "select", id: string): void; (event: "remove", index: number): void; (event: "cancel", index: number): void; (event: "confirm", index: number): void; }...'.
450:  ##[error]src/components/SensitiveData/components/SemanticTypesDrawer.vue(3,28): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ show: boolean; semanticTypeList: SemanticTypeSetting_SemanticType[]; }, TypeEmitsToOptions<{ (event: "dismiss"): void; (event: "apply", id: string): void; }>>, ... 24 more ..., {}>'.
451:  ##[error]src/components/SensitiveData/components/SemanticTypesDrawer.vue(16,18): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ show: boolean; semanticTypeList: SemanticTypeSetting_SemanticType[]; }, TypeEmitsToOptions<{ (event: "dismiss"): void; (event: "apply", id: string): void; }>>, ... 24 more ..., {}>'.
452:  ##[error]src/components/SchemaEditorLite/Panels/TableColumnEditor/components/OperationCell.vue(9,16): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ column: ColumnMetadata; dropped?: boolean | undefined; disabled?: boolean | undefined; }, TypeEmitsToOptions<{ (event: "drop"): void; (event: "restore"): void; }>>, ... 24 more ..., {}>'.
453:  ##[error]src/components/SchemaEditorLite/Panels/TableColumnEditor/components/OperationCell.vue(21,16): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ column: ColumnMetadata; dropped?: boolean | undefined; disabled?: boolean | undefined; }, TypeEmitsToOptions<{ (event: "drop"): void; (event: "restore"): void; }>>, ... 24 more ..., {}>'.
454:  ##[error]src/components/SchemaEditorLite/Panels/TableColumnEditor/TableColumnEditor.vue(48,7): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ show?: boolean | undefined; readonly: boolean; showForeignKey?: boolean | undefined; db: ComposedDatabase; database: DatabaseMetadata; schema: SchemaMetadata; ... 9 more ...; getColumnItemComputedClassList?: ((column: ColumnMetadata) => string) | undefined; }...'.
455:  ##[error]src/components/SchemaEditorLite/Modals/FunctionNameModal.vue(5,11): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; func?: FunctionMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
456:  ##[error]src/components/SchemaEditorLite/Modals/FunctionNameModal.vue(6,11): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; func?: FunctionMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
457:  ##[error]src/components/SchemaEditorLite/Modals/FunctionNameModal.vue(12,13): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; func?: FunctionMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
458:  ##[error]src/components/SchemaEditorLite/Modals/FunctionNameModal.vue(22,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; func?: FunctionMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
459:  ##[error]src/components/SchemaEditorLite/Modals/FunctionNameModal.vue(25,32): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; func?: FunctionMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
460:  ##[error]src/components/SchemaEditorLite/Modals/FunctionNameModal.vue(25,54): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; func?: FunctionMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
461:  ##[error]src/components/SchemaEditorLite/Modals/ProcedureNameModal.vue(5,11): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; procedure?: ProcedureMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
462:  ##[error]src/components/SchemaEditorLite/Modals/ProcedureNameModal.vue(6,11): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; procedure?: ProcedureMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
463:  ##[error]src/components/SchemaEditorLite/Modals/ProcedureNameModal.vue(12,13): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; procedure?: ProcedureMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
464:  ##[error]src/components/SchemaEditorLite/Modals/ProcedureNameModal.vue(22,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; procedure?: ProcedureMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
465:  ##[error]src/components/SchemaEditorLite/Modals/ProcedureNameModal.vue(25,32): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; procedure?: ProcedureMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
466:  ##[error]src/components/SchemaEditorLite/Modals/ProcedureNameModal.vue(25,54): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; procedure?: ProcedureMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
467:  ##[error]src/components/SchemaEditorLite/Modals/SchemaNameModal.vue(3,13): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; }, TypeEmitsToOptions<(event: "close") => void>>, ... 24 more ..., {}>'.
468:  ##[error]src/components/SchemaEditorLite/Modals/SchemaNameModal.vue(8,13): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; }, TypeEmitsToOptions<(event: "close") => void>>, ... 24 more ..., {}>'.
469:  ##[error]src/components/SchemaEditorLite/Modals/SchemaNameModal.vue(18,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; }, TypeEmitsToOptions<(event: "close") => void>>, ... 24 more ..., {}>'.
470:  ##[error]src/components/SchemaEditorLite/Modals/SchemaNameModal.vue(21,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; }, TypeEmitsToOptions<(event: "close") => void>>, ... 24 more ..., {}>'.
471:  ##[error]src/components/SchemaEditorLite/Modals/TableNameModal.vue(5,11): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; table?: TableMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
472:  ##[error]src/components/SchemaEditorLite/Modals/TableNameModal.vue(6,11): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; table?: TableMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
473:  ##[error]src/components/SchemaEditorLite/Modals/TableNameModal.vue(12,13): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; table?: TableMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
474:  ##[error]src/components/SchemaEditorLite/Modals/TableNameModal.vue(22,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; table?: TableMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
475:  ##[error]src/components/SchemaEditorLite/Modals/TableNameModal.vue(25,32): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; table?: TableMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
476:  ##[error]src/components/SchemaEditorLite/Modals/TableNameModal.vue(25,54): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; table?: TableMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
477:  ##[error]src/components/SchemaEditorLite/Modals/ViewNameModal.vue(5,11): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; view?: ViewMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
478:  ##[error]src/components/SchemaEditorLite/Modals/ViewNameModal.vue(6,11): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; view?: ViewMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
479:  ##[error]src/components/SchemaEditorLite/Modals/ViewNameModal.vue(12,13): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; view?: ViewMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
480:  ##[error]src/components/SchemaEditorLite/Modals/ViewNameModal.vue(22,12): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; view?: ViewMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
481:  ##[error]src/components/SchemaEditorLite/Modals/ViewNameModal.vue(25,32): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; view?: ViewMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
482:  ##[error]src/components/SchemaEditorLite/Modals/ViewNameModal.vue(25,54): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ database: ComposedDatabase; metadata: DatabaseMetadata; schema: SchemaMetadata; view?: ViewMetadata | undefined; }, TypeEmitsToOptions<...>>, ... 24 more ..., {}>'.
483:  ##[error]src/components/SchemaEditorLite/Aside/LastUpdate.vue(19,16): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ node: TreeNodeForTable | TreeNodeForView | TreeNodeForProcedure | TreeNodeForFunction; }, {}>, ... 24 more ..., {}>'.
484:  ##[error]src/components/SchemaEditorLite/Aside/LastUpdate.vue(29,16): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ node: TreeNodeForTable | TreeNodeForView | TreeNodeForProcedure | TreeNodeForFunction; }, {}>, ... 24 more ..., {}>'.
485:  ##[error]src/components/SchemaEditorLite/Aside/LastUpdate.vue(38,13): error TS2339: Property 'dayjs' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ node: TreeNodeForTable | TreeNodeForView | TreeNodeForProcedure | TreeNodeForFunction; }, {}>, ... 24 more ..., {}>'.
486:  ##[error]src/components/SchemaEditorLite/Aside/Tree.vue(10,15): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{}, { "update-is-editing": (...args: any[]) => void; }>, { NInput: typeof NInput; NDropdown: typeof NDropdown; NTree: typeof NTree; FunctionNameModal: typeof FunctionNameModal; ... 22 more ...; handleExpandedKeysChange: typeof handleExpandedKeysChange; }, ... 2...'.
487:  ##[error]src/components/SchemaEditorLite/Aside/Tree.vue(11,15): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{}, { "update-is-editing": (...args: any[]) => void; }>, { NInput: typeof NInput; NDropdown: typeof NDropdown; NTree: typeof NTree; FunctionNameModal: typeof FunctionNameModal; ... 22 more ...; handleExpandedKeysChange: typeof handleExpandedKeysChange; }, ... 2...'.
488:  ##[error]src/components/SchemaEditorLite/EmptyTips.vue(6,8): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{}, {}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, ... 16 more ..., {}>'.
489:  ##[error]src/components/SchemaDiagram/Canvas/Canvas.vue(36,16): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{}, {}>, { NButtonGroup: typeof NButtonGroup; NButton: typeof NButton; NTooltip: typeof NTooltip; Square2x2: typeof Square2x2; ZOOM_RANGE: typeof ZOOM_RANGE; ... 10 more ...; handleScreenshot: typeof handleScreenshot; }, ... 23 more ..., {}>'.
490:  ##[error]src/components/SchemaDiagram/Navigator/Navigator.vue(10,25): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{}, {}>, { NInput: typeof NInput; Tree: typeof Tree; state: typeof state; }, {}, {}, {}, ComponentOptionsMixin, ... 19 more ..., {}>'.
491:  ##[error]src/components/SchemaTemplate/FieldTemplateForm.vue(2,26): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ create: boolean; readonly?: boolean | undefined; template: SchemaTemplateSetting_FieldTemplate; }, { dismiss: (...args: any[]) => void; }>, ... 24 more ..., {}>'.
492:  ##[error]src/components/SchemaTemplate/FieldTemplateForm.vue(8,16): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ create: boolean; readonly?: boolean | undefined; template: SchemaTemplateSetting_FieldTemplate; }, { dismiss: (...args: any[]) => void; }>, ... 24 more ..., {}>'.
493:  ##[error]src/components/SchemaTemplate/FieldTemplateForm.vue(11,16): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ create: boolean; readonly?: boolean | undefined; template: SchemaTemplateSetting_FieldTemplate; }, { dismiss: (...args: any[]) => void; }>, ... 24 more ..., {}>'.
494:  ##[error]src/components/SchemaTemplate/FieldTemplateForm.vue(17,29): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ create: boolean; readonly?: boolean | undefined; template: SchemaTemplateSetting_FieldTemplate; }, { dismiss: (...args: any[]) => void; }>, ... 24 more ..., {}>'.
495:  ##[error]src/components/SchemaTemplate/FieldTemplateForm.vue(27,16): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ create: boolean; readonly?: boolean | undefined; template: SchemaTemplateSetting_FieldTemplate; }, { dismiss: (...args: any[]) => void; }>, ... 24 more ..., {}>'.
496:  ##[error]src/components/SchemaTemplate/FieldTemplateForm.vue(42,18): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ create: boolean; readonly?: boolean | undefined; template: SchemaTemplateSetting_FieldTemplate; }, { dismiss: (...args: any[]) => void; }>, ... 24 more ..., {}>'.
497:  ##[error]src/components/SchemaTemplate/FieldTemplateForm.vue(54,18): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ create: boolean; readonly?: boolean | undefined; template: SchemaTemplateSetting_FieldTemplate; }, { dismiss: (...args: any[]) => void; }>, ... 24 more ..., {}>'.
498:  ##[error]src/components/SchemaTemplate/FieldTemplateForm.vue(76,18): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ create: boolean; readonly?: boolean | undefined; template: SchemaTemplateSetting_FieldTemplate; }, { dismiss: (...args: any[]) => void; }>, ... 24 more ..., {}>'.
499:  ##[error]src/components/SchemaTemplate/FieldTemplateForm.vue(102,18): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ create: boolean; readonly?: boolean | undefined; template: SchemaTemplateSetting_FieldTemplate; }, { dismiss: (...args: any[]) => void; }>, ... 24 more ..., {}>'.
500:  ##[error]src/components/SchemaTemplate/FieldTemplateForm.vue(129,18): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ create: boolean; readonly?: boolean | undefined; template: SchemaTemplateSetting_FieldTemplate; }, { dismiss: (...args: any[]) => void; }>, ... 24 more ..., {}>'.
501:  ##[error]src/components/SchemaTemplate/FieldTemplateForm.vue(146,18): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ create: boolean; readonly?: boolean | undefined; template: SchemaTemplateSetting_FieldTemplate; }, { dismiss: (...args: any[]) => void; }>, ... 24 more ..., {}>'.
502:  ##[error]src/components/SchemaTemplate/FieldTemplateForm.vue(160,18): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ create: boolean; readonly?: boolean | undefined; template: SchemaTemplateSetting_FieldTemplate; }, { dismiss: (...args: any[]) => void; }>, ... 24 more ..., {}>'.
503:  ##[error]src/components/SchemaTemplate/FieldTemplateForm.vue(170,18): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ create: boolean; readonly?: boolean | undefined; template: SchemaTemplateSetting_FieldTemplate; }, { dismiss: (...args: any[]) => void; }>, ... 24 more ..., {}>'.
504:  ##[error]src/components/SchemaTemplate/FieldTemplateForm.vue(184,14): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ create: boolean; readonly?: boolean | undefined; template: SchemaTemplateSetting_FieldTemplate; }, { dismiss: (...args: any[]) => void; }>, ... 24 more ..., {}>'.
505:  ##[error]src/components/SchemaTemplate/FieldTemplateForm.vue(200,16): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ create: boolean; readonly?: boolean | undefined; template: SchemaTemplateSetting_FieldTemplate; }, { dismiss: (...args: any[]) => void; }>, ... 24 more ..., {}>'.
506:  ##[error]src/components/SchemaTemplate/FieldTemplateForm.vue(208,25): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ create: boolean; readonly?: boolean | undefined; template: SchemaTemplateSetting_FieldTemplate; }, { dismiss: (...args: any[]) => void; }>, ... 24 more ..., {}>'.
507:  ##[error]src/components/SchemaTemplate/FieldTemplateForm.vue(208,47): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ create: boolean; readonly?: boolean | undefined; template: SchemaTemplateSetting_FieldTemplate; }, { dismiss: (...args: any[]) => void; }>, ... 24 more ..., {}>'.
508:  ##[error]src/components/SchemaTemplate/FieldTemplateTable.vue(49,16): error TS2339: Property '$t' does not exist on type 'CreateComponentPublicInstanceWithMixins<ToResolvedProps<{ engine?: Engine | undefined; readonly: boolean; templateList: SchemaTemplateSetting_FieldTempl...

@renovate renovate bot force-pushed the renovate/npm-vue-i18n-vulnerability branch from 9ae15af to 2423353 Compare September 25, 2025 06:53
@renovate renovate bot changed the title chore(deps): update dependency vue-i18n to v9.14.3 [security] chore(deps): update dependency vue-i18n to v9.14.5 [security] Sep 25, 2025
@renovate renovate bot force-pushed the renovate/npm-vue-i18n-vulnerability branch from 2423353 to 616a2a3 Compare January 1, 2026 00:06
@renovate renovate bot force-pushed the renovate/npm-vue-i18n-vulnerability branch from 616a2a3 to 08de3a9 Compare February 3, 2026 04:12
@renovate renovate bot force-pushed the renovate/npm-vue-i18n-vulnerability branch from 08de3a9 to 3b86138 Compare February 13, 2026 12:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants