azion-theme 1.11.5 → 1.11.7
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [1.11.7](https://github.com/aziontech/azion-theme/compare/v1.11.6...v1.11.7) (2025-08-05)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* calendar color and size fixes ([#46](https://github.com/aziontech/azion-theme/issues/46)) ([5055c17](https://github.com/aziontech/azion-theme/commit/5055c1710c14e5bc65c0db07c2dbbdccce228b65))
|
|
6
|
+
|
|
7
|
+
## [1.11.6](https://github.com/aziontech/azion-theme/compare/v1.11.5...v1.11.6) (2025-07-18)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* spacing accordion ([#44](https://github.com/aziontech/azion-theme/issues/44)) ([e690d2a](https://github.com/aziontech/azion-theme/commit/e690d2a17751ecaa6ed69d735c96a7b28f3d7435))
|
|
12
|
+
|
|
1
13
|
## [1.11.5](https://github.com/aziontech/azion-theme/compare/v1.11.4...v1.11.5) (2025-07-15)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -40,3 +40,271 @@
|
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
|
+
|
|
44
|
+
.p-datepicker {
|
|
45
|
+
padding: $calendarPadding;
|
|
46
|
+
max-width: 320px !important;
|
|
47
|
+
background: $calendarInlineBg;
|
|
48
|
+
color: $calendarTextColor;
|
|
49
|
+
border: $calendarBorder;
|
|
50
|
+
border-radius: $borderRadius;
|
|
51
|
+
display: flex;
|
|
52
|
+
flex-direction: column;
|
|
53
|
+
justify-content: center;
|
|
54
|
+
align-items: center;
|
|
55
|
+
width: fit-content !important;
|
|
56
|
+
|
|
57
|
+
.p-datepicker-group-container {
|
|
58
|
+
width: fit-content !important;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
&:not(.p-datepicker-inline) {
|
|
62
|
+
background: $calendarBg;
|
|
63
|
+
border: $calendarOverlayBorder;
|
|
64
|
+
box-shadow: $inputOverlayShadow;
|
|
65
|
+
|
|
66
|
+
.p-datepicker-header {
|
|
67
|
+
background: $calendarHeaderBg;
|
|
68
|
+
width: 100% !important;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.p-datepicker-header {
|
|
73
|
+
padding: 0 !important;
|
|
74
|
+
color: $calendarHeaderTextColor;
|
|
75
|
+
background: $calendarInlineHeaderBg;
|
|
76
|
+
font-weight: $calendarHeaderFontWeight;
|
|
77
|
+
margin: $inputListHeaderMargin;
|
|
78
|
+
border-bottom: $divider;
|
|
79
|
+
border-top-right-radius: $borderRadius;
|
|
80
|
+
border-top-left-radius: $borderRadius;
|
|
81
|
+
|
|
82
|
+
.p-datepicker-prev,
|
|
83
|
+
.p-datepicker-next {
|
|
84
|
+
@include action-icon();
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.p-datepicker-title {
|
|
88
|
+
line-height: $actionIconHeight;
|
|
89
|
+
|
|
90
|
+
.p-datepicker-year,
|
|
91
|
+
.p-datepicker-month {
|
|
92
|
+
color: $calendarHeaderTextColor;
|
|
93
|
+
transition: $actionIconTransition;
|
|
94
|
+
font-weight: $calendarHeaderFontWeight;
|
|
95
|
+
padding: $calendarHeaderCellPadding;
|
|
96
|
+
|
|
97
|
+
&:enabled:hover {
|
|
98
|
+
color: $calendarMonthYearHeaderHoverTextColor;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.p-datepicker-month {
|
|
103
|
+
margin-right: $inlineSpacing;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.p-datepicker-calendar-container {
|
|
109
|
+
padding: 0px !important;
|
|
110
|
+
width: fit-content !important;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
table {
|
|
114
|
+
font-size: $fontSize;
|
|
115
|
+
margin: $calendarTableMargin;
|
|
116
|
+
|
|
117
|
+
th {
|
|
118
|
+
padding: 0 !important;
|
|
119
|
+
|
|
120
|
+
> span {
|
|
121
|
+
width: 32px !important;
|
|
122
|
+
height: 32px !important;
|
|
123
|
+
margin: 4px !important;
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
td {
|
|
128
|
+
padding: 0 !important;
|
|
129
|
+
|
|
130
|
+
> span {
|
|
131
|
+
width: 32px !important;
|
|
132
|
+
height: 32px !important;
|
|
133
|
+
margin: 4px !important;
|
|
134
|
+
border-radius: $calendarCellDateBorderRadius;
|
|
135
|
+
transition: $listItemTransition;
|
|
136
|
+
border: $calendarCellDateBorder;
|
|
137
|
+
|
|
138
|
+
&.p-highlight {
|
|
139
|
+
color: var(--secondary-button-text-active-color);
|
|
140
|
+
font-weight: 500 !important;
|
|
141
|
+
background: var(--secondary-button-active-bg) !important;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
&:focus {
|
|
145
|
+
@include focused();
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
&.p-datepicker-today {
|
|
150
|
+
> span {
|
|
151
|
+
background: var(--surface-500);
|
|
152
|
+
color: var(--text-color);
|
|
153
|
+
border-color: none;
|
|
154
|
+
|
|
155
|
+
&.p-highlight {
|
|
156
|
+
color: var(--primary-color-text);
|
|
157
|
+
font-weight: 500;
|
|
158
|
+
background: var(--primary-dark-color);
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.p-datepicker-buttonbar {
|
|
166
|
+
padding: $calendarButtonBarPadding;
|
|
167
|
+
border-top: $divider;
|
|
168
|
+
|
|
169
|
+
.p-button {
|
|
170
|
+
width: auto;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.p-timepicker {
|
|
175
|
+
border-top: $divider;
|
|
176
|
+
padding: 0;
|
|
177
|
+
width: 100% !important;
|
|
178
|
+
|
|
179
|
+
button {
|
|
180
|
+
@include action-icon();
|
|
181
|
+
|
|
182
|
+
&:last-child {
|
|
183
|
+
margin-top: .2em;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
span {
|
|
188
|
+
font-size: 1rem !important;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
> div {
|
|
192
|
+
padding: $calendarTimePickerElementPadding;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
&.p-datepicker-timeonly {
|
|
197
|
+
.p-timepicker {
|
|
198
|
+
border-top: 0 none;
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.p-monthpicker {
|
|
203
|
+
margin: $calendarTableMargin;
|
|
204
|
+
|
|
205
|
+
.p-monthpicker-month {
|
|
206
|
+
padding: $calendarCellDatePadding;
|
|
207
|
+
transition: $listItemTransition;
|
|
208
|
+
border-radius: $borderRadius;
|
|
209
|
+
|
|
210
|
+
&.p-highlight {
|
|
211
|
+
color: $highlightTextColor;
|
|
212
|
+
background: $highlightBg;
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.p-yearpicker {
|
|
218
|
+
margin: $calendarTableMargin;
|
|
219
|
+
|
|
220
|
+
.p-yearpicker-year {
|
|
221
|
+
padding: $calendarCellDatePadding;
|
|
222
|
+
transition: $listItemTransition;
|
|
223
|
+
border-radius: $borderRadius;
|
|
224
|
+
|
|
225
|
+
&.p-highlight {
|
|
226
|
+
color: $highlightTextColor;
|
|
227
|
+
background: $highlightBg;
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.p-datepicker-group {
|
|
233
|
+
width: 100% !important;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
&.p-datepicker-multiple-month {
|
|
237
|
+
.p-datepicker-group {
|
|
238
|
+
width: 100% !important;
|
|
239
|
+
border-left: $divider;
|
|
240
|
+
padding-right: $calendarPadding;
|
|
241
|
+
padding-left: $calendarPadding;
|
|
242
|
+
padding-top: 0;
|
|
243
|
+
padding-bottom: 0;
|
|
244
|
+
|
|
245
|
+
&:first-child {
|
|
246
|
+
padding-left: 0;
|
|
247
|
+
border-left: 0 none;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
&:last-child {
|
|
251
|
+
padding-right: 0;
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
&:not(.p-disabled) {
|
|
257
|
+
table {
|
|
258
|
+
td {
|
|
259
|
+
span:not(.p-highlight):not(.p-disabled) {
|
|
260
|
+
&:hover {
|
|
261
|
+
background: $calendarCellDateHoverBg;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
&:focus {
|
|
265
|
+
@include focused();
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.p-monthpicker {
|
|
272
|
+
.p-monthpicker-month {
|
|
273
|
+
&:not(.p-disabled) {
|
|
274
|
+
&:not(.p-highlight):hover {
|
|
275
|
+
background: $calendarCellDateHoverBg;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
&:focus {
|
|
279
|
+
@include focused();
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.p-yearpicker {
|
|
286
|
+
.p-yearpicker-year {
|
|
287
|
+
&:not(.p-disabled) {
|
|
288
|
+
&:not(.p-highlight):hover {
|
|
289
|
+
background: $calendarCellDateHoverBg;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
&:focus {
|
|
293
|
+
@include focused();
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
@media screen and (max-width: $calendarBreakpoint) {
|
|
303
|
+
.p-datepicker {
|
|
304
|
+
table {
|
|
305
|
+
th, td {
|
|
306
|
+
padding: $calendarCellDatePaddingSM;
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
}
|