@cal.macconnachie/web-components 1.1.14 → 1.2.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/index.d.ts +12 -44
- package/dist/index.js +1658 -2411
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -142,6 +142,7 @@ export declare class BaseDatePicker extends BaseElement {
|
|
|
142
142
|
private showYearPicker;
|
|
143
143
|
private yearRangeStart;
|
|
144
144
|
private isFlipped;
|
|
145
|
+
private alignRight;
|
|
145
146
|
private dateDisplay;
|
|
146
147
|
private calendarContainer?;
|
|
147
148
|
private inputId;
|
|
@@ -184,55 +185,20 @@ export declare class BaseDateTimePicker extends BaseElement {
|
|
|
184
185
|
minDate?: string;
|
|
185
186
|
maxDate?: string;
|
|
186
187
|
format: TimeFormat;
|
|
187
|
-
private
|
|
188
|
-
private
|
|
189
|
-
private
|
|
190
|
-
private
|
|
191
|
-
private
|
|
192
|
-
private yearRangeStart;
|
|
193
|
-
private selectedDate;
|
|
194
|
-
private selectedHour;
|
|
195
|
-
private selectedMinute;
|
|
196
|
-
private selectedPeriod;
|
|
197
|
-
private isFlipped;
|
|
198
|
-
private currentStep;
|
|
199
|
-
private datetimeDisplay;
|
|
200
|
-
private datetimeContainer?;
|
|
188
|
+
private dateValue;
|
|
189
|
+
private timeValue;
|
|
190
|
+
private isFocused;
|
|
191
|
+
private datePicker?;
|
|
192
|
+
private timePicker?;
|
|
201
193
|
private inputId;
|
|
202
|
-
private weekDays;
|
|
203
|
-
private monthNames;
|
|
204
194
|
static styles: CSSResult;
|
|
205
195
|
connectedCallback(): void;
|
|
206
196
|
updated(changedProperties: Map<string, unknown>): void;
|
|
207
197
|
private parseValue;
|
|
208
|
-
private
|
|
209
|
-
private
|
|
210
|
-
private
|
|
211
|
-
private
|
|
212
|
-
private get calendarDays();
|
|
213
|
-
private get hours();
|
|
214
|
-
private get minutes();
|
|
215
|
-
private handleDisplayClick;
|
|
216
|
-
private togglePicker;
|
|
217
|
-
private updateDropdownPosition;
|
|
218
|
-
private closePicker;
|
|
219
|
-
private selectDate;
|
|
220
|
-
private selectHour;
|
|
221
|
-
private selectMinute;
|
|
222
|
-
private selectPeriod;
|
|
223
|
-
private goBackToDateStep;
|
|
224
|
-
private selectNow;
|
|
225
|
-
private applyDateTime;
|
|
226
|
-
private previousMonth;
|
|
227
|
-
private nextMonth;
|
|
228
|
-
private isSelectedDate;
|
|
229
|
-
private isToday;
|
|
230
|
-
private isDisabled;
|
|
231
|
-
private selectMonth;
|
|
232
|
-
private selectYear;
|
|
233
|
-
private yearRangeBack;
|
|
234
|
-
private yearRangeForward;
|
|
235
|
-
private handleKeydown;
|
|
198
|
+
private handleDateChange;
|
|
199
|
+
private handleTimeChange;
|
|
200
|
+
private handleFocusIn;
|
|
201
|
+
private handleFocusOut;
|
|
236
202
|
render(): TemplateResult<1>;
|
|
237
203
|
}
|
|
238
204
|
|
|
@@ -316,6 +282,7 @@ export declare class BaseSelect extends BaseElement {
|
|
|
316
282
|
private searchQuery;
|
|
317
283
|
private highlightedIndex;
|
|
318
284
|
private isFlipped;
|
|
285
|
+
private alignRight;
|
|
319
286
|
private selectInput;
|
|
320
287
|
private selectDisplay;
|
|
321
288
|
private dropdownElement;
|
|
@@ -417,6 +384,7 @@ export declare class BaseTimePicker extends BaseElement {
|
|
|
417
384
|
private selectedMinute;
|
|
418
385
|
private selectedPeriod;
|
|
419
386
|
private isFlipped;
|
|
387
|
+
private alignRight;
|
|
420
388
|
private timeDisplay;
|
|
421
389
|
private timeContainer?;
|
|
422
390
|
private inputId;
|