diff --git a/cli/build/config/output/web-types.json b/cli/build/config/output/web-types.json index ce45da75..7b31becb 100644 --- a/cli/build/config/output/web-types.json +++ b/cli/build/config/output/web-types.json @@ -1,7 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json", "name": "shuimo-ui", - "version": "0.3.0-alpha.4", + "version": "0.3.0-alpha.5", "js-types-syntax": "typescript", "description-markup": "markdown", "contributions": { @@ -1073,6 +1073,52 @@ } ] }, + { + "name": "m-slider", + "source": { + "symbol": "MSlider" + }, + "description": "slider component with shuimo-ui style.", + "doc-url": "https://shuimo.janghood.com/slider,", + "props": [ + { + "name": "modelValue", + "description": "slider value\n滑动条绑定值", + "type": "number", + "default": "0" + }, + { + "name": "min", + "description": "slider min\n滑动条最小值", + "type": "number", + "default": "0" + }, + { + "name": "max", + "description": "slider max\n滑动条最大值", + "type": "number", + "default": "100" + }, + { + "name": "step", + "description": "slider step\n滑动条步长", + "type": "number", + "default": "1" + }, + { + "name": "disabled", + "description": "slider disabled\n是否禁用", + "type": "boolean", + "default": "false" + }, + { + "name": "showInfo", + "description": "slider show-info\n是否显示信息", + "type": "boolean", + "default": "false" + } + ] + }, { "name": "m-switch", "source": { @@ -1354,4 +1400,4 @@ }, "framework": "vue", "default-icon": "./icons/logo.svg" -} +} \ No newline at end of file diff --git a/packages/vue/package.json b/packages/vue/package.json index aace0051..4f1b5d3d 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -2,7 +2,8 @@ "name": "shuimo-ui", "author": "阿怪 ", "description": "一款粗暴的水墨风UI组件", - "version": "0.3.0-alpha.4", + "version": "0.3.0-alpha.5", + "license": "MIT", "files": [ "dist", "icons",