@ardium-ui/ui 5.0.0-alpha.6 → 5.0.0-alpha.61
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 +4809 -2358
- package/fesm2022/ardium-ui-ui.mjs.map +1 -1
- package/lib/_internal/disablable-component.d.ts +2 -1
- package/lib/_internal/focusable-component.d.ts +2 -1
- package/lib/_internal/form-field-component.d.ts +3 -2
- package/lib/_internal/item-storages/dropdown-item-storage.d.ts +20 -19
- package/lib/_internal/item-storages/simple-item-storage.d.ts +15 -12
- package/lib/_internal/item-storages/simplest-item-storage.d.ts +1 -1
- package/lib/_internal/ngmodel-component.d.ts +5 -8
- package/lib/_internal/selectable-list-component.d.ts +6 -6
- package/lib/_internal/utils/date.utils.d.ts +16 -0
- package/lib/badge/badge.directive.d.ts +3 -2
- package/lib/breakpoints/breakpoint.service.d.ts +12 -0
- package/lib/breakpoints/breakpoint.utils.d.ts +7 -0
- package/lib/breakpoints/breakpoints.d.ts +13 -0
- package/lib/breakpoints/index.d.ts +2 -0
- package/lib/buttons/_button-base.d.ts +12 -8
- package/lib/buttons/_button-base.defaults.d.ts +3 -2
- package/lib/buttons/button/button.component.d.ts +5 -5
- package/lib/buttons/button/button.defaults.d.ts +0 -2
- package/lib/buttons/button/button.directive.d.ts +17 -0
- package/lib/buttons/button/button.module.d.ts +3 -2
- package/lib/buttons/button/index.d.ts +1 -0
- package/lib/buttons/fab/fab.component.d.ts +3 -1
- package/lib/buttons/icon-button/icon-button.component.d.ts +6 -4
- package/lib/buttons/icon-button/icon-button.defaults.d.ts +2 -1
- package/lib/calendar/abstract-calendar.d.ts +128 -0
- package/lib/calendar/calendar.component.d.ts +8 -96
- package/lib/calendar/calendar.defaults.d.ts +16 -1
- package/lib/calendar/calendar.internal-directives.d.ts +24 -8
- package/lib/calendar/calendar.internal-types.d.ts +1 -0
- package/lib/calendar/calendar.module.d.ts +4 -9
- package/lib/calendar/calendar.types.d.ts +21 -5
- package/lib/calendar/index.d.ts +3 -0
- package/lib/calendar/range-calendar.component.d.ts +16 -0
- package/lib/calendar/range-calendar.directives.d.ts +51 -0
- package/lib/calendar/range-calendar.module.d.ts +10 -0
- package/lib/calendar/views/calendar-views.module.d.ts +13 -0
- package/lib/calendar/views/days-view/days-view.component.d.ts +20 -2
- package/lib/calendar/views/days-view/days-view.helpers.d.ts +2 -2
- package/lib/calendar/views/months-view/months-view.component.d.ts +15 -3
- package/lib/calendar/views/years-view/years-view.component.d.ts +16 -3
- package/lib/checkbox-list/checkbox-list.component.d.ts +9 -7
- package/lib/checkbox-list/checkbox-list.directives.d.ts +7 -0
- package/lib/checkbox-list/checkbox-list.module.d.ts +1 -1
- package/lib/chip/chip.component.d.ts +2 -1
- package/lib/chip/deletable-chip/deletable-chip.component.d.ts +2 -1
- package/lib/chip/selectable-chip/selectable-chip.component.d.ts +3 -2
- package/lib/dialog/dialog.component.d.ts +13 -8
- package/lib/dialog/dialog.types.d.ts +1 -0
- package/lib/divider/divider.component.d.ts +2 -1
- package/lib/dropdown-panel/dropdown-panel.component.d.ts +2 -1
- package/lib/file-inputs/file-input/file-input.component.d.ts +2 -1
- package/lib/file-inputs/file-input-base.d.ts +4 -5
- package/lib/form-field/auto-error/auto-error.component.d.ts +19 -0
- package/lib/form-field/auto-error/auto-error.provider.d.ts +7 -0
- package/lib/form-field/error/error.directive.d.ts +3 -2
- package/lib/form-field/form-field-base.d.ts +5 -2
- package/lib/form-field/form-field-child.token.d.ts +5 -5
- package/lib/form-field/form-field-native-inputs.d.ts +6 -11
- package/lib/form-field/form-field.component.d.ts +1 -1
- package/lib/form-field/form-field.defaults.d.ts +1 -0
- package/lib/form-field/form-field.module.d.ts +5 -4
- package/lib/form-field/hint/hint.directive.d.ts +3 -2
- package/lib/form-field/hint-error/hint-error.directive.d.ts +3 -2
- package/lib/form-field/horizontal-form-field.component.d.ts +1 -1
- package/lib/form-field/index.d.ts +4 -0
- package/lib/form-field/label/label.component.d.ts +3 -2
- package/lib/form-field-frame/form-field-frame.component.d.ts +4 -3
- package/lib/grid/grid.component.d.ts +51 -0
- package/lib/grid/grid.defaults.d.ts +16 -0
- package/lib/grid/grid.module.d.ts +7 -0
- package/lib/grid/grid.types.d.ts +38 -0
- package/lib/grid/grid.utils.d.ts +11 -0
- package/lib/grid/index.d.ts +4 -0
- package/lib/icon/icon.component.d.ts +2 -1
- package/lib/inputs/_simple-input-base.d.ts +7 -3
- package/lib/inputs/autocomplete-input/autocomplete-input.component.d.ts +5 -4
- package/lib/inputs/date-input/abstract-date-input.d.ts +112 -0
- package/lib/inputs/date-input/date-input.component.d.ts +19 -81
- package/lib/inputs/date-input/date-input.defaults.d.ts +21 -3
- package/lib/inputs/date-input/{date-input.directive.d.ts → date-input.directives.d.ts} +2 -2
- package/lib/inputs/date-input/date-input.module.d.ts +5 -4
- package/lib/inputs/date-input/date-input.serializers.d.ts +4 -2
- package/lib/inputs/date-input/date-input.types.d.ts +5 -4
- package/lib/inputs/date-input/date-range-input.component.d.ts +29 -0
- package/lib/inputs/date-input/date-range-input.directives.d.ts +82 -0
- package/lib/inputs/date-input/date-range-input.module.d.ts +17 -0
- package/lib/inputs/date-input/index.d.ts +7 -1
- package/lib/inputs/date-input/multipage-date-range-input.component.d.ts +44 -0
- package/lib/inputs/date-input/multipage-date-range-input.directives.d.ts +82 -0
- package/lib/inputs/date-input/multipage-date-range-input.module.d.ts +17 -0
- package/lib/inputs/digit-input/digit-input.component.d.ts +4 -3
- package/lib/inputs/hex-input/hex-input.component.d.ts +5 -3
- package/lib/inputs/input-utils.d.ts +6 -0
- package/lib/inputs/number-input/number-input.component.d.ts +18 -12
- package/lib/inputs/number-input/number-input.defaults.d.ts +4 -0
- package/lib/inputs/number-input/number-input.directives.d.ts +12 -0
- package/lib/inputs/number-input/number-input.module.d.ts +1 -1
- package/lib/inputs/password-input/password-input.component.d.ts +4 -3
- package/lib/kbd/kbd.component.d.ts +2 -1
- package/lib/kbd-shortcut/kbd-shortcut.component.d.ts +2 -1
- package/lib/modal/modal.component.d.ts +9 -6
- package/lib/modal/modal.defaults.d.ts +2 -0
- package/lib/option/option.component.d.ts +2 -1
- package/lib/progress-bar/progress-bar.component.d.ts +4 -3
- package/lib/progress-circle/progress-circle.component.d.ts +5 -4
- package/lib/search-functions.d.ts +1 -1
- package/lib/segment/segment.component.d.ts +6 -5
- package/lib/select/select.component.d.ts +38 -30
- package/lib/select/select.defaults.d.ts +9 -2
- package/lib/select/select.directive.d.ts +6 -0
- package/lib/select/select.module.d.ts +1 -1
- package/lib/select/select.types.d.ts +6 -2
- package/lib/select/select.utils.d.ts +2 -0
- package/lib/slider/abstract-slider.d.ts +35 -29
- package/lib/slider/index.d.ts +1 -0
- package/lib/slider/range-slider/range-slider.component.d.ts +12 -9
- package/lib/slider/range-slider/range-slider.types.d.ts +6 -0
- package/lib/slider/slider.component.d.ts +5 -4
- package/lib/slider/slider.types.d.ts +3 -3
- package/lib/star/rating-display/rating-display.component.d.ts +2 -1
- package/lib/star/rating-input/rating-input.component.d.ts +5 -3
- package/lib/star/rating-input/rating-input.defaults.d.ts +2 -2
- package/lib/tabber/index.d.ts +2 -1
- package/lib/tabber/tab/tab.component.d.ts +14 -8
- package/lib/tabber/tabber.component.d.ts +25 -9
- package/lib/tabber/tabber.defaults.d.ts +1 -0
- package/lib/tabber/tabber.directives.d.ts +9 -0
- package/lib/tabber/tabber.module.d.ts +3 -2
- package/lib/tabber/tabber.types.d.ts +5 -0
- package/lib/table/table.component.d.ts +16 -15
- package/lib/table-pagination/table-pagination.component.d.ts +4 -3
- package/lib/text-list/text-list.component.d.ts +2 -1
- package/lib/types/item-storage.types.d.ts +17 -18
- package/package.json +2 -1
- package/prebuilt-themes/default/buttons/button.css +74 -58
- package/prebuilt-themes/default/buttons/button.css.map +1 -1
- package/prebuilt-themes/default/buttons/fab.css +64 -51
- package/prebuilt-themes/default/buttons/fab.css.map +1 -1
- package/prebuilt-themes/default/buttons/icon-button.css +50 -44
- package/prebuilt-themes/default/buttons/icon-button.css.map +1 -1
- package/prebuilt-themes/default/calendar.css +131 -55
- package/prebuilt-themes/default/calendar.css.map +1 -1
- package/prebuilt-themes/default/card.css.map +1 -1
- package/prebuilt-themes/default/checkbox-list.css +48 -22
- package/prebuilt-themes/default/checkbox-list.css.map +1 -1
- package/prebuilt-themes/default/checkbox.css +4 -4
- package/prebuilt-themes/default/chips.css +74 -42
- package/prebuilt-themes/default/chips.css.map +1 -1
- package/prebuilt-themes/default/color-display.css +1 -1
- package/prebuilt-themes/default/core.css +10 -1
- package/prebuilt-themes/default/core.css.map +1 -1
- package/prebuilt-themes/default/dialog.css +7 -2
- package/prebuilt-themes/default/dialog.css.map +1 -1
- package/prebuilt-themes/default/dropdown-panel.css.map +1 -1
- package/prebuilt-themes/default/form-field-frame.css +6 -2
- package/prebuilt-themes/default/form-field-frame.css.map +1 -1
- package/prebuilt-themes/default/form-field.css +62 -29
- package/prebuilt-themes/default/form-field.css.map +1 -1
- package/prebuilt-themes/default/inputs/autocomplete-input.css +61 -25
- package/prebuilt-themes/default/inputs/autocomplete-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/color-input.css +5 -44
- package/prebuilt-themes/default/inputs/color-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/date-input.css +69 -21
- package/prebuilt-themes/default/inputs/date-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/digit-input.css +1 -1
- package/prebuilt-themes/default/inputs/digit-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/file-input.css +102 -62
- package/prebuilt-themes/default/inputs/file-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/hex-input.css +38 -20
- package/prebuilt-themes/default/inputs/hex-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/input.css +31 -15
- package/prebuilt-themes/default/inputs/input.css.map +1 -1
- package/prebuilt-themes/default/inputs/number-input.css +42 -22
- package/prebuilt-themes/default/inputs/number-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/password-input.css +58 -22
- package/prebuilt-themes/default/inputs/password-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/search-bar.css +33 -16
- package/prebuilt-themes/default/inputs/search-bar.css.map +1 -1
- package/prebuilt-themes/default/kbd-shortcut.css +8 -4
- package/prebuilt-themes/default/kbd-shortcut.css.map +1 -1
- package/prebuilt-themes/default/kbd.css +19 -9
- package/prebuilt-themes/default/kbd.css.map +1 -1
- package/prebuilt-themes/default/modal.css +46 -22
- package/prebuilt-themes/default/modal.css.map +1 -1
- package/prebuilt-themes/default/progress-circle.css.map +1 -1
- package/prebuilt-themes/default/radio.css +46 -28
- package/prebuilt-themes/default/radio.css.map +1 -1
- package/prebuilt-themes/default/segment.css +71 -61
- package/prebuilt-themes/default/segment.css.map +1 -1
- package/prebuilt-themes/default/select.css +78 -44
- package/prebuilt-themes/default/select.css.map +1 -1
- package/prebuilt-themes/default/slide-toggle.css +88 -37
- package/prebuilt-themes/default/slide-toggle.css.map +1 -1
- package/prebuilt-themes/default/slider.css +93 -52
- package/prebuilt-themes/default/slider.css.map +1 -1
- package/prebuilt-themes/default/stars.css +4 -4
- package/prebuilt-themes/default/stars.css.map +1 -1
- package/prebuilt-themes/default/statebox.css +5 -5
- package/prebuilt-themes/default/tabber.css +47 -16
- package/prebuilt-themes/default/tabber.css.map +1 -1
- package/prebuilt-themes/default/table.css +0 -8
- package/prebuilt-themes/default/table.css.map +1 -1
- package/public-api.d.ts +2 -0
- package/themes/_variables.scss +2 -1
- package/themes/default/_mixins.scss +5 -5
- package/themes/default/buttons/_button-mixins.scss +43 -33
- package/themes/default/buttons/button.scss +54 -29
- package/themes/default/buttons/fab.scss +47 -26
- package/themes/default/buttons/icon-button.scss +40 -17
- package/themes/default/calendar.scss +148 -58
- package/themes/default/checkbox-list.scss +47 -21
- package/themes/default/chips.scss +70 -39
- package/themes/default/color-display.scss +1 -1
- package/themes/default/core.scss +13 -1
- package/themes/default/dialog.scss +9 -2
- package/themes/default/form-field-frame.scss +9 -4
- package/themes/default/form-field.scss +64 -28
- package/themes/default/inputs/_shared.scss +30 -9
- package/themes/default/inputs/autocomplete-input.scss +69 -14
- package/themes/default/inputs/color-input.scss +2 -2
- package/themes/default/inputs/date-input.scss +54 -5
- package/themes/default/inputs/digit-input.scss +1 -1
- package/themes/default/inputs/file-input.scss +86 -23
- package/themes/default/inputs/hex-input.scss +46 -9
- package/themes/default/inputs/input.scss +39 -4
- package/themes/default/inputs/number-input.scss +55 -15
- package/themes/default/inputs/password-input.scss +72 -15
- package/themes/default/inputs/search-bar.scss +41 -5
- package/themes/default/kbd-shortcut.scss +10 -4
- package/themes/default/kbd.scss +26 -9
- package/themes/default/modal.scss +56 -22
- package/themes/default/radio.scss +47 -26
- package/themes/default/segment.scss +77 -67
- package/themes/default/select.scss +98 -42
- package/themes/default/slide-toggle.scss +134 -59
- package/themes/default/slider.scss +102 -65
- package/themes/default/statebox.scss +1 -1
- package/themes/default/tabber.scss +48 -13
- package/themes/default/table.scss +8 -8
- package/lib/tabber/tab/tab.defaults.d.ts +0 -6
- package/prebuilt-themes/default/calendar-OLD.css +0 -294
- package/prebuilt-themes/default/calendar-OLD.css.map +0 -1
- package/themes/default/calendar-OLD.scss +0 -183
|
@@ -1,20 +1,35 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Should be applied to the first element in the component's template.
|
|
3
3
|
*/
|
|
4
|
+
:root {
|
|
5
|
+
--ard-hex-input-gap: 0.625rem;
|
|
6
|
+
--ard-hex-input-line-height: 1.25;
|
|
7
|
+
--ard-hex-input-line-height-compact: 1;
|
|
8
|
+
--ard-hex-input-font-weight: 400;
|
|
9
|
+
--ard-hex-input-placeholder-opacity: 60%;
|
|
10
|
+
--ard-hex-input-min-width: 10rem;
|
|
11
|
+
--ard-hex-input-max-width: 100%;
|
|
12
|
+
--ard-hex-input-hash-margin: 0 0 -0.5rem 0;
|
|
13
|
+
--ard-hex-input-hash-opacity: 70%;
|
|
14
|
+
}
|
|
15
|
+
|
|
4
16
|
.ard-hex-input {
|
|
17
|
+
height: var(--ard-hex-input-height, var(--ard-form-field-height, 2.3125rem));
|
|
5
18
|
position: relative;
|
|
6
|
-
font-family:
|
|
19
|
+
font-family: var(--ard-font-family);
|
|
7
20
|
display: flex;
|
|
8
21
|
align-items: center;
|
|
9
22
|
justify-content: stretch;
|
|
10
|
-
gap: 0.
|
|
23
|
+
gap: var(--ard-hex-input-gap, 0.625rem);
|
|
11
24
|
cursor: text;
|
|
12
25
|
box-sizing: border-box;
|
|
13
|
-
font-size: 1rem;
|
|
14
|
-
line-height: 1.
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
26
|
+
font-size: var(--ard-hex-input-font-size, var(--ard-form-field-font-size, 1rem));
|
|
27
|
+
line-height: var(--ard-hex-input-line-height, 1.25);
|
|
28
|
+
font-weight: var(--ard-hex-input-font-weight, 400);
|
|
29
|
+
padding: var(--ard-hex-input-padding, var(--ard-form-field-padding, 0 0.375rem));
|
|
30
|
+
color: var(--ard-hex-input-color, var(--ard-text));
|
|
31
|
+
min-width: var(--ard-hex-input-min-width, 10rem);
|
|
32
|
+
max-width: var(--ard-hex-input-max-width, 100%);
|
|
18
33
|
}
|
|
19
34
|
.ard-hex-input .ard-input-container {
|
|
20
35
|
flex-grow: 1;
|
|
@@ -24,7 +39,8 @@
|
|
|
24
39
|
}
|
|
25
40
|
.ard-hex-input .ard-input-container .ard-placeholder {
|
|
26
41
|
font: inherit;
|
|
27
|
-
opacity: 60
|
|
42
|
+
opacity: var(--ard-hex-input-placeholder-opacity, 60%);
|
|
43
|
+
color: var(--ard-hex-input-placeholder-color, var(--ard-text));
|
|
28
44
|
white-space: nowrap;
|
|
29
45
|
overflow: hidden;
|
|
30
46
|
text-overflow: ellipsis;
|
|
@@ -37,13 +53,15 @@
|
|
|
37
53
|
outline: none;
|
|
38
54
|
font: inherit;
|
|
39
55
|
padding: 0;
|
|
56
|
+
color: inherit;
|
|
40
57
|
display: block;
|
|
41
58
|
width: 100%;
|
|
42
59
|
}
|
|
43
60
|
.ard-hex-input.ard-compact {
|
|
44
|
-
height: 1.
|
|
45
|
-
font-size: 0.
|
|
46
|
-
line-height: 1;
|
|
61
|
+
height: var(--ard-hex-input-height-compact, var(--ard-form-field-height-compact, 1.6875rem));
|
|
62
|
+
font-size: var(--ard-hex-input-font-size-compact, var(--ard-form-field-font-size-compact, 0.875rem));
|
|
63
|
+
line-height: var(--ard-hex-input-line-height-compact, 1);
|
|
64
|
+
padding: var(--ard-hex-input-padding-compact, var(--ard-form-field-padding-compact, 0 0.375rem));
|
|
47
65
|
}
|
|
48
66
|
.ard-hex-input ard-clear-button {
|
|
49
67
|
height: var(--ard-clear-button-size);
|
|
@@ -77,10 +95,10 @@
|
|
|
77
95
|
}
|
|
78
96
|
.ard-hex-input .ard-clear-btn-wrapper .ard-focus-overlay {
|
|
79
97
|
position: absolute;
|
|
80
|
-
top: -1px;
|
|
81
|
-
bottom: -1px;
|
|
82
|
-
left: -1px;
|
|
83
|
-
right: -1px;
|
|
98
|
+
top: calc(-1 * 1px);
|
|
99
|
+
bottom: calc(-1 * 1px);
|
|
100
|
+
left: calc(-1 * 1px);
|
|
101
|
+
right: calc(-1 * 1px);
|
|
84
102
|
opacity: 0;
|
|
85
103
|
border-radius: inherit;
|
|
86
104
|
pointer-events: none;
|
|
@@ -110,14 +128,14 @@
|
|
|
110
128
|
opacity: 15%;
|
|
111
129
|
}
|
|
112
130
|
.ard-hex-input .ard-input-container input {
|
|
113
|
-
font-family:
|
|
131
|
+
font-family: var(--ard-font-family-mono);
|
|
114
132
|
}
|
|
115
133
|
.ard-hex-input .ard-hash-container {
|
|
116
|
-
margin
|
|
117
|
-
color: var(--ard-
|
|
118
|
-
opacity: 70
|
|
134
|
+
margin: var(--ard-hex-input-hash-margin, 0 0 -0.5rem 0);
|
|
135
|
+
color: var(--ard-hex-input-hash-color, var(--ard-text));
|
|
136
|
+
opacity: var(--ard-hex-input-hash-opacity, 70%);
|
|
119
137
|
user-select: none;
|
|
120
|
-
font-family:
|
|
138
|
+
font-family: var(--ard-font-family-mono);
|
|
121
139
|
}
|
|
122
140
|
|
|
123
141
|
/*# sourceMappingURL=hex-input.css.map */
|
|
@@ -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;
|
|
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;ACKA;EAGE;EAGA;EACA;EACA;EAKA;EAEA;EACA;EACA;EAEA;;;AAGF;EDTE,QCWE;EDVF;EACA;EACA;EACA;EACA;EACA,KCOE;EDNF;EACA;EACA,WCKE;EDJF,aCME;EDLF,aCOE;EDNF,SCOE;EDNF,OCQE;EAIF;EACA;;ADXA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA,OCFF;EDGE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACE,QCjCA;EDkCA,WC/BA;EDgCA,aC9BA;ED+BA,SC5BA;;ACpCF;EACE,QCmCgB;EDlChB,OCkCgB;EDjChB;;AAGF;EACE;EACA;EACA,OCGK;EDFL,OC0BgB;EDzBhB,QCyBgB;EDxBhB;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAGF;EEvBF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EFgBI;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EE7CN;EACA;EACA,yBACE;EF4CI;;AAKF;EACE;;AAKF;EACE;;AAKF;EACE;;ADjBJ;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA","file":"hex-input.css"}
|
|
@@ -1,20 +1,33 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Should be applied to the first element in the component's template.
|
|
3
3
|
*/
|
|
4
|
+
:root {
|
|
5
|
+
--ard-input-gap: 0.625rem;
|
|
6
|
+
--ard-input-line-height: 1.25;
|
|
7
|
+
--ard-input-line-height-compact: 1;
|
|
8
|
+
--ard-input-font-weight: 400;
|
|
9
|
+
--ard-input-placeholder-opacity: 60%;
|
|
10
|
+
--ard-input-min-width: 10rem;
|
|
11
|
+
--ard-input-max-width: 100%;
|
|
12
|
+
}
|
|
13
|
+
|
|
4
14
|
.ard-input {
|
|
15
|
+
height: var(--ard-input-height, var(--ard-form-field-height, 2.3125rem));
|
|
5
16
|
position: relative;
|
|
6
|
-
font-family:
|
|
17
|
+
font-family: var(--ard-font-family);
|
|
7
18
|
display: flex;
|
|
8
19
|
align-items: center;
|
|
9
20
|
justify-content: stretch;
|
|
10
|
-
gap: 0.
|
|
21
|
+
gap: var(--ard-input-gap, 0.625rem);
|
|
11
22
|
cursor: text;
|
|
12
23
|
box-sizing: border-box;
|
|
13
|
-
font-size: 1rem;
|
|
14
|
-
line-height: 1.
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
24
|
+
font-size: var(--ard-input-font-size, var(--ard-form-field-font-size, 1rem));
|
|
25
|
+
line-height: var(--ard-input-line-height, 1.25);
|
|
26
|
+
font-weight: var(--ard-input-font-weight, 400);
|
|
27
|
+
padding: var(--ard-input-padding, var(--ard-form-field-padding, 0 0.375rem));
|
|
28
|
+
color: var(--ard-input-color, var(--ard-text));
|
|
29
|
+
min-width: var(--ard-input-min-width, 10rem);
|
|
30
|
+
max-width: var(--ard-input-max-width, 100%);
|
|
18
31
|
}
|
|
19
32
|
.ard-input .ard-input-container {
|
|
20
33
|
flex-grow: 1;
|
|
@@ -24,7 +37,8 @@
|
|
|
24
37
|
}
|
|
25
38
|
.ard-input .ard-input-container .ard-placeholder {
|
|
26
39
|
font: inherit;
|
|
27
|
-
opacity: 60
|
|
40
|
+
opacity: var(--ard-input-placeholder-opacity, 60%);
|
|
41
|
+
color: var(--ard-input-placeholder-color, var(--ard-text));
|
|
28
42
|
white-space: nowrap;
|
|
29
43
|
overflow: hidden;
|
|
30
44
|
text-overflow: ellipsis;
|
|
@@ -37,13 +51,15 @@
|
|
|
37
51
|
outline: none;
|
|
38
52
|
font: inherit;
|
|
39
53
|
padding: 0;
|
|
54
|
+
color: inherit;
|
|
40
55
|
display: block;
|
|
41
56
|
width: 100%;
|
|
42
57
|
}
|
|
43
58
|
.ard-input.ard-compact {
|
|
44
|
-
height: 1.
|
|
45
|
-
font-size: 0.
|
|
46
|
-
line-height: 1;
|
|
59
|
+
height: var(--ard-input-height-compact, var(--ard-form-field-height-compact, 1.6875rem));
|
|
60
|
+
font-size: var(--ard-input-font-size-compact, var(--ard-form-field-font-size-compact, 0.875rem));
|
|
61
|
+
line-height: var(--ard-input-line-height-compact, 1);
|
|
62
|
+
padding: var(--ard-input-padding-compact, var(--ard-form-field-padding-compact, 0 0.375rem));
|
|
47
63
|
}
|
|
48
64
|
.ard-input ard-clear-button {
|
|
49
65
|
height: var(--ard-clear-button-size);
|
|
@@ -77,10 +93,10 @@
|
|
|
77
93
|
}
|
|
78
94
|
.ard-input .ard-clear-btn-wrapper .ard-focus-overlay {
|
|
79
95
|
position: absolute;
|
|
80
|
-
top: -1px;
|
|
81
|
-
bottom: -1px;
|
|
82
|
-
left: -1px;
|
|
83
|
-
right: -1px;
|
|
96
|
+
top: calc(-1 * 1px);
|
|
97
|
+
bottom: calc(-1 * 1px);
|
|
98
|
+
left: calc(-1 * 1px);
|
|
99
|
+
right: calc(-1 * 1px);
|
|
84
100
|
opacity: 0;
|
|
85
101
|
border-radius: inherit;
|
|
86
102
|
pointer-events: none;
|
|
@@ -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;
|
|
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;ACKA;EAGE;EAGA;EACA;EACA;EAKA;EAEA;EACA;;;AAGF;EDNE,QCQE;EDPF;EACA;EACA;EACA;EACA;EACA,KCIE;EDHF;EACA;EACA,WCEE;EDDF,aCGE;EDFF,aCIE;EDHF,SCIE;EDHF,OCKE;EAIF;EACA;;ADRA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA,SCHF;EDIE,OCLF;EDME;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACE,QCpCA;EDqCA,WClCA;EDmCA,aCjCA;EDkCA,SC/BA;;ACjCF;EACE,QCmCgB;EDlChB,OCkCgB;EDjChB;;AAGF;EACE;EACA;EACA,OCGK;EDFL,OC0BgB;EDzBhB,QCyBgB;EDxBhB;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAGF;EEvBF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EFgBI;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EE7CN;EACA;EACA,yBACE;EF4CI;;AAKF;EACE;;AAKF;EACE;;AAKF;EACE","file":"input.css"}
|
|
@@ -1,26 +1,34 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Should be applied to the first element in the component's template.
|
|
3
3
|
*/
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
:root {
|
|
5
|
+
--ard-number-input-gap: 0.625rem;
|
|
6
|
+
--ard-number-input-line-height: 1.25;
|
|
7
|
+
--ard-number-input-line-height-compact: 1;
|
|
8
|
+
--ard-number-input-font-weight: 400;
|
|
9
|
+
--ard-number-input-placeholder-opacity: 60%;
|
|
10
|
+
--ard-number-input-rounded-border-radius: 8px;
|
|
6
11
|
}
|
|
7
|
-
|
|
8
|
-
|
|
12
|
+
|
|
13
|
+
ard-number-input {
|
|
14
|
+
width: var(--ard-number-input-width, unset);
|
|
9
15
|
}
|
|
10
16
|
|
|
11
17
|
.ard-number-input {
|
|
18
|
+
height: var(--ard-number-input-height, var(--ard-form-field-height, 2.3125rem));
|
|
12
19
|
position: relative;
|
|
13
|
-
font-family:
|
|
20
|
+
font-family: var(--ard-font-family);
|
|
14
21
|
display: flex;
|
|
15
22
|
align-items: center;
|
|
16
23
|
justify-content: stretch;
|
|
17
|
-
gap: 0.
|
|
24
|
+
gap: var(--ard-number-input-gap, 0.625rem);
|
|
18
25
|
cursor: text;
|
|
19
26
|
box-sizing: border-box;
|
|
20
|
-
font-size: 1rem;
|
|
21
|
-
line-height: 1.
|
|
22
|
-
|
|
23
|
-
|
|
27
|
+
font-size: var(--ard-number-input-font-size, var(--ard-form-field-font-size, 1rem));
|
|
28
|
+
line-height: var(--ard-number-input-line-height, 1.25);
|
|
29
|
+
font-weight: var(--ard-number-input-font-weight, 400);
|
|
30
|
+
padding: var(--ard-number-input-padding, var(--ard-form-field-padding, 0 0.375rem));
|
|
31
|
+
color: var(--ard-number-input-color, var(--ard-text));
|
|
24
32
|
gap: 0;
|
|
25
33
|
width: 100%;
|
|
26
34
|
}
|
|
@@ -32,7 +40,8 @@ ard-number-input:not(:has(.ard-quick-change-button)) {
|
|
|
32
40
|
}
|
|
33
41
|
.ard-number-input .ard-input-container .ard-placeholder {
|
|
34
42
|
font: inherit;
|
|
35
|
-
opacity: 60
|
|
43
|
+
opacity: var(--ard-number-input-placeholder-opacity, 60%);
|
|
44
|
+
color: var(--ard-number-input-placeholder-color, var(--ard-text));
|
|
36
45
|
white-space: nowrap;
|
|
37
46
|
overflow: hidden;
|
|
38
47
|
text-overflow: ellipsis;
|
|
@@ -45,13 +54,15 @@ ard-number-input:not(:has(.ard-quick-change-button)) {
|
|
|
45
54
|
outline: none;
|
|
46
55
|
font: inherit;
|
|
47
56
|
padding: 0;
|
|
57
|
+
color: inherit;
|
|
48
58
|
display: block;
|
|
49
59
|
width: 100%;
|
|
50
60
|
}
|
|
51
61
|
.ard-number-input.ard-compact {
|
|
52
|
-
height: 1.
|
|
53
|
-
font-size: 0.
|
|
54
|
-
line-height: 1;
|
|
62
|
+
height: var(--ard-number-input-height-compact, var(--ard-form-field-height-compact, 1.6875rem));
|
|
63
|
+
font-size: var(--ard-number-input-font-size-compact, var(--ard-form-field-font-size-compact, 0.875rem));
|
|
64
|
+
line-height: var(--ard-number-input-line-height-compact, 1);
|
|
65
|
+
padding: var(--ard-number-input-padding-compact, var(--ard-form-field-padding-compact, 0 0.375rem));
|
|
55
66
|
}
|
|
56
67
|
.ard-number-input.ard-appearance-outlined {
|
|
57
68
|
--ard-appearance-background: var(--ard-bg);
|
|
@@ -85,12 +96,17 @@ ard-number-input:not(:has(.ard-quick-change-button)) {
|
|
|
85
96
|
.ard-number-input .ard-input-container {
|
|
86
97
|
height: 100%;
|
|
87
98
|
max-width: 100%;
|
|
99
|
+
padding: var(--ard-number-input-padding, var(--ard-form-field-padding, 0 0.375rem));
|
|
88
100
|
}
|
|
89
101
|
.ard-number-input .ard-input-container > input {
|
|
90
102
|
width: 100%;
|
|
91
103
|
}
|
|
104
|
+
.ard-number-input .ard-placeholder {
|
|
105
|
+
padding: var(--ard-number-input-padding, var(--ard-form-field-padding, 0 0.375rem));
|
|
106
|
+
}
|
|
92
107
|
.ard-number-input .ard-quick-change-button {
|
|
93
108
|
position: relative;
|
|
109
|
+
min-width: var(--ard-number-input-height, var(--ard-form-field-height, 2.3125rem));
|
|
94
110
|
}
|
|
95
111
|
.ard-number-input .ard-quick-change-button .ard-button {
|
|
96
112
|
height: 100%;
|
|
@@ -119,10 +135,10 @@ ard-number-input:not(:has(.ard-quick-change-button)) {
|
|
|
119
135
|
border-bottom-left-radius: 0;
|
|
120
136
|
}
|
|
121
137
|
.ard-number-input.ard-variant-rounded {
|
|
122
|
-
border-radius: 8px;
|
|
138
|
+
border-radius: var(--ard-number-input-rounded-border-radius, 8px);
|
|
123
139
|
}
|
|
124
140
|
.ard-number-input.ard-variant-rounded.ard-quick-change-false .ard-input-container {
|
|
125
|
-
border-radius: 8px;
|
|
141
|
+
border-radius: var(--ard-number-input-rounded-border-radius, 8px);
|
|
126
142
|
}
|
|
127
143
|
.ard-number-input.ard-variant-sharp {
|
|
128
144
|
border-radius: 0;
|
|
@@ -132,8 +148,8 @@ ard-number-input:not(:has(.ard-quick-change-button)) {
|
|
|
132
148
|
}
|
|
133
149
|
.ard-number-input.ard-variant-pill .ard-button {
|
|
134
150
|
border-radius: 9999px !important;
|
|
135
|
-
|
|
136
|
-
|
|
151
|
+
width: var(--ard-number-input-height, var(--ard-form-field-height, 2.3125rem));
|
|
152
|
+
height: var(--ard-number-input-height, var(--ard-form-field-height, 2.3125rem));
|
|
137
153
|
margin: 0 2px;
|
|
138
154
|
}
|
|
139
155
|
.ard-number-input.ard-variant-pill.ard-quick-change-false .ard-input-container {
|
|
@@ -152,10 +168,14 @@ ard-number-input:not(:has(.ard-quick-change-button)) {
|
|
|
152
168
|
background: var(--ard-appearance-background);
|
|
153
169
|
border: var(--ard-appearance-border);
|
|
154
170
|
}
|
|
155
|
-
.ard-number-input.ard-compact {
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
171
|
+
.ard-number-input.ard-compact .ard-input-container {
|
|
172
|
+
padding: var(--ard-number-input-padding-compact, var(--ard-form-field-padding-compact, 0 0.375rem));
|
|
173
|
+
}
|
|
174
|
+
.ard-number-input.ard-compact .ard-placeholder {
|
|
175
|
+
padding: var(--ard-number-input-padding-compact, var(--ard-form-field-padding-compact, 0 0.375rem));
|
|
176
|
+
}
|
|
177
|
+
.ard-number-input.ard-compact .ard-quick-change-button {
|
|
178
|
+
min-width: var(--ard-number-input-height-compact, var(--ard-form-field-height-compact, 1.6875rem));
|
|
159
179
|
}
|
|
160
180
|
|
|
161
181
|
.ard-disabled > .ard-number-input {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/number-input.scss","../../../../../projects/ui/src/themes/default/_mixins.scss","../../../../../projects/ui/src/themes/_variables.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/number-input.scss","../../../../../projects/ui/src/themes/default/_mixins.scss","../../../../../projects/ui/src/themes/_variables.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;ACIA;EAGE;EAGA;EACA;EACA;EAKA;EAGA;;;AAGF;EACE;;;AAGF;EDTE,QCWE;EDVF;EACA;EACA;EACA;EACA;EACA,KCOE;EDNF;EACA;EACA,WCKE;EDJF,aCME;EDLF,aCOE;EDNF,SCOE;EDNF,OCQE;EAKF;EACA;;ADZA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA,OCFF;EDGE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACE,QCjCA;EDkCA,WC/BA;EDgCA,aC9BA;ED+BA,SC5BA;;ACEF;EACE;EACA;EACA;;AAEA;EACE;;AAEF;EACE;;AAEF;EACE;EACA;;AAGJ;EACE;EACA;;AAEA;EACE;;AAEF;EACE;;AAGJ;EACE;EACA;;ADtBF;EACE;EACA;EACA;;AAEA;EACE;;AAGJ;EACE;;AAGF;EACE;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEF;EACE;;AAGF;EACE;;AAEA;EACE;EACA;;AAGJ;EACE;;AAEA;EACE;EACA;;AAMN;EACE;;AAGE;EACE;;AAIN;EACE;;AAEF;EACE;;AAEA;EACE;EACA;EACA;EACA;;AAIA;EACE;;AAQJ;EACE;EACA;EACA;;AAEF;EACE;EACA;;AAGJ;EACE;EACA;;AAKA;EACE;;AAEF;EACE;;AAEF;EACE;;;AAMJ;EACE;EACA;EAMA,YEnKG;;AF+JH;EACE","file":"number-input.css"}
|
|
@@ -1,20 +1,46 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Should be applied to the first element in the component's template.
|
|
3
3
|
*/
|
|
4
|
+
:root {
|
|
5
|
+
--ard-password-input-gap: 0.625rem;
|
|
6
|
+
--ard-password-input-line-height: 1.25;
|
|
7
|
+
--ard-password-input-line-height-compact: 1;
|
|
8
|
+
--ard-password-input-font-weight: 400;
|
|
9
|
+
--ard-password-input-placeholder-opacity: 60%;
|
|
10
|
+
--ard-password-input-min-width: 10rem;
|
|
11
|
+
--ard-password-input-max-width: 100%;
|
|
12
|
+
--ard-password-input-disabled-opacity: 50%;
|
|
13
|
+
--ard-password-input-reveal-button-margin: 0.125rem;
|
|
14
|
+
--ard-password-input-reveal-button-font-size: 0.8rem;
|
|
15
|
+
--ard-password-input-reveal-button-height: calc(100% - 0.25rem);
|
|
16
|
+
--ard-password-input-reveal-button-width: unset;
|
|
17
|
+
--ard-password-input-reveal-button-aspect-ratio: 1;
|
|
18
|
+
--ard-password-input-reveal-button-padding: 0;
|
|
19
|
+
--ard-password-input-reveal-button-border-radius: 9999px;
|
|
20
|
+
--ard-password-input-reveal-button-border: none;
|
|
21
|
+
--ard-password-input-reveal-button-background: transparent;
|
|
22
|
+
--ard-password-input-reveal-button-hover-background: rgba(0, 0, 0, 4%);
|
|
23
|
+
--ard-password-input-reveal-button-focus-background: rgba(0, 0, 0, 12%);
|
|
24
|
+
--ard-password-input-reveal-button-active-background: rgba(0, 0, 0, 20%);
|
|
25
|
+
}
|
|
26
|
+
|
|
4
27
|
.ard-password-input {
|
|
28
|
+
height: var(--ard-password-input-height, var(--ard-form-field-height, 2.3125rem));
|
|
5
29
|
position: relative;
|
|
6
|
-
font-family:
|
|
30
|
+
font-family: var(--ard-font-family);
|
|
7
31
|
display: flex;
|
|
8
32
|
align-items: center;
|
|
9
33
|
justify-content: stretch;
|
|
10
|
-
gap: 0.
|
|
34
|
+
gap: var(--ard-password-input-gap, 0.625rem);
|
|
11
35
|
cursor: text;
|
|
12
36
|
box-sizing: border-box;
|
|
13
|
-
font-size: 1rem;
|
|
14
|
-
line-height: 1.
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
37
|
+
font-size: var(--ard-password-input-font-size, var(--ard-form-field-font-size, 1rem));
|
|
38
|
+
line-height: var(--ard-password-input-line-height, 1.25);
|
|
39
|
+
font-weight: var(--ard-password-input-font-weight, 400);
|
|
40
|
+
padding: var(--ard-password-input-padding, var(--ard-form-field-padding, 0 0.375rem));
|
|
41
|
+
color: var(--ard-password-input-color, var(--ard-text));
|
|
42
|
+
min-width: var(--ard-password-input-min-width, 10rem);
|
|
43
|
+
max-width: var(--ard-password-input-max-width, 100%);
|
|
18
44
|
}
|
|
19
45
|
.ard-password-input .ard-input-container {
|
|
20
46
|
flex-grow: 1;
|
|
@@ -24,7 +50,8 @@
|
|
|
24
50
|
}
|
|
25
51
|
.ard-password-input .ard-input-container .ard-placeholder {
|
|
26
52
|
font: inherit;
|
|
27
|
-
opacity: 60
|
|
53
|
+
opacity: var(--ard-password-input-placeholder-opacity, 60%);
|
|
54
|
+
color: var(--ard-password-input-placeholder-color, var(--ard-text));
|
|
28
55
|
white-space: nowrap;
|
|
29
56
|
overflow: hidden;
|
|
30
57
|
text-overflow: ellipsis;
|
|
@@ -37,13 +64,15 @@
|
|
|
37
64
|
outline: none;
|
|
38
65
|
font: inherit;
|
|
39
66
|
padding: 0;
|
|
67
|
+
color: inherit;
|
|
40
68
|
display: block;
|
|
41
69
|
width: 100%;
|
|
42
70
|
}
|
|
43
71
|
.ard-password-input.ard-compact {
|
|
44
|
-
height: 1.
|
|
45
|
-
font-size: 0.
|
|
46
|
-
line-height: 1;
|
|
72
|
+
height: var(--ard-password-input-height-compact, var(--ard-form-field-height-compact, 1.6875rem));
|
|
73
|
+
font-size: var(--ard-password-input-font-size-compact, var(--ard-form-field-font-size-compact, 0.875rem));
|
|
74
|
+
line-height: var(--ard-password-input-line-height-compact, 1);
|
|
75
|
+
padding: var(--ard-password-input-padding-compact, var(--ard-form-field-padding-compact, 0 0.375rem));
|
|
47
76
|
}
|
|
48
77
|
.ard-password-input.ard-revealable {
|
|
49
78
|
padding-right: 0;
|
|
@@ -52,26 +81,33 @@
|
|
|
52
81
|
display: flex;
|
|
53
82
|
align-items: center;
|
|
54
83
|
justify-content: center;
|
|
55
|
-
padding: 0;
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
84
|
+
padding: var(--ard-password-input-reveal-button-padding, 0);
|
|
85
|
+
color: var(--ard-password-input-reveal-button-color, var(--ard-text));
|
|
86
|
+
margin: var(--ard-password-input-reveal-button-margin, 0.125rem);
|
|
87
|
+
height: var(--ard-password-input-reveal-button-height, calc(100% - 0.25rem));
|
|
88
|
+
width: var(--ard-password-input-reveal-button-width, unset);
|
|
89
|
+
aspect-ratio: var(--ard-password-input-reveal-button-aspect-ratio, 1);
|
|
90
|
+
font-size: var(--ard-password-input-reveal-button-font-size, 0.8rem);
|
|
91
|
+
border-radius: var(--ard-password-input-reveal-button-border-radius, 9999px);
|
|
92
|
+
border: var(--ard-password-input-reveal-button-border, none);
|
|
93
|
+
background: var(--ard-password-input-reveal-button-background, transparent);
|
|
63
94
|
outline: none;
|
|
64
95
|
cursor: pointer;
|
|
65
96
|
transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
66
97
|
}
|
|
67
98
|
.ard-password-input .ard-reveal-button:hover {
|
|
68
|
-
background: rgba(0, 0, 0, 0.04);
|
|
99
|
+
background: var(--ard-password-input-reveal-button-hover-background, rgba(0, 0, 0, 0.04));
|
|
69
100
|
}
|
|
70
101
|
.ard-password-input .ard-reveal-button:focus {
|
|
71
|
-
background: rgba(0, 0, 0, 0.12);
|
|
102
|
+
background: var(--ard-password-input-reveal-button-focus-background, rgba(0, 0, 0, 0.12));
|
|
72
103
|
}
|
|
73
104
|
.ard-password-input .ard-reveal-button:active {
|
|
74
|
-
background: rgba(0, 0, 0, 0.2);
|
|
105
|
+
background: var(--ard-password-input-reveal-button-active-background, rgba(0, 0, 0, 0.2));
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.ard-disabled .ard-password-input {
|
|
109
|
+
pointer-events: none;
|
|
110
|
+
opacity: var(--ard-password-input-disabled-opacity, 50%);
|
|
75
111
|
}
|
|
76
112
|
|
|
77
113
|
/*# sourceMappingURL=password-input.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/password-input.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/password-input.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;ACKA;EAGE;EAGA;EACA;EACA;EAKA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EDpBE,QCsBE;EDrBF;EACA;EACA;EACA;EACA;EACA,KCkBE;EDjBF;EACA;EACA,WCgBE;EDfF,aCiBE;EDhBF,aCkBE;EDjBF,SCkBE;EDjBF,OCmBE;EAIF;EACA;;ADtBA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA,SCWF;EDVE,OCSF;EDRE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACE,QCtBA;EDuBA,WCpBA;EDqBA,aCnBA;EDoBA,SCjBA;;AAQF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;;AAEA;EACE;;AAEF;EACE;;AAEF;EACE;;;AAMJ;EACE;EACA","file":"password-input.css"}
|
|
@@ -1,20 +1,34 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Should be applied to the first element in the component's template.
|
|
3
3
|
*/
|
|
4
|
+
:root {
|
|
5
|
+
--ard-search-bar-gap: 0.625rem;
|
|
6
|
+
--ard-search-bar-line-height: 1.25;
|
|
7
|
+
--ard-search-bar-line-height-compact: 1;
|
|
8
|
+
--ard-search-bar-font-weight: 400;
|
|
9
|
+
--ard-search-bar-placeholder-opacity: 60%;
|
|
10
|
+
--ard-search-bar-min-width: 10rem;
|
|
11
|
+
--ard-search-bar-max-width: 100%;
|
|
12
|
+
--ard-search-bar-disabled-opacity: 50%;
|
|
13
|
+
}
|
|
14
|
+
|
|
4
15
|
.ard-search-bar {
|
|
16
|
+
height: var(--ard-search-bar-height, var(--ard-form-field-height, 2.3125rem));
|
|
5
17
|
position: relative;
|
|
6
|
-
font-family:
|
|
18
|
+
font-family: var(--ard-font-family);
|
|
7
19
|
display: flex;
|
|
8
20
|
align-items: center;
|
|
9
21
|
justify-content: stretch;
|
|
10
|
-
gap: 0.
|
|
22
|
+
gap: var(--ard-search-bar-gap, 0.625rem);
|
|
11
23
|
cursor: text;
|
|
12
24
|
box-sizing: border-box;
|
|
13
|
-
font-size: 1rem;
|
|
14
|
-
line-height: 1.
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
25
|
+
font-size: var(--ard-search-bar-font-size, var(--ard-form-field-font-size, 1rem));
|
|
26
|
+
line-height: var(--ard-search-bar-line-height, 1.25);
|
|
27
|
+
font-weight: var(--ard-search-bar-font-weight, 400);
|
|
28
|
+
padding: var(--ard-search-bar-padding, var(--ard-form-field-padding, 0 0.375rem));
|
|
29
|
+
color: var(--ard-search-bar-color, var(--ard-text));
|
|
30
|
+
min-width: var(--ard-search-bar-min-width, 10rem);
|
|
31
|
+
max-width: var(--ard-search-bar-max-width, 100%);
|
|
18
32
|
}
|
|
19
33
|
.ard-search-bar .ard-input-container {
|
|
20
34
|
flex-grow: 1;
|
|
@@ -24,7 +38,8 @@
|
|
|
24
38
|
}
|
|
25
39
|
.ard-search-bar .ard-input-container .ard-placeholder {
|
|
26
40
|
font: inherit;
|
|
27
|
-
opacity: 60
|
|
41
|
+
opacity: var(--ard-search-bar-placeholder-opacity, 60%);
|
|
42
|
+
color: var(--ard-search-bar-placeholder-color, var(--ard-text));
|
|
28
43
|
white-space: nowrap;
|
|
29
44
|
overflow: hidden;
|
|
30
45
|
text-overflow: ellipsis;
|
|
@@ -37,13 +52,15 @@
|
|
|
37
52
|
outline: none;
|
|
38
53
|
font: inherit;
|
|
39
54
|
padding: 0;
|
|
55
|
+
color: inherit;
|
|
40
56
|
display: block;
|
|
41
57
|
width: 100%;
|
|
42
58
|
}
|
|
43
59
|
.ard-search-bar.ard-compact {
|
|
44
|
-
height: 1.
|
|
45
|
-
font-size: 0.
|
|
46
|
-
line-height: 1;
|
|
60
|
+
height: var(--ard-search-bar-height-compact, var(--ard-form-field-height-compact, 1.6875rem));
|
|
61
|
+
font-size: var(--ard-search-bar-font-size-compact, var(--ard-form-field-font-size-compact, 0.875rem));
|
|
62
|
+
line-height: var(--ard-search-bar-line-height-compact, 1);
|
|
63
|
+
padding: var(--ard-search-bar-padding-compact, var(--ard-form-field-padding-compact, 0 0.375rem));
|
|
47
64
|
}
|
|
48
65
|
.ard-search-bar ard-clear-button {
|
|
49
66
|
height: var(--ard-clear-button-size);
|
|
@@ -77,10 +94,10 @@
|
|
|
77
94
|
}
|
|
78
95
|
.ard-search-bar .ard-clear-btn-wrapper .ard-focus-overlay {
|
|
79
96
|
position: absolute;
|
|
80
|
-
top: -1px;
|
|
81
|
-
bottom: -1px;
|
|
82
|
-
left: -1px;
|
|
83
|
-
right: -1px;
|
|
97
|
+
top: calc(-1 * 1px);
|
|
98
|
+
bottom: calc(-1 * 1px);
|
|
99
|
+
left: calc(-1 * 1px);
|
|
100
|
+
right: calc(-1 * 1px);
|
|
84
101
|
opacity: 0;
|
|
85
102
|
border-radius: inherit;
|
|
86
103
|
pointer-events: none;
|
|
@@ -112,7 +129,7 @@
|
|
|
112
129
|
|
|
113
130
|
.ard-disabled .ard-search-bar {
|
|
114
131
|
pointer-events: none;
|
|
115
|
-
opacity: 50
|
|
132
|
+
opacity: var(--ard-search-bar-disabled-opacity, 50%);
|
|
116
133
|
}
|
|
117
134
|
|
|
118
135
|
/*# sourceMappingURL=search-bar.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/search-bar.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;
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/search-bar.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;ACKA;EAGE;EAGA;EACA;EACA;EAKA;EAEA;EACA;EACA;;;AAGF;EDPE,QCSE;EDRF;EACA;EACA;EACA;EACA;EACA,KCKE;EDJF;EACA;EACA,WCGE;EDFF,aCIE;EDHF,aCKE;EDJF,SCKE;EDJF,OCME;EAIF;EACA;;ADTA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA,SCFF;EDGE,OCJF;EDKE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACE,QCnCA;EDoCA,WCjCA;EDkCA,aChCA;EDiCA,SC9BA;;AClCF;EACE,QCmCgB;EDlChB,OCkCgB;EDjChB;;AAGF;EACE;EACA;EACA,OCGK;EDFL,OC0BgB;EDzBhB,QCyBgB;EDxBhB;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAGF;EEvBF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EFgBI;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EE7CN;EACA;EACA,yBACE;EF4CI;;AAKF;EACE;;AAKF;EACE;;AAKF;EACE;;;ADlBN;EACE;EACA","file":"search-bar.css"}
|
|
@@ -1,12 +1,16 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--ard-kbd-shortcut-font-size: 0.875em;
|
|
3
|
+
--ard-kbd-shortcut-transparent-font-size: 0.75em;
|
|
4
|
+
}
|
|
5
|
+
|
|
1
6
|
.ard-kbd-shortcut {
|
|
2
|
-
font-family:
|
|
3
|
-
color: var(--ard-text2);
|
|
7
|
+
font-family: var(--ard-font-family-mono);
|
|
4
8
|
}
|
|
5
9
|
.ard-kbd-shortcut > span {
|
|
6
|
-
font-size: 0.
|
|
10
|
+
font-size: var(--ard-kbd-shortcut-font-size, 0.875em);
|
|
7
11
|
}
|
|
8
12
|
.ard-kbd-shortcut.ard-appearance-transparent > span {
|
|
9
|
-
font-size: 0.75em;
|
|
13
|
+
font-size: var(--ard-kbd-shortcut-transparent-font-size, 0.75em);
|
|
10
14
|
}
|
|
11
15
|
|
|
12
16
|
/*# sourceMappingURL=kbd-shortcut.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../../../projects/ui/src/themes/default/kbd-shortcut.scss"
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../../../projects/ui/src/themes/default/kbd-shortcut.scss"],"names":[],"mappings":"AAIA;EACE;EACA;;;AAGF;EACE;;AAEA;EACE;;AAEF;EACE","file":"kbd-shortcut.css"}
|
|
@@ -1,18 +1,28 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--ard-kbd-border-radius: 0.1875em;
|
|
3
|
+
--ard-kbd-margin: 0 0.125em;
|
|
4
|
+
--ard-kbd-padding: 0.125em 0.375em;
|
|
5
|
+
--ard-kbd-border-width: 1px;
|
|
6
|
+
--ard-kbd-border-style: solid;
|
|
7
|
+
--ard-kbd-border-color: ;
|
|
8
|
+
--ard-kbd-box-shadow-settings: inset 0 -1px 0;
|
|
9
|
+
}
|
|
10
|
+
|
|
1
11
|
.ard-kbd {
|
|
2
|
-
border-radius: 0.
|
|
3
|
-
font-family:
|
|
4
|
-
font-size: 0.
|
|
5
|
-
margin: 0 0.125em;
|
|
12
|
+
border-radius: var(--ard-kbd-border-radius, 0.1875em);
|
|
13
|
+
font-family: var(--ard-font-family-mono);
|
|
14
|
+
font-size: var(--ard-kbd-font-size, 0.875em);
|
|
15
|
+
margin: var(--ard-kbd-margin, 0 0.125em);
|
|
6
16
|
color: var(--ard-text2);
|
|
7
17
|
}
|
|
8
18
|
.ard-kbd.ard-appearance-outlined, .ard-kbd.ard-appearance-filled {
|
|
9
|
-
border: 1px solid var(--ard-detail-ultralight);
|
|
10
|
-
box-shadow: inset 0 -1px 0 var(--ard-
|
|
11
|
-
padding: 0.
|
|
12
|
-
background-color: var(--ard-bg);
|
|
19
|
+
border: var(--ard-kbd-border-width, 1px) var(--ard-kbd-border-style, solid) var(--ard-kbd-border-color, var(--ard-detail-ultralight));
|
|
20
|
+
box-shadow: var(--ard-kbd-box-shadow-settings, inset 0 -1px 0) var(--ard-kbd-box-shadow-color, var(--ard-detail-light));
|
|
21
|
+
padding: var(--ard-kbd-padding, 0.125em 0.375em);
|
|
22
|
+
background-color: var(--ard-kbd-bg, var(--ard-bg));
|
|
13
23
|
}
|
|
14
24
|
.ard-kbd.ard-appearance-filled {
|
|
15
|
-
background: var(--ard-bg-darker);
|
|
25
|
+
background: var(--ard-kbd-filled-bg, var(--ard-bg-darker));
|
|
16
26
|
}
|
|
17
27
|
|
|
18
28
|
/*# sourceMappingURL=kbd.css.map */
|