Changes between Version 7 and Version 8 of UZ


Ignore:
Timestamp:
2022.10.03 20:26:58 (3 years ago)
Author:
js29a
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TabularUnified UZ

    v7 v8  
    33== TL;DR
    44
    5 Component: (link to UZ). Usage: (link to UZD).
     5Git repository: [[https://github.com/js29a/uz]]. Just clone and look.
    66
    77== Aim of this article
     
    4444=== idle
    4545
     46Shown when nothing is to be done. Slot props:
     47
     48* `pick` - callback function for picking files.
     49
    4650=== hover
     51
     52Displayed when files are ready to drop. Has no scope props.
    4753
    4854=== wait
    4955
     56Used 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
    5062=== uploading
    5163
     64Shown 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
    5272=== done
     73
     74Displayed upon completion. Props:
     75
     76* `result` - results vector,
     77* `reset` -  reset to //idle// state callback function.
    5378
    5479=== error
     
    6287=== start
    6388
    64 === pick (TBD!)
     89=== pick
    6590
    6691=== reset