UNPKG

@alicloud/console-components

Version:

Alibaba Cloud React Components

30 lines (29 loc) 1.75 kB
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); /** * title: "基础形态" * description: "通过设置reverse选择配置方向,通过设置slider为double可配置双滑块。" */ var react_1 = __importDefault(require("react")); var console_components_1 = require("@alicloud/console-components"); var style = { marginBottom: '15px', }; var h4Style = { fontSize: '12px', marginTop: '24px', }; exports.default = (function () { return (react_1.default.createElement("div", null, react_1.default.createElement("h4", { style: h4Style }, "\u6307\u5B9A\u503C\uFF08\u4ECE\u5DE6\u5411\u53F3\u914D\u7F6E\uFF09"), react_1.default.createElement(console_components_1.Range, { defaultValue: 30, style: style, hasTip: false }), react_1.default.createElement("h4", { style: h4Style }, "\u6307\u5B9A\u503C\uFF08\u4ECE\u53F3\u5411\u5DE6\u914D\u7F6E\uFF09"), react_1.default.createElement(console_components_1.Range, { defaultValue: 30, style: style, reverse: true, hasTip: false }), react_1.default.createElement("h4", { style: h4Style }, "\u6307\u5B9A\u533A\u95F4\uFF08\u4E24\u7AEF\u5411\u5185\u914D\u7F6E\uFF09"), react_1.default.createElement(console_components_1.Range, { slider: 'double', defaultValue: [25, 75], style: style }), react_1.default.createElement("h4", { style: h4Style }, "\u6307\u5B9A\u533A\u95F4\uFF08\u4E24\u7AEF\u5411\u5916\u914D\u7F6E\uFF09"), react_1.default.createElement(console_components_1.Range, { slider: 'double', defaultValue: [25, 75], style: style, reverse: true }))); });