itube-specs 0.0.241 → 0.0.243

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.
@@ -9,10 +9,10 @@
9
9
  class="s-auth-popup"
10
10
  @back="currentStep -= 1"
11
11
  >
12
- <template v-if="aside" #aside>
13
- <FAuthSide />
12
+ <template #aside>
13
+ <slot></slot>
14
14
  </template>
15
- <template #title>{{ $t('create_new') }}</template>
15
+ <template #title>{{ $t('auth.create_new') }}</template>
16
16
  <SAuthRegister
17
17
  @login="onLoginClick"
18
18
  :additional-text="additionalText"
@@ -29,10 +29,10 @@
29
29
  class="s-auth-popup"
30
30
  @back="currentStep -= 1"
31
31
  >
32
- <template v-if="aside" #aside>
33
- <FAuthSide />
32
+ <template #aside>
33
+ <slot></slot>
34
34
  </template>
35
- <template #title>{{ $t('welcome_back') }}</template>
35
+ <template #title>{{ $t('auth.welcome_back') }}</template>
36
36
  <SAuthLogin @forgot="onRecoveryClick" @create="currentStep -= 1"/>
37
37
  </SPopup>
38
38
  </transition>
@@ -46,10 +46,10 @@
46
46
  class="s-auth-popup"
47
47
  @back="currentStep -= 1"
48
48
  >
49
- <template v-if="aside" #aside>
50
- <FAuthSide />
49
+ <template #aside>
50
+ <slot></slot>
51
51
  </template>
52
- <template #title>{{ $t('recovery_title')}}</template>
52
+ <template #title>{{ $t('auth.recovery_title')}}</template>
53
53
  <SAuthRecovery @login="onLoginClick"/>
54
54
  </SPopup>
55
55
  </transition>
@@ -58,10 +58,6 @@
58
58
  <script setup lang="ts">
59
59
  import { EAuthSteps } from '../../runtime';
60
60
 
61
- defineProps<{
62
- aside?: boolean
63
- }>()
64
-
65
61
  const { isAuthPopupOpen, currentStep, additionalText } = useAuthPopup()
66
62
 
67
63
  const backShow = ref(false)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "itube-specs",
3
3
  "type": "module",
4
- "version": "0.0.241",
4
+ "version": "0.0.243",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "./types/index.d.ts",
7
7
  "scripts": {