shared-ritm 1.1.0 → 1.1.1

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shared-ritm",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist",
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <q-header :class="$style.header">
2
+ <q-header :class="[$style.header, { '$style.[`header-full`]': fullWidth }]">
3
3
  <q-toolbar :class="$style.toolbar">
4
4
  <!-- <app-input-search v-model.trim="text" type="text" label="Поиск по системе" :class="$style['header-search']" />-->
5
5
  <div :class="$style['action-buttons']">
@@ -38,6 +38,7 @@ import AppButton from '@/common/app-button/AppButton.vue'
38
38
  //import NotificationIcon from '@/icons/header/notificationIcon.vue'
39
39
  interface Props {
40
40
  userData: any
41
+ fullWidth?: string
41
42
  }
42
43
 
43
44
  const props = defineProps<Props>()
@@ -58,7 +59,10 @@ const shortName = computed(
58
59
  margin: 0 auto;
59
60
  max-width: 1300px;
60
61
  }
61
-
62
+ .header-full {
63
+ max-width: 100%;
64
+ padding: 0 20px;
65
+ }
62
66
  .toolbar {
63
67
  padding: 0;
64
68
  min-height: 100%;