sit-onyx 1.1.0-dev-20250930101606 → 1.1.0-dev-20250930114848
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/components/OnyxCalendar/OnyxCalendar.d.vue.ts +1 -1
- package/dist/components/OnyxCalendar/types.d.ts +1 -1
- package/dist/i18n/locales/de-DE.json +5 -0
- package/dist/i18n/locales/en-US.json +8 -0
- package/dist/i18n/locales/en-US.json.d.ts +8 -0
- package/dist/index.esm-bundler.js +748 -742
- package/dist/index.esm-bundler.js.map +1 -1
- package/dist/index.js +2047 -2042
- package/dist/style.css +1 -1
- package/package.json +5 -5
|
@@ -12,7 +12,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<On
|
|
|
12
12
|
disabled: boolean;
|
|
13
13
|
size: import('./types.js', { with: { "resolution-mode": "import" } }).OnyxCalendarSize;
|
|
14
14
|
selection: import('./types.js', { with: { "resolution-mode": "import" } }).OnyxCalendarSelection;
|
|
15
|
-
weekStartDay: import('
|
|
15
|
+
weekStartDay: import('./types.js', { with: { "resolution-mode": "import" } }).OnyxWeekDays;
|
|
16
16
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
17
17
|
calendar: HTMLDivElement;
|
|
18
18
|
}, any>, Readonly<{
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { OnyxWeekDays } from '@sit-onyx/headless';
|
|
2
1
|
import { DensityProp } from '../../composables/density.js';
|
|
3
2
|
import { SkeletonInjected } from '../../composables/useSkeletonState.js';
|
|
4
3
|
export type OnyxCalendarProps = DensityProp & {
|
|
@@ -43,3 +42,4 @@ export type OnyxCalendarProps = DensityProp & {
|
|
|
43
42
|
};
|
|
44
43
|
export type OnyxCalendarSelection = "single";
|
|
45
44
|
export type OnyxCalendarSize = "big" | "small" | "auto";
|
|
45
|
+
export type OnyxWeekDays = "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday" | "Sunday";
|
|
@@ -225,5 +225,10 @@
|
|
|
225
225
|
},
|
|
226
226
|
"globalFAB": {
|
|
227
227
|
"label": "Globale Aktionen"
|
|
228
|
+
},
|
|
229
|
+
"calendar": {
|
|
230
|
+
"todayButton": { "label": "Heute", "tooltip": "Springe zu Heute" },
|
|
231
|
+
"previousMonthButton": "Vorheriger Monat",
|
|
232
|
+
"nextMonthButton": "Nächster Monat"
|
|
228
233
|
}
|
|
229
234
|
}
|
|
@@ -225,5 +225,13 @@
|
|
|
225
225
|
},
|
|
226
226
|
"globalFAB": {
|
|
227
227
|
"label": "Global actions"
|
|
228
|
+
},
|
|
229
|
+
"calendar": {
|
|
230
|
+
"todayButton": {
|
|
231
|
+
"label": "Today",
|
|
232
|
+
"tooltip": "Jump to today"
|
|
233
|
+
},
|
|
234
|
+
"previousMonthButton": "Previous month",
|
|
235
|
+
"nextMonthButton": "Next month"
|
|
228
236
|
}
|
|
229
237
|
}
|
|
@@ -225,6 +225,14 @@ declare const _default: {
|
|
|
225
225
|
},
|
|
226
226
|
"globalFAB": {
|
|
227
227
|
"label": "Global actions"
|
|
228
|
+
},
|
|
229
|
+
"calendar": {
|
|
230
|
+
"todayButton": {
|
|
231
|
+
"label": "Today",
|
|
232
|
+
"tooltip": "Jump to today"
|
|
233
|
+
},
|
|
234
|
+
"previousMonthButton": "Previous month",
|
|
235
|
+
"nextMonthButton": "Next month"
|
|
228
236
|
}
|
|
229
237
|
}
|
|
230
238
|
;
|