@aquera/nile-elements 1.2.1-beta-1.3 → 1.2.1-beta-1.5
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/dist/index.js +14 -11
- package/dist/nile-calendar/nile-calendar.cjs.js +1 -1
- package/dist/nile-calendar/nile-calendar.cjs.js.map +1 -1
- package/dist/nile-calendar/nile-calendar.css.cjs.js +1 -1
- package/dist/nile-calendar/nile-calendar.css.cjs.js.map +1 -1
- package/dist/nile-calendar/nile-calendar.css.esm.js +6 -3
- package/dist/nile-calendar/nile-calendar.esm.js +7 -7
- package/dist/src/nile-calendar/nile-calendar.css.js +6 -3
- package/dist/src/nile-calendar/nile-calendar.css.js.map +1 -1
- package/dist/src/nile-calendar/nile-calendar.js +7 -7
- package/dist/src/nile-calendar/nile-calendar.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/nile-calendar/nile-calendar.css.ts +6 -3
- package/src/nile-calendar/nile-calendar.ts +7 -7
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Webcomponent nile-elements following open-wc recommendations",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "nile-elements",
|
|
6
|
-
"version": "1.2.1-beta-1.
|
|
6
|
+
"version": "1.2.1-beta-1.5",
|
|
7
7
|
"main": "dist/src/index.js",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"module": "dist/src/index.js",
|
|
@@ -80,7 +80,7 @@ export const styles = css`
|
|
|
80
80
|
|
|
81
81
|
.day_name{
|
|
82
82
|
font-weight: var(--nile-font-weight-semi-bold, var(--ng-font-weight-semibold));
|
|
83
|
-
font-family: var(--nile-font-family-
|
|
83
|
+
font-family: var(--nile-font-family-medium, var(--ng-font-family-body))
|
|
84
84
|
}
|
|
85
85
|
|
|
86
86
|
.day_date{
|
|
@@ -234,6 +234,8 @@ export const styles = css`
|
|
|
234
234
|
|
|
235
235
|
padding-bottom: 12px;
|
|
236
236
|
justify-content: center;
|
|
237
|
+
font-family: var(--nile-font-family-medium, var(--ng-font-family-body));
|
|
238
|
+
color: var(--nile-colors-neutral-700, var(--ng-colors-text-secondary-700));
|
|
237
239
|
}
|
|
238
240
|
|
|
239
241
|
.calendar-switcher {
|
|
@@ -262,10 +264,10 @@ justify-content: center;
|
|
|
262
264
|
.duration-name{
|
|
263
265
|
display:flex;
|
|
264
266
|
align-items:center;
|
|
265
|
-
font-family: var( --nile-font-family-
|
|
267
|
+
font-family: var( --nile-font-family-medium, var(--ng-font-family-body));
|
|
266
268
|
font-size: var(--nile-type-scale-3, var(--ng-font-size-text-sm));
|
|
267
269
|
font-style: normal;
|
|
268
|
-
font-weight: var(--nile-font-weight-
|
|
270
|
+
font-weight: var(--nile-font-weight-semi-bold, var(--ng-font-weight-medium));
|
|
269
271
|
line-height: var(--nile-line-height-small, var(--ng-line-height-text-sm));
|
|
270
272
|
}
|
|
271
273
|
|
|
@@ -366,6 +368,7 @@ justify-content: center;
|
|
|
366
368
|
line-height: 1;
|
|
367
369
|
background: transparent;
|
|
368
370
|
color: var(--nile-colors-dark-900);
|
|
371
|
+
font-family: var(--nile-font-family-medium, var(--ng-font-family-body));
|
|
369
372
|
}
|
|
370
373
|
|
|
371
374
|
.calendar-header__caret {
|
|
@@ -641,13 +641,13 @@ ${this.showMonthDropdown || this.showYearDropdown ? html`
|
|
|
641
641
|
</nile-icon>
|
|
642
642
|
</div>
|
|
643
643
|
<div class="days_container">
|
|
644
|
-
<div class="day_name">
|
|
645
|
-
<div class="day_name">
|
|
646
|
-
<div class="day_name">
|
|
647
|
-
<div class="day_name">
|
|
648
|
-
<div class="day_name">
|
|
649
|
-
<div class="day_name">
|
|
650
|
-
<div class="day_name">
|
|
644
|
+
<div class="day_name">Su</div>
|
|
645
|
+
<div class="day_name">Mo</div>
|
|
646
|
+
<div class="day_name">Tu</div>
|
|
647
|
+
<div class="day_name">We</div>
|
|
648
|
+
<div class="day_name">Th</div>
|
|
649
|
+
<div class="day_name">Fr</div>
|
|
650
|
+
<div class="day_name">Sa</div>
|
|
651
651
|
|
|
652
652
|
${allDays.map((day, index) => {
|
|
653
653
|
const isCurrentMonth =
|