@ldmjs/ui 1.0.72 → 1.0.74
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/dist/css/index.css +11 -11
- package/dist/index.js +1022 -647
- package/dist/scss/_inputs.scss +12 -0
- package/dist/scss/_variables.scss +2 -0
- package/dist/types/dialogs.d.ts +7 -0
- package/package.json +1 -1
package/dist/scss/_inputs.scss
CHANGED
|
@@ -122,7 +122,19 @@ body {
|
|
|
122
122
|
.v-input__details {
|
|
123
123
|
opacity: 1;
|
|
124
124
|
}
|
|
125
|
+
.v-input__append {
|
|
126
|
+
opacity: 1;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
&--horizontal {
|
|
130
|
+
.v-input__append {
|
|
131
|
+
margin-inline-start: 0;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
.v-input__append {
|
|
135
|
+
padding-top: 0;
|
|
125
136
|
}
|
|
137
|
+
|
|
126
138
|
}
|
|
127
139
|
.v-field__input {
|
|
128
140
|
display: flex;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
$font-size: 12px !default; // основной шрифт приложения
|
|
2
2
|
$input-height: 28px !default; // высота атомарного элемента ui (button, input)
|
|
3
|
+
$icon-height: 24px !default; // размеры обычной иконки
|
|
3
4
|
$border-radius: 4px !default; // радиус скругления атомарного элемента ui
|
|
4
5
|
$chip-height: 20px !default; // высота элемента chip
|
|
5
6
|
$toolbar-height: 44px !default; // высота тулбара
|
|
@@ -24,6 +25,7 @@ $shadow-4: 0px 16px 20px 0px rgba(0, 0, 0, 0.20);
|
|
|
24
25
|
--toolbar-height: #{$toolbar-height};
|
|
25
26
|
--toolbar-border-radius: #{$toolbar-border-radius};
|
|
26
27
|
--pager-height: #{$pager-height};
|
|
28
|
+
--icon-height: #{$icon-height};
|
|
27
29
|
--shadow-1: #{$shadow-1};
|
|
28
30
|
--shadow-2: #{$shadow-2};
|
|
29
31
|
--shadow-3: #{$shadow-3};
|
package/dist/types/dialogs.d.ts
CHANGED
|
@@ -64,6 +64,7 @@ export interface IModalInfo {
|
|
|
64
64
|
height: string | number;
|
|
65
65
|
noModal?: boolean;
|
|
66
66
|
};
|
|
67
|
+
help?: boolean;
|
|
67
68
|
/* eslint-disable-next-line @typescript-eslint/no-explicit-any */
|
|
68
69
|
resolveFunction?: (data?: any) => void;
|
|
69
70
|
/**
|
|
@@ -144,6 +145,7 @@ export class InfoDialog extends Dialog {
|
|
|
144
145
|
minimizable?: boolean;
|
|
145
146
|
description?: string;
|
|
146
147
|
hostObject?: IHostObject;
|
|
148
|
+
help?: boolean;
|
|
147
149
|
constructor(data: {
|
|
148
150
|
title: string;
|
|
149
151
|
component: string;
|
|
@@ -157,6 +159,7 @@ export class InfoDialog extends Dialog {
|
|
|
157
159
|
minimizable?: boolean;
|
|
158
160
|
description?: string;
|
|
159
161
|
hostObject?: IHostObject;
|
|
162
|
+
help?: boolean;
|
|
160
163
|
});
|
|
161
164
|
}
|
|
162
165
|
|
|
@@ -187,6 +190,7 @@ export class SelectDialog<T> {
|
|
|
187
190
|
okTitle?: string;
|
|
188
191
|
cancelTitle?: string;
|
|
189
192
|
hostObject?: IHostObject;
|
|
193
|
+
help?: boolean;
|
|
190
194
|
constructor(data: {
|
|
191
195
|
title: string;
|
|
192
196
|
component: string;
|
|
@@ -207,6 +211,7 @@ export class SelectDialog<T> {
|
|
|
207
211
|
okTitle?: string;
|
|
208
212
|
cancelTitle?: string;
|
|
209
213
|
hostObject?: IHostObject;
|
|
214
|
+
help?: boolean;
|
|
210
215
|
});
|
|
211
216
|
}
|
|
212
217
|
|
|
@@ -242,6 +247,7 @@ export class CreateEditDialog<T> {
|
|
|
242
247
|
noModal?: boolean;
|
|
243
248
|
okTitle?: string;
|
|
244
249
|
cancelTitle?: string;
|
|
250
|
+
help?: boolean;
|
|
245
251
|
constructor(data: {
|
|
246
252
|
title: string;
|
|
247
253
|
component: string;
|
|
@@ -274,5 +280,6 @@ export class CreateEditDialog<T> {
|
|
|
274
280
|
noModal?: boolean;
|
|
275
281
|
okTitle?: string;
|
|
276
282
|
cancelTitle?: string;
|
|
283
|
+
help?: boolean;
|
|
277
284
|
});
|
|
278
285
|
}
|