This commit is contained in:
XiaoDaiGua-Ray 2023-08-03 16:54:13 +08:00
parent 1b5edfb479
commit 6b8921ee7b
4 changed files with 44 additions and 8 deletions

View File

@ -1,5 +1,14 @@
# CHANGE LOG
## 4.1.5
### Fixes
- 修复 windows 平台下构建失败问题
- 修复换行符导致构建失败问题
- 修复特定 node pnpm 版本构建栈溢出问题
- 修复 `RayCollapseGrid` 组件 open 属性歧义问题
## 4.1.4
该版本后,不会做破坏性更新了。版本功能趋于稳定,后续更新不会那么频繁了。。。。。

View File

@ -22,7 +22,7 @@ const RayCollapseGrid = defineComponent({
name: 'RayCollapseGrid',
props: collapseGridProps,
setup(props) {
const modelCollapsed = ref(props.open)
const modelCollapsed = ref(!props.open)
const handleCollapse = () => {
modelCollapsed.value = !modelCollapsed.value

View File

@ -15,7 +15,7 @@ export const collapseGridProps = {
* `true` , `false`
*/
type: Boolean,
default: true,
default: false,
},
collapseToggleText: {
/**

View File

@ -85,14 +85,28 @@ export const format = (
: currency(value, options).toString()
}
/** 加法 */
/**
*
*
*
* @example
* format(add(0.1, 0.2)) => 0.3
* format(add(0.2, 0.33)) => 0.53
*/
export const add = (...args: CurrencyArguments[]) => {
return basic(args, 0, (pre, curr) => {
return currency(pre).add(curr)
})
}
/** 减法 */
/**
*
*
*
* @example
* format(subtract(0.1, 0.12312)) => -0.02
* format(subtract(0.2, 0.33)) => -0.13
*/
export const subtract = (...args: CurrencyArguments[]) => {
if (args.length === 2) {
const [one, two] = args
@ -112,14 +126,28 @@ export const subtract = (...args: CurrencyArguments[]) => {
})
}
/** 乘法 */
/**
*
*
*
* @example
* format(multiply(1, 0.2)) => 0.2
* format(multiply(0.2, 0.33)) => 0.07
*/
export const multiply = (...args: CurrencyArguments[]) => {
return basic(args, 1, (pre, curr) => {
return currency(pre).multiply(curr)
})
}
/** 除法 */
/**
*
*
*
* @example
* format(divide(1, 0.2)) => 5
* format(divide(0.2, 0.33)) => 0.61
*/
export const divide = (...args: CurrencyArguments[]) => {
if (args.length === 2) {
const [one, two] = args
@ -144,10 +172,9 @@ export const divide = (...args: CurrencyArguments[]) => {
* ()
* undefind null 0
*
* ```
* @example
* distribute(0, 1) => [0]
* distribute(0, 3) => [0, 0, 0]
* ```
*/
export const distribute = (
value: CurrencyArguments,