Move input based controls to "input" collection
changemonitor -> input.monitor hotkey -> input.hotkey inputpreset -> input.preset triggerapi -> input.trigger
This commit is contained in:
parent
9df5ac5ab0
commit
757b5dd935
|
|
@ -16,10 +16,24 @@ Components are a mixture of CSS and JavaScript (Controls), or can be solely styl
|
|||
|
||||
Each component has a *strong name*, for example the loading indicator has the name `loader`. For complex components, they can be broken in to child components, for example `loader.stripe`. Not all child components can be used independently of their parents, but this is certainly possible and a nice idea.
|
||||
|
||||
These Scripts are available:
|
||||
|
||||
- Foundation (`foundation`)
|
||||
- Drag (`drag`)
|
||||
- Input (`input`)
|
||||
|
||||
These Styles are available:
|
||||
|
||||
- Site (`site`)
|
||||
- Flag (`flag`)
|
||||
- Icon (`icon`)
|
||||
- Breadcrumb (`breadcrumb`)
|
||||
- Pagination (`pagination`)
|
||||
- Progress Bar (`progressbar`)
|
||||
|
||||
These Controls are available:
|
||||
|
||||
- Form (`form`)
|
||||
- Drag (`drag`)
|
||||
- List (`list`)
|
||||
- Button (`button`)
|
||||
- Chart (`chart`)
|
||||
|
|
@ -35,19 +49,6 @@ These Controls are available:
|
|||
- Popup (`popup`)
|
||||
- Tab (`tab`)
|
||||
|
||||
These Styles are available:
|
||||
|
||||
- Site (`site`)
|
||||
- Flag (`flag`)
|
||||
- Icon (`icon`)
|
||||
- Breadcrumb (`breadcrumb`)
|
||||
- Pagination (`pagination`)
|
||||
- Progress Bar (`progressbar`)
|
||||
|
||||
These Scripts are available:
|
||||
|
||||
- Foundation (`foundation`)
|
||||
|
||||
> *Note*: Documentation for each component can be found in the **docs/** directory.
|
||||
|
||||
## Building a collection
|
||||
|
|
|
|||
|
|
@ -0,0 +1,7 @@
|
|||
# Input
|
||||
|
||||
Scripts that manage user input events
|
||||
|
||||
# Example
|
||||
|
||||
...
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
/*
|
||||
=require input.monitor.js
|
||||
=require input.hotkey.js
|
||||
=require input.preset.js
|
||||
=require input.trigger.js
|
||||
*/
|
||||
|
|
@ -16,6 +16,7 @@
|
|||
=require js/popup.js
|
||||
=require js/chart.js
|
||||
=require js/list.js
|
||||
=require js/input.js
|
||||
=require js/drag.js
|
||||
=require js/tab.js
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue