├── .gitignore ├── .gitlab-ci.yml ├── .npmignore ├── LICENSE ├── README.md ├── components ├── accordion-group │ └── index.ux ├── accordion │ └── index.ux ├── action-sheet │ └── index.ux ├── ad │ └── index.ux ├── ad2 │ └── index.ux ├── alert │ └── index.ux ├── avatar │ └── index.ux ├── badge │ └── index.ux ├── barcode │ ├── barcode │ │ ├── JsBarcode.js │ │ ├── barcodes │ │ │ ├── Barcode.js │ │ │ ├── CODE128 │ │ │ │ ├── CODE128.js │ │ │ │ ├── CODE128A.js │ │ │ │ ├── CODE128B.js │ │ │ │ ├── CODE128C.js │ │ │ │ ├── CODE128_AUTO.js │ │ │ │ ├── auto.js │ │ │ │ ├── constants.js │ │ │ │ └── index.js │ │ │ ├── CODE39 │ │ │ │ └── index.js │ │ │ ├── EAN_UPC │ │ │ │ ├── EAN.js │ │ │ │ ├── EAN13.js │ │ │ │ ├── EAN2.js │ │ │ │ ├── EAN5.js │ │ │ │ ├── EAN8.js │ │ │ │ ├── UPC.js │ │ │ │ ├── UPCE.js │ │ │ │ ├── constants.js │ │ │ │ ├── encoder.js │ │ │ │ └── index.js │ │ │ ├── GenericBarcode │ │ │ │ └── index.js │ │ │ ├── ITF │ │ │ │ ├── ITF.js │ │ │ │ ├── ITF14.js │ │ │ │ ├── constants.js │ │ │ │ └── index.js │ │ │ ├── MSI │ │ │ │ ├── MSI.js │ │ │ │ ├── MSI10.js │ │ │ │ ├── MSI1010.js │ │ │ │ ├── MSI11.js │ │ │ │ ├── MSI1110.js │ │ │ │ ├── checksums.js │ │ │ │ └── index.js │ │ │ ├── codabar │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── pharmacode │ │ │ │ └── index.js │ │ ├── exceptions │ │ │ ├── ErrorHandler.js │ │ │ └── exceptions.js │ │ ├── help │ │ │ ├── fixOptions.js │ │ │ ├── getOptionsFromElement.js │ │ │ ├── getRenderProperties.js │ │ │ ├── linearizeEncodings.js │ │ │ ├── merge.js │ │ │ └── optionsFromStrings.js │ │ ├── options │ │ │ └── defaults.js │ │ └── renderers │ │ │ ├── canvas.js │ │ │ ├── index.js │ │ │ └── shared.js │ └── index.ux ├── button │ └── index.ux ├── calendar │ └── index.ux ├── card │ └── index.ux ├── charts │ ├── qacharts-min.js │ ├── qacharts-min.js.map │ ├── qacharts.js │ └── qacharts.js.map ├── checkbox-group │ └── index.ux ├── checkbox │ └── index.ux ├── circle │ └── index.ux ├── city-cascader │ ├── data.js │ └── index.ux ├── common │ └── scripts │ │ └── util.js ├── countdown │ └── index.js ├── counter │ └── index.js ├── dialog │ └── index.ux ├── divider │ └── index.ux ├── fab-button │ └── index.ux ├── filter-bar │ └── index.ux ├── gallery │ └── index.ux ├── icon │ ├── iconfonts.ttf │ ├── icons.js │ └── index.ux ├── image │ └── index.ux ├── index-item │ └── index.ux ├── index │ └── index.ux ├── input-number │ └── index.ux ├── input │ └── index.ux ├── keyboard │ └── index.ux ├── load-more │ └── index.ux ├── mask │ └── index.ux ├── media │ └── index.ux ├── message │ └── index.ux ├── navbar │ └── index.ux ├── pagination │ └── index.ux ├── popover │ ├── img │ │ └── shadows.9.png │ └── index.ux ├── popup │ └── index.ux ├── prompt │ └── index.ux ├── qrcode │ ├── index.ux │ └── qr.js │ │ ├── index.js │ │ └── lib │ │ ├── 8BitByte.js │ │ ├── BitBuffer.js │ │ ├── ErrorCorrectLevel.js │ │ ├── LICENSE-qrcode │ │ ├── Polynomial.js │ │ ├── QRCode.js │ │ ├── RSBlock.js │ │ ├── math.js │ │ ├── mode.js │ │ └── util.js ├── radio-group │ └── index.ux ├── radio │ └── index.ux ├── rating │ └── index.ux ├── result │ └── index.ux ├── search-bar │ └── index.ux ├── segmented-control │ └── index.ux ├── select │ └── index.ux ├── slider │ └── index.ux ├── spin │ └── index.ux ├── step │ └── index.ux ├── steps │ └── index.ux ├── sticky-item │ └── index.ux ├── sticky │ └── index.ux ├── styles │ └── base.less ├── switch │ └── index.ux ├── tabbar │ └── index.ux ├── tag │ └── index.ux ├── textarea │ └── index.ux ├── toast │ └── index.ux ├── upload │ └── index.ux └── vcode │ └── index.ux └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | .gitignore 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/README.md -------------------------------------------------------------------------------- /components/accordion-group/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/accordion-group/index.ux -------------------------------------------------------------------------------- /components/accordion/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/accordion/index.ux -------------------------------------------------------------------------------- /components/action-sheet/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/action-sheet/index.ux -------------------------------------------------------------------------------- /components/ad/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/ad/index.ux -------------------------------------------------------------------------------- /components/ad2/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/ad2/index.ux -------------------------------------------------------------------------------- /components/alert/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/alert/index.ux -------------------------------------------------------------------------------- /components/avatar/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/avatar/index.ux -------------------------------------------------------------------------------- /components/badge/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/badge/index.ux -------------------------------------------------------------------------------- /components/barcode/barcode/JsBarcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/JsBarcode.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/Barcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/Barcode.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/CODE128/CODE128.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/CODE128/CODE128.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/CODE128/CODE128A.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/CODE128/CODE128A.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/CODE128/CODE128B.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/CODE128/CODE128B.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/CODE128/CODE128C.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/CODE128/CODE128C.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/CODE128/CODE128_AUTO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/CODE128/CODE128_AUTO.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/CODE128/auto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/CODE128/auto.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/CODE128/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/CODE128/constants.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/CODE128/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/CODE128/index.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/CODE39/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/CODE39/index.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/EAN_UPC/EAN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/EAN_UPC/EAN.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/EAN_UPC/EAN13.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/EAN_UPC/EAN13.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/EAN_UPC/EAN2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/EAN_UPC/EAN2.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/EAN_UPC/EAN5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/EAN_UPC/EAN5.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/EAN_UPC/EAN8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/EAN_UPC/EAN8.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/EAN_UPC/UPC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/EAN_UPC/UPC.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/EAN_UPC/UPCE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/EAN_UPC/UPCE.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/EAN_UPC/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/EAN_UPC/constants.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/EAN_UPC/encoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/EAN_UPC/encoder.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/EAN_UPC/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/EAN_UPC/index.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/GenericBarcode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/GenericBarcode/index.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/ITF/ITF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/ITF/ITF.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/ITF/ITF14.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/ITF/ITF14.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/ITF/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/ITF/constants.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/ITF/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/ITF/index.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/MSI/MSI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/MSI/MSI.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/MSI/MSI10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/MSI/MSI10.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/MSI/MSI1010.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/MSI/MSI1010.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/MSI/MSI11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/MSI/MSI11.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/MSI/MSI1110.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/MSI/MSI1110.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/MSI/checksums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/MSI/checksums.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/MSI/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/MSI/index.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/codabar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/codabar/index.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/index.js -------------------------------------------------------------------------------- /components/barcode/barcode/barcodes/pharmacode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/barcodes/pharmacode/index.js -------------------------------------------------------------------------------- /components/barcode/barcode/exceptions/ErrorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/exceptions/ErrorHandler.js -------------------------------------------------------------------------------- /components/barcode/barcode/exceptions/exceptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/exceptions/exceptions.js -------------------------------------------------------------------------------- /components/barcode/barcode/help/fixOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/help/fixOptions.js -------------------------------------------------------------------------------- /components/barcode/barcode/help/getOptionsFromElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/help/getOptionsFromElement.js -------------------------------------------------------------------------------- /components/barcode/barcode/help/getRenderProperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/help/getRenderProperties.js -------------------------------------------------------------------------------- /components/barcode/barcode/help/linearizeEncodings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/help/linearizeEncodings.js -------------------------------------------------------------------------------- /components/barcode/barcode/help/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/help/merge.js -------------------------------------------------------------------------------- /components/barcode/barcode/help/optionsFromStrings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/help/optionsFromStrings.js -------------------------------------------------------------------------------- /components/barcode/barcode/options/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/options/defaults.js -------------------------------------------------------------------------------- /components/barcode/barcode/renderers/canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/renderers/canvas.js -------------------------------------------------------------------------------- /components/barcode/barcode/renderers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/renderers/index.js -------------------------------------------------------------------------------- /components/barcode/barcode/renderers/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/barcode/renderers/shared.js -------------------------------------------------------------------------------- /components/barcode/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/barcode/index.ux -------------------------------------------------------------------------------- /components/button/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/button/index.ux -------------------------------------------------------------------------------- /components/calendar/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/calendar/index.ux -------------------------------------------------------------------------------- /components/card/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/card/index.ux -------------------------------------------------------------------------------- /components/charts/qacharts-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/charts/qacharts-min.js -------------------------------------------------------------------------------- /components/charts/qacharts-min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/charts/qacharts-min.js.map -------------------------------------------------------------------------------- /components/charts/qacharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/charts/qacharts.js -------------------------------------------------------------------------------- /components/charts/qacharts.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/charts/qacharts.js.map -------------------------------------------------------------------------------- /components/checkbox-group/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/checkbox-group/index.ux -------------------------------------------------------------------------------- /components/checkbox/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/checkbox/index.ux -------------------------------------------------------------------------------- /components/circle/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/circle/index.ux -------------------------------------------------------------------------------- /components/city-cascader/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/city-cascader/data.js -------------------------------------------------------------------------------- /components/city-cascader/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/city-cascader/index.ux -------------------------------------------------------------------------------- /components/common/scripts/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/common/scripts/util.js -------------------------------------------------------------------------------- /components/countdown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/countdown/index.js -------------------------------------------------------------------------------- /components/counter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/counter/index.js -------------------------------------------------------------------------------- /components/dialog/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/dialog/index.ux -------------------------------------------------------------------------------- /components/divider/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/divider/index.ux -------------------------------------------------------------------------------- /components/fab-button/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/fab-button/index.ux -------------------------------------------------------------------------------- /components/filter-bar/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/filter-bar/index.ux -------------------------------------------------------------------------------- /components/gallery/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/gallery/index.ux -------------------------------------------------------------------------------- /components/icon/iconfonts.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/icon/iconfonts.ttf -------------------------------------------------------------------------------- /components/icon/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/icon/icons.js -------------------------------------------------------------------------------- /components/icon/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/icon/index.ux -------------------------------------------------------------------------------- /components/image/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/image/index.ux -------------------------------------------------------------------------------- /components/index-item/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/index-item/index.ux -------------------------------------------------------------------------------- /components/index/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/index/index.ux -------------------------------------------------------------------------------- /components/input-number/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/input-number/index.ux -------------------------------------------------------------------------------- /components/input/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/input/index.ux -------------------------------------------------------------------------------- /components/keyboard/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/keyboard/index.ux -------------------------------------------------------------------------------- /components/load-more/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/load-more/index.ux -------------------------------------------------------------------------------- /components/mask/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/mask/index.ux -------------------------------------------------------------------------------- /components/media/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/media/index.ux -------------------------------------------------------------------------------- /components/message/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/message/index.ux -------------------------------------------------------------------------------- /components/navbar/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/navbar/index.ux -------------------------------------------------------------------------------- /components/pagination/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/pagination/index.ux -------------------------------------------------------------------------------- /components/popover/img/shadows.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/popover/img/shadows.9.png -------------------------------------------------------------------------------- /components/popover/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/popover/index.ux -------------------------------------------------------------------------------- /components/popup/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/popup/index.ux -------------------------------------------------------------------------------- /components/prompt/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/prompt/index.ux -------------------------------------------------------------------------------- /components/qrcode/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/qrcode/index.ux -------------------------------------------------------------------------------- /components/qrcode/qr.js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/qrcode/qr.js/index.js -------------------------------------------------------------------------------- /components/qrcode/qr.js/lib/8BitByte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/qrcode/qr.js/lib/8BitByte.js -------------------------------------------------------------------------------- /components/qrcode/qr.js/lib/BitBuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/qrcode/qr.js/lib/BitBuffer.js -------------------------------------------------------------------------------- /components/qrcode/qr.js/lib/ErrorCorrectLevel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/qrcode/qr.js/lib/ErrorCorrectLevel.js -------------------------------------------------------------------------------- /components/qrcode/qr.js/lib/LICENSE-qrcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/qrcode/qr.js/lib/LICENSE-qrcode -------------------------------------------------------------------------------- /components/qrcode/qr.js/lib/Polynomial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/qrcode/qr.js/lib/Polynomial.js -------------------------------------------------------------------------------- /components/qrcode/qr.js/lib/QRCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/qrcode/qr.js/lib/QRCode.js -------------------------------------------------------------------------------- /components/qrcode/qr.js/lib/RSBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/qrcode/qr.js/lib/RSBlock.js -------------------------------------------------------------------------------- /components/qrcode/qr.js/lib/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/qrcode/qr.js/lib/math.js -------------------------------------------------------------------------------- /components/qrcode/qr.js/lib/mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/qrcode/qr.js/lib/mode.js -------------------------------------------------------------------------------- /components/qrcode/qr.js/lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/qrcode/qr.js/lib/util.js -------------------------------------------------------------------------------- /components/radio-group/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/radio-group/index.ux -------------------------------------------------------------------------------- /components/radio/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/radio/index.ux -------------------------------------------------------------------------------- /components/rating/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/rating/index.ux -------------------------------------------------------------------------------- /components/result/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/result/index.ux -------------------------------------------------------------------------------- /components/search-bar/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/search-bar/index.ux -------------------------------------------------------------------------------- /components/segmented-control/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/segmented-control/index.ux -------------------------------------------------------------------------------- /components/select/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/select/index.ux -------------------------------------------------------------------------------- /components/slider/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/slider/index.ux -------------------------------------------------------------------------------- /components/spin/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/spin/index.ux -------------------------------------------------------------------------------- /components/step/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/step/index.ux -------------------------------------------------------------------------------- /components/steps/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/steps/index.ux -------------------------------------------------------------------------------- /components/sticky-item/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/sticky-item/index.ux -------------------------------------------------------------------------------- /components/sticky/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/sticky/index.ux -------------------------------------------------------------------------------- /components/styles/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/styles/base.less -------------------------------------------------------------------------------- /components/switch/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/switch/index.ux -------------------------------------------------------------------------------- /components/tabbar/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/tabbar/index.ux -------------------------------------------------------------------------------- /components/tag/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/tag/index.ux -------------------------------------------------------------------------------- /components/textarea/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/textarea/index.ux -------------------------------------------------------------------------------- /components/toast/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/toast/index.ux -------------------------------------------------------------------------------- /components/upload/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/upload/index.ux -------------------------------------------------------------------------------- /components/vcode/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/components/vcode/index.ux -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivoquickapp/apex-ui/HEAD/package.json --------------------------------------------------------------------------------