@foldkit/ui 0.131.0 → 0.133.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/animation/index.d.ts +13 -13
- package/dist/calendar/index.d.ts +76 -76
- package/dist/combobox/multi.d.ts +110 -102
- package/dist/combobox/multi.d.ts.map +1 -1
- package/dist/combobox/shared.d.ts +92 -84
- package/dist/combobox/shared.d.ts.map +1 -1
- package/dist/combobox/single.d.ts +110 -102
- package/dist/combobox/single.d.ts.map +1 -1
- package/dist/datePicker/index.d.ts +152 -98
- package/dist/datePicker/index.d.ts.map +1 -1
- package/dist/dialog/index.d.ts +34 -26
- package/dist/dialog/index.d.ts.map +1 -1
- package/dist/dragAndDrop/index.d.ts +346 -326
- package/dist/dragAndDrop/index.d.ts.map +1 -1
- package/dist/fileDrop/index.d.ts +13 -13
- package/dist/listbox/multi.d.ts +110 -102
- package/dist/listbox/multi.d.ts.map +1 -1
- package/dist/listbox/shared.d.ts +86 -78
- package/dist/listbox/shared.d.ts.map +1 -1
- package/dist/listbox/single.d.ts +110 -102
- package/dist/listbox/single.d.ts.map +1 -1
- package/dist/menu/index.d.ts +15 -15
- package/dist/menu/index.d.ts.map +1 -1
- package/dist/popover/index.d.ts +69 -61
- package/dist/popover/index.d.ts.map +1 -1
- package/dist/slider/index.d.ts +164 -149
- package/dist/slider/index.d.ts.map +1 -1
- package/dist/toast/index.d.ts +462 -414
- package/dist/toast/index.d.ts.map +1 -1
- package/dist/toast/update.d.ts +388 -348
- package/dist/toast/update.d.ts.map +1 -1
- package/dist/tooltip/index.d.ts +31 -31
- package/dist/tooltip/index.d.ts.map +1 -1
- package/dist/virtualList/index.d.ts +30 -24
- package/dist/virtualList/index.d.ts.map +1 -1
- package/package.json +6 -6
|
@@ -24,19 +24,19 @@ export type ViewInputs = Readonly<{
|
|
|
24
24
|
* - `data-leave`: leave animation is active
|
|
25
25
|
* - `data-transition`: any animation is active
|
|
26
26
|
*/
|
|
27
|
-
export declare const view: import("foldkit/submodel").View<
|
|
28
|
-
readonly id:
|
|
29
|
-
readonly isShowing:
|
|
30
|
-
readonly transitionState:
|
|
31
|
-
},
|
|
32
|
-
readonly _tag:
|
|
33
|
-
}
|
|
34
|
-
readonly _tag:
|
|
35
|
-
}
|
|
36
|
-
readonly _tag:
|
|
37
|
-
}
|
|
38
|
-
readonly _tag:
|
|
39
|
-
},
|
|
27
|
+
export declare const view: import("foldkit/submodel").View<{
|
|
28
|
+
readonly id: string;
|
|
29
|
+
readonly isShowing: boolean;
|
|
30
|
+
readonly transitionState: "Idle" | "EnterStart" | "EnterAnimating" | "LeaveStart" | "LeaveAnimating";
|
|
31
|
+
}, {
|
|
32
|
+
readonly _tag: "Showed";
|
|
33
|
+
} | {
|
|
34
|
+
readonly _tag: "Hid";
|
|
35
|
+
} | {
|
|
36
|
+
readonly _tag: "AdvancedAnimationFrame";
|
|
37
|
+
} | {
|
|
38
|
+
readonly _tag: "EndedAnimation";
|
|
39
|
+
}, Readonly<{
|
|
40
40
|
content: Html;
|
|
41
41
|
className?: string;
|
|
42
42
|
attributes?: ReadonlyArray<ChildAttribute>;
|
package/dist/calendar/index.d.ts
CHANGED
|
@@ -362,85 +362,85 @@ export type ViewInputs = Readonly<{
|
|
|
362
362
|
* bundles + derived cell data, then delegates layout to the consumer's
|
|
363
363
|
* `toView` callback. The variant of `CalendarAttributes` passed to
|
|
364
364
|
* `toView` matches `model.viewMode`. */
|
|
365
|
-
export declare const view: import("foldkit/submodel").View<
|
|
366
|
-
readonly id:
|
|
367
|
-
readonly today:
|
|
368
|
-
readonly year:
|
|
369
|
-
readonly month:
|
|
370
|
-
readonly day:
|
|
365
|
+
export declare const view: import("foldkit/submodel").View<{
|
|
366
|
+
readonly id: string;
|
|
367
|
+
readonly today: {
|
|
368
|
+
readonly year: number;
|
|
369
|
+
readonly month: number;
|
|
370
|
+
readonly day: number;
|
|
371
|
+
};
|
|
372
|
+
readonly viewYear: number;
|
|
373
|
+
readonly viewMonth: number;
|
|
374
|
+
readonly viewMode: "Days" | "Months" | "Years";
|
|
375
|
+
readonly maybeFocusedDate: Option.Option<{
|
|
376
|
+
readonly year: number;
|
|
377
|
+
readonly month: number;
|
|
378
|
+
readonly day: number;
|
|
371
379
|
}>;
|
|
372
|
-
readonly
|
|
373
|
-
readonly
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
readonly
|
|
377
|
-
readonly
|
|
378
|
-
readonly
|
|
379
|
-
}
|
|
380
|
-
readonly
|
|
381
|
-
|
|
382
|
-
readonly
|
|
383
|
-
readonly
|
|
384
|
-
readonly shortMonthNames: S.Tuple<readonly [S.String, S.String, S.String, S.String, S.String, S.String, S.String, S.String, S.String, S.String, S.String, S.String]>;
|
|
385
|
-
readonly dayNames: S.Tuple<readonly [S.String, S.String, S.String, S.String, S.String, S.String, S.String]>;
|
|
386
|
-
readonly shortDayNames: S.Tuple<readonly [S.String, S.String, S.String, S.String, S.String, S.String, S.String]>;
|
|
380
|
+
readonly isGridFocused: boolean;
|
|
381
|
+
readonly locale: {
|
|
382
|
+
readonly firstDayOfWeek: "Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday";
|
|
383
|
+
readonly monthNames: readonly [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
384
|
+
readonly shortMonthNames: readonly [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
385
|
+
readonly dayNames: readonly [string, string, string, string, string, string, string];
|
|
386
|
+
readonly shortDayNames: readonly [string, string, string, string, string, string, string];
|
|
387
|
+
};
|
|
388
|
+
readonly maybeMinDate: Option.Option<{
|
|
389
|
+
readonly year: number;
|
|
390
|
+
readonly month: number;
|
|
391
|
+
readonly day: number;
|
|
387
392
|
}>;
|
|
388
|
-
readonly
|
|
389
|
-
readonly year:
|
|
390
|
-
readonly month:
|
|
391
|
-
readonly day:
|
|
392
|
-
}>>;
|
|
393
|
-
readonly maybeMaxDate: S.Option<S.Struct<{
|
|
394
|
-
readonly year: S.Int;
|
|
395
|
-
readonly month: S.Int;
|
|
396
|
-
readonly day: S.Int;
|
|
397
|
-
}>>;
|
|
398
|
-
readonly disabledDaysOfWeek: S.$Array<S.Literals<readonly ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]>>;
|
|
399
|
-
readonly disabledDates: S.$Array<S.Struct<{
|
|
400
|
-
readonly year: S.Int;
|
|
401
|
-
readonly month: S.Int;
|
|
402
|
-
readonly day: S.Int;
|
|
403
|
-
}>>;
|
|
404
|
-
}, "Type">, S.Struct.ReadonlySide<{
|
|
405
|
-
readonly _tag: S.tag<"ClickedDay">;
|
|
406
|
-
date: S.Struct<{
|
|
407
|
-
readonly year: S.Int;
|
|
408
|
-
readonly month: S.Int;
|
|
409
|
-
readonly day: S.Int;
|
|
410
|
-
}>;
|
|
411
|
-
}, "Type"> | S.Struct.ReadonlySide<{
|
|
412
|
-
readonly _tag: S.tag<"PressedKeyOnGrid">;
|
|
413
|
-
key: S.String;
|
|
414
|
-
isShift: S.Boolean;
|
|
415
|
-
}, "Type"> | S.Struct.ReadonlySide<{
|
|
416
|
-
readonly _tag: S.tag<"ClickedPreviousMonthButton">;
|
|
417
|
-
}, "Type"> | S.Struct.ReadonlySide<{
|
|
418
|
-
readonly _tag: S.tag<"ClickedNextMonthButton">;
|
|
419
|
-
}, "Type"> | S.Struct.ReadonlySide<{
|
|
420
|
-
readonly _tag: S.tag<"ClickedHeading">;
|
|
421
|
-
}, "Type"> | S.Struct.ReadonlySide<{
|
|
422
|
-
readonly _tag: S.tag<"SelectedMonth">;
|
|
423
|
-
month: S.Int;
|
|
424
|
-
}, "Type"> | S.Struct.ReadonlySide<{
|
|
425
|
-
readonly _tag: S.tag<"SelectedYear">;
|
|
426
|
-
year: S.Int;
|
|
427
|
-
}, "Type"> | S.Struct.ReadonlySide<{
|
|
428
|
-
readonly _tag: S.tag<"PagedYears">;
|
|
429
|
-
direction: S.Literals<readonly [1, -1]>;
|
|
430
|
-
}, "Type"> | S.Struct.ReadonlySide<{
|
|
431
|
-
readonly _tag: S.tag<"FocusedGrid">;
|
|
432
|
-
}, "Type"> | S.Struct.ReadonlySide<{
|
|
433
|
-
readonly _tag: S.tag<"BlurredGrid">;
|
|
434
|
-
}, "Type"> | S.Struct.ReadonlySide<{
|
|
435
|
-
readonly _tag: S.tag<"RefreshedToday">;
|
|
436
|
-
today: S.Struct<{
|
|
437
|
-
readonly year: S.Int;
|
|
438
|
-
readonly month: S.Int;
|
|
439
|
-
readonly day: S.Int;
|
|
393
|
+
readonly maybeMaxDate: Option.Option<{
|
|
394
|
+
readonly year: number;
|
|
395
|
+
readonly month: number;
|
|
396
|
+
readonly day: number;
|
|
440
397
|
}>;
|
|
441
|
-
|
|
442
|
-
readonly
|
|
443
|
-
|
|
398
|
+
readonly disabledDaysOfWeek: readonly ("Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday")[];
|
|
399
|
+
readonly disabledDates: readonly {
|
|
400
|
+
readonly year: number;
|
|
401
|
+
readonly month: number;
|
|
402
|
+
readonly day: number;
|
|
403
|
+
}[];
|
|
404
|
+
}, {
|
|
405
|
+
readonly _tag: "ClickedDay";
|
|
406
|
+
readonly date: {
|
|
407
|
+
readonly year: number;
|
|
408
|
+
readonly month: number;
|
|
409
|
+
readonly day: number;
|
|
410
|
+
};
|
|
411
|
+
} | {
|
|
412
|
+
readonly _tag: "PressedKeyOnGrid";
|
|
413
|
+
readonly key: string;
|
|
414
|
+
readonly isShift: boolean;
|
|
415
|
+
} | {
|
|
416
|
+
readonly _tag: "ClickedPreviousMonthButton";
|
|
417
|
+
} | {
|
|
418
|
+
readonly _tag: "ClickedNextMonthButton";
|
|
419
|
+
} | {
|
|
420
|
+
readonly _tag: "ClickedHeading";
|
|
421
|
+
} | {
|
|
422
|
+
readonly _tag: "SelectedMonth";
|
|
423
|
+
readonly month: number;
|
|
424
|
+
} | {
|
|
425
|
+
readonly _tag: "SelectedYear";
|
|
426
|
+
readonly year: number;
|
|
427
|
+
} | {
|
|
428
|
+
readonly _tag: "PagedYears";
|
|
429
|
+
readonly direction: 1 | -1;
|
|
430
|
+
} | {
|
|
431
|
+
readonly _tag: "FocusedGrid";
|
|
432
|
+
} | {
|
|
433
|
+
readonly _tag: "BlurredGrid";
|
|
434
|
+
} | {
|
|
435
|
+
readonly _tag: "RefreshedToday";
|
|
436
|
+
readonly today: {
|
|
437
|
+
readonly year: number;
|
|
438
|
+
readonly month: number;
|
|
439
|
+
readonly day: number;
|
|
440
|
+
};
|
|
441
|
+
} | {
|
|
442
|
+
readonly _tag: "CompletedFocusGrid";
|
|
443
|
+
}, Readonly<{
|
|
444
444
|
/** The selected date, read straight from the parent Model. The selected-day
|
|
445
445
|
* marker derives from it. */
|
|
446
446
|
maybeSelectedDate: Option.Option<CalendarDate>;
|
package/dist/combobox/multi.d.ts
CHANGED
|
@@ -30,113 +30,121 @@ export type InitConfig = BaseInitConfig;
|
|
|
30
30
|
/** Creates an initial multi-select combobox model from a config. Defaults to closed with no active item and an empty input. */
|
|
31
31
|
export declare const init: (config: InitConfig) => Model;
|
|
32
32
|
/** Processes a combobox message and returns the next model, commands, and optional OutMessage. Stays open on selection (multi-select behavior); emits a `Selected({ value })` OutMessage the parent folds by toggling the value's membership, and `ClearedSelection` when a nullable combobox closes with an empty input. The multi-select input always rests empty on close, so it ignores the message's `restingInputValue`; multi consumers pass `''`. */
|
|
33
|
-
export declare const update: (model:
|
|
34
|
-
readonly id:
|
|
35
|
-
readonly isOpen:
|
|
36
|
-
readonly isAnimated:
|
|
37
|
-
readonly isModal:
|
|
38
|
-
readonly nullable:
|
|
39
|
-
readonly immediate:
|
|
40
|
-
readonly selectInputOnFocus:
|
|
41
|
-
readonly animation:
|
|
42
|
-
readonly id:
|
|
43
|
-
readonly isShowing:
|
|
44
|
-
readonly transitionState:
|
|
33
|
+
export declare const update: (model: {
|
|
34
|
+
readonly id: string;
|
|
35
|
+
readonly isOpen: boolean;
|
|
36
|
+
readonly isAnimated: boolean;
|
|
37
|
+
readonly isModal: boolean;
|
|
38
|
+
readonly nullable: boolean;
|
|
39
|
+
readonly immediate: boolean;
|
|
40
|
+
readonly selectInputOnFocus: boolean;
|
|
41
|
+
readonly animation: {
|
|
42
|
+
readonly id: string;
|
|
43
|
+
readonly isShowing: boolean;
|
|
44
|
+
readonly transitionState: "Idle" | "EnterStart" | "EnterAnimating" | "LeaveStart" | "LeaveAnimating";
|
|
45
|
+
};
|
|
46
|
+
readonly maybeActiveItemIndex: Option.Option<number>;
|
|
47
|
+
readonly activationTrigger: "Pointer" | "Keyboard";
|
|
48
|
+
readonly inputValue: string;
|
|
49
|
+
readonly maybeLastPointerPosition: Option.Option<{
|
|
50
|
+
readonly screenX: number;
|
|
51
|
+
readonly screenY: number;
|
|
45
52
|
}>;
|
|
46
|
-
|
|
47
|
-
readonly
|
|
48
|
-
readonly
|
|
49
|
-
readonly
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
readonly
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
readonly
|
|
60
|
-
readonly
|
|
61
|
-
readonly
|
|
62
|
-
|
|
63
|
-
readonly
|
|
64
|
-
readonly
|
|
53
|
+
}, message: Message) => readonly [{
|
|
54
|
+
readonly id: string;
|
|
55
|
+
readonly isOpen: boolean;
|
|
56
|
+
readonly isAnimated: boolean;
|
|
57
|
+
readonly isModal: boolean;
|
|
58
|
+
readonly nullable: boolean;
|
|
59
|
+
readonly immediate: boolean;
|
|
60
|
+
readonly selectInputOnFocus: boolean;
|
|
61
|
+
readonly animation: {
|
|
62
|
+
readonly id: string;
|
|
63
|
+
readonly isShowing: boolean;
|
|
64
|
+
readonly transitionState: "Idle" | "EnterStart" | "EnterAnimating" | "LeaveStart" | "LeaveAnimating";
|
|
65
|
+
};
|
|
66
|
+
readonly maybeActiveItemIndex: Option.Option<number>;
|
|
67
|
+
readonly activationTrigger: "Pointer" | "Keyboard";
|
|
68
|
+
readonly inputValue: string;
|
|
69
|
+
readonly maybeLastPointerPosition: Option.Option<{
|
|
70
|
+
readonly screenX: number;
|
|
71
|
+
readonly screenY: number;
|
|
65
72
|
}>;
|
|
66
|
-
|
|
67
|
-
readonly activationTrigger: S.Literals<readonly ["Pointer", "Keyboard"]>;
|
|
68
|
-
readonly inputValue: S.String;
|
|
69
|
-
readonly maybeLastPointerPosition: S.Option<S.Struct<{
|
|
70
|
-
readonly screenX: S.Number;
|
|
71
|
-
readonly screenY: S.Number;
|
|
72
|
-
}>>;
|
|
73
|
-
}, "Type">, readonly Readonly<{
|
|
73
|
+
}, readonly Readonly<{
|
|
74
74
|
name: string;
|
|
75
75
|
args?: Record<string, unknown>;
|
|
76
76
|
key?: string;
|
|
77
|
-
effect: import("effect/Effect").Effect<
|
|
78
|
-
readonly _tag:
|
|
79
|
-
}
|
|
80
|
-
readonly _tag:
|
|
81
|
-
}
|
|
82
|
-
readonly _tag:
|
|
83
|
-
}
|
|
84
|
-
readonly _tag:
|
|
85
|
-
}
|
|
86
|
-
readonly _tag:
|
|
87
|
-
maybeActiveItemIndex:
|
|
88
|
-
}
|
|
89
|
-
readonly _tag:
|
|
90
|
-
restingInputValue:
|
|
91
|
-
}
|
|
92
|
-
readonly _tag:
|
|
93
|
-
restingInputValue:
|
|
94
|
-
}
|
|
95
|
-
readonly _tag:
|
|
96
|
-
index:
|
|
97
|
-
activationTrigger:
|
|
98
|
-
maybeImmediateSelection:
|
|
99
|
-
readonly item:
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
readonly _tag:
|
|
103
|
-
}
|
|
104
|
-
readonly _tag:
|
|
105
|
-
item:
|
|
106
|
-
displayText:
|
|
107
|
-
wasSelected:
|
|
108
|
-
}
|
|
109
|
-
readonly _tag:
|
|
110
|
-
index:
|
|
111
|
-
screenX:
|
|
112
|
-
screenY:
|
|
113
|
-
}
|
|
114
|
-
readonly _tag:
|
|
115
|
-
index:
|
|
116
|
-
}
|
|
117
|
-
readonly _tag:
|
|
118
|
-
}
|
|
119
|
-
readonly _tag:
|
|
120
|
-
}
|
|
121
|
-
readonly _tag:
|
|
122
|
-
}
|
|
123
|
-
readonly _tag:
|
|
124
|
-
value:
|
|
125
|
-
}
|
|
126
|
-
readonly _tag:
|
|
127
|
-
restingInputValue:
|
|
128
|
-
}
|
|
129
|
-
readonly _tag:
|
|
130
|
-
}
|
|
131
|
-
readonly _tag:
|
|
132
|
-
}
|
|
133
|
-
readonly _tag:
|
|
134
|
-
}
|
|
135
|
-
readonly _tag:
|
|
136
|
-
}
|
|
137
|
-
readonly _tag:
|
|
138
|
-
message:
|
|
139
|
-
|
|
77
|
+
effect: import("effect/Effect").Effect<{
|
|
78
|
+
readonly _tag: "CompletedLockScroll";
|
|
79
|
+
} | {
|
|
80
|
+
readonly _tag: "CompletedUnlockScroll";
|
|
81
|
+
} | {
|
|
82
|
+
readonly _tag: "CompletedInertOthers";
|
|
83
|
+
} | {
|
|
84
|
+
readonly _tag: "CompletedRestoreInert";
|
|
85
|
+
} | {
|
|
86
|
+
readonly _tag: "Opened";
|
|
87
|
+
readonly maybeActiveItemIndex: Option.Option<number>;
|
|
88
|
+
} | {
|
|
89
|
+
readonly _tag: "Closed";
|
|
90
|
+
readonly restingInputValue: string;
|
|
91
|
+
} | {
|
|
92
|
+
readonly _tag: "BlurredInput";
|
|
93
|
+
readonly restingInputValue: string;
|
|
94
|
+
} | {
|
|
95
|
+
readonly _tag: "ActivatedItem";
|
|
96
|
+
readonly index: number;
|
|
97
|
+
readonly activationTrigger: "Pointer" | "Keyboard";
|
|
98
|
+
readonly maybeImmediateSelection: Option.Option<{
|
|
99
|
+
readonly item: string;
|
|
100
|
+
}>;
|
|
101
|
+
} | {
|
|
102
|
+
readonly _tag: "DeactivatedItem";
|
|
103
|
+
} | {
|
|
104
|
+
readonly _tag: "SelectedItem";
|
|
105
|
+
readonly item: string;
|
|
106
|
+
readonly displayText: string;
|
|
107
|
+
readonly wasSelected: boolean;
|
|
108
|
+
} | {
|
|
109
|
+
readonly _tag: "MovedPointerOverItem";
|
|
110
|
+
readonly index: number;
|
|
111
|
+
readonly screenX: number;
|
|
112
|
+
readonly screenY: number;
|
|
113
|
+
} | {
|
|
114
|
+
readonly _tag: "RequestedItemClick";
|
|
115
|
+
readonly index: number;
|
|
116
|
+
} | {
|
|
117
|
+
readonly _tag: "CompletedFocusInput";
|
|
118
|
+
} | {
|
|
119
|
+
readonly _tag: "CompletedScrollIntoView";
|
|
120
|
+
} | {
|
|
121
|
+
readonly _tag: "CompletedClickItem";
|
|
122
|
+
} | {
|
|
123
|
+
readonly _tag: "UpdatedInputValue";
|
|
124
|
+
readonly value: string;
|
|
125
|
+
} | {
|
|
126
|
+
readonly _tag: "PressedToggleButton";
|
|
127
|
+
readonly restingInputValue: string;
|
|
128
|
+
} | {
|
|
129
|
+
readonly _tag: "CompletedAnchorCombobox";
|
|
130
|
+
} | {
|
|
131
|
+
readonly _tag: "CompletedAttachComboboxPreventBlur";
|
|
132
|
+
} | {
|
|
133
|
+
readonly _tag: "CompletedAttachComboboxSelectOnFocus";
|
|
134
|
+
} | {
|
|
135
|
+
readonly _tag: "CompletedPortalComboboxBackdrop";
|
|
136
|
+
} | {
|
|
137
|
+
readonly _tag: "GotAnimationMessage";
|
|
138
|
+
readonly message: {
|
|
139
|
+
readonly _tag: "Showed";
|
|
140
|
+
} | {
|
|
141
|
+
readonly _tag: "Hid";
|
|
142
|
+
} | {
|
|
143
|
+
readonly _tag: "AdvancedAnimationFrame";
|
|
144
|
+
} | {
|
|
145
|
+
readonly _tag: "EndedAnimation";
|
|
146
|
+
};
|
|
147
|
+
}, never, never>;
|
|
140
148
|
}>[], Option.Option<OutMessage<string>>];
|
|
141
149
|
type UpdateReturn = ReturnType<typeof update>;
|
|
142
150
|
/** Programmatically opens the combobox, updating the model and returning
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"multi.d.ts","sourceRoot":"","sources":["../../src/combobox/multi.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,IAAI,CAAC,EAAE,MAAM,QAAQ,CAAA;AAC5C,OAAO,KAAK,KAAK,OAAO,MAAM,iBAAiB,CAAA;AAE/C,OAAO,KAAK,EAAE,IAAI,IAAI,YAAY,EAAE,MAAM,kBAAkB,CAAA;AAE5D,OAAO,EACL,KAAK,cAAc,EAEnB,KAAK,cAAc,EAGnB,KAAK,OAAO,EAEZ,KAAK,UAAU,EAOhB,MAAM,aAAa,CAAA;AAIpB,qOAAqO;AACrO,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;EAEhB,CAAA;AAEF,MAAM,MAAM,KAAK,GAAG,OAAO,KAAK,CAAC,IAAI,CAAA;AAIrC,mOAAmO;AACnO,MAAM,MAAM,UAAU,GAAG,cAAc,CAAA;AAEvC,+HAA+H;AAC/H,eAAO,MAAM,IAAI,GAAI,QAAQ,UAAU,KAAG,KAAyB,CAAA;AAInE,6bAA6b;AAC7b,eAAO,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"multi.d.ts","sourceRoot":"","sources":["../../src/combobox/multi.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,IAAI,CAAC,EAAE,MAAM,QAAQ,CAAA;AAC5C,OAAO,KAAK,KAAK,OAAO,MAAM,iBAAiB,CAAA;AAE/C,OAAO,KAAK,EAAE,IAAI,IAAI,YAAY,EAAE,MAAM,kBAAkB,CAAA;AAE5D,OAAO,EACL,KAAK,cAAc,EAEnB,KAAK,cAAc,EAGnB,KAAK,OAAO,EAEZ,KAAK,UAAU,EAOhB,MAAM,aAAa,CAAA;AAIpB,qOAAqO;AACrO,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;EAEhB,CAAA;AAEF,MAAM,MAAM,KAAK,GAAG,OAAO,KAAK,CAAC,IAAI,CAAA;AAIrC,mOAAmO;AACnO,MAAM,MAAM,UAAU,GAAG,cAAc,CAAA;AAEvC,+HAA+H;AAC/H,eAAO,MAAM,IAAI,GAAI,QAAQ,UAAU,KAAG,KAAyB,CAAA;AAInE,6bAA6b;AAC7b,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAyBjB,CAAA;AAEF,KAAK,YAAY,GAAG,UAAU,CAAC,OAAO,MAAM,CAAC,CAAA;AAE7C;wFACwF;AACxF,eAAO,MAAM,IAAI,GAAI,OAAO,KAAK,KAAG,YAC4B,CAAA;AAEhE;;sEAEsE;AACtE,eAAO,MAAM,KAAK,GAAI,OAAO,KAAK,KAAG,YACa,CAAA;AAElD;wEACwE;AACxE,eAAO,MAAM,UAAU,GAAI,OAAO,KAAK,EAAE,MAAM,MAAM,KAAG,YACsB,CAAA;AAI9E,uFAAuF;AACvF,MAAM,MAAM,UAAU,CAAC,IAAI,SAAS,MAAM,IAAI,cAAc,CAAC,IAAI,CAAC,CAAA;AAIlE;;wEAEwE;AACxE,eAAO,MAAM,MAAM,GAAI,IAAI,SAAS,MAAM,GAAG,MAAM,OAAK,QAAQ,CAAC;IAC/D,IAAI,EAAE,YAAY,CAAC,KAAK,EAAE,OAAO,EAAE,cAAc,CAAC,IAAI,CAAC,CAAC,CAAA;IACxD,MAAM,EAAE,CACN,KAAK,EAAE,KAAK,EACZ,OAAO,EAAE,OAAO,KACb,SAAS,CACZ,KAAK,EACL,aAAa,CAAC,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,EACvC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAChC,CAAA;IACD,UAAU,EAAE,CACV,KAAK,EAAE,KAAK,EACZ,IAAI,EAAE,IAAI,KACP,SAAS,CACZ,KAAK,EACL,aAAa,CAAC,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,EACvC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAChC,CAAA;IACD,IAAI,EAAE,CACJ,KAAK,EAAE,KAAK,KACT,SAAS,CACZ,KAAK,EACL,aAAa,CAAC,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,EACvC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAChC,CAAA;IACD,KAAK,EAAE,CACL,KAAK,EAAE,KAAK,KACT,SAAS,CACZ,KAAK,EACL,aAAa,CAAC,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,EACvC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAChC,CAAA;CACF,CAoBA,CAAA"}
|