sard-uniapp 1.29.0 → 1.29.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
|
-
## 1.29.
|
|
1
|
+
## <small>1.29.1 (2026-04-08)</small>
|
|
2
2
|
|
|
3
|
+
* build: 更新vite版本 ([8c17954](https://github.com/sutras/sard-uniapp/commit/8c17954))
|
|
4
|
+
* fix: 修复打包时删除uniapp条件注释问题 ([016d5a8](https://github.com/sutras/sard-uniapp/commit/016d5a8))
|
|
5
|
+
* chore: changelog ([70f8724](https://github.com/sutras/sard-uniapp/commit/70f8724))
|
|
6
|
+
* chore: changelog ([29eab29](https://github.com/sutras/sard-uniapp/commit/29eab29))
|
|
3
7
|
* feat: 新增 barcode 组件 ([e6b065e](https://github.com/sutras/sard-uniapp/commit/e6b065e))
|
|
4
8
|
* feat: 新增 ColorPicker, ColorPickerInput, ColorPickerPopout 组件 ([1576b6d](https://github.com/sutras/sard-uniapp/commit/1576b6d))
|
|
5
9
|
* feat: 新增 DateStrip ([7b8d24d](https://github.com/sutras/sard-uniapp/commit/7b8d24d))
|
|
@@ -14,7 +18,6 @@
|
|
|
14
18
|
* refactor: 重构部署命令 ([f95e64f](https://github.com/sutras/sard-uniapp/commit/f95e64f))
|
|
15
19
|
* refactor: 重构部署脚本 ([7c0bf0c](https://github.com/sutras/sard-uniapp/commit/7c0bf0c))
|
|
16
20
|
* refactor: 重构预览脚本 ([80cd166](https://github.com/sutras/sard-uniapp/commit/80cd166))
|
|
17
|
-
* chore: changelog ([29eab29](https://github.com/sutras/sard-uniapp/commit/29eab29))
|
|
18
21
|
|
|
19
22
|
## 1.28.0 (2026-03-27)
|
|
20
23
|
|
|
@@ -241,7 +241,8 @@ export default _defineComponent({
|
|
|
241
241
|
context.lineTo(x, y);
|
|
242
242
|
prevPoints = [x, y];
|
|
243
243
|
context.stroke();
|
|
244
|
-
|
|
244
|
+
// #ifdef APP-PLUS || APP-HARMONY
|
|
245
|
+
void context.draw(true);
|
|
245
246
|
// #endif
|
|
246
247
|
isEmpty = false;
|
|
247
248
|
};
|
|
@@ -252,7 +253,8 @@ export default _defineComponent({
|
|
|
252
253
|
context.lineTo(x, y);
|
|
253
254
|
prevPoints = [x, y];
|
|
254
255
|
context.stroke();
|
|
255
|
-
|
|
256
|
+
// #ifdef APP-PLUS || APP-HARMONY
|
|
257
|
+
void context.draw(true);
|
|
256
258
|
// #endif
|
|
257
259
|
};
|
|
258
260
|
const onTouchEnd = () => {
|
package/package.json
CHANGED