mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 19:42:07 +08:00
Merge branch 'main' into ray-template-dev
This commit is contained in:
commit
660b61340d
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
# 将换行符设置为lf
|
||||
* text eol=lf
|
4
.github/workflows/push-build.yaml
vendored
4
.github/workflows/push-build.yaml
vendored
@ -6,9 +6,11 @@ jobs:
|
||||
cache-and-install:
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
node-version: [ 16.x, 18.x ]
|
||||
os: [ ubuntu-latest, windows-latest, macos-latest ]
|
||||
experimental: [ true ]
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
@ -22,7 +24,7 @@ jobs:
|
||||
- uses: pnpm/action-setup@v2
|
||||
name: Install pnpm
|
||||
with:
|
||||
version: 7
|
||||
version: 8
|
||||
run_install: false
|
||||
|
||||
- name: Get pnpm store directory
|
||||
|
@ -1,5 +1,14 @@
|
||||
# CHANGE LOG
|
||||
|
||||
## 4.1.5
|
||||
|
||||
### Fixes
|
||||
|
||||
- 修复 windows 平台下构建失败问题
|
||||
- 修复换行符导致构建失败问题
|
||||
- 修复特定 node pnpm 版本构建栈溢出问题
|
||||
- 修复 `RayCollapseGrid` 组件 open 属性歧义问题
|
||||
|
||||
## 4.1.4
|
||||
|
||||
该版本后,不会做破坏性更新了。版本功能趋于稳定,后续更新不会那么频繁了。。。。。
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "ray-template",
|
||||
"private": false,
|
||||
"version": "4.1.4",
|
||||
"version": "4.1.5",
|
||||
"type": "module",
|
||||
"engines": {
|
||||
"node": ">=16.0.0",
|
||||
|
@ -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
|
||||
|
@ -15,7 +15,7 @@ export const collapseGridProps = {
|
||||
* `true` 收起, `false` 展开
|
||||
*/
|
||||
type: Boolean,
|
||||
default: true,
|
||||
default: false,
|
||||
},
|
||||
collapseToggleText: {
|
||||
/**
|
||||
|
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user