@genesislcap/foundation-ui 14.246.1 → 14.247.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.
Files changed (54) hide show
  1. package/dist/custom-elements.json +2676 -1485
  2. package/dist/dts/base-components.d.ts +11 -0
  3. package/dist/dts/base-components.d.ts.map +1 -1
  4. package/dist/dts/index.d.ts +1 -0
  5. package/dist/dts/index.d.ts.map +1 -1
  6. package/dist/dts/scheduler-cron-builder/daily-recurrence/daily-recurrence.d.ts +342 -0
  7. package/dist/dts/scheduler-cron-builder/daily-recurrence/daily-recurrence.d.ts.map +1 -0
  8. package/dist/dts/scheduler-cron-builder/daily-recurrence/daily-recurrence.styles.d.ts +3 -0
  9. package/dist/dts/scheduler-cron-builder/daily-recurrence/daily-recurrence.styles.d.ts.map +1 -0
  10. package/dist/dts/scheduler-cron-builder/daily-recurrence/daily-recurrence.template.d.ts +4 -0
  11. package/dist/dts/scheduler-cron-builder/daily-recurrence/daily-recurrence.template.d.ts.map +1 -0
  12. package/dist/dts/scheduler-cron-builder/helpers.d.ts +211 -0
  13. package/dist/dts/scheduler-cron-builder/helpers.d.ts.map +1 -0
  14. package/dist/dts/scheduler-cron-builder/index.d.ts +4 -0
  15. package/dist/dts/scheduler-cron-builder/index.d.ts.map +1 -0
  16. package/dist/dts/scheduler-cron-builder/monthly-yearly-recurrence/monthly-yearly-recurrence.d.ts +400 -0
  17. package/dist/dts/scheduler-cron-builder/monthly-yearly-recurrence/monthly-yearly-recurrence.d.ts.map +1 -0
  18. package/dist/dts/scheduler-cron-builder/monthly-yearly-recurrence/monthly-yearly-recurrence.styles.d.ts +3 -0
  19. package/dist/dts/scheduler-cron-builder/monthly-yearly-recurrence/monthly-yearly-recurrence.styles.d.ts.map +1 -0
  20. package/dist/dts/scheduler-cron-builder/monthly-yearly-recurrence/monthly-yearly-recurrence.template.d.ts +4 -0
  21. package/dist/dts/scheduler-cron-builder/monthly-yearly-recurrence/monthly-yearly-recurrence.template.d.ts.map +1 -0
  22. package/dist/dts/scheduler-cron-builder/scheduler-cron-builder.d.ts +124 -0
  23. package/dist/dts/scheduler-cron-builder/scheduler-cron-builder.d.ts.map +1 -0
  24. package/dist/dts/scheduler-cron-builder/scheduler-cron-builder.styles.d.ts +4 -0
  25. package/dist/dts/scheduler-cron-builder/scheduler-cron-builder.styles.d.ts.map +1 -0
  26. package/dist/dts/scheduler-cron-builder/scheduler-cron-builder.template.d.ts +4 -0
  27. package/dist/dts/scheduler-cron-builder/scheduler-cron-builder.template.d.ts.map +1 -0
  28. package/dist/dts/scheduler-cron-builder/types.d.ts +90 -0
  29. package/dist/dts/scheduler-cron-builder/types.d.ts.map +1 -0
  30. package/dist/dts/scheduler-cron-builder/weekly-recurrence/weekly-recurrence.d.ts +346 -0
  31. package/dist/dts/scheduler-cron-builder/weekly-recurrence/weekly-recurrence.d.ts.map +1 -0
  32. package/dist/dts/scheduler-cron-builder/weekly-recurrence/weekly-recurrence.styles.d.ts +3 -0
  33. package/dist/dts/scheduler-cron-builder/weekly-recurrence/weekly-recurrence.styles.d.ts.map +1 -0
  34. package/dist/dts/scheduler-cron-builder/weekly-recurrence/weekly-recurrence.template.d.ts +4 -0
  35. package/dist/dts/scheduler-cron-builder/weekly-recurrence/weekly-recurrence.template.d.ts.map +1 -0
  36. package/dist/dts/utils/base-datasource.d.ts +1 -1
  37. package/dist/esm/base-components.js +2 -0
  38. package/dist/esm/index.js +1 -0
  39. package/dist/esm/scheduler-cron-builder/daily-recurrence/daily-recurrence.js +38 -0
  40. package/dist/esm/scheduler-cron-builder/daily-recurrence/daily-recurrence.styles.js +5 -0
  41. package/dist/esm/scheduler-cron-builder/daily-recurrence/daily-recurrence.template.js +25 -0
  42. package/dist/esm/scheduler-cron-builder/helpers.js +330 -0
  43. package/dist/esm/scheduler-cron-builder/index.js +3 -0
  44. package/dist/esm/scheduler-cron-builder/monthly-yearly-recurrence/monthly-yearly-recurrence.js +130 -0
  45. package/dist/esm/scheduler-cron-builder/monthly-yearly-recurrence/monthly-yearly-recurrence.styles.js +25 -0
  46. package/dist/esm/scheduler-cron-builder/monthly-yearly-recurrence/monthly-yearly-recurrence.template.js +92 -0
  47. package/dist/esm/scheduler-cron-builder/scheduler-cron-builder.js +289 -0
  48. package/dist/esm/scheduler-cron-builder/scheduler-cron-builder.styles.js +72 -0
  49. package/dist/esm/scheduler-cron-builder/scheduler-cron-builder.template.js +101 -0
  50. package/dist/esm/scheduler-cron-builder/types.js +67 -0
  51. package/dist/esm/scheduler-cron-builder/weekly-recurrence/weekly-recurrence.js +59 -0
  52. package/dist/esm/scheduler-cron-builder/weekly-recurrence/weekly-recurrence.styles.js +9 -0
  53. package/dist/esm/scheduler-cron-builder/weekly-recurrence/weekly-recurrence.template.js +25 -0
  54. package/package.json +17 -16
@@ -0,0 +1,400 @@
1
+ import { CronBuilderEventDetailMap, CronBuilderEvents, DateOrDay, MonthlyConfig, YearlyConfig } from '../types';
2
+ declare const MonthlyYearlyRecurrence_base: abstract new (...args: any[]) => {
3
+ $emit<K extends CronBuilderEvents>(...args: CronBuilderEventDetailMap[K] extends void ? [type: K, options?: import("@genesislcap/foundation-events").EmitOptions] : [type: K, detail: CronBuilderEventDetailMap[K], options?: import("@genesislcap/foundation-events").EmitOptions]): import("@genesislcap/foundation-events").EmitReturn;
4
+ accessKey: string;
5
+ readonly accessKeyLabel: string;
6
+ autocapitalize: string;
7
+ dir: string;
8
+ /**
9
+ * used to set fields from the parent config,
10
+ * @internal
11
+ * */
12
+ draggable: boolean;
13
+ hidden: boolean;
14
+ inert: boolean;
15
+ innerText: string;
16
+ lang: string;
17
+ readonly offsetHeight: number;
18
+ readonly offsetLeft: number;
19
+ readonly offsetParent: Element;
20
+ readonly offsetTop: number;
21
+ readonly offsetWidth: number;
22
+ outerText: string;
23
+ spellcheck: boolean;
24
+ title: string;
25
+ translate: boolean;
26
+ attachInternals(): ElementInternals;
27
+ click(): void;
28
+ addEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | AddEventListenerOptions): void;
29
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
30
+ removeEventListener<K_2 extends keyof HTMLElementEventMap>(type: K_2, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_2]) => any, options?: boolean | EventListenerOptions): void;
31
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
32
+ readonly attributes: NamedNodeMap;
33
+ readonly classList: DOMTokenList;
34
+ className: string;
35
+ readonly clientHeight: number;
36
+ readonly clientLeft: number;
37
+ readonly clientTop: number;
38
+ readonly clientWidth: number;
39
+ id: string;
40
+ readonly localName: string;
41
+ readonly namespaceURI: string;
42
+ onfullscreenchange: (this: Element, ev: Event) => any;
43
+ onfullscreenerror: (this: Element, ev: Event) => any;
44
+ outerHTML: string;
45
+ readonly ownerDocument: Document;
46
+ readonly part: DOMTokenList;
47
+ readonly prefix: string;
48
+ readonly scrollHeight: number;
49
+ scrollLeft: number;
50
+ scrollTop: number;
51
+ readonly scrollWidth: number;
52
+ readonly shadowRoot: ShadowRoot;
53
+ slot: string;
54
+ readonly tagName: string;
55
+ attachShadow(init: ShadowRootInit): ShadowRoot;
56
+ closest<K_3 extends keyof HTMLElementTagNameMap>(selector: K_3): HTMLElementTagNameMap[K_3];
57
+ closest<K_4 extends keyof SVGElementTagNameMap>(selector: K_4): SVGElementTagNameMap[K_4];
58
+ closest<E extends Element = Element>(selectors: string): E;
59
+ getAttribute(qualifiedName: string): string;
60
+ getAttributeNS(namespace: string, localName: string): string;
61
+ getAttributeNames(): string[];
62
+ getAttributeNode(qualifiedName: string): Attr;
63
+ getAttributeNodeNS(namespace: string, localName: string): Attr;
64
+ getBoundingClientRect(): DOMRect;
65
+ getClientRects(): DOMRectList;
66
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
67
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
68
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
69
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
70
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
71
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
72
+ getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
73
+ hasAttribute(qualifiedName: string): boolean;
74
+ hasAttributeNS(namespace: string, localName: string): boolean;
75
+ hasAttributes(): boolean;
76
+ hasPointerCapture(pointerId: number): boolean;
77
+ insertAdjacentElement(where: InsertPosition, element: Element): Element;
78
+ insertAdjacentHTML(position: InsertPosition, text: string): void;
79
+ insertAdjacentText(where: InsertPosition, data: string): void;
80
+ matches(selectors: string): boolean;
81
+ releasePointerCapture(pointerId: number): void;
82
+ removeAttribute(qualifiedName: string): void;
83
+ removeAttributeNS(namespace: string, localName: string): void;
84
+ removeAttributeNode(attr: Attr): Attr;
85
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
86
+ requestPointerLock(): void;
87
+ scroll(options?: ScrollToOptions): void;
88
+ scroll(x: number, y: number): void;
89
+ scrollBy(options?: ScrollToOptions): void;
90
+ scrollBy(x: number, y: number): void;
91
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
92
+ scrollTo(options?: ScrollToOptions): void;
93
+ scrollTo(x: number, y: number): void;
94
+ setAttribute(qualifiedName: string, value: string): void;
95
+ setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
96
+ setAttributeNode(attr: Attr): Attr;
97
+ setAttributeNodeNS(attr: Attr): Attr;
98
+ setPointerCapture(pointerId: number): void;
99
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
100
+ webkitMatchesSelector(selectors: string): boolean;
101
+ readonly baseURI: string;
102
+ readonly childNodes: NodeListOf<ChildNode>;
103
+ readonly firstChild: ChildNode;
104
+ readonly isConnected: boolean;
105
+ readonly lastChild: ChildNode;
106
+ readonly nextSibling: ChildNode;
107
+ readonly nodeName: string;
108
+ readonly nodeType: number;
109
+ nodeValue: string;
110
+ readonly parentElement: HTMLElement;
111
+ readonly parentNode: ParentNode;
112
+ readonly previousSibling: ChildNode;
113
+ textContent: string;
114
+ appendChild<T extends Node>(node: T): T;
115
+ cloneNode(deep?: boolean): Node;
116
+ compareDocumentPosition(other: Node): number;
117
+ contains(other: Node): boolean;
118
+ getRootNode(options?: GetRootNodeOptions): Node;
119
+ hasChildNodes(): boolean;
120
+ insertBefore<T_1 extends Node>(node: T_1, child: Node): T_1;
121
+ isDefaultNamespace(namespace: string): boolean;
122
+ isEqualNode(otherNode: Node): boolean;
123
+ isSameNode(otherNode: Node): boolean;
124
+ lookupNamespaceURI(prefix: string): string;
125
+ lookupPrefix(namespace: string): string;
126
+ normalize(): void;
127
+ removeChild<T_2 extends Node>(child: T_2): T_2;
128
+ replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
129
+ readonly ATTRIBUTE_NODE: number;
130
+ readonly CDATA_SECTION_NODE: number;
131
+ readonly COMMENT_NODE: number;
132
+ readonly DOCUMENT_FRAGMENT_NODE: number;
133
+ readonly DOCUMENT_NODE: number;
134
+ readonly DOCUMENT_POSITION_CONTAINED_BY: number;
135
+ readonly DOCUMENT_POSITION_CONTAINS: number;
136
+ readonly DOCUMENT_POSITION_DISCONNECTED: number;
137
+ readonly DOCUMENT_POSITION_FOLLOWING: number;
138
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
139
+ readonly DOCUMENT_POSITION_PRECEDING: number;
140
+ readonly DOCUMENT_TYPE_NODE: number;
141
+ readonly ELEMENT_NODE: number;
142
+ readonly ENTITY_NODE: number;
143
+ readonly ENTITY_REFERENCE_NODE: number;
144
+ readonly NOTATION_NODE: number;
145
+ readonly PROCESSING_INSTRUCTION_NODE: number;
146
+ readonly TEXT_NODE: number;
147
+ dispatchEvent(event: Event): boolean;
148
+ ariaAtomic: string;
149
+ ariaAutoComplete: string;
150
+ ariaBusy: string;
151
+ ariaChecked: string;
152
+ ariaColCount: string;
153
+ ariaColIndex: string;
154
+ ariaColIndexText: string;
155
+ ariaColSpan: string;
156
+ ariaCurrent: string;
157
+ ariaDisabled: string;
158
+ ariaExpanded: string;
159
+ ariaHasPopup: string;
160
+ ariaHidden: string;
161
+ ariaInvalid: string;
162
+ ariaKeyShortcuts: string;
163
+ ariaLabel: string;
164
+ ariaLevel: string;
165
+ ariaLive: string;
166
+ ariaModal: string;
167
+ ariaMultiLine: string;
168
+ ariaMultiSelectable: string;
169
+ ariaOrientation: string;
170
+ ariaPlaceholder: string;
171
+ ariaPosInSet: string;
172
+ ariaPressed: string;
173
+ ariaReadOnly: string;
174
+ ariaRequired: string;
175
+ ariaRoleDescription: string;
176
+ ariaRowCount: string;
177
+ ariaRowIndex: string;
178
+ ariaRowIndexText: string;
179
+ ariaRowSpan: string;
180
+ ariaSelected: string;
181
+ ariaSetSize: string;
182
+ ariaSort: string;
183
+ ariaValueMax: string;
184
+ ariaValueMin: string;
185
+ ariaValueNow: string;
186
+ ariaValueText: string;
187
+ role: string;
188
+ animate(keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions): Animation;
189
+ getAnimations(options?: GetAnimationsOptions): Animation[];
190
+ after(...nodes: (string | Node)[]): void;
191
+ before(...nodes: (string | Node)[]): void;
192
+ remove(): void;
193
+ replaceWith(...nodes: (string | Node)[]): void;
194
+ innerHTML: string;
195
+ readonly nextElementSibling: Element;
196
+ readonly previousElementSibling: Element;
197
+ readonly childElementCount: number;
198
+ readonly children: HTMLCollection;
199
+ readonly firstElementChild: Element;
200
+ readonly lastElementChild: Element;
201
+ append(...nodes: (string | Node)[]): void;
202
+ prepend(...nodes: (string | Node)[]): void;
203
+ querySelector<K_7 extends keyof HTMLElementTagNameMap>(selectors: K_7): HTMLElementTagNameMap[K_7];
204
+ querySelector<K_8 extends keyof SVGElementTagNameMap>(selectors: K_8): SVGElementTagNameMap[K_8];
205
+ querySelector<E_1 extends Element = Element>(selectors: string): E_1;
206
+ querySelectorAll<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): NodeListOf<HTMLElementTagNameMap[K_9]>;
207
+ querySelectorAll<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): NodeListOf<SVGElementTagNameMap[K_10]>;
208
+ querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
209
+ replaceChildren(...nodes: (string | Node)[]): void;
210
+ readonly assignedSlot: HTMLSlotElement;
211
+ oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
212
+ oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
213
+ onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
214
+ readonly style: CSSStyleDeclaration;
215
+ contentEditable: string;
216
+ enterKeyHint: string;
217
+ inputMode: string;
218
+ readonly isContentEditable: boolean;
219
+ onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
220
+ onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
221
+ onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
222
+ onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
223
+ onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
224
+ onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
225
+ onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
226
+ onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
227
+ oncancel: (this: GlobalEventHandlers, ev: Event) => any;
228
+ oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
229
+ oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
230
+ onchange: (this: GlobalEventHandlers, ev: Event) => any;
231
+ onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
232
+ onclose: (this: GlobalEventHandlers, ev: Event) => any;
233
+ oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
234
+ oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
235
+ ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
236
+ ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
237
+ ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
238
+ ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
239
+ ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
240
+ ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
241
+ ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
242
+ ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
243
+ ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
244
+ onemptied: (this: GlobalEventHandlers, ev: Event) => any;
245
+ onended: (this: GlobalEventHandlers, ev: Event) => any;
246
+ onerror: OnErrorEventHandlerNonNull;
247
+ onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
248
+ onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
249
+ ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
250
+ oninput: (this: GlobalEventHandlers, ev: Event) => any;
251
+ oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
252
+ onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
253
+ onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
254
+ onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
255
+ onload: (this: GlobalEventHandlers, ev: Event) => any;
256
+ onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
257
+ onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
258
+ onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
259
+ onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
260
+ onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
261
+ onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
262
+ onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
263
+ onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
264
+ onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
265
+ onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
266
+ onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
267
+ onpause: (this: GlobalEventHandlers, ev: Event) => any;
268
+ onplay: (this: GlobalEventHandlers, ev: Event) => any;
269
+ onplaying: (this: GlobalEventHandlers, ev: Event) => any;
270
+ onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
271
+ onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
272
+ onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
273
+ onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
274
+ onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
275
+ onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
276
+ onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
277
+ onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
278
+ onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
279
+ onratechange: (this: GlobalEventHandlers, ev: Event) => any;
280
+ onreset: (this: GlobalEventHandlers, ev: Event) => any;
281
+ onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
282
+ onscroll: (this: GlobalEventHandlers, ev: Event) => any;
283
+ onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
284
+ onseeked: (this: GlobalEventHandlers, ev: Event) => any;
285
+ onseeking: (this: GlobalEventHandlers, ev: Event) => any;
286
+ onselect: (this: GlobalEventHandlers, ev: Event) => any;
287
+ onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
288
+ onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
289
+ onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
290
+ onstalled: (this: GlobalEventHandlers, ev: Event) => any;
291
+ onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
292
+ onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
293
+ ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
294
+ ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
295
+ ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
296
+ ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
297
+ ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
298
+ ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
299
+ ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
300
+ ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
301
+ ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
302
+ ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
303
+ onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
304
+ onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
305
+ onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
306
+ onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
307
+ onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
308
+ onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
309
+ onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
310
+ autofocus: boolean;
311
+ readonly dataset: DOMStringMap;
312
+ nonce?: string;
313
+ tabIndex: number;
314
+ blur(): void;
315
+ focus(options?: FocusOptions): void;
316
+ readonly $fastController: import("@microsoft/fast-element").Controller;
317
+ connectedCallback(): void;
318
+ disconnectedCallback(): void;
319
+ attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
320
+ };
321
+ export declare class MonthlyYearlyRecurrence extends MonthlyYearlyRecurrence_base {
322
+ /**
323
+ * design system prefix to use for component tags
324
+ * @internal
325
+ * */
326
+ prefix: any;
327
+ /**
328
+ * stores and updates monthly or yearly config
329
+ * syncs UI with parent component(cron-scheduler)
330
+ * @internal
331
+ * */
332
+ config: MonthlyConfig | YearlyConfig;
333
+ configChanged(): void;
334
+ /**
335
+ * This variable is used with `MONTHLY` & `YEARLY` recurrence Type
336
+ * Used to determine if the event should occur either at
337
+ * 1. specific date of the month [1-31].(e.g. 2nd of every month)
338
+ * 2. specific day of the week in the provided week (e.g. 2nd(week number) Tuesday of every month)
339
+ *
340
+ * See {@link DateOrDay}
341
+ * @internal
342
+ */
343
+ dayOrDate: DateOrDay;
344
+ /**
345
+ * This variable is used with `MONTHLY` & `YEARLY` recurrence Type
346
+ * Used to set the date day (1-31) on which the event should occur
347
+ * Should be between 1-31 similar to the no of days in a month
348
+ * @internal
349
+ */
350
+ dayDate: string;
351
+ /**
352
+ * This variable is used with both `YEARLY` and `MONTHLY` recurrence Type
353
+ * Used to specify the week number when `day of month` option is selected {@link DateOrDay.DAY_OF_MONTH}
354
+ * allows user to select from 1st,2nd,3rd,4th or last week options
355
+ * @defaultValue `1` for First Week
356
+ * @internal
357
+ */
358
+ weekNumber: string;
359
+ /**
360
+ * This variable is used with both `YEARLY` and `MONTHLY` recurrence Type
361
+ * Used to specify the day of week(Mon-Sunday) when `day of month` option is selected {@link DateOrDay.DAY_OF_MONTH}
362
+ * allows user to select from 1st,2nd,3rd,4th or last week options
363
+ * @defaultValue `1` for Monday
364
+ * @internal
365
+ */
366
+ day: string;
367
+ /**
368
+ * This variable is used with `YEARLY` recurrence Type
369
+ * Used to set the month (1-12) on which the event should occur
370
+ * Should be between 1-12 similar to the no of months(Jan-Dec)
371
+ * @defaultValue `1` for January
372
+ * @internal
373
+ */
374
+ selectedMonth: string;
375
+ /**
376
+ * used to set fields from the parent config,
377
+ * @internal
378
+ * */
379
+ setFieldsFromConfig(): void;
380
+ /**
381
+ * used to construct dateOrDay type for updating cron expression for monthly or yearly recurrence
382
+ * see {@link MonthlyDateDay} {@link YearlyDateDay} for details
383
+ * @internal
384
+ * */
385
+ getDayOrDateConfig(): {
386
+ type: DateOrDay.DATE;
387
+ dayDate: string;
388
+ } | {
389
+ type: DateOrDay.DAY_OF_MONTH;
390
+ day: string;
391
+ weekNumber: string;
392
+ };
393
+ /**
394
+ * emits an event to update cron config and cron expression for monthly or yearly config
395
+ * @internal
396
+ * */
397
+ updateCronConfig(): void;
398
+ }
399
+ export {};
400
+ //# sourceMappingURL=monthly-yearly-recurrence.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"monthly-yearly-recurrence.d.ts","sourceRoot":"","sources":["../../../../src/scheduler-cron-builder/monthly-yearly-recurrence/monthly-yearly-recurrence.ts"],"names":[],"mappings":"AAGA,OAAO,EACL,yBAAyB,EACzB,iBAAiB,EACjB,SAAS,EACT,aAAa,EAGb,YAAY,EAEb,MAAM,UAAU,CAAC;;;;;;;IA0EhB;;;SAGK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAzEP,qBAKa,uBAAwB,SAAQ,4BAE5C;IACC;;;SAGK;IACO,MAAM,MAAC;IAEnB;;;;SAIK;IACO,MAAM,EAAE,aAAa,GAAG,YAAY,CAAC;IACjD,aAAa;IAKb;;;;;;;;OAQG;IACS,SAAS,EAAE,SAAS,CAAkB;IAElD;;;;;OAKG;IACS,OAAO,EAAE,MAAM,CAAC;IAE5B;;;;;;OAMG;IACS,UAAU,EAAE,MAAM,CAAO;IACrC;;;;;;OAMG;IACS,GAAG,EAAE,MAAM,CAAO;IAE9B;;;;;;OAMG;IACS,aAAa,EAAE,MAAM,CAAO;IAExC;;;SAGK;IACL,mBAAmB;IAYnB;;;;SAIK;IACL,kBAAkB;;;;;;;;IAiBlB;;;SAGK;IACL,gBAAgB;CAYjB"}
@@ -0,0 +1,3 @@
1
+ import type { ElementStyles } from '@microsoft/fast-element';
2
+ export declare const monthlyYearlyRecurrenceStyles: ElementStyles;
3
+ //# sourceMappingURL=monthly-yearly-recurrence.styles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"monthly-yearly-recurrence.styles.d.ts","sourceRoot":"","sources":["../../../../src/scheduler-cron-builder/monthly-yearly-recurrence/monthly-yearly-recurrence.styles.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAG7D,eAAO,MAAM,6BAA6B,EAAE,aAsB3C,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { MonthlyYearlyRecurrence } from './monthly-yearly-recurrence';
2
+ export declare const getPrefixedMonthlyYearlyRecurrence: (prefix: string) => import("@microsoft/fast-element").ViewTemplate<MonthlyYearlyRecurrence, any>;
3
+ export declare const monthlyYearlyRecurrenceTemplate: import("@microsoft/fast-element").ViewTemplate<MonthlyYearlyRecurrence, any>;
4
+ //# sourceMappingURL=monthly-yearly-recurrence.template.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"monthly-yearly-recurrence.template.d.ts","sourceRoot":"","sources":["../../../../src/scheduler-cron-builder/monthly-yearly-recurrence/monthly-yearly-recurrence.template.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,6BAA6B,CAAC;AAuG3E,eAAO,MAAM,kCAAkC,WAAY,MAAM,iFAOhE,CAAC;AACF,eAAO,MAAM,+BAA+B,8EAE3C,CAAC"}
@@ -0,0 +1,124 @@
1
+ import { FoundationElement } from '@microsoft/fast-foundation';
2
+ import { baseConfig, CronConfig, RecurrenceType } from './types';
3
+ /**
4
+ * @tagname %%prefix%%-scheduler-cron-builder
5
+ */
6
+ export declare class SchedulerCronBuilder extends FoundationElement {
7
+ private getConfigs;
8
+ /**
9
+ * Used to store the recurrence type of an event.
10
+ * This variable determines how often an event repeats including Daily, Weekly, Monthly, Yearly.
11
+ * See {@link RecurrenceType}
12
+ * @internal
13
+ */
14
+ recurrence: RecurrenceType;
15
+ /**
16
+ * used to store the cron string generated as result of selected input
17
+ * @example
18
+ * `"0 30 10 ? * 2-6"` runs on weekdays from monday-friday at 10:30
19
+ *
20
+ */
21
+ cron: string;
22
+ cronChanged(): void;
23
+ /**
24
+ * Used to store the cron expression
25
+ * added to make sync directive work as it checks value field in the change event
26
+ * @internal
27
+ */
28
+ value: string;
29
+ /**
30
+ * Used to store the config for each recurrence type in form of an object.
31
+ * See {@link CronConfig}
32
+ * @internal
33
+ */
34
+ cronConfig: CronConfig;
35
+ /**
36
+ * Used to store the frequency of an event's recurrence
37
+ *
38
+ * Represents the interval between recurrences, based on the {@link RecurrenceType}
39
+ *
40
+ * e.g. a value of '3' means that the event occurs every third occurrence (every 3 months for 'MONTHLY' recurrence)
41
+ * MUST contain a positive value from {@link frequencyList}
42
+ * @internal
43
+ */
44
+ frequency: string;
45
+ /**
46
+ * The hour at which the event should occurs
47
+ * @internal
48
+ */
49
+ hours: string;
50
+ /**
51
+ * The minute at which the event should occurs
52
+ * @internal
53
+ */
54
+ minutes: string;
55
+ /**
56
+ * The second at which the event should occurs
57
+ * @internal
58
+ */
59
+ seconds: string;
60
+ /**
61
+ * The suffix that appears with frequency field
62
+ *
63
+ * @remarks This property updates every time recurrence is changed.
64
+ * Use it to determine the suffix specific to selected recurrence (e.g. `Days` for `DAILY` recurrenceType).
65
+ */
66
+ get frequencySuffix(): string;
67
+ /**
68
+ * The frequency dropdown list
69
+ *
70
+ * @remarks This property updates every time recurrence type is changed.
71
+ * Used to update the list size on basis of recurrence type e.g. 12 for month recurrence
72
+ */
73
+ get frequencyList(): Array<Number>;
74
+ timezone: string;
75
+ connectedCallback(): void;
76
+ disconnectedCallback(): void;
77
+ getBaseConfigFields(): baseConfig;
78
+ /**
79
+ * sets default value for recurrence in cronConfig and generates cron expression
80
+ * @internal
81
+ */
82
+ handleRecurrenceChange(): void;
83
+ /**
84
+ * change event for each input field including frequency, hours, minutes and seconds
85
+ * @internal
86
+ */
87
+ handleChange(fieldName: string): void;
88
+ /**
89
+ * event listener used to update cron config and cron expression
90
+ * @internal
91
+ */
92
+ handleCronConfigUpdate({ detail }: CustomEvent): void;
93
+ /**
94
+ * method that updates cron string on basis of config for each recurrence type
95
+ * @internal
96
+ */
97
+ generateCronExpressionFromConfig(config: CronConfig): void;
98
+ /**
99
+ * parses a cron expression and sets fields from it
100
+ * @internal
101
+ */
102
+ setsFieldsFromCronEx(): void;
103
+ }
104
+ export declare const foundationSchedulerCronBuilderShadowOptions: ShadowRootInit;
105
+ export declare const defaultCronBuilderConfig: {};
106
+ /**
107
+ * The Foundation Cron Scheduler Builder
108
+ *
109
+ * @public
110
+ * @remarks
111
+ * HTML Element: \<foundation-scheduler-cron-builder\>
112
+ */
113
+ export declare const foundationSchedulerCronBuilder: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
114
+ baseName: string;
115
+ styles: import("@microsoft/fast-element").ElementStyles;
116
+ template: import("@microsoft/fast-element").ViewTemplate<SchedulerCronBuilder, any>;
117
+ shadowOptions: ShadowRootInit;
118
+ }>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
119
+ baseName: string;
120
+ styles: import("@microsoft/fast-element").ElementStyles;
121
+ template: import("@microsoft/fast-element").ViewTemplate<SchedulerCronBuilder, any>;
122
+ shadowOptions: ShadowRootInit;
123
+ }, typeof SchedulerCronBuilder>;
124
+ //# sourceMappingURL=scheduler-cron-builder.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scheduler-cron-builder.d.ts","sourceRoot":"","sources":["../../../src/scheduler-cron-builder/scheduler-cron-builder.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAmB/D,OAAO,EACL,UAAU,EAEV,UAAU,EAMV,cAAc,EAIf,MAAM,SAAS,CAAC;AAEjB;;GAEG;AACH,qBAAa,oBAAqB,SAAQ,iBAAiB;IACzD,OAAO,CAAC,UAAU,CAKhB;IACF;;;;;OAKG;IACS,UAAU,EAAE,cAAc,CAAwB;IAC9D;;;;;OAKG;IACS,IAAI,EAAE,MAAM,CAAM;IAC9B,WAAW;IA6BX;;;;OAIG;IACH,KAAK,EAAE,MAAM,CAAa;IAE1B;;;;OAIG;IAES,UAAU,EAAE,UAAU,CAMhC;IAEF;;;;;;;;OAQG;IACS,SAAS,EAAE,MAAM,CAAO;IAEpC;;;OAGG;IACS,KAAK,EAAE,MAAM,CAAO;IAChC;;;OAGG;IACS,OAAO,EAAE,MAAM,CAAO;IAElC;;;OAGG;IACS,OAAO,EAAE,MAAM,CAAO;IAElC;;;;;OAKG;IACH,IACI,eAAe,IAAI,MAAM,CAS5B;IAED;;;;;OAKG;IACH,IACI,aAAa,IAAI,KAAK,CAAC,MAAM,CAAC,CAWjC;IAEK,QAAQ,EAAE,MAAM,CAAM;IAE5B,iBAAiB;IAKjB,oBAAoB;IAIpB,mBAAmB,IAAI,UAAU;IASjC;;;OAGG;IACH,sBAAsB;IAqDtB;;;OAGG;IACH,YAAY,CAAC,SAAS,EAAE,MAAM;IAK9B;;;OAGG;IACH,sBAAsB,CAAC,EAAE,MAAM,EAAE,EAAE,WAAW;IAQ9C;;;OAGG;IACH,gCAAgC,CAAC,MAAM,EAAE,UAAU;IA4BnD;;;OAGG;IACH,oBAAoB;CAQrB;AAGD,eAAO,MAAM,2CAA2C,EAAE,cAA0B,CAAC;AAErF,eAAO,MAAM,wBAAwB,IAAK,CAAC;AAE3C;;;;;;GAMG;AACH,eAAO,MAAM,8BAA8B;;;;;;;;;;+BAMzC,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { ElementStyles } from '@microsoft/fast-element';
2
+ export declare const inputControls: ElementStyles;
3
+ export declare const schedulerCronBuilderStyles: ElementStyles;
4
+ //# sourceMappingURL=scheduler-cron-builder.styles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scheduler-cron-builder.styles.d.ts","sourceRoot":"","sources":["../../../src/scheduler-cron-builder/scheduler-cron-builder.styles.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAE7D,eAAO,MAAM,aAAa,eAsBzB,CAAC;AAEF,eAAO,MAAM,0BAA0B,EAAE,aA+CxC,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { SchedulerCronBuilder } from './scheduler-cron-builder';
2
+ export declare const getPrefixedCronBuilder: (prefix: string) => import("@microsoft/fast-element").ViewTemplate<SchedulerCronBuilder, any>;
3
+ export declare const foundationSchedulerCronBuilderTemplate: import("@microsoft/fast-element").ViewTemplate<SchedulerCronBuilder, any>;
4
+ //# sourceMappingURL=scheduler-cron-builder.template.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scheduler-cron-builder.template.d.ts","sourceRoot":"","sources":["../../../src/scheduler-cron-builder/scheduler-cron-builder.template.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAuBrE,eAAO,MAAM,sBAAsB,WAAY,MAAM,8EA6FpD,CAAC;AACF,eAAO,MAAM,sCAAsC,2EAElD,CAAC"}
@@ -0,0 +1,90 @@
1
+ /**
2
+ * Defines allowed recurrence types including Daily, Weekly, Monthly, Yearly.
3
+ * @internal
4
+ */
5
+ export declare enum RecurrenceType {
6
+ DAILY = "Daily",
7
+ WEEKLY = "Weekly",
8
+ MONTHLY = "Monthly",
9
+ YEARLY = "Yearly"
10
+ }
11
+ /** @internal */
12
+ export declare enum WeekType {
13
+ WEEK = "Week",
14
+ WORK_WEEK = "Work week"
15
+ }
16
+ /** @internal */
17
+ export declare enum DateOrDay {
18
+ DATE = "Date",
19
+ DAY_OF_MONTH = "Day of month"
20
+ }
21
+ /** @internal */
22
+ export declare const daysOfWeek: {
23
+ value: string;
24
+ label: string;
25
+ }[];
26
+ /** @internal */
27
+ export declare const weekNumber: {
28
+ value: string;
29
+ label: string;
30
+ }[];
31
+ /** @internal */
32
+ export declare const months: {
33
+ value: string;
34
+ label: string;
35
+ }[];
36
+ export declare const MAX_MONTHS = 12;
37
+ export declare const MAX_DAYS = 31;
38
+ export declare const CRON_LENGTH = 6;
39
+ export declare const MAX_WEEK_DAYS = 7;
40
+ export declare const MAX_HOURS = 24;
41
+ export declare const MAX_MINS_SEC = 60;
42
+ export declare const MAX_WEEK_NUMBER = 4;
43
+ export declare enum CronBuilderEvents {
44
+ updateCronConfig = "update-cron-config"
45
+ }
46
+ export type CronBuilderEventDetailMap = {
47
+ [CronBuilderEvents.updateCronConfig]: DailyConfig | WeeklyConfig | MonthlyConfig | YearlyConfig;
48
+ };
49
+ export type baseConfig = {
50
+ frequency?: string;
51
+ hours?: string;
52
+ minutes?: string;
53
+ seconds?: string;
54
+ };
55
+ export type MonthlyDateDay = {
56
+ type: DateOrDay.DATE;
57
+ dayDate: string;
58
+ } | {
59
+ type: DateOrDay.DAY_OF_MONTH;
60
+ day: string;
61
+ weekNumber: string;
62
+ };
63
+ export type YearlyDateDay = {
64
+ type: DateOrDay.DATE;
65
+ month: string;
66
+ dayDate: string;
67
+ } | {
68
+ type: DateOrDay.DAY_OF_MONTH;
69
+ month: string;
70
+ day: string;
71
+ weekNumber: string;
72
+ };
73
+ export type DailyConfig = {
74
+ type: RecurrenceType.DAILY;
75
+ weekType: WeekType;
76
+ } & baseConfig;
77
+ export type WeeklyConfig = {
78
+ type: RecurrenceType.WEEKLY;
79
+ selectedDays: Set<string>;
80
+ } & baseConfig;
81
+ export type MonthlyConfig = {
82
+ type: RecurrenceType.MONTHLY;
83
+ dateOrDay: MonthlyDateDay;
84
+ } & baseConfig;
85
+ export type YearlyConfig = {
86
+ type: RecurrenceType.YEARLY;
87
+ dateOrDay: YearlyDateDay;
88
+ } & baseConfig;
89
+ export type CronConfig = DailyConfig | WeeklyConfig | MonthlyConfig | YearlyConfig;
90
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/scheduler-cron-builder/types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,oBAAY,cAAc;IACxB,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,MAAM,WAAW;CAClB;AAED,gBAAgB;AAChB,oBAAY,QAAQ;IAClB,IAAI,SAAS;IACb,SAAS,cAAc;CACxB;AAED,gBAAgB;AAChB,oBAAY,SAAS;IACnB,IAAI,SAAS;IACb,YAAY,iBAAiB;CAC9B;AAED,gBAAgB;AAChB,eAAO,MAAM,UAAU;;;GAQtB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,UAAU;;;GAMtB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,MAAM;;;GAalB,CAAC;AAEF,eAAO,MAAM,UAAU,KAAK,CAAC;AAC7B,eAAO,MAAM,QAAQ,KAAK,CAAC;AAC3B,eAAO,MAAM,WAAW,IAAI,CAAC;AAC7B,eAAO,MAAM,aAAa,IAAI,CAAC;AAC/B,eAAO,MAAM,SAAS,KAAK,CAAC;AAC5B,eAAO,MAAM,YAAY,KAAK,CAAC;AAC/B,eAAO,MAAM,eAAe,IAAI,CAAC;AAEjC,oBAAY,iBAAiB;IAC3B,gBAAgB,uBAAuB;CACxC;AAED,MAAM,MAAM,yBAAyB,GAAG;IACtC,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,EAAE,WAAW,GAAG,YAAY,GAAG,aAAa,GAAG,YAAY,CAAC;CACjG,CAAC;AAEF,MAAM,MAAM,UAAU,GAAG;IACvB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,cAAc,GACtB;IAAE,IAAI,EAAE,SAAS,CAAC,IAAI,CAAC;IAAC,OAAO,EAAE,MAAM,CAAA;CAAE,GACzC;IAAE,IAAI,EAAE,SAAS,CAAC,YAAY,CAAC;IAAC,GAAG,EAAE,MAAM,CAAC;IAAC,UAAU,EAAE,MAAM,CAAA;CAAE,CAAC;AAEtE,MAAM,MAAM,aAAa,GACrB;IAAE,IAAI,EAAE,SAAS,CAAC,IAAI,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,MAAM,CAAA;CAAE,GACxD;IAAE,IAAI,EAAE,SAAS,CAAC,YAAY,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,MAAM,CAAC;IAAC,UAAU,EAAE,MAAM,CAAA;CAAE,CAAC;AAErF,MAAM,MAAM,WAAW,GAAG;IACxB,IAAI,EAAE,cAAc,CAAC,KAAK,CAAC;IAC3B,QAAQ,EAAE,QAAQ,CAAC;CACpB,GAAG,UAAU,CAAC;AAEf,MAAM,MAAM,YAAY,GAAG;IACzB,IAAI,EAAE,cAAc,CAAC,MAAM,CAAC;IAC5B,YAAY,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;CAC3B,GAAG,UAAU,CAAC;AAEf,MAAM,MAAM,aAAa,GAAG;IAC1B,IAAI,EAAE,cAAc,CAAC,OAAO,CAAC;IAC7B,SAAS,EAAE,cAAc,CAAC;CAC3B,GAAG,UAAU,CAAC;AAEf,MAAM,MAAM,YAAY,GAAG;IACzB,IAAI,EAAE,cAAc,CAAC,MAAM,CAAC;IAC5B,SAAS,EAAE,aAAa,CAAC;CAC1B,GAAG,UAAU,CAAC;AAEf,MAAM,MAAM,UAAU,GAAG,WAAW,GAAG,YAAY,GAAG,aAAa,GAAG,YAAY,CAAC"}