@hug/hospitality 0.0.4-alpha.16 → 0.0.4-alpha.17
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/.editorconfig +18 -0
- package/.eslintignore +47 -0
- package/.eslintrc.json +6 -0
- package/.github/ISSUE_TEMPLATE/1-bug-report.yml +57 -0
- package/.github/ISSUE_TEMPLATE/2-feature-request.yml +26 -0
- package/.github/ISSUE_TEMPLATE/3-doc-issue.yml +26 -0
- package/.github/workflows/ci_release.yml +17 -0
- package/.husky/commit-msg +3 -0
- package/.husky/pre-commit +17 -0
- package/.vscode/extensions.json +6 -0
- package/.vscode/settings.json +33 -0
- package/CODE_OF_CONDUCT.md +135 -0
- package/CONTRIBUTING.md +289 -0
- package/DEVELOPER.md +37 -0
- package/dist/LICENSE +674 -0
- package/dist/README.md +85 -0
- package/dist/material/button/button.scss +237 -0
- package/dist/material/dialog/dialog.scss +29 -0
- package/dist/material/form-field/form-field.scss +97 -0
- package/dist/material/theme/theme.scss +69 -0
- package/dist/material/theme/utils.scss +10 -0
- package/dist/tokens/tokens.css +823 -0
- package/index.ts +1 -0
- package/material/core/directives/components-styling.directive.ts +20 -0
- package/material/core/index.ts +1 -0
- package/material/core/ng-package.json +7 -0
- package/material/form-field/form-field.provider.ts +7 -0
- package/material/form-field/index.ts +1 -0
- package/material/form-field/ng-package.json +7 -0
- package/ng-package.json +10 -0
- package/package.json +92 -92
- package/tokens/index.ts +38 -0
- package/tokens/ng-package.json +7 -0
- package/tokens/tokens.json +5042 -0
- package/tsconfig.json +16 -0
- /package/{fesm2022 → dist/fesm2022}/core.mjs +0 -0
- /package/{fesm2022 → dist/fesm2022}/core.mjs.map +0 -0
- /package/{fesm2022 → dist/fesm2022}/form-field.mjs +0 -0
- /package/{fesm2022 → dist/fesm2022}/form-field.mjs.map +0 -0
- /package/{fesm2022 → dist/fesm2022}/hug-hospitality.mjs +0 -0
- /package/{fesm2022 → dist/fesm2022}/hug-hospitality.mjs.map +0 -0
- /package/{fesm2022 → dist/fesm2022}/tokens.mjs +0 -0
- /package/{fesm2022 → dist/fesm2022}/tokens.mjs.map +0 -0
- /package/{index.d.ts → dist/index.d.ts} +0 -0
- /package/{material → dist/material}/core/directives/components-styling.directive.d.ts +0 -0
- /package/{material → dist/material}/core/index.d.ts +0 -0
- /package/{material → dist/material}/form-field/form-field.provider.d.ts +0 -0
- /package/{material → dist/material}/form-field/index.d.ts +0 -0
- /package/{tokens → dist/tokens}/index.d.ts +0 -0
package/dist/README.md
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
<h1 align="center">
|
|
2
|
+
@hug/hospitality
|
|
3
|
+
</h1>
|
|
4
|
+
|
|
5
|
+
<p align="center">
|
|
6
|
+
<br/>
|
|
7
|
+
<a href="https://www.hug.ch">
|
|
8
|
+
<img src="https://cdn.hug.ch/svgs/hug/hug-logo-horizontal.svg" alt="hug-logo" height="54px" />
|
|
9
|
+
</a>
|
|
10
|
+
<br/><br/>
|
|
11
|
+
<i>TODO: title</i>
|
|
12
|
+
<br/><br/>
|
|
13
|
+
</p>
|
|
14
|
+
|
|
15
|
+
<p align="center">
|
|
16
|
+
<a href="https://www.npmjs.com/package/@hug/hospitality">
|
|
17
|
+
<img src="https://img.shields.io/npm/v/@hug/hospitality.svg?color=blue&logo=npm" alt="npm version" /></a>
|
|
18
|
+
<a href="https://npmcharts.com/compare/@hug/hospitality?minimal=true">
|
|
19
|
+
<img src="https://img.shields.io/npm/dw/@hug/hospitality.svg?color=blue&logo=npm" alt="npm donwloads" /></a>
|
|
20
|
+
<a href="https://github.com/dsi-hug/hospitality/blob/main/LICENSE">
|
|
21
|
+
<img src="https://img.shields.io/badge/license-GPLv3-ff69b4.svg" alt="license GPLv3" /></a>
|
|
22
|
+
</p>
|
|
23
|
+
|
|
24
|
+
<p align="center">
|
|
25
|
+
<a href="https://github.com/dsi-hug/hospitality/blob/main/CONTRIBUTING.md#-submitting-a-pull-request-pr">
|
|
26
|
+
<img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs welcome" /></a>
|
|
27
|
+
</p>
|
|
28
|
+
|
|
29
|
+
<hr/>
|
|
30
|
+
|
|
31
|
+
## Getting started
|
|
32
|
+
|
|
33
|
+
TODO:
|
|
34
|
+
|
|
35
|
+
#### Installation
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
npm install @hug/hospitality --save-dev
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
```sh
|
|
42
|
+
yarn add @hug/hospitality --dev
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
## Usage
|
|
47
|
+
|
|
48
|
+
TODO:
|
|
49
|
+
|
|
50
|
+
#### Examples
|
|
51
|
+
|
|
52
|
+
TODO:
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
## Development
|
|
56
|
+
|
|
57
|
+
See the [developer docs][developer].
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
## Contributing
|
|
61
|
+
|
|
62
|
+
#### > Want to Help?
|
|
63
|
+
|
|
64
|
+
Want to file a bug, contribute some code or improve documentation? Excellent!
|
|
65
|
+
|
|
66
|
+
But please read up first on the guidelines for [contributing][contributing], and learn about submission process, coding rules and more.
|
|
67
|
+
|
|
68
|
+
#### > Code of Conduct
|
|
69
|
+
|
|
70
|
+
Please read and follow the [Code of Conduct][codeofconduct], and help us keep this project open and inclusive.
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
## Credits
|
|
74
|
+
|
|
75
|
+
Copyright (C) 2025 [HUG - Hôpitaux Universitaires Genève][dsi-hug]
|
|
76
|
+
|
|
77
|
+
[][dsi-hug]
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
[developer]: https://github.com/dsi-hug/hospitality/blob/main/DEVELOPER.md
|
|
83
|
+
[contributing]: https://github.com/dsi-hug/hospitality/blob/main/CONTRIBUTING.md
|
|
84
|
+
[codeofconduct]: https://github.com/dsi-hug/hospitality/blob/main/CODE_OF_CONDUCT.md
|
|
85
|
+
[dsi-hug]: https://github.com/dsi-hug
|
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
@use "@angular/material" as mat;
|
|
2
|
+
|
|
3
|
+
button {
|
|
4
|
+
gap: 0.5rem;
|
|
5
|
+
|
|
6
|
+
@include mat.button-overrides(
|
|
7
|
+
(
|
|
8
|
+
filled-horizontal-padding: 1rem,
|
|
9
|
+
outlined-horizontal-padding: 1rem,
|
|
10
|
+
protected-horizontal-padding: 1rem,
|
|
11
|
+
text-horizontal-padding: 1rem,
|
|
12
|
+
text-with-icon-horizontal-padding: 1rem,
|
|
13
|
+
outlined-label-text-color: var(--mat-sys-on-surface-variant),
|
|
14
|
+
outlined-outline-color: var(--mat-sys-outline-variant),
|
|
15
|
+
outlined-disabled-outline-color: var(--mat-sys-outline-variant),
|
|
16
|
+
outlined-state-layer-color:
|
|
17
|
+
color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent),
|
|
18
|
+
outlined-ripple-color:
|
|
19
|
+
color-mix(in srgb, var(--mat-sys-on-surface) 10%, transparent),
|
|
20
|
+
)
|
|
21
|
+
);
|
|
22
|
+
|
|
23
|
+
&[mat-button],
|
|
24
|
+
&[mat-stroked-button],
|
|
25
|
+
&[mat-flat-button] {
|
|
26
|
+
> mat-icon.mat-icon {
|
|
27
|
+
margin: 0;
|
|
28
|
+
font-size: 1.25rem;
|
|
29
|
+
height: 1.25rem;
|
|
30
|
+
width: 1.25rem;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&:disabled {
|
|
34
|
+
background-color: color-mix(
|
|
35
|
+
in srgb,
|
|
36
|
+
var(--mat-sys-on-surface) 12%,
|
|
37
|
+
transparent
|
|
38
|
+
);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
&[hy-size="small"] {
|
|
43
|
+
gap: 0.5rem;
|
|
44
|
+
|
|
45
|
+
@include mat.button-density(-1);
|
|
46
|
+
@include mat.button-overrides(
|
|
47
|
+
(
|
|
48
|
+
filled-horizontal-padding: 0.75rem,
|
|
49
|
+
outlined-horizontal-padding: 0.75rem,
|
|
50
|
+
protected-horizontal-padding: 0.75rem,
|
|
51
|
+
text-horizontal-padding: 0.75rem,
|
|
52
|
+
text-with-icon-horizontal-padding: 0.75rem,
|
|
53
|
+
)
|
|
54
|
+
);
|
|
55
|
+
@include mat.icon-button-overrides(
|
|
56
|
+
(
|
|
57
|
+
state-layer-size: 2rem,
|
|
58
|
+
)
|
|
59
|
+
);
|
|
60
|
+
|
|
61
|
+
&[mat-icon-button] {
|
|
62
|
+
> mat-icon.mat-icon {
|
|
63
|
+
margin: 0;
|
|
64
|
+
font-size: 1.25rem;
|
|
65
|
+
height: 1.25rem;
|
|
66
|
+
width: 1.25rem;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
&[hy-size="x-large"] {
|
|
72
|
+
@include mat.button-overrides(
|
|
73
|
+
(
|
|
74
|
+
filled-container-height: 3.5rem,
|
|
75
|
+
outlined-container-height: 3.5rem,
|
|
76
|
+
protected-container-height: 3.5rem,
|
|
77
|
+
text-container-height: 3.5rem,
|
|
78
|
+
|
|
79
|
+
filled-horizontal-padding: 1.5rem,
|
|
80
|
+
outlined-horizontal-padding: 1.5rem,
|
|
81
|
+
protected-horizontal-padding: 1.5rem,
|
|
82
|
+
text-horizontal-padding: 1.5rem,
|
|
83
|
+
text-with-icon-horizontal-padding: 1.5rem,
|
|
84
|
+
|
|
85
|
+
filled-label-text-font: var(--mat-sys-title-medium-font),
|
|
86
|
+
outlined-label-text-font: var(--mat-sys-title-medium-font),
|
|
87
|
+
protected-label-text-font: var(--mat-sys-title-medium-font),
|
|
88
|
+
text-label-text-font: var(--mat-sys-title-medium-font),
|
|
89
|
+
filled-label-text-size: var(--mat-sys-title-medium-size),
|
|
90
|
+
outlined-label-text-size: var(--mat-sys-title-medium-size),
|
|
91
|
+
protected-label-text-size: var(--mat-sys-title-medium-size),
|
|
92
|
+
text-label-text-size: var(--mat-sys-title-medium-size),
|
|
93
|
+
filled-label-text-tracking: var(--mat-sys-title-medium-tracking),
|
|
94
|
+
outlined-label-text-tracking:
|
|
95
|
+
var(--mat-sys-title-medium-tracking),
|
|
96
|
+
protected-label-text-tracking:
|
|
97
|
+
var(--mat-sys-title-medium-tracking),
|
|
98
|
+
text-label-text-tracking: var(--mat-sys-title-medium-tracking),
|
|
99
|
+
filled-label-text-weight: var(--mat-sys-title-medium-weight),
|
|
100
|
+
outlined-label-text-weight: var(--mat-sys-title-medium-weight),
|
|
101
|
+
protected-label-text-weight: var(--mat-sys-title-medium-weight),
|
|
102
|
+
text-label-text-weight: var(--mat-sys-title-medium-weight),
|
|
103
|
+
)
|
|
104
|
+
);
|
|
105
|
+
|
|
106
|
+
@include mat.icon-button-overrides(
|
|
107
|
+
(
|
|
108
|
+
state-layer-size: 3.5rem,
|
|
109
|
+
)
|
|
110
|
+
);
|
|
111
|
+
|
|
112
|
+
&[mat-button],
|
|
113
|
+
&[mat-stroked-button],
|
|
114
|
+
&[mat-flat-button] {
|
|
115
|
+
> mat-icon.mat-icon {
|
|
116
|
+
font-size: 1.5rem;
|
|
117
|
+
height: 1.5rem;
|
|
118
|
+
width: 1.5rem;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
&[hy-appearance="tonal"],
|
|
124
|
+
&[hy-appearance="filled"],
|
|
125
|
+
&[hy-appearance="warning-filled"] {
|
|
126
|
+
&:disabled {
|
|
127
|
+
background-color: color-mix(
|
|
128
|
+
in srgb,
|
|
129
|
+
var(--mat-sys-on-surface) 10%,
|
|
130
|
+
transparent
|
|
131
|
+
);
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
&[hy-appearance="tonal"] {
|
|
136
|
+
@include mat.button-overrides(
|
|
137
|
+
(
|
|
138
|
+
filled-container-color: var(--mat-sys-secondary-container),
|
|
139
|
+
filled-label-text-color: var(--mat-sys-on-secondary-container),
|
|
140
|
+
filled-state-layer-color: var(--mat-sys-on-secondary-container),
|
|
141
|
+
filled-ripple-color:
|
|
142
|
+
color-mix(
|
|
143
|
+
in srgb,
|
|
144
|
+
var(--mat-sys-on-secondary-container) 10%,
|
|
145
|
+
transparent
|
|
146
|
+
),
|
|
147
|
+
)
|
|
148
|
+
);
|
|
149
|
+
|
|
150
|
+
@include mat.icon-button-overrides(
|
|
151
|
+
(
|
|
152
|
+
icon-color: var(--mat-sys-on-secondary-container),
|
|
153
|
+
state-layer-color: var(--mat-sys-on-secondary-container),
|
|
154
|
+
ripple-color:
|
|
155
|
+
color-mix(
|
|
156
|
+
in srgb,
|
|
157
|
+
var(--mat-sys-on-secondary-container) 10%,
|
|
158
|
+
transparent
|
|
159
|
+
),
|
|
160
|
+
)
|
|
161
|
+
);
|
|
162
|
+
|
|
163
|
+
&[mat-icon-button]:enabled {
|
|
164
|
+
background-color: var(--mat-sys-secondary-container);
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
&[hy-appearance="filled"] {
|
|
169
|
+
background-color: var(--mat-sys-primary);
|
|
170
|
+
|
|
171
|
+
@include mat.icon-button-overrides(
|
|
172
|
+
(
|
|
173
|
+
icon-color: var(--mat-sys-on-primary),
|
|
174
|
+
state-layer-color: var(--mat-sys-on-primary),
|
|
175
|
+
ripple-color:
|
|
176
|
+
color-mix(
|
|
177
|
+
in srgb,
|
|
178
|
+
var(--mat-sys-on-primary) 10%,
|
|
179
|
+
transparent
|
|
180
|
+
),
|
|
181
|
+
)
|
|
182
|
+
);
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
&[hy-appearance="warning-filled"] {
|
|
186
|
+
@include mat.button-overrides(
|
|
187
|
+
(
|
|
188
|
+
filled-container-color: var(--mat-sys-warning),
|
|
189
|
+
filled-label-text-color: var(--mat-sys-on-warning),
|
|
190
|
+
filled-state-layer-color: var(--mat-sys-on-warning),
|
|
191
|
+
filled-ripple-color:
|
|
192
|
+
color-mix(
|
|
193
|
+
in srgb,
|
|
194
|
+
var(--mat-sys-on-warning) 10%,
|
|
195
|
+
transparent
|
|
196
|
+
),
|
|
197
|
+
)
|
|
198
|
+
);
|
|
199
|
+
|
|
200
|
+
@include mat.icon-button-overrides(
|
|
201
|
+
(
|
|
202
|
+
icon-color: var(--mat-sys-on-warning),
|
|
203
|
+
state-layer-color: var(--mat-sys-on-warning),
|
|
204
|
+
ripple-color:
|
|
205
|
+
color-mix(
|
|
206
|
+
in srgb,
|
|
207
|
+
var(--mat-sys-on-warning) 10%,
|
|
208
|
+
transparent
|
|
209
|
+
),
|
|
210
|
+
)
|
|
211
|
+
);
|
|
212
|
+
|
|
213
|
+
&[mat-icon-button]:enabled {
|
|
214
|
+
background-color: var(--mat-sys-warning);
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
&[hy-appearance="warning-text"] {
|
|
219
|
+
@include mat.button-overrides(
|
|
220
|
+
(
|
|
221
|
+
text-label-text-color: var(--mat-sys-warning),
|
|
222
|
+
text-state-layer-color: var(--mat-sys-warning),
|
|
223
|
+
text-ripple-color:
|
|
224
|
+
color-mix(in srgb, var(--mat-sys-warning) 10%, transparent),
|
|
225
|
+
)
|
|
226
|
+
);
|
|
227
|
+
|
|
228
|
+
@include mat.icon-button-overrides(
|
|
229
|
+
(
|
|
230
|
+
icon-color: var(--mat-sys-warning),
|
|
231
|
+
state-layer-color: var(--mat-sys-warning),
|
|
232
|
+
ripple-color:
|
|
233
|
+
color-mix(in srgb, var(--mat-sys-warning) 10%, transparent),
|
|
234
|
+
)
|
|
235
|
+
);
|
|
236
|
+
}
|
|
237
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
@use "@angular/material" as mat;
|
|
2
|
+
|
|
3
|
+
mat-dialog-container {
|
|
4
|
+
@include mat.dialog-overrides(
|
|
5
|
+
(
|
|
6
|
+
actions-padding: 1.5rem,
|
|
7
|
+
headline-padding: 0.25rem 1.5rem 1rem,
|
|
8
|
+
)
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.warning-dialog {
|
|
13
|
+
mat-dialog-container {
|
|
14
|
+
@include mat.dialog-overrides(
|
|
15
|
+
(
|
|
16
|
+
subhead-color: var(--mat-sys-warning),
|
|
17
|
+
headline-padding: 1.5rem 1.5rem 1rem,
|
|
18
|
+
)
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
[mat-dialog-title]:before {
|
|
23
|
+
content: "warning";
|
|
24
|
+
font-family: "Material Symbols Outlined Variable";
|
|
25
|
+
display: inline;
|
|
26
|
+
padding-right: 10px;
|
|
27
|
+
vertical-align: bottom;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
@use "@angular/material" as mat;
|
|
2
|
+
|
|
3
|
+
mat-form-field {
|
|
4
|
+
@include mat.form-field-density(-2);
|
|
5
|
+
@include mat.form-field-overrides(
|
|
6
|
+
(
|
|
7
|
+
outlined-focus-label-text-color: var(--mat-sys-primary),
|
|
8
|
+
outlined-focus-outline-color: var(--mat-sys-primary),
|
|
9
|
+
outlined-focus-outline-width: 3px,
|
|
10
|
+
outlined-error-label-text-color: var(--mat-sys-error),
|
|
11
|
+
outlined-error-focus-label-text-color: var(--mat-sys-error),
|
|
12
|
+
outlined-error-outline-color: var(--mat-sys-error),
|
|
13
|
+
outlined-error-caret-color: var(--mat-sys-error),
|
|
14
|
+
outlined-input-text-placeholder-color:
|
|
15
|
+
var(--mat-sys-on-surface-variant),
|
|
16
|
+
)
|
|
17
|
+
);
|
|
18
|
+
|
|
19
|
+
.mat-mdc-floating-label {
|
|
20
|
+
top: 50%;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&:has(textarea) {
|
|
24
|
+
&[hy-size="small"] {
|
|
25
|
+
.mat-mdc-form-field-icon-suffix {
|
|
26
|
+
padding: 0.5rem 0;
|
|
27
|
+
|
|
28
|
+
mat-icon {
|
|
29
|
+
padding-top: 0.125rem;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
&[hy-size="large"] {
|
|
35
|
+
.mat-mdc-form-field-icon-suffix {
|
|
36
|
+
padding: 1rem 0;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.mat-mdc-form-field-icon-suffix {
|
|
41
|
+
height: -webkit-fill-available;
|
|
42
|
+
display: flex;
|
|
43
|
+
align-items: flex-start;
|
|
44
|
+
justify-content: center;
|
|
45
|
+
padding-bottom: 0.75rem;
|
|
46
|
+
padding-top: 0.75rem;
|
|
47
|
+
margin-left: 0.25rem;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
&[hy-size="small"] {
|
|
52
|
+
@include mat.form-field-density(-4);
|
|
53
|
+
|
|
54
|
+
.mat-mdc-form-field-icon-suffix,
|
|
55
|
+
.mat-mdc-form-field-icon-prefix {
|
|
56
|
+
button {
|
|
57
|
+
margin: 0 0.5rem;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
mat-icon {
|
|
61
|
+
font-size: 1.25rem;
|
|
62
|
+
width: 1.25rem;
|
|
63
|
+
height: 1.25rem;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
&[hy-size="large"] {
|
|
69
|
+
@include mat.form-field-density(0);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
&.mat-form-field-disabled {
|
|
73
|
+
mat-hint {
|
|
74
|
+
color: color-mix(
|
|
75
|
+
in srgb,
|
|
76
|
+
var(--mat-sys-on-surface-variant) 38%,
|
|
77
|
+
transparent
|
|
78
|
+
);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
> .mat-mdc-text-field-wrapper {
|
|
83
|
+
background-color: var(--mat-sys-surface-container-lowest);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.mat-mdc-form-field-icon-suffix,
|
|
87
|
+
.mat-mdc-form-field-icon-prefix {
|
|
88
|
+
width: 3rem;
|
|
89
|
+
button {
|
|
90
|
+
margin: 0 0.25rem;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
mat-hint {
|
|
95
|
+
color: var(--mat-sys-on-surface-variant);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
@use "@angular/material" as mat;
|
|
2
|
+
@use "./utils" as map;
|
|
3
|
+
|
|
4
|
+
$override-colors: (
|
|
5
|
+
primary: var(--hy-color-primary),
|
|
6
|
+
on-primary: var(--hy-color-on-primary),
|
|
7
|
+
primary-container: var(--hy-color-primary-container),
|
|
8
|
+
on-primary-container: var(--hy-color-on-primary-container),
|
|
9
|
+
primary-fixed: var(--hy-color-primary-fixed),
|
|
10
|
+
primary-fixed-dim: var(--hy-color-primary-fixed-dim),
|
|
11
|
+
on-primary-fixed: var(--hy-color-primary-fixed),
|
|
12
|
+
on-primary-fixed-variant: var(--hy-color-primary-fixed-variant),
|
|
13
|
+
secondary: var(--hy-color-secondary),
|
|
14
|
+
on-secondary: var(--hy-color-on-secondary),
|
|
15
|
+
secondary-container: var(--hy-color-secondary-container),
|
|
16
|
+
on-secondary-conmtainer: var(--hy-color-on-secondary-container),
|
|
17
|
+
secondary-fixed: var(--hy-color-secondary-fixed),
|
|
18
|
+
secondary-fixed-dim: var(--hy-color-secondary-fixed-dim),
|
|
19
|
+
on-secondary-fixed: var(--hy-color-secondary-fixed),
|
|
20
|
+
on-secondary-fixed-variant: var(--hy-color-secondary-fixed-variant),
|
|
21
|
+
tertiary: var(--hy-color-tertiary),
|
|
22
|
+
on-tertiary: var(--hy-color-on-tertiary),
|
|
23
|
+
tertiary-container: var(--hy-color-tertiary-container),
|
|
24
|
+
on-tertiary-conmtainer: var(--hy-color-on-tertiary-container),
|
|
25
|
+
tertiary-fixed: var(--hy-color-tertiary-fixed),
|
|
26
|
+
tertiary-fixed-dim: var(--hy-color-tertiary-fixed-dim),
|
|
27
|
+
on-tertiary-fixed: var(--hy-color-tertiary-fixed),
|
|
28
|
+
on-tertiary-fixed-variant: var(--hy-color-tertiary-fixed-variant),
|
|
29
|
+
error: var(--hy-color-error),
|
|
30
|
+
on-error: var(--hy-color-on-error),
|
|
31
|
+
error-container: var(--hy-color-error-container),
|
|
32
|
+
on-error-conmtainer: var(--hy-color-on-error-container),
|
|
33
|
+
surface: var(--hy-color-surface),
|
|
34
|
+
surface-dim: var(--hy-color-surface-dim),
|
|
35
|
+
surface-bright: var(--hy-color-surface-bright),
|
|
36
|
+
surface-container-lowest: var(--hy-color-surface-container-lowest),
|
|
37
|
+
surface-container-low: var(--hy-color-surface-container-low),
|
|
38
|
+
surface-container: var(--hy-color-surface-container),
|
|
39
|
+
surface-container-high: var(--hy-color-surface-container-high),
|
|
40
|
+
surface-container-highest: var(--hy-color-surface-container-highest),
|
|
41
|
+
on-surface: var(--hy-color-on-surface),
|
|
42
|
+
on-surface-variant: var(--hy-color-on-surface-variant),
|
|
43
|
+
ouline: var(--hy-color-outline),
|
|
44
|
+
ouline-variant: var(--hy-color-outline-variant),
|
|
45
|
+
inverse-surface: var(--hy-color-inverse-surface),
|
|
46
|
+
inverse-on-surface: var(--hy-color-inverse-on-surface),
|
|
47
|
+
inverse-primary: var(--hy-color-inverse-primary),
|
|
48
|
+
background: var(--hy-color-background),
|
|
49
|
+
on-background: var(--hy-color-on-background),
|
|
50
|
+
scrim: var(--hy-color-scrim),
|
|
51
|
+
shadow: var(--hy-color-shadow),
|
|
52
|
+
);
|
|
53
|
+
|
|
54
|
+
$override-typography: ();
|
|
55
|
+
|
|
56
|
+
$override-density: ();
|
|
57
|
+
|
|
58
|
+
$overrides: map.merge-all($override-colors, $override-typography);
|
|
59
|
+
|
|
60
|
+
@mixin theme {
|
|
61
|
+
@include mat.theme(
|
|
62
|
+
(
|
|
63
|
+
color: (),
|
|
64
|
+
typography: Roboto,
|
|
65
|
+
density: 0,
|
|
66
|
+
),
|
|
67
|
+
$overrides
|
|
68
|
+
);
|
|
69
|
+
}
|