├── yarn.lock ├── snippets ├── plugin │ ├── grid │ │ └── demo │ │ │ └── 1-base │ │ │ ├── 说明.md │ │ │ ├── widget.html │ │ │ └── widget.js │ ├── time │ │ ├── demo │ │ │ └── base │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.css │ │ │ │ └── widget.html │ │ └── base.md │ ├── year │ │ ├── demo │ │ │ └── base │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.css │ │ │ │ └── widget.html │ │ └── base.md │ ├── loading │ │ ├── demo │ │ │ └── base │ │ │ │ ├── 说明.md │ │ │ │ └── widget.html │ │ └── base.md │ ├── combobox │ │ └── demo │ │ │ ├── base │ │ │ ├── 说明.md │ │ │ ├── codeWidget.js │ │ │ ├── widget.js │ │ │ ├── widget.html │ │ │ └── codeWidget.html │ │ │ └── base-1 │ │ │ ├── 说明.md │ │ │ ├── codeWidget.js │ │ │ ├── widget.js │ │ │ ├── widget.html │ │ │ └── codeWidget.html │ ├── menu │ │ ├── demo │ │ │ ├── 1-left │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.css │ │ │ │ └── widget.html │ │ │ └── 1-right │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.css │ │ │ │ └── widget.html │ │ └── base.md │ ├── clockpicker │ │ ├── demo │ │ │ └── base │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.css │ │ │ │ └── widget.html │ │ └── base.md │ ├── jspagination │ │ ├── demo │ │ │ ├── 1-base │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.html │ │ │ │ └── widget.js │ │ │ └── 3-gapPa │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.html │ │ │ │ └── widget.js │ │ └── base.md │ ├── jstooltip │ │ ├── demo │ │ │ ├── 1-base │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.html │ │ │ │ ├── widget.css │ │ │ │ └── widget.js │ │ │ └── 1-batch │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.js │ │ │ │ ├── widget.html │ │ │ │ └── widget.css │ │ └── base.md │ ├── jsmessage │ │ ├── demo │ │ │ └── 1-base │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.html │ │ │ │ └── widget.js │ │ └── base.md │ ├── jsprogress │ │ ├── demo │ │ │ ├── 1-baseProgress │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.html │ │ │ │ └── widget.js │ │ │ ├── 1-indeterProgress │ │ │ │ ├── 说明.md │ │ │ │ └── widget.html │ │ │ └── 1-lazyProgress │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.html │ │ │ │ └── widget.js │ │ └── base.md │ ├── jsrating │ │ ├── demo │ │ │ └── 1-baseRating │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.html │ │ │ │ ├── widget.css │ │ │ │ └── widget.js │ │ └── base.md │ ├── month │ │ ├── demo │ │ │ └── base │ │ │ │ ├── 说明.md │ │ │ │ ├── codeWidget.html │ │ │ │ └── widget.html │ │ └── base.md │ ├── jstabs │ │ ├── demo │ │ │ ├── 1-bgTabs │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.css │ │ │ │ └── widget.html │ │ │ └── 1-lineTabs │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.css │ │ │ │ └── widget.html │ │ └── base.md │ ├── jsrefer │ │ ├── demo │ │ │ └── 1-base │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.html │ │ │ │ └── widget.js │ │ └── base.md │ ├── monthdate │ │ ├── demo │ │ │ └── base │ │ │ │ ├── 说明.md │ │ │ │ ├── codeWidget.html │ │ │ │ ├── widget.css │ │ │ │ └── widget.html │ │ └── base.md │ ├── yearmonth │ │ ├── demo │ │ │ └── base │ │ │ │ ├── 说明.md │ │ │ │ ├── codeWidget.html │ │ │ │ ├── widget.css │ │ │ │ └── widget.html │ │ └── base.md │ ├── date │ │ └── demo │ │ │ └── base │ │ │ ├── 说明.md │ │ │ ├── widget.html │ │ │ └── codeWidget.html │ ├── checkbox │ │ ├── demo │ │ │ ├── 1-base │ │ │ │ ├── 说明.md │ │ │ │ ├── codeWidget.html │ │ │ │ └── widget.html │ │ │ └── 3-colorCheckbox │ │ │ │ ├── codeWidget.html │ │ │ │ ├── 说明.md │ │ │ │ └── widget.html │ │ └── base.md │ ├── jsmodal │ │ ├── demo │ │ │ └── 1-customModal │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.js │ │ │ │ └── widget.html │ │ └── base.md │ ├── radio │ │ ├── demo │ │ │ ├── 1-base │ │ │ │ ├── 说明.md │ │ │ │ ├── codeWidget.html │ │ │ │ └── widget.html │ │ │ └── 2-colorRadio │ │ │ │ ├── 说明.md │ │ │ │ ├── codeWidget.html │ │ │ │ └── widget.html │ │ └── base.md │ ├── jsswitch │ │ └── demo │ │ │ ├── 3-size │ │ │ ├── 说明.md │ │ │ ├── codeWidget.html │ │ │ └── widget.html │ │ │ ├── 1-base │ │ │ ├── 说明.md │ │ │ ├── codeWidget.html │ │ │ └── widget.html │ │ │ └── 2-color │ │ │ ├── 说明.md │ │ │ ├── codeWidget.html │ │ │ └── widget.html │ ├── gridCustom │ │ └── base.md │ └── SUMMARY.md ├── component │ ├── navbar │ │ ├── demo │ │ │ └── 1-base │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.css │ │ │ │ ├── widget.js │ │ │ │ └── codeWidget.js │ │ └── base.md │ ├── panel │ │ ├── base.md │ │ └── demo │ │ │ ├── 1-bodyPanle │ │ │ ├── 说明.md │ │ │ └── widget.html │ │ │ ├── 1-bothPanel │ │ │ ├── 说明.md │ │ │ └── widget.html │ │ │ ├── 1-headPanel │ │ │ ├── 说明.md │ │ │ └── widget.html │ │ │ └── 1-footerPanel │ │ │ ├── 说明.md │ │ │ └── widget.html │ ├── dropdown │ │ ├── base.md │ │ └── demo │ │ │ ├── 1-iconleft │ │ │ ├── 说明.md │ │ │ ├── widget.css │ │ │ └── widget.html │ │ │ ├── 3-colorMenuBtn │ │ │ └── 说明.md │ │ │ ├── 4-splitBtn │ │ │ ├── 说明.md │ │ │ └── widget.html │ │ │ └── 5-noBorderBtn │ │ │ ├── widget.html │ │ │ └── 说明.md │ ├── inputgroup │ │ ├── demo │ │ │ ├── 1-base │ │ │ │ ├── 说明.md │ │ │ │ └── widget.html │ │ │ ├── 2-size │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.css │ │ │ │ └── widget.html │ │ │ ├── 3-checkradio │ │ │ │ ├── 说明.md │ │ │ │ └── widget.html │ │ │ └── 4-dropdown │ │ │ │ ├── 说明.md │ │ │ │ └── widget.html │ │ └── base.md │ ├── listgroup │ │ ├── demo │ │ │ ├── 1-base │ │ │ │ ├── 说明.md │ │ │ │ └── widget.html │ │ │ ├── 2-badge │ │ │ │ ├── 说明.md │ │ │ │ └── widget.html │ │ │ └── 2-link │ │ │ │ ├── 说明.md │ │ │ │ └── widget.html │ │ └── base.md │ ├── media │ │ ├── demo │ │ │ ├── 1-base │ │ │ │ ├── 说明.md │ │ │ │ └── widget.html │ │ │ ├── 2-nest │ │ │ │ ├── 说明.md │ │ │ │ └── widget.html │ │ │ └── 3-align │ │ │ │ ├── widget.css │ │ │ │ └── 说明.md │ │ └── base.md │ ├── menu │ │ ├── demo │ │ │ ├── 1-left │ │ │ │ ├── 说明.md │ │ │ │ ├── 说明.txt │ │ │ │ ├── widget.css │ │ │ │ └── widget.html │ │ │ └── 1-right │ │ │ │ ├── 说明.md │ │ │ │ ├── 说明.txt │ │ │ │ ├── widget.css │ │ │ │ └── widget.html │ │ └── base.md │ ├── pagination │ │ ├── demo │ │ │ ├── 1-base │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.html │ │ │ │ └── widget.js │ │ │ ├── 3-gapPa │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.html │ │ │ │ └── widget.js │ │ │ ├── 4-sizePa │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.html │ │ │ │ └── widget.js │ │ │ └── 2-noBorderPa │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.html │ │ │ │ └── widget.js │ │ └── base.md │ ├── breadcrumb │ │ ├── demo │ │ │ ├── 2-base │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.css │ │ │ │ └── widget.html │ │ │ ├── 1-base │ │ │ │ ├── 说明.md │ │ │ │ └── widget.html │ │ │ └── 1-base-icon │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.css │ │ │ │ └── widget.html │ │ └── base.md │ ├── buttongroup │ │ ├── demo │ │ │ ├── 1-base │ │ │ │ ├── 说明.md │ │ │ │ └── widget.html │ │ │ ├── 2-nest │ │ │ │ ├── 说明.md │ │ │ │ └── widget.html │ │ │ └── 3-size │ │ │ │ ├── widget.css │ │ │ │ ├── 说明.md │ │ │ │ └── widget.html │ │ └── base.md │ ├── tooltip │ │ ├── demo │ │ │ ├── 1-staticTooltip │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.css │ │ │ │ └── widget.html │ │ │ └── 1-staticcolorTooltip │ │ │ │ ├── 说明.md │ │ │ │ ├── widget.css │ │ │ │ └── widget.html │ │ └── base.md │ ├── gallery │ │ ├── base.md │ │ └── demo │ │ │ ├── 1-base │ │ │ └── 说明.md │ │ │ ├── 2-overlay │ │ │ └── 说明.md │ │ │ ├── 3-border │ │ │ ├── 说明.md │ │ │ └── widget.css │ │ │ └── 4-imgborder │ │ │ └── 说明.md │ ├── message │ │ ├── base.md │ │ └── demo │ │ │ ├── 1-darkIcon │ │ │ ├── 说明.md │ │ │ ├── widget.css │ │ │ └── widget.html │ │ │ ├── 1-base │ │ │ ├── widget.css │ │ │ ├── 说明.md │ │ │ └── widget.html │ │ │ └── 2-clickDemo │ │ │ └── widget.js │ ├── SUMMARY.md │ └── README.md └── global │ ├── input │ ├── base.md │ └── demo │ │ ├── 2-hasfeedback │ │ ├── 说明.md │ │ └── widget.html │ │ ├── 1-unable │ │ ├── 说明.md │ │ └── widget.html │ │ ├── 1-base │ │ ├── 说明.md │ │ └── widget.html │ │ └── 2-validate │ │ ├── 说明.md │ │ ├── widget.html │ │ └── widget.js │ ├── label │ ├── base.md │ └── demo │ │ ├── 1-base │ │ ├── 说明.md │ │ └── widget.html │ │ ├── 2-circleLabel │ │ ├── 说明.md │ │ └── widget.html │ │ ├── 3-outlineLabel │ │ ├── 说明.md │ │ └── widget.html │ │ └── 4-sizeLabel │ │ ├── 说明.md │ │ └── widget.html │ ├── icon │ ├── demo │ │ └── 1-demo │ │ │ ├── 说明.md │ │ │ └── widget.css │ └── base.md │ ├── badge │ ├── demo │ │ ├── 2-iconBadge │ │ │ ├── 说明.md │ │ │ ├── widget.css │ │ │ └── widget.html │ │ └── 1-base │ │ │ ├── widget.css │ │ │ ├── 说明.md │ │ │ └── widget.html │ └── base.md │ ├── button │ ├── demo │ │ ├── 3-blockBtn │ │ │ ├── 说明.md │ │ │ ├── codeWidget.html │ │ │ └── widget.html │ │ ├── 1-base │ │ │ ├── codeWidget.html │ │ │ ├── 说明.md │ │ │ └── widget.html │ │ ├── 2-sizeBtn │ │ │ ├── codeWidget.html │ │ │ ├── 说明.md │ │ │ └── widget.html │ │ └── 4-radiusBtn │ │ │ ├── codeWidget.html │ │ │ ├── 说明.md │ │ │ └── widget.html │ └── base.md │ ├── utilities │ ├── demo │ │ ├── 1-align-centerBlock │ │ │ ├── 说明.md │ │ │ └── widget.html │ │ ├── 1-align-vertical │ │ │ ├── widget.css │ │ │ ├── 说明.md │ │ │ └── widget.html │ │ ├── 2-text-wrapping │ │ │ ├── widget.css │ │ │ ├── 说明.md │ │ │ └── widget.html │ │ ├── 1-align-float │ │ │ ├── 说明.md │ │ │ └── widget.html │ │ ├── 2-text-transform │ │ │ ├── 说明.md │ │ │ └── widget.html │ │ ├── 4-other-display │ │ │ └── 说明.md │ │ ├── 2-text-align │ │ │ ├── 说明.md │ │ │ └── widget.html │ │ ├── 3-box-width │ │ │ └── 说明.md │ │ ├── 3-box-margin │ │ │ └── 说明.md │ │ ├── 2-text-font-weight │ │ │ └── 说明.md │ │ ├── 3-box-height │ │ │ └── 说明.md │ │ ├── 3-box-padding │ │ │ └── 说明.md │ │ ├── 2-text-font-size │ │ │ └── 说明.md │ │ └── 4-other-visibility │ │ │ └── 说明.md │ └── base.md │ ├── image │ ├── base.md │ └── demo │ │ ├── 1-baseImg │ │ ├── 说明.md │ │ └── widget.html │ │ └── 1-borderImg │ │ ├── 说明.md │ │ └── widget.html │ ├── table │ ├── demo │ │ ├── 1-border │ │ │ └── 说明.md │ │ ├── 1-base │ │ │ └── 说明.md │ │ ├── 1-nomal │ │ │ ├── 说明.md │ │ │ └── widget.html │ │ ├── 1-zebra │ │ │ └── 说明.md │ │ └── 1-hover │ │ │ └── 说明.md │ └── base.md │ ├── layout │ ├── demo │ │ ├── 1-base │ │ │ ├── 说明.md │ │ │ ├── widget.css │ │ │ └── widget.html │ │ ├── 1-response │ │ │ ├── 说明.md │ │ │ ├── widget.css │ │ │ └── widget.html │ │ ├── 2-col -order │ │ │ ├── 说明.md │ │ │ ├── widget.css │ │ │ └── widget.html │ │ ├── 1-response-reset │ │ │ ├── 说明.md │ │ │ ├── widget.css │ │ │ └── widget.html │ │ ├── 2-col -nest │ │ │ ├── 说明.md │ │ │ ├── widget.css │ │ │ └── widget.html │ │ └── 2-col -offset │ │ │ ├── 说明.md │ │ │ ├── widget.css │ │ │ └── widget.html │ └── base.md │ ├── SUMMARY.md │ └── README.md ├── .npmignore ├── fonts ├── iconfont.eot ├── iconfont.ttf └── iconfont.woff ├── vendor ├── images │ ├── close.png │ ├── diy │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ ├── 1_close.png │ │ └── 1_open.png │ ├── loading.gif │ ├── itemcancel.png │ ├── line_conn.gif │ ├── zTreeStandard.gif │ └── zTreeStandard.png ├── font-awesome │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 └── css │ └── rating.scss ├── docs ├── 新增组件说明 │ └── 自定义组件demo │ │ ├── vendor │ │ └── uui │ │ │ ├── images │ │ │ ├── close.png │ │ │ ├── diy │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ ├── 9.png │ │ │ │ ├── 1_open.png │ │ │ │ └── 1_close.png │ │ │ ├── loading.gif │ │ │ ├── itemcancel.png │ │ │ ├── line_conn.gif │ │ │ ├── zTreeStandard.gif │ │ │ └── zTreeStandard.png │ │ │ ├── fonts │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.ttf │ │ │ ├── FontAwesome.otf │ │ │ ├── iconfont.woff │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ └── font-awesome │ │ │ │ └── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ └── js │ │ │ ├── 3.3.min.js │ │ │ └── 3.3.js │ │ ├── custom.html │ │ └── custom.js ├── global │ ├── SUMMARY.md │ ├── README.md │ ├── typography.md │ ├── image.md │ └── badge.md ├── component │ ├── SUMMARY.md │ └── README.md └── plugin │ ├── gridCustom.md │ ├── loading.md │ ├── SUMMARY.md │ ├── month.md │ ├── time.md │ ├── year.md │ ├── clockpicker.md │ ├── monthdate.md │ └── yearmonth.md ├── _config.yml ├── .github ├── PULL_REQUEST_TEMPLATE.md └── ISSUE_TEMPLATE.md ├── .travis.yml ├── scss ├── core │ ├── minxin-themeColors.scss │ ├── util-shadow.scss │ ├── set-mobile.scss │ ├── util-ripple.scss │ └── set-global.scss ├── unuse │ ├── time.scss │ └── iscroll-improve.scss ├── ui │ ├── neoui-collapse.scss │ ├── neoui-layout.slidepanel.scss │ ├── neoui-nav.scss │ ├── neoui-avatar.scss │ ├── neoui-rating.scss │ ├── neoui-autocomplete.scss │ ├── neoui-breadcrumbs.scss │ └── neoui-img.scss ├── images │ ├── buffer.svg │ ├── tick.svg │ └── tick-mask.svg └── core.scss ├── bin └── utool.js ├── bower.json ├── test └── widget.js ├── .gitignore ├── .babelrc ├── rollup.config.js ├── LICENSE ├── version.js ├── lib └── neoui-button.js └── examples └── global ├── utilities3-box-height.html ├── utilities3-box-margin.html └── utilities3-box-padding.html /yarn.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippets/plugin/grid/demo/1-base/说明.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippets/plugin/time/demo/base/说明.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippets/plugin/year/demo/base/说明.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippets/component/navbar/demo/1-base/说明.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippets/component/panel/base.md: -------------------------------------------------------------------------------- 1 | ## 面板 2 | -------------------------------------------------------------------------------- /snippets/global/input/base.md: -------------------------------------------------------------------------------- 1 | ## 输入框 2 | -------------------------------------------------------------------------------- /snippets/global/label/base.md: -------------------------------------------------------------------------------- 1 | ## 标签 2 | -------------------------------------------------------------------------------- /snippets/plugin/loading/demo/base/说明.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | docs/ 2 | node_modules/ 3 | .babelrc 4 | -------------------------------------------------------------------------------- /snippets/component/dropdown/base.md: -------------------------------------------------------------------------------- 1 | ## dropdown 2 | -------------------------------------------------------------------------------- /snippets/component/inputgroup/demo/1-base/说明.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /snippets/component/inputgroup/demo/2-size/说明.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /snippets/global/icon/demo/1-demo/说明.md: -------------------------------------------------------------------------------- 1 | #### 具体的图标 2 | -------------------------------------------------------------------------------- /snippets/plugin/combobox/demo/base/说明.md: -------------------------------------------------------------------------------- 1 | ### 基础 2 | -------------------------------------------------------------------------------- /snippets/plugin/menu/demo/1-left/说明.md: -------------------------------------------------------------------------------- 1 | ### 左边menu 2 | -------------------------------------------------------------------------------- /snippets/component/inputgroup/demo/3-checkradio/说明.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /snippets/component/inputgroup/demo/4-dropdown/说明.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /snippets/component/listgroup/demo/1-base/说明.md: -------------------------------------------------------------------------------- 1 | ### 基础 2 | -------------------------------------------------------------------------------- /snippets/component/media/demo/1-base/说明.md: -------------------------------------------------------------------------------- 1 | ### 默认样式 2 | -------------------------------------------------------------------------------- /snippets/component/menu/demo/1-left/说明.md: -------------------------------------------------------------------------------- 1 | ### 左边menu 2 | -------------------------------------------------------------------------------- /snippets/component/menu/demo/1-right/说明.md: -------------------------------------------------------------------------------- 1 | ### 右边menu 2 | -------------------------------------------------------------------------------- /snippets/component/pagination/demo/1-base/说明.md: -------------------------------------------------------------------------------- 1 | ### 基础 2 | -------------------------------------------------------------------------------- /snippets/component/panel/demo/1-bodyPanle/说明.md: -------------------------------------------------------------------------------- 1 | ### 基础 2 | -------------------------------------------------------------------------------- /snippets/global/input/demo/2-hasfeedback/说明.md: -------------------------------------------------------------------------------- 1 | ### 带后缀 2 | -------------------------------------------------------------------------------- /snippets/plugin/menu/demo/1-right/说明.md: -------------------------------------------------------------------------------- 1 | ### 右边menu 2 | -------------------------------------------------------------------------------- /snippets/component/breadcrumb/demo/2-base/说明.md: -------------------------------------------------------------------------------- 1 | ### 其他分隔符 2 | -------------------------------------------------------------------------------- /snippets/component/buttongroup/demo/1-base/说明.md: -------------------------------------------------------------------------------- 1 | ### 基础 2 | -------------------------------------------------------------------------------- /snippets/component/listgroup/demo/2-badge/说明.md: -------------------------------------------------------------------------------- 1 | ### 带图标 2 | -------------------------------------------------------------------------------- /snippets/component/listgroup/demo/2-link/说明.md: -------------------------------------------------------------------------------- 1 | ### 列表是链接 2 | -------------------------------------------------------------------------------- /snippets/component/panel/demo/1-bothPanel/说明.md: -------------------------------------------------------------------------------- 1 | ### 带标题和注脚 2 | -------------------------------------------------------------------------------- /snippets/component/panel/demo/1-headPanel/说明.md: -------------------------------------------------------------------------------- 1 | ### 带标题的面板 2 | -------------------------------------------------------------------------------- /snippets/plugin/clockpicker/demo/base/说明.md: -------------------------------------------------------------------------------- 1 | ### clockpicker 2 | -------------------------------------------------------------------------------- /snippets/plugin/jspagination/demo/1-base/说明.md: -------------------------------------------------------------------------------- 1 | ### 基础分页 2 | -------------------------------------------------------------------------------- /snippets/plugin/jstooltip/demo/1-base/说明.md: -------------------------------------------------------------------------------- 1 | ### 普通tooltip 2 | -------------------------------------------------------------------------------- /snippets/component/dropdown/demo/1-iconleft/说明.md: -------------------------------------------------------------------------------- 1 | ### 左边menu 2 | -------------------------------------------------------------------------------- /snippets/component/menu/demo/1-left/说明.txt: -------------------------------------------------------------------------------- 1 | 可以通过添加其它类,来修改基础menu的样式 -------------------------------------------------------------------------------- /snippets/component/menu/demo/1-right/说明.txt: -------------------------------------------------------------------------------- 1 | 可以通过添加其它类,来修改基础menu的样式 -------------------------------------------------------------------------------- /snippets/component/panel/demo/1-footerPanel/说明.md: -------------------------------------------------------------------------------- 1 | ### 带注脚的面板 2 | -------------------------------------------------------------------------------- /snippets/component/tooltip/demo/1-staticTooltip/说明.md: -------------------------------------------------------------------------------- 1 | ### 方向 2 | -------------------------------------------------------------------------------- /snippets/plugin/jsmessage/demo/1-base/说明.md: -------------------------------------------------------------------------------- 1 | 点击 Success 弹出提示消息 2 | -------------------------------------------------------------------------------- /snippets/plugin/jstooltip/demo/1-batch/说明.md: -------------------------------------------------------------------------------- 1 | ### 批量生成tooltip 2 | -------------------------------------------------------------------------------- /snippets/component/tooltip/demo/1-staticcolorTooltip/说明.md: -------------------------------------------------------------------------------- 1 | ### 预定义样式 2 | -------------------------------------------------------------------------------- /snippets/plugin/jsprogress/demo/1-baseProgress/说明.md: -------------------------------------------------------------------------------- 1 | ### 基本Progress 2 | -------------------------------------------------------------------------------- /snippets/component/breadcrumb/demo/1-base/说明.md: -------------------------------------------------------------------------------- 1 | ### 基础 2 | 3 | "/"为分隔符 4 | -------------------------------------------------------------------------------- /snippets/plugin/jsprogress/demo/1-indeterProgress/说明.md: -------------------------------------------------------------------------------- 1 | ### 不确定Progress 2 | -------------------------------------------------------------------------------- /snippets/component/buttongroup/demo/2-nest/说明.md: -------------------------------------------------------------------------------- 1 | ### 嵌套 2 | 3 | 按钮组里嵌套下拉菜单 4 | -------------------------------------------------------------------------------- /snippets/component/listgroup/base.md: -------------------------------------------------------------------------------- 1 | ## 列表组 2 | 3 | 多个列表条目的无序列表,我们提供了一些预定义的样式 4 | -------------------------------------------------------------------------------- /snippets/global/input/demo/1-unable/说明.md: -------------------------------------------------------------------------------- 1 | ### 禁止输入 2 | 在普通输入框中添加`disabled` 属性 3 | -------------------------------------------------------------------------------- /snippets/plugin/jsrating/demo/1-baseRating/说明.md: -------------------------------------------------------------------------------- 1 | ### 基础Rating 2 | 3 | 常用于评级评分 4 | -------------------------------------------------------------------------------- /snippets/plugin/menu/demo/1-left/widget.css: -------------------------------------------------------------------------------- 1 | .example{ 2 | padding-left: 30px; 3 | } -------------------------------------------------------------------------------- /snippets/plugin/month/demo/base/说明.md: -------------------------------------------------------------------------------- 1 | 定义样式为`u-month`的div父元素,包裹样式为`u-input`的input元素。 -------------------------------------------------------------------------------- /snippets/component/gallery/base.md: -------------------------------------------------------------------------------- 1 | ## 图片画廊 2 | 3 | 由图片与简明文字组成。预定了几个常用场景,用户可自定义。 4 | -------------------------------------------------------------------------------- /snippets/component/media/base.md: -------------------------------------------------------------------------------- 1 | ## 媒体对象 2 | 3 | 允许在一个内容块的左边或右边展示一个多媒体内容(图像、视频、音频) 4 | -------------------------------------------------------------------------------- /snippets/component/menu/demo/1-left/widget.css: -------------------------------------------------------------------------------- 1 | .example{ 2 | padding-left: 30px; 3 | } -------------------------------------------------------------------------------- /snippets/component/menu/demo/1-right/widget.css: -------------------------------------------------------------------------------- 1 | .example{ 2 | padding-left: 30px; 3 | } -------------------------------------------------------------------------------- /snippets/global/input/demo/1-base/说明.md: -------------------------------------------------------------------------------- 1 | ### 基础 2 | 在普通的input元素上添加`u-form-control`样式 3 | -------------------------------------------------------------------------------- /snippets/plugin/combobox/demo/base-1/说明.md: -------------------------------------------------------------------------------- 1 | ### 多选下拉框 2 | 添加 `mutil-select`样式 支持多选 3 | -------------------------------------------------------------------------------- /snippets/plugin/jstabs/demo/1-bgTabs/说明.md: -------------------------------------------------------------------------------- 1 | ### 背景tabs 2 | 3 | 切换 背景色跟随作为`active`状态 4 | -------------------------------------------------------------------------------- /snippets/plugin/jstabs/demo/1-lineTabs/说明.md: -------------------------------------------------------------------------------- 1 | ### 线性tabs 2 | 3 | 切换 线性跟随作为`active`状态 4 | -------------------------------------------------------------------------------- /snippets/plugin/menu/demo/1-right/widget.css: -------------------------------------------------------------------------------- 1 | .example{ 2 | padding-left: 30px; 3 | } -------------------------------------------------------------------------------- /snippets/plugin/jsprogress/demo/1-lazyProgress/说明.md: -------------------------------------------------------------------------------- 1 | ### 缓冲Progress 2 | 3 | 有缓冲标识的进度条 4 | -------------------------------------------------------------------------------- /snippets/plugin/jsrefer/demo/1-base/说明.md: -------------------------------------------------------------------------------- 1 | ### 参照示例 2 | 3 | 点击id为`referdom`元素的按钮,弹出参照层 4 | -------------------------------------------------------------------------------- /snippets/plugin/monthdate/demo/base/说明.md: -------------------------------------------------------------------------------- 1 | 定义样式为`u-monthdate`的div父元素,包裹样式为`u-input`的input元素。 -------------------------------------------------------------------------------- /snippets/plugin/yearmonth/demo/base/说明.md: -------------------------------------------------------------------------------- 1 | 定义样式为`u-yearmonth`的div父元素,包裹样式为`u-input`的input元素。 -------------------------------------------------------------------------------- /fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuap-design/tinper-neoui/HEAD/fonts/iconfont.eot -------------------------------------------------------------------------------- /fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuap-design/tinper-neoui/HEAD/fonts/iconfont.ttf -------------------------------------------------------------------------------- /fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuap-design/tinper-neoui/HEAD/fonts/iconfont.woff -------------------------------------------------------------------------------- /snippets/component/breadcrumb/demo/1-base-icon/说明.md: -------------------------------------------------------------------------------- 1 | ### 图标面包屑 2 | 3 | "/"为分隔符,并添加Home icon 4 | -------------------------------------------------------------------------------- /snippets/component/dropdown/demo/1-iconleft/widget.css: -------------------------------------------------------------------------------- 1 | .example{ 2 | padding-left: 30px; 3 | } -------------------------------------------------------------------------------- /snippets/component/gallery/demo/1-base/说明.md: -------------------------------------------------------------------------------- 1 | ### 默认 2 | `u-gallery` 后跟上 `u-gallery-default` 3 | -------------------------------------------------------------------------------- /snippets/component/pagination/demo/3-gapPa/说明.md: -------------------------------------------------------------------------------- 1 | ### 有间距 2 | 添加样式`pagination-gap`可以增加页码之间的间距 3 | -------------------------------------------------------------------------------- /snippets/component/tooltip/base.md: -------------------------------------------------------------------------------- 1 | ## tooltip控件 2 | 3 | 当您想要描述一个链接的时候,提示工具(Tooltip)就显得非常有用。 4 | -------------------------------------------------------------------------------- /snippets/global/badge/demo/2-iconBadge/说明.md: -------------------------------------------------------------------------------- 1 | ### 绝对定位标记 2 | 用于推送消息或提醒时,在标签dom元素中添加添加具体的图标即可。 3 | -------------------------------------------------------------------------------- /snippets/global/button/demo/3-blockBtn/说明.md: -------------------------------------------------------------------------------- 1 | ### 块级按钮 2 | 3 | 如果想按钮充满,添加样式 `.u-button-block`。 4 | -------------------------------------------------------------------------------- /snippets/plugin/jspagination/demo/3-gapPa/说明.md: -------------------------------------------------------------------------------- 1 | ### 有间距的分页 2 | 添加样式`pagination-gap`可以增加页码之间的间距 3 | -------------------------------------------------------------------------------- /snippets/plugin/jsprogress/demo/1-baseProgress/widget.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /snippets/plugin/jsprogress/demo/1-lazyProgress/widget.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippets/component/gallery/demo/2-overlay/说明.md: -------------------------------------------------------------------------------- 1 | ### 悬浮标题 2 | `u-gallery` 后跟上 `u-gallery-overlay` 3 | -------------------------------------------------------------------------------- /snippets/component/gallery/demo/3-border/说明.md: -------------------------------------------------------------------------------- 1 | ### 容器边框 2 | `u-gallery` 后跟上 `u-gallery-bordered` 3 | -------------------------------------------------------------------------------- /snippets/global/badge/demo/1-base/widget.css: -------------------------------------------------------------------------------- 1 | .demo .u-badge{ 2 | display: inline-block; 3 | } 4 | -------------------------------------------------------------------------------- /snippets/global/badge/demo/2-iconBadge/widget.css: -------------------------------------------------------------------------------- 1 | .demo .u-badge{ 2 | display: inline-block; 3 | } -------------------------------------------------------------------------------- /snippets/global/label/demo/1-base/说明.md: -------------------------------------------------------------------------------- 1 | ### 预定义样式 2 | 3 | 不同背景具有相应的样式名 4 | 例如 u-tab-default 默认灰色 5 | -------------------------------------------------------------------------------- /snippets/global/label/demo/2-circleLabel/说明.md: -------------------------------------------------------------------------------- 1 | ### 圆角 2 | 3 | 4 | `span` 标签上添加样式 `u-tag-round` 5 | -------------------------------------------------------------------------------- /snippets/global/label/demo/3-outlineLabel/说明.md: -------------------------------------------------------------------------------- 1 | ### 边框标签 2 | 3 | `span` 标签上添加样式 `u-tag-outline` 4 | -------------------------------------------------------------------------------- /snippets/global/utilities/demo/1-align-centerBlock/说明.md: -------------------------------------------------------------------------------- 1 | ### 块级元素水平居中 2 | 添加`.center-block`实现水平居中 3 | -------------------------------------------------------------------------------- /snippets/component/gallery/demo/3-border/widget.css: -------------------------------------------------------------------------------- 1 | .example-content .u-button-group{ 2 | margin: 5px; 3 | } -------------------------------------------------------------------------------- /snippets/component/gallery/demo/4-imgborder/说明.md: -------------------------------------------------------------------------------- 1 | ### 图片边框 2 | `u-gallery` 后跟上 `u-gallery-imgbordered` 3 | -------------------------------------------------------------------------------- /snippets/component/media/demo/2-nest/说明.md: -------------------------------------------------------------------------------- 1 | ### 嵌套 2 | 3 | 媒体对象里嵌套媒体对象,只要整要嵌套的媒体对象放在父的`media-body`标签里 4 | -------------------------------------------------------------------------------- /snippets/component/media/demo/3-align/widget.css: -------------------------------------------------------------------------------- 1 | .example-content .u-button-group{ 2 | margin: 5px; 3 | } -------------------------------------------------------------------------------- /snippets/component/pagination/demo/1-base/widget.html: -------------------------------------------------------------------------------- 1 |