foldkit 0.58.0 → 0.60.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/html/index.d.ts +3 -3
- package/dist/html/index.d.ts.map +1 -1
- package/dist/html/index.js +1 -1
- package/dist/test/apps/disabledButton.d.ts +2 -2
- package/dist/test/apps/resumeUpload.d.ts.map +1 -1
- package/dist/test/apps/resumeUpload.js +2 -2
- package/dist/test/query.d.ts +3 -1
- package/dist/test/query.d.ts.map +1 -1
- package/dist/test/query.js +65 -17
- package/dist/test/scene.d.ts.map +1 -1
- package/dist/ui/combobox/multi.d.ts +7 -4
- package/dist/ui/combobox/multi.d.ts.map +1 -1
- package/dist/ui/combobox/multi.js +3 -1
- package/dist/ui/combobox/multiPublic.d.ts +1 -1
- package/dist/ui/combobox/multiPublic.d.ts.map +1 -1
- package/dist/ui/combobox/multiPublic.js +1 -1
- package/dist/ui/combobox/public.d.ts +1 -1
- package/dist/ui/combobox/public.d.ts.map +1 -1
- package/dist/ui/combobox/public.js +1 -1
- package/dist/ui/combobox/shared.d.ts +3 -3
- package/dist/ui/combobox/shared.js +3 -3
- package/dist/ui/combobox/single.d.ts +8 -4
- package/dist/ui/combobox/single.d.ts.map +1 -1
- package/dist/ui/combobox/single.js +4 -1
- package/dist/ui/dialog/index.d.ts +1 -1
- package/dist/ui/dialog/index.js +2 -2
- package/dist/ui/listbox/multi.d.ts +7 -4
- package/dist/ui/listbox/multi.d.ts.map +1 -1
- package/dist/ui/listbox/multi.js +3 -1
- package/dist/ui/listbox/multiPublic.d.ts +1 -1
- package/dist/ui/listbox/multiPublic.d.ts.map +1 -1
- package/dist/ui/listbox/multiPublic.js +1 -1
- package/dist/ui/listbox/shared.d.ts +3 -3
- package/dist/ui/listbox/shared.js +2 -2
- package/dist/ui/listbox/single.d.ts +1 -1
- package/dist/ui/menu/index.d.ts +2 -2
- package/dist/ui/menu/index.js +2 -2
- package/dist/ui/popover/index.d.ts +2 -2
- package/dist/ui/popover/index.js +2 -2
- package/dist/ui/transition/index.d.ts +2 -2
- package/dist/ui/transition/index.d.ts.map +1 -1
- package/dist/ui/transition/index.js +2 -2
- package/dist/ui/transition/public.d.ts +1 -1
- package/dist/ui/transition/public.d.ts.map +1 -1
- package/dist/ui/transition/public.js +1 -1
- package/dist/ui/transition/schema.d.ts +3 -3
- package/dist/ui/transition/schema.d.ts.map +1 -1
- package/dist/ui/transition/schema.js +2 -2
- package/dist/ui/transition/update.js +1 -1
- package/package.json +1 -1
|
@@ -14,13 +14,13 @@ export const Model = S.Struct({
|
|
|
14
14
|
/** Sent when the transition should enter (become visible). Starts the enter animation sequence. */
|
|
15
15
|
export const Showed = m('Showed');
|
|
16
16
|
/** Sent when the transition should leave (become hidden). Starts the leave animation sequence. */
|
|
17
|
-
export const
|
|
17
|
+
export const Hid = m('Hid');
|
|
18
18
|
/** Sent internally when a double-rAF completes, advancing the transition to its animating phase. */
|
|
19
19
|
export const AdvancedTransitionFrame = m('AdvancedTransitionFrame');
|
|
20
20
|
/** Sent internally when all CSS transitions on the transition element have completed. */
|
|
21
21
|
export const EndedTransition = m('EndedTransition');
|
|
22
22
|
/** Union of all messages the transition component can produce. */
|
|
23
|
-
export const Message = S.Union(Showed,
|
|
23
|
+
export const Message = S.Union(Showed, Hid, AdvancedTransitionFrame, EndedTransition);
|
|
24
24
|
// OUT MESSAGE
|
|
25
25
|
/** Sent to the parent when the leave transition advances to LeaveAnimating. The parent is responsible for providing the command that detects when the leave animation completes (e.g. WaitForTransitions or a racing command). Use `defaultLeaveCommand` for the standard behavior. */
|
|
26
26
|
export const StartedLeaveAnimating = m('StartedLeaveAnimating');
|