Skip to content

Commit

Permalink
releases 4.3.41
Browse files Browse the repository at this point in the history
  • Loading branch information
xuliangzhan committed Dec 23, 2024
1 parent 573a31a commit fe4c0be
Show file tree
Hide file tree
Showing 33 changed files with 1,305 additions and 184 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
* 按需加载

* 计划
* [x] ~~v1.0 ~~
* [x] ~~v2.0 ~~
* [x] ~~v1.0 基于 vue2.6+,停止维护 ~~
* [x] ~~v2.0 基于 vue2.6+,停止维护 ~~
* [x] v3.0 基于 vue2.6+,只支持现代浏览器,不支持 IE
* [x] v4.0 基于 vue3.2+,只支持现代浏览器,不支持 IE
* [ ] 下一阶段:高阶组件、数据图表可视化、全功能可视化设计器
Expand Down
33 changes: 31 additions & 2 deletions examples/views/color-picker/ColorPickerTest.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,40 @@
<template>
<div>
<vxe-color-picker v-model="val1"></vxe-color-picker>
<vxe-color-picker v-model="val1" clearable></vxe-color-picker>
<vxe-color-picker v-model="val2" show-alpha clearable></vxe-color-picker>
<vxe-color-picker v-model="val3" type="rgb" show-alpha clearable></vxe-color-picker>
<vxe-color-picker v-model="val4" clearable :colors="list1"></vxe-color-picker>
<vxe-color-picker v-model="val5" clearable :colors="list1"></vxe-color-picker>
<vxe-color-picker v-model="val6" type="rgb" show-alpha clearable :colors="list2"></vxe-color-picker>
</div>
</template>

<script lang="ts" setup>
import { ref } from 'vue'
const val1 = ref('')
const val1 = ref('rgba(220, 20, 60, 0.7)')
const val2 = ref('')
const val3 = ref('rgba(220, 20, 60, 0.7)')
const val4 = ref('')
const val5 = ref('#409eff')
const val6 = ref('#BFBFBF')
const list1 = ref([
'#DC143C', '#FF1493', '#FF00FF', '#9932CC', '#6A5ACD',
'#0000FF', '#00008B', '#778899', '#1E90FF', '#00BFFF',
'#5F9EA0', '#00FFFF', '#008080', '#7FFFAA', '#3CB371',
'#8FBC8F', '#008000', '#7CFC00', '#556B2F', '#FFFFE0',
'#FFFF00', '#808000', '#EEE8AA', '#FFD700', '#FFA500',
'#FF4500', '#FA8072', '#FF0000', '#800000', '#C0C0C0',
'#808080', '#000000'
])
const list2 = ref([
'rgb(220,20,60)', 'rgb(255,20,147)', 'rgb(255,0,255)', 'rgb(153, 50, 204)', 'rgb(106,90,205)',
'rgb(0,0,255)', 'rgb(0,0,139)', 'rgb(119,136,153)', 'rgb(30,144,255)', 'rgb(0,191,255)',
'rgb(95,158,160)', 'rgb(0,255,255)', 'rgb(0,128,128)', 'rgb(127,255,170)', 'rgb(60,179,113)',
'rgb(143,188,143)', 'rgb(0,128,0)', 'rgb(124,252,0)', 'rgb(85,107,47)', 'rgb(255,255,224)',
'rgb(255,255,0)', 'rgb(128,128,0)', 'rgb(238,232,170)', 'rgb(255,215,0)', 'rgb(255,165,0)',
'rgb(255,69,0)', 'rgb(250,128,114)', 'rgb(255,0,0)', 'rgb(128,0,0)', 'rgb(192,192,192)',
'rgb(128,128,128)', 'rgb(0,0,0)'
])
</script>
2 changes: 1 addition & 1 deletion helper/vetur/attributes.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion helper/vetur/tags.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vxe-pc-ui",
"version": "4.3.40",
"version": "4.3.41",
"description": "A vue based PC component library",
"scripts": {
"update": "npm install --legacy-peer-deps",
Expand Down
Loading

0 comments on commit fe4c0be

Please sign in to comment.