@design.estate/dees-catalog 3.57.0 → 3.59.0
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_bundle/bundle.js +2721 -2518
- package/dist_ts_web/00_commitinfo_data.js +1 -1
- package/dist_ts_web/elements/00group-input/dees-input-code/dees-input-code.d.ts +5 -0
- package/dist_ts_web/elements/00group-input/dees-input-code/dees-input-code.js +196 -29
- package/dist_ts_web/elements/00group-input/dees-input-datepicker/component.d.ts +10 -27
- package/dist_ts_web/elements/00group-input/dees-input-datepicker/component.js +118 -281
- package/dist_ts_web/elements/00group-input/dees-input-datepicker/datepicker-popup.d.ts +55 -0
- package/dist_ts_web/elements/00group-input/dees-input-datepicker/datepicker-popup.js +876 -0
- package/dist_ts_web/elements/00group-input/dees-input-datepicker/index.d.ts +1 -0
- package/dist_ts_web/elements/00group-input/dees-input-datepicker/index.js +2 -1
- package/dist_ts_web/elements/00group-input/dees-input-datepicker/styles.js +1 -408
- package/dist_ts_web/elements/00group-input/dees-input-datepicker/template.js +1 -143
- package/dist_watch/bundle.js +2721 -2518
- package/dist_watch/bundle.js.map +4 -4
- package/package.json +1 -1
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/ts_web/elements/00group-input/dees-input-code/dees-input-code.ts +194 -30
- package/ts_web/elements/00group-input/dees-input-datepicker/component.ts +125 -324
- package/ts_web/elements/00group-input/dees-input-datepicker/datepicker-popup.ts +758 -0
- package/ts_web/elements/00group-input/dees-input-datepicker/index.ts +1 -0
- package/ts_web/elements/00group-input/dees-input-datepicker/styles.ts +1 -411
- package/ts_web/elements/00group-input/dees-input-datepicker/template.ts +1 -147
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { type TemplateResult, DeesElement } from '@design.estate/dees-element';
|
|
2
|
+
import '../../00group-utility/dees-icon/dees-icon.js';
|
|
3
|
+
import type { IDateEvent } from './types.js';
|
|
4
|
+
declare global {
|
|
5
|
+
interface HTMLElementTagNameMap {
|
|
6
|
+
'dees-input-datepicker-popup': DeesInputDatepickerPopup;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
export declare class DeesInputDatepickerPopup extends DeesElement {
|
|
10
|
+
accessor triggerRect: DOMRect | null;
|
|
11
|
+
accessor ownerComponent: HTMLElement | null;
|
|
12
|
+
accessor enableTime: boolean;
|
|
13
|
+
accessor timeFormat: '24h' | '12h';
|
|
14
|
+
accessor minuteIncrement: number;
|
|
15
|
+
accessor weekStartsOn: 0 | 1;
|
|
16
|
+
accessor minDate: string;
|
|
17
|
+
accessor maxDate: string;
|
|
18
|
+
accessor disabledDates: string[];
|
|
19
|
+
accessor enableTimezone: boolean;
|
|
20
|
+
accessor timezone: string;
|
|
21
|
+
accessor events: IDateEvent[];
|
|
22
|
+
accessor opensToTop: boolean;
|
|
23
|
+
accessor selectedDate: Date | null;
|
|
24
|
+
accessor viewDate: Date;
|
|
25
|
+
accessor selectedHour: number;
|
|
26
|
+
accessor selectedMinute: number;
|
|
27
|
+
accessor menuZIndex: number;
|
|
28
|
+
accessor visible: boolean;
|
|
29
|
+
private windowLayer;
|
|
30
|
+
private isDestroying;
|
|
31
|
+
static styles: import("@design.estate/dees-element").CSSResult[];
|
|
32
|
+
private static readonly MONTH_NAMES;
|
|
33
|
+
private static readonly TIMEZONES;
|
|
34
|
+
render(): TemplateResult;
|
|
35
|
+
private computePositionStyle;
|
|
36
|
+
private getDaysInMonth;
|
|
37
|
+
private isToday;
|
|
38
|
+
private isSelected;
|
|
39
|
+
private isDayDisabled;
|
|
40
|
+
private getEventsForDate;
|
|
41
|
+
private previousMonth;
|
|
42
|
+
private nextMonth;
|
|
43
|
+
private handleSelectDate;
|
|
44
|
+
private handleSelectToday;
|
|
45
|
+
private handleClear;
|
|
46
|
+
private handleHourInput;
|
|
47
|
+
private handleMinuteInput;
|
|
48
|
+
private setAMPM;
|
|
49
|
+
private handleTimezoneChange;
|
|
50
|
+
private emitTimeUpdate;
|
|
51
|
+
show(): Promise<void>;
|
|
52
|
+
hide(): Promise<void>;
|
|
53
|
+
private handleScrollOrResize;
|
|
54
|
+
disconnectedCallback(): Promise<void>;
|
|
55
|
+
}
|