ui-core-abv 0.1.55 → 0.1.82
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/fesm2022/ui-core-abv.mjs +965 -234
- package/fesm2022/ui-core-abv.mjs.map +1 -1
- package/lib/components/dynamic-form/form.models.d.ts +7 -2
- package/lib/components/dynamic-form/steps-form/step-tabs/step-tabs.component.d.ts +3 -3
- package/lib/components/inputs/date-picker/date-picker.component.d.ts +20 -1
- package/lib/components/inputs/file-input/file-input.component.d.ts +53 -0
- package/lib/components/inputs/phone-input/phone-countries.data.d.ts +8 -0
- package/lib/components/inputs/phone-input/phone-input.component.d.ts +72 -0
- package/lib/components/inputs/select/select.component.d.ts +2 -1
- package/lib/components/pool-options/pool-options.component.d.ts +22 -8
- package/lib/components/table/table.component.d.ts +0 -1
- package/lib/components/table/table.models.d.ts +5 -2
- package/package.json +1 -1
- package/public-api.d.ts +3 -0
- package/src/lib/styles/_tokens.scss +3 -2
- package/src/lib/styles/_variables.scss +3 -1
|
@@ -36,16 +36,21 @@ export interface FormField {
|
|
|
36
36
|
minLength?: number;
|
|
37
37
|
maxLength?: number;
|
|
38
38
|
showCounter?: boolean;
|
|
39
|
+
monthMode?: boolean;
|
|
40
|
+
monthDay?: 'first' | 'last';
|
|
41
|
+
fileTypes?: string[] | string;
|
|
42
|
+
poolEnabledListView?: boolean;
|
|
43
|
+
poolTitle?: string;
|
|
39
44
|
sliderInterval?: number;
|
|
40
45
|
sliderMarks?: number;
|
|
41
46
|
pattern?: RegExp;
|
|
42
47
|
options?: AppSelectOption[];
|
|
43
|
-
|
|
48
|
+
multyEnabled?: boolean;
|
|
44
49
|
searchFn?: (query: string) => Observable<any[]>;
|
|
45
50
|
searchDisplayFn?: (item: any) => string;
|
|
46
51
|
searchIsEnabledFn?: (item: any) => boolean;
|
|
47
52
|
}
|
|
48
|
-
export type FieldType = 'text' | 'number' | 'date' | 'time' | 'select' | 'checkbox' | 'switch' | 'textarea' | 'pool' | 'searcher' | 'slider';
|
|
53
|
+
export type FieldType = 'text' | 'number' | 'phone' | 'date' | 'time' | 'select' | 'checkbox' | 'switch' | 'textarea' | 'pool' | 'file' | 'multyselect' | 'searcher' | 'slider';
|
|
49
54
|
export interface FormResult {
|
|
50
55
|
result: boolean;
|
|
51
56
|
form: any;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class UicStepTabsComponent {
|
|
4
4
|
tabs: string[];
|
|
5
5
|
currentTab: string;
|
|
6
6
|
navigationEnabled: boolean;
|
|
@@ -8,6 +8,6 @@ export declare class StepTabsComponent {
|
|
|
8
8
|
currentTabChange: EventEmitter<string>;
|
|
9
9
|
currentIndex: number;
|
|
10
10
|
changeTab(newTab: string): void;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicStepTabsComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicStepTabsComponent, "ui-step-tabs", never, { "tabs": { "alias": "tabs"; "required": false; }; "currentTab": { "alias": "currentTab"; "required": false; }; "navigationEnabled": { "alias": "navigationEnabled"; "required": false; }; "showStepTitle": { "alias": "showStepTitle"; "required": false; }; }, { "currentTabChange": "currentTabChange"; }, never, never, true, never>;
|
|
13
13
|
}
|
|
@@ -24,6 +24,8 @@ export declare class UicDatePickerComponent extends base {
|
|
|
24
24
|
tip: string;
|
|
25
25
|
max: string;
|
|
26
26
|
min: string;
|
|
27
|
+
justMonth: boolean;
|
|
28
|
+
monthDay: 'last' | 'first';
|
|
27
29
|
calendarTemplate: TemplateRef<any>;
|
|
28
30
|
private overlayRef;
|
|
29
31
|
months: string[];
|
|
@@ -38,6 +40,8 @@ export declare class UicDatePickerComponent extends base {
|
|
|
38
40
|
selectedMonth: null;
|
|
39
41
|
monthWeeks: (Date | null)[][];
|
|
40
42
|
decadeRange: number[];
|
|
43
|
+
displayValue: string;
|
|
44
|
+
get inputPlaceholder(): string;
|
|
41
45
|
private readonly overlay;
|
|
42
46
|
private readonly vcr;
|
|
43
47
|
private readonly host;
|
|
@@ -60,7 +64,22 @@ export declare class UicDatePickerComponent extends base {
|
|
|
60
64
|
parseDateLimits(date: string): Date | null;
|
|
61
65
|
cleanInput(): void;
|
|
62
66
|
pickToday(): void;
|
|
67
|
+
onInputChange(event: Event): void;
|
|
68
|
+
onInputBlur(): void;
|
|
69
|
+
onInputKeydown(event: KeyboardEvent): void;
|
|
70
|
+
writeValue(value: string | null): void;
|
|
71
|
+
private applyValue;
|
|
72
|
+
private clearValue;
|
|
73
|
+
private setCurrentViewDate;
|
|
74
|
+
private formatDisplay;
|
|
75
|
+
private parseDisplay;
|
|
76
|
+
private isWithinLimits;
|
|
77
|
+
private normalizeDate;
|
|
78
|
+
private toIsoString;
|
|
79
|
+
private buildMonthDate;
|
|
80
|
+
isMonthDisabled(monthIndex: number): boolean;
|
|
81
|
+
isSelectedMonth(monthIndex: number): boolean;
|
|
63
82
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicDatePickerComponent, never>;
|
|
64
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UicDatePickerComponent, "ui-date-picker", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; }, {}, never, never, true, never>;
|
|
83
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicDatePickerComponent, "ui-date-picker", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "justMonth": { "alias": "justMonth"; "required": false; }; "monthDay": { "alias": "monthDay"; "required": false; }; }, {}, never, never, true, never>;
|
|
65
84
|
}
|
|
66
85
|
export {};
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { ButtonColor } from '../../button/button.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
type FileInputValue = {
|
|
4
|
+
name: string;
|
|
5
|
+
blob: Blob;
|
|
6
|
+
};
|
|
7
|
+
declare const base: abstract new () => {
|
|
8
|
+
value: FileInputValue[];
|
|
9
|
+
valueChange: import("@angular/core").EventEmitter<FileInputValue[]>;
|
|
10
|
+
onChange: (value: FileInputValue[]) => void;
|
|
11
|
+
onTouched: () => void;
|
|
12
|
+
writeValue(obj: FileInputValue[]): void;
|
|
13
|
+
registerOnChange(fn: any): void;
|
|
14
|
+
registerOnTouched(fn: any): void;
|
|
15
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
16
|
+
notifyChange(value: FileInputValue[]): void;
|
|
17
|
+
};
|
|
18
|
+
export declare class UicFileInputComponent extends base {
|
|
19
|
+
icon: string;
|
|
20
|
+
iconColor: ButtonColor;
|
|
21
|
+
internalIcon: string;
|
|
22
|
+
size: 's' | 'm' | 'l';
|
|
23
|
+
label: string;
|
|
24
|
+
error: string;
|
|
25
|
+
tip: string;
|
|
26
|
+
disabled: boolean;
|
|
27
|
+
loading: boolean;
|
|
28
|
+
multy: boolean;
|
|
29
|
+
fileTypes: string[] | string | null;
|
|
30
|
+
private fileInput?;
|
|
31
|
+
value: FileInputValue[];
|
|
32
|
+
files: FileInputValue[];
|
|
33
|
+
isDragging: boolean;
|
|
34
|
+
get acceptAttribute(): string | null;
|
|
35
|
+
openFileBrowser(): void;
|
|
36
|
+
onNativeInputChange(event: Event): void;
|
|
37
|
+
removeFile(index: number): void;
|
|
38
|
+
onDragOver(event: DragEvent): void;
|
|
39
|
+
onDragLeave(event: DragEvent): void;
|
|
40
|
+
getIcon(file: FileInputValue): string;
|
|
41
|
+
onDrop(event: DragEvent): void;
|
|
42
|
+
writeValue(value: FileInputValue[] | null): void;
|
|
43
|
+
private processIncomingFiles;
|
|
44
|
+
private mergeFiles;
|
|
45
|
+
private applyFiles;
|
|
46
|
+
private filterAllowedFiles;
|
|
47
|
+
private matchesAcceptTokens;
|
|
48
|
+
private isExcelType;
|
|
49
|
+
private isWordType;
|
|
50
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicFileInputComponent, never>;
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicFileInputComponent, "ui-file-input", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "multy": { "alias": "multy"; "required": false; }; "fileTypes": { "alias": "fileTypes"; "required": false; }; }, {}, never, ["[counter]"], true, never>;
|
|
52
|
+
}
|
|
53
|
+
export {};
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { ButtonColor } from '../../button/button.component';
|
|
3
|
+
import { PhoneCountry } from './phone-countries.data';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export interface UicPhoneInputValue {
|
|
6
|
+
countryIso2: string;
|
|
7
|
+
dialCode: string;
|
|
8
|
+
nationalNumber: string;
|
|
9
|
+
internationalNumber: string;
|
|
10
|
+
}
|
|
11
|
+
type PhoneInputModel = UicPhoneInputValue | null;
|
|
12
|
+
declare const base: abstract new () => {
|
|
13
|
+
value: PhoneInputModel;
|
|
14
|
+
valueChange: import("@angular/core").EventEmitter<PhoneInputModel>;
|
|
15
|
+
onChange: (value: PhoneInputModel) => void;
|
|
16
|
+
onTouched: () => void;
|
|
17
|
+
writeValue(obj: PhoneInputModel): void;
|
|
18
|
+
registerOnChange(fn: any): void;
|
|
19
|
+
registerOnTouched(fn: any): void;
|
|
20
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
21
|
+
notifyChange(value: PhoneInputModel): void;
|
|
22
|
+
};
|
|
23
|
+
export declare class UicPhoneInputComponent extends base implements OnChanges, OnDestroy {
|
|
24
|
+
icon: string;
|
|
25
|
+
iconColor: ButtonColor;
|
|
26
|
+
internalIcon: string;
|
|
27
|
+
size: 's' | 'm' | 'l';
|
|
28
|
+
label: string;
|
|
29
|
+
error: string;
|
|
30
|
+
tip: string;
|
|
31
|
+
placeholder: string;
|
|
32
|
+
disabled: boolean;
|
|
33
|
+
loading: boolean;
|
|
34
|
+
preferredCountries: string[];
|
|
35
|
+
flagPath: string;
|
|
36
|
+
set countries(value: PhoneCountry[]);
|
|
37
|
+
get countries(): PhoneCountry[];
|
|
38
|
+
private readonly searchInput?;
|
|
39
|
+
private readonly dropdownTemplate?;
|
|
40
|
+
dropdownOpen: boolean;
|
|
41
|
+
searchTerm: string;
|
|
42
|
+
phoneNumber: string;
|
|
43
|
+
selectedCountry: PhoneCountry;
|
|
44
|
+
filteredCountries: PhoneCountry[];
|
|
45
|
+
readonly dropdownId: string;
|
|
46
|
+
private _countries;
|
|
47
|
+
private readonly host;
|
|
48
|
+
private readonly overlay;
|
|
49
|
+
private readonly vcr;
|
|
50
|
+
private overlayRef?;
|
|
51
|
+
private readonly overlayPositions;
|
|
52
|
+
constructor();
|
|
53
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
54
|
+
ngOnDestroy(): void;
|
|
55
|
+
writeValue(value: PhoneInputModel): void;
|
|
56
|
+
toggleDropdown(): void;
|
|
57
|
+
selectCountry(country: PhoneCountry): void;
|
|
58
|
+
onNumberInput(event: Event): void;
|
|
59
|
+
onBlur(): void;
|
|
60
|
+
onSearchChange(event: Event): void;
|
|
61
|
+
clearSearch(): void;
|
|
62
|
+
getFlagUrl(iso: string): string;
|
|
63
|
+
private emitValue;
|
|
64
|
+
private openDropdown;
|
|
65
|
+
private closeDropdown;
|
|
66
|
+
private resetSearch;
|
|
67
|
+
private resetCountryLists;
|
|
68
|
+
private getDefaultCountry;
|
|
69
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UicPhoneInputComponent, never>;
|
|
70
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicPhoneInputComponent, "ui-phone-input", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "internalIcon": { "alias": "internalIcon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "preferredCountries": { "alias": "preferredCountries"; "required": false; }; "flagPath": { "alias": "flagPath"; "required": false; }; "countries": { "alias": "countries"; "required": false; }; }, {}, never, never, true, never>;
|
|
71
|
+
}
|
|
72
|
+
export {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { SimpleChanges, TemplateRef } from '@angular/core';
|
|
2
2
|
import { ConnectedPosition } from '@angular/cdk/overlay';
|
|
3
|
+
import { ButtonColor } from '../../button/button.component';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
type selectId = number | string | null;
|
|
5
6
|
declare const base: abstract new () => {
|
|
@@ -15,7 +16,7 @@ declare const base: abstract new () => {
|
|
|
15
16
|
};
|
|
16
17
|
export declare class UicSelectComponent extends base {
|
|
17
18
|
icon: string;
|
|
18
|
-
iconColor:
|
|
19
|
+
iconColor: ButtonColor;
|
|
19
20
|
internalIcon: string;
|
|
20
21
|
size: 's' | 'm' | 'l';
|
|
21
22
|
label: string;
|
|
@@ -1,16 +1,21 @@
|
|
|
1
|
+
import { SimpleChanges } from '@angular/core';
|
|
1
2
|
import { AppSelectOption } from '../inputs/select/select.component';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
type selectId = number | string;
|
|
5
|
+
type selectedDetailed = {
|
|
6
|
+
id: selectId;
|
|
7
|
+
detail?: string;
|
|
8
|
+
};
|
|
4
9
|
declare const base: abstract new () => {
|
|
5
|
-
value:
|
|
6
|
-
valueChange: import("@angular/core").EventEmitter<
|
|
7
|
-
onChange: (value:
|
|
10
|
+
value: selectedDetailed[];
|
|
11
|
+
valueChange: import("@angular/core").EventEmitter<selectedDetailed[]>;
|
|
12
|
+
onChange: (value: selectedDetailed[]) => void;
|
|
8
13
|
onTouched: () => void;
|
|
9
|
-
writeValue(obj:
|
|
14
|
+
writeValue(obj: selectedDetailed[]): void;
|
|
10
15
|
registerOnChange(fn: any): void;
|
|
11
16
|
registerOnTouched(fn: any): void;
|
|
12
17
|
setDisabledState?(isDisabled: boolean): void;
|
|
13
|
-
notifyChange(value:
|
|
18
|
+
notifyChange(value: selectedDetailed[]): void;
|
|
14
19
|
};
|
|
15
20
|
export declare class UicPoolOptionsComponent extends base {
|
|
16
21
|
icon: string;
|
|
@@ -22,11 +27,20 @@ export declare class UicPoolOptionsComponent extends base {
|
|
|
22
27
|
disabled: boolean;
|
|
23
28
|
loading: boolean;
|
|
24
29
|
multy: boolean;
|
|
30
|
+
enabledListView: boolean;
|
|
31
|
+
listViewTitle: string;
|
|
25
32
|
options: AppSelectOption[];
|
|
26
|
-
|
|
33
|
+
private selectedItems;
|
|
34
|
+
get selectedValues(): selectedDetailed[];
|
|
27
35
|
updateOptions(id: selectId): void;
|
|
28
|
-
|
|
36
|
+
updateDetail(id: selectId, detail: string): void;
|
|
37
|
+
writeValue(value?: selectedDetailed[] | selectId[] | null): void;
|
|
38
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
39
|
+
isSelected(id: selectId): boolean;
|
|
40
|
+
getItemName(id: selectId): selectId;
|
|
41
|
+
private emitSelectionChange;
|
|
42
|
+
private normalizeIncomingValue;
|
|
29
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicPoolOptionsComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UicPoolOptionsComponent, "ui-pool-options", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "multy": { "alias": "multy"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, never, true, never>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicPoolOptionsComponent, "ui-pool-options", never, { "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "error": { "alias": "error"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "multy": { "alias": "multy"; "required": false; }; "enabledListView": { "alias": "enabledListView"; "required": false; }; "listViewTitle": { "alias": "listViewTitle"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, {}, never, never, true, never>;
|
|
31
45
|
}
|
|
32
46
|
export {};
|
|
@@ -30,7 +30,6 @@ export declare class UicTableComponent {
|
|
|
30
30
|
sortAsc: boolean;
|
|
31
31
|
filter: string;
|
|
32
32
|
page: number;
|
|
33
|
-
ngOnInit(): void;
|
|
34
33
|
getValue(data: TableRowData[], key: string): string;
|
|
35
34
|
getMoreActions(actions: TableButton[]): ActionMenuOption[];
|
|
36
35
|
getFontColor(data: TableRowData[], key: string): string;
|
|
@@ -7,11 +7,14 @@ export interface TableColums {
|
|
|
7
7
|
type: ColumnTypes;
|
|
8
8
|
sortEnable?: boolean;
|
|
9
9
|
actions?: TableButton[];
|
|
10
|
-
moreActions?:
|
|
10
|
+
moreActions?: {
|
|
11
|
+
icon?: string;
|
|
12
|
+
actions: TableButton[];
|
|
13
|
+
}[];
|
|
11
14
|
}
|
|
12
15
|
export interface TableButton {
|
|
13
16
|
key: string;
|
|
14
|
-
color
|
|
17
|
+
color?: ButtonColor;
|
|
15
18
|
icon?: string;
|
|
16
19
|
text?: string;
|
|
17
20
|
type?: ButtonType;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -3,10 +3,13 @@ export * from './lib/components/inputs/checkbox/checkbox.component';
|
|
|
3
3
|
export * from './lib/components/inputs/toggle-button/toggle-button.component';
|
|
4
4
|
export * from './lib/components/dynamic-form/form-wrapper/form-wrapper.component';
|
|
5
5
|
export * from './lib/components/dynamic-form/steps-form/steps-form.component';
|
|
6
|
+
export * from './lib/components/dynamic-form/steps-form/step-tabs/step-tabs.component';
|
|
6
7
|
export * from './lib/components/inputs/input/input.component';
|
|
7
8
|
export * from './lib/components/inputs/date-picker/date-picker.component';
|
|
8
9
|
export * from './lib/components/inputs/uic-searcher/uic-searcher.component';
|
|
10
|
+
export * from './lib/components/inputs/file-input/file-input.component';
|
|
9
11
|
export * from './lib/components/inputs/select/select.component';
|
|
12
|
+
export * from './lib/components/inputs/phone-input/phone-input.component';
|
|
10
13
|
export * from './lib/components/inputs/multy-select/multy-select.component';
|
|
11
14
|
export * from './lib/components/inputs/time-picker/time-picker.component';
|
|
12
15
|
export * from './lib/components/table/table.component';
|
|
@@ -45,8 +45,7 @@
|
|
|
45
45
|
|
|
46
46
|
--button-radius: 8px;
|
|
47
47
|
--input-radius: 8px;
|
|
48
|
-
|
|
49
|
-
|
|
48
|
+
|
|
50
49
|
--border-width-thin: 1px;
|
|
51
50
|
--border-width-thick: 2px;
|
|
52
51
|
|
|
@@ -54,9 +53,11 @@
|
|
|
54
53
|
--table-header-background: var(--grey-200);
|
|
55
54
|
--table-header-color: var(--grey-900);
|
|
56
55
|
--table-border-color: var(--grey-300);
|
|
56
|
+
|
|
57
57
|
--table-spacing-ref: 10px;
|
|
58
58
|
--design-size-ref:10px;
|
|
59
59
|
--form-ref: 10px;
|
|
60
|
+
--input-label-space: calc( var(--form-ref) * .8 );
|
|
60
61
|
|
|
61
62
|
--disabled-color: var(--grey-700);
|
|
62
63
|
--disabled-color-placeholder: var(--grey-300);
|