shared-ritm 1.1.2 → 1.1.3
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/package.json
CHANGED
package/src/App.vue
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<app-layout :logged="false">
|
|
3
3
|
<template #header>
|
|
4
|
-
<app-layout-header :user-data="userData" />
|
|
4
|
+
<app-layout-header :user-data="userData" full-width />
|
|
5
5
|
</template>
|
|
6
6
|
<template #drawer>
|
|
7
7
|
<app-sidebar :is-drawer="true" :menu-items="menuItems" />
|
|
8
8
|
</template>
|
|
9
|
-
<
|
|
10
|
-
|
|
9
|
+
<div class="wrapper">
|
|
10
|
+
<app-button label="asad" color="primary" />
|
|
11
|
+
<app-input v-model="test" type="text" />
|
|
12
|
+
</div>
|
|
11
13
|
</app-layout>
|
|
12
14
|
</template>
|
|
13
15
|
|
|
@@ -2401,4 +2403,9 @@ const menuItems = ref([
|
|
|
2401
2403
|
{ name: 'sign-out', icon: 'logout-icon', label: 'Выход', to: '/sign-out' },
|
|
2402
2404
|
])
|
|
2403
2405
|
</script>
|
|
2404
|
-
<style lang="scss"
|
|
2406
|
+
<style lang="scss">
|
|
2407
|
+
.wrapper {
|
|
2408
|
+
max-width: 1300px;
|
|
2409
|
+
margin: 0 auto;
|
|
2410
|
+
}
|
|
2411
|
+
</style>
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
import { computed, defineProps } from 'vue'
|
|
32
32
|
//import AppInput from '@/common/app-input-search/AppInputSearch.vue'
|
|
33
33
|
import AppButton from '@/common/app-button/AppButton.vue'
|
|
34
|
+
import { b } from 'vite/dist/node/types.d-aGj9QkWt'
|
|
34
35
|
|
|
35
36
|
//import SmallCapsIcon from '@/icons/header/smallCapsIcon.vue'
|
|
36
37
|
//import SearchStatusIcon from '@/icons/header/searchStatusIcon.vue'
|
|
@@ -38,7 +39,7 @@ import AppButton from '@/common/app-button/AppButton.vue'
|
|
|
38
39
|
//import NotificationIcon from '@/icons/header/notificationIcon.vue'
|
|
39
40
|
interface Props {
|
|
40
41
|
userData: any
|
|
41
|
-
fullWidth?:
|
|
42
|
+
fullWidth?: boolean
|
|
42
43
|
}
|
|
43
44
|
|
|
44
45
|
const props = defineProps<Props>()
|