forked from kokonect-link/cherrypick
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enhance(phase 1): deprecate messaging feature
- Loading branch information
Esurio
committed
Aug 4, 2024
1 parent
1877056
commit 8267aa2
Showing
5 changed files
with
34 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<template> | ||
<div :class="$style.root"> | ||
<i class="ti ti-exclamation-circle"></i> | ||
{{ i18n.ts.deprecatedCaution }} | ||
</div> | ||
</template> | ||
|
||
<script lang="ts" setup> | ||
import { i18n } from '@/i18n.js'; | ||
</script> | ||
|
||
<style lang="scss" module> | ||
.root { | ||
font-size: 0.8em; | ||
padding: 16px; | ||
background-color: var(--infoWarnBg); | ||
color: var(--error); | ||
border-radius: var(--radius); | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters