diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..6e573c3f --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# 将换行符设置为lf +* text eol=lf diff --git a/.github/workflows/push-build.yaml b/.github/workflows/push-build.yaml index e7ad651d..fc17bef3 100644 --- a/.github/workflows/push-build.yaml +++ b/.github/workflows/push-build.yaml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d762633..982fbacd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # CHANGE LOG +## 4.1.5 + +### Fixes + +- 修复 windows 平台下构建失败问题 +- 修复换行符导致构建失败问题 +- 修复特定 node pnpm 版本构建栈溢出问题 +- 修复 `RayCollapseGrid` 组件 open 属性歧义问题 + ## 4.1.4 该版本后,不会做破坏性更新了。版本功能趋于稳定,后续更新不会那么频繁了。。。。。 diff --git a/package.json b/package.json index 1c1a09f2..59ec8bc1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ray-template", "private": false, - "version": "4.1.4", + "version": "4.1.5", "type": "module", "engines": { "node": ">=16.0.0", diff --git a/src/components/RayCollapseGrid/src/index.tsx b/src/components/RayCollapseGrid/src/index.tsx index a6763cee..fe626b4e 100644 --- a/src/components/RayCollapseGrid/src/index.tsx +++ b/src/components/RayCollapseGrid/src/index.tsx @@ -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 diff --git a/src/components/RayCollapseGrid/src/props.ts b/src/components/RayCollapseGrid/src/props.ts index d4cfbf23..ba3dfc37 100644 --- a/src/components/RayCollapseGrid/src/props.ts +++ b/src/components/RayCollapseGrid/src/props.ts @@ -15,7 +15,7 @@ export const collapseGridProps = { * `true` 收起, `false` 展开 */ type: Boolean, - default: true, + default: false, }, collapseToggleText: { /** diff --git a/src/utils/precision.ts b/src/utils/precision.ts index f1aa922f..0178d24a 100644 --- a/src/utils/precision.ts +++ b/src/utils/precision.ts @@ -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,