├── .gitignore ├── CNAME ├── LICENSE.txt ├── _src_ ├── ax5core │ ├── index.html │ ├── info │ │ └── ax5-info.html │ ├── mustache │ │ └── ax5-mustache.html │ └── util │ │ └── ax5-util.html ├── ax5ui-autocomplete │ ├── _inc │ │ └── include.html │ ├── api │ │ └── index.html │ ├── demo │ │ ├── editable.html │ │ └── index.html │ └── index.html ├── ax5ui-binder │ ├── _inc │ │ └── include.html │ ├── api │ │ └── index.html │ ├── demo │ │ ├── index.html │ │ └── list.html │ └── index.html ├── ax5ui-calendar │ ├── _inc │ │ └── include.html │ ├── api │ │ └── index.html │ ├── demo │ │ ├── control.html │ │ ├── dimensions.html │ │ ├── event.html │ │ ├── index.html │ │ ├── lang.html │ │ ├── marker.html │ │ ├── mode.html │ │ ├── period.html │ │ ├── select.html │ │ ├── selectable.html │ │ └── startOfWeek.html │ └── index.html ├── ax5ui-combobox │ ├── _inc │ │ └── include.html │ ├── api │ │ └── index.html │ ├── demo │ │ ├── get-set-value.html │ │ ├── index.html │ │ ├── remove-icon.html │ │ ├── size.html │ │ └── theme.html │ └── index.html ├── ax5ui-dialog │ ├── _inc │ │ └── include.html │ ├── api │ │ └── index.html │ ├── demo │ │ ├── alert-custom.html │ │ ├── confirm-custom.html │ │ ├── index.html │ │ ├── prompt-custom.html │ │ └── theme.html │ └── index.html ├── ax5ui-docker │ ├── _inc │ │ └── include.html │ ├── api │ │ └── index.html │ ├── demo │ │ ├── index.html │ │ └── stack-panel.html │ └── index.html ├── ax5ui-formatter │ ├── _inc │ │ └── include.html │ ├── api │ │ └── index.html │ ├── demo │ │ ├── custom.html │ │ ├── date.html │ │ ├── index.html │ │ └── pattern-extend.html │ └── index.html ├── ax5ui-grid │ ├── _inc │ │ └── include.html │ ├── api │ │ └── index.html │ ├── demo │ │ ├── 1-formatter.html │ │ ├── 10-footsum.html │ │ ├── 11-collector.html │ │ ├── 12-body-grouping.html │ │ ├── 13-inline-edit.html │ │ ├── 14-paging.html │ │ ├── 15-excel-export.html │ │ ├── 16-cell-update.html │ │ ├── 17-inline-edit-disable.html │ │ ├── 18-merge-cells.html │ │ ├── 19-header-page-display.html │ │ ├── 2-aside-columns.html │ │ ├── 20-tree.html │ │ ├── 21-contextmenu.html │ │ ├── 22-columnStyle.html │ │ ├── 23-focus.html │ │ ├── 3-column-group.html │ │ ├── 4-frozen-column-row.html │ │ ├── 5-sort-column.html │ │ ├── 6-column-height.html │ │ ├── 7-grid-height.html │ │ ├── 8-row-aru.html │ │ ├── 9-column-aru.html │ │ └── index.html │ └── index.html ├── ax5ui-layout │ ├── _inc │ │ └── include.html │ ├── api │ │ └── index.html │ ├── demo │ │ ├── doc-panel-1.html │ │ ├── event.html │ │ ├── index.html │ │ ├── nested.html │ │ ├── split-panel-1.html │ │ ├── split-panel.html │ │ └── tab-panel.html │ └── index.html ├── ax5ui-mask │ ├── _inc │ │ └── include.html │ ├── api │ │ └── index.html │ ├── demo │ │ ├── custom.html │ │ ├── element-mask.html │ │ ├── index.html │ │ └── theme.html │ └── index.html ├── ax5ui-media-viewer │ ├── _inc │ │ └── include.html │ ├── api │ │ └── index.html │ ├── demo │ │ ├── index.html │ │ └── setMediaList.html │ └── index.html ├── ax5ui-menu │ ├── _inc │ │ └── include.html │ ├── api │ │ └── index.html │ ├── demo │ │ ├── context-menu-check.html │ │ ├── context-menu-filter.html │ │ ├── context-menu-html.html │ │ ├── context-menu-icon.html │ │ ├── context-menu-param.html │ │ ├── context-menu-theme.html │ │ ├── index.html │ │ └── menu-bar.html │ └── index.html ├── ax5ui-modal │ ├── _inc │ │ └── include.html │ ├── api │ │ └── index.html │ ├── demo │ │ ├── index.html │ │ ├── modal-align.html │ │ ├── modal-close-open.html │ │ ├── modal-config.html │ │ ├── modal-drag.html │ │ ├── modal-iframe-content.html │ │ ├── modal-iframe-fullscreen.html │ │ ├── modal-iframe.html │ │ └── modal-resize.html │ └── index.html ├── ax5ui-palette │ ├── _inc │ │ └── include.html │ ├── api │ │ └── index.html │ ├── demo │ │ ├── index.html │ │ └── setConfig.html │ └── index.html ├── ax5ui-picker │ ├── _inc │ │ └── include.html │ ├── api │ │ └── index.html │ ├── demo │ │ ├── index.html │ │ ├── picker-color.html │ │ ├── picker-date-btns.html │ │ ├── picker-date-calendar.html │ │ ├── picker-date.html │ │ ├── picker-jquery-bind.html │ │ ├── picker-keyboard.html │ │ ├── picker-multidate.html │ │ ├── picker-numpad.html │ │ └── picker-secure-num.html │ └── index.html ├── ax5ui-select │ ├── _inc │ │ └── include.html │ ├── api │ │ └── index.html │ ├── demo │ │ ├── cascade-select.html │ │ ├── get-set-value.html │ │ ├── index.html │ │ ├── onchange.html │ │ ├── onexpand.html │ │ ├── optgroup.html │ │ ├── size.html │ │ ├── theme.html │ │ └── user-instance.html │ └── index.html ├── ax5ui-toast │ ├── _inc │ │ └── include.html │ ├── api │ │ └── index.html │ ├── demo │ │ ├── confirm.html │ │ ├── custom.html │ │ ├── icon.html │ │ ├── index.html │ │ └── theme.html │ └── index.html ├── ax5ui-uploader │ ├── _inc │ │ └── include.html │ ├── api │ │ └── index.html │ ├── demo │ │ ├── custom-upload-dropzone.html │ │ ├── index.html │ │ └── thumbnail.html │ └── index.html └── index.html ├── assets ├── .bowerrc ├── _layouts │ ├── index.marko │ ├── ko.json │ ├── modal.marko │ └── root.marko ├── ax5favicon.ico ├── bower.json ├── components │ ├── ax5docs-css │ │ └── renderer.js │ ├── ax5docs-get-list │ │ └── renderer.js │ ├── ax5docs-get-sub-list │ │ └── renderer.js │ ├── ax5docs-html │ │ └── renderer.js │ ├── ax5docs-js │ │ └── renderer.js │ ├── ax5docs-md │ │ └── renderer.js │ ├── ax5docs-version │ │ └── renderer.js │ ├── ax5ui-project-list │ │ └── renderer.js │ ├── ga-code │ │ └── renderer.js │ └── tmpl-metadata │ │ └── renderer.js ├── css │ ├── docs.css │ ├── docs.scss │ ├── docs │ │ ├── _bootstrap-custom.scss │ │ ├── _docs-body.scss │ │ ├── _docs-foot.scss │ │ ├── _docs-header.scss │ │ ├── _docs-nav.scss │ │ ├── _docs-visual.scss │ │ └── _utils.scss │ └── images │ │ └── ax-bg-pattern.png ├── include │ └── ax5ui-plugins.inc ├── js │ ├── docs-backup.js │ └── docs.js └── lib │ ├── ax-icon.zip │ ├── ax-icon │ ├── Read Me.txt │ ├── demo-files │ │ ├── demo.css │ │ └── demo.js │ ├── demo.html │ ├── fonts │ │ ├── ax-icon.svg │ │ ├── ax-icon.ttf │ │ ├── ax-icon.woff │ │ └── ax-icon.woff2 │ ├── selection.json │ ├── style.css │ ├── style.scss │ └── variables.scss │ ├── ax5-lato │ ├── fonts │ │ ├── Lato-Black.eot │ │ ├── Lato-Black.ttf │ │ ├── Lato-Black.woff │ │ ├── Lato-Black.woff2 │ │ ├── Lato-BlackItalic.eot │ │ ├── Lato-BlackItalic.ttf │ │ ├── Lato-BlackItalic.woff │ │ ├── Lato-BlackItalic.woff2 │ │ ├── Lato-Bold.eot │ │ ├── Lato-Bold.ttf │ │ ├── Lato-Bold.woff │ │ ├── Lato-Bold.woff2 │ │ ├── Lato-BoldItalic.eot │ │ ├── Lato-BoldItalic.ttf │ │ ├── Lato-BoldItalic.woff │ │ ├── Lato-BoldItalic.woff2 │ │ ├── Lato-Hairline.eot │ │ ├── Lato-Hairline.ttf │ │ ├── Lato-Hairline.woff │ │ ├── Lato-Hairline.woff2 │ │ ├── Lato-HairlineItalic.eot │ │ ├── Lato-HairlineItalic.ttf │ │ ├── Lato-HairlineItalic.woff │ │ ├── Lato-HairlineItalic.woff2 │ │ ├── Lato-Heavy.eot │ │ ├── Lato-Heavy.ttf │ │ ├── Lato-Heavy.woff │ │ ├── Lato-Heavy.woff2 │ │ ├── Lato-HeavyItalic.eot │ │ ├── Lato-HeavyItalic.ttf │ │ ├── Lato-HeavyItalic.woff │ │ ├── Lato-HeavyItalic.woff2 │ │ ├── Lato-Italic.eot │ │ ├── Lato-Italic.ttf │ │ ├── Lato-Italic.woff │ │ ├── Lato-Italic.woff2 │ │ ├── Lato-Light.eot │ │ ├── Lato-Light.ttf │ │ ├── Lato-Light.woff │ │ ├── Lato-Light.woff2 │ │ ├── Lato-LightItalic.eot │ │ ├── Lato-LightItalic.ttf │ │ ├── Lato-LightItalic.woff │ │ ├── Lato-LightItalic.woff2 │ │ ├── Lato-Medium.eot │ │ ├── Lato-Medium.ttf │ │ ├── Lato-Medium.woff │ │ ├── Lato-Medium.woff2 │ │ ├── Lato-MediumItalic.eot │ │ ├── Lato-MediumItalic.ttf │ │ ├── Lato-MediumItalic.woff │ │ ├── Lato-MediumItalic.woff2 │ │ ├── Lato-Regular.eot │ │ ├── Lato-Regular.ttf │ │ ├── Lato-Regular.woff │ │ ├── Lato-Regular.woff2 │ │ ├── Lato-Semibold.eot │ │ ├── Lato-Semibold.ttf │ │ ├── Lato-Semibold.woff │ │ ├── Lato-Semibold.woff2 │ │ ├── Lato-SemiboldItalic.eot │ │ ├── Lato-SemiboldItalic.ttf │ │ ├── Lato-SemiboldItalic.woff │ │ ├── Lato-SemiboldItalic.woff2 │ │ ├── Lato-Thin.eot │ │ ├── Lato-Thin.ttf │ │ ├── Lato-Thin.woff │ │ ├── Lato-Thin.woff2 │ │ ├── Lato-ThinItalic.eot │ │ ├── Lato-ThinItalic.ttf │ │ ├── Lato-ThinItalic.woff │ │ └── Lato-ThinItalic.woff2 │ └── lato.css │ ├── ax5core │ ├── API-ax5-info.md │ ├── API-ax5-mustache.md │ ├── API-ax5-util.md │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── ax5core.js │ │ ├── ax5core.min.js │ │ └── ax5core.min.js.map │ ├── package.json │ └── src │ │ ├── _ax5-ui-mixin.scss │ │ ├── _ax5.scss │ │ ├── _bourbon_support.scss │ │ ├── _mixin.scss │ │ ├── ax5-core.js │ │ ├── ax5-def.js │ │ ├── ax5-error-msg.js │ │ ├── ax5-polyfill.js │ │ ├── ax5-ui.js │ │ ├── bootstrap │ │ ├── _forms.scss │ │ ├── _input-groups.scss │ │ ├── _mixins.scss │ │ ├── _support_for_ax5.scss │ │ ├── _variables.scss │ │ └── mixins │ │ │ ├── _alerts.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _buttons.scss │ │ │ ├── _center-block.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hide-text.scss │ │ │ ├── _image.scss │ │ │ ├── _labels.scss │ │ │ ├── _list-group.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _nav-vertical-align.scss │ │ │ ├── _opacity.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panels.scss │ │ │ ├── _progress-bar.scss │ │ │ ├── _reset-filter.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _responsive-visibility.scss │ │ │ ├── _size.scss │ │ │ ├── _tab-focus.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-overflow.scss │ │ │ └── _vendor-prefixes.scss │ │ └── mustache.js │ ├── ax5ui-autocomplete │ ├── API.md │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── ax5autocomplete.css │ │ ├── ax5autocomplete.js │ │ ├── ax5autocomplete.min.js │ │ └── ax5autocomplete.min.js.map │ ├── package.json │ └── src │ │ ├── ax5autocomplete.js │ │ ├── ax5autocomplete.scss │ │ ├── modules │ │ ├── ax5autocomplete-tmpl.js │ │ ├── ax5autocomplete-util.js │ │ └── jQuery-extender.js │ │ └── scss │ │ ├── _ax5autocomplete.scss │ │ └── _ax5autocomplete_variables.scss │ ├── ax5ui-binder │ ├── API.md │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── ax5binder.js │ │ ├── ax5binder.min.js │ │ └── ax5binder.min.js.map │ ├── package.json │ └── src │ │ └── ax5binder.js │ ├── ax5ui-calendar │ ├── API.md │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── ax5calendar.css │ │ ├── ax5calendar.js │ │ ├── ax5calendar.min.js │ │ └── ax5calendar.min.js.map │ ├── package.json │ └── src │ │ ├── ax5calendar.js │ │ ├── ax5calendar.scss │ │ ├── modules │ │ └── ax5calendar-tmpl.js │ │ └── scss │ │ ├── _ax5calendar.scss │ │ └── _ax5calendar_variables.scss │ ├── ax5ui-combobox │ ├── API.md │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── ax5combobox.css │ │ ├── ax5combobox.js │ │ ├── ax5combobox.min.js │ │ └── ax5combobox.min.js.map │ ├── package.json │ └── src │ │ ├── ax5combobox.js │ │ ├── ax5combobox.scss │ │ ├── modules │ │ ├── ax5combobox-tmpl.js │ │ ├── ax5combobox-util.js │ │ └── jQuery-extender.js │ │ └── scss │ │ ├── _ax5combobox.scss │ │ └── _ax5combobox_variables.scss │ ├── ax5ui-dialog │ ├── API.md │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── ax5dialog.css │ │ ├── ax5dialog.js │ │ ├── ax5dialog.min.js │ │ └── ax5dialog.min.js.map │ ├── package.json │ └── src │ │ ├── ax5dialog.js │ │ ├── ax5dialog.scss │ │ ├── modules │ │ └── ax5dialog-tmpl.js │ │ └── scss │ │ ├── _ax5dialog.scss │ │ └── _ax5dialog_variables.scss │ ├── ax5ui-docker │ ├── API.md │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── ax5docker.css │ │ ├── ax5docker.js │ │ ├── ax5docker.min.js │ │ └── ax5docker.min.js.map │ ├── package.json │ └── src │ │ ├── ax5docker.gif │ │ ├── ax5docker.js │ │ ├── ax5docker.scss │ │ ├── modules │ │ └── ax5docker-tmpl.js │ │ └── scss │ │ ├── _ax5docker.scss │ │ └── _ax5docker_variables.scss │ ├── ax5ui-formatter │ ├── API.md │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── ax5formatter.css │ │ ├── ax5formatter.js │ │ ├── ax5formatter.min.js │ │ └── ax5formatter.min.js.map │ ├── package.json │ └── src │ │ ├── ax5formatter.js │ │ ├── ax5formatter.scss │ │ ├── modules │ │ ├── ax5formatter-formatter.js │ │ └── jQuery-extender.js │ │ └── scss │ │ ├── _ax5formatter.scss │ │ └── _ax5formatter_variables.scss │ ├── ax5ui-grid │ ├── API.md │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── ax5grid.css │ │ ├── ax5grid.js │ │ ├── ax5grid.min.js │ │ └── ax5grid.min.js.map │ ├── package.json │ └── src │ │ ├── ax5grid.gif │ │ ├── ax5grid.js │ │ ├── ax5grid.scss │ │ ├── modules │ │ ├── ax5grid-body.js │ │ ├── ax5grid-collector.js │ │ ├── ax5grid-data.js │ │ ├── ax5grid-excel.js │ │ ├── ax5grid-formatter.js │ │ ├── ax5grid-header.js │ │ ├── ax5grid-inline-editor.js │ │ ├── ax5grid-page.js │ │ ├── ax5grid-scroller.js │ │ ├── ax5grid-tmpl.js │ │ └── ax5grid-util.js │ │ └── scss │ │ ├── _ax5grid.scss │ │ └── _ax5grid_variables.scss │ ├── ax5ui-layout │ ├── API.md │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── ax5layout.css │ │ ├── ax5layout.js │ │ ├── ax5layout.min.js │ │ └── ax5layout.min.js.map │ ├── package.json │ └── src │ │ ├── ax5layout.js │ │ ├── ax5layout.scss │ │ ├── modules │ │ └── jQuery-extender.js │ │ └── scss │ │ ├── _ax5layout.scss │ │ └── _ax5layout_variables.scss │ ├── ax5ui-mask │ ├── API.md │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── ax5mask.css │ │ ├── ax5mask.js │ │ ├── ax5mask.min.js │ │ └── ax5mask.min.js.map │ ├── package.json │ └── src │ │ ├── ax5mask.js │ │ ├── ax5mask.scss │ │ ├── modules │ │ └── ax5mask-tmpl.js │ │ └── scss │ │ ├── _ax5mask.scss │ │ └── _ax5mask_variables.scss │ ├── ax5ui-media-viewer │ ├── API.md │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── ax5media-viewer.css │ │ ├── ax5media-viewer.js │ │ ├── ax5media-viewer.min.js │ │ └── ax5media-viewer.min.js.map │ ├── package.json │ └── src │ │ ├── ax5media-viewer.js │ │ ├── ax5media-viewer.scss │ │ ├── modules │ │ └── ax5media-viewer-tmpl.js │ │ └── scss │ │ ├── _ax5media-viewer.scss │ │ └── _ax5media-viewer_variables.scss │ ├── ax5ui-menu │ ├── API.md │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── ax5menu.css │ │ ├── ax5menu.js │ │ ├── ax5menu.min.js │ │ └── ax5menu.min.js.map │ ├── package.json │ └── src │ │ ├── ax5menu.gif │ │ ├── ax5menu.js │ │ ├── ax5menu.scss │ │ ├── modules │ │ └── ax5menu-tmpl.js │ │ └── scss │ │ ├── _ax5menu.scss │ │ └── _ax5menu_variables.scss │ ├── ax5ui-modal │ ├── API.md │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── ax5modal.css │ │ ├── ax5modal.js │ │ ├── ax5modal.min.js │ │ └── ax5modal.min.js.map │ ├── package.json │ └── src │ │ ├── ax5modal.js │ │ ├── ax5modal.scss │ │ ├── modules │ │ └── ax5modal-tmpl.js │ │ └── scss │ │ ├── _ax5modal.scss │ │ └── _ax5modal_variables.scss │ ├── ax5ui-palette │ ├── API.md │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── ax5palette.css │ │ ├── ax5palette.js │ │ ├── ax5palette.min.js │ │ └── ax5palette.min.js.map │ ├── package.json │ └── src │ │ ├── ax5palette.gif │ │ ├── ax5palette.js │ │ ├── ax5palette.scss │ │ ├── modules │ │ └── ax5palette-tmpl.js │ │ └── scss │ │ ├── _ax5palette.scss │ │ └── _ax5palette_variables.scss │ ├── ax5ui-picker │ ├── API.md │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── ax5picker.css │ │ ├── ax5picker.js │ │ ├── ax5picker.min.js │ │ └── ax5picker.min.js.map │ ├── package.json │ └── src │ │ ├── ax5picker.js │ │ ├── ax5picker.scss │ │ ├── modules │ │ ├── ax5ui-picker-tmpl.js │ │ └── jQuery-extender.js │ │ └── scss │ │ ├── _ax5picker.scss │ │ └── _ax5picker_variables.scss │ ├── ax5ui-select │ ├── API.md │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── ax5select.css │ │ ├── ax5select.js │ │ ├── ax5select.min.js │ │ └── ax5select.min.js.map │ ├── package.json │ └── src │ │ ├── ax5select.js │ │ ├── ax5select.scss │ │ ├── modules │ │ └── ax5select-tmpl.js │ │ └── scss │ │ ├── _ax5select.scss │ │ └── _ax5select_variables.scss │ ├── ax5ui-toast │ ├── API.md │ ├── README.md │ ├── bower.json │ ├── bower_components │ │ ├── ax5core │ │ │ ├── API-ax5-info.md │ │ │ ├── API-ax5-mustache.md │ │ │ ├── API-ax5-util.md │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── ax5core.js │ │ │ │ └── ax5core.min.js │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── _ax5-ui-mixin.scss │ │ │ │ ├── ax5-core.js │ │ │ │ ├── ax5-def.js │ │ │ │ ├── ax5-error-msg.js │ │ │ │ ├── ax5-polyfill.js │ │ │ │ ├── ax5-ui.js │ │ │ │ └── mustache.js │ │ ├── bootstrap │ │ │ ├── CHANGELOG.md │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── npm.js │ │ │ ├── grunt │ │ │ │ ├── configBridge.json │ │ │ │ └── npm-shrinkwrap.json │ │ │ └── package.json │ │ └── jquery │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ │ ├── external │ │ │ └── sizzle │ │ │ │ └── dist │ │ │ │ ├── sizzle.js │ │ │ │ ├── sizzle.min.js │ │ │ │ └── sizzle.min.map │ │ │ └── src │ │ │ ├── ajax.js │ │ │ ├── ajax │ │ │ ├── jsonp.js │ │ │ ├── load.js │ │ │ ├── parseJSON.js │ │ │ ├── parseXML.js │ │ │ ├── script.js │ │ │ ├── var │ │ │ │ ├── location.js │ │ │ │ ├── nonce.js │ │ │ │ └── rquery.js │ │ │ └── xhr.js │ │ │ ├── attributes.js │ │ │ ├── attributes │ │ │ ├── attr.js │ │ │ ├── classes.js │ │ │ ├── prop.js │ │ │ ├── support.js │ │ │ └── val.js │ │ │ ├── callbacks.js │ │ │ ├── core.js │ │ │ ├── core │ │ │ ├── access.js │ │ │ ├── init.js │ │ │ ├── parseHTML.js │ │ │ ├── ready.js │ │ │ └── var │ │ │ │ └── rsingleTag.js │ │ │ ├── css.js │ │ │ ├── css │ │ │ ├── addGetHookIf.js │ │ │ ├── adjustCSS.js │ │ │ ├── curCSS.js │ │ │ ├── defaultDisplay.js │ │ │ ├── hiddenVisibleSelectors.js │ │ │ ├── showHide.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ ├── cssExpand.js │ │ │ │ ├── isHidden.js │ │ │ │ ├── rmargin.js │ │ │ │ ├── rnumnonpx.js │ │ │ │ └── swap.js │ │ │ ├── data.js │ │ │ ├── data │ │ │ ├── support.js │ │ │ └── var │ │ │ │ └── acceptData.js │ │ │ ├── deferred.js │ │ │ ├── deprecated.js │ │ │ ├── dimensions.js │ │ │ ├── effects.js │ │ │ ├── effects │ │ │ ├── Tween.js │ │ │ ├── animatedSelector.js │ │ │ └── support.js │ │ │ ├── event.js │ │ │ ├── event │ │ │ ├── ajax.js │ │ │ ├── alias.js │ │ │ └── support.js │ │ │ ├── exports │ │ │ ├── amd.js │ │ │ └── global.js │ │ │ ├── intro.js │ │ │ ├── jquery.js │ │ │ ├── manipulation.js │ │ │ ├── manipulation │ │ │ ├── _evalUrl.js │ │ │ ├── buildFragment.js │ │ │ ├── createSafeFragment.js │ │ │ ├── getAll.js │ │ │ ├── setGlobalEval.js │ │ │ ├── support.js │ │ │ ├── var │ │ │ │ ├── nodeNames.js │ │ │ │ ├── rcheckableType.js │ │ │ │ ├── rleadingWhitespace.js │ │ │ │ ├── rscriptType.js │ │ │ │ └── rtagName.js │ │ │ └── wrapMap.js │ │ │ ├── offset.js │ │ │ ├── outro.js │ │ │ ├── queue.js │ │ │ ├── queue │ │ │ └── delay.js │ │ │ ├── selector-sizzle.js │ │ │ ├── selector.js │ │ │ ├── serialize.js │ │ │ ├── support.js │ │ │ ├── traversing.js │ │ │ ├── traversing │ │ │ ├── findFilter.js │ │ │ └── var │ │ │ │ ├── dir.js │ │ │ │ ├── rneedsContext.js │ │ │ │ └── siblings.js │ │ │ ├── var │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── deletedIds.js │ │ │ ├── document.js │ │ │ ├── documentElement.js │ │ │ ├── hasOwn.js │ │ │ ├── indexOf.js │ │ │ ├── pnum.js │ │ │ ├── push.js │ │ │ ├── rcssNum.js │ │ │ ├── rnotwhite.js │ │ │ ├── slice.js │ │ │ ├── support.js │ │ │ └── toString.js │ │ │ └── wrap.js │ ├── dist │ │ ├── ax5toast.css │ │ ├── ax5toast.js │ │ ├── ax5toast.min.js │ │ └── ax5toast.min.js.map │ ├── package.json │ └── src │ │ ├── ax5toast.js │ │ ├── ax5toast.scss │ │ ├── modules │ │ └── ax5toast-tmpl.js │ │ └── scss │ │ ├── _ax5toast.scss │ │ └── _ax5toast_variables.scss │ ├── ax5ui-uploader │ ├── API.md │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── ax5uploader.css │ │ ├── ax5uploader.js │ │ ├── ax5uploader.min.js │ │ └── ax5uploader.min.js.map │ ├── package.json │ └── src │ │ ├── ax5uploader.gif │ │ ├── ax5uploader.js │ │ ├── ax5uploader.scss │ │ ├── modules │ │ └── ax5uploader-tmpl.js │ │ └── scss │ │ ├── _ax5uploader.scss │ │ └── _ax5uploader_variables.scss │ ├── bootstrap │ ├── .bower.json │ ├── CHANGELOG.md │ ├── Gruntfile.js │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── grunt │ │ ├── .jshintrc │ │ ├── bs-commonjs-generator.js │ │ ├── bs-glyphicons-data-generator.js │ │ ├── bs-lessdoc-parser.js │ │ ├── bs-raw-files-generator.js │ │ ├── configBridge.json │ │ └── sauce_browsers.yml │ ├── js │ │ ├── .jscsrc │ │ ├── .jshintrc │ │ ├── affix.js │ │ ├── alert.js │ │ ├── button.js │ │ ├── carousel.js │ │ ├── collapse.js │ │ ├── dropdown.js │ │ ├── modal.js │ │ ├── popover.js │ │ ├── scrollspy.js │ │ ├── tab.js │ │ ├── tooltip.js │ │ └── transition.js │ ├── less │ │ ├── .csscomb.json │ │ ├── .csslintrc │ │ ├── alerts.less │ │ ├── badges.less │ │ ├── bootstrap.less │ │ ├── breadcrumbs.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── carousel.less │ │ ├── close.less │ │ ├── code.less │ │ ├── component-animations.less │ │ ├── dropdowns.less │ │ ├── forms.less │ │ ├── glyphicons.less │ │ ├── grid.less │ │ ├── input-groups.less │ │ ├── jumbotron.less │ │ ├── labels.less │ │ ├── list-group.less │ │ ├── media.less │ │ ├── mixins.less │ │ ├── mixins │ │ │ ├── alerts.less │ │ │ ├── background-variant.less │ │ │ ├── border-radius.less │ │ │ ├── buttons.less │ │ │ ├── center-block.less │ │ │ ├── clearfix.less │ │ │ ├── forms.less │ │ │ ├── gradients.less │ │ │ ├── grid-framework.less │ │ │ ├── grid.less │ │ │ ├── hide-text.less │ │ │ ├── image.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── nav-divider.less │ │ │ ├── nav-vertical-align.less │ │ │ ├── opacity.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── progress-bar.less │ │ │ ├── reset-filter.less │ │ │ ├── reset-text.less │ │ │ ├── resize.less │ │ │ ├── responsive-visibility.less │ │ │ ├── size.less │ │ │ ├── tab-focus.less │ │ │ ├── table-row.less │ │ │ ├── text-emphasis.less │ │ │ ├── text-overflow.less │ │ │ └── vendor-prefixes.less │ │ ├── modals.less │ │ ├── navbar.less │ │ ├── navs.less │ │ ├── normalize.less │ │ ├── pager.less │ │ ├── pagination.less │ │ ├── panels.less │ │ ├── popovers.less │ │ ├── print.less │ │ ├── progress-bars.less │ │ ├── responsive-embed.less │ │ ├── responsive-utilities.less │ │ ├── scaffolding.less │ │ ├── tables.less │ │ ├── theme.less │ │ ├── thumbnails.less │ │ ├── tooltip.less │ │ ├── type.less │ │ ├── utilities.less │ │ ├── variables.less │ │ └── wells.less │ ├── nuget │ │ ├── MyGet.ps1 │ │ ├── bootstrap.less.nuspec │ │ └── bootstrap.nuspec │ ├── package.js │ └── package.json │ ├── font-awesome │ ├── .bower.json │ ├── .gitignore │ ├── .npmignore │ ├── HELP-US-OUT.txt │ ├── bower.json │ ├── css │ │ ├── font-awesome.css │ │ ├── font-awesome.css.map │ │ └── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── less │ │ ├── animated.less │ │ ├── bordered-pulled.less │ │ ├── core.less │ │ ├── fixed-width.less │ │ ├── font-awesome.less │ │ ├── icons.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── mixins.less │ │ ├── path.less │ │ ├── rotated-flipped.less │ │ ├── stacked.less │ │ └── variables.less │ └── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _path.scss │ │ ├── _rotated-flipped.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ └── font-awesome.scss │ ├── jquery │ ├── jquery-1.11.3.js │ ├── jquery-1.11.3.min.js │ ├── jquery-1.11.3.min.map │ └── jquery.min.js │ └── prettify │ ├── lang-Splus.js │ ├── lang-aea.js │ ├── lang-agc.js │ ├── lang-apollo.js │ ├── lang-basic.js │ ├── lang-cbm.js │ ├── lang-cl.js │ ├── lang-clj.js │ ├── lang-css.js │ ├── lang-dart.js │ ├── lang-el.js │ ├── lang-erl.js │ ├── lang-erlang.js │ ├── lang-fs.js │ ├── lang-go.js │ ├── lang-hs.js │ ├── lang-lasso.js │ ├── lang-lassoscript.js │ ├── lang-latex.js │ ├── lang-lgt.js │ ├── lang-lisp.js │ ├── lang-ll.js │ ├── lang-llvm.js │ ├── lang-logtalk.js │ ├── lang-ls.js │ ├── lang-lsp.js │ ├── lang-lua.js │ ├── lang-matlab.js │ ├── lang-ml.js │ ├── lang-mumps.js │ ├── lang-n.js │ ├── lang-nemerle.js │ ├── lang-pascal.js │ ├── lang-proto.js │ ├── lang-r.js │ ├── lang-rd.js │ ├── lang-rkt.js │ ├── lang-rust.js │ ├── lang-s.js │ ├── lang-scala.js │ ├── lang-scm.js │ ├── lang-sql.js │ ├── lang-ss.js │ ├── lang-swift.js │ ├── lang-tcl.js │ ├── lang-tex.js │ ├── lang-vb.js │ ├── lang-vbs.js │ ├── lang-vhd.js │ ├── lang-vhdl.js │ ├── lang-wiki.js │ ├── lang-xq.js │ ├── lang-xquery.js │ ├── lang-yaml.js │ ├── lang-yml.js │ ├── prettify.css │ ├── prettify.js │ ├── run_prettify.js │ └── skins │ ├── desert.css │ ├── doxy.css │ ├── github.css │ ├── sons-of-obsidian.css │ └── sunburst.css ├── ax5core ├── index.html ├── info │ └── ax5-info.html ├── mustache │ └── ax5-mustache.html └── util │ └── ax5-util.html ├── ax5ui-autocomplete ├── _inc │ └── include.html ├── api │ └── index.html ├── demo │ ├── editable.html │ └── index.html └── index.html ├── ax5ui-binder ├── _inc │ └── include.html ├── api │ └── index.html ├── demo │ ├── editable.html │ ├── index.html │ └── list.html └── index.html ├── ax5ui-calendar ├── _inc │ └── include.html ├── api │ └── index.html ├── demo │ ├── control.html │ ├── dimensions.html │ ├── event.html │ ├── index.html │ ├── lang.html │ ├── marker.html │ ├── mode.html │ ├── period.html │ ├── select.html │ ├── selectable.html │ └── startOfWeek.html └── index.html ├── ax5ui-combobox ├── _inc │ └── include.html ├── api │ └── index.html ├── demo │ ├── get-set-value.html │ ├── index.html │ ├── remove-icon.html │ ├── size.html │ └── theme.html └── index.html ├── ax5ui-dialog ├── _inc │ └── include.html ├── api │ └── index.html ├── demo │ ├── alert-custom.html │ ├── confirm-custom.html │ ├── index.html │ ├── prompt-custom.html │ └── theme.html └── index.html ├── ax5ui-docker ├── _inc │ └── include.html ├── api │ └── index.html ├── demo │ ├── index.html │ └── stack-panel.html ├── index.html └── src │ └── ax5docker.gif ├── ax5ui-formatter ├── _inc │ └── include.html ├── api │ └── index.html ├── demo │ ├── custom.html │ ├── date.html │ ├── index.html │ └── pattern-extend.html └── index.html ├── ax5ui-grid ├── _inc │ └── include.html ├── api │ └── index.html ├── demo │ ├── 1-formatter.html │ ├── 10-footsum.html │ ├── 11-collector.html │ ├── 12-body-grouping.html │ ├── 13-inline-edit.html │ ├── 14-paging.html │ ├── 15-excel-export.html │ ├── 16-cell-update.html │ ├── 17-inline-edit-disable.html │ ├── 18-merge-cells.html │ ├── 19-header-page-display.html │ ├── 2-aside-columns.html │ ├── 20-tree.html │ ├── 21-contextmenu.html │ ├── 22-columnStyle.html │ ├── 23-focus.html │ ├── 3-column-group.html │ ├── 4-frozen-column-row.html │ ├── 5-sort-column.html │ ├── 6-column-height.html │ ├── 7-grid-height.html │ ├── 8-row-aru.html │ ├── 9-column-aru.html │ └── index.html ├── index.html └── src │ └── ax5grid.gif ├── ax5ui-layout ├── _inc │ └── include.html ├── api │ └── index.html ├── demo │ ├── doc-panel-1.html │ ├── event.html │ ├── index.html │ ├── nested.html │ ├── split-panel-1.html │ ├── split-panel.html │ └── tab-panel.html └── index.html ├── ax5ui-mask ├── _inc │ └── include.html ├── api │ └── index.html ├── demo │ ├── custom.html │ ├── element-mask.html │ ├── index.html │ └── theme.html └── index.html ├── ax5ui-media-viewer ├── _inc │ └── include.html ├── api │ └── index.html ├── demo │ ├── index.html │ └── setMediaList.html └── index.html ├── ax5ui-menu ├── _inc │ └── include.html ├── api │ └── index.html ├── demo │ ├── context-menu-check.html │ ├── context-menu-filter.html │ ├── context-menu-html.html │ ├── context-menu-icon.html │ ├── context-menu-param.html │ ├── context-menu-theme.html │ ├── index.html │ └── menu-bar.html ├── index.html └── src │ └── ax5menu.gif ├── ax5ui-modal ├── _inc │ └── include.html ├── api │ └── index.html ├── demo │ ├── index.html │ ├── modal-align.html │ ├── modal-close-open.html │ ├── modal-config.html │ ├── modal-drag.html │ ├── modal-iframe-content.html │ ├── modal-iframe-fullscreen.html │ ├── modal-iframe.html │ └── modal-resize.html └── index.html ├── ax5ui-palette ├── _inc │ └── include.html ├── api │ └── index.html ├── demo │ ├── index.html │ └── setConfig.html ├── index.html └── src │ └── ax5palette.gif ├── ax5ui-picker ├── _inc │ └── include.html ├── api │ └── index.html ├── demo │ ├── index.html │ ├── picker-color.html │ ├── picker-date-btns.html │ ├── picker-date-calendar.html │ ├── picker-date.html │ ├── picker-jquery-bind.html │ ├── picker-keyboard.html │ ├── picker-multidate.html │ ├── picker-numpad.html │ └── picker-secure-num.html └── index.html ├── ax5ui-select ├── _inc │ └── include.html ├── api │ └── index.html ├── demo │ ├── cascade-select.html │ ├── get-set-value.html │ ├── index.html │ ├── onchange.html │ ├── onexpand.html │ ├── optgroup.html │ ├── size.html │ ├── theme.html │ └── user-instance.html └── index.html ├── ax5ui-toast ├── _inc │ └── include.html ├── api │ └── index.html ├── demo │ ├── confirm.html │ ├── custom.html │ ├── icon.html │ ├── index.html │ └── theme.html └── index.html ├── ax5ui-uploader ├── _inc │ └── include.html ├── api │ └── index.html ├── demo │ ├── custom-upload-dropzone.html │ ├── index.html │ └── thumbnail.html ├── index.html └── src │ └── ax5uploader.gif ├── gulpfile.js ├── index.html ├── marko-taglib.json └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | node_modules 3 | *.marko.js 4 | *.html.js 5 | .idea 6 | *.iml 7 | .DS_Store 8 | **/test/bower_components 9 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | ax5ui.axisj.com -------------------------------------------------------------------------------- /_src_/ax5core/info/ax5-info.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 |
7 |
${data.metadata.title}
8 |
"ax5core" is a utility for creating AX5UI Library. need to install on your 9 | browser. 10 |
11 |
12 |
13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |
-------------------------------------------------------------------------------- /_src_/ax5core/mustache/ax5-mustache.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 |
7 |
${data.metadata.title}
8 |
this version added only a few of the key and function in the mustache. 9 |
10 |
11 |
12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |
-------------------------------------------------------------------------------- /_src_/ax5core/util/ax5-util.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 |
7 |
${data.metadata.title}
8 |
"ax5core" is a utility for creating AX5UI Library. need to install on your 9 | browser. 10 |
11 |
12 |
13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |
-------------------------------------------------------------------------------- /_src_/ax5ui-autocomplete/_inc/include.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
Demonstration
4 |
Introduces the basic use of ax5ui-autocomplete UI.
5 |
6 |
-------------------------------------------------------------------------------- /_src_/ax5ui-autocomplete/api/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 |
10 |
11 |
API
12 |
13 |
14 |
15 |
16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
-------------------------------------------------------------------------------- /_src_/ax5ui-binder/_inc/include.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
Demonstration
4 |
Introduces the basic use of ax5ui-binder UI.
5 |
6 |
-------------------------------------------------------------------------------- /_src_/ax5ui-binder/api/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 |
10 |
11 |
API
12 |
13 |
14 |
15 |
16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
-------------------------------------------------------------------------------- /_src_/ax5ui-calendar/_inc/include.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
Demonstration
4 |
Introduces the basic use of ax5ui-calendar UI.
5 |
6 |
-------------------------------------------------------------------------------- /_src_/ax5ui-calendar/api/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 |
9 |
10 |
${data.metadata.title}
11 |
12 |
13 |
14 |
15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
-------------------------------------------------------------------------------- /_src_/ax5ui-combobox/_inc/include.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
Demonstration
4 |
Introduces the basic use of ax5ui-combobox UI.
5 |
6 |
-------------------------------------------------------------------------------- /_src_/ax5ui-combobox/api/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 |
10 |
11 |
API
12 |
13 |
14 |
15 |
16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
-------------------------------------------------------------------------------- /_src_/ax5ui-dialog/_inc/include.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
Demonstration
4 |
Introduces the basic use of ax5ui-dialog UI.
5 |
6 |
-------------------------------------------------------------------------------- /_src_/ax5ui-dialog/api/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 |
10 |
11 |
API
12 |
13 |
14 |
15 |
16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
-------------------------------------------------------------------------------- /_src_/ax5ui-docker/_inc/include.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
Demonstration
4 |
Introduces the basic use of ax5ui-docker UI.
5 |
6 |
-------------------------------------------------------------------------------- /_src_/ax5ui-docker/api/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 |
10 |
11 |
API
12 |
13 |
14 |
15 |
16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
-------------------------------------------------------------------------------- /_src_/ax5ui-formatter/_inc/include.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
Demonstration
4 |
Introduces the basic use of ax5ui-formatter UI.
5 |
6 |
-------------------------------------------------------------------------------- /_src_/ax5ui-formatter/api/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 |
10 |
11 |
API
12 |
13 |
14 |
15 |
16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
-------------------------------------------------------------------------------- /_src_/ax5ui-grid/_inc/include.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
Demonstration
4 |
Introduces the basic use of ax5ui-grid UI.
5 |
6 |
-------------------------------------------------------------------------------- /_src_/ax5ui-grid/api/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 |
10 |
11 |
API
12 |
13 |
14 |
15 |
16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
-------------------------------------------------------------------------------- /_src_/ax5ui-layout/_inc/include.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
Demonstration
4 |
Introduces the basic use of ax5ui-layout UI.
5 |
6 |
-------------------------------------------------------------------------------- /_src_/ax5ui-layout/api/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 |
10 |
11 |
API
12 |
13 |
14 |
15 |
16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
-------------------------------------------------------------------------------- /_src_/ax5ui-mask/_inc/include.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
Demonstration
4 |
Introduces the basic use of ax5ui-mask UI.
5 |
6 |
-------------------------------------------------------------------------------- /_src_/ax5ui-mask/api/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 |
7 |
8 |
${data.metadata.title}
9 |
10 |
11 |
12 |
13 |
14 | 15 | 16 | 17 | 18 | 19 |
-------------------------------------------------------------------------------- /_src_/ax5ui-mask/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |
6 |
AX5UI
7 |
ax5ui-mask
8 |
9 |
10 | 13 |   14 | 17 |
18 |
19 |
20 | 21 |
22 | 23 | 24 |
25 | 26 |
27 | 28 |
29 |
30 | -------------------------------------------------------------------------------- /_src_/ax5ui-media-viewer/_inc/include.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
Demonstration
4 |
Introduces the basic use of ax5ui-media-viewer UI.
5 |
6 |
-------------------------------------------------------------------------------- /_src_/ax5ui-media-viewer/api/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 |
10 |
11 |
API
12 |
13 |
14 |
15 |
16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
-------------------------------------------------------------------------------- /_src_/ax5ui-menu/_inc/include.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
Demonstration
4 |
Introduces the basic use of ax5ui-menu UI.
5 |
6 |
-------------------------------------------------------------------------------- /_src_/ax5ui-menu/api/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 |
10 |
11 |
API
12 |
13 |
14 |
15 |
16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
-------------------------------------------------------------------------------- /_src_/ax5ui-modal/_inc/include.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
Demonstration
4 |
Introduces the basic use of ax5ui-modal UI.
5 |
6 |
-------------------------------------------------------------------------------- /_src_/ax5ui-modal/api/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 |
10 |
11 |
API
12 |
13 |
14 |
15 |
16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
-------------------------------------------------------------------------------- /_src_/ax5ui-palette/_inc/include.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
Demonstration
4 |
Introduces the basic use of ax5ui-palette UI.
5 |
6 |
-------------------------------------------------------------------------------- /_src_/ax5ui-palette/api/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 |
9 |
10 |
${data.metadata.title}
11 |
12 |
13 |
14 |
15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
-------------------------------------------------------------------------------- /_src_/ax5ui-picker/_inc/include.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
Demonstration
4 |
Introduces the basic use of ax5ui-picker UI.
5 |
6 |
-------------------------------------------------------------------------------- /_src_/ax5ui-picker/api/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 |
10 |
11 |
API
12 |
13 |
14 |
15 |
16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
-------------------------------------------------------------------------------- /_src_/ax5ui-select/_inc/include.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
Demonstration
4 |
Introduces the basic use of ax5ui-select UI.
5 |
6 |
-------------------------------------------------------------------------------- /_src_/ax5ui-select/api/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 |
10 |
11 |
API
12 |
13 |
14 |
15 |
16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
-------------------------------------------------------------------------------- /_src_/ax5ui-toast/_inc/include.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
Demonstration
4 |
Introduces the basic use of ax5ui-toast UI.
5 |
6 |
-------------------------------------------------------------------------------- /_src_/ax5ui-toast/api/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 |
10 |
11 |
API
12 |
13 |
14 |
15 |
16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
-------------------------------------------------------------------------------- /_src_/ax5ui-uploader/_inc/include.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
Demonstration
4 |
Introduces the basic use of ax5ui-uploader UI.
5 |
6 |
-------------------------------------------------------------------------------- /_src_/ax5ui-uploader/api/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 |
10 |
11 |
API
12 |
13 |
14 |
15 |
16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
-------------------------------------------------------------------------------- /assets/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "lib/", 3 | "analytics": false, 4 | "timeout": 120000 5 | } -------------------------------------------------------------------------------- /assets/_layouts/ko.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /assets/ax5favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/ax5favicon.ico -------------------------------------------------------------------------------- /assets/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5doc-assets", 3 | "dependencies": { 4 | "jquery": "^1.11.0", 5 | "bootstrap": "^3.3.6", 6 | "font-awesome": "" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /assets/components/ax5docs-css/renderer.js: -------------------------------------------------------------------------------- 1 | exports.render = function (input, out) { 2 | var _s = "", s, HTML, CSS, JS; 3 | var strip_indent = require('strip-indent'); 4 | var _out = { 5 | w: function (text) { 6 | _s = strip_indent(text).replace(/'); 14 | out.write(_s); 15 | out.write(''); 16 | }; -------------------------------------------------------------------------------- /assets/components/ax5docs-js/renderer.js: -------------------------------------------------------------------------------- 1 | exports.render = function (input, out) { 2 | var _s = "", s, HTML, CSS, JS; 3 | var strip_indent = require('strip-indent'); 4 | 5 | var _out = { 6 | w: function (text) { 7 | JS = strip_indent(text).replace(/])+)?>|<\/\script>/gi, '').trim(); 8 | _s = strip_indent(text).replace(/'); 16 | out.write(_s); 17 | out.write(''); 18 | 19 | if (input.run) { 20 | out.write(''); 23 | } 24 | }; -------------------------------------------------------------------------------- /assets/components/ax5docs-version/renderer.js: -------------------------------------------------------------------------------- 1 | exports.render = function (input, out) { 2 | var _s = ""; 3 | var fs = require('fs'); 4 | 5 | if (input.bower && input.package) { // readme file 처리 6 | var bower = JSON.parse(fs.readFileSync(input.bower, 'utf8')); 7 | var package = JSON.parse(fs.readFileSync(input.package, 'utf8')); 8 | 9 | _s = 'Bower-' + bower.version + ' ' + 10 | 'NPM-' + package.version + ' ' + 11 | '
'; 12 | } 13 | else { 14 | 15 | } 16 | 17 | out.write(_s); 18 | }; -------------------------------------------------------------------------------- /assets/components/ax5ui-project-list/renderer.js: -------------------------------------------------------------------------------- 1 | exports.render = function(input, out) { 2 | var fs = require('fs'); 3 | out.write( 4 | fs.readFileSync('assets/include/ax5ui-plugins.inc', 'utf8') 5 | ); 6 | }; -------------------------------------------------------------------------------- /assets/components/ga-code/renderer.js: -------------------------------------------------------------------------------- 1 | exports.render = function(input, out) { 2 | 3 | out.write(""); 13 | 14 | } -------------------------------------------------------------------------------- /assets/components/tmpl-metadata/renderer.js: -------------------------------------------------------------------------------- 1 | exports.render = function(input, out) { 2 | out.write(''); 3 | } -------------------------------------------------------------------------------- /assets/css/docs/_bootstrap-custom.scss: -------------------------------------------------------------------------------- 1 | .btn-border{ 2 | &.white { 3 | font-family: $font-family-monospace; 4 | color: #fff; 5 | background: transparent; 6 | border: 1px solid #fff; 7 | font-weight: 600; 8 | &:hover { 9 | //border: 1px solid $brand-info; 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /assets/css/docs/_docs-nav.scss: -------------------------------------------------------------------------------- 1 | .docs-nav{ 2 | position: absolute; 3 | bottom: 0px; 4 | left: 0px; 5 | } -------------------------------------------------------------------------------- /assets/css/docs/_utils.scss: -------------------------------------------------------------------------------- 1 | @for $i from 1 through 10 { 2 | .DH#{$i} { 3 | line-height: 0px; 4 | height: #{$i}px; 5 | } 6 | .DH#{$i*10} { 7 | line-height: 0px; 8 | height: #{$i*10}px; 9 | } 10 | } 11 | 12 | pre.prettyprint{ 13 | font-size: 12px; 14 | margin: 1em 0; 15 | } 16 | pre{ 17 | background: #f8f8f8; 18 | font-family: Menlo, 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', Monaco, Consolas, monospace; 19 | font-size: 12px; 20 | line-height: 1.8; 21 | border: 0px none; 22 | white-space: pre-wrap; 23 | } -------------------------------------------------------------------------------- /assets/css/images/ax-bg-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/css/images/ax-bg-pattern.png -------------------------------------------------------------------------------- /assets/lib/ax-icon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax-icon.zip -------------------------------------------------------------------------------- /assets/lib/ax-icon/Read Me.txt: -------------------------------------------------------------------------------- 1 | Open *demo.html* to see a list of all the glyphs in your font along with their codes/ligatures. 2 | 3 | To use the generated font in desktop programs, you can install the TTF font. In order to copy the character associated with each icon, refer to the text box at the bottom right corner of each glyph in demo.html. The character inside this text box may be invisible; but it can still be copied. See this guide for more info: https://icomoon.io/#docs/local-fonts 4 | 5 | You won't need any of the files located under the *demo-files* directory when including the generated font in your own projects. 6 | 7 | You can import *selection.json* back to the IcoMoon app using the *Import Icons* button (or via Main Menu → Manage Projects) to retrieve your icon selection. 8 | -------------------------------------------------------------------------------- /assets/lib/ax-icon/fonts/ax-icon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax-icon/fonts/ax-icon.ttf -------------------------------------------------------------------------------- /assets/lib/ax-icon/fonts/ax-icon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax-icon/fonts/ax-icon.woff -------------------------------------------------------------------------------- /assets/lib/ax-icon/fonts/ax-icon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax-icon/fonts/ax-icon.woff2 -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Black.eot -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Black.ttf -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Black.woff -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Black.woff2 -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-BlackItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-BlackItalic.eot -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-BlackItalic.ttf -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-BlackItalic.woff -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-BlackItalic.woff2 -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Bold.eot -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Bold.woff -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Bold.woff2 -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-BoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-BoldItalic.eot -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-BoldItalic.woff -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-BoldItalic.woff2 -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Hairline.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Hairline.eot -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Hairline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Hairline.ttf -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Hairline.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Hairline.woff -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Hairline.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Hairline.woff2 -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-HairlineItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-HairlineItalic.eot -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-HairlineItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-HairlineItalic.ttf -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-HairlineItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-HairlineItalic.woff -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-HairlineItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-HairlineItalic.woff2 -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Heavy.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Heavy.eot -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Heavy.ttf -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Heavy.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Heavy.woff -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Heavy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Heavy.woff2 -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-HeavyItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-HeavyItalic.eot -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-HeavyItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-HeavyItalic.ttf -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-HeavyItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-HeavyItalic.woff -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-HeavyItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-HeavyItalic.woff2 -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Italic.eot -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Italic.ttf -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Italic.woff -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Italic.woff2 -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Light.eot -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Light.ttf -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Light.woff -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Light.woff2 -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-LightItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-LightItalic.eot -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-LightItalic.ttf -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-LightItalic.woff -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-LightItalic.woff2 -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Medium.eot -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Medium.ttf -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Medium.woff -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Medium.woff2 -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-MediumItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-MediumItalic.eot -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-MediumItalic.ttf -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-MediumItalic.woff -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-MediumItalic.woff2 -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Regular.eot -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Regular.woff -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Regular.woff2 -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Semibold.eot -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Semibold.ttf -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Semibold.woff -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Semibold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Semibold.woff2 -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-SemiboldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-SemiboldItalic.eot -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-SemiboldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-SemiboldItalic.ttf -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-SemiboldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-SemiboldItalic.woff -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-SemiboldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-SemiboldItalic.woff2 -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Thin.eot -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Thin.ttf -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Thin.woff -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-Thin.woff2 -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-ThinItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-ThinItalic.eot -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-ThinItalic.ttf -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-ThinItalic.woff -------------------------------------------------------------------------------- /assets/lib/ax5-lato/fonts/Lato-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5-lato/fonts/Lato-ThinItalic.woff2 -------------------------------------------------------------------------------- /assets/lib/ax5core/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5core", 3 | "version": "1.4.128", 4 | "authors": [ 5 | "ThomasJ " 6 | ], 7 | "description": "`ax5core` is a collection of utility functions that have been designed for use in ax5ui", 8 | "main": "dist/ax5core.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "ax5core", 16 | "javascript ui" 17 | ], 18 | "dependencies": { 19 | "jquery": "" 20 | }, 21 | "devDependencies": {}, 22 | "license": "MIT", 23 | "homepage": "ax5.io" 24 | } -------------------------------------------------------------------------------- /assets/lib/ax5core/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5core", 3 | "version": "1.4.128", 4 | "description": "ax5core is a collection of utility functions that have been designed for use in ax5ui", 5 | "license": "MIT", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/ax5ui/ax5core" 9 | }, 10 | "author": { 11 | "name": "Thomas Jang", 12 | "email": "tom@axisj.com", 13 | "url": "ax5.io" 14 | }, 15 | "scripts": { 16 | "test": "karma start karma.conf.js" 17 | }, 18 | "keywords": [], 19 | "devDependencies": { 20 | "karma": "^1.3.0", 21 | "karma-mocha": "^1.2.0", 22 | "karma-phantomjs-launcher": "^1.0.2", 23 | "mocha": "^3.1.0", 24 | "phantomjs-prebuilt": "^2.1.13", 25 | "webdriverio": "^4.6.1" 26 | } 27 | } -------------------------------------------------------------------------------- /assets/lib/ax5core/src/_ax5.scss: -------------------------------------------------------------------------------- 1 | @import "bourbon_support"; 2 | @import "mixin"; 3 | @import "bootstrap/support_for_ax5"; 4 | -------------------------------------------------------------------------------- /assets/lib/ax5core/src/ax5-def.js: -------------------------------------------------------------------------------- 1 | ax5.def = {}; -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/_support_for_ax5.scss: -------------------------------------------------------------------------------- 1 | @import "variables"; 2 | @import "mixins"; 3 | 4 | @import "forms"; 5 | @import "input-groups"; -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/mixins/_alerts.scss: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | @mixin alert-variant($background, $border, $text-color) { 4 | background-color: $background; 5 | border-color: $border; 6 | color: $text-color; 7 | 8 | hr { 9 | border-top-color: darken($border, 5%); 10 | } 11 | .alert-link { 12 | color: darken($text-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/mixins/_background-variant.scss: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | // [converter] $parent hack 4 | @mixin bg-variant($parent, $color) { 5 | #{$parent} { 6 | background-color: $color; 7 | } 8 | a#{$parent}:hover, 9 | a#{$parent}:focus { 10 | background-color: darken($color, 10%); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/mixins/_border-radius.scss: -------------------------------------------------------------------------------- 1 | // Single side border-radius 2 | 3 | @mixin border-top-radius($radius) { 4 | border-top-right-radius: $radius; 5 | border-top-left-radius: $radius; 6 | } 7 | @mixin border-right-radius($radius) { 8 | border-bottom-right-radius: $radius; 9 | border-top-right-radius: $radius; 10 | } 11 | @mixin border-bottom-radius($radius) { 12 | border-bottom-right-radius: $radius; 13 | border-bottom-left-radius: $radius; 14 | } 15 | @mixin border-left-radius($radius) { 16 | border-bottom-left-radius: $radius; 17 | border-top-left-radius: $radius; 18 | } 19 | -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/mixins/_center-block.scss: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | @mixin center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | // Clearfix 2 | // 3 | // For modern browsers 4 | // 1. The space content is one way to avoid an Opera bug when the 5 | // contenteditable attribute is included anywhere else in the document. 6 | // Otherwise it causes space to appear at the top and bottom of elements 7 | // that are clearfixed. 8 | // 2. The use of `table` rather than `block` is only necessary if using 9 | // `:before` to contain the top-margins of child elements. 10 | // 11 | // Source: http://nicolasgallagher.com/micro-clearfix-hack/ 12 | 13 | @mixin clearfix() { 14 | &:before, 15 | &:after { 16 | content: " "; // 1 17 | display: table; // 2 18 | } 19 | &:after { 20 | clear: both; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/mixins/_hide-text.scss: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | // 3 | // Heads up! v3 launched with only `.hide-text()`, but per our pattern for 4 | // mixins being reused as classes with the same name, this doesn't hold up. As 5 | // of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. 6 | // 7 | // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 8 | 9 | // Deprecated as of v3.0.1 (has been removed in v4) 10 | @mixin hide-text() { 11 | font: 0/0 a; 12 | color: transparent; 13 | text-shadow: none; 14 | background-color: transparent; 15 | border: 0; 16 | } 17 | 18 | // New mixin to use as of v3.0.1 19 | @mixin text-hide() { 20 | @include hide-text; 21 | } 22 | -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/mixins/_labels.scss: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | @mixin label-variant($color) { 4 | background-color: $color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken($color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/mixins/_list-group.scss: -------------------------------------------------------------------------------- 1 | // List Groups 2 | 3 | @mixin list-group-item-variant($state, $background, $color) { 4 | .list-group-item-#{$state} { 5 | color: $color; 6 | background-color: $background; 7 | 8 | // [converter] extracted a&, button& to a.list-group-item-#{$state}, button.list-group-item-#{$state} 9 | } 10 | 11 | a.list-group-item-#{$state}, 12 | button.list-group-item-#{$state} { 13 | color: $color; 14 | 15 | .list-group-item-heading { 16 | color: inherit; 17 | } 18 | 19 | &:hover, 20 | &:focus { 21 | color: $color; 22 | background-color: darken($background, 5%); 23 | } 24 | &.active, 25 | &.active:hover, 26 | &.active:focus { 27 | color: #fff; 28 | background-color: $color; 29 | border-color: $color; 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | @mixin nav-divider($color: #e5e5e5) { 6 | height: 1px; 7 | margin: (($line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: $color; 10 | } 11 | -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/mixins/_nav-vertical-align.scss: -------------------------------------------------------------------------------- 1 | // Navbar vertical align 2 | // 3 | // Vertically center elements in the navbar. 4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin. 5 | 6 | @mixin navbar-vertical-align($element-height) { 7 | margin-top: (($navbar-height - $element-height) / 2); 8 | margin-bottom: (($navbar-height - $element-height) / 2); 9 | } 10 | -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/mixins/_opacity.scss: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | @mixin opacity($opacity) { 4 | opacity: $opacity; 5 | // IE8 filter 6 | $opacity-ie: ($opacity * 100); 7 | filter: alpha(opacity=$opacity-ie); 8 | } 9 | -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/mixins/_pagination.scss: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | @mixin pagination-size($padding-vertical, $padding-horizontal, $font-size, $line-height, $border-radius) { 4 | > li { 5 | > a, 6 | > span { 7 | padding: $padding-vertical $padding-horizontal; 8 | font-size: $font-size; 9 | line-height: $line-height; 10 | } 11 | &:first-child { 12 | > a, 13 | > span { 14 | @include border-left-radius($border-radius); 15 | } 16 | } 17 | &:last-child { 18 | > a, 19 | > span { 20 | @include border-right-radius($border-radius); 21 | } 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/mixins/_panels.scss: -------------------------------------------------------------------------------- 1 | // Panels 2 | 3 | @mixin panel-variant($border, $heading-text-color, $heading-bg-color, $heading-border) { 4 | border-color: $border; 5 | 6 | & > .panel-heading { 7 | color: $heading-text-color; 8 | background-color: $heading-bg-color; 9 | border-color: $heading-border; 10 | 11 | + .panel-collapse > .panel-body { 12 | border-top-color: $border; 13 | } 14 | .badge { 15 | color: $heading-bg-color; 16 | background-color: $heading-text-color; 17 | } 18 | } 19 | & > .panel-footer { 20 | + .panel-collapse > .panel-body { 21 | border-bottom-color: $border; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/mixins/_progress-bar.scss: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | @mixin progress-bar-variant($color) { 4 | background-color: $color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | @include gradient-striped; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/mixins/_reset-filter.scss: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | @mixin reset-filter() { 7 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); 8 | } 9 | -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/mixins/_reset-text.scss: -------------------------------------------------------------------------------- 1 | @mixin reset-text() { 2 | font-family: $font-family-base; 3 | // We deliberately do NOT reset font-size. 4 | font-style: normal; 5 | font-weight: normal; 6 | letter-spacing: normal; 7 | line-break: auto; 8 | line-height: $line-height-base; 9 | text-align: left; // Fallback for where `start` is not supported 10 | text-align: start; 11 | text-decoration: none; 12 | text-shadow: none; 13 | text-transform: none; 14 | white-space: normal; 15 | word-break: normal; 16 | word-spacing: normal; 17 | word-wrap: normal; 18 | } 19 | -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | @mixin resizable($direction) { 4 | resize: $direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/mixins/_responsive-visibility.scss: -------------------------------------------------------------------------------- 1 | // Responsive utilities 2 | 3 | // 4 | // More easily include all the states for responsive-utilities.less. 5 | // [converter] $parent hack 6 | @mixin responsive-visibility($parent) { 7 | #{$parent} { 8 | display: block !important; 9 | } 10 | table#{$parent} { display: table !important; } 11 | tr#{$parent} { display: table-row !important; } 12 | th#{$parent}, 13 | td#{$parent} { display: table-cell !important; } 14 | } 15 | 16 | // [converter] $parent hack 17 | @mixin responsive-invisibility($parent) { 18 | #{$parent} { 19 | display: none !important; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | @mixin size($width, $height) { 4 | width: $width; 5 | height: $height; 6 | } 7 | 8 | @mixin square($size) { 9 | @include size($size, $size); 10 | } 11 | -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/mixins/_tab-focus.scss: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | @mixin tab-focus() { 4 | // WebKit-specific. Other browsers will keep their default outline style. 5 | // (Initially tried to also force default via `outline: initial`, 6 | // but that seems to erroneously remove the outline in Firefox altogether.) 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/mixins/_table-row.scss: -------------------------------------------------------------------------------- 1 | // Tables 2 | 3 | @mixin table-row-variant($state, $background) { 4 | // Exact selectors below required to override `.table-striped` and prevent 5 | // inheritance to nested tables. 6 | .table > thead > tr, 7 | .table > tbody > tr, 8 | .table > tfoot > tr { 9 | > td.#{$state}, 10 | > th.#{$state}, 11 | &.#{$state} > td, 12 | &.#{$state} > th { 13 | background-color: $background; 14 | } 15 | } 16 | 17 | // Hover states for `.table-hover` 18 | // Note: this is not available for cells or rows within `thead` or `tfoot`. 19 | .table-hover > tbody > tr { 20 | > td.#{$state}:hover, 21 | > th.#{$state}:hover, 22 | &.#{$state}:hover > td, 23 | &:hover > .#{$state}, 24 | &.#{$state}:hover > th { 25 | background-color: darken($background, 5%); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | // [converter] $parent hack 4 | @mixin text-emphasis-variant($parent, $color) { 5 | #{$parent} { 6 | color: $color; 7 | } 8 | a#{$parent}:hover, 9 | a#{$parent}:focus { 10 | color: darken($color, 10%); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/lib/ax5core/src/bootstrap/mixins/_text-overflow.scss: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-autocomplete/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-autocomplete", 3 | "version": "1.4.128", 4 | "description": "A autocomplete plugin that works with Bootstrap & jQuery", 5 | "authors": [ 6 | "ThomasJ " 7 | ], 8 | "main": "dist/ax5autocomplete.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "autocomplete", 16 | "ax5ui-autocomplete", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "", 21 | "ax5core": ">=1.4.115" 22 | }, 23 | "license": "MIT", 24 | "homepage": "ax5.io" 25 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-autocomplete/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-autocomplete", 3 | "version": "1.4.128", 4 | "description": "A autocomplete plugin that works with Bootstrap & jQuery", 5 | "license": "MIT", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/ax5ui/ax5ui-autocomplete" 9 | }, 10 | "author": { 11 | "name": "Thomas Jang", 12 | "email": "tom@axisj.com", 13 | "url": "ax5.io" 14 | }, 15 | "keywords": [ 16 | "bootstrap", 17 | "jquery", 18 | "ax5ui", 19 | "plugin", 20 | "bootstrap jQuery plugins", 21 | "autocomplete", 22 | "ax5ui-autocomplete", 23 | "javascript ui" 24 | ], 25 | "scripts": { 26 | "test": "karma start karma.conf.js" 27 | }, 28 | "dependencies": { 29 | "jquery": "", 30 | "ax5core": ">=1.4.115" 31 | }, 32 | "devDependencies": { 33 | "karma": "^1.3.0", 34 | "karma-mocha": "^1.2.0", 35 | "karma-phantomjs-launcher": "^1.0.2", 36 | "mocha": "^3.1.0", 37 | "phantomjs-prebuilt": "^2.1.13", 38 | "webdriverio": "^4.6.1" 39 | } 40 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-autocomplete/src/ax5autocomplete.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/ax5core/src/_ax5.scss"; 2 | 3 | @import "scss/ax5autocomplete_variables"; 4 | @import "scss/ax5autocomplete"; 5 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-binder/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-binder", 3 | "version": "1.4.128", 4 | "authors": [ 5 | "ThomasJ " 6 | ], 7 | "description": "Simple 2way binder plugin that works with Bootstrap & jQuery", 8 | "main": "dist/ax5binder.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "binder", 16 | "ax5ui-binder", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "", 21 | "ax5core": ">=1.4.115" 22 | }, 23 | "license": "MIT", 24 | "homepage": "ax5.io" 25 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-binder/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-binder", 3 | "version": "1.4.128", 4 | "description": "Simple 2way binder plugin that works with Bootstrap & jQuery", 5 | "license": "MIT", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/ax5ui/ax5ui-binder" 9 | }, 10 | "author": { 11 | "name": "Thomas Jang", 12 | "email": "tom@axisj.com", 13 | "url": "ax5.io" 14 | }, 15 | "keywords": [ 16 | "bootstrap", 17 | "jquery", 18 | "ax5ui", 19 | "plugin", 20 | "bootstrap jQuery plugins", 21 | "binder", 22 | "ax5ui-binder", 23 | "javascript ui" 24 | ], 25 | "scripts": { 26 | "test": "karma start karma.conf.js" 27 | }, 28 | "dependencies": { 29 | "jquery": "", 30 | "ax5core": ">=1.4.115" 31 | }, 32 | "devDependencies": { 33 | "karma": "^1.3.0", 34 | "karma-mocha": "^1.2.0", 35 | "karma-phantomjs-launcher": "^1.0.2", 36 | "mocha": "^3.1.0", 37 | "phantomjs-prebuilt": "^2.1.13", 38 | "webdriverio": "^4.6.1" 39 | } 40 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-calendar/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-calendar", 3 | "version": "1.4.128", 4 | "authors": [ 5 | "ThomasJ " 6 | ], 7 | "description": "", 8 | "main": "dist/ax5calendar.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "calendar", 16 | "ax5ui-calendar", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "", 21 | "ax5core": ">=1.4.115" 22 | }, 23 | "license": "MIT", 24 | "homepage": "ax5.io" 25 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-calendar/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-calendar", 3 | "version": "1.4.128", 4 | "description": "A calendar plugin that works with Bootstrap & jQuery", 5 | "license": "MIT", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/ax5ui/ax5ui-calendar" 9 | }, 10 | "author": { 11 | "name": "Thomas Jang", 12 | "email": "tom@axisj.com", 13 | "url": "ax5.io" 14 | }, 15 | "keywords": [ 16 | "bootstrap", 17 | "jquery", 18 | "ax5ui", 19 | "plugin", 20 | "bootstrap jQuery plugins", 21 | "calendar", 22 | "ax5ui-calendar", 23 | "javascript ui" 24 | ], 25 | "scripts": { 26 | "test": "karma start karma.conf.js" 27 | }, 28 | "dependencies": { 29 | "jquery": "", 30 | "ax5core": ">=1.4.115" 31 | }, 32 | "devDependencies": { 33 | "karma": "^1.3.0", 34 | "karma-mocha": "^1.2.0", 35 | "karma-phantomjs-launcher": "^1.0.2", 36 | "mocha": "^3.1.0", 37 | "phantomjs-prebuilt": "^2.1.13", 38 | "webdriverio": "^4.6.1" 39 | } 40 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-calendar/src/ax5calendar.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/ax5core/src/_ax5.scss"; 2 | 3 | @import "scss/ax5calendar_variables"; 4 | @import "scss/ax5calendar"; -------------------------------------------------------------------------------- /assets/lib/ax5ui-combobox/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-combobox", 3 | "version": "1.4.128", 4 | "description": "A combobox plugin that works with Bootstrap & jQuery", 5 | "authors": [ 6 | "ThomasJ " 7 | ], 8 | "main": "dist/ax5combobox.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "combobox", 16 | "ax5ui-combobox", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "", 21 | "ax5core": ">=1.4.115" 22 | }, 23 | "license": "MIT", 24 | "homepage": "ax5.io" 25 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-combobox/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-combobox", 3 | "version": "1.4.128", 4 | "description": "A combobox plugin that works with Bootstrap & jQuery", 5 | "license": "MIT", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/ax5ui/ax5ui-combobox" 9 | }, 10 | "author": { 11 | "name": "Thomas Jang", 12 | "email": "tom@axisj.com", 13 | "url": "ax5.io" 14 | }, 15 | "keywords": [ 16 | "bootstrap", 17 | "jquery", 18 | "ax5ui", 19 | "plugin", 20 | "bootstrap jQuery plugins", 21 | "combobox", 22 | "ax5ui-combobox", 23 | "javascript ui" 24 | ], 25 | "scripts": { 26 | "test": "karma start karma.conf.js" 27 | }, 28 | "dependencies": { 29 | "jquery": "", 30 | "ax5core": ">=1.4.115" 31 | }, 32 | "devDependencies": { 33 | "karma": "^1.3.0", 34 | "karma-mocha": "^1.2.0", 35 | "karma-phantomjs-launcher": "^1.0.2", 36 | "mocha": "^3.1.0", 37 | "phantomjs-prebuilt": "^2.1.13", 38 | "webdriverio": "^4.6.1" 39 | } 40 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-combobox/src/ax5combobox.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/ax5core/src/_ax5.scss"; 2 | 3 | @import "scss/ax5combobox_variables"; 4 | @import "scss/ax5combobox"; -------------------------------------------------------------------------------- /assets/lib/ax5ui-dialog/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-dialog", 3 | "version": "1.4.128", 4 | "description": "A dialog plugin that works with Bootstrap & jQuery", 5 | "authors": [ 6 | "ThomasJ " 7 | ], 8 | "main": "dist/ax5dialog.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "dialog", 16 | "ax5ui-dialog", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "", 21 | "ax5core": ">=1.4.115" 22 | }, 23 | "license": "MIT", 24 | "homepage": "ax5.io" 25 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-dialog/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-dialog", 3 | "version": "1.4.128", 4 | "description": "A dialog plugin that works with Bootstrap & jQuery", 5 | "license": "MIT", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/ax5ui/ax5ui-dialog" 9 | }, 10 | "author": { 11 | "name": "Thomas Jang", 12 | "email": "tom@axisj.com", 13 | "url": "ax5.io" 14 | }, 15 | "scripts": { 16 | "test": "karma start karma.conf.js" 17 | }, 18 | "keywords": [ 19 | "bootstrap", 20 | "jquery", 21 | "ax5ui", 22 | "plugin", 23 | "bootstrap jQuery plugins", 24 | "dialog", 25 | "ax5ui-dialog", 26 | "javascript ui" 27 | ], 28 | "dependencies": { 29 | "jquery": "", 30 | "ax5core": ">=1.4.115" 31 | }, 32 | "devDependencies": { 33 | "karma": "^1.3.0", 34 | "karma-mocha": "^1.2.0", 35 | "karma-phantomjs-launcher": "^1.0.2", 36 | "mocha": "^3.1.0", 37 | "phantomjs-prebuilt": "^2.1.13", 38 | "webdriverio": "^4.6.1" 39 | } 40 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-dialog/src/ax5dialog.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/ax5core/src/_ax5.scss"; 2 | 3 | @import "scss/ax5dialog_variables"; 4 | @import "scss/ax5dialog"; 5 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-docker/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-docker", 3 | "version": "1.4.128", 4 | "description": "A dashboard plugin that works with Bootstrap & jQuery", 5 | "authors": [ 6 | "ThomasJ " 7 | ], 8 | "main": "dist/ax5docker.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "uploader", 16 | "ax5ui-docker", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "", 21 | "ax5core": ">=1.4.115", 22 | "ax5ui-menu": "" 23 | }, 24 | "license": "MIT", 25 | "homepage": "ax5.io" 26 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-docker/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-docker", 3 | "version": "1.4.128", 4 | "description": "A dashboard plugin that works with Bootstrap & jQuery", 5 | "license": "MIT", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/ax5ui/ax5ui-docker" 9 | }, 10 | "author": { 11 | "name": "Thomas Jang", 12 | "email": "tom@axisj.com", 13 | "url": "ax5.io" 14 | }, 15 | "keywords": [ 16 | "bootstrap", 17 | "jquery", 18 | "ax5ui", 19 | "plugin", 20 | "bootstrap jQuery plugins", 21 | "uploader", 22 | "ax5ui-docker", 23 | "javascript ui" 24 | ], 25 | "scripts": { 26 | "test": "karma start karma.conf.js" 27 | }, 28 | "dependencies": { 29 | "jquery": "", 30 | "ax5core": ">=1.4.115", 31 | "ax5ui-menu": "" 32 | }, 33 | "devDependencies": { 34 | "karma": "^1.3.0", 35 | "karma-mocha": "^1.2.0", 36 | "karma-phantomjs-launcher": "^1.0.2", 37 | "mocha": "^3.1.0", 38 | "phantomjs-prebuilt": "^2.1.13", 39 | "webdriverio": "^4.6.1" 40 | } 41 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-docker/src/ax5docker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5ui-docker/src/ax5docker.gif -------------------------------------------------------------------------------- /assets/lib/ax5ui-docker/src/ax5docker.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/ax5core/src/_ax5.scss"; 2 | 3 | @import "scss/ax5docker_variables"; 4 | @import "scss/ax5docker"; -------------------------------------------------------------------------------- /assets/lib/ax5ui-docker/src/scss/_ax5docker_variables.scss: -------------------------------------------------------------------------------- 1 | //========= ax5docker 2 | $ax5docker-bg: $panel-bg !default; 3 | $ax5docker-border-color: #C9C9C9 !default; 4 | $ax5docker-tab-bg: #ECECEC !default; 5 | $ax5docker-tab-item-bg: #D4D4D4 !default; 6 | $ax5docker-tab-item-radius: 0 !default; 7 | $ax5docker-pane-item-bg: #FFFFFF !default; 8 | $ax5docker-tab-active-item-bg: #FFFFFF !default; 9 | $ax5docker-tab-item-dropper-color: #f9523b !default; 10 | $ax5docker-tab-item-dropper-width: 3px; 11 | 12 | $ax5docker-tab-height: 22px !default; 13 | $ax5docker-tab-margin: 1px !default; 14 | 15 | 16 | $ax5docker-easing-time-open: 0.1s !default; 17 | $ax5docker-easing-time-close: 0.1s !default; 18 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-formatter/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-formatter", 3 | "version": "1.4.128", 4 | "description": "A formatter plugin that works with Bootstrap & jQuery", 5 | "authors": [ 6 | "ThomasJ " 7 | ], 8 | "main": "dist/ax5formatter.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "formatter", 16 | "ax5ui-formatter", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "", 21 | "ax5core": ">=1.4.115" 22 | }, 23 | "license": "MIT", 24 | "homepage": "ax5.io" 25 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-formatter/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-formatter", 3 | "version": "1.4.128", 4 | "description": "A formatter plugin that works with Bootstrap & jQuery", 5 | "license": "MIT", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/ax5ui/ax5ui-formatter" 9 | }, 10 | "author": { 11 | "name": "Thomas Jang", 12 | "email": "tom@axisj.com", 13 | "url": "ax5.io" 14 | }, 15 | "keywords": [ 16 | "bootstrap", 17 | "jquery", 18 | "ax5ui", 19 | "plugin", 20 | "bootstrap jQuery plugins", 21 | "picker", 22 | "ax5ui-picker", 23 | "javascript ui" 24 | ], 25 | "scripts": { 26 | "test": "karma start karma.conf.js" 27 | }, 28 | "dependencies": { 29 | "jquery": "", 30 | "ax5core": ">=1.4.115", 31 | "ax5ui-menu": "" 32 | }, 33 | "devDependencies": { 34 | "karma": "^1.3.0", 35 | "karma-mocha": "^1.2.0", 36 | "karma-phantomjs-launcher": "^1.0.2", 37 | "mocha": "^3.1.0", 38 | "phantomjs-prebuilt": "^2.1.13", 39 | "webdriverio": "^4.6.1" 40 | } 41 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-formatter/src/ax5formatter.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/ax5core/src/_ax5.scss"; 2 | 3 | @import "scss/ax5formatter_variables"; 4 | @import "scss/ax5formatter"; -------------------------------------------------------------------------------- /assets/lib/ax5ui-formatter/src/scss/_ax5formatter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5ui-formatter/src/scss/_ax5formatter.scss -------------------------------------------------------------------------------- /assets/lib/ax5ui-formatter/src/scss/_ax5formatter_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5ui-formatter/src/scss/_ax5formatter_variables.scss -------------------------------------------------------------------------------- /assets/lib/ax5ui-grid/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-grid", 3 | "version": "1.4.128", 4 | "description": "A grid plugin that works with Bootstrap & jQuery", 5 | "authors": [ 6 | "ThomasJ " 7 | ], 8 | "main": "dist/ax5grid.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "grid", 16 | "ax5ui-grid", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "", 21 | "ax5core": ">=1.4.115", 22 | "ax5ui-menu": "", 23 | "ax5ui-formatter": "", 24 | "ax5ui-calendar": "", 25 | "ax5ui-picker": "" 26 | }, 27 | "license": "MIT", 28 | "homepage": "ax5.io" 29 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-grid/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-grid", 3 | "version": "1.4.128", 4 | "description": "A grid plugin that works with Bootstrap & jQuery", 5 | "license": "MIT", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/ax5ui/ax5ui-grid" 9 | }, 10 | "author": { 11 | "name": "Thomas Jang", 12 | "email": "tom@axisj.com", 13 | "url": "ax5.io" 14 | }, 15 | "keywords": [ 16 | "bootstrap", 17 | "jquery", 18 | "ax5ui", 19 | "plugin", 20 | "bootstrap jQuery plugins", 21 | "grid", 22 | "ax5ui-grid", 23 | "javascript ui" 24 | ], 25 | "scripts": { 26 | "test": "karma start karma.conf.js" 27 | }, 28 | "dependencies": { 29 | "jquery": "", 30 | "ax5core": ">=1.4.115", 31 | "ax5ui-menu": "", 32 | "ax5ui-formatter": "", 33 | "ax5ui-calendar": "", 34 | "ax5ui-picker": "" 35 | }, 36 | "devDependencies": { 37 | "karma": "^1.3.0", 38 | "karma-mocha": "^1.2.0", 39 | "karma-phantomjs-launcher": "^1.0.2", 40 | "mocha": "^3.1.0", 41 | "phantomjs-prebuilt": "^2.1.13", 42 | "webdriverio": "^4.6.1" 43 | } 44 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-grid/src/ax5grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5ui-grid/src/ax5grid.gif -------------------------------------------------------------------------------- /assets/lib/ax5ui-grid/src/ax5grid.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/ax5core/src/_ax5.scss"; 2 | 3 | @import "scss/ax5grid_variables"; 4 | @import "scss/ax5grid"; 5 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-grid/src/modules/ax5grid-collector.js: -------------------------------------------------------------------------------- 1 | // ax5.ui.grid.collector 2 | (function () { 3 | 4 | const GRID = ax5.ui.grid; 5 | 6 | const U = ax5.util; 7 | 8 | let sum = function () { 9 | let value = 0, 10 | i = this.list.length; 11 | while (i--) { 12 | if (!("__groupingList" in this.list[i])) { 13 | value += U.number(this.list[i][this.key]); 14 | } 15 | } 16 | return value; 17 | }; 18 | 19 | let avg = function () { 20 | let value = 0, 21 | i = this.list.length, listLength = 0; 22 | while (i--) { 23 | if (!("__groupingList" in this.list[i])) { 24 | value += U.number(this.list[i][this.key]); 25 | listLength++; 26 | } 27 | } 28 | return U.number(value / (listLength || 1), {"round": 2}); 29 | }; 30 | 31 | GRID.collector = { 32 | sum: sum, 33 | avg: avg 34 | }; 35 | 36 | })(); -------------------------------------------------------------------------------- /assets/lib/ax5ui-grid/src/modules/ax5grid-formatter.js: -------------------------------------------------------------------------------- 1 | // ax5.ui.grid.formatter 2 | (function () { 3 | 4 | const GRID = ax5.ui.grid; 5 | 6 | const U = ax5.util; 7 | 8 | const money = function () { 9 | if (typeof this.value !== "undefined") { 10 | let val = ('' + this.value).replace(/[^0-9^\.^\-]/g, ""), 11 | regExpPattern = new RegExp('([0-9])([0-9][0-9][0-9][,.])'), 12 | arrNumber = val.split('.'), 13 | returnValue; 14 | 15 | arrNumber[0] += '.'; 16 | 17 | do { 18 | arrNumber[0] = arrNumber[0].replace(regExpPattern, '$1,$2'); 19 | } while (regExpPattern.test(arrNumber[0])); 20 | 21 | return (arrNumber.length > 1) ? arrNumber[0] + U.left(arrNumber[1], 2) : arrNumber[0].split('.')[0]; 22 | } else { 23 | return ""; 24 | } 25 | }; 26 | 27 | GRID.formatter = { 28 | money: money 29 | }; 30 | 31 | })(); -------------------------------------------------------------------------------- /assets/lib/ax5ui-layout/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-layout", 3 | "version": "1.4.128", 4 | "description": "A mediaViewer plugin that works with Bootstrap & jQuery", 5 | "authors": [ 6 | "ThomasJ " 7 | ], 8 | "main": "dist/ax5layout.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "ax5ui-layout", 16 | "javascript ui" 17 | ], 18 | "dependencies": { 19 | "jquery": "", 20 | "ax5core": ">=1.4.115" 21 | }, 22 | "license": "MIT", 23 | "homepage": "ax5.io" 24 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-layout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-layout", 3 | "version": "1.4.128", 4 | "description": "A mediaViewer plugin that works with Bootstrap & jQuery", 5 | "license": "MIT", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/ax5ui/ax5ui-layout" 9 | }, 10 | "author": { 11 | "name": "Thomas Jang", 12 | "email": "tom@axisj.com", 13 | "url": "ax5.io" 14 | }, 15 | "keywords": [ 16 | "bootstrap", 17 | "jquery", 18 | "ax5ui", 19 | "plugin", 20 | "bootstrap jQuery plugins", 21 | "ax5ui-layout", 22 | "javascript ui" 23 | ], 24 | "scripts": { 25 | "test": "karma start karma.conf.js" 26 | }, 27 | "dependencies": { 28 | "jquery": "", 29 | "ax5core": ">=1.4.115" 30 | }, 31 | "devDependencies": { 32 | "karma": "^1.3.0", 33 | "karma-mocha": "^1.2.0", 34 | "karma-phantomjs-launcher": "^1.0.2", 35 | "mocha": "^3.1.0", 36 | "phantomjs-prebuilt": "^2.1.13", 37 | "webdriverio": "^4.6.1" 38 | } 39 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-layout/src/ax5layout.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/ax5core/src/_ax5.scss"; 2 | 3 | @import "scss/ax5layout_variables"; 4 | @import "scss/ax5layout"; 5 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-mask/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-mask", 3 | "version": "1.4.128", 4 | "authors": [ 5 | "ThomasJ " 6 | ], 7 | "description": "A mask jQuery plugin that works with Bootstrap", 8 | "main": "dist/ax5mask.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "mask", 16 | "ax5ui-mask" 17 | ], 18 | "dependencies": { 19 | "jquery": "", 20 | "ax5core": ">=1.4.115" 21 | }, 22 | "license": "MIT", 23 | "homepage": "ax5.io" 24 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-mask/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-mask", 3 | "version": "1.4.128", 4 | "description": "A mask plugin that works with Bootstrap & jQuery", 5 | "license": "MIT", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/ax5ui/ax5ui-mask" 9 | }, 10 | "author": { 11 | "name": "Thomas Jang", 12 | "email": "tom@axisj.com", 13 | "url": "ax5.io" 14 | }, 15 | "keywords": [ 16 | "bootstrap", 17 | "jquery", 18 | "ax5ui", 19 | "plugin", 20 | "bootstrap jQuery plugins", 21 | "mask", 22 | "ax5ui-mask" 23 | ], 24 | "scripts": { 25 | "test": "karma start karma.conf.js" 26 | }, 27 | "dependencies": { 28 | "jquery": "", 29 | "ax5core": ">=1.4.115" 30 | }, 31 | "devDependencies": { 32 | "karma": "^1.3.0", 33 | "karma-mocha": "^1.2.0", 34 | "karma-phantomjs-launcher": "^1.0.2", 35 | "mocha": "^3.1.0", 36 | "phantomjs-prebuilt": "^2.1.13", 37 | "webdriverio": "^4.6.1" 38 | } 39 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-mask/src/ax5mask.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/ax5core/src/_ax5.scss"; 2 | 3 | @import "scss/ax5mask_variables"; 4 | @import "scss/ax5mask"; -------------------------------------------------------------------------------- /assets/lib/ax5ui-mask/src/modules/ax5mask-tmpl.js: -------------------------------------------------------------------------------- 1 | // ax5.ui.mask.tmpl 2 | (function () { 3 | 4 | var MASK = ax5.ui.mask; 5 | 6 | var defaultMask = function(columnKeys) { 7 | return ` 8 |
9 |
10 |
11 |
12 | {{{body}}} 13 |
14 |
15 |
16 | `; 17 | }; 18 | 19 | MASK.tmpl = { 20 | "defaultMask": defaultMask, 21 | 22 | get: function (tmplName, data, columnKeys) { 23 | return ax5.mustache.render(MASK.tmpl[tmplName].call(this, columnKeys), data); 24 | } 25 | }; 26 | 27 | })(); -------------------------------------------------------------------------------- /assets/lib/ax5ui-mask/src/scss/_ax5mask_variables.scss: -------------------------------------------------------------------------------- 1 | $ax5mask-z-index: 1000 !default; 2 | $ax5mask-bg-opacity: 0.6 !default; 3 | 4 | $ax5mask-bg: #000 !default; 5 | $ax5mask-text-color: #fff !default; 6 | $ax5mask-text-shadow:0px 1px 0px #000 !default; 7 | 8 | $ax5mask-easing-time-open: 0.25s !default; 9 | $ax5mask-easing-time-close: 0.25s !default; -------------------------------------------------------------------------------- /assets/lib/ax5ui-media-viewer/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-media-viewer", 3 | "version": "1.4.128", 4 | "description": "A mediaViewer plugin that works with Bootstrap & jQuery", 5 | "authors": [ 6 | "ThomasJ " 7 | ], 8 | "main": "dist/ax5media-viewer.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "slider", 16 | "gallery", 17 | "ax5ui-media-viewer", 18 | "javascript ui" 19 | ], 20 | "dependencies": { 21 | "jquery": "", 22 | "ax5core": ">=1.4.115" 23 | }, 24 | "license": "MIT", 25 | "homepage": "ax5.io" 26 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-media-viewer/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-media-viewer", 3 | "version": "1.4.128", 4 | "description": "A mediaViewer plugin that works with Bootstrap & jQuery", 5 | "license": "MIT", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/ax5ui/ax5ui-media-viewer" 9 | }, 10 | "author": { 11 | "name": "Thomas Jang", 12 | "email": "tom@axisj.com", 13 | "url": "ax5.io" 14 | }, 15 | "keywords": [ 16 | "bootstrap", 17 | "jquery", 18 | "ax5ui", 19 | "plugin", 20 | "bootstrap jQuery plugins", 21 | "slider", 22 | "gallery", 23 | "ax5ui-media-viewer", 24 | "javascript ui" 25 | ], 26 | "scripts": { 27 | "test": "karma start karma.conf.js" 28 | }, 29 | "dependencies": { 30 | "jquery": "", 31 | "ax5core": ">=1.4.115" 32 | }, 33 | "devDependencies": { 34 | "karma": "^1.3.0", 35 | "karma-mocha": "^1.2.0", 36 | "karma-phantomjs-launcher": "^1.0.2", 37 | "mocha": "^3.1.0", 38 | "phantomjs-prebuilt": "^2.1.13", 39 | "webdriverio": "^4.6.1" 40 | } 41 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-media-viewer/src/ax5media-viewer.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/ax5core/src/_ax5.scss"; 2 | 3 | @import "scss/ax5media-viewer_variables"; 4 | @import "scss/ax5media-viewer"; -------------------------------------------------------------------------------- /assets/lib/ax5ui-media-viewer/src/scss/_ax5media-viewer_variables.scss: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2016. tom@axisj.com 3 | * - github.com/thomasjang 4 | * - www.axisj.com 5 | */ 6 | 7 | 8 | 9 | ///~~ theme 10 | $ax5media-viewer-default-border-color: #ccc; 11 | $ax5media-viewer-default-font-color: $gray; 12 | 13 | $ax5media-viewer-primary-border-color: $brand-primary; 14 | $ax5media-viewer-primary-font-color: $brand-primary; 15 | 16 | $ax5media-viewer-success-border-color: $brand-success; 17 | $ax5media-viewer-success-font-color: $brand-success; 18 | 19 | $ax5media-viewer-info-border-color: $brand-info; 20 | $ax5media-viewer-info-font-color: $brand-info; 21 | 22 | $ax5media-viewer-warning-border-color: $brand-warning; 23 | $ax5media-viewer-warning-font-color: $brand-warning; 24 | 25 | $ax5media-viewer-danger-border-color: $brand-danger; 26 | $ax5media-viewer-danger-font-color: $brand-danger; -------------------------------------------------------------------------------- /assets/lib/ax5ui-menu/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-menu", 3 | "version": "1.4.128", 4 | "description": "A menu plugin that works with Bootstrap & jQuery", 5 | "authors": [ 6 | "ThomasJ " 7 | ], 8 | "main": "dist/ax5menu.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "formatter", 16 | "ax5ui-menu", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "", 21 | "ax5core": ">=1.4.115" 22 | }, 23 | "license": "MIT", 24 | "homepage": "ax5.io" 25 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-menu/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-menu", 3 | "version": "1.4.128", 4 | "description": "A menu plugin that works with Bootstrap & jQuery", 5 | "license": "MIT", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/ax5ui/ax5ui-menu" 9 | }, 10 | "author": { 11 | "name": "Thomas Jang", 12 | "email": "tom@axisj.com", 13 | "url": "ax5.io" 14 | }, 15 | "keywords": [ 16 | "bootstrap", 17 | "jquery", 18 | "ax5ui", 19 | "plugin", 20 | "bootstrap jQuery plugins", 21 | "menu", 22 | "ax5ui-menu", 23 | "javascript ui" 24 | ], 25 | "scripts": { 26 | "test": "karma start karma.conf.js" 27 | }, 28 | "dependencies": { 29 | "jquery": "", 30 | "ax5core": ">=1.4.115" 31 | }, 32 | "devDependencies": { 33 | "karma": "^1.3.0", 34 | "karma-mocha": "^1.2.0", 35 | "karma-phantomjs-launcher": "^1.0.2", 36 | "mocha": "^3.1.0", 37 | "phantomjs-prebuilt": "^2.1.13", 38 | "webdriverio": "^4.6.1" 39 | } 40 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-menu/src/ax5menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5ui-menu/src/ax5menu.gif -------------------------------------------------------------------------------- /assets/lib/ax5ui-menu/src/ax5menu.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/ax5core/src/_ax5.scss"; 2 | 3 | @import "scss/ax5menu_variables"; 4 | @import "scss/ax5menu"; -------------------------------------------------------------------------------- /assets/lib/ax5ui-modal/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-modal", 3 | "version": "1.4.128", 4 | "authors": [ 5 | "ThomasJ " 6 | ], 7 | "description": "", 8 | "main": "dist/ax5modal.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "modal", 16 | "ax5ui-modal", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "", 21 | "ax5core": ">=1.4.115" 22 | }, 23 | "license": "MIT", 24 | "homepage": "ax5.io" 25 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-modal/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-modal", 3 | "version": "1.4.128", 4 | "description": "A modal plugin that works with Bootstrap & jQuery", 5 | "license": "MIT", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/ax5ui/ax5ui-modal" 9 | }, 10 | "author": { 11 | "name": "Thomas Jang", 12 | "email": "tom@axisj.com", 13 | "url": "ax5.io" 14 | }, 15 | "keywords": [ 16 | "bootstrap", 17 | "jquery", 18 | "ax5ui", 19 | "plugin", 20 | "bootstrap jQuery plugins", 21 | "dialog", 22 | "ax5ui-dialog", 23 | "javascript ui" 24 | ], 25 | "scripts": { 26 | "test": "karma start karma.conf.js" 27 | }, 28 | "dependencies": { 29 | "jquery": "", 30 | "ax5core": ">=1.4.115" 31 | }, 32 | "devDependencies": { 33 | "karma": "^1.3.0", 34 | "karma-mocha": "^1.2.0", 35 | "karma-phantomjs-launcher": "^1.0.2", 36 | "mocha": "^3.1.0", 37 | "phantomjs-prebuilt": "^2.1.13", 38 | "webdriverio": "^4.6.1" 39 | } 40 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-modal/src/ax5modal.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/ax5core/src/_ax5.scss"; 2 | 3 | @import "scss/ax5modal_variables"; 4 | @import "scss/ax5modal"; 5 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-palette/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-palette", 3 | "version": "1.4.128", 4 | "authors": [ 5 | "ThomasJ " 6 | ], 7 | "description": "", 8 | "main": "dist/ax5palette.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "color palette", 16 | "palette", 17 | "ax5ui-palette", 18 | "javascript ui" 19 | ], 20 | "dependencies": { 21 | "jquery": "", 22 | "ax5core": ">=1.4.41" 23 | }, 24 | "license": "MIT", 25 | "homepage": "ax5.io" 26 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-palette/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-palette", 3 | "version": "1.4.128", 4 | "description": "A palette plugin that works with Bootstrap & jQuery", 5 | "license": "MIT", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/ax5ui/ax5ui-palette" 9 | }, 10 | "author": { 11 | "name": "Thomas Jang", 12 | "email": "tom@axisj.com", 13 | "url": "ax5.io" 14 | }, 15 | "keywords": [ 16 | "bootstrap", 17 | "jquery", 18 | "ax5ui", 19 | "plugin", 20 | "bootstrap jQuery plugins", 21 | "palette", 22 | "ax5ui-palette", 23 | "javascript ui" 24 | ], 25 | "scripts": { 26 | "test": "karma start karma.conf.js" 27 | }, 28 | "dependencies": { 29 | "jquery": "", 30 | "ax5core": ">=1.4.41" 31 | }, 32 | "devDependencies": { 33 | "karma": "^1.3.0", 34 | "karma-mocha": "^1.2.0", 35 | "karma-phantomjs-launcher": "^1.0.2", 36 | "mocha": "^3.1.0", 37 | "phantomjs-prebuilt": "^2.1.13", 38 | "webdriverio": "^4.6.1" 39 | } 40 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-palette/src/ax5palette.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5ui-palette/src/ax5palette.gif -------------------------------------------------------------------------------- /assets/lib/ax5ui-palette/src/ax5palette.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/ax5core/src/_ax5.scss"; 2 | 3 | @import "scss/ax5palette_variables"; 4 | @import "scss/ax5palette"; 5 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-palette/src/scss/_ax5palette_variables.scss: -------------------------------------------------------------------------------- 1 | //== palette 2 | 3 | $ax5palette-bg: (#FFFFFF, #FFFFFF) !default; 4 | $ax5palette-preview-padding: 3px 0 !default; 5 | $ax5palette-border-color: #B9BABC !default; 6 | $ax5palette-box-bg-color: #fff !default; 7 | $ax5palette-box-border-radius: 5px !default; 8 | $ax5palette-hover-color: #ccc !default; 9 | $ax5palette-hover-border-color: #B9BABC !default; 10 | $ax5palette-active-color: #0a68b4 !default; 11 | $ax5palette-active-border-color: #000 !default; -------------------------------------------------------------------------------- /assets/lib/ax5ui-picker/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-picker", 3 | "version": "1.4.128", 4 | "description": "A picker plugin that works with Bootstrap & jQuery", 5 | "authors": [ 6 | "ThomasJ " 7 | ], 8 | "main": "dist/ax5picker.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "picker", 16 | "ax5ui-picker", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "", 21 | "ax5core": ">=1.4.115", 22 | "ax5ui-calendar": "", 23 | "ax5ui-formatter": "", 24 | "ax5ui-palette": "" 25 | }, 26 | "license": "MIT", 27 | "homepage": "ax5.io" 28 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-picker/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-picker", 3 | "version": "1.4.128", 4 | "description": "A picker plugin that works with Bootstrap & jQuery", 5 | "license": "MIT", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/ax5ui/ax5ui-picker" 9 | }, 10 | "author": { 11 | "name": "Thomas Jang", 12 | "email": "tom@axisj.com", 13 | "url": "ax5.io" 14 | }, 15 | "keywords": [ 16 | "bootstrap", 17 | "jquery", 18 | "ax5ui", 19 | "plugin", 20 | "bootstrap jQuery plugins", 21 | "picker", 22 | "ax5ui-picker", 23 | "javascript ui" 24 | ], 25 | "scripts": { 26 | "test": "karma start karma.conf.js" 27 | }, 28 | "dependencies": { 29 | "jquery": "", 30 | "ax5core": ">=1.4.115", 31 | "ax5ui-calendar": "", 32 | "ax5ui-formatter": "", 33 | "ax5ui-palette": "" 34 | }, 35 | "devDependencies": { 36 | "karma": "^1.3.0", 37 | "karma-mocha": "^1.2.0", 38 | "karma-phantomjs-launcher": "^1.0.2", 39 | "mocha": "^3.1.0", 40 | "phantomjs-prebuilt": "^2.1.13", 41 | "webdriverio": "^4.6.1" 42 | } 43 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-picker/src/ax5picker.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/ax5core/src/_ax5.scss"; 2 | 3 | @import "scss/ax5picker_variables"; 4 | @import "scss/ax5picker"; -------------------------------------------------------------------------------- /assets/lib/ax5ui-select/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-select", 3 | "version": "1.4.128", 4 | "description": "A select plugin that works with Bootstrap & jQuery", 5 | "authors": [ 6 | "ThomasJ " 7 | ], 8 | "main": "dist/ax5select.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "select", 16 | "ax5ui-select", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "", 21 | "ax5core": ">=1.4.115" 22 | }, 23 | "license": "MIT", 24 | "homepage": "ax5.io" 25 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-select/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-select", 3 | "version": "1.4.128", 4 | "description": "A select plugin that works with Bootstrap & jQuery", 5 | "license": "MIT", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/ax5ui/ax5ui-select" 9 | }, 10 | "author": { 11 | "name": "Thomas Jang", 12 | "email": "tom@axisj.com", 13 | "url": "ax5.io" 14 | }, 15 | "keywords": [ 16 | "bootstrap", 17 | "jquery", 18 | "ax5ui", 19 | "plugin", 20 | "bootstrap jQuery plugins", 21 | "select", 22 | "ax5ui-select", 23 | "javascript ui" 24 | ], 25 | "scripts": { 26 | "test": "karma start karma.conf.js" 27 | }, 28 | "dependencies": { 29 | "jquery": "", 30 | "ax5core": ">=1.4.115" 31 | }, 32 | "devDependencies": { 33 | "karma": "^1.3.0", 34 | "karma-mocha": "^1.2.0", 35 | "karma-phantomjs-launcher": "^1.0.2", 36 | "mocha": "^3.1.0", 37 | "phantomjs-prebuilt": "^2.1.13", 38 | "webdriverio": "^4.6.1" 39 | } 40 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-select/src/ax5select.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/ax5core/src/_ax5.scss"; 2 | 3 | @import "scss/ax5select_variables"; 4 | @import "scss/ax5select"; -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-toast", 3 | "version": "1.4.128", 4 | "authors": [ 5 | "ThomasJ " 6 | ], 7 | "description": "", 8 | "main": "dist/ax5toast.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "toast", 16 | "ax5ui-toast", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "", 21 | "ax5core": ">=1.4.115" 22 | }, 23 | "license": "MIT", 24 | "homepage": "ax5.io" 25 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/ax5core/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5core", 3 | "version": "1.2.4", 4 | "authors": [ 5 | "ThomasJ " 6 | ], 7 | "description": "`ax5core` is a collection of utility functions that have been designed for use in ax5ui", 8 | "main": "dist/ax5core.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "ax5core", 16 | "javascript ui" 17 | ], 18 | "dependencies": { 19 | "jquery": "^1.11.0" 20 | }, 21 | "license": "MIT", 22 | "homepage": "ax5.io" 23 | } 24 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/ax5core/src/ax5-def.js: -------------------------------------------------------------------------------- 1 | ax5.def = {}; -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/bootstrap/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | Bootstrap uses [GitHub's Releases feature](https://github.com/blog/1547-release-your-software) for its changelogs. 2 | 3 | See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap. 4 | 5 | Release announcement posts on [the official Bootstrap blog](http://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release. 6 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/bootstrap/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap", 3 | "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.", 4 | "keywords": [ 5 | "css", 6 | "js", 7 | "less", 8 | "mobile-first", 9 | "responsive", 10 | "front-end", 11 | "framework", 12 | "web" 13 | ], 14 | "homepage": "http://getbootstrap.com", 15 | "license": "MIT", 16 | "moduleType": "globals", 17 | "main": [ 18 | "less/bootstrap.less", 19 | "dist/js/bootstrap.js" 20 | ], 21 | "ignore": [ 22 | "/.*", 23 | "_config.yml", 24 | "CNAME", 25 | "composer.json", 26 | "CONTRIBUTING.md", 27 | "docs", 28 | "js/tests", 29 | "test-infra" 30 | ], 31 | "dependencies": { 32 | "jquery": "1.9.1 - 3" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5ui-toast/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5ui-toast/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5ui-toast/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5ui-toast/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery", 3 | "main": "dist/jquery.js", 4 | "license": "MIT", 5 | "ignore": [ 6 | "package.json" 7 | ], 8 | "keywords": [ 9 | "jquery", 10 | "javascript", 11 | "browser", 12 | "library" 13 | ] 14 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/ajax/parseXML.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core" 3 | ], function( jQuery ) { 4 | 5 | // Cross-browser xml parsing 6 | jQuery.parseXML = function( data ) { 7 | var xml, tmp; 8 | if ( !data || typeof data !== "string" ) { 9 | return null; 10 | } 11 | try { 12 | if ( window.DOMParser ) { // Standard 13 | tmp = new window.DOMParser(); 14 | xml = tmp.parseFromString( data, "text/xml" ); 15 | } else { // IE 16 | xml = new window.ActiveXObject( "Microsoft.XMLDOM" ); 17 | xml.async = "false"; 18 | xml.loadXML( data ); 19 | } 20 | } catch ( e ) { 21 | xml = undefined; 22 | } 23 | if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) { 24 | jQuery.error( "Invalid XML: " + data ); 25 | } 26 | return xml; 27 | }; 28 | 29 | return jQuery.parseXML; 30 | 31 | } ); 32 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core" 3 | ], function( jQuery ) { 4 | return jQuery.now(); 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /\?/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/attributes.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./core", 3 | "./attributes/val", 4 | "./attributes/attr", 5 | "./attributes/prop", 6 | "./attributes/classes" 7 | ], function( jQuery ) { 8 | 9 | // Return jQuery for attributes-only inclusion 10 | return jQuery; 11 | } ); 12 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // Match a standalone tag 4 | return ( /^<([\w-]+)\s*\/?>(?:<\/\1>|)$/ ); 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/css/addGetHookIf.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | function addGetHookIf( conditionFn, hookFn ) { 4 | 5 | // Define the hook, we'll check on the first run if it's really needed. 6 | return { 7 | get: function() { 8 | if ( conditionFn() ) { 9 | 10 | // Hook not needed (or it's not possible to use it due 11 | // to missing dependency), remove it. 12 | delete this.get; 13 | return; 14 | } 15 | 16 | // Hook needed; redefine it so that the support test is not executed again. 17 | return ( this.get = hookFn ).apply( this, arguments ); 18 | } 19 | }; 20 | } 21 | 22 | return addGetHookIf; 23 | 24 | } ); 25 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return [ "Top", "Right", "Bottom", "Left" ]; 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/css/var/isHidden.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core", 3 | "../../selector" 4 | 5 | // css is assumed 6 | ], function( jQuery ) { 7 | 8 | return function( elem, el ) { 9 | 10 | // isHidden might be called from jQuery#filter function; 11 | // in that case, element will be second argument 12 | elem = el || elem; 13 | return jQuery.css( elem, "display" ) === "none" || 14 | !jQuery.contains( elem.ownerDocument, elem ); 15 | }; 16 | } ); 17 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^margin/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../var/pnum" 3 | ], function( pnum ) { 4 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/css/var/swap.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // A method for quickly swapping in/out CSS properties to get correct calculations. 4 | return function( elem, options, callback, args ) { 5 | var ret, name, 6 | old = {}; 7 | 8 | // Remember the old values, and insert the new ones 9 | for ( name in options ) { 10 | old[ name ] = elem.style[ name ]; 11 | elem.style[ name ] = options[ name ]; 12 | } 13 | 14 | ret = callback.apply( elem, args || [] ); 15 | 16 | // Revert the old values 17 | for ( name in options ) { 18 | elem.style[ name ] = old[ name ]; 19 | } 20 | 21 | return ret; 22 | }; 23 | 24 | } ); 25 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/data/support.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/document", 3 | "../var/support" 4 | ], function( document, support ) { 5 | 6 | ( function() { 7 | var div = document.createElement( "div" ); 8 | 9 | // Support: IE<9 10 | support.deleteExpando = true; 11 | try { 12 | delete div.test; 13 | } catch ( e ) { 14 | support.deleteExpando = false; 15 | } 16 | 17 | // Null elements to avoid leaks in IE. 18 | div = null; 19 | } )(); 20 | 21 | return support; 22 | 23 | } ); 24 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/data/var/acceptData.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core" 3 | ], function( jQuery ) { 4 | 5 | /** 6 | * Determines whether an object can have data 7 | */ 8 | return function( elem ) { 9 | var noData = jQuery.noData[ ( elem.nodeName + " " ).toLowerCase() ], 10 | nodeType = +elem.nodeType || 1; 11 | 12 | // Do not set data on non-element DOM nodes because it will not be cleared (#8335). 13 | return nodeType !== 1 && nodeType !== 9 ? 14 | false : 15 | 16 | // Nodes accept data unless otherwise specified; rejection can be conditional 17 | !noData || noData !== true && elem.getAttribute( "classid" ) === noData; 18 | }; 19 | 20 | } ); 21 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/deprecated.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./core", 3 | "./traversing" 4 | ], function( jQuery ) { 5 | 6 | jQuery.fn.extend( { 7 | 8 | bind: function( types, data, fn ) { 9 | return this.on( types, null, data, fn ); 10 | }, 11 | unbind: function( types, fn ) { 12 | return this.off( types, null, fn ); 13 | }, 14 | 15 | delegate: function( selector, types, data, fn ) { 16 | return this.on( types, selector, data, fn ); 17 | }, 18 | undelegate: function( selector, types, fn ) { 19 | 20 | // ( namespace ) or ( selector, types [, fn] ) 21 | return arguments.length === 1 ? 22 | this.off( selector, "**" ) : 23 | this.off( types, selector || "**", fn ); 24 | } 25 | } ); 26 | 27 | // The number of elements contained in the matched element set 28 | jQuery.fn.size = function() { 29 | return this.length; 30 | }; 31 | 32 | jQuery.fn.andSelf = jQuery.fn.addBack; 33 | 34 | } ); 35 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core", 3 | "../selector", 4 | "../effects" 5 | ], function( jQuery ) { 6 | 7 | jQuery.expr.filters.animated = function( elem ) { 8 | return jQuery.grep( jQuery.timers, function( fn ) { 9 | return elem === fn.elem; 10 | } ).length; 11 | }; 12 | 13 | } ); 14 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core", 3 | "../event" 4 | ], function( jQuery ) { 5 | 6 | // Attach a bunch of functions for handling common AJAX events 7 | jQuery.each( [ 8 | "ajaxStart", 9 | "ajaxStop", 10 | "ajaxComplete", 11 | "ajaxError", 12 | "ajaxSuccess", 13 | "ajaxSend" 14 | ], function( i, type ) { 15 | jQuery.fn[ type ] = function( fn ) { 16 | return this.on( type, fn ); 17 | }; 18 | } ); 19 | 20 | } ); 21 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/event/alias.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core", 3 | "../event" 4 | ], function( jQuery ) { 5 | 6 | jQuery.each( ( "blur focus focusin focusout load resize scroll unload click dblclick " + 7 | "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + 8 | "change select submit keydown keypress keyup error contextmenu" ).split( " " ), 9 | function( i, name ) { 10 | 11 | // Handle event binding 12 | jQuery.fn[ name ] = function( data, fn ) { 13 | return arguments.length > 0 ? 14 | this.on( name, null, data, fn ) : 15 | this.trigger( name ); 16 | }; 17 | } ); 18 | 19 | jQuery.fn.extend( { 20 | hover: function( fnOver, fnOut ) { 21 | return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); 22 | } 23 | } ); 24 | 25 | } ); 26 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/event/support.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/document", 3 | "../var/support" 4 | ], function( document, support ) { 5 | 6 | ( function() { 7 | var i, eventName, 8 | div = document.createElement( "div" ); 9 | 10 | // Support: IE<9 (lack submit/change bubble), Firefox (lack focus(in | out) events) 11 | for ( i in { submit: true, change: true, focusin: true } ) { 12 | eventName = "on" + i; 13 | 14 | if ( !( support[ i ] = eventName in window ) ) { 15 | 16 | // Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP) 17 | div.setAttribute( eventName, "t" ); 18 | support[ i ] = div.attributes[ eventName ].expando === false; 19 | } 20 | } 21 | 22 | // Null elements to avoid leaks in IE. 23 | div = null; 24 | } )(); 25 | 26 | return support; 27 | 28 | } ); 29 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/exports/global.js: -------------------------------------------------------------------------------- 1 | var 2 | 3 | // Map over jQuery in case of overwrite 4 | _jQuery = window.jQuery, 5 | 6 | // Map over the $ in case of overwrite 7 | _$ = window.$; 8 | 9 | jQuery.noConflict = function( deep ) { 10 | if ( window.$ === jQuery ) { 11 | window.$ = _$; 12 | } 13 | 14 | if ( deep && window.jQuery === jQuery ) { 15 | window.jQuery = _jQuery; 16 | } 17 | 18 | return jQuery; 19 | }; 20 | 21 | // Expose jQuery and $ identifiers, even in 22 | // AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557) 23 | // and CommonJS for browser emulators (#13566) 24 | if ( !noGlobal ) { 25 | window.jQuery = window.$ = jQuery; 26 | } 27 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/jquery.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./core", 3 | "./selector", 4 | "./traversing", 5 | "./callbacks", 6 | "./deferred", 7 | "./core/ready", 8 | "./support", 9 | "./data", 10 | "./queue", 11 | "./queue/delay", 12 | "./attributes", 13 | "./event", 14 | "./event/alias", 15 | "./manipulation", 16 | "./manipulation/_evalUrl", 17 | "./wrap", 18 | "./css", 19 | "./css/hiddenVisibleSelectors", 20 | "./serialize", 21 | "./ajax", 22 | "./ajax/xhr", 23 | "./ajax/script", 24 | "./ajax/jsonp", 25 | "./ajax/load", 26 | "./event/ajax", 27 | "./effects", 28 | "./effects/animatedSelector", 29 | "./offset", 30 | "./dimensions", 31 | "./deprecated", 32 | "./exports/amd" 33 | ], function( jQuery ) { 34 | 35 | return ( window.jQuery = window.$ = jQuery ); 36 | 37 | } ); 38 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/manipulation/_evalUrl.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../ajax" 3 | ], function( jQuery ) { 4 | 5 | jQuery._evalUrl = function( url ) { 6 | return jQuery.ajax( { 7 | url: url, 8 | 9 | // Make this explicit, since user can override this through ajaxSetup (#11264) 10 | type: "GET", 11 | dataType: "script", 12 | cache: true, 13 | async: false, 14 | global: false, 15 | "throws": true 16 | } ); 17 | }; 18 | 19 | return jQuery._evalUrl; 20 | 21 | } ); 22 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/manipulation/createSafeFragment.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./var/nodeNames" 3 | ], function( nodeNames ) { 4 | 5 | function createSafeFragment( document ) { 6 | var list = nodeNames.split( "|" ), 7 | safeFrag = document.createDocumentFragment(); 8 | 9 | if ( safeFrag.createElement ) { 10 | while ( list.length ) { 11 | safeFrag.createElement( 12 | list.pop() 13 | ); 14 | } 15 | } 16 | return safeFrag; 17 | } 18 | 19 | return createSafeFragment; 20 | } ); 21 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/manipulation/getAll.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core" 3 | ], function( jQuery ) { 4 | 5 | function getAll( context, tag ) { 6 | var elems, elem, 7 | i = 0, 8 | found = typeof context.getElementsByTagName !== "undefined" ? 9 | context.getElementsByTagName( tag || "*" ) : 10 | typeof context.querySelectorAll !== "undefined" ? 11 | context.querySelectorAll( tag || "*" ) : 12 | undefined; 13 | 14 | if ( !found ) { 15 | for ( found = [], elems = context.childNodes || context; 16 | ( elem = elems[ i ] ) != null; 17 | i++ 18 | ) { 19 | if ( !tag || jQuery.nodeName( elem, tag ) ) { 20 | found.push( elem ); 21 | } else { 22 | jQuery.merge( found, getAll( elem, tag ) ); 23 | } 24 | } 25 | } 26 | 27 | return tag === undefined || tag && jQuery.nodeName( context, tag ) ? 28 | jQuery.merge( [ context ], found ) : 29 | found; 30 | } 31 | 32 | return getAll; 33 | } ); 34 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/manipulation/setGlobalEval.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core" 3 | ], function( jQuery ) { 4 | 5 | // Mark scripts as having already been evaluated 6 | function setGlobalEval( elems, refElements ) { 7 | var elem, 8 | i = 0; 9 | for ( ; ( elem = elems[ i ] ) != null; i++ ) { 10 | jQuery._data( 11 | elem, 12 | "globalEval", 13 | !refElements || jQuery._data( refElements[ i ], "globalEval" ) 14 | ); 15 | } 16 | } 17 | 18 | return setGlobalEval; 19 | } ); 20 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/manipulation/var/nodeNames.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return "abbr|article|aside|audio|bdi|canvas|data|datalist|" + 3 | "details|dialog|figcaption|figure|footer|header|hgroup|main|" + 4 | "mark|meter|nav|output|picture|progress|section|summary|template|time|video"; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^(?:checkbox|radio)$/i ); 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/manipulation/var/rleadingWhitespace.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^\s+/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/manipulation/var/rscriptType.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^$|\/(?:java|ecma)script/i ); 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/manipulation/var/rtagName.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /<([\w:-]+)/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | return jQuery; 2 | })); 3 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core", 3 | "../queue", 4 | "../effects" // Delay is optional because of this dependency 5 | ], function( jQuery ) { 6 | 7 | // Based off of the plugin by Clint Helfers, with permission. 8 | // http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ 9 | jQuery.fn.delay = function( time, type ) { 10 | time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; 11 | type = type || "fx"; 12 | 13 | return this.queue( type, function( next, hooks ) { 14 | var timeout = window.setTimeout( next, time ); 15 | hooks.stop = function() { 16 | window.clearTimeout( timeout ); 17 | }; 18 | } ); 19 | }; 20 | 21 | return jQuery.fn.delay; 22 | } ); 23 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./core", 3 | "../external/sizzle/dist/sizzle" 4 | ], function( jQuery, Sizzle ) { 5 | 6 | jQuery.find = Sizzle; 7 | jQuery.expr = Sizzle.selectors; 8 | jQuery.expr[ ":" ] = jQuery.expr.pseudos; 9 | jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; 10 | jQuery.text = Sizzle.getText; 11 | jQuery.isXMLDoc = Sizzle.isXML; 12 | jQuery.contains = Sizzle.contains; 13 | 14 | } ); 15 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() {} ); 2 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/traversing/var/dir.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core" 3 | ], function( jQuery ) { 4 | 5 | return function( elem, dir, until ) { 6 | var matched = [], 7 | truncate = until !== undefined; 8 | 9 | while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { 10 | if ( elem.nodeType === 1 ) { 11 | if ( truncate && jQuery( elem ).is( until ) ) { 12 | break; 13 | } 14 | matched.push( elem ); 15 | } 16 | } 17 | return matched; 18 | }; 19 | 20 | } ); 21 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core", 3 | "../../selector" 4 | ], function( jQuery ) { 5 | return jQuery.expr.match.needsContext; 6 | } ); 7 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/traversing/var/siblings.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | return function( n, elem ) { 4 | var matched = []; 5 | 6 | for ( ; n; n = n.nextSibling ) { 7 | if ( n.nodeType === 1 && n !== elem ) { 8 | matched.push( n ); 9 | } 10 | } 11 | 12 | return matched; 13 | }; 14 | 15 | } ); 16 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // [[Class]] -> type pairs 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/var/concat.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./deletedIds" 3 | ], function( deletedIds ) { 4 | return deletedIds.concat; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/var/deletedIds.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/var/documentElement.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./document" 3 | ], function( document ) { 4 | return document.documentElement; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.hasOwnProperty; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./deletedIds" 3 | ], function( deletedIds ) { 4 | return deletedIds.indexOf; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/var/push.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./deletedIds" 3 | ], function( deletedIds ) { 4 | return deletedIds.push; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/pnum" 3 | ], function( pnum ) { 4 | 5 | return new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); 6 | 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /\S+/g ); 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/var/slice.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./deletedIds" 3 | ], function( deletedIds ) { 4 | return deletedIds.slice; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/var/support.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // All support tests are defined in their respective modules. 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/bower_components/jquery/src/var/toString.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.toString; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-toast", 3 | "version": "1.4.128", 4 | "description": "A toast plugin that works with Bootstrap & jQuery", 5 | "license": "MIT", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/ax5ui/ax5ui-toast" 9 | }, 10 | "author": { 11 | "name": "Thomas Jang", 12 | "email": "tom@axisj.com", 13 | "url": "ax5.io" 14 | }, 15 | "keywords": [ 16 | "bootstrap", 17 | "jquery", 18 | "ax5ui", 19 | "plugin", 20 | "bootstrap jQuery plugins", 21 | "dialog", 22 | "ax5ui-dialog", 23 | "javascript ui" 24 | ], 25 | "scripts": { 26 | "test": "karma start karma.conf.js" 27 | }, 28 | "dependencies": { 29 | "jquery": "", 30 | "ax5core": ">=1.4.115" 31 | }, 32 | "devDependencies": { 33 | "karma": "^1.3.0", 34 | "karma-mocha": "^1.2.0", 35 | "karma-phantomjs-launcher": "^1.0.2", 36 | "mocha": "^3.1.0", 37 | "phantomjs-prebuilt": "^2.1.13", 38 | "webdriverio": "^4.6.1" 39 | } 40 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-toast/src/ax5toast.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/ax5core/src/_ax5.scss"; 2 | 3 | @import "scss/ax5toast_variables"; 4 | @import "scss/ax5toast"; -------------------------------------------------------------------------------- /assets/lib/ax5ui-uploader/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-uploader", 3 | "version": "1.4.128", 4 | "description": "A uploader plugin that works with Bootstrap & jQuery", 5 | "authors": [ 6 | "ThomasJ " 7 | ], 8 | "main": "dist/ax5uploader.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "uploader", 16 | "ax5ui-uploader", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "", 21 | "ax5core": ">=1.4.115" 22 | }, 23 | "license": "MIT", 24 | "homepage": "ax5.io" 25 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-uploader/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-uploader", 3 | "version": "1.4.128", 4 | "description": "A uploader plugin that works with Bootstrap & jQuery", 5 | "license": "MIT", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/ax5ui/ax5ui-uploader" 9 | }, 10 | "author": { 11 | "name": "Thomas Jang", 12 | "email": "tom@axisj.com", 13 | "url": "ax5.io" 14 | }, 15 | "keywords": [ 16 | "bootstrap", 17 | "jquery", 18 | "ax5ui", 19 | "plugin", 20 | "bootstrap jQuery plugins", 21 | "uploader", 22 | "ax5ui-uploader", 23 | "javascript ui" 24 | ], 25 | "scripts": { 26 | "test": "karma start karma.conf.js" 27 | }, 28 | "dependencies": { 29 | "jquery": "", 30 | "ax5core": ">=1.4.115" 31 | }, 32 | "devDependencies": { 33 | "karma": "^1.3.0", 34 | "karma-mocha": "^1.2.0", 35 | "karma-phantomjs-launcher": "^1.0.2", 36 | "mocha": "^3.1.0", 37 | "phantomjs-prebuilt": "^2.1.13", 38 | "webdriverio": "^4.6.1" 39 | } 40 | } -------------------------------------------------------------------------------- /assets/lib/ax5ui-uploader/src/ax5uploader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/ax5ui-uploader/src/ax5uploader.gif -------------------------------------------------------------------------------- /assets/lib/ax5ui-uploader/src/ax5uploader.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/ax5core/src/_ax5.scss"; 2 | 3 | @import "scss/ax5uploader_variables"; 4 | @import "scss/ax5uploader"; 5 | 6 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap", 3 | "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.", 4 | "keywords": [ 5 | "css", 6 | "js", 7 | "less", 8 | "mobile-first", 9 | "responsive", 10 | "front-end", 11 | "framework", 12 | "web" 13 | ], 14 | "homepage": "http://getbootstrap.com", 15 | "license": "MIT", 16 | "moduleType": "globals", 17 | "main": [ 18 | "less/bootstrap.less", 19 | "dist/js/bootstrap.js" 20 | ], 21 | "ignore": [ 22 | "/.*", 23 | "_config.yml", 24 | "CNAME", 25 | "composer.json", 26 | "CONTRIBUTING.md", 27 | "docs", 28 | "js/tests", 29 | "test-infra" 30 | ], 31 | "dependencies": { 32 | "jquery": "1.9.1 - 2" 33 | }, 34 | "version": "3.3.6", 35 | "_release": "3.3.6", 36 | "_resolution": { 37 | "type": "version", 38 | "tag": "v3.3.6", 39 | "commit": "81df608a40bf0629a1dc08e584849bb1e43e0b7a" 40 | }, 41 | "_source": "git://github.com/twbs/bootstrap.git", 42 | "_target": "^3.3.6", 43 | "_originalSource": "bootstrap" 44 | } -------------------------------------------------------------------------------- /assets/lib/bootstrap/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | Bootstrap uses [GitHub's Releases feature](https://github.com/blog/1547-release-your-software) for its changelogs. 2 | 3 | See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap. 4 | 5 | Release announcement posts on [the official Bootstrap blog](http://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release. 6 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap", 3 | "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.", 4 | "keywords": [ 5 | "css", 6 | "js", 7 | "less", 8 | "mobile-first", 9 | "responsive", 10 | "front-end", 11 | "framework", 12 | "web" 13 | ], 14 | "homepage": "http://getbootstrap.com", 15 | "license": "MIT", 16 | "moduleType": "globals", 17 | "main": [ 18 | "less/bootstrap.less", 19 | "dist/js/bootstrap.js" 20 | ], 21 | "ignore": [ 22 | "/.*", 23 | "_config.yml", 24 | "CNAME", 25 | "composer.json", 26 | "CONTRIBUTING.md", 27 | "docs", 28 | "js/tests", 29 | "test-infra" 30 | ], 31 | "dependencies": { 32 | "jquery": "1.9.1 - 2" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /assets/lib/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/lib/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/lib/bootstrap/grunt/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends" : "../js/.jshintrc", 3 | "asi" : false, 4 | "browser" : false, 5 | "es3" : false, 6 | "node" : true 7 | } 8 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/js/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "asi" : true, 3 | "browser" : true, 4 | "eqeqeq" : false, 5 | "eqnull" : true, 6 | "es3" : true, 7 | "expr" : true, 8 | "jquery" : true, 9 | "latedef" : true, 10 | "laxbreak" : true, 11 | "nonbsp" : true, 12 | "strict" : true, 13 | "undef" : true, 14 | "unused" : true 15 | } 16 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/.csslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "adjoining-classes": false, 3 | "box-sizing": false, 4 | "box-model": false, 5 | "compatible-vendor-prefixes": false, 6 | "floats": false, 7 | "font-sizes": false, 8 | "gradients": false, 9 | "important": false, 10 | "known-properties": false, 11 | "outline-none": false, 12 | "qualified-headings": false, 13 | "regex-selectors": false, 14 | "shorthand": false, 15 | "text-indent": false, 16 | "unique-headings": false, 17 | "universal-selector": false, 18 | "unqualified-attributes": false 19 | } 20 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/breadcrumbs.less: -------------------------------------------------------------------------------- 1 | // 2 | // Breadcrumbs 3 | // -------------------------------------------------- 4 | 5 | 6 | .breadcrumb { 7 | padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal; 8 | margin-bottom: @line-height-computed; 9 | list-style: none; 10 | background-color: @breadcrumb-bg; 11 | border-radius: @border-radius-base; 12 | 13 | > li { 14 | display: inline-block; 15 | 16 | + li:before { 17 | content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space 18 | padding: 0 5px; 19 | color: @breadcrumb-color; 20 | } 21 | } 22 | 23 | > .active { 24 | color: @breadcrumb-active-color; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/close.less: -------------------------------------------------------------------------------- 1 | // 2 | // Close icons 3 | // -------------------------------------------------- 4 | 5 | 6 | .close { 7 | float: right; 8 | font-size: (@font-size-base * 1.5); 9 | font-weight: @close-font-weight; 10 | line-height: 1; 11 | color: @close-color; 12 | text-shadow: @close-text-shadow; 13 | .opacity(.2); 14 | 15 | &:hover, 16 | &:focus { 17 | color: @close-color; 18 | text-decoration: none; 19 | cursor: pointer; 20 | .opacity(.5); 21 | } 22 | 23 | // Additional properties for button version 24 | // iOS requires the button element instead of an anchor tag. 25 | // If you want the anchor version, it requires `href="#"`. 26 | // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile 27 | button& { 28 | padding: 0; 29 | cursor: pointer; 30 | background: transparent; 31 | border: 0; 32 | -webkit-appearance: none; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/component-animations.less: -------------------------------------------------------------------------------- 1 | // 2 | // Component animations 3 | // -------------------------------------------------- 4 | 5 | // Heads up! 6 | // 7 | // We don't use the `.opacity()` mixin here since it causes a bug with text 8 | // fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552. 9 | 10 | .fade { 11 | opacity: 0; 12 | .transition(opacity .15s linear); 13 | &.in { 14 | opacity: 1; 15 | } 16 | } 17 | 18 | .collapse { 19 | display: none; 20 | 21 | &.in { display: block; } 22 | tr&.in { display: table-row; } 23 | tbody&.in { display: table-row-group; } 24 | } 25 | 26 | .collapsing { 27 | position: relative; 28 | height: 0; 29 | overflow: hidden; 30 | .transition-property(~"height, visibility"); 31 | .transition-duration(.35s); 32 | .transition-timing-function(ease); 33 | } 34 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/mixins/alerts.less: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | .alert-variant(@background; @border; @text-color) { 4 | background-color: @background; 5 | border-color: @border; 6 | color: @text-color; 7 | 8 | hr { 9 | border-top-color: darken(@border, 5%); 10 | } 11 | .alert-link { 12 | color: darken(@text-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/mixins/background-variant.less: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | .bg-variant(@color) { 4 | background-color: @color; 5 | a&:hover, 6 | a&:focus { 7 | background-color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/mixins/border-radius.less: -------------------------------------------------------------------------------- 1 | // Single side border-radius 2 | 3 | .border-top-radius(@radius) { 4 | border-top-right-radius: @radius; 5 | border-top-left-radius: @radius; 6 | } 7 | .border-right-radius(@radius) { 8 | border-bottom-right-radius: @radius; 9 | border-top-right-radius: @radius; 10 | } 11 | .border-bottom-radius(@radius) { 12 | border-bottom-right-radius: @radius; 13 | border-bottom-left-radius: @radius; 14 | } 15 | .border-left-radius(@radius) { 16 | border-bottom-left-radius: @radius; 17 | border-top-left-radius: @radius; 18 | } 19 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/mixins/center-block.less: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | .center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/mixins/clearfix.less: -------------------------------------------------------------------------------- 1 | // Clearfix 2 | // 3 | // For modern browsers 4 | // 1. The space content is one way to avoid an Opera bug when the 5 | // contenteditable attribute is included anywhere else in the document. 6 | // Otherwise it causes space to appear at the top and bottom of elements 7 | // that are clearfixed. 8 | // 2. The use of `table` rather than `block` is only necessary if using 9 | // `:before` to contain the top-margins of child elements. 10 | // 11 | // Source: http://nicolasgallagher.com/micro-clearfix-hack/ 12 | 13 | .clearfix() { 14 | &:before, 15 | &:after { 16 | content: " "; // 1 17 | display: table; // 2 18 | } 19 | &:after { 20 | clear: both; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/mixins/hide-text.less: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | // 3 | // Heads up! v3 launched with only `.hide-text()`, but per our pattern for 4 | // mixins being reused as classes with the same name, this doesn't hold up. As 5 | // of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. 6 | // 7 | // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 8 | 9 | // Deprecated as of v3.0.1 (has been removed in v4) 10 | .hide-text() { 11 | font: ~"0/0" a; 12 | color: transparent; 13 | text-shadow: none; 14 | background-color: transparent; 15 | border: 0; 16 | } 17 | 18 | // New mixin to use as of v3.0.1 19 | .text-hide() { 20 | .hide-text(); 21 | } 22 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/mixins/labels.less: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | .label-variant(@color) { 4 | background-color: @color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken(@color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/mixins/list-group.less: -------------------------------------------------------------------------------- 1 | // List Groups 2 | 3 | .list-group-item-variant(@state; @background; @color) { 4 | .list-group-item-@{state} { 5 | color: @color; 6 | background-color: @background; 7 | 8 | a&, 9 | button& { 10 | color: @color; 11 | 12 | .list-group-item-heading { 13 | color: inherit; 14 | } 15 | 16 | &:hover, 17 | &:focus { 18 | color: @color; 19 | background-color: darken(@background, 5%); 20 | } 21 | &.active, 22 | &.active:hover, 23 | &.active:focus { 24 | color: #fff; 25 | background-color: @color; 26 | border-color: @color; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/mixins/nav-divider.less: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | .nav-divider(@color: #e5e5e5) { 6 | height: 1px; 7 | margin: ((@line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: @color; 10 | } 11 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- 1 | // Navbar vertical align 2 | // 3 | // Vertically center elements in the navbar. 4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin. 5 | 6 | .navbar-vertical-align(@element-height) { 7 | margin-top: ((@navbar-height - @element-height) / 2); 8 | margin-bottom: ((@navbar-height - @element-height) / 2); 9 | } 10 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/mixins/opacity.less: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | .opacity(@opacity) { 4 | opacity: @opacity; 5 | // IE8 filter 6 | @opacity-ie: (@opacity * 100); 7 | filter: ~"alpha(opacity=@{opacity-ie})"; 8 | } 9 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/mixins/pagination.less: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | .pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) { 4 | > li { 5 | > a, 6 | > span { 7 | padding: @padding-vertical @padding-horizontal; 8 | font-size: @font-size; 9 | line-height: @line-height; 10 | } 11 | &:first-child { 12 | > a, 13 | > span { 14 | .border-left-radius(@border-radius); 15 | } 16 | } 17 | &:last-child { 18 | > a, 19 | > span { 20 | .border-right-radius(@border-radius); 21 | } 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/mixins/panels.less: -------------------------------------------------------------------------------- 1 | // Panels 2 | 3 | .panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) { 4 | border-color: @border; 5 | 6 | & > .panel-heading { 7 | color: @heading-text-color; 8 | background-color: @heading-bg-color; 9 | border-color: @heading-border; 10 | 11 | + .panel-collapse > .panel-body { 12 | border-top-color: @border; 13 | } 14 | .badge { 15 | color: @heading-bg-color; 16 | background-color: @heading-text-color; 17 | } 18 | } 19 | & > .panel-footer { 20 | + .panel-collapse > .panel-body { 21 | border-bottom-color: @border; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/mixins/progress-bar.less: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | .progress-bar-variant(@color) { 4 | background-color: @color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | #gradient > .striped(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/mixins/reset-filter.less: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | .reset-filter() { 7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)")); 8 | } 9 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/mixins/reset-text.less: -------------------------------------------------------------------------------- 1 | .reset-text() { 2 | font-family: @font-family-base; 3 | // We deliberately do NOT reset font-size. 4 | font-style: normal; 5 | font-weight: normal; 6 | letter-spacing: normal; 7 | line-break: auto; 8 | line-height: @line-height-base; 9 | text-align: left; // Fallback for where `start` is not supported 10 | text-align: start; 11 | text-decoration: none; 12 | text-shadow: none; 13 | text-transform: none; 14 | white-space: normal; 15 | word-break: normal; 16 | word-spacing: normal; 17 | word-wrap: normal; 18 | } 19 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/mixins/resize.less: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | .resizable(@direction) { 4 | resize: @direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- 1 | // Responsive utilities 2 | 3 | // 4 | // More easily include all the states for responsive-utilities.less. 5 | .responsive-visibility() { 6 | display: block !important; 7 | table& { display: table !important; } 8 | tr& { display: table-row !important; } 9 | th&, 10 | td& { display: table-cell !important; } 11 | } 12 | 13 | .responsive-invisibility() { 14 | display: none !important; 15 | } 16 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | .size(@width; @height) { 4 | width: @width; 5 | height: @height; 6 | } 7 | 8 | .square(@size) { 9 | .size(@size; @size); 10 | } 11 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/mixins/tab-focus.less: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | .tab-focus() { 4 | // Default 5 | outline: thin dotted; 6 | // WebKit 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/mixins/table-row.less: -------------------------------------------------------------------------------- 1 | // Tables 2 | 3 | .table-row-variant(@state; @background) { 4 | // Exact selectors below required to override `.table-striped` and prevent 5 | // inheritance to nested tables. 6 | .table > thead > tr, 7 | .table > tbody > tr, 8 | .table > tfoot > tr { 9 | > td.@{state}, 10 | > th.@{state}, 11 | &.@{state} > td, 12 | &.@{state} > th { 13 | background-color: @background; 14 | } 15 | } 16 | 17 | // Hover states for `.table-hover` 18 | // Note: this is not available for cells or rows within `thead` or `tfoot`. 19 | .table-hover > tbody > tr { 20 | > td.@{state}:hover, 21 | > th.@{state}:hover, 22 | &.@{state}:hover > td, 23 | &:hover > .@{state}, 24 | &.@{state}:hover > th { 25 | background-color: darken(@background, 5%); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | .text-emphasis-variant(@color) { 4 | color: @color; 5 | a&:hover, 6 | a&:focus { 7 | color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/mixins/text-overflow.less: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | .text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/pager.less: -------------------------------------------------------------------------------- 1 | // 2 | // Pager pagination 3 | // -------------------------------------------------- 4 | 5 | 6 | .pager { 7 | padding-left: 0; 8 | margin: @line-height-computed 0; 9 | list-style: none; 10 | text-align: center; 11 | &:extend(.clearfix all); 12 | li { 13 | display: inline; 14 | > a, 15 | > span { 16 | display: inline-block; 17 | padding: 5px 14px; 18 | background-color: @pager-bg; 19 | border: 1px solid @pager-border; 20 | border-radius: @pager-border-radius; 21 | } 22 | 23 | > a:hover, 24 | > a:focus { 25 | text-decoration: none; 26 | background-color: @pager-hover-bg; 27 | } 28 | } 29 | 30 | .next { 31 | > a, 32 | > span { 33 | float: right; 34 | } 35 | } 36 | 37 | .previous { 38 | > a, 39 | > span { 40 | float: left; 41 | } 42 | } 43 | 44 | .disabled { 45 | > a, 46 | > a:hover, 47 | > a:focus, 48 | > span { 49 | color: @pager-disabled-color; 50 | background-color: @pager-bg; 51 | cursor: @cursor-disabled; 52 | } 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/responsive-embed.less: -------------------------------------------------------------------------------- 1 | // Embeds responsive 2 | // 3 | // Credit: Nicolas Gallagher and SUIT CSS. 4 | 5 | .embed-responsive { 6 | position: relative; 7 | display: block; 8 | height: 0; 9 | padding: 0; 10 | overflow: hidden; 11 | 12 | .embed-responsive-item, 13 | iframe, 14 | embed, 15 | object, 16 | video { 17 | position: absolute; 18 | top: 0; 19 | left: 0; 20 | bottom: 0; 21 | height: 100%; 22 | width: 100%; 23 | border: 0; 24 | } 25 | } 26 | 27 | // Modifier class for 16:9 aspect ratio 28 | .embed-responsive-16by9 { 29 | padding-bottom: 56.25%; 30 | } 31 | 32 | // Modifier class for 4:3 aspect ratio 33 | .embed-responsive-4by3 { 34 | padding-bottom: 75%; 35 | } 36 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/thumbnails.less: -------------------------------------------------------------------------------- 1 | // 2 | // Thumbnails 3 | // -------------------------------------------------- 4 | 5 | 6 | // Mixin and adjust the regular image class 7 | .thumbnail { 8 | display: block; 9 | padding: @thumbnail-padding; 10 | margin-bottom: @line-height-computed; 11 | line-height: @line-height-base; 12 | background-color: @thumbnail-bg; 13 | border: 1px solid @thumbnail-border; 14 | border-radius: @thumbnail-border-radius; 15 | .transition(border .2s ease-in-out); 16 | 17 | > img, 18 | a > img { 19 | &:extend(.img-responsive); 20 | margin-left: auto; 21 | margin-right: auto; 22 | } 23 | 24 | // Add a hover state for linked versions only 25 | a&:hover, 26 | a&:focus, 27 | a&.active { 28 | border-color: @link-color; 29 | } 30 | 31 | // Image captions 32 | .caption { 33 | padding: @thumbnail-caption-padding; 34 | color: @thumbnail-caption-color; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/utilities.less: -------------------------------------------------------------------------------- 1 | // 2 | // Utility classes 3 | // -------------------------------------------------- 4 | 5 | 6 | // Floats 7 | // ------------------------- 8 | 9 | .clearfix { 10 | .clearfix(); 11 | } 12 | .center-block { 13 | .center-block(); 14 | } 15 | .pull-right { 16 | float: right !important; 17 | } 18 | .pull-left { 19 | float: left !important; 20 | } 21 | 22 | 23 | // Toggling content 24 | // ------------------------- 25 | 26 | // Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1 27 | .hide { 28 | display: none !important; 29 | } 30 | .show { 31 | display: block !important; 32 | } 33 | .invisible { 34 | visibility: hidden; 35 | } 36 | .text-hide { 37 | .text-hide(); 38 | } 39 | 40 | 41 | // Hide from screenreaders and browsers 42 | // 43 | // Credit: HTML5 Boilerplate 44 | 45 | .hidden { 46 | display: none !important; 47 | } 48 | 49 | 50 | // For Affix plugin 51 | // ------------------------- 52 | 53 | .affix { 54 | position: fixed; 55 | } 56 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/less/wells.less: -------------------------------------------------------------------------------- 1 | // 2 | // Wells 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .well { 8 | min-height: 20px; 9 | padding: 19px; 10 | margin-bottom: 20px; 11 | background-color: @well-bg; 12 | border: 1px solid @well-border; 13 | border-radius: @border-radius-base; 14 | .box-shadow(inset 0 1px 1px rgba(0,0,0,.05)); 15 | blockquote { 16 | border-color: #ddd; 17 | border-color: rgba(0,0,0,.15); 18 | } 19 | } 20 | 21 | // Sizes 22 | .well-lg { 23 | padding: 24px; 24 | border-radius: @border-radius-large; 25 | } 26 | .well-sm { 27 | padding: 9px; 28 | border-radius: @border-radius-small; 29 | } 30 | -------------------------------------------------------------------------------- /assets/lib/bootstrap/nuget/MyGet.ps1: -------------------------------------------------------------------------------- 1 | $nuget = $env:NuGet 2 | 3 | #parse the version number out of package.json 4 | $bsversion = ((Get-Content $env:SourcesPath\package.json) -join "`n" | ConvertFrom-Json).version 5 | 6 | #create packages 7 | & $nuget pack "nuget\bootstrap.nuspec" -Verbosity detailed -NonInteractive -NoPackageAnalysis -BasePath $env:SourcesPath -Version $bsversion 8 | & $nuget pack "nuget\bootstrap.less.nuspec" -Verbosity detailed -NonInteractive -NoPackageAnalysis -BasePath $env:SourcesPath -Version $bsversion -------------------------------------------------------------------------------- /assets/lib/bootstrap/package.js: -------------------------------------------------------------------------------- 1 | // package metadata file for Meteor.js 2 | 3 | /* jshint strict:false */ 4 | /* global Package:true */ 5 | 6 | Package.describe({ 7 | name: 'twbs:bootstrap', // http://atmospherejs.com/twbs/bootstrap 8 | summary: 'The most popular front-end framework for developing responsive, mobile first projects on the web.', 9 | version: '3.3.6', 10 | git: 'https://github.com/twbs/bootstrap.git' 11 | }); 12 | 13 | Package.onUse(function (api) { 14 | api.versionsFrom('METEOR@1.0'); 15 | api.use('jquery', 'client'); 16 | var assets = [ 17 | 'dist/fonts/glyphicons-halflings-regular.eot', 18 | 'dist/fonts/glyphicons-halflings-regular.svg', 19 | 'dist/fonts/glyphicons-halflings-regular.ttf', 20 | 'dist/fonts/glyphicons-halflings-regular.woff', 21 | 'dist/fonts/glyphicons-halflings-regular.woff2' 22 | ]; 23 | if (api.addAssets) { 24 | api.addAssets(assets, 'client'); 25 | } else { 26 | api.addFiles(assets, 'client', { isAsset: true }); 27 | } 28 | api.addFiles([ 29 | 'dist/css/bootstrap.css', 30 | 'dist/js/bootstrap.js' 31 | ], 'client'); 32 | }); 33 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "font-awesome", 3 | "description": "Font Awesome", 4 | "keywords": [], 5 | "homepage": "http://fontawesome.io", 6 | "dependencies": {}, 7 | "devDependencies": {}, 8 | "license": [ 9 | "OFL-1.1", 10 | "MIT", 11 | "CC-BY-3.0" 12 | ], 13 | "main": [ 14 | "less/font-awesome.less", 15 | "scss/font-awesome.scss" 16 | ], 17 | "ignore": [ 18 | "*/.*", 19 | "*.json", 20 | "src", 21 | "*.yml", 22 | "Gemfile", 23 | "Gemfile.lock", 24 | "*.md" 25 | ], 26 | "version": "4.5.0", 27 | "_release": "4.5.0", 28 | "_resolution": { 29 | "type": "version", 30 | "tag": "v4.5.0", 31 | "commit": "593ad563a987977f14102be935d0abc2a172903e" 32 | }, 33 | "_source": "git://github.com/FortAwesome/Font-Awesome.git", 34 | "_target": "*", 35 | "_originalSource": "font-awesome" 36 | } -------------------------------------------------------------------------------- /assets/lib/font-awesome/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg-info 3 | *.db 4 | *.db.old 5 | *.swp 6 | *.db-journal 7 | 8 | .coverage 9 | .DS_Store 10 | .installed.cfg 11 | _gh_pages/* 12 | 13 | .idea/* 14 | .svn/* 15 | src/website/static/* 16 | src/website/media/* 17 | 18 | bin 19 | cfcache 20 | develop-eggs 21 | dist 22 | downloads 23 | eggs 24 | parts 25 | tmp 26 | .sass-cache 27 | node_modules 28 | 29 | src/website/settingslocal.py 30 | stunnel.log 31 | 32 | .ruby-version 33 | .bundle 34 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/.npmignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg-info 3 | *.db 4 | *.db.old 5 | *.swp 6 | *.db-journal 7 | 8 | .coverage 9 | .DS_Store 10 | .installed.cfg 11 | _gh_pages/* 12 | 13 | .idea/* 14 | .svn/* 15 | src/website/static/* 16 | src/website/media/* 17 | 18 | bin 19 | cfcache 20 | develop-eggs 21 | dist 22 | downloads 23 | eggs 24 | parts 25 | tmp 26 | .sass-cache 27 | node_modules 28 | 29 | src/website/settingslocal.py 30 | stunnel.log 31 | 32 | .ruby-version 33 | 34 | # don't need these in the npm package. 35 | src/ 36 | _config.yml 37 | bower.json 38 | component.json 39 | composer.json 40 | CONTRIBUTING.md 41 | Gemfile 42 | Gemfile.lock 43 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/HELP-US-OUT.txt: -------------------------------------------------------------------------------- 1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, 2 | Fonticons (https://fonticons.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, 3 | comprehensive icon sets or copy and paste your own. 4 | 5 | Please. Check it out. 6 | 7 | -Dave Gandy 8 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "font-awesome", 3 | "description": "Font Awesome", 4 | "keywords": [], 5 | "homepage": "http://fontawesome.io", 6 | "dependencies": {}, 7 | "devDependencies": {}, 8 | "license": ["OFL-1.1", "MIT", "CC-BY-3.0"], 9 | "main": [ 10 | "less/font-awesome.less", 11 | "scss/font-awesome.scss" 12 | ], 13 | "ignore": [ 14 | "*/.*", 15 | "*.json", 16 | "src", 17 | "*.yml", 18 | "Gemfile", 19 | "Gemfile.lock", 20 | "*.md" 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/lib/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/lib/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/lib/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/lib/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/assets/lib/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/lib/font-awesome/less/animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .@{fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix} { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .@{fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/less/mixins.less: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------- 3 | 4 | .fa-icon() { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | 14 | .fa-icon-rotate(@degrees, @rotation) { 15 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation); 16 | -webkit-transform: rotate(@degrees); 17 | -ms-transform: rotate(@degrees); 18 | transform: rotate(@degrees); 19 | } 20 | 21 | .fa-icon-flip(@horiz, @vert, @rotation) { 22 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation, mirror=1); 23 | -webkit-transform: scale(@horiz, @vert); 24 | -ms-transform: scale(@horiz, @vert); 25 | transform: scale(@horiz, @vert); 26 | } 27 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), 9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .#{$fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/scss/_mixins.scss: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------- 3 | 4 | @mixin fa-icon() { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | 14 | @mixin fa-icon-rotate($degrees, $rotation) { 15 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}); 16 | -webkit-transform: rotate($degrees); 17 | -ms-transform: rotate($degrees); 18 | transform: rotate($degrees); 19 | } 20 | 21 | @mixin fa-icon-flip($horiz, $vert, $rotation) { 22 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}); 23 | -webkit-transform: scale($horiz, $vert); 24 | -ms-transform: scale($horiz, $vert); 25 | transform: scale($horiz, $vert); 26 | } 27 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), 9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /assets/lib/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /assets/lib/prettify/lang-go.js: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Copyright (C) 2010 Google Inc. 4 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); 6 | you may not use this file except in compliance with the License. 7 | You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | */ 17 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["pln",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])+(?:'|$)|`[^`]*(?:`|$))/,null,"\"'"]],[["com",/^(?:\/\/[^\n\r]*|\/\*[\S\s]*?\*\/)/],["pln",/^(?:[^"'/`]|\/(?![*/]))+/]]),["go"]); 18 | -------------------------------------------------------------------------------- /assets/lib/prettify/lang-latex.js: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Copyright (C) 2011 Martin S. 4 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); 6 | you may not use this file except in compliance with the License. 7 | You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | */ 17 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["com",/^%[^\n\r]*/,null,"%"]],[["kwd",/^\\[@-Za-z]+/],["kwd",/^\\./],["typ",/^[$&]/],["lit",/[+-]?(?:\.\d+|\d+(?:\.\d*)?)(cm|em|ex|in|pc|pt|bp|mm)/i],["pun",/^[()=[\]{}]+/]]),["latex","tex"]); 18 | -------------------------------------------------------------------------------- /assets/lib/prettify/lang-ll.js: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Copyright (C) 2013 Nikhil Dabas 4 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); 6 | you may not use this file except in compliance with the License. 7 | You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | */ 17 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^!?"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["com",/^;[^\n\r]*/,null,";"]],[["pln",/^[!%@](?:[$\-.A-Z_a-z][\w$\-.]*|\d+)/],["kwd",/^[^\W\d]\w*/,null],["lit",/^\d+\.\d+/],["lit",/^(?:\d+|0[Xx][\dA-Fa-f]+)/],["pun",/^[(-*,:<->[\]{}]|\.\.\.$/]]),["llvm","ll"]); 18 | -------------------------------------------------------------------------------- /assets/lib/prettify/lang-llvm.js: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Copyright (C) 2013 Nikhil Dabas 4 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); 6 | you may not use this file except in compliance with the License. 7 | You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | */ 17 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^!?"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["com",/^;[^\n\r]*/,null,";"]],[["pln",/^[!%@](?:[$\-.A-Z_a-z][\w$\-.]*|\d+)/],["kwd",/^[^\W\d]\w*/,null],["lit",/^\d+\.\d+/],["lit",/^(?:\d+|0[Xx][\dA-Fa-f]+)/],["pun",/^[(-*,:<->[\]{}]|\.\.\.$/]]),["llvm","ll"]); 18 | -------------------------------------------------------------------------------- /assets/lib/prettify/lang-proto.js: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Copyright (C) 2006 Google Inc. 4 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); 6 | you may not use this file except in compliance with the License. 7 | You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | */ 17 | PR.registerLangHandler(PR.sourceDecorator({keywords:"bytes,default,double,enum,extend,extensions,false,group,import,max,message,option,optional,package,repeated,required,returns,rpc,service,syntax,to,true",types:/^(bool|(double|s?fixed|[su]?int)(32|64)|float|string)\b/,cStyleComments:!0}),["proto"]); 18 | -------------------------------------------------------------------------------- /assets/lib/prettify/lang-rd.js: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Copyright (C) 2012 Jeffrey Arnold 4 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); 6 | you may not use this file except in compliance with the License. 7 | You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | */ 17 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["com",/^%[^\n\r]*/,null,"%"]],[["lit",/^\\(?:cr|l?dots|R|tab)\b/],["kwd",/^\\[@-Za-z]+/],["kwd",/^#(?:ifn?def|endif)/],["pln",/^\\[{}]/],["pun",/^[()[\]{}]+/]]),["Rd","rd"]); 18 | -------------------------------------------------------------------------------- /assets/lib/prettify/lang-tex.js: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Copyright (C) 2011 Martin S. 4 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); 6 | you may not use this file except in compliance with the License. 7 | You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | */ 17 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["com",/^%[^\n\r]*/,null,"%"]],[["kwd",/^\\[@-Za-z]+/],["kwd",/^\\./],["typ",/^[$&]/],["lit",/[+-]?(?:\.\d+|\d+(?:\.\d*)?)(cm|em|ex|in|pc|pt|bp|mm)/i],["pun",/^[()=[\]{}]+/]]),["latex","tex"]); 18 | -------------------------------------------------------------------------------- /assets/lib/prettify/lang-yaml.js: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Copyright (C) 2015 ribrdb @ code.google.com 4 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); 6 | you may not use this file except in compliance with the License. 7 | You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | */ 17 | var a=null; 18 | PR.registerLangHandler(PR.createSimpleLexer([["pun",/^[:>?|]+/,a,":|>?"],["dec",/^%(?:YAML|TAG)[^\n\r#]+/,a,"%"],["typ",/^&\S+/,a,"&"],["typ",/^!\S*/,a,"!"],["str",/^"(?:[^"\\]|\\.)*(?:"|$)/,a,'"'],["str",/^'(?:[^']|'')*(?:'|$)/,a,"'"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^\s+/,a," \t\r\n"]],[["dec",/^(?:---|\.\.\.)(?:[\n\r]|$)/],["pun",/^-/],["kwd",/^[\w-]+:[\n\r ]/],["pln",/^\w+/]]),["yaml","yml"]); 19 | -------------------------------------------------------------------------------- /assets/lib/prettify/lang-yml.js: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Copyright (C) 2015 ribrdb @ code.google.com 4 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); 6 | you may not use this file except in compliance with the License. 7 | You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | */ 17 | var a=null; 18 | PR.registerLangHandler(PR.createSimpleLexer([["pun",/^[:>?|]+/,a,":|>?"],["dec",/^%(?:YAML|TAG)[^\n\r#]+/,a,"%"],["typ",/^&\S+/,a,"&"],["typ",/^!\S*/,a,"!"],["str",/^"(?:[^"\\]|\\.)*(?:"|$)/,a,'"'],["str",/^'(?:[^']|'')*(?:'|$)/,a,"'"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^\s+/,a," \t\r\n"]],[["dec",/^(?:---|\.\.\.)(?:[\n\r]|$)/],["pun",/^-/],["kwd",/^[\w-]+:[\n\r ]/],["pln",/^\w+/]]),["yaml","yml"]); 19 | -------------------------------------------------------------------------------- /assets/lib/prettify/prettify.css: -------------------------------------------------------------------------------- 1 | .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} -------------------------------------------------------------------------------- /assets/lib/prettify/skins/desert.css: -------------------------------------------------------------------------------- 1 | pre.prettyprint{display:block;background-color:#333}pre .nocode{background-color:none;color:#000}pre .str{color:#ffa0a0}pre .kwd{color:#f0e68c;font-weight:bold}pre .com{color:#87ceeb}pre .typ{color:#98fb98}pre .lit{color:#cd5c5c}pre .pun{color:#fff}pre .pln{color:#fff}pre .tag{color:#f0e68c;font-weight:bold}pre .atn{color:#bdb76b;font-weight:bold}pre .atv{color:#ffa0a0}pre .dec{color:#98fb98}ol.linenums{margin-top:0;margin-bottom:0;color:#aeaeae}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}@media print{pre.prettyprint{background-color:none}pre .str,code .str{color:#060}pre .kwd,code .kwd{color:#006;font-weight:bold}pre .com,code .com{color:#600;font-style:italic}pre .typ,code .typ{color:#404;font-weight:bold}pre .lit,code .lit{color:#044}pre .pun,code .pun{color:#440}pre .pln,code .pln{color:#000}pre .tag,code .tag{color:#006;font-weight:bold}pre .atn,code .atn{color:#404}pre .atv,code .atv{color:#060}} -------------------------------------------------------------------------------- /assets/lib/prettify/skins/sons-of-obsidian.css: -------------------------------------------------------------------------------- 1 | .str{color:#ec7600}.kwd{color:#93c763}.com{color:#66747b}.typ{color:#678cb1}.lit{color:#facd22}.pun{color:#f1f2f3}.pln{color:#f1f2f3}.tag{color:#8ac763}.atn{color:#e0e2e4}.atv{color:#ec7600}.dec{color:purple}pre.prettyprint{border:0 solid #888}ol.linenums{margin-top:0;margin-bottom:0}.prettyprint{background:#000}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{color:#555;list-style-type:decimal}li.L1,li.L3,li.L5,li.L7,li.L9{background:#111}@media print{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun{color:#440}.pln{color:#000}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}} -------------------------------------------------------------------------------- /ax5ui-autocomplete/_inc/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/ax5ui-autocomplete/_inc/include.html -------------------------------------------------------------------------------- /ax5ui-binder/_inc/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/ax5ui-binder/_inc/include.html -------------------------------------------------------------------------------- /ax5ui-calendar/_inc/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/ax5ui-calendar/_inc/include.html -------------------------------------------------------------------------------- /ax5ui-combobox/_inc/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/ax5ui-combobox/_inc/include.html -------------------------------------------------------------------------------- /ax5ui-dialog/_inc/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/ax5ui-dialog/_inc/include.html -------------------------------------------------------------------------------- /ax5ui-docker/_inc/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/ax5ui-docker/_inc/include.html -------------------------------------------------------------------------------- /ax5ui-docker/src/ax5docker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/ax5ui-docker/src/ax5docker.gif -------------------------------------------------------------------------------- /ax5ui-formatter/_inc/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/ax5ui-formatter/_inc/include.html -------------------------------------------------------------------------------- /ax5ui-grid/_inc/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/ax5ui-grid/_inc/include.html -------------------------------------------------------------------------------- /ax5ui-grid/src/ax5grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/ax5ui-grid/src/ax5grid.gif -------------------------------------------------------------------------------- /ax5ui-layout/_inc/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/ax5ui-layout/_inc/include.html -------------------------------------------------------------------------------- /ax5ui-mask/_inc/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/ax5ui-mask/_inc/include.html -------------------------------------------------------------------------------- /ax5ui-media-viewer/_inc/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/ax5ui-media-viewer/_inc/include.html -------------------------------------------------------------------------------- /ax5ui-menu/_inc/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/ax5ui-menu/_inc/include.html -------------------------------------------------------------------------------- /ax5ui-menu/src/ax5menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/ax5ui-menu/src/ax5menu.gif -------------------------------------------------------------------------------- /ax5ui-modal/_inc/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/ax5ui-modal/_inc/include.html -------------------------------------------------------------------------------- /ax5ui-palette/_inc/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/ax5ui-palette/_inc/include.html -------------------------------------------------------------------------------- /ax5ui-palette/src/ax5palette.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/ax5ui-palette/src/ax5palette.gif -------------------------------------------------------------------------------- /ax5ui-picker/_inc/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/ax5ui-picker/_inc/include.html -------------------------------------------------------------------------------- /ax5ui-select/_inc/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/ax5ui-select/_inc/include.html -------------------------------------------------------------------------------- /ax5ui-toast/_inc/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/ax5ui-toast/_inc/include.html -------------------------------------------------------------------------------- /ax5ui-uploader/_inc/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/ax5ui-uploader/_inc/include.html -------------------------------------------------------------------------------- /ax5ui-uploader/src/ax5uploader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ax5ui/ax5docs/95e0562844789bef256a1a6ffb533f744d370a1d/ax5ui-uploader/src/ax5uploader.gif -------------------------------------------------------------------------------- /marko-taglib.json: -------------------------------------------------------------------------------- 1 | { 2 | "tags-dir": "assets/components" 3 | } --------------------------------------------------------------------------------