itube-specs 0.0.548 → 0.0.549

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,9 +9,6 @@
9
9
  class="s-auth-popup"
10
10
  @back="currentStep -= 1"
11
11
  >
12
- <template #aside>
13
- <slot/>
14
- </template>
15
12
  <template #title>{{ $t('auth.create_new') }}</template>
16
13
  <SAuthRegister
17
14
  :additional-text="additionalText"
@@ -29,9 +26,6 @@
29
26
  class="s-auth-popup"
30
27
  @back="currentStep -= 1"
31
28
  >
32
- <template #aside>
33
- <slot/>
34
- </template>
35
29
  <template #title>{{ $t('auth.welcome_back') }}</template>
36
30
  <SAuthLogin @forgot="onRecoveryClick" @create="currentStep -= 1"/>
37
31
  </SPopup>
@@ -46,9 +40,6 @@
46
40
  class="s-auth-popup"
47
41
  @back="currentStep -= 1"
48
42
  >
49
- <template #aside>
50
- <slot/>
51
- </template>
52
43
  <template #title>{{ $t('auth.recovery_title')}}</template>
53
44
  <SAuthRecovery @login="onLoginClick"/>
54
45
  </SPopup>
@@ -30,11 +30,6 @@
30
30
  @mouseenter="mouseHandler(true)"
31
31
  @mouseleave="mouseHandler(false)"
32
32
  >
33
- <button
34
- class="s-dropdown__sheet-close _to-sm"
35
- type="button"
36
- @click="close"
37
- />
38
33
  <button
39
34
  class="s-dropdown__crest _to-sm"
40
35
  type="button"
@@ -5,30 +5,11 @@
5
5
  :class="[
6
6
  {'--sheet': sheet},
7
7
  {'--transparent-backdrop': transparentBackdrop},
8
- {'--aside': $slots.aside}
9
8
  ]"
10
9
  @click="closeByBackdropClick"
11
10
  @cancel="close"
12
11
  >
13
12
  <div class="s-popup__wrapper">
14
- <div
15
- v-if="sheet"
16
- class="s-popup__sheet"
17
- >
18
- <button
19
- class="s-popup__sheet-handler"
20
- type="button"
21
- @click="close"
22
- />
23
- </div>
24
-
25
- <aside
26
- v-if="$slots.aside && !isMobileWidth(breakpoints).value"
27
- class="s-popup__aside"
28
- >
29
- <slot name="aside"/>
30
- </aside>
31
-
32
13
  <header
33
14
  class="s-popup__header"
34
15
  >
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "itube-specs",
3
3
  "type": "module",
4
- "version": "0.0.548",
4
+ "version": "0.0.549",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "./types/index.d.ts",
7
7
  "scripts": {
@@ -3,6 +3,7 @@ export interface INavigationItems {
3
3
  link: string
4
4
  icon?: string
5
5
  accent?: string
6
+ top?: boolean
6
7
  featureFlag?: string
7
8
  childs?: {
8
9
  title: string