diff --git a/modules/system/assets/ui/README.md b/modules/system/assets/ui/README.md index 3e1874f19..ea57de6a8 100644 --- a/modules/system/assets/ui/README.md +++ b/modules/system/assets/ui/README.md @@ -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 diff --git a/modules/system/assets/ui/docs/input.md b/modules/system/assets/ui/docs/input.md new file mode 100644 index 000000000..9f857feac --- /dev/null +++ b/modules/system/assets/ui/docs/input.md @@ -0,0 +1,7 @@ +# Input + +Scripts that manage user input events + +# Example + +... \ No newline at end of file diff --git a/modules/backend/assets/js/october.hotkey.js b/modules/system/assets/ui/js/input.hotkey.js similarity index 100% rename from modules/backend/assets/js/october.hotkey.js rename to modules/system/assets/ui/js/input.hotkey.js diff --git a/modules/system/assets/ui/js/input.js b/modules/system/assets/ui/js/input.js new file mode 100644 index 000000000..26893b31b --- /dev/null +++ b/modules/system/assets/ui/js/input.js @@ -0,0 +1,6 @@ +/* +=require input.monitor.js +=require input.hotkey.js +=require input.preset.js +=require input.trigger.js +*/ \ No newline at end of file diff --git a/modules/backend/assets/js/october.changemonitor.js b/modules/system/assets/ui/js/input.monitor.js similarity index 100% rename from modules/backend/assets/js/october.changemonitor.js rename to modules/system/assets/ui/js/input.monitor.js diff --git a/modules/backend/assets/js/october.inputpreset.js b/modules/system/assets/ui/js/input.preset.js similarity index 100% rename from modules/backend/assets/js/october.inputpreset.js rename to modules/system/assets/ui/js/input.preset.js diff --git a/modules/backend/assets/js/october.triggerapi.js b/modules/system/assets/ui/js/input.trigger.js similarity index 100% rename from modules/backend/assets/js/october.triggerapi.js rename to modules/system/assets/ui/js/input.trigger.js diff --git a/modules/system/assets/ui/storm.js b/modules/system/assets/ui/storm.js index 83f2e6112..8a0986edd 100644 --- a/modules/system/assets/ui/storm.js +++ b/modules/system/assets/ui/storm.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 */