@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.
Files changed (36) hide show
  1. package/dist/animation/index.d.ts +13 -13
  2. package/dist/calendar/index.d.ts +76 -76
  3. package/dist/combobox/multi.d.ts +110 -102
  4. package/dist/combobox/multi.d.ts.map +1 -1
  5. package/dist/combobox/shared.d.ts +92 -84
  6. package/dist/combobox/shared.d.ts.map +1 -1
  7. package/dist/combobox/single.d.ts +110 -102
  8. package/dist/combobox/single.d.ts.map +1 -1
  9. package/dist/datePicker/index.d.ts +152 -98
  10. package/dist/datePicker/index.d.ts.map +1 -1
  11. package/dist/dialog/index.d.ts +34 -26
  12. package/dist/dialog/index.d.ts.map +1 -1
  13. package/dist/dragAndDrop/index.d.ts +346 -326
  14. package/dist/dragAndDrop/index.d.ts.map +1 -1
  15. package/dist/fileDrop/index.d.ts +13 -13
  16. package/dist/listbox/multi.d.ts +110 -102
  17. package/dist/listbox/multi.d.ts.map +1 -1
  18. package/dist/listbox/shared.d.ts +86 -78
  19. package/dist/listbox/shared.d.ts.map +1 -1
  20. package/dist/listbox/single.d.ts +110 -102
  21. package/dist/listbox/single.d.ts.map +1 -1
  22. package/dist/menu/index.d.ts +15 -15
  23. package/dist/menu/index.d.ts.map +1 -1
  24. package/dist/popover/index.d.ts +69 -61
  25. package/dist/popover/index.d.ts.map +1 -1
  26. package/dist/slider/index.d.ts +164 -149
  27. package/dist/slider/index.d.ts.map +1 -1
  28. package/dist/toast/index.d.ts +462 -414
  29. package/dist/toast/index.d.ts.map +1 -1
  30. package/dist/toast/update.d.ts +388 -348
  31. package/dist/toast/update.d.ts.map +1 -1
  32. package/dist/tooltip/index.d.ts +31 -31
  33. package/dist/tooltip/index.d.ts.map +1 -1
  34. package/dist/virtualList/index.d.ts +30 -24
  35. package/dist/virtualList/index.d.ts.map +1 -1
  36. 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<import("effect/Schema").Struct.ReadonlySide<{
28
- readonly id: import("effect/Schema").String;
29
- readonly isShowing: import("effect/Schema").Boolean;
30
- readonly transitionState: import("effect/Schema").Literals<readonly ["Idle", "EnterStart", "EnterAnimating", "LeaveStart", "LeaveAnimating"]>;
31
- }, "Type">, import("effect/Schema").Struct.ReadonlySide<{
32
- readonly _tag: import("effect/Schema").tag<"Showed">;
33
- }, "Type"> | import("effect/Schema").Struct.ReadonlySide<{
34
- readonly _tag: import("effect/Schema").tag<"Hid">;
35
- }, "Type"> | import("effect/Schema").Struct.ReadonlySide<{
36
- readonly _tag: import("effect/Schema").tag<"AdvancedAnimationFrame">;
37
- }, "Type"> | import("effect/Schema").Struct.ReadonlySide<{
38
- readonly _tag: import("effect/Schema").tag<"EndedAnimation">;
39
- }, "Type">, Readonly<{
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>;
@@ -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<S.Struct.ReadonlySide<{
366
- readonly id: S.String;
367
- readonly today: S.Struct<{
368
- readonly year: S.Int;
369
- readonly month: S.Int;
370
- readonly day: S.Int;
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 viewYear: S.Int;
373
- readonly viewMonth: S.Int;
374
- readonly viewMode: S.Literals<readonly ["Days", "Months", "Years"]>;
375
- readonly maybeFocusedDate: S.Option<S.Struct<{
376
- readonly year: S.Int;
377
- readonly month: S.Int;
378
- readonly day: S.Int;
379
- }>>;
380
- readonly isGridFocused: S.Boolean;
381
- readonly locale: S.Struct<{
382
- readonly firstDayOfWeek: S.Literals<readonly ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]>;
383
- readonly monthNames: 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]>;
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 maybeMinDate: S.Option<S.Struct<{
389
- readonly year: S.Int;
390
- readonly month: S.Int;
391
- readonly day: S.Int;
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
- }, "Type"> | S.Struct.ReadonlySide<{
442
- readonly _tag: S.tag<"CompletedFocusGrid">;
443
- }, "Type">, Readonly<{
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>;
@@ -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: S.Struct.ReadonlySide<{
34
- readonly id: S.String;
35
- readonly isOpen: S.Boolean;
36
- readonly isAnimated: S.Boolean;
37
- readonly isModal: S.Boolean;
38
- readonly nullable: S.Boolean;
39
- readonly immediate: S.Boolean;
40
- readonly selectInputOnFocus: S.Boolean;
41
- readonly animation: S.Struct<{
42
- readonly id: S.String;
43
- readonly isShowing: S.Boolean;
44
- readonly transitionState: S.Literals<readonly ["Idle", "EnterStart", "EnterAnimating", "LeaveStart", "LeaveAnimating"]>;
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
- readonly maybeActiveItemIndex: S.Option<S.Number>;
47
- readonly activationTrigger: S.Literals<readonly ["Pointer", "Keyboard"]>;
48
- readonly inputValue: S.String;
49
- readonly maybeLastPointerPosition: S.Option<S.Struct<{
50
- readonly screenX: S.Number;
51
- readonly screenY: S.Number;
52
- }>>;
53
- }, "Type">, message: Message) => readonly [S.Struct.ReadonlySide<{
54
- readonly id: S.String;
55
- readonly isOpen: S.Boolean;
56
- readonly isAnimated: S.Boolean;
57
- readonly isModal: S.Boolean;
58
- readonly nullable: S.Boolean;
59
- readonly immediate: S.Boolean;
60
- readonly selectInputOnFocus: S.Boolean;
61
- readonly animation: S.Struct<{
62
- readonly id: S.String;
63
- readonly isShowing: S.Boolean;
64
- readonly transitionState: S.Literals<readonly ["Idle", "EnterStart", "EnterAnimating", "LeaveStart", "LeaveAnimating"]>;
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
- readonly maybeActiveItemIndex: S.Option<S.Number>;
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<S.Struct.ReadonlySide<{
78
- readonly _tag: S.tag<"CompletedLockScroll">;
79
- }, "Type"> | S.Struct.ReadonlySide<{
80
- readonly _tag: S.tag<"CompletedUnlockScroll">;
81
- }, "Type"> | S.Struct.ReadonlySide<{
82
- readonly _tag: S.tag<"CompletedInertOthers">;
83
- }, "Type"> | S.Struct.ReadonlySide<{
84
- readonly _tag: S.tag<"CompletedRestoreInert">;
85
- }, "Type"> | S.Struct.ReadonlySide<{
86
- readonly _tag: S.tag<"Opened">;
87
- maybeActiveItemIndex: S.Option<S.Number>;
88
- }, "Type"> | S.Struct.ReadonlySide<{
89
- readonly _tag: S.tag<"Closed">;
90
- restingInputValue: S.String;
91
- }, "Type"> | S.Struct.ReadonlySide<{
92
- readonly _tag: S.tag<"BlurredInput">;
93
- restingInputValue: S.String;
94
- }, "Type"> | S.Struct.ReadonlySide<{
95
- readonly _tag: S.tag<"ActivatedItem">;
96
- index: S.Number;
97
- activationTrigger: S.Literals<readonly ["Pointer", "Keyboard"]>;
98
- maybeImmediateSelection: S.Option<S.Struct<{
99
- readonly item: S.String;
100
- }>>;
101
- }, "Type"> | S.Struct.ReadonlySide<{
102
- readonly _tag: S.tag<"DeactivatedItem">;
103
- }, "Type"> | S.Struct.ReadonlySide<{
104
- readonly _tag: S.tag<"SelectedItem">;
105
- item: S.String;
106
- displayText: S.String;
107
- wasSelected: S.Boolean;
108
- }, "Type"> | S.Struct.ReadonlySide<{
109
- readonly _tag: S.tag<"MovedPointerOverItem">;
110
- index: S.Number;
111
- screenX: S.Number;
112
- screenY: S.Number;
113
- }, "Type"> | S.Struct.ReadonlySide<{
114
- readonly _tag: S.tag<"RequestedItemClick">;
115
- index: S.Number;
116
- }, "Type"> | S.Struct.ReadonlySide<{
117
- readonly _tag: S.tag<"CompletedFocusInput">;
118
- }, "Type"> | S.Struct.ReadonlySide<{
119
- readonly _tag: S.tag<"CompletedScrollIntoView">;
120
- }, "Type"> | S.Struct.ReadonlySide<{
121
- readonly _tag: S.tag<"CompletedClickItem">;
122
- }, "Type"> | S.Struct.ReadonlySide<{
123
- readonly _tag: S.tag<"UpdatedInputValue">;
124
- value: S.String;
125
- }, "Type"> | S.Struct.ReadonlySide<{
126
- readonly _tag: S.tag<"PressedToggleButton">;
127
- restingInputValue: S.String;
128
- }, "Type"> | S.Struct.ReadonlySide<{
129
- readonly _tag: S.tag<"CompletedAnchorCombobox">;
130
- }, "Type"> | S.Struct.ReadonlySide<{
131
- readonly _tag: S.tag<"CompletedAttachComboboxPreventBlur">;
132
- }, "Type"> | S.Struct.ReadonlySide<{
133
- readonly _tag: S.tag<"CompletedAttachComboboxSelectOnFocus">;
134
- }, "Type"> | S.Struct.ReadonlySide<{
135
- readonly _tag: S.tag<"CompletedPortalComboboxBackdrop">;
136
- }, "Type"> | S.Struct.ReadonlySide<{
137
- readonly _tag: S.tag<"GotAnimationMessage">;
138
- message: S.Union<[import("foldkit/schema").CallableTaggedStruct<"Showed", {}>, import("foldkit/schema").CallableTaggedStruct<"Hid", {}>, import("foldkit/schema").CallableTaggedStruct<"AdvancedAnimationFrame", {}>, import("foldkit/schema").CallableTaggedStruct<"EndedAnimation", {}>]>;
139
- }, "Type">, never, never>;
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
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"}