Skip to content

Commit

Permalink
Merge pull request #1780 from DevCloudFE/dev
Browse files Browse the repository at this point in the history
chore: update from dev
  • Loading branch information
GreatZPP authored Jan 11, 2024
2 parents 7054ce2 + 092a6ca commit 16f3509
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/devui-vue/devui/editor-md/src/plugins/checkbox.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as _ from 'lodash';
import { extend } from 'lodash';

const checkboxReplace = function (md: any, options: any) {
let lastId: number;
Expand All @@ -9,7 +9,7 @@ const checkboxReplace = function (md: any, options: any) {
divClass: 'checkbox',
idPrefix: 'checkbox',
};
options = _.extend(defaults, options);
options = extend(defaults, options);
const pattern = /\[(X|\s|\_|\-)\]\s(.*)/i;
const createTokens = function (checked: any, label: any, Token: any) {
let token;
Expand Down
1 change: 1 addition & 0 deletions packages/devui-vue/devui/fullscreen/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export { Fullscreen };
export default {
title: 'Fullscreen 全屏',
category: '通用',
status: '100%',
install(app: App): void {
app.component(Fullscreen.name, Fullscreen);
},
Expand Down
2 changes: 1 addition & 1 deletion packages/devui-vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-devui",
"version": "1.6.1",
"version": "1.6.2",
"license": "MIT",
"description": "DevUI components based on Vite and Vue3",
"keywords": [
Expand Down

0 comments on commit 16f3509

Please sign in to comment.