voiptime-components 1.21.89 → 1.21.91

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
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "1.21.89",
7
+ "version": "1.21.91",
8
8
  "type": "module",
9
9
  "main": "dist/index.umd.js",
10
10
  "module": "dist/index.es.js",
@@ -1,3 +1,43 @@
1
+ // ── App layout ────────────────────────────────────────────────────────────────
2
+
3
+ // Основний layout після хедера (body = sidebar + main + right panel)
4
+ .vt-layout {
5
+ &__header {
6
+ height: 60px;
7
+ flex-shrink: 0;
8
+ display: flex;
9
+ align-items: center;
10
+ background: var(--color-primary-hover);
11
+ padding: 0 var(--vt-padding-base);
12
+
13
+ // Внутрішній wrapper: logo зліва, actions зправа
14
+ &-inner {
15
+ display: flex;
16
+ align-items: center;
17
+ justify-content: space-between;
18
+ width: 100%;
19
+ }
20
+ }
21
+
22
+ &__body {
23
+ display: flex;
24
+ flex-grow: 1;
25
+ overflow: hidden;
26
+ min-height: 0;
27
+ height: calc(100vh - 60px); // 60px = висота top panel
28
+ }
29
+
30
+ &__main {
31
+ flex-grow: 1;
32
+ position: relative;
33
+ display: flex;
34
+ flex-direction: column;
35
+ overflow: hidden;
36
+ min-width: 0;
37
+ padding: var(--vt-padding-base);
38
+ }
39
+ }
40
+
1
41
  .vt-page {
2
42
  // Стилі сторінки
3
43
  display: flex;
@@ -152,17 +192,6 @@
152
192
  align-items: center;
153
193
  padding: 0 var(--vt-padding-lg) var(--vt-padding-base);
154
194
 
155
- // Модифікатор: лейбл над контролом замість збоку
156
- &--vertical {
157
- flex-direction: column;
158
- align-items: flex-start;
159
-
160
- > label {
161
- width: 100%;
162
- margin-bottom: var(--vt-gap-sm, 4px);
163
- }
164
- }
165
-
166
195
  > label {
167
196
  width: 250px;
168
197
  font-size: var(--font-size-sm);
@@ -183,27 +212,6 @@
183
212
  color: var(--color-danger-main);
184
213
  }
185
214
  }
186
-
187
- &-item-value {
188
- width: 100%;
189
- min-height: 36px;
190
- padding: var(--padding-button);
191
- box-sizing: border-box;
192
- display: flex;
193
- align-items: center;
194
- font-size: var(--font-size-sm);
195
- font-weight: var(--font-weight-medium);
196
- color: var(--color-gray-1);
197
- overflow: hidden;
198
- text-overflow: ellipsis;
199
- white-space: nowrap;
200
-
201
- // Без "коробки" інпута — суцільний рядок тексту
202
- &--plain {
203
- min-height: auto;
204
- padding: 0;
205
- }
206
- }
207
215
  }
208
216
 
209
217
  // Рядок всередині body без label (для inline-форм типу caller-id)