@foldkit/ui 0.154.0 → 0.155.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/README.md +1 -1
- package/dist/anchor/anchor.d.ts.map +1 -1
- package/dist/animation/index.d.ts +5 -5
- package/dist/animation/schema.d.ts.map +1 -1
- package/dist/animation/update.d.ts.map +1 -1
- package/dist/button/index.d.ts.map +1 -1
- package/dist/calendar/index.d.ts +44 -44
- package/dist/calendar/index.d.ts.map +1 -1
- package/dist/checkbox/index.d.ts.map +1 -1
- package/dist/combobox/multi.d.ts +47 -47
- package/dist/combobox/multi.d.ts.map +1 -1
- package/dist/combobox/shared.d.ts +44 -44
- package/dist/combobox/shared.d.ts.map +1 -1
- package/dist/combobox/shared.js +91 -78
- package/dist/combobox/single.d.ts +50 -50
- package/dist/combobox/single.d.ts.map +1 -1
- package/dist/datePicker/index.d.ts +102 -102
- package/dist/datePicker/index.d.ts.map +1 -1
- package/dist/dialog/index.d.ts +38 -18
- package/dist/dialog/index.d.ts.map +1 -1
- package/dist/dialog/index.js +66 -39
- package/dist/dialog/public.d.ts +1 -1
- package/dist/dialog/public.d.ts.map +1 -1
- package/dist/disclosure/index.d.ts.map +1 -1
- package/dist/dragAndDrop/index.d.ts +191 -191
- package/dist/dragAndDrop/index.d.ts.map +1 -1
- package/dist/fieldset/index.d.ts.map +1 -1
- package/dist/fileDrop/index.d.ts +10 -10
- package/dist/fileDrop/index.d.ts.map +1 -1
- package/dist/group.d.ts.map +1 -1
- package/dist/hoverIntent/hoverIntent.d.ts +103 -0
- package/dist/hoverIntent/hoverIntent.d.ts.map +1 -0
- package/dist/hoverIntent/hoverIntent.js +210 -0
- package/dist/hoverIntent/index.d.ts +4 -0
- package/dist/hoverIntent/index.d.ts.map +1 -0
- package/dist/hoverIntent/index.js +2 -0
- package/dist/hoverIntent/message.d.ts +42 -0
- package/dist/hoverIntent/message.d.ts.map +1 -0
- package/dist/hoverIntent/message.js +23 -0
- package/dist/hoverIntent/public.d.ts +3 -0
- package/dist/hoverIntent/public.d.ts.map +1 -0
- package/dist/hoverIntent/public.js +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/input/index.d.ts.map +1 -1
- package/dist/internal/optionExtensions.d.ts.map +1 -1
- package/dist/internal/selectors.d.ts.map +1 -1
- package/dist/keyboard.d.ts.map +1 -1
- package/dist/listbox/multi.d.ts +43 -43
- package/dist/listbox/multi.d.ts.map +1 -1
- package/dist/listbox/shared.d.ts +38 -38
- package/dist/listbox/shared.d.ts.map +1 -1
- package/dist/listbox/shared.js +46 -39
- package/dist/listbox/single.d.ts +45 -45
- package/dist/listbox/single.d.ts.map +1 -1
- package/dist/menu/index.d.ts +70 -70
- package/dist/menu/index.d.ts.map +1 -1
- package/dist/menu/index.js +39 -32
- package/dist/nav/index.d.ts.map +1 -1
- package/dist/popover/index.d.ts +33 -33
- package/dist/popover/index.d.ts.map +1 -1
- package/dist/popover/index.js +36 -29
- package/dist/radioGroup/index.d.ts +6 -6
- package/dist/radioGroup/index.d.ts.map +1 -1
- package/dist/select/index.d.ts.map +1 -1
- package/dist/slider/index.d.ts +72 -72
- package/dist/slider/index.d.ts.map +1 -1
- package/dist/switch/index.d.ts.map +1 -1
- package/dist/tabs/index.d.ts +6 -6
- package/dist/tabs/index.d.ts.map +1 -1
- package/dist/test/apps/disabledButton.d.ts +18 -15
- package/dist/test/apps/disabledButton.d.ts.map +1 -1
- package/dist/textarea/index.d.ts.map +1 -1
- package/dist/toast/index.d.ts +224 -224
- package/dist/toast/index.d.ts.map +1 -1
- package/dist/toast/schema.d.ts +16 -16
- package/dist/toast/schema.d.ts.map +1 -1
- package/dist/toast/test.d.ts.map +1 -1
- package/dist/toast/update.d.ts +151 -151
- package/dist/toast/update.d.ts.map +1 -1
- package/dist/tooltip/message.d.ts +2 -2
- package/dist/tooltip/message.d.ts.map +1 -1
- package/dist/tooltip/tooltip.d.ts +7 -7
- package/dist/tooltip/tooltip.d.ts.map +1 -1
- package/dist/tooltip/tooltip.js +15 -11
- package/dist/typeahead.d.ts.map +1 -1
- package/dist/virtualList/index.d.ts +10 -10
- package/dist/virtualList/index.d.ts.map +1 -1
- package/dist/virtualList/index.js +5 -5
- package/package.json +12 -10
package/dist/toast/schema.d.ts
CHANGED
|
@@ -54,22 +54,22 @@ export declare const makeModel: <A, I>(payloadSchema: S.Codec<A, I>) => S.Struct
|
|
|
54
54
|
/** Payload-independent Message variants shared by every bound Toast module. */
|
|
55
55
|
export declare const Message: import("foldkit/message").MessageUnion<{
|
|
56
56
|
readonly Dismissed: {
|
|
57
|
-
|
|
57
|
+
entryId: S.String;
|
|
58
58
|
};
|
|
59
59
|
readonly DismissedAll: {};
|
|
60
60
|
readonly CompletedWaitBeforeDismissal: {
|
|
61
|
-
|
|
62
|
-
|
|
61
|
+
entryId: S.String;
|
|
62
|
+
version: S.Number;
|
|
63
63
|
};
|
|
64
64
|
readonly HoveredEntry: {
|
|
65
|
-
|
|
65
|
+
entryId: S.String;
|
|
66
66
|
};
|
|
67
67
|
readonly LeftEntry: {
|
|
68
|
-
|
|
68
|
+
entryId: S.String;
|
|
69
69
|
};
|
|
70
70
|
readonly GotAnimationMessage: {
|
|
71
|
-
|
|
72
|
-
|
|
71
|
+
entryId: S.String;
|
|
72
|
+
message: import("foldkit/message").MessageUnion<{
|
|
73
73
|
readonly Showed: {};
|
|
74
74
|
readonly Hid: {};
|
|
75
75
|
readonly CompletedWaitForPaint: {};
|
|
@@ -86,7 +86,7 @@ export type GotAnimationMessage = typeof Message.GotAnimationMessage.Type;
|
|
|
86
86
|
/** Factory for the union of all messages the toast component can produce. */
|
|
87
87
|
export declare const makeMessage: <A, I>(payloadSchema: S.Codec<A, I>) => import("foldkit/message").MessageUnion<{
|
|
88
88
|
readonly Added: {
|
|
89
|
-
|
|
89
|
+
entry: S.Struct<{
|
|
90
90
|
readonly id: S.String;
|
|
91
91
|
readonly variant: S.Literals<readonly ["Info", "Success", "Warning", "Error"]>;
|
|
92
92
|
readonly animation: S.Struct<{
|
|
@@ -101,22 +101,22 @@ export declare const makeMessage: <A, I>(payloadSchema: S.Codec<A, I>) => import
|
|
|
101
101
|
}>;
|
|
102
102
|
};
|
|
103
103
|
readonly Dismissed: {
|
|
104
|
-
|
|
104
|
+
entryId: S.String;
|
|
105
105
|
};
|
|
106
106
|
readonly DismissedAll: {};
|
|
107
107
|
readonly CompletedWaitBeforeDismissal: {
|
|
108
|
-
|
|
109
|
-
|
|
108
|
+
entryId: S.String;
|
|
109
|
+
version: S.Number;
|
|
110
110
|
};
|
|
111
111
|
readonly HoveredEntry: {
|
|
112
|
-
|
|
112
|
+
entryId: S.String;
|
|
113
113
|
};
|
|
114
114
|
readonly LeftEntry: {
|
|
115
|
-
|
|
115
|
+
entryId: S.String;
|
|
116
116
|
};
|
|
117
117
|
readonly GotAnimationMessage: {
|
|
118
|
-
|
|
119
|
-
|
|
118
|
+
entryId: S.String;
|
|
119
|
+
message: import("foldkit/message").MessageUnion<{
|
|
120
120
|
readonly Showed: {};
|
|
121
121
|
readonly Hid: {};
|
|
122
122
|
readonly CompletedWaitForPaint: {};
|
|
@@ -127,7 +127,7 @@ export declare const makeMessage: <A, I>(payloadSchema: S.Codec<A, I>) => import
|
|
|
127
127
|
/** Factory for the union of out-messages the toast component can produce. */
|
|
128
128
|
export declare const makeOutMessage: <A, I>(payloadSchema: S.Codec<A, I>) => import("foldkit/message").MessageUnion<{
|
|
129
129
|
readonly DismissedToast: {
|
|
130
|
-
|
|
130
|
+
payload: S.Codec<A, I, never, never>;
|
|
131
131
|
};
|
|
132
132
|
}>;
|
|
133
133
|
/** Configuration for creating a toast container model. `defaultDuration` is
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/toast/schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,IAAI,CAAC,EAAE,MAAM,QAAQ,CAAA;AAU9C;;;;kDAIkD;AAClD,eAAO,MAAM,OAAO,8DAAsD,CAAA;AAC1E,MAAM,MAAM,OAAO,GAAG,OAAO,OAAO,CAAC,IAAI,CAAA;AAIzC,gFAAgF;AAChF,eAAO,MAAM,QAAQ,wGAOnB,CAAA;AACF,MAAM,MAAM,QAAQ,GAAG,OAAO,QAAQ,CAAC,IAAI,CAAA;AAI3C;;;;;4BAK4B;AAC5B,eAAO,MAAM,SAAS,GAAI,CAAC,EAAE,CAAC,
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/toast/schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,IAAI,CAAC,EAAE,MAAM,QAAQ,CAAA;AAU9C;;;;kDAIkD;AAClD,eAAO,MAAM,OAAO,8DAAsD,CAAA;AAC1E,MAAM,MAAM,OAAO,GAAG,OAAO,OAAO,CAAC,IAAI,CAAA;AAIzC,gFAAgF;AAChF,eAAO,MAAM,QAAQ,wGAOnB,CAAA;AACF,MAAM,MAAM,QAAQ,GAAG,OAAO,QAAQ,CAAC,IAAI,CAAA;AAI3C;;;;;4BAK4B;AAC5B,eAAO,MAAM,SAAS,GAAI,CAAC,EAAE,CAAC,iBAAiB,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC;;;;;;;;;;;;EASxD,CAAA;AAIJ;;;;wCAIwC;AACxC,eAAO,MAAM,SAAS,GAAI,CAAC,EAAE,CAAC,iBAAiB,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC;;;;;;;;;;;;;;;;;EAMxD,CAAA;AAIJ,+EAA+E;AAC/E,eAAO,MAAM,OAAO;;QACL,OAAO;;;;QAGlB,OAAO;QACP,OAAO;;;QAEO,OAAO;;;QACV,OAAO;;;QAElB,OAAO;QACP,OAAO;;;;;;;EAET,CAAA;AAEF,MAAM,MAAM,SAAS,GAAG,OAAO,OAAO,CAAC,SAAS,CAAC,IAAI,CAAA;AACrD,MAAM,MAAM,YAAY,GAAG,OAAO,OAAO,CAAC,YAAY,CAAC,IAAI,CAAA;AAC3D,MAAM,MAAM,4BAA4B,GACtC,OAAO,OAAO,CAAC,4BAA4B,CAAC,IAAI,CAAA;AAClD,MAAM,MAAM,YAAY,GAAG,OAAO,OAAO,CAAC,YAAY,CAAC,IAAI,CAAA;AAC3D,MAAM,MAAM,SAAS,GAAG,OAAO,OAAO,CAAC,SAAS,CAAC,IAAI,CAAA;AACrD,MAAM,MAAM,mBAAmB,GAAG,OAAO,OAAO,CAAC,mBAAmB,CAAC,IAAI,CAAA;AAEzE,6EAA6E;AAC7E,eAAO,MAAM,WAAW,GAAI,CAAC,EAAE,CAAC,iBAAiB,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC;;QAEjD,KAAK;;;;;;;;;;;;;;;QACD,OAAO;;;;QAGlB,OAAO;QACP,OAAO;;;QAEO,OAAO;;;QACV,OAAO;;;QAElB,OAAO;QACP,OAAO;;;;;;;EAET,CAAA;AAEJ,6EAA6E;AAC7E,eAAO,MAAM,cAAc,GAAI,CAAC,EAAE,CAAC,iBAAiB,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC;;QACxB,OAAO;;EAAoB,CAAA;AAIpE;;;mCAGmC;AACnC,MAAM,MAAM,UAAU,GAAG,QAAQ,CAAC;IAChC,EAAE,EAAE,MAAM,CAAA;IACV,eAAe,CAAC,EAAE,QAAQ,CAAC,KAAK,CAAA;CACjC,CAAC,CAAA;AAEF,eAAO,MAAM,gBAAgB,mBAAsB,CAAA"}
|
package/dist/toast/test.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"test.d.ts","sourceRoot":"","sources":["../../src/toast/test.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,eAAe,CAAA;AAUtC;;;2BAG2B;AAC3B,MAAM,MAAM,eAAe,GAAG,QAAQ,CAAC;IACrC,OAAO,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,MAAM,CAAA;CACjB,CAAC,CAAA;AAIF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,eAAO,MAAM,UAAU,
|
|
1
|
+
{"version":3,"file":"test.d.ts","sourceRoot":"","sources":["../../src/toast/test.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,eAAe,CAAA;AAUtC;;;2BAG2B;AAC3B,MAAM,MAAM,eAAe,GAAG,QAAQ,CAAC;IACrC,OAAO,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,MAAM,CAAA;CACjB,CAAC,CAAA;AAIF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,eAAO,MAAM,UAAU,0BAGpB,eAAe,iKAUf,CAAA"}
|
package/dist/toast/update.d.ts
CHANGED
|
@@ -80,22 +80,22 @@ export declare const makeRuntime: <A, I>(payloadSchema: S.Codec<A, I>) => {
|
|
|
80
80
|
}>;
|
|
81
81
|
};
|
|
82
82
|
readonly Dismissed: {
|
|
83
|
-
|
|
83
|
+
entryId: S.String;
|
|
84
84
|
};
|
|
85
85
|
readonly DismissedAll: {};
|
|
86
86
|
readonly CompletedWaitBeforeDismissal: {
|
|
87
|
-
|
|
88
|
-
|
|
87
|
+
entryId: S.String;
|
|
88
|
+
version: S.Number;
|
|
89
89
|
};
|
|
90
90
|
readonly HoveredEntry: {
|
|
91
|
-
|
|
91
|
+
entryId: S.String;
|
|
92
92
|
};
|
|
93
93
|
readonly LeftEntry: {
|
|
94
|
-
|
|
94
|
+
entryId: S.String;
|
|
95
95
|
};
|
|
96
96
|
readonly GotAnimationMessage: {
|
|
97
|
-
|
|
98
|
-
|
|
97
|
+
entryId: S.String;
|
|
98
|
+
message: import("foldkit/message").MessageUnion<{
|
|
99
99
|
readonly Showed: {};
|
|
100
100
|
readonly Hid: {};
|
|
101
101
|
readonly CompletedWaitForPaint: {};
|
|
@@ -135,7 +135,7 @@ export declare const makeRuntime: <A, I>(payloadSchema: S.Codec<A, I>) => {
|
|
|
135
135
|
readonly animation: {
|
|
136
136
|
readonly id: string;
|
|
137
137
|
readonly isShowing: boolean;
|
|
138
|
-
readonly transitionState: "
|
|
138
|
+
readonly transitionState: "EnterAnimating" | "EnterStart" | "Idle" | "LeaveAnimating" | "LeaveStart";
|
|
139
139
|
};
|
|
140
140
|
readonly maybeDuration: Option.Option<Duration.Duration>;
|
|
141
141
|
readonly pendingDismissVersion: number;
|
|
@@ -153,7 +153,7 @@ export declare const makeRuntime: <A, I>(payloadSchema: S.Codec<A, I>) => {
|
|
|
153
153
|
readonly animation: {
|
|
154
154
|
readonly id: string;
|
|
155
155
|
readonly isShowing: boolean;
|
|
156
|
-
readonly transitionState: "
|
|
156
|
+
readonly transitionState: "EnterAnimating" | "EnterStart" | "Idle" | "LeaveAnimating" | "LeaveStart";
|
|
157
157
|
};
|
|
158
158
|
readonly maybeDuration: Option.Option<Duration.Duration>;
|
|
159
159
|
readonly pendingDismissVersion: number;
|
|
@@ -162,47 +162,47 @@ export declare const makeRuntime: <A, I>(payloadSchema: S.Codec<A, I>) => {
|
|
|
162
162
|
}[];
|
|
163
163
|
readonly nextEntryKey: number;
|
|
164
164
|
}, message: {
|
|
165
|
-
readonly _tag: "
|
|
166
|
-
readonly
|
|
167
|
-
|
|
168
|
-
readonly
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
readonly
|
|
165
|
+
readonly _tag: "Added";
|
|
166
|
+
readonly entry: {
|
|
167
|
+
readonly id: string;
|
|
168
|
+
readonly variant: "Error" | "Info" | "Success" | "Warning";
|
|
169
|
+
readonly animation: {
|
|
170
|
+
readonly id: string;
|
|
171
|
+
readonly isShowing: boolean;
|
|
172
|
+
readonly transitionState: "EnterAnimating" | "EnterStart" | "Idle" | "LeaveAnimating" | "LeaveStart";
|
|
173
|
+
};
|
|
174
|
+
readonly maybeDuration: Option.Option<Duration.Duration>;
|
|
175
|
+
readonly pendingDismissVersion: number;
|
|
176
|
+
readonly isHovered: boolean;
|
|
177
|
+
readonly payload: A;
|
|
175
178
|
};
|
|
179
|
+
} | {
|
|
180
|
+
readonly _tag: "CompletedWaitBeforeDismissal";
|
|
181
|
+
readonly entryId: string;
|
|
182
|
+
readonly version: number;
|
|
176
183
|
} | {
|
|
177
184
|
readonly _tag: "Dismissed";
|
|
178
185
|
readonly entryId: string;
|
|
179
186
|
} | {
|
|
180
187
|
readonly _tag: "DismissedAll";
|
|
181
188
|
} | {
|
|
182
|
-
readonly _tag: "
|
|
189
|
+
readonly _tag: "GotAnimationMessage";
|
|
183
190
|
readonly entryId: string;
|
|
184
|
-
readonly
|
|
191
|
+
readonly message: {
|
|
192
|
+
readonly _tag: "CompletedWaitForPaint";
|
|
193
|
+
} | {
|
|
194
|
+
readonly _tag: "EndedAnimation";
|
|
195
|
+
} | {
|
|
196
|
+
readonly _tag: "Hid";
|
|
197
|
+
} | {
|
|
198
|
+
readonly _tag: "Showed";
|
|
199
|
+
};
|
|
185
200
|
} | {
|
|
186
201
|
readonly _tag: "HoveredEntry";
|
|
187
202
|
readonly entryId: string;
|
|
188
203
|
} | {
|
|
189
204
|
readonly _tag: "LeftEntry";
|
|
190
205
|
readonly entryId: string;
|
|
191
|
-
} | {
|
|
192
|
-
readonly _tag: "Added";
|
|
193
|
-
readonly entry: {
|
|
194
|
-
readonly id: string;
|
|
195
|
-
readonly variant: "Error" | "Info" | "Success" | "Warning";
|
|
196
|
-
readonly animation: {
|
|
197
|
-
readonly id: string;
|
|
198
|
-
readonly isShowing: boolean;
|
|
199
|
-
readonly transitionState: "Idle" | "EnterStart" | "EnterAnimating" | "LeaveStart" | "LeaveAnimating";
|
|
200
|
-
};
|
|
201
|
-
readonly maybeDuration: Option.Option<Duration.Duration>;
|
|
202
|
-
readonly pendingDismissVersion: number;
|
|
203
|
-
readonly isHovered: boolean;
|
|
204
|
-
readonly payload: A;
|
|
205
|
-
};
|
|
206
206
|
}) => Readonly<{
|
|
207
207
|
model: {
|
|
208
208
|
readonly id: string;
|
|
@@ -213,7 +213,7 @@ export declare const makeRuntime: <A, I>(payloadSchema: S.Codec<A, I>) => {
|
|
|
213
213
|
readonly animation: {
|
|
214
214
|
readonly id: string;
|
|
215
215
|
readonly isShowing: boolean;
|
|
216
|
-
readonly transitionState: "
|
|
216
|
+
readonly transitionState: "EnterAnimating" | "EnterStart" | "Idle" | "LeaveAnimating" | "LeaveStart";
|
|
217
217
|
};
|
|
218
218
|
readonly maybeDuration: Option.Option<Duration.Duration>;
|
|
219
219
|
readonly pendingDismissVersion: number;
|
|
@@ -223,47 +223,47 @@ export declare const makeRuntime: <A, I>(payloadSchema: S.Codec<A, I>) => {
|
|
|
223
223
|
readonly nextEntryKey: number;
|
|
224
224
|
};
|
|
225
225
|
commands?: Update.Commands<{
|
|
226
|
-
readonly _tag: "
|
|
227
|
-
readonly
|
|
228
|
-
|
|
229
|
-
readonly
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
readonly
|
|
226
|
+
readonly _tag: "Added";
|
|
227
|
+
readonly entry: {
|
|
228
|
+
readonly id: string;
|
|
229
|
+
readonly variant: "Error" | "Info" | "Success" | "Warning";
|
|
230
|
+
readonly animation: {
|
|
231
|
+
readonly id: string;
|
|
232
|
+
readonly isShowing: boolean;
|
|
233
|
+
readonly transitionState: "EnterAnimating" | "EnterStart" | "Idle" | "LeaveAnimating" | "LeaveStart";
|
|
234
|
+
};
|
|
235
|
+
readonly maybeDuration: Option.Option<Duration.Duration>;
|
|
236
|
+
readonly pendingDismissVersion: number;
|
|
237
|
+
readonly isHovered: boolean;
|
|
238
|
+
readonly payload: A;
|
|
236
239
|
};
|
|
240
|
+
} | {
|
|
241
|
+
readonly _tag: "CompletedWaitBeforeDismissal";
|
|
242
|
+
readonly entryId: string;
|
|
243
|
+
readonly version: number;
|
|
237
244
|
} | {
|
|
238
245
|
readonly _tag: "Dismissed";
|
|
239
246
|
readonly entryId: string;
|
|
240
247
|
} | {
|
|
241
248
|
readonly _tag: "DismissedAll";
|
|
242
249
|
} | {
|
|
243
|
-
readonly _tag: "
|
|
250
|
+
readonly _tag: "GotAnimationMessage";
|
|
244
251
|
readonly entryId: string;
|
|
245
|
-
readonly
|
|
252
|
+
readonly message: {
|
|
253
|
+
readonly _tag: "CompletedWaitForPaint";
|
|
254
|
+
} | {
|
|
255
|
+
readonly _tag: "EndedAnimation";
|
|
256
|
+
} | {
|
|
257
|
+
readonly _tag: "Hid";
|
|
258
|
+
} | {
|
|
259
|
+
readonly _tag: "Showed";
|
|
260
|
+
};
|
|
246
261
|
} | {
|
|
247
262
|
readonly _tag: "HoveredEntry";
|
|
248
263
|
readonly entryId: string;
|
|
249
264
|
} | {
|
|
250
265
|
readonly _tag: "LeftEntry";
|
|
251
266
|
readonly entryId: string;
|
|
252
|
-
} | {
|
|
253
|
-
readonly _tag: "Added";
|
|
254
|
-
readonly entry: {
|
|
255
|
-
readonly id: string;
|
|
256
|
-
readonly variant: "Error" | "Info" | "Success" | "Warning";
|
|
257
|
-
readonly animation: {
|
|
258
|
-
readonly id: string;
|
|
259
|
-
readonly isShowing: boolean;
|
|
260
|
-
readonly transitionState: "Idle" | "EnterStart" | "EnterAnimating" | "LeaveStart" | "LeaveAnimating";
|
|
261
|
-
};
|
|
262
|
-
readonly maybeDuration: Option.Option<Duration.Duration>;
|
|
263
|
-
readonly pendingDismissVersion: number;
|
|
264
|
-
readonly isHovered: boolean;
|
|
265
|
-
readonly payload: A;
|
|
266
|
-
};
|
|
267
267
|
}, never>;
|
|
268
268
|
outMessage?: {
|
|
269
269
|
readonly _tag: "DismissedToast";
|
|
@@ -279,7 +279,7 @@ export declare const makeRuntime: <A, I>(payloadSchema: S.Codec<A, I>) => {
|
|
|
279
279
|
readonly animation: {
|
|
280
280
|
readonly id: string;
|
|
281
281
|
readonly isShowing: boolean;
|
|
282
|
-
readonly transitionState: "
|
|
282
|
+
readonly transitionState: "EnterAnimating" | "EnterStart" | "Idle" | "LeaveAnimating" | "LeaveStart";
|
|
283
283
|
};
|
|
284
284
|
readonly maybeDuration: Option.Option<Duration.Duration>;
|
|
285
285
|
readonly pendingDismissVersion: number;
|
|
@@ -297,7 +297,7 @@ export declare const makeRuntime: <A, I>(payloadSchema: S.Codec<A, I>) => {
|
|
|
297
297
|
readonly animation: {
|
|
298
298
|
readonly id: string;
|
|
299
299
|
readonly isShowing: boolean;
|
|
300
|
-
readonly transitionState: "
|
|
300
|
+
readonly transitionState: "EnterAnimating" | "EnterStart" | "Idle" | "LeaveAnimating" | "LeaveStart";
|
|
301
301
|
};
|
|
302
302
|
readonly maybeDuration: Option.Option<Duration.Duration>;
|
|
303
303
|
readonly pendingDismissVersion: number;
|
|
@@ -307,47 +307,47 @@ export declare const makeRuntime: <A, I>(payloadSchema: S.Codec<A, I>) => {
|
|
|
307
307
|
readonly nextEntryKey: number;
|
|
308
308
|
};
|
|
309
309
|
commands?: Update.Commands<{
|
|
310
|
-
readonly _tag: "
|
|
311
|
-
readonly
|
|
312
|
-
|
|
313
|
-
readonly
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
readonly
|
|
310
|
+
readonly _tag: "Added";
|
|
311
|
+
readonly entry: {
|
|
312
|
+
readonly id: string;
|
|
313
|
+
readonly variant: "Error" | "Info" | "Success" | "Warning";
|
|
314
|
+
readonly animation: {
|
|
315
|
+
readonly id: string;
|
|
316
|
+
readonly isShowing: boolean;
|
|
317
|
+
readonly transitionState: "EnterAnimating" | "EnterStart" | "Idle" | "LeaveAnimating" | "LeaveStart";
|
|
318
|
+
};
|
|
319
|
+
readonly maybeDuration: Option.Option<Duration.Duration>;
|
|
320
|
+
readonly pendingDismissVersion: number;
|
|
321
|
+
readonly isHovered: boolean;
|
|
322
|
+
readonly payload: A;
|
|
320
323
|
};
|
|
324
|
+
} | {
|
|
325
|
+
readonly _tag: "CompletedWaitBeforeDismissal";
|
|
326
|
+
readonly entryId: string;
|
|
327
|
+
readonly version: number;
|
|
321
328
|
} | {
|
|
322
329
|
readonly _tag: "Dismissed";
|
|
323
330
|
readonly entryId: string;
|
|
324
331
|
} | {
|
|
325
332
|
readonly _tag: "DismissedAll";
|
|
326
333
|
} | {
|
|
327
|
-
readonly _tag: "
|
|
334
|
+
readonly _tag: "GotAnimationMessage";
|
|
328
335
|
readonly entryId: string;
|
|
329
|
-
readonly
|
|
336
|
+
readonly message: {
|
|
337
|
+
readonly _tag: "CompletedWaitForPaint";
|
|
338
|
+
} | {
|
|
339
|
+
readonly _tag: "EndedAnimation";
|
|
340
|
+
} | {
|
|
341
|
+
readonly _tag: "Hid";
|
|
342
|
+
} | {
|
|
343
|
+
readonly _tag: "Showed";
|
|
344
|
+
};
|
|
330
345
|
} | {
|
|
331
346
|
readonly _tag: "HoveredEntry";
|
|
332
347
|
readonly entryId: string;
|
|
333
348
|
} | {
|
|
334
349
|
readonly _tag: "LeftEntry";
|
|
335
350
|
readonly entryId: string;
|
|
336
|
-
} | {
|
|
337
|
-
readonly _tag: "Added";
|
|
338
|
-
readonly entry: {
|
|
339
|
-
readonly id: string;
|
|
340
|
-
readonly variant: "Error" | "Info" | "Success" | "Warning";
|
|
341
|
-
readonly animation: {
|
|
342
|
-
readonly id: string;
|
|
343
|
-
readonly isShowing: boolean;
|
|
344
|
-
readonly transitionState: "Idle" | "EnterStart" | "EnterAnimating" | "LeaveStart" | "LeaveAnimating";
|
|
345
|
-
};
|
|
346
|
-
readonly maybeDuration: Option.Option<Duration.Duration>;
|
|
347
|
-
readonly pendingDismissVersion: number;
|
|
348
|
-
readonly isHovered: boolean;
|
|
349
|
-
readonly payload: A;
|
|
350
|
-
};
|
|
351
351
|
}, never>;
|
|
352
352
|
outMessage?: {
|
|
353
353
|
readonly _tag: "DismissedToast";
|
|
@@ -363,7 +363,7 @@ export declare const makeRuntime: <A, I>(payloadSchema: S.Codec<A, I>) => {
|
|
|
363
363
|
readonly animation: {
|
|
364
364
|
readonly id: string;
|
|
365
365
|
readonly isShowing: boolean;
|
|
366
|
-
readonly transitionState: "
|
|
366
|
+
readonly transitionState: "EnterAnimating" | "EnterStart" | "Idle" | "LeaveAnimating" | "LeaveStart";
|
|
367
367
|
};
|
|
368
368
|
readonly maybeDuration: Option.Option<Duration.Duration>;
|
|
369
369
|
readonly pendingDismissVersion: number;
|
|
@@ -381,7 +381,7 @@ export declare const makeRuntime: <A, I>(payloadSchema: S.Codec<A, I>) => {
|
|
|
381
381
|
readonly animation: {
|
|
382
382
|
readonly id: string;
|
|
383
383
|
readonly isShowing: boolean;
|
|
384
|
-
readonly transitionState: "
|
|
384
|
+
readonly transitionState: "EnterAnimating" | "EnterStart" | "Idle" | "LeaveAnimating" | "LeaveStart";
|
|
385
385
|
};
|
|
386
386
|
readonly maybeDuration: Option.Option<Duration.Duration>;
|
|
387
387
|
readonly pendingDismissVersion: number;
|
|
@@ -391,47 +391,47 @@ export declare const makeRuntime: <A, I>(payloadSchema: S.Codec<A, I>) => {
|
|
|
391
391
|
readonly nextEntryKey: number;
|
|
392
392
|
};
|
|
393
393
|
commands?: Update.Commands<{
|
|
394
|
-
readonly _tag: "
|
|
395
|
-
readonly
|
|
396
|
-
|
|
397
|
-
readonly
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
readonly
|
|
394
|
+
readonly _tag: "Added";
|
|
395
|
+
readonly entry: {
|
|
396
|
+
readonly id: string;
|
|
397
|
+
readonly variant: "Error" | "Info" | "Success" | "Warning";
|
|
398
|
+
readonly animation: {
|
|
399
|
+
readonly id: string;
|
|
400
|
+
readonly isShowing: boolean;
|
|
401
|
+
readonly transitionState: "EnterAnimating" | "EnterStart" | "Idle" | "LeaveAnimating" | "LeaveStart";
|
|
402
|
+
};
|
|
403
|
+
readonly maybeDuration: Option.Option<Duration.Duration>;
|
|
404
|
+
readonly pendingDismissVersion: number;
|
|
405
|
+
readonly isHovered: boolean;
|
|
406
|
+
readonly payload: A;
|
|
404
407
|
};
|
|
408
|
+
} | {
|
|
409
|
+
readonly _tag: "CompletedWaitBeforeDismissal";
|
|
410
|
+
readonly entryId: string;
|
|
411
|
+
readonly version: number;
|
|
405
412
|
} | {
|
|
406
413
|
readonly _tag: "Dismissed";
|
|
407
414
|
readonly entryId: string;
|
|
408
415
|
} | {
|
|
409
416
|
readonly _tag: "DismissedAll";
|
|
410
417
|
} | {
|
|
411
|
-
readonly _tag: "
|
|
418
|
+
readonly _tag: "GotAnimationMessage";
|
|
412
419
|
readonly entryId: string;
|
|
413
|
-
readonly
|
|
420
|
+
readonly message: {
|
|
421
|
+
readonly _tag: "CompletedWaitForPaint";
|
|
422
|
+
} | {
|
|
423
|
+
readonly _tag: "EndedAnimation";
|
|
424
|
+
} | {
|
|
425
|
+
readonly _tag: "Hid";
|
|
426
|
+
} | {
|
|
427
|
+
readonly _tag: "Showed";
|
|
428
|
+
};
|
|
414
429
|
} | {
|
|
415
430
|
readonly _tag: "HoveredEntry";
|
|
416
431
|
readonly entryId: string;
|
|
417
432
|
} | {
|
|
418
433
|
readonly _tag: "LeftEntry";
|
|
419
434
|
readonly entryId: string;
|
|
420
|
-
} | {
|
|
421
|
-
readonly _tag: "Added";
|
|
422
|
-
readonly entry: {
|
|
423
|
-
readonly id: string;
|
|
424
|
-
readonly variant: "Error" | "Info" | "Success" | "Warning";
|
|
425
|
-
readonly animation: {
|
|
426
|
-
readonly id: string;
|
|
427
|
-
readonly isShowing: boolean;
|
|
428
|
-
readonly transitionState: "Idle" | "EnterStart" | "EnterAnimating" | "LeaveStart" | "LeaveAnimating";
|
|
429
|
-
};
|
|
430
|
-
readonly maybeDuration: Option.Option<Duration.Duration>;
|
|
431
|
-
readonly pendingDismissVersion: number;
|
|
432
|
-
readonly isHovered: boolean;
|
|
433
|
-
readonly payload: A;
|
|
434
|
-
};
|
|
435
435
|
}, never>;
|
|
436
436
|
outMessage?: {
|
|
437
437
|
readonly _tag: "DismissedToast";
|
|
@@ -447,7 +447,7 @@ export declare const makeRuntime: <A, I>(payloadSchema: S.Codec<A, I>) => {
|
|
|
447
447
|
readonly animation: {
|
|
448
448
|
readonly id: string;
|
|
449
449
|
readonly isShowing: boolean;
|
|
450
|
-
readonly transitionState: "
|
|
450
|
+
readonly transitionState: "EnterAnimating" | "EnterStart" | "Idle" | "LeaveAnimating" | "LeaveStart";
|
|
451
451
|
};
|
|
452
452
|
readonly maybeDuration: Option.Option<Duration.Duration>;
|
|
453
453
|
readonly pendingDismissVersion: number;
|
|
@@ -465,7 +465,7 @@ export declare const makeRuntime: <A, I>(payloadSchema: S.Codec<A, I>) => {
|
|
|
465
465
|
readonly animation: {
|
|
466
466
|
readonly id: string;
|
|
467
467
|
readonly isShowing: boolean;
|
|
468
|
-
readonly transitionState: "
|
|
468
|
+
readonly transitionState: "EnterAnimating" | "EnterStart" | "Idle" | "LeaveAnimating" | "LeaveStart";
|
|
469
469
|
};
|
|
470
470
|
readonly maybeDuration: Option.Option<Duration.Duration>;
|
|
471
471
|
readonly pendingDismissVersion: number;
|
|
@@ -475,47 +475,47 @@ export declare const makeRuntime: <A, I>(payloadSchema: S.Codec<A, I>) => {
|
|
|
475
475
|
readonly nextEntryKey: number;
|
|
476
476
|
};
|
|
477
477
|
commands?: Update.Commands<{
|
|
478
|
-
readonly _tag: "
|
|
479
|
-
readonly
|
|
480
|
-
|
|
481
|
-
readonly
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
readonly
|
|
478
|
+
readonly _tag: "Added";
|
|
479
|
+
readonly entry: {
|
|
480
|
+
readonly id: string;
|
|
481
|
+
readonly variant: "Error" | "Info" | "Success" | "Warning";
|
|
482
|
+
readonly animation: {
|
|
483
|
+
readonly id: string;
|
|
484
|
+
readonly isShowing: boolean;
|
|
485
|
+
readonly transitionState: "EnterAnimating" | "EnterStart" | "Idle" | "LeaveAnimating" | "LeaveStart";
|
|
486
|
+
};
|
|
487
|
+
readonly maybeDuration: Option.Option<Duration.Duration>;
|
|
488
|
+
readonly pendingDismissVersion: number;
|
|
489
|
+
readonly isHovered: boolean;
|
|
490
|
+
readonly payload: A;
|
|
488
491
|
};
|
|
492
|
+
} | {
|
|
493
|
+
readonly _tag: "CompletedWaitBeforeDismissal";
|
|
494
|
+
readonly entryId: string;
|
|
495
|
+
readonly version: number;
|
|
489
496
|
} | {
|
|
490
497
|
readonly _tag: "Dismissed";
|
|
491
498
|
readonly entryId: string;
|
|
492
499
|
} | {
|
|
493
500
|
readonly _tag: "DismissedAll";
|
|
494
501
|
} | {
|
|
495
|
-
readonly _tag: "
|
|
502
|
+
readonly _tag: "GotAnimationMessage";
|
|
496
503
|
readonly entryId: string;
|
|
497
|
-
readonly
|
|
504
|
+
readonly message: {
|
|
505
|
+
readonly _tag: "CompletedWaitForPaint";
|
|
506
|
+
} | {
|
|
507
|
+
readonly _tag: "EndedAnimation";
|
|
508
|
+
} | {
|
|
509
|
+
readonly _tag: "Hid";
|
|
510
|
+
} | {
|
|
511
|
+
readonly _tag: "Showed";
|
|
512
|
+
};
|
|
498
513
|
} | {
|
|
499
514
|
readonly _tag: "HoveredEntry";
|
|
500
515
|
readonly entryId: string;
|
|
501
516
|
} | {
|
|
502
517
|
readonly _tag: "LeftEntry";
|
|
503
518
|
readonly entryId: string;
|
|
504
|
-
} | {
|
|
505
|
-
readonly _tag: "Added";
|
|
506
|
-
readonly entry: {
|
|
507
|
-
readonly id: string;
|
|
508
|
-
readonly variant: "Error" | "Info" | "Success" | "Warning";
|
|
509
|
-
readonly animation: {
|
|
510
|
-
readonly id: string;
|
|
511
|
-
readonly isShowing: boolean;
|
|
512
|
-
readonly transitionState: "Idle" | "EnterStart" | "EnterAnimating" | "LeaveStart" | "LeaveAnimating";
|
|
513
|
-
};
|
|
514
|
-
readonly maybeDuration: Option.Option<Duration.Duration>;
|
|
515
|
-
readonly pendingDismissVersion: number;
|
|
516
|
-
readonly isHovered: boolean;
|
|
517
|
-
readonly payload: A;
|
|
518
|
-
};
|
|
519
519
|
}, never>;
|
|
520
520
|
outMessage?: {
|
|
521
521
|
readonly _tag: "DismissedToast";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update.d.ts","sourceRoot":"","sources":["../../src/toast/update.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,QAAQ,EACR,MAAM,EAGN,MAAM,EACN,MAAM,IAAI,CAAC,EAEZ,MAAM,QAAQ,CAAA;AACf,OAAO,KAAK,OAAO,MAAM,iBAAiB,CAAA;AAE1C,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAA;AAaxC,OAAO,EAEL,KAAK,UAAU,EAEf,KAAK,OAAO,EAKb,MAAM,aAAa,CAAA;AAIpB;;oDAEoD;AACpD,MAAM,MAAM,SAAS,CAAC,CAAC,IAAI,QAAQ,CAAC;IAClC,OAAO,EAAE,CAAC,CAAA;IACV,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,QAAQ,CAAC,EAAE,QAAQ,CAAC,KAAK,CAAA;IACzB,MAAM,CAAC,EAAE,OAAO,CAAA;CACjB,CAAC,CAAA;AAEF;;;eAGe;AACf,eAAO,MAAM,mBAAmB;;;;;;;;iBAa9B,CAAA;AAIF;;;;;;4EAM4E;AAC5E,eAAO,MAAM,WAAW,GAAI,CAAC,EAAE,CAAC,
|
|
1
|
+
{"version":3,"file":"update.d.ts","sourceRoot":"","sources":["../../src/toast/update.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,QAAQ,EACR,MAAM,EAGN,MAAM,EACN,MAAM,IAAI,CAAC,EAEZ,MAAM,QAAQ,CAAA;AACf,OAAO,KAAK,OAAO,MAAM,iBAAiB,CAAA;AAE1C,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAA;AAaxC,OAAO,EAEL,KAAK,UAAU,EAEf,KAAK,OAAO,EAKb,MAAM,aAAa,CAAA;AAIpB;;oDAEoD;AACpD,MAAM,MAAM,SAAS,CAAC,CAAC,IAAI,QAAQ,CAAC;IAClC,OAAO,EAAE,CAAC,CAAA;IACV,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,QAAQ,CAAC,EAAE,QAAQ,CAAC,KAAK,CAAA;IACzB,MAAM,CAAC,EAAE,OAAO,CAAA;CACjB,CAAC,CAAA;AAEF;;;eAGe;AACf,eAAO,MAAM,mBAAmB;;;;;;;;iBAa9B,CAAA;AAIF;;;;;;4EAM4E;AAC5E,eAAO,MAAM,WAAW,GAAI,CAAC,EAAE,CAAC,iBAAiB,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BA8KtC,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAuHG,SAAS,CAAC,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gBAIP,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoB/C,CAAA"}
|
|
@@ -7,10 +7,10 @@ export declare const Message: import("foldkit/message").MessageUnion<{
|
|
|
7
7
|
readonly BlurredTrigger: {};
|
|
8
8
|
readonly PressedEscape: {};
|
|
9
9
|
readonly PressedPointerOnTrigger: {
|
|
10
|
-
|
|
10
|
+
pointerType: S.String;
|
|
11
11
|
};
|
|
12
12
|
readonly CompletedWaitBeforeShowing: {
|
|
13
|
-
|
|
13
|
+
version: S.Number;
|
|
14
14
|
};
|
|
15
15
|
readonly CompletedAnchorTooltip: {};
|
|
16
16
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"message.d.ts","sourceRoot":"","sources":["../../src/tooltip/message.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,IAAI,CAAC,EAAE,MAAM,QAAQ,CAAA;AAKpC,+DAA+D;AAC/D,eAAO,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"message.d.ts","sourceRoot":"","sources":["../../src/tooltip/message.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,IAAI,CAAC,EAAE,MAAM,QAAQ,CAAA;AAKpC,+DAA+D;AAC/D,eAAO,MAAM,OAAO;;;;;;;QAMS,WAAW;;;QACR,OAAO;;;EAErC,CAAA;AAEF,MAAM,MAAM,cAAc,GAAG,OAAO,OAAO,CAAC,cAAc,CAAC,IAAI,CAAA;AAC/D,MAAM,MAAM,WAAW,GAAG,OAAO,OAAO,CAAC,WAAW,CAAC,IAAI,CAAA;AACzD,MAAM,MAAM,cAAc,GAAG,OAAO,OAAO,CAAC,cAAc,CAAC,IAAI,CAAA;AAC/D,MAAM,MAAM,cAAc,GAAG,OAAO,OAAO,CAAC,cAAc,CAAC,IAAI,CAAA;AAC/D,MAAM,MAAM,aAAa,GAAG,OAAO,OAAO,CAAC,aAAa,CAAC,IAAI,CAAA;AAC7D,MAAM,MAAM,uBAAuB,GACjC,OAAO,OAAO,CAAC,uBAAuB,CAAC,IAAI,CAAA;AAE7C,MAAM,MAAM,OAAO,GAAG,OAAO,OAAO,CAAC,IAAI,CAAA;AAIzC,+DAA+D;AAC/D,eAAO,MAAM,UAAU;;;EAGrB,CAAA;AAEF,MAAM,MAAM,KAAK,GAAG,OAAO,UAAU,CAAC,KAAK,CAAC,IAAI,CAAA;AAChD,MAAM,MAAM,MAAM,GAAG,OAAO,UAAU,CAAC,MAAM,CAAC,IAAI,CAAA;AAClD,MAAM,MAAM,UAAU,GAAG,OAAO,UAAU,CAAC,IAAI,CAAA"}
|
|
@@ -103,23 +103,23 @@ export declare const view: import("foldkit/submodel").View<{
|
|
|
103
103
|
readonly pendingShowVersion: number;
|
|
104
104
|
readonly maybeLastPointerType: Option.Option<string>;
|
|
105
105
|
}, {
|
|
106
|
+
readonly _tag: "BlurredTrigger";
|
|
107
|
+
} | {
|
|
106
108
|
readonly _tag: "EnteredTrigger";
|
|
109
|
+
} | {
|
|
110
|
+
readonly _tag: "FocusedTrigger";
|
|
107
111
|
} | {
|
|
108
112
|
readonly _tag: "LeftTrigger";
|
|
109
113
|
} | {
|
|
110
|
-
readonly _tag: "
|
|
114
|
+
readonly _tag: "CompletedWaitBeforeShowing";
|
|
115
|
+
readonly version: number;
|
|
111
116
|
} | {
|
|
112
|
-
readonly _tag: "
|
|
117
|
+
readonly _tag: "CompletedAnchorTooltip";
|
|
113
118
|
} | {
|
|
114
119
|
readonly _tag: "PressedEscape";
|
|
115
120
|
} | {
|
|
116
121
|
readonly _tag: "PressedPointerOnTrigger";
|
|
117
122
|
readonly pointerType: string;
|
|
118
|
-
} | {
|
|
119
|
-
readonly _tag: "CompletedWaitBeforeShowing";
|
|
120
|
-
readonly version: number;
|
|
121
|
-
} | {
|
|
122
|
-
readonly _tag: "CompletedAnchorTooltip";
|
|
123
123
|
}, Readonly<{
|
|
124
124
|
anchor: AnchorConfig;
|
|
125
125
|
toView: (render: RenderInfo) => Html;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tooltip.d.ts","sourceRoot":"","sources":["../../src/tooltip/tooltip.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,QAAQ,EACR,MAAM,EAKN,MAAM,EAEN,MAAM,IAAI,CAAC,EAEZ,MAAM,QAAQ,CAAA;AACf,OAAO,KAAK,OAAO,MAAM,iBAAiB,CAAA;AAC1C,OAAO,EAAE,KAAK,cAAc,EAAE,KAAK,IAAI,EAAmB,MAAM,cAAc,CAAA;AAC9E,OAAO,KAAK,KAAK,MAAM,eAAe,CAAA;AAEtC,OAAO,EAAE,KAAK,OAAO,EAAc,MAAM,kBAAkB,CAAA;AAC3D,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAA;AAExC,OAAO,EAAE,YAAY,EAAe,MAAM,oBAAoB,CAAA;AAE9D,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AAIlD,8pBAA8pB;AAC9pB,eAAO,MAAM,KAAK;;;;;;;;;EAShB,CAAA;AAEF,MAAM,MAAM,KAAK,GAAG,OAAO,KAAK,CAAC,IAAI,CAAA;AAIrC;;;mCAGmC;AACnC,eAAO,MAAM,SAAS,
|
|
1
|
+
{"version":3,"file":"tooltip.d.ts","sourceRoot":"","sources":["../../src/tooltip/tooltip.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,QAAQ,EACR,MAAM,EAKN,MAAM,EAEN,MAAM,IAAI,CAAC,EAEZ,MAAM,QAAQ,CAAA;AACf,OAAO,KAAK,OAAO,MAAM,iBAAiB,CAAA;AAC1C,OAAO,EAAE,KAAK,cAAc,EAAE,KAAK,IAAI,EAAmB,MAAM,cAAc,CAAA;AAC9E,OAAO,KAAK,KAAK,MAAM,eAAe,CAAA;AAEtC,OAAO,EAAE,KAAK,OAAO,EAAc,MAAM,kBAAkB,CAAA;AAC3D,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAA;AAExC,OAAO,EAAE,YAAY,EAAe,MAAM,oBAAoB,CAAA;AAE9D,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AAIlD,8pBAA8pB;AAC9pB,eAAO,MAAM,KAAK;;;;;;;;;EAShB,CAAA;AAEF,MAAM,MAAM,KAAK,GAAG,OAAO,KAAK,CAAC,IAAI,CAAA;AAIrC;;;mCAGmC;AACnC,eAAO,MAAM,SAAS,OAAQ,MAAM,KAAG,MAAyB,CAAA;AAQhE,8DAA8D;AAC9D,MAAM,MAAM,UAAU,GAAG,QAAQ,CAAC;IAChC,EAAE,EAAE,MAAM,CAAA;IACV,SAAS,CAAC,EAAE,QAAQ,CAAC,KAAK,CAAA;CAC3B,CAAC,CAAA;AAEF,0EAA0E;AAC1E,eAAO,MAAM,IAAI,WAAY,UAAU,KAAG,KAYxC,CAAA;AAIF;oCACoC;AACpC,eAAO,MAAM,iBAAiB;;;;;;iBAO5B,CAAA;AAEF,sEAAsE;AACtE,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;EAiBxB,CAAA;AAkHF;;;uEAGuE;AACvE,eAAO,MAAM,MAAM,UACV,KAAK,WACH,OAAO,KACf,MAAM,CAAC,oBAAoB,CAAC,KAAK,EAAE,OAAO,EAAE,UAAU,CAQxD,CAAA;AAED;;wDAEwD;AACxD,eAAO,MAAM,gBAAgB,EAAE,OAAO,CAAC,KAAK,EAAE,QAAQ,CAAC,KAAK,CAI3D,CAAA;AAID;;;;;;;;;yCASyC;AACzC,MAAM,MAAM,UAAU,GAAG,QAAQ,CAAC;IAChC,OAAO,EAAE,aAAa,CAAC,cAAc,CAAC,CAAA;IACtC,KAAK,EAAE,aAAa,CAAC,cAAc,CAAC,CAAA;IACpC,SAAS,EAAE,OAAO,CAAA;CACnB,CAAC,CAAA;AAEF,qFAAqF;AACrF,MAAM,MAAM,UAAU,GAAG,QAAQ,CAAC;IAChC,MAAM,EAAE,YAAY,CAAA;IACpB,MAAM,EAAE,CAAC,MAAM,EAAE,UAAU,KAAK,IAAI,CAAA;IACpC,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,cAAc,CAAC,EAAE,MAAM,CAAA;CACxB,CAAC,CAAA;AAEF;;uEAEuE;AACvE,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAVP,YAAY;YACZ,CAAC,MAAM,EAAE,UAAU,KAAK,IAAI;iBACvB,OAAO;gBACR,MAAM;qBACD,MAAM;GAyExB,CAAA"}
|