Skip to content

Commit

Permalink
chore(release): v1.10.7 (#1237)
Browse files Browse the repository at this point in the history
* fix: 修复插件中编译css标签选择器

* feat: 更新版本号
  • Loading branch information
rayhomie authored Jul 10, 2024
1 parent ed473a4 commit b9fb432
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 17 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "antd-mini",
"version": "1.10.6",
"version": "1.10.7",
"scripts": {
"dev": "node ./scripts/dev.js",
"build": "node ./scripts/build.js",
Expand Down Expand Up @@ -98,4 +98,4 @@
],
"license": "MIT",
"homepage": "https://github.com/ant-design/ant-design-mini"
}
}
19 changes: 7 additions & 12 deletions src/Collapse/index.less
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
@import (reference) "./variable.less";
@import "../style/mixins/hairline.less";
@import (reference) './variable.less';
@import '../style/mixins/hairline.less';

@collapsePrefix: ant-collapse-item;

.@{collapsePrefix} {
&-disabled {
.ant-collapse-item-title-node,
.ant-collapse-item-brief-container {
opacity: 0.4;
opacity: 0.4;
}
.@{collapsePrefix}-title:active {
background: @collapse-title-background-color;
Expand Down Expand Up @@ -57,11 +57,6 @@
.ant-icon {
font-size: 40 * @rpx;
}

& image {
width: 44 * @rpx;
height: 44 * @rpx;
}
}

&:active {
Expand Down Expand Up @@ -121,20 +116,20 @@

@keyframes trigger1 {
0% {
content: "";
content: '';
}

100% {
content: "";
content: '';
}
}

@keyframes trigger2 {
0% {
content: "";
content: '';
}

100% {
content: "";
content: '';
}
}
6 changes: 3 additions & 3 deletions tests/utils.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const path = require('path');
const cloneDeep = require('clone-deep');
const shallowequal = require('shallowequal');
const path = require('path') as any;
const cloneDeep = require('clone-deep') as any;
const shallowequal = require('shallowequal') as any;

const map = {};
let currentName;
Expand Down

0 comments on commit b9fb432

Please sign in to comment.