adata-ui 2.0.54 → 2.0.56

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/app.config.ts CHANGED
@@ -13,7 +13,6 @@ declare module '@nuxt/schema' {
13
13
  oldVersion?: string
14
14
  landingUrl?: string
15
15
  pkUrl?: string
16
- oldPkUrl?: string
17
16
  tenderUrl?: string
18
17
  workUrl?: string
19
18
  avtoUrl?: string
@@ -110,14 +110,14 @@ const props = defineProps<{
110
110
  </svg>
111
111
 
112
112
  <div class="absolute left-6 top-6 flex flex-col gap-4 pr-6">
113
- <div class="flex items-center gap-2">
114
- <div class="rounded-[4px] icon-item bg-deepblue-900/5 dark:bg-gray-200/5 p-1 ">
113
+ <div class="flex items-center gap-2 title">
114
+ <div class="rounded-[4px] icon-item bg-deepblue-900/5 dark:bg-gray-200/5 p-1">
115
115
  <component
116
116
  :is="icon"
117
117
  class="size-6 shrink-0"
118
118
  />
119
119
  </div>
120
- <p class="text-base title font-semibold">
120
+ <p class="text-base font-semibold">
121
121
  {{ title }}
122
122
  </p>
123
123
  </div>
@@ -15,10 +15,14 @@ const { t } = useI18n()
15
15
  interface Props {
16
16
  deleteFromDom?: boolean
17
17
  }
18
+ const { topUpSidePanel } = usePayment()
19
+
18
20
  const isOpen = defineModel<boolean>({ default: false })
19
21
  const userInfo = useState<UserInfo>('user-info', () => ({}))
22
+
20
23
  function confirm() {
21
- emit('next')
24
+ isOpen.value = false
25
+ topUpSidePanel.value = true
22
26
  }
23
27
  function cancel() {
24
28
  isOpen.value = false
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "adata-ui",
3
3
  "type": "module",
4
- "version": "2.0.54",
4
+ "version": "2.0.56",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground",