Skip to content

Commit 16f3509

Browse files
authored
Merge pull request #1780 from DevCloudFE/dev
chore: update from dev
2 parents 7054ce2 + 092a6ca commit 16f3509

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Diff for: packages/devui-vue/devui/editor-md/src/plugins/checkbox.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as _ from 'lodash';
1+
import { extend } from 'lodash';
22

33
const checkboxReplace = function (md: any, options: any) {
44
let lastId: number;
@@ -9,7 +9,7 @@ const checkboxReplace = function (md: any, options: any) {
99
divClass: 'checkbox',
1010
idPrefix: 'checkbox',
1111
};
12-
options = _.extend(defaults, options);
12+
options = extend(defaults, options);
1313
const pattern = /\[(X|\s|\_|\-)\]\s(.*)/i;
1414
const createTokens = function (checked: any, label: any, Token: any) {
1515
let token;

Diff for: packages/devui-vue/devui/fullscreen/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export { Fullscreen };
88
export default {
99
title: 'Fullscreen 全屏',
1010
category: '通用',
11+
status: '100%',
1112
install(app: App): void {
1213
app.component(Fullscreen.name, Fullscreen);
1314
},

Diff for: packages/devui-vue/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-devui",
3-
"version": "1.6.1",
3+
"version": "1.6.2",
44
"license": "MIT",
55
"description": "DevUI components based on Vite and Vue3",
66
"keywords": [

0 commit comments

Comments
 (0)