@ardium-ui/ui 5.0.0-alpha.91 → 5.0.0-alpha.93
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/ardium-ui-ui.mjs +1440 -1210
- package/fesm2022/ardium-ui-ui.mjs.map +1 -1
- package/lib/_internal/disablable-component.d.ts +3 -3
- package/lib/calendar/abstract-calendar.d.ts +9 -3
- package/lib/calendar/calendar.types.d.ts +6 -0
- package/lib/chip/deletable-chip/deletable-chip.component.d.ts +1 -0
- package/lib/file-inputs/file-input/file-input.component.d.ts +3 -3
- package/lib/file-inputs/file-input/file-input.directives.d.ts +3 -3
- package/lib/file-inputs/file-input/file-input.module.d.ts +1 -1
- package/lib/inputs/password-input/password-input.component.d.ts +2 -2
- package/lib/radio/radio-group.component.d.ts +1 -0
- package/package.json +1 -1
- package/prebuilt-themes/default/buttons/fab.css +6 -3
- package/prebuilt-themes/default/buttons/fab.css.map +1 -1
- package/prebuilt-themes/default/checkbox-list.css +9 -0
- package/prebuilt-themes/default/checkbox-list.css.map +1 -1
- package/prebuilt-themes/default/checkbox.css +9 -3
- package/prebuilt-themes/default/checkbox.css.map +1 -1
- package/prebuilt-themes/default/chips.css +16 -10
- package/prebuilt-themes/default/chips.css.map +1 -1
- package/prebuilt-themes/default/core.css +1 -2
- package/prebuilt-themes/default/core.css.map +1 -1
- package/prebuilt-themes/default/form-field-frame.css.map +1 -1
- package/prebuilt-themes/default/inputs/autocomplete-input.css +6 -0
- package/prebuilt-themes/default/inputs/autocomplete-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/color-input.css +3 -0
- package/prebuilt-themes/default/inputs/color-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/date-input.css +5 -0
- package/prebuilt-themes/default/inputs/date-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/digit-input.css +6 -0
- package/prebuilt-themes/default/inputs/digit-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/file-input.css +6 -0
- package/prebuilt-themes/default/inputs/file-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/hex-input.css +6 -0
- package/prebuilt-themes/default/inputs/hex-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/input.css +6 -0
- package/prebuilt-themes/default/inputs/input.css.map +1 -1
- package/prebuilt-themes/default/inputs/number-input.css +9 -2
- package/prebuilt-themes/default/inputs/number-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/password-input.css +3 -0
- package/prebuilt-themes/default/inputs/password-input.css.map +1 -1
- package/prebuilt-themes/default/radio.css +12 -0
- package/prebuilt-themes/default/radio.css.map +1 -1
- package/prebuilt-themes/default/segment.css +15 -9
- package/prebuilt-themes/default/segment.css.map +1 -1
- package/prebuilt-themes/default/select.css +3 -0
- package/prebuilt-themes/default/select.css.map +1 -1
- package/prebuilt-themes/default/slider.css +32 -6
- package/prebuilt-themes/default/slider.css.map +1 -1
- package/prebuilt-themes/default/stars.css +15 -5
- package/prebuilt-themes/default/stars.css.map +1 -1
- package/themes/default/_clear-button.scss +5 -0
- package/themes/default/_mixins.scss +5 -3
- package/themes/default/checkbox-list.scss +14 -0
- package/themes/default/checkbox.scss +10 -1
- package/themes/default/chips.scss +47 -38
- package/themes/default/core.scss +2 -3
- package/themes/default/inputs/_shared.scss +6 -1
- package/themes/default/inputs/autocomplete-input.scss +3 -1
- package/themes/default/inputs/date-input.scss +3 -1
- package/themes/default/inputs/digit-input.scss +10 -0
- package/themes/default/inputs/file-input.scss +3 -1
- package/themes/default/inputs/hex-input.scss +3 -1
- package/themes/default/inputs/input.scss +3 -1
- package/themes/default/inputs/number-input.scss +16 -6
- package/themes/default/inputs/password-input.scss +3 -1
- package/themes/default/radio.scss +19 -0
- package/themes/default/segment.scss +36 -23
- package/themes/default/slider.scss +22 -2
- package/themes/default/stars.scss +19 -2
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { BooleanLike } from '@ardium-ui/devkit';
|
|
2
1
|
import * as i0 from "@angular/core";
|
|
3
2
|
export interface _DisablableComponentDefaults {
|
|
4
3
|
readonly: boolean;
|
|
@@ -11,7 +10,8 @@ export declare abstract class _DisablableComponentBase {
|
|
|
11
10
|
/**
|
|
12
11
|
* Whether the component is read-only. Defines the `readonly` host attribute and `ard-readonly` host class. Coercible into a boolean.
|
|
13
12
|
*/
|
|
14
|
-
readonly readonly: import("@angular/core").
|
|
13
|
+
readonly readonly: import("@angular/core").WritableSignal<boolean>;
|
|
14
|
+
set _readonly(v: any);
|
|
15
15
|
/**
|
|
16
16
|
* Whether the component is disabled. Defines the `disabled` host attribute and `ard-disabled` host class. Coercible into a boolean.
|
|
17
17
|
*/
|
|
@@ -20,5 +20,5 @@ export declare abstract class _DisablableComponentBase {
|
|
|
20
20
|
get _readonlyHostAttribute(): boolean;
|
|
21
21
|
get _disabledHostAttribute(): boolean;
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<_DisablableComponentBase, never>;
|
|
23
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<_DisablableComponentBase, never, never, { "
|
|
23
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<_DisablableComponentBase, never, never, { "_readonly": { "alias": "readonly"; "required": false; }; "_disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
24
24
|
}
|
|
@@ -6,6 +6,9 @@ import { ArdCalendarDefaults } from './calendar.defaults';
|
|
|
6
6
|
import { ArdCalendarDaysViewHeaderTemplateDirective, ArdCalendarDayTemplateDirective, ArdCalendarFloatingMonthTemplateDirective, ArdCalendarMonthsViewHeaderTemplateDirective, ArdCalendarMonthTemplateDirective, ArdCalendarWeekdayTemplateDirective, ArdCalendarYearsViewHeaderTemplateDirective, ArdCalendarYearTemplateDirective } from './calendar.directives';
|
|
7
7
|
import { _CalendarTemplateRepositoryDirective } from './calendar.internal-directives';
|
|
8
8
|
import { ArdCalendarFilterFn, ArdCalendarView, ArdMultiCalendarLocation } from './calendar.types';
|
|
9
|
+
import { DaysViewComponent } from './views/days-view/days-view.component';
|
|
10
|
+
import { MonthsViewComponent } from './views/months-view/months-view.component';
|
|
11
|
+
import { YearsViewComponent } from './views/years-view/years-view.component';
|
|
9
12
|
import * as i0 from "@angular/core";
|
|
10
13
|
export declare abstract class _AbstractCalendar<T> extends _FormFieldComponentBase implements OnChanges {
|
|
11
14
|
abstract readonly componentId: string;
|
|
@@ -31,9 +34,12 @@ export declare abstract class _AbstractCalendar<T> extends _FormFieldComponentBa
|
|
|
31
34
|
readonly autoFocus: import("@angular/core").InputSignalWithTransform<boolean, BooleanLike>;
|
|
32
35
|
readonly staticHeight: import("@angular/core").InputSignalWithTransform<boolean, BooleanLike>;
|
|
33
36
|
readonly hideFloatingMonth: import("@angular/core").InputSignalWithTransform<boolean, BooleanLike>;
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
+
readonly daysViewComponent: Signal<DaysViewComponent>;
|
|
38
|
+
readonly monthsViewComponent: Signal<MonthsViewComponent>;
|
|
39
|
+
readonly yearsViewComponent: Signal<YearsViewComponent>;
|
|
40
|
+
openDaysView(): void;
|
|
41
|
+
openMonthsView(): void;
|
|
42
|
+
openYearsView(): void;
|
|
37
43
|
readonly selectionStart: import("@angular/core").WritableSignal<Date | null>;
|
|
38
44
|
readonly selectionEnd: import("@angular/core").WritableSignal<Date | null>;
|
|
39
45
|
abstract readonly endDate: Signal<Date | null>;
|
|
@@ -28,6 +28,8 @@ export interface CalendarYearsViewHeaderContext {
|
|
|
28
28
|
prevPage: () => void;
|
|
29
29
|
openMonthsView: () => void;
|
|
30
30
|
openDaysView: () => void;
|
|
31
|
+
onFocus: (event: FocusEvent) => void;
|
|
32
|
+
onBlur: (event: FocusEvent) => void;
|
|
31
33
|
canGoToNextPage: boolean;
|
|
32
34
|
canGoToPreviousPage: boolean;
|
|
33
35
|
hideNextPageButton: boolean;
|
|
@@ -41,6 +43,8 @@ export interface CalendarMonthsViewHeaderContext {
|
|
|
41
43
|
prevPage: () => void;
|
|
42
44
|
openDaysView: () => void;
|
|
43
45
|
openYearsView: () => void;
|
|
46
|
+
onFocus: (event: FocusEvent) => void;
|
|
47
|
+
onBlur: (event: FocusEvent) => void;
|
|
44
48
|
canGoToNextPage: boolean;
|
|
45
49
|
canGoToPreviousPage: boolean;
|
|
46
50
|
hideNextPageButton: boolean;
|
|
@@ -56,6 +60,8 @@ export interface CalendarDaysViewHeaderContext {
|
|
|
56
60
|
prevYear: () => void;
|
|
57
61
|
openYearsView: () => void;
|
|
58
62
|
openMonthsView: () => void;
|
|
63
|
+
onFocus: (event: FocusEvent) => void;
|
|
64
|
+
onBlur: (event: FocusEvent) => void;
|
|
59
65
|
canGoToNextPage: boolean;
|
|
60
66
|
canGoToPreviousPage: boolean;
|
|
61
67
|
hideNextPageButton: boolean;
|
|
@@ -17,6 +17,7 @@ export declare class ArdiumDeletableChipComponent extends _FocusableComponentBas
|
|
|
17
17
|
readonly wrapperClasses: import("@angular/core").InputSignal<string>;
|
|
18
18
|
readonly ngClasses: import("@angular/core").Signal<string>;
|
|
19
19
|
readonly deleteEvent: import("@angular/core").OutputEmitterRef<MouseEvent>;
|
|
20
|
+
emitDelete(event: MouseEvent): void;
|
|
20
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<ArdiumDeletableChipComponent, never>;
|
|
21
22
|
static ɵcmp: i0.ɵɵComponentDeclaration<ArdiumDeletableChipComponent, "ard-deletable-chip", never, { "deleteButtonTitle": { "alias": "deleteButtonTitle"; "required": false; "isSignal": true; }; "contentAlignment": { "alias": "contentAlignment"; "required": false; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "compact": { "alias": "compact"; "required": false; "isSignal": true; }; "wrapperClasses": { "alias": "wrapperClasses"; "required": false; "isSignal": true; }; }, { "deleteEvent": "delete"; }, never, ["*"], false, never>;
|
|
22
23
|
}
|
|
@@ -4,7 +4,7 @@ import { FormElementAppearance, FormElementVariant } from '../../types/theming.t
|
|
|
4
4
|
import { _FileInputComponentBase } from '../file-input-base';
|
|
5
5
|
import { FileInputBrowseContext, FileInputFileAmountContext, FileInputFilesContext } from '../file-input-types';
|
|
6
6
|
import { ArdFileInputDefaults } from './file-input.defaults';
|
|
7
|
-
import { ArdFileInputPlaceholderTemplateDirective, ArdFileInputPrefixTemplateDirective, ArdFileInputSuffixTemplateDirective, ArdiumFileInputDragoverContentTemplateDirective,
|
|
7
|
+
import { ArdFileInputPlaceholderTemplateDirective, ArdFileInputPrefixTemplateDirective, ArdFileInputSuffixTemplateDirective, ArdiumFileInputDragoverContentTemplateDirective, ArdiumFileInputIdleContentTemplateDirective, ArdiumFileInputUploadIconTemplateDirective, ArdiumFileInputUploadedContentTemplateDirective } from './file-input.directives';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class ArdiumFileInputComponent extends _FileInputComponentBase {
|
|
10
10
|
protected readonly _DEFAULTS: ArdFileInputDefaults;
|
|
@@ -30,10 +30,10 @@ export declare class ArdiumFileInputComponent extends _FileInputComponentBase {
|
|
|
30
30
|
readonly idleTemplate: import("@angular/core").Signal<ArdiumFileInputIdleContentTemplateDirective | undefined>;
|
|
31
31
|
readonly dragoverTemplate: import("@angular/core").Signal<ArdiumFileInputDragoverContentTemplateDirective | undefined>;
|
|
32
32
|
readonly uploadedTemplate: import("@angular/core").Signal<ArdiumFileInputUploadedContentTemplateDirective | undefined>;
|
|
33
|
-
readonly
|
|
33
|
+
readonly uploadIconTemplate: import("@angular/core").Signal<ArdiumFileInputUploadIconTemplateDirective | undefined>;
|
|
34
34
|
getIdleContext(): FileInputBrowseContext;
|
|
35
35
|
getDragoverContext(): FileInputFileAmountContext;
|
|
36
36
|
getUploadedContext(): FileInputFilesContext;
|
|
37
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<ArdiumFileInputComponent, never>;
|
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ArdiumFileInputComponent, "ard-file-input", never, { "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "inputAttrs": { "alias": "inputAttrs"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "clearButtonTitle": { "alias": "clearButtonTitle"; "required": false; "isSignal": true; }; }, { "clearEvent": "clear"; }, ["placeholderTemplate", "prefixTemplate", "suffixTemplate", "idleTemplate", "dragoverTemplate", "uploadedTemplate", "
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ArdiumFileInputComponent, "ard-file-input", never, { "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "inputAttrs": { "alias": "inputAttrs"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "clearButtonTitle": { "alias": "clearButtonTitle"; "required": false; "isSignal": true; }; }, { "clearEvent": "clear"; }, ["placeholderTemplate", "prefixTemplate", "suffixTemplate", "idleTemplate", "dragoverTemplate", "uploadedTemplate", "uploadIconTemplate"], never, false, never>;
|
|
39
39
|
}
|
|
@@ -37,9 +37,9 @@ export declare class ArdiumFileInputUploadedContentTemplateDirective {
|
|
|
37
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<ArdiumFileInputUploadedContentTemplateDirective, never>;
|
|
38
38
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ArdiumFileInputUploadedContentTemplateDirective, "ard-file-input > ng-template[ard-dropped-content-tmp]", never, {}, {}, never, never, false, never>;
|
|
39
39
|
}
|
|
40
|
-
export declare class
|
|
40
|
+
export declare class ArdiumFileInputUploadIconTemplateDirective {
|
|
41
41
|
template: TemplateRef<undefined>;
|
|
42
42
|
constructor(template: TemplateRef<undefined>);
|
|
43
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
44
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
43
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArdiumFileInputUploadIconTemplateDirective, never>;
|
|
44
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ArdiumFileInputUploadIconTemplateDirective, "ard-file-input > ng-template[ard-upload-icon-tmp]", never, {}, {}, never, never, false, never>;
|
|
45
45
|
}
|
|
@@ -8,6 +8,6 @@ import * as i6 from "../../icon/icon.module";
|
|
|
8
8
|
import * as i7 from "@ardium-ui/devkit";
|
|
9
9
|
export declare class ArdiumFileInputModule {
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<ArdiumFileInputModule, never>;
|
|
11
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ArdiumFileInputModule, [typeof i1.ArdiumFileInputComponent, typeof i2.
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ArdiumFileInputModule, [typeof i1.ArdiumFileInputComponent, typeof i2.ArdiumFileInputUploadIconTemplateDirective, typeof i2.ArdiumFileInputUploadedContentTemplateDirective, typeof i2.ArdiumFileInputDragoverContentTemplateDirective, typeof i2.ArdiumFileInputIdleContentTemplateDirective, typeof i2.ArdFileInputSuffixTemplateDirective, typeof i2.ArdFileInputPrefixTemplateDirective, typeof i2.ArdFileInputPlaceholderTemplateDirective], [typeof i3.CommonModule, typeof i4.ArdiumFormFieldFrameModule, typeof i5._ClearButtonModule, typeof i6.ArdiumIconModule, typeof i7.ArdiumFilePipesModule], [typeof i1.ArdiumFileInputComponent, typeof i2.ArdiumFileInputUploadIconTemplateDirective, typeof i2.ArdiumFileInputUploadedContentTemplateDirective, typeof i2.ArdiumFileInputDragoverContentTemplateDirective, typeof i2.ArdiumFileInputIdleContentTemplateDirective, typeof i2.ArdFileInputSuffixTemplateDirective, typeof i2.ArdFileInputPrefixTemplateDirective, typeof i2.ArdFileInputPlaceholderTemplateDirective]>;
|
|
12
12
|
static ɵinj: i0.ɵɵInjectorDeclaration<ArdiumFileInputModule>;
|
|
13
13
|
}
|
|
@@ -34,8 +34,8 @@ export declare class ArdiumPasswordInputComponent extends _FormFieldComponentBas
|
|
|
34
34
|
readonly ngClasses: import("@angular/core").Signal<string>;
|
|
35
35
|
readonly inputAttrs: import("@angular/core").InputSignal<Record<string, any>>;
|
|
36
36
|
writeValue(v: any): void;
|
|
37
|
-
protected _writeValue(v: string | null
|
|
38
|
-
readonly value: import("@angular/core").ModelSignal<
|
|
37
|
+
protected _writeValue(v: string | null): boolean;
|
|
38
|
+
readonly value: import("@angular/core").ModelSignal<string | null>;
|
|
39
39
|
onInput(newVal: string): void;
|
|
40
40
|
protected _emitChange(): void;
|
|
41
41
|
onChange(event: Event): void;
|
|
@@ -25,6 +25,7 @@ export declare class ArdiumRadioGroupComponent extends _FormFieldComponentBase i
|
|
|
25
25
|
/** Name of the radio button group. All radio buttons inside this group will use this name. */
|
|
26
26
|
readonly name: import("@angular/core").Signal<string>;
|
|
27
27
|
private _updateRadioButtonNames;
|
|
28
|
+
private _updateReadonlyRadioButtons;
|
|
28
29
|
private _handleBlurEvents;
|
|
29
30
|
private _handleFocusEvents;
|
|
30
31
|
private _handleChangeEvents;
|
package/package.json
CHANGED
|
@@ -286,12 +286,15 @@
|
|
|
286
286
|
.ard-fab ard-icon {
|
|
287
287
|
font-size: 1em;
|
|
288
288
|
}
|
|
289
|
+
.ard-fab.ard-appearance-transparent {
|
|
290
|
+
--_ard-focus-overlay-scale: 0.2;
|
|
291
|
+
}
|
|
289
292
|
.ard-fab.ard-appearance-transparent > .ard-focus-overlay {
|
|
290
|
-
transform: scale(
|
|
293
|
+
transform: scale(var(--_ard-focus-overlay-scale));
|
|
291
294
|
transition: opacity 0.2s ease, transform 0.1s ease;
|
|
292
295
|
}
|
|
293
|
-
.ard-fab.ard-appearance-transparent:hover > .ard-focus-overlay, .ard-fab.ard-appearance-transparent:focus > .ard-focus-overlay {
|
|
294
|
-
|
|
296
|
+
.ard-fab.ard-appearance-transparent:hover > .ard-focus-overlay, .ard-fab.ard-appearance-transparent:focus > .ard-focus-overlay, .ard-fab.ard-appearance-transparent:focus-visible > .ard-focus-overlay {
|
|
297
|
+
--_ard-focus-overlay-scale: 1;
|
|
295
298
|
}
|
|
296
299
|
ard-fab.ard-disabled > .ard-fab {
|
|
297
300
|
pointer-events: none;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/buttons/fab.scss","../../../../../projects/ui/src/themes/default/buttons/_button-mixins.scss","../../../../../projects/ui/src/themes/default/_coloring.scss","../../../../../projects/ui/src/themes/default/_mixins.scss","../../../../../projects/ui/src/themes/_variables.scss"],"names":[],"mappings":"AAGA;EAGE;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;;EAGF;ICdA;IACA,QDeI;ICdJ,SDeI;ICdJ;IACA,aDeI;ICdJ,WDaI;ICZJ;IACA;IACA;IACA;IACA;IDeE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EEjDF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EDjHF;IACE;IEhBF;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;IFSE;;EAGA;IACE;;EAIF;IACE,SDJA;;ECSF;IACE,SDTA;;ECaF;IACE,SDbA;;ECiBJ;IAEE;IACA;IACA;;EAEA;IACE;;EAGJ;IAEE,YGnEC;IHoED;IACA,YGnCY;;EHqCZ;IAEE,YGtCW;;EHwCb;IACE,YGxCW;;EH2Cf;IACE,YGhFC;IHiFD;IACA;;EAEA;IACE;;EAGJ;IACE,YGzFC;IH0FD;IACA;IAMA;;EAJA;IACE;;EAIF;IAEE;IACA;;EAGJ;IAEE;IACA;IACA;;EAEA;IACE;;EAEF;IACE;;EAIJ;IACE;;EAEA;IACE;;EDpEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;;
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/buttons/fab.scss","../../../../../projects/ui/src/themes/default/buttons/_button-mixins.scss","../../../../../projects/ui/src/themes/default/_coloring.scss","../../../../../projects/ui/src/themes/default/_mixins.scss","../../../../../projects/ui/src/themes/_variables.scss"],"names":[],"mappings":"AAGA;EAGE;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;;EAGF;ICdA;IACA,QDeI;ICdJ,SDeI;ICdJ;IACA,aDeI;ICdJ,WDaI;ICZJ;IACA;IACA;IACA;IACA;IDeE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EEjDF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EDjHF;IACE;IEhBF;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;IFSE;;EAGA;IACE;;EAIF;IACE,SDJA;;ECSF;IACE,SDTA;;ECaF;IACE,SDbA;;ECiBJ;IAEE;IACA;IACA;;EAEA;IACE;;EAGJ;IAEE,YGnEC;IHoED;IACA,YGnCY;;EHqCZ;IAEE,YGtCW;;EHwCb;IACE,YGxCW;;EH2Cf;IACE,YGhFC;IHiFD;IACA;;EAEA;IACE;;EAGJ;IACE,YGzFC;IH0FD;IACA;IAMA;;EAJA;IACE;;EAIF;IAEE;IACA;;EAGJ;IAEE;IACA;IACA;;EAEA;IACE;;EAEF;IACE;;EAIJ;IACE;;EAEA;IACE;;EDpEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;;EAEF;IGhDF;;EACA;IACE;IAEA,YACE;;EAOF;IACE;;EHyCF;ICkDF;IACA,SDjDM;ICkDN;;EAEA;IACE,SDpDI;ICqDJ;;EAKA;AAAA;IAEE,SD7DE;;EC+DJ;IACE;;ED5DF;IACE;;EAEA;IACE;;;AAMR;EACE;IACE;;EAEF;IACE;;EAEF;IACE","file":"fab.css"}
|
|
@@ -87,6 +87,15 @@
|
|
|
87
87
|
.ard-checkbox-list.ard-align-right-split .ard-checkbox-list__item, .ard-checkbox-list.ard-align-right-clumped .ard-checkbox-list__item {
|
|
88
88
|
flex-direction: row-reverse;
|
|
89
89
|
}
|
|
90
|
+
.ard-disabled .ard-checkbox-list .ard-focus-overlay, .ard-readonly .ard-checkbox-list .ard-focus-overlay {
|
|
91
|
+
display: none;
|
|
92
|
+
}
|
|
93
|
+
.ard-disabled > .ard-checkbox-list {
|
|
94
|
+
pointer-events: none;
|
|
95
|
+
}
|
|
96
|
+
.ard-readonly > .ard-checkbox-list {
|
|
97
|
+
cursor: var(--ard-checkbox-list-readonly-cursor, var(--ard-readonly-cursor, default));
|
|
98
|
+
}
|
|
90
99
|
}
|
|
91
100
|
|
|
92
101
|
/*# sourceMappingURL=checkbox-list.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../../../projects/ui/src/themes/default/checkbox-list.scss","../../../../projects/ui/src/themes/default/_mixins.scss","../../../../projects/ui/src/themes/_variables.scss"],"names":[],"mappings":"AAGA;EACE;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../../projects/ui/src/themes/default/checkbox-list.scss","../../../../projects/ui/src/themes/default/_mixins.scss","../../../../projects/ui/src/themes/_variables.scss"],"names":[],"mappings":"AAGA;EACE;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAIF;IACE;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IClCJ;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;ID2BM,YE/CE;;EFkDF;IACE;;EAIF;IACE;;EAGJ;IACE;IACA;;EAGE;IACE;;EAIN;IACE;;EAEA;IACE;;EAIN;IACE;;EAEA;IACE;IACA;;EAOA;IACE;;EAOF;IACE;;EAMJ;IACE;;EAMF;IACE;;EAIN;IACE;;EAEF;IACE","file":"checkbox-list.css"}
|
|
@@ -337,16 +337,22 @@
|
|
|
337
337
|
.ard-checkbox:active .ard-focus-overlay {
|
|
338
338
|
opacity: 20%;
|
|
339
339
|
}
|
|
340
|
-
.ard-disabled .ard-checkbox {
|
|
340
|
+
.ard-disabled > .ard-checkbox {
|
|
341
341
|
pointer-events: none;
|
|
342
342
|
opacity: var(--ard-checkbox-unselected-disabled-opacity, 40%);
|
|
343
343
|
}
|
|
344
|
-
.ard-disabled .ard-checkbox.ard-checkbox-selected {
|
|
344
|
+
.ard-disabled > .ard-checkbox.ard-checkbox-selected {
|
|
345
345
|
opacity: var(--ard-checkbox-selected-disabled-opacity, 50%);
|
|
346
346
|
}
|
|
347
|
-
.ard-disabled .ard-checkbox.ard-checkbox-indeterminate {
|
|
347
|
+
.ard-disabled > .ard-checkbox.ard-checkbox-indeterminate {
|
|
348
348
|
opacity: var(--ard-checkbox-indeterminate-disabled-opacity, 50%);
|
|
349
349
|
}
|
|
350
|
+
.ard-readonly > .ard-checkbox {
|
|
351
|
+
cursor: var(--ard-checkbox-readonly-cursor, var(--ard-readonly-cursor, default));
|
|
352
|
+
}
|
|
353
|
+
.ard-readonly > .ard-checkbox .ard-focus-overlay {
|
|
354
|
+
display: none;
|
|
355
|
+
}
|
|
350
356
|
}
|
|
351
357
|
|
|
352
358
|
/*# sourceMappingURL=checkbox.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../../../projects/ui/src/themes/default/checkbox.scss","../../../../projects/ui/src/themes/default/_coloring.scss","../../../../projects/ui/src/themes/default/_mixins.scss"],"names":[],"mappings":"AAIA;EAGE;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../../projects/ui/src/themes/default/checkbox.scss","../../../../projects/ui/src/themes/default/_coloring.scss","../../../../projects/ui/src/themes/default/_mixins.scss"],"names":[],"mappings":"AAIA;EAGE;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAKF;IAGE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;ECjCF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EA1IF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EDvGA;IACE;;EAGF;IACE;IACA;IACA;IACA;IACA;;EAEF;IEpCF;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;IF6BI;IACA;;EAGF;IACE;;EAIA;IACE;;EAIF;IACE;;EAKN;IACE;IACA;;EAEA;IACE;;EAEF;IACE;;EAIJ;IACE;;EAEA;IACE","file":"checkbox.css"}
|
|
@@ -249,6 +249,9 @@
|
|
|
249
249
|
.ard-chip-wrapper .ard-clear-btn-wrapper:active .ard-focus-overlay {
|
|
250
250
|
opacity: 15%;
|
|
251
251
|
}
|
|
252
|
+
.ard-chip-wrapper .ard-disabled .ard-clear-btn-wrapper, .ard-chip-wrapper .ard-readonly .ard-clear-btn-wrapper {
|
|
253
|
+
pointer-events: none;
|
|
254
|
+
}
|
|
252
255
|
.ard-chip-wrapper.ard-variant-rounded, .ard-chip-wrapper.ard-variant-semirounded {
|
|
253
256
|
--ard-variant-border-radius: 8px;
|
|
254
257
|
}
|
|
@@ -279,10 +282,10 @@
|
|
|
279
282
|
display: flex;
|
|
280
283
|
align-items: center;
|
|
281
284
|
}
|
|
282
|
-
.ard-chip-wrapper.ard-chip-selectable:hover > .ard-focus-overlay, .ard-chip-wrapper.ard-chip-selectable:focus > .ard-focus-overlay {
|
|
285
|
+
:not(.ard-disabled):not(.ard-readonly) > .ard-chip-wrapper.ard-chip-selectable:hover > .ard-focus-overlay, :not(.ard-disabled):not(.ard-readonly) > .ard-chip-wrapper.ard-chip-selectable:focus > .ard-focus-overlay {
|
|
283
286
|
opacity: var(--ard-chip-selectable-hover-overlay-opacity, 7.5%);
|
|
284
287
|
}
|
|
285
|
-
.ard-chip-wrapper.ard-chip-selectable:active > .ard-focus-overlay {
|
|
288
|
+
:not(.ard-disabled):not(.ard-readonly) > .ard-chip-wrapper.ard-chip-selectable:active > .ard-focus-overlay {
|
|
286
289
|
opacity: var(--ard-chip-selectable-active-overlay-opacity, 20%);
|
|
287
290
|
}
|
|
288
291
|
.ard-chip-wrapper.ard-chip-selectable .ard-chip-selection-icon {
|
|
@@ -327,10 +330,10 @@
|
|
|
327
330
|
opacity: 0;
|
|
328
331
|
background: var(--ard-cmpcl--bg-colored);
|
|
329
332
|
}
|
|
330
|
-
.ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable:hover > .ard-focus-overlay, .ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable:focus > .ard-focus-overlay, .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable:hover > .ard-focus-overlay, .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable:focus > .ard-focus-overlay {
|
|
333
|
+
:not(.ard-disabled):not(.ard-readonly) > .ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable:hover > .ard-focus-overlay, :not(.ard-disabled):not(.ard-readonly) > .ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable:focus > .ard-focus-overlay, :not(.ard-disabled):not(.ard-readonly) > .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable:hover > .ard-focus-overlay, :not(.ard-disabled):not(.ard-readonly) > .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable:focus > .ard-focus-overlay {
|
|
331
334
|
opacity: var(--ard-chip-outlined-hover-overlay-opacity, 4%);
|
|
332
335
|
}
|
|
333
|
-
.ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable:active > .ard-focus-overlay, .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable:active > .ard-focus-overlay {
|
|
336
|
+
:not(.ard-disabled):not(.ard-readonly) > .ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable:active > .ard-focus-overlay, :not(.ard-disabled):not(.ard-readonly) > .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable:active > .ard-focus-overlay {
|
|
334
337
|
opacity: var(--ard-chip-outlined-active-overlay-opacity, 10%);
|
|
335
338
|
}
|
|
336
339
|
.ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable.ard-chip-selected, .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable.ard-chip-selected {
|
|
@@ -340,16 +343,16 @@
|
|
|
340
343
|
.ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable.ard-chip-selected > .ard-focus-overlay, .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable.ard-chip-selected > .ard-focus-overlay {
|
|
341
344
|
opacity: var(--ard-chip-outlined-selected-overlay-opacity, 12%);
|
|
342
345
|
}
|
|
343
|
-
.ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable.ard-chip-selected:hover > .ard-focus-overlay, .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable.ard-chip-selected:hover > .ard-focus-overlay {
|
|
346
|
+
:not(.ard-disabled):not(.ard-readonly) > .ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable.ard-chip-selected:hover > .ard-focus-overlay, :not(.ard-disabled):not(.ard-readonly) > .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable.ard-chip-selected:hover > .ard-focus-overlay {
|
|
344
347
|
opacity: var(--ard-chip-outlined-selected-hover-overlay-opacity, 17%);
|
|
345
348
|
}
|
|
346
|
-
.ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable.ard-chip-selected:focus > .ard-focus-overlay, .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable.ard-chip-selected:focus > .ard-focus-overlay {
|
|
349
|
+
:not(.ard-disabled):not(.ard-readonly) > .ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable.ard-chip-selected:focus > .ard-focus-overlay, :not(.ard-disabled):not(.ard-readonly) > .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable.ard-chip-selected:focus > .ard-focus-overlay {
|
|
347
350
|
opacity: var(--ard-chip-outlined-selected-focus-overlay-opacity, 0%);
|
|
348
351
|
}
|
|
349
|
-
.ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable.ard-chip-selected:focus-visible > .ard-focus-overlay, .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable.ard-chip-selected:focus-visible > .ard-focus-overlay {
|
|
352
|
+
:not(.ard-disabled):not(.ard-readonly) > .ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable.ard-chip-selected:focus-visible > .ard-focus-overlay, :not(.ard-disabled):not(.ard-readonly) > .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable.ard-chip-selected:focus-visible > .ard-focus-overlay {
|
|
350
353
|
opacity: var(--ard-chip-outlined-selected-focus-visible-overlay-opacity, 17%);
|
|
351
354
|
}
|
|
352
|
-
.ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable.ard-chip-selected:active > .ard-focus-overlay, .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable.ard-chip-selected:active > .ard-focus-overlay {
|
|
355
|
+
:not(.ard-disabled):not(.ard-readonly) > .ard-chip-wrapper.ard-appearance-outlined.ard-chip-selectable.ard-chip-selected:active > .ard-focus-overlay, :not(.ard-disabled):not(.ard-readonly) > .ard-chip-wrapper.ard-appearance-outlined-strong.ard-chip-selectable.ard-chip-selected:active > .ard-focus-overlay {
|
|
353
356
|
opacity: var(--ard-chip-outlined-selected-active-overlay-opacity, 22%);
|
|
354
357
|
}
|
|
355
358
|
.ard-chip-wrapper.ard-appearance-outlined-strong > .ard-focus-overlay {
|
|
@@ -403,13 +406,16 @@
|
|
|
403
406
|
padding-right: var(--ard-chip-selection-icon-padding-compact, 0.25rem);
|
|
404
407
|
margin-left: var(--ard-chip-selection-icon-margin-compact, -0.25rem);
|
|
405
408
|
}
|
|
406
|
-
.ard-disabled .ard-chip-wrapper {
|
|
409
|
+
.ard-disabled > .ard-chip-wrapper {
|
|
407
410
|
pointer-events: none;
|
|
408
411
|
opacity: var(--ard-chip-disabled-opacity, 60%);
|
|
409
412
|
}
|
|
410
|
-
.ard-disabled .ard-chip-wrapper.ard-chip-selected {
|
|
413
|
+
.ard-disabled > .ard-chip-wrapper.ard-chip-selected {
|
|
411
414
|
opacity: var(--ard-chip-disabled-selected-opacity, 40%);
|
|
412
415
|
}
|
|
416
|
+
.ard-readonly > .ard-chip-wrapper {
|
|
417
|
+
cursor: var(--ard-chip-readonly-cursor, var(--ard-readonly-cursor, default));
|
|
418
|
+
}
|
|
413
419
|
}
|
|
414
420
|
|
|
415
421
|
/*# sourceMappingURL=chips.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../../../projects/ui/src/themes/default/chips.scss","../../../../projects/ui/src/themes/default/_mixins.scss","../../../../projects/ui/src/themes/_variables.scss","../../../../projects/ui/src/themes/default/_coloring.scss","../../../../projects/ui/src/themes/default/_clear-button.scss"],"names":[],"mappings":"AAKA;EAGE;IAGE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAKA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../../projects/ui/src/themes/default/chips.scss","../../../../projects/ui/src/themes/default/_mixins.scss","../../../../projects/ui/src/themes/_variables.scss","../../../../projects/ui/src/themes/default/_coloring.scss","../../../../projects/ui/src/themes/default/_clear-button.scss"],"names":[],"mappings":"AAKA;EAGE;IAGE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAKA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAKF;ICiCA;ID5BE;IACA,OE3CI;IF4CJ,YEpDC;IFqDD;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EG7DF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;ECzIF;IACE,QFmCgB;IElChB,OFkCgB;IEjChB;;EAGF;IACE;IACA;IACA,OFGK;IEFL,OF0BgB;IEzBhB,QFyBgB;IExBhB;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;;EAGF;IHvBF;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;IGgBI;;EAGF;IACE;IACA;IACA;IACA;;EAEA;IACE;IH7CN;IACA;IACA,yBACE;IG4CI;;EAKF;IACE;;EAKF;IACE;;EAKF;IACE;;EAKJ;IACE;;EHMJ;IAEE;;EAEF;IACE;;EAEF;IACE;;EDtBA;IACE;;EAEF;ICxDF;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;IDiDI,YErEI;IFsEJ;;EAGF;IACE;IACA;IACA;;EAKI;IACE;;EAIF;IACE;;EAKN;IC3FJ;IACA;IACA,yBACE;;ED2FI;IACE;;EAKN;IAEE;;EAEA;IACE;IACA;IACA,YACE;;EAIF;IACE;IACA;;EAIN;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IAEE;IACA;IACA;IACA;IACA;;EAEA;IACE,YACE;;EAGF;IACE;IACA;;EAKE;IACE;;EAIF;IACE;;EAKN;IACE;IACA;;EAEA;IACE;;EAIE;IACE;;EAIF;IACE;;EAIF;IACE;;EAIF;IACE;;EAQV;IACE;IACA;;EAEF;IACE;IACA;;EAKJ;IACE;IACA;;EAEA;IACE;IACA;;EAEF;IACE;;EAEA;IACE;;EAIN;IACE;IACA;;EAEA;IACE;IACA;;EAEF;IACE;;EAEA;IACE;;EAKN;IACE;IACA;;EAEA;IACE;;EAGF;IACE;IACA;;EAEF;IACE;IACA;;EAKN;IACE;IACA;;EAEA;IACE;;EAIJ;IACE","file":"chips.css"}
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
|
|
2
|
-
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
|
|
3
1
|
@layer ard-ui {
|
|
4
2
|
:root {
|
|
5
3
|
--ard-bg: white;
|
|
@@ -34,6 +32,7 @@
|
|
|
34
32
|
--ard-darken-overlay-ultralight: rgba(0, 0, 0, 3%);
|
|
35
33
|
--ard-font-family: "Roboto", sans-serif;
|
|
36
34
|
--ard-font-family-mono: monospace;
|
|
35
|
+
--ard-readonly-cursor: default;
|
|
37
36
|
--ard-gold: #ffc107;
|
|
38
37
|
--ard-clear-button-size: 0.9rem;
|
|
39
38
|
--ard-dropdown-button-size: 0.4rem;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../../../projects/ui/src/themes/default/core.scss"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../../projects/ui/src/themes/default/core.scss"],"names":[],"mappings":"AAEA;EACE;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;IACA;IAEA;IAEA;IAEA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;IAEA;IAEA;IACA;IACA;IACA;IACA;IACA;IAEA;IACA;IACA;IACA;IACA;IACA;IAEA;IACA;IACA;IACA;IACA;IACA;IAEA;IACA;IACA;IACA;IACA;IACA;IAEA;IACA;IACA;IACA;IACA;IACA;IAEA;IACA;IACA;IACA;IACA;IACA;IAEA;IACA;AAAA;IAGA;AAAA;IAEA;AAAA;IAEA;AAAA;IAGA;IAEA;IACA;;EAGF;IACE","file":"core.css"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../../../projects/ui/src/themes/default/form-field-frame.scss","../../../../projects/ui/src/themes/_variables.scss","../../../../projects/ui/src/themes/default/_mixins.scss"],"names":[],"mappings":"AAGA;EACE;IACE;IACA,YCoCgB;IDnChB;IACA;IACA;IACA;IACA;IACA;IACA;
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../../projects/ui/src/themes/default/form-field-frame.scss","../../../../projects/ui/src/themes/_variables.scss","../../../../projects/ui/src/themes/default/_mixins.scss"],"names":[],"mappings":"AAGA;EACE;IACE;IACA,YCoCgB;IDnChB;IACA;IACA;IACA;IACA;IACA;IACA;IEiEF;IFjCE;IACA;;EA/BA;IACE;IACA;;EAEA;IACE;;EAGJ;AAAA;IAEE;IACA;IACA;IACA;;EAEF;IACE;;EAEF;IACE;;EAIF;IACE,YCIsB;;ECC1B;IACE;IACA;IACA;;EAEA;IACE;;EAEF;IACE;;EAEF;IACE;IACA;;EAGJ;IACE;IACA;;EAEA;IACE;;EAEF;IACE;;EAGJ;IACE;IACA;;EAOF;IAEE;;EAEF;IACE;;EAEF;IACE;;EFxCA;IACE,YC/CI;IDgDJ;;EAIA;IACE;;EAIF;IACE;;EAGJ;IACE;;EAEA;IACE,YACE;;EAKR;IACE;IACA;;EAGE;IACE;;EAMF;IACE","file":"form-field-frame.css"}
|
|
@@ -85,6 +85,9 @@
|
|
|
85
85
|
padding-top: var(--ard-autocomplete-input-padding-top-compact, var(--ard-form-field-padding-top-compact, 0));
|
|
86
86
|
padding-bottom: var(--ard-autocomplete-input-padding-bottom-compact, var(--ard-form-field-padding-bottom-compact, 0));
|
|
87
87
|
}
|
|
88
|
+
.ard-readonly > .ard-autocomplete-input {
|
|
89
|
+
cursor: var(--ard-autocomplete-input-readonly-cursor, var(--ard-readonly-cursor, default));
|
|
90
|
+
}
|
|
88
91
|
.ard-autocomplete-input ard-clear-button {
|
|
89
92
|
height: var(--ard-clear-button-size);
|
|
90
93
|
width: var(--ard-clear-button-size);
|
|
@@ -149,6 +152,9 @@
|
|
|
149
152
|
.ard-autocomplete-input .ard-clear-btn-wrapper:active .ard-focus-overlay {
|
|
150
153
|
opacity: 15%;
|
|
151
154
|
}
|
|
155
|
+
.ard-autocomplete-input .ard-disabled .ard-clear-btn-wrapper, .ard-autocomplete-input .ard-readonly .ard-clear-btn-wrapper {
|
|
156
|
+
pointer-events: none;
|
|
157
|
+
}
|
|
152
158
|
.ard-autocomplete-input .ard-autocomplete {
|
|
153
159
|
display: flex;
|
|
154
160
|
align-items: center;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/autocomplete-input.scss","../../../../../projects/ui/src/themes/default/_clear-button.scss","../../../../../projects/ui/src/themes/_variables.scss","../../../../../projects/ui/src/themes/default/_mixins.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;ACGA;EAGE;IAGE;IAGA;IACA;IACA;IAWA;IAEA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;IAEA;IACA;;
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/autocomplete-input.scss","../../../../../projects/ui/src/themes/default/_clear-button.scss","../../../../../projects/ui/src/themes/_variables.scss","../../../../../projects/ui/src/themes/default/_mixins.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;ACGA;EAGE;IAGE;IAGA;IACA;IACA;IAWA;IAEA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;IAEA;IACA;;EAIF;IDpBA,QCsBI;IDrBJ;IACA;IACA;IACA;IACA;IACA,KCkBI;IDjBJ;IACA;IACA,WCgBI;IDfJ,aCiBI;IDhBJ,aCkBI;IDjBJ,cCqBI;IDpBJ,eCkBI;IDjBJ,aCgBI;IDfJ,gBCiBI;IDhBJ,OCsBI;IAKF;IACA;;ED1BF;IACE;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;;EAEF;IACE;IACA,SCMA;IDLA,OCIA;IDHA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;;EAIJ;IACE,QChCE;IDiCF,WC9BE;ID+BF,aC7BE;ID8BF,cCrBE;IDsBF,eCxBE;IDyBF,aC1BE;ID2BF,gBCzBE;;ED4BJ;IACE,QCxBE;;EChEJ;IACE,QCmCgB;IDlChB,OCkCgB;IDjChB;;EAGF;IACE;IACA;IACA,OCGK;IDFL,OC0BgB;IDzBhB,QCyBgB;IDxBhB;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;;EAGF;IEvBF;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;IFgBI;;EAGF;IACE;IACA;IACA;IACA;;EAEA;IACE;IE7CN;IACA;IACA,yBACE;IF4CI;;EAKF;IACE;;EAKF;IACE;;EAKF;IACE;;EAKJ;IACE;;EDCF;IACE;IACA;IACA;;EAIJ;IACE;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;;EAEA;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAIF;IACE;IACA","file":"autocomplete-input.css"}
|
|
@@ -72,6 +72,9 @@
|
|
|
72
72
|
.ard-color-input .ard-clear-btn-wrapper:active .ard-focus-overlay {
|
|
73
73
|
opacity: 15%;
|
|
74
74
|
}
|
|
75
|
+
.ard-color-input .ard-disabled .ard-clear-btn-wrapper, .ard-color-input .ard-readonly .ard-clear-btn-wrapper {
|
|
76
|
+
pointer-events: none;
|
|
77
|
+
}
|
|
75
78
|
.ard-color-input .ard-input-container {
|
|
76
79
|
pointer-events: none;
|
|
77
80
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/color-input.scss","../../../../../projects/ui/src/themes/default/_clear-button.scss","../../../../../projects/ui/src/themes/_variables.scss","../../../../../projects/ui/src/themes/default/_mixins.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;ACEA;EACE;IAEE;IACA;IACA;IACA;;ECNF;IACE,QCmCgB;IDlChB,OCkCgB;IDjChB;;EAGF;IACE;IACA;IACA,OCGK;IDFL,OC0BgB;IDzBhB,QCyBgB;IDxBhB;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;;EAGF;IEvBF;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;IFgBI;;EAGF;IACE;IACA;IACA;IACA;;EAEA;IACE;IE7CN;IACA;IACA,yBACE;IF4CI;;EAKF;IACE;;EAKF;IACE;;EAKF;IACE;;
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/color-input.scss","../../../../../projects/ui/src/themes/default/_clear-button.scss","../../../../../projects/ui/src/themes/_variables.scss","../../../../../projects/ui/src/themes/default/_mixins.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;ACEA;EACE;IAEE;IACA;IACA;IACA;;ECNF;IACE,QCmCgB;IDlChB,OCkCgB;IDjChB;;EAGF;IACE;IACA;IACA,OCGK;IDFL,OC0BgB;IDzBhB,QCyBgB;IDxBhB;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;;EAGF;IEvBF;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;IFgBI;;EAGF;IACE;IACA;IACA;IACA;;EAEA;IACE;IE7CN;IACA;IACA,yBACE;IF4CI;;EAKF;IACE;;EAKF;IACE;;EAKF;IACE;;EAKJ;IACE;;ED5DF;IACE;;EAEA;IACE;IACA;;EAIJ;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;;EAGF;IACE;IACA;;EAIN;IACE","file":"color-input.css"}
|
|
@@ -85,6 +85,11 @@
|
|
|
85
85
|
padding-top: var(--ard-date-input-padding-top-compact, var(--ard-form-field-padding-top-compact, 0));
|
|
86
86
|
padding-bottom: var(--ard-date-input-padding-bottom-compact, var(--ard-form-field-padding-bottom-compact, 0));
|
|
87
87
|
}
|
|
88
|
+
.ard-readonly > ard-date-input .ard-date-input,
|
|
89
|
+
.ard-readonly > ard-date-range-input .ard-date-range-input,
|
|
90
|
+
.ard-readonly > ard-multipage-date-range-input .ard-multipage-date-range-input {
|
|
91
|
+
cursor: var(--ard-date-input-readonly-cursor, var(--ard-readonly-cursor, default));
|
|
92
|
+
}
|
|
88
93
|
ard-date-input .ard-date-input .ard-date-input__value-container,
|
|
89
94
|
ard-date-range-input .ard-date-range-input .ard-date-input__value-container,
|
|
90
95
|
ard-multipage-date-range-input .ard-multipage-date-range-input .ard-date-input__value-container {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/date-input.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;ACCA;EAGE;IAGE;IAGA;IACA;IACA;IAWA;
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/date-input.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;ACCA;EAGE;IAGE;IAGA;IACA;IACA;IAWA;IAGA;;EAGF;AAAA;AAAA;IDJA,QCQI;IDPJ;IACA;IACA;IACA;IACA;IACA,KCII;IDHJ;IACA;IACA,WCEI;IDDJ,aCGI;IDFJ,aCII;IDHJ,cCOI;IDNJ,eCII;IDHJ,aCEI;IDDJ,gBCGI;IDFJ,OCQI;IAKF;IACA;;EDZF;AAAA;AAAA;IACE;IACA;IACA;IACA;IACA;IACA;;EAEA;AAAA;AAAA;IACE;IACA;IACA;IACA;;EAEF;AAAA;AAAA;IACE;IACA,SCRA;IDSA,OCVA;IDWA;IACA;IACA;IACA;IACA;IACA;;EAGF;AAAA;AAAA;IACE;IACA;IACA;IACA;IACA;IACA;;EAIJ;AAAA;AAAA;IACE,QC9CE;ID+CF,WC5CE;ID6CF,aC3CE;ID4CF,cCnCE;IDoCF,eCtCE;IDuCF,aCxCE;IDyCF,gBCvCE;;ED0CJ;AAAA;AAAA;IACE,QCtCE;;EAKF;AAAA;AAAA;IACE;;EAEF;AAAA;AAAA;IACE;IACA;;EAEF;AAAA;AAAA;IACE;IACA;IACA;;EAEA;AAAA;AAAA;IACE;IACA;IACA;;EAGF;AAAA;AAAA;IACE;IACA;IACA;;EAGJ;AAAA;AAAA;IACE;IACA;IACA;;EAKF;IACE;IACA;;EAGJ;IACE;IACA;IACA","file":"date-input.css"}
|
|
@@ -118,6 +118,12 @@
|
|
|
118
118
|
opacity: var(--ard-digit-input-disabled-opacity, 50%);
|
|
119
119
|
pointer-events: none;
|
|
120
120
|
}
|
|
121
|
+
.ard-readonly > .ard-digit-input {
|
|
122
|
+
cursor: var(--ard-digit-input-readonly-cursor, var(--ard-readonly-cursor, default));
|
|
123
|
+
}
|
|
124
|
+
.ard-readonly > .ard-digit-input .ard-digit-input__input {
|
|
125
|
+
outline: none;
|
|
126
|
+
}
|
|
121
127
|
}
|
|
122
128
|
|
|
123
129
|
/*# sourceMappingURL=digit-input.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/digit-input.scss","../../../../../projects/ui/src/themes/default/_mixins.scss"],"names":[],"mappings":"AAIA;EAGE;IAEE;IAEA;IACA;IAGA;IACA;IAEA;IACA;IAIA;;
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/digit-input.scss","../../../../../projects/ui/src/themes/default/_mixins.scss"],"names":[],"mappings":"AAIA;EAGE;IAEE;IAEA;IACA;IAGA;IACA;IAEA;IACA;IAIA;;EAIF;IACE;IACA;IACA;;EAGF;AAAA;AAAA;AAAA;IAIE;IACA;;EAEF;IAEE;IACA;;ECCF;IACE;IACA;IACA;;EAEA;IACE;;EAEF;IACE;;EAEF;IACE;IACA;;EAGJ;IACE;IACA;;EAEA;IACE;;EAEF;IACE;;EAGJ;IACE;IACA;;ED5BA;IACE;IACA;IACA;IACA;;EAEA;IACE;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA,YACE;;EAGF;IACE;IACA;;EAGF;IACE;;EAGJ;IACE;IACA;IACA;IACA;;EAIF;IACE;;EAIF;IACE;;EAEA;IACE;;EAMJ;IACE;IACA;;EAIF;IACE;IACA;;EAIJ;IACE;;EAEF;IACE;;EAEF;IACE;;EAIF;IACE;IACA;;EAIF;IACE;;EAEA;IACE","file":"digit-input.css"}
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
padding-top: var(--ard-file-input-padding-top-compact, var(--ard-form-field-padding-top-compact, 0));
|
|
99
99
|
padding-bottom: var(--ard-file-input-padding-bottom-compact, var(--ard-form-field-padding-bottom-compact, 0));
|
|
100
100
|
}
|
|
101
|
+
.ard-readonly > .ard-file-input {
|
|
102
|
+
cursor: var(--ard-file-input-readonly-cursor, var(--ard-readonly-cursor, default));
|
|
103
|
+
}
|
|
101
104
|
.ard-file-input.ard-color-none {
|
|
102
105
|
--ard-cmpcl--bg: var(--ard-bg);
|
|
103
106
|
--ard-cmpcl--bg-colored: var(--ard-bg-alt);
|
|
@@ -357,6 +360,9 @@
|
|
|
357
360
|
.ard-file-input .ard-clear-btn-wrapper:active .ard-focus-overlay {
|
|
358
361
|
opacity: 15%;
|
|
359
362
|
}
|
|
363
|
+
.ard-file-input .ard-disabled .ard-clear-btn-wrapper, .ard-file-input .ard-readonly .ard-clear-btn-wrapper {
|
|
364
|
+
pointer-events: none;
|
|
365
|
+
}
|
|
360
366
|
.ard-file-input .ard-input-container {
|
|
361
367
|
white-space: nowrap;
|
|
362
368
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/file-input.scss","../../../../../projects/ui/src/themes/default/_coloring.scss","../../../../../projects/ui/src/themes/default/_mixins.scss","../../../../../projects/ui/src/themes/default/_clear-button.scss","../../../../../projects/ui/src/themes/_variables.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;ACIA;EAGE;IAGE;IAGA;IACA;IACA;IAWA;
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/file-input.scss","../../../../../projects/ui/src/themes/default/_coloring.scss","../../../../../projects/ui/src/themes/default/_mixins.scss","../../../../../projects/ui/src/themes/default/_clear-button.scss","../../../../../projects/ui/src/themes/_variables.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;ACIA;EAGE;IAGE;IAGA;IACA;IACA;IAWA;IAGA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAGA;IAEA;IACA;IACA;IACA;IACA;IACA;;EAIA;IACE;;EAGJ;IDlCA,QCoCI;IDnCJ;IACA;IACA;IACA;IACA;IACA,KCgCI;ID/BJ;IACA;IACA,WC8BI;ID7BJ,aC+BI;ID9BJ,aCgCI;ID/BJ,cCmCI;IDlCJ,eCgCI;ID/BJ,aC8BI;ID7BJ,gBC+BI;ID9BJ,OCoCI;IAMF;IACA;IACA;IACA;IACA;;ED5CF;IACE;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;;EAEF;IACE;IACA,SCoBA;IDnBA,OCkBA;IDjBA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;;EAIJ;IACE,QClBE;IDmBF,WChBE;IDiBF,aCfE;IDgBF,cCPE;IDQF,eCVE;IDWF,aCZE;IDaF,gBCXE;;EDcJ;IACE,QCVE;;EC/EJ;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EDlDA;IACE;IACA;;EAGF;IACE;;EAIF;IACE;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IE/GJ;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;IFwGM;IACA;;EAGA;IACE;;EAIF;IACE;;EAIF;IACE;;EAIF;IACE;;EG9IR;IACE,QCmCgB;IDlChB,OCkCgB;IDjChB;;EAGF;IACE;IACA;IACA,OCGK;IDFL,OC0BgB;IDzBhB,QCyBgB;IDxBhB;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;;EAGF;IDvBF;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;ICgBI;;EAGF;IACE;IACA;IACA;IACA;;EAEA;IACE;ID7CN;IACA;IACA,yBACE;IC4CI;;EAKF;IACE;;EAKF;IACE;;EAKF;IACE;;EAKJ;IACE;;EH+EF;IACE;;EAEF;AAAA;AAAA;AAAA;AAAA;IAKE;IACA;IACA;;EAEF;IACE;IACA;;EAEA;IACE;;EAEF;IACE;;EAIN;IACE;;EAIE;AAAA;IAEE","file":"file-input.css"}
|
|
@@ -75,6 +75,9 @@
|
|
|
75
75
|
padding-top: var(--ard-hex-input-padding-top-compact, var(--ard-form-field-padding-top-compact, 0));
|
|
76
76
|
padding-bottom: var(--ard-hex-input-padding-bottom-compact, var(--ard-form-field-padding-bottom-compact, 0));
|
|
77
77
|
}
|
|
78
|
+
.ard-readonly > .ard-hex-input {
|
|
79
|
+
cursor: var(--ard-hex-input-readonly-cursor, var(--ard-readonly-cursor, default));
|
|
80
|
+
}
|
|
78
81
|
.ard-hex-input ard-clear-button {
|
|
79
82
|
height: var(--ard-clear-button-size);
|
|
80
83
|
width: var(--ard-clear-button-size);
|
|
@@ -139,6 +142,9 @@
|
|
|
139
142
|
.ard-hex-input .ard-clear-btn-wrapper:active .ard-focus-overlay {
|
|
140
143
|
opacity: 15%;
|
|
141
144
|
}
|
|
145
|
+
.ard-hex-input .ard-disabled .ard-clear-btn-wrapper, .ard-hex-input .ard-readonly .ard-clear-btn-wrapper {
|
|
146
|
+
pointer-events: none;
|
|
147
|
+
}
|
|
142
148
|
.ard-hex-input .ard-input-container input {
|
|
143
149
|
font-family: var(--ard-font-family-mono);
|
|
144
150
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/hex-input.scss","../../../../../projects/ui/src/themes/default/_clear-button.scss","../../../../../projects/ui/src/themes/_variables.scss","../../../../../projects/ui/src/themes/default/_mixins.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;ACGA;EAGE;IAGE;IAGA;IACA;IACA;IAWA;
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/hex-input.scss","../../../../../projects/ui/src/themes/default/_clear-button.scss","../../../../../projects/ui/src/themes/_variables.scss","../../../../../projects/ui/src/themes/default/_mixins.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;ACGA;EAGE;IAGE;IAGA;IACA;IACA;IAWA;IAGA;IACA;IAEA;;EAGF;IDTA,QCWI;IDVJ;IACA;IACA;IACA;IACA;IACA,KCOI;IDNJ;IACA;IACA,WCKI;IDJJ,aCMI;IDLJ,aCOI;IDNJ,cCUI;IDTJ,eCOI;IDNJ,aCKI;IDJJ,gBCMI;IDLJ,OCWI;IAKF;IACA;;EDfF;IACE;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;;EAEF;IACE;IACA,SCLA;IDMA,OCPA;IDQA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;;EAIJ;IACE,QC3CE;ID4CF,WCzCE;ID0CF,aCxCE;IDyCF,cChCE;IDiCF,eCnCE;IDoCF,aCrCE;IDsCF,gBCpCE;;EDuCJ;IACE,QCnCE;;ECrDJ;IACE,QCmCgB;IDlChB,OCkCgB;IDjChB;;EAGF;IACE;IACA;IACA,OCGK;IDFL,OC0BgB;IDzBhB,QCyBgB;IDxBhB;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;;EAGF;IEvBF;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;IFgBI;;EAGF;IACE;IACA;IACA;IACA;;EAEA;IACE;IE7CN;IACA;IACA,yBACE;IF4CI;;EAKF;IACE;;EAKF;IACE;;EAKF;IACE;;EAKJ;IACE;;EDTA;IACE;;EAIJ;IACE;IACA;IACA;IACA;IACA;IACA;IACA","file":"hex-input.css"}
|
|
@@ -74,6 +74,9 @@
|
|
|
74
74
|
padding-top: var(--ard-input-padding-top-compact, var(--ard-form-field-padding-top-compact, 0));
|
|
75
75
|
padding-bottom: var(--ard-input-padding-bottom-compact, var(--ard-form-field-padding-bottom-compact, 0));
|
|
76
76
|
}
|
|
77
|
+
.ard-readonly > .ard-input {
|
|
78
|
+
cursor: var(--ard-input-readonly-cursor, var(--ard-readonly-cursor, default));
|
|
79
|
+
}
|
|
77
80
|
.ard-input ard-clear-button {
|
|
78
81
|
height: var(--ard-clear-button-size);
|
|
79
82
|
width: var(--ard-clear-button-size);
|
|
@@ -138,6 +141,9 @@
|
|
|
138
141
|
.ard-input .ard-clear-btn-wrapper:active .ard-focus-overlay {
|
|
139
142
|
opacity: 15%;
|
|
140
143
|
}
|
|
144
|
+
.ard-input .ard-disabled .ard-clear-btn-wrapper, .ard-input .ard-readonly .ard-clear-btn-wrapper {
|
|
145
|
+
pointer-events: none;
|
|
146
|
+
}
|
|
141
147
|
}
|
|
142
148
|
|
|
143
149
|
/*# sourceMappingURL=input.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/input.scss","../../../../../projects/ui/src/themes/default/_clear-button.scss","../../../../../projects/ui/src/themes/_variables.scss","../../../../../projects/ui/src/themes/default/_mixins.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;ACGA;EAGE;IAGE;IAGA;IACA;IACA;IAWA;
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/input.scss","../../../../../projects/ui/src/themes/default/_clear-button.scss","../../../../../projects/ui/src/themes/_variables.scss","../../../../../projects/ui/src/themes/default/_mixins.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;ACGA;EAGE;IAGE;IAGA;IACA;IACA;IAWA;IAGA;IACA;;EAGF;IDPA,QCSI;IDRJ;IACA;IACA;IACA;IACA;IACA,KCKI;IDJJ;IACA;IACA,WCGI;IDFJ,aCII;IDHJ,aCKI;IDJJ,cCQI;IDPJ,eCKI;IDJJ,aCGI;IDFJ,gBCII;IDHJ,OCSI;IAKF;IACA;;EDbF;IACE;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;;EAEF;IACE;IACA,SCPA;IDQA,OCTA;IDUA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;;EAIJ;IACE,QC7CE;ID8CF,WC3CE;ID4CF,aC1CE;ID2CF,cClCE;IDmCF,eCrCE;IDsCF,aCvCE;IDwCF,gBCtCE;;EDyCJ;IACE,QCrCE;;ECnDJ;IACE,QCmCgB;IDlChB,OCkCgB;IDjChB;;EAGF;IACE;IACA;IACA,OCGK;IDFL,OC0BgB;IDzBhB,QCyBgB;IDxBhB;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;;EAGF;IEvBF;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;IFgBI;;EAGF;IACE;IACA;IACA;IACA;;EAEA;IACE;IE7CN;IACA;IACA,yBACE;IF4CI;;EAKF;IACE;;EAKF;IACE;;EAKF;IACE;;EAKJ;IACE","file":"input.css"}
|