diff --git a/package-lock.json b/package-lock.json index a6b17717..af6b8bd4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -24,6 +24,7 @@ "postcss-custom-media": "^8.0.0", "postcss-media-variables": "^2.0.1", "punycode": "^2.1.1", + "tailwindcss-filters": "^3.0.0", "v-wave": "^1.3.1", "vue": "^3.0.5", "vue-gtag": "^2.0.1", @@ -7200,8 +7201,7 @@ "node_modules/lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, "node_modules/lodash.memoize": { "version": "4.1.2", @@ -10667,6 +10667,16 @@ "postcss": "^8.0.9" } }, + "node_modules/tailwindcss-filters": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tailwindcss-filters/-/tailwindcss-filters-3.0.0.tgz", + "integrity": "sha512-xhortqs8fSp9id17EnneYhmruA5DfU6K0zvN6/mgDlEXKaHthjXlR74Ta+4lrX5Lp7tp6YigB09WO0TOWn7VEQ==", + "deprecated": "Use Tailwind's filter utilities", + "license": "ISC", + "dependencies": { + "lodash": "^4.17.15" + } + }, "node_modules/tailwindcss/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", @@ -16725,8 +16735,7 @@ "lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, "lodash.memoize": { "version": "4.1.2", @@ -19160,6 +19169,14 @@ } } }, + "tailwindcss-filters": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tailwindcss-filters/-/tailwindcss-filters-3.0.0.tgz", + "integrity": "sha512-xhortqs8fSp9id17EnneYhmruA5DfU6K0zvN6/mgDlEXKaHthjXlR74Ta+4lrX5Lp7tp6YigB09WO0TOWn7VEQ==", + "requires": { + "lodash": "^4.17.15" + } + }, "test-exclude": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", diff --git a/package.json b/package.json index ac2d9c45..28365a70 100644 --- a/package.json +++ b/package.json @@ -40,6 +40,7 @@ "postcss-custom-media": "^8.0.0", "postcss-media-variables": "^2.0.1", "punycode": "^2.1.1", + "tailwindcss-filters": "^3.0.0", "v-wave": "^1.3.1", "vue": "^3.0.5", "vue-gtag": "^2.0.1", diff --git a/src/App.vue b/src/App.vue index 9d2ec250..1cae8575 100644 --- a/src/App.vue +++ b/src/App.vue @@ -38,7 +38,7 @@ onBeforeMount(async () => { - - diff --git a/src/components/AppBanner.vue b/src/components/AppBanner.vue index 87cee345..5f804d38 100644 --- a/src/components/AppBanner.vue +++ b/src/components/AppBanner.vue @@ -12,50 +12,21 @@ function onCloseBanner() { - - diff --git a/src/components/AppFooter.vue b/src/components/AppFooter.vue index 68450bb9..4412b4df 100644 --- a/src/components/AppFooter.vue +++ b/src/components/AppFooter.vue @@ -53,17 +53,17 @@ const socialLinks = [ /> --> - + Terms of Use @@ -71,7 +71,7 @@ const socialLinks = [
diff --git a/src/components/AppHeader.vue b/src/components/AppHeader.vue index 87ae96ca..8f2de51e 100644 --- a/src/components/AppHeader.vue +++ b/src/components/AppHeader.vue @@ -96,10 +96,19 @@ function toggleNotifications() { - - diff --git a/src/components/AppNotifications.vue b/src/components/AppNotifications.vue index 7dbc930d..124a9de3 100644 --- a/src/components/AppNotifications.vue +++ b/src/components/AppNotifications.vue @@ -36,21 +36,23 @@ function onClickofItem(notification) { - - diff --git a/src/components/AppNotificationsItem.vue b/src/components/AppNotificationsItem.vue index c8a80cae..da48f7ea 100644 --- a/src/components/AppNotificationsItem.vue +++ b/src/components/AppNotificationsItem.vue @@ -30,7 +30,7 @@ function getNotificationsTime(timeStamp) { > {{ notification.data }}

-

+

{{ getNotificationsTime(notification.time) }}

@@ -43,6 +43,6 @@ function getNotificationsTime(timeStamp) {
-

No Notifications

+

No Notifications

diff --git a/src/components/AppOverlay.vue b/src/components/AppOverlay.vue index e9627302..d3f5ea12 100644 --- a/src/components/AppOverlay.vue +++ b/src/components/AppOverlay.vue @@ -1,6 +1,6 @@ - - diff --git a/src/components/SearchBar.vue b/src/components/SearchBar.vue index daa75269..9c3cae87 100644 --- a/src/components/SearchBar.vue +++ b/src/components/SearchBar.vue @@ -6,12 +6,12 @@ const emits = defineEmits(['search']) - - diff --git a/src/components/app-configure/ConfigureActionButtons.vue b/src/components/app-configure/ConfigureActionButtons.vue index 2d4e3c25..d9ca1f8f 100644 --- a/src/components/app-configure/ConfigureActionButtons.vue +++ b/src/components/app-configure/ConfigureActionButtons.vue @@ -28,7 +28,9 @@ const emit = defineEmits(['cancel', 'save']) - - diff --git a/src/components/app-configure/ConfigureHeader.vue b/src/components/app-configure/ConfigureHeader.vue index 35968c0c..ec182988 100644 --- a/src/components/app-configure/ConfigureHeader.vue +++ b/src/components/app-configure/ConfigureHeader.vue @@ -11,12 +11,12 @@ const selectedNetwork = ref('Testnet') - - diff --git a/src/components/app-configure/ConfigureMobileMenu.vue b/src/components/app-configure/ConfigureMobileMenu.vue index 2174f050..4805833a 100644 --- a/src/components/app-configure/ConfigureMobileMenu.vue +++ b/src/components/app-configure/ConfigureMobileMenu.vue @@ -10,39 +10,21 @@ const props = defineProps() - - diff --git a/src/components/app-configure/ConfigureSidebar.vue b/src/components/app-configure/ConfigureSidebar.vue index 3e2aaa55..6d736dbe 100644 --- a/src/components/app-configure/ConfigureSidebar.vue +++ b/src/components/app-configure/ConfigureSidebar.vue @@ -220,63 +220,87 @@ function ellipsisAppName(appName: string) { - - diff --git a/src/components/app-configure/CreateApp.vue b/src/components/app-configure/CreateApp.vue index 7ed556d2..6d696fe0 100644 --- a/src/components/app-configure/CreateApp.vue +++ b/src/components/app-configure/CreateApp.vue @@ -100,7 +100,7 @@ function onChainSelect(_, option) {

Please wait...

@@ -109,20 +109,20 @@ function onChainSelect(_, option) {
-

+

Create New App

- +
@@ -136,9 +136,11 @@ function onChainSelect(_, option) { Chain Type* Shard Value* @@ -177,24 +181,23 @@ function onChainSelect(_, option) { :disabled="!selectedChainType" @change="onChainSelect" /> - Wallet UI Mode* -

- *You cannot change these - properties later. +

+ *You cannot change + these properties later.

@@ -211,10 +214,3 @@ function onChainSelect(_, option) {
- - diff --git a/src/components/app-configure/SettingCard.vue b/src/components/app-configure/SettingCard.vue index 0e326140..c661369a 100644 --- a/src/components/app-configure/SettingCard.vue +++ b/src/components/app-configure/SettingCard.vue @@ -9,18 +9,18 @@ const slot = useSlots() - - diff --git a/src/components/app-configure/SwitchKeyspacePopup.vue b/src/components/app-configure/SwitchKeyspacePopup.vue index e74c5393..357a1c07 100644 --- a/src/components/app-configure/SwitchKeyspacePopup.vue +++ b/src/components/app-configure/SwitchKeyspacePopup.vue @@ -9,14 +9,13 @@ const emit = defineEmits(['cancel', 'switch']) - - diff --git a/src/components/app-configure/VerificationForm.vue b/src/components/app-configure/VerificationForm.vue index eefee3fb..5790dcc3 100644 --- a/src/components/app-configure/VerificationForm.vue +++ b/src/components/app-configure/VerificationForm.vue @@ -98,28 +98,29 @@ async function handleSubmit() { - - diff --git a/src/components/app-configure/auth/AuthProviderInput.vue b/src/components/app-configure/auth/AuthProviderInput.vue index 7e271064..59e9f226 100644 --- a/src/components/app-configure/auth/AuthProviderInput.vue +++ b/src/components/app-configure/auth/AuthProviderInput.vue @@ -64,12 +64,12 @@ function handleInput5(event: Event) {
{{ authProvider.documentation1.label }}
{{ authProvider?.documentation2?.label }}
{{ authProvider.inputLabels.label3 }} {{ authProvider.inputLabels.label4 }} {{ authProvider.inputLabels.label5 }}