alytus-ff 0.1.27 → 0.1.29
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/README.md +2 -0
- package/dist/App.vue.d.ts +283 -12
- package/dist/alytus-ff.css +1 -0
- package/dist/alytus-ff.js +3664 -337
- package/dist/alytus-ff.umd.cjs +6 -1
- package/dist/components/Dialog/ErrorDialog.vue.d.ts +45 -0
- package/dist/components/Form/ColorPicker.vue.d.ts +56 -0
- package/dist/components/Form/FieldLabel.vue.d.ts +41 -0
- package/dist/components/Nav/UserMenu.vue.d.ts +0 -12
- package/dist/components/Profile/ProfileEditDialog.vue.d.ts +183 -0
- package/dist/components/Profile/ProfileInfo.vue.d.ts +61 -0
- package/dist/index.d.ts +17 -4
- package/dist/modules/i18n.d.ts +3 -0
- package/dist/types/Account.d.ts +3 -0
- package/dist/types/Api.d.ts +3 -0
- package/dist/types/Base.d.ts +1 -0
- package/dist/types/Culture.d.ts +17 -0
- package/dist/types/Form.d.ts +6 -0
- package/dist/types/Workspace.d.ts +6 -0
- package/dist/utils/ApiUtil.d.ts +2 -0
- package/dist/utils/ArrayUtil.d.ts +2 -0
- package/dist/utils/CookieUtil.d.ts +1 -1
- package/dist/utils/CultureUtil.d.ts +5 -0
- package/dist/utils/FormatUtil.d.ts +3 -0
- package/dist/utils/LangUtil.d.ts +6 -0
- package/dist/utils/LazyUtil.d.ts +1 -0
- package/package.json +9 -7
- package/src/components/Dialog/ErrorDialog.vue +49 -0
- package/src/components/Form/ColorPicker.vue +37 -0
- package/src/components/Form/FieldLabel.vue +32 -0
- package/src/components/Nav/UserMenu.vue +8 -10
- package/src/components/Profile/ProfileEditDialog.vue +175 -0
- package/src/components/Profile/ProfileInfo.vue +69 -0
- package/dist/style.css +0 -1
package/README.md
CHANGED
|
@@ -12,6 +12,8 @@ docker-compose up
|
|
|
12
12
|
npm login
|
|
13
13
|
npm whoami
|
|
14
14
|
|
|
15
|
+
docker exec -it alytusff_vue_1 npm run build
|
|
16
|
+
|
|
15
17
|
npm version patch # Increment patch version (1.0.0 → 1.0.1)
|
|
16
18
|
npm version minor # Increment minor version (1.0.0 → 1.1.0)
|
|
17
19
|
npm version major # Increment major version (1.0.0 → 2.0.0)
|
package/dist/App.vue.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { IAccount } from './types/Account.ts';
|
|
|
4
4
|
declare const _default: import('vue').DefineComponent<{}, {
|
|
5
5
|
showDialog: import('vue').Ref<boolean, boolean>;
|
|
6
6
|
showDialog2: import('vue').Ref<boolean, boolean>;
|
|
7
|
+
showError: import('vue').Ref<boolean, boolean>;
|
|
7
8
|
baseUrl: import('vue').Ref<string, string>;
|
|
8
9
|
currentUser: import('vue').Ref<{
|
|
9
10
|
name: string;
|
|
@@ -53,7 +54,289 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
53
54
|
value: string;
|
|
54
55
|
icon: string;
|
|
55
56
|
}[]>;
|
|
57
|
+
profileEditDlg: import('vue').Ref<boolean, boolean>;
|
|
56
58
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
59
|
+
ProfileEditDialog: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
60
|
+
showDialog: {
|
|
61
|
+
type: BooleanConstructor;
|
|
62
|
+
required: true;
|
|
63
|
+
};
|
|
64
|
+
currentUser: {
|
|
65
|
+
type: import('vue').PropType<IUser>;
|
|
66
|
+
required: true;
|
|
67
|
+
};
|
|
68
|
+
fallbackLocale: {
|
|
69
|
+
type: StringConstructor;
|
|
70
|
+
required: true;
|
|
71
|
+
};
|
|
72
|
+
systemLanguages: {
|
|
73
|
+
type: import('vue').PropType<string[]>;
|
|
74
|
+
required: true;
|
|
75
|
+
};
|
|
76
|
+
}>, {
|
|
77
|
+
formData: import('vue').Ref<{
|
|
78
|
+
name: string;
|
|
79
|
+
surname: string | null;
|
|
80
|
+
initials: string;
|
|
81
|
+
color: string;
|
|
82
|
+
avatar_thumb: string | null;
|
|
83
|
+
email: string;
|
|
84
|
+
locale: string;
|
|
85
|
+
}, IUser | {
|
|
86
|
+
name: string;
|
|
87
|
+
surname: string | null;
|
|
88
|
+
initials: string;
|
|
89
|
+
color: string;
|
|
90
|
+
avatar_thumb: string | null;
|
|
91
|
+
email: string;
|
|
92
|
+
locale: string;
|
|
93
|
+
}>;
|
|
94
|
+
localErrors: import('vue').Ref<import('./index.ts').LocalErrors, import('./index.ts').LocalErrors>;
|
|
95
|
+
languages: import('vue').ComputedRef<import('./index.ts').Language[]>;
|
|
96
|
+
lang: import('vue').Ref<string, string>;
|
|
97
|
+
identity: import('vue').Ref<"color" | "photo", "color" | "photo">;
|
|
98
|
+
identities: import('vue').ComputedRef<{
|
|
99
|
+
value: string;
|
|
100
|
+
text: string;
|
|
101
|
+
}[]>;
|
|
102
|
+
loading: import('vue').Ref<boolean, boolean>;
|
|
103
|
+
saveClick: () => void;
|
|
104
|
+
}, {}, {}, {
|
|
105
|
+
mdiPalette(): string;
|
|
106
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "close"[], "close", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
107
|
+
showDialog: {
|
|
108
|
+
type: BooleanConstructor;
|
|
109
|
+
required: true;
|
|
110
|
+
};
|
|
111
|
+
currentUser: {
|
|
112
|
+
type: import('vue').PropType<IUser>;
|
|
113
|
+
required: true;
|
|
114
|
+
};
|
|
115
|
+
fallbackLocale: {
|
|
116
|
+
type: StringConstructor;
|
|
117
|
+
required: true;
|
|
118
|
+
};
|
|
119
|
+
systemLanguages: {
|
|
120
|
+
type: import('vue').PropType<string[]>;
|
|
121
|
+
required: true;
|
|
122
|
+
};
|
|
123
|
+
}>> & Readonly<{
|
|
124
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
125
|
+
}>, {}, {}, {
|
|
126
|
+
ColorPicker: any;
|
|
127
|
+
UserAvatar: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
128
|
+
user: {
|
|
129
|
+
type: import('vue').PropType<IUser>;
|
|
130
|
+
required: true;
|
|
131
|
+
};
|
|
132
|
+
size: {
|
|
133
|
+
type: NumberConstructor;
|
|
134
|
+
required: true;
|
|
135
|
+
};
|
|
136
|
+
baseUrl: {
|
|
137
|
+
type: StringConstructor;
|
|
138
|
+
required: true;
|
|
139
|
+
};
|
|
140
|
+
}>, {
|
|
141
|
+
fullName: import('vue').ComputedRef<string>;
|
|
142
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
143
|
+
user: {
|
|
144
|
+
type: import('vue').PropType<IUser>;
|
|
145
|
+
required: true;
|
|
146
|
+
};
|
|
147
|
+
size: {
|
|
148
|
+
type: NumberConstructor;
|
|
149
|
+
required: true;
|
|
150
|
+
};
|
|
151
|
+
baseUrl: {
|
|
152
|
+
type: StringConstructor;
|
|
153
|
+
required: true;
|
|
154
|
+
};
|
|
155
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
156
|
+
AccountAvatar: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
157
|
+
item: {
|
|
158
|
+
type: import('vue').PropType<IAccount>;
|
|
159
|
+
required: true;
|
|
160
|
+
};
|
|
161
|
+
size: {
|
|
162
|
+
type: NumberConstructor;
|
|
163
|
+
default: number;
|
|
164
|
+
};
|
|
165
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
166
|
+
item: {
|
|
167
|
+
type: import('vue').PropType<IAccount>;
|
|
168
|
+
required: true;
|
|
169
|
+
};
|
|
170
|
+
size: {
|
|
171
|
+
type: NumberConstructor;
|
|
172
|
+
default: number;
|
|
173
|
+
};
|
|
174
|
+
}>> & Readonly<{}>, {
|
|
175
|
+
size: number;
|
|
176
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
177
|
+
FieldLabel: any;
|
|
178
|
+
CustomDialog: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
179
|
+
value: {
|
|
180
|
+
type: BooleanConstructor;
|
|
181
|
+
required: true;
|
|
182
|
+
};
|
|
183
|
+
title: {
|
|
184
|
+
type: StringConstructor;
|
|
185
|
+
default: null;
|
|
186
|
+
};
|
|
187
|
+
persistent: {
|
|
188
|
+
type: BooleanConstructor;
|
|
189
|
+
default: boolean;
|
|
190
|
+
};
|
|
191
|
+
noFooter: {
|
|
192
|
+
type: BooleanConstructor;
|
|
193
|
+
default: boolean;
|
|
194
|
+
};
|
|
195
|
+
noFullScreen: {
|
|
196
|
+
type: BooleanConstructor;
|
|
197
|
+
default: boolean;
|
|
198
|
+
};
|
|
199
|
+
fullHeight: {
|
|
200
|
+
type: BooleanConstructor;
|
|
201
|
+
default: boolean;
|
|
202
|
+
};
|
|
203
|
+
}>, {}, {}, {}, {
|
|
204
|
+
mdiClose(): string;
|
|
205
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
206
|
+
value: {
|
|
207
|
+
type: BooleanConstructor;
|
|
208
|
+
required: true;
|
|
209
|
+
};
|
|
210
|
+
title: {
|
|
211
|
+
type: StringConstructor;
|
|
212
|
+
default: null;
|
|
213
|
+
};
|
|
214
|
+
persistent: {
|
|
215
|
+
type: BooleanConstructor;
|
|
216
|
+
default: boolean;
|
|
217
|
+
};
|
|
218
|
+
noFooter: {
|
|
219
|
+
type: BooleanConstructor;
|
|
220
|
+
default: boolean;
|
|
221
|
+
};
|
|
222
|
+
noFullScreen: {
|
|
223
|
+
type: BooleanConstructor;
|
|
224
|
+
default: boolean;
|
|
225
|
+
};
|
|
226
|
+
fullHeight: {
|
|
227
|
+
type: BooleanConstructor;
|
|
228
|
+
default: boolean;
|
|
229
|
+
};
|
|
230
|
+
}>> & Readonly<{}>, {
|
|
231
|
+
title: string;
|
|
232
|
+
persistent: boolean;
|
|
233
|
+
noFooter: boolean;
|
|
234
|
+
noFullScreen: boolean;
|
|
235
|
+
fullHeight: boolean;
|
|
236
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
237
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
238
|
+
ProfileInfo: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
239
|
+
currentUser: {
|
|
240
|
+
type: import('vue').PropType<IUser>;
|
|
241
|
+
required: true;
|
|
242
|
+
};
|
|
243
|
+
baseUrl: {
|
|
244
|
+
type: StringConstructor;
|
|
245
|
+
required: true;
|
|
246
|
+
};
|
|
247
|
+
}>, {
|
|
248
|
+
langauge: import('vue').ComputedRef<string>;
|
|
249
|
+
fullName: import('vue').ComputedRef<string>;
|
|
250
|
+
}, {}, {}, {
|
|
251
|
+
mdiPencil(): string;
|
|
252
|
+
mdiKeyVariant(): string;
|
|
253
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("edit-profile" | "change-password")[], "edit-profile" | "change-password", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
254
|
+
currentUser: {
|
|
255
|
+
type: import('vue').PropType<IUser>;
|
|
256
|
+
required: true;
|
|
257
|
+
};
|
|
258
|
+
baseUrl: {
|
|
259
|
+
type: StringConstructor;
|
|
260
|
+
required: true;
|
|
261
|
+
};
|
|
262
|
+
}>> & Readonly<{
|
|
263
|
+
"onEdit-profile"?: ((...args: any[]) => any) | undefined;
|
|
264
|
+
"onChange-password"?: ((...args: any[]) => any) | undefined;
|
|
265
|
+
}>, {}, {}, {
|
|
266
|
+
UserAvatar: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
267
|
+
user: {
|
|
268
|
+
type: import('vue').PropType<IUser>;
|
|
269
|
+
required: true;
|
|
270
|
+
};
|
|
271
|
+
size: {
|
|
272
|
+
type: NumberConstructor;
|
|
273
|
+
required: true;
|
|
274
|
+
};
|
|
275
|
+
baseUrl: {
|
|
276
|
+
type: StringConstructor;
|
|
277
|
+
required: true;
|
|
278
|
+
};
|
|
279
|
+
}>, {
|
|
280
|
+
fullName: import('vue').ComputedRef<string>;
|
|
281
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
282
|
+
user: {
|
|
283
|
+
type: import('vue').PropType<IUser>;
|
|
284
|
+
required: true;
|
|
285
|
+
};
|
|
286
|
+
size: {
|
|
287
|
+
type: NumberConstructor;
|
|
288
|
+
required: true;
|
|
289
|
+
};
|
|
290
|
+
baseUrl: {
|
|
291
|
+
type: StringConstructor;
|
|
292
|
+
required: true;
|
|
293
|
+
};
|
|
294
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
295
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
296
|
+
ErrorDialog: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
297
|
+
show: {
|
|
298
|
+
type: BooleanConstructor;
|
|
299
|
+
default: boolean;
|
|
300
|
+
};
|
|
301
|
+
errorTitle: {
|
|
302
|
+
type: StringConstructor;
|
|
303
|
+
default: null;
|
|
304
|
+
};
|
|
305
|
+
errorDetails: {
|
|
306
|
+
type: StringConstructor;
|
|
307
|
+
default: null;
|
|
308
|
+
};
|
|
309
|
+
errorCode: {
|
|
310
|
+
type: StringConstructor;
|
|
311
|
+
default: null;
|
|
312
|
+
};
|
|
313
|
+
}>, {
|
|
314
|
+
title: import('vue').ComputedRef<string>;
|
|
315
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "close"[], "close", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
316
|
+
show: {
|
|
317
|
+
type: BooleanConstructor;
|
|
318
|
+
default: boolean;
|
|
319
|
+
};
|
|
320
|
+
errorTitle: {
|
|
321
|
+
type: StringConstructor;
|
|
322
|
+
default: null;
|
|
323
|
+
};
|
|
324
|
+
errorDetails: {
|
|
325
|
+
type: StringConstructor;
|
|
326
|
+
default: null;
|
|
327
|
+
};
|
|
328
|
+
errorCode: {
|
|
329
|
+
type: StringConstructor;
|
|
330
|
+
default: null;
|
|
331
|
+
};
|
|
332
|
+
}>> & Readonly<{
|
|
333
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
334
|
+
}>, {
|
|
335
|
+
show: boolean;
|
|
336
|
+
errorTitle: string;
|
|
337
|
+
errorDetails: string;
|
|
338
|
+
errorCode: string;
|
|
339
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
57
340
|
PageSubtitle: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
58
341
|
subtitle: {
|
|
59
342
|
type: StringConstructor;
|
|
@@ -230,12 +513,6 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
230
513
|
type: StringConstructor;
|
|
231
514
|
required: true;
|
|
232
515
|
};
|
|
233
|
-
texts: {
|
|
234
|
-
type: import('vue').PropType<{
|
|
235
|
-
[key: string]: string;
|
|
236
|
-
}>;
|
|
237
|
-
required: true;
|
|
238
|
-
};
|
|
239
516
|
multipleAccounts: {
|
|
240
517
|
type: BooleanConstructor;
|
|
241
518
|
default: boolean;
|
|
@@ -284,12 +561,6 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
284
561
|
type: StringConstructor;
|
|
285
562
|
required: true;
|
|
286
563
|
};
|
|
287
|
-
texts: {
|
|
288
|
-
type: import('vue').PropType<{
|
|
289
|
-
[key: string]: string;
|
|
290
|
-
}>;
|
|
291
|
-
required: true;
|
|
292
|
-
};
|
|
293
564
|
multipleAccounts: {
|
|
294
565
|
type: BooleanConstructor;
|
|
295
566
|
default: boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.ff-page-title,.ff-page-subtitle{display:flex;justify-content:space-between;align-items:center}.ff-page-title .v-btn,.ff-page-subtitle .v-btn{text-transform:unset;letter-spacing:.045em}.ff-dialog.v-dialog .close-btn{margin-right:-4px}@media screen and (min-width:600px){.ff-dialog.v-dialog .close-btn{margin-right:-12px}}.ff-dialog.v-dialog>.v-overlay__content>.v-card>.v-card-item{padding-left:16px;padding-right:16px}@media screen and (min-width:600px){.ff-dialog.v-dialog>.v-overlay__content>.v-card>.v-card-item{padding-left:24px;padding-right:24px}}@media screen and (min-width:960px){.ff-dialog.v-dialog>.v-overlay__content>.v-card>.v-card-item{padding-left:36px;padding-right:36px}}.ff-dialog.v-dialog>.v-overlay__content>.v-card>.v-card-text{padding-left:16px;padding-right:16px}@media screen and (min-width:600px){.ff-dialog.v-dialog>.v-overlay__content>.v-card>.v-card-text{padding-left:24px;padding-right:24px}}@media screen and (min-width:960px){.ff-dialog.v-dialog>.v-overlay__content>.v-card>.v-card-text{padding-left:36px;padding-right:36px}}.ff-dialog.v-dialog>.v-overlay__content>.v-card>.v-card-actions{padding:12px 16px 16px}@media screen and (min-width:600px){.ff-dialog.v-dialog>.v-overlay__content>.v-card>.v-card-actions{padding-left:24px;padding-right:24px}}@media screen and (min-width:960px){.ff-dialog.v-dialog>.v-overlay__content>.v-card>.v-card-actions{padding-left:36px;padding-right:36px}}.ff-full-height{height:100%}.ff-avatar{background:linear-gradient(180deg,#3c3c3c,#4f4f4f 25%,#787878)!important;color:#fff!important}.avatar-96-s{font-size:32px!important;font-weight:500!important}.avatar-96-l{font-size:26px!important;font-weight:500!important}.avatar-32-s{font-size:14px!important;font-weight:500!important;line-height:normal!important;letter-spacing:1px}.avatar-32-l{font-size:11px!important;font-weight:500!important;line-height:normal!important;letter-spacing:1px}.ff-user-btn .v-avatar{margin-right:8px}.ff-user-btn .v-avatar .v-icon{width:32px;height:32px}.ff-user-btn-text{display:flex;flex-direction:column;gap:2px;letter-spacing:.05em}.ff-user-btn-text .name{text-align:left;font-weight:600;text-transform:none}.ff-user-btn-text .comp{text-align:left;text-transform:none;font-size:12px;color:#424242}.ff-user-manu-card{min-width:280px}.ff-user-manu-card .v-card-item__prepend{padding-right:16px}.ff-user-manu-card .v-card-item__prepend .v-icon{width:32px;height:32px}.ff-user-manu-card .v-card-actions .v-btn{line-height:36px;text-transform:unset;letter-spacing:.05em}.ff-user-manu-card .as-avatar{width:32px;height:32px;display:flex;justify-content:center;align-items:center;margin-right:16px}.prof-hor .profile{display:flex;align-items:center}.prof-hor .profile .avatar{margin-right:32px}.prof-hor .profile .avatar .v-avatar{font-size:32px;font-weight:500}.prof-hor .profile .details .name{font-size:22px;font-weight:500}.prof-hor .profile .details .email{font-size:15px;font-weight:400;color:#424242}.prof-hor .buttons{text-align:right}.prof-hor .buttons .v-btn{text-transform:unset}.prof-hor .buttons>div{margin-right:-16px}.prof-hor.v-row{margin-bottom:48px}.prof-dlg{max-width:600px}.ff-simple-form .avatar-edit .avatar{position:absolute;width:96px;left:calc(50% - 48px)}.ff-simple-form .avatar-edit .options{height:96px;display:flex;align-items:center}.ff-simple-form .avatar-edit .options>div{width:50%;text-align:center}.ff-simple-form .avatar-edit .options>div:first-child{padding-right:56px}.ff-simple-form .avatar-edit .options>div:last-child{padding-left:56px}.ff-simple-form .avatar-edit .options>div>div{display:inline-block}.ff-simple-form .avatar{display:inline-block}.ff-simple-form .avatar>div.img-upl-box{height:96px;width:96px;display:flex;align-items:center;justify-content:center;border-radius:50%;color:#838383;font-size:14px;font-weight:500}.ff-simple-form .avatar>div.img-upl-btns{position:absolute;top:0;left:96px;width:100%;height:100%;display:flex;align-items:flex-start;justify-content:center;flex-direction:column}@media screen and (min-width:960px){.ff-simple-form .avatar>div.img-upl-btns{display:none}}.ff-simple-form .fld-lbl{color:#212121;font-size:15px;line-height:22px}.ff-simple-form .fld-lbl.fld-err{color:rgb(var(--v-theme-error))}.ff-simple-form .v-field__input{padding-top:10px;padding-bottom:10px;min-height:44px}.ff-simple-form .v-select .v-field{padding-right:0}.ff-simple-form .v-select .v-field .v-field__append-inner .v-icon{margin-left:0}.ff-simple-form .v-btn{text-transform:none;letter-spacing:.045em}.ff-simple-form .v-btn.enable-wrap{height:44px;border-color:#00000061;font-weight:400}.ff-simple-form .v-btn.enable-wrap .v-btn__content{white-space:break-spaces}.ff-simple-form .v-btn.enable-wrap:hover{border-color:#000000de}.col-fld .v-field__input{padding-top:6px;padding-bottom:6px;min-height:44px}.ff-col-pckr>DIV{width:310px;position:relative}.ff-col-pckr>DIV .v-list-item{float:left;width:48px;padding-left:8px!important;padding-right:8px!important}.ff-col-pckr>DIV .v-list-item .v-list-item-title{padding-left:0;padding-right:0}.ff-col-pckr>DIV:after{content:"";clear:both;display:table}
|