@retailcrm/embed-ui-v1-components 0.9.22 → 0.9.23-alpha.2

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/AGENTS.md CHANGED
@@ -39,6 +39,7 @@ When building UI in an extension, start with imports like:
39
39
  import {
40
40
  UiButton,
41
41
  UiField,
42
+ UiPageFooter,
42
43
  UiPageHeader,
43
44
  UiSelect,
44
45
  UiTextbox,
@@ -54,7 +55,7 @@ Commonly used exports from `remote` include:
54
55
  - selection and date controls:
55
56
  `UiSelect`, `UiSelectOption`, `UiSelectOptionGroup`, `UiDatePicker`, `UiTimePicker`, `UiCalendar`
56
57
  - layout and structure:
57
- `UiField`, `UiPageHeader`, `UiCollapse`, `UiCollapseBox`, `UiScrollBox`
58
+ `UiField`, `UiPageHeader`, `UiPageFooter`, `UiCollapse`, `UiCollapseBox`, `UiScrollBox`
58
59
  - actions and links:
59
60
  `UiButton`, `UiAddButton`, `UiCopyButton`, `UiToolbarButton`, `UiToolbarLink`, `UiLink`
60
61
  - feedback and overlays:
@@ -93,9 +94,13 @@ Commonly used exports from `remote` include:
93
94
  <UiTextbox v-model="comment" placeholder="Введите текст" />
94
95
  </UiField>
95
96
 
96
- <UiButton @click="save">
97
- Сохранить
98
- </UiButton>
97
+ <UiPageFooter>
98
+ <template #actions>
99
+ <UiButton @click="save">
100
+ Сохранить
101
+ </UiButton>
102
+ </template>
103
+ </UiPageFooter>
99
104
  </template>
100
105
 
101
106
  <script lang="ts" setup>
@@ -104,6 +109,7 @@ import { ref } from 'vue'
104
109
  import {
105
110
  UiButton,
106
111
  UiField,
112
+ UiPageFooter,
107
113
  UiPageHeader,
108
114
  UiTextbox,
109
115
  } from '@retailcrm/embed-ui-v1-components/remote'