Changes between Version 7 and Version 8 of UZ
- Timestamp:
- 2022.10.03 20:26:58 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified UZ
v7 v8 3 3 == TL;DR 4 4 5 Component: (link to UZ). Usage: (link to UZD).5 Git repository: [[https://github.com/js29a/uz]]. Just clone and look. 6 6 7 7 == Aim of this article … … 44 44 === idle 45 45 46 Shown when nothing is to be done. Slot props: 47 48 * `pick` - callback function for picking files. 49 46 50 === hover 51 52 Displayed when files are ready to drop. Has no scope props. 47 53 48 54 === wait 49 55 56 Used when some files are waiting for upload. Props: 57 58 * `start` - begin processing callback function, 59 * `reset` - reset component to //idle// state, 60 * `queue` - vector of files awaiting to upload. 61 50 62 === uploading 51 63 64 Shown when uploading files. Slot props: 65 66 * `progress` - uploaded items, 67 * `current` - files that are now processed, 68 * `queue` - remaining files, 69 * `errors` - error list, 70 * `abort` - abort function callback. 71 52 72 === done 73 74 Displayed upon completion. Props: 75 76 * `result` - results vector, 77 * `reset` - reset to //idle// state callback function. 53 78 54 79 === error … … 62 87 === start 63 88 64 === pick (TBD!)89 === pick 65 90 66 91 === reset