修正路径
parent
979f51e202
commit
428261416c
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@bd/ui",
|
"name": "@bd/ui",
|
||||||
"version": "0.1.15",
|
"version": "0.1.16",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"description": "",
|
"description": "",
|
||||||
"files": [
|
"files": [
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { nextTick, css, html, Component } from 'wkit'
|
import { nextTick, css, html, Component } from 'wkit'
|
||||||
import '../base/icon.js'
|
import '../icon/icon.js'
|
||||||
|
|
||||||
class Checkbox extends Component {
|
class Checkbox extends Component {
|
||||||
static props = {
|
static props = {
|
||||||
|
|
|
@ -15,8 +15,8 @@ import {
|
||||||
clearOutsideClick
|
clearOutsideClick
|
||||||
} from 'wkit'
|
} from 'wkit'
|
||||||
import ICONS from './svg.js'
|
import ICONS from './svg.js'
|
||||||
import '../form/input.js'
|
import '../input/input.js'
|
||||||
import '../base/button.js'
|
import '../button/button.js'
|
||||||
|
|
||||||
const ACTTION = {
|
const ACTTION = {
|
||||||
bold: 'bold',
|
bold: 'bold',
|
|
@ -5,7 +5,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { css, html, Component, bind, styleMap } from 'wkit'
|
import { css, html, Component, bind, styleMap } from 'wkit'
|
||||||
import '../form/input.js'
|
import '../input/input.js'
|
||||||
|
|
||||||
let uniqueInstance = null // 缓存当前打开的alert/confirm/prompt类型的弹窗
|
let uniqueInstance = null // 缓存当前打开的alert/confirm/prompt类型的弹窗
|
||||||
let toastInstance = null // 缓存toast的实例
|
let toastInstance = null // 缓存toast的实例
|
||||||
|
|
|
@ -8,7 +8,7 @@ import { css, html, raw, Component, bind, styleMap, classMap } from 'wkit'
|
||||||
|
|
||||||
import md2html from './core.js'
|
import md2html from './core.js'
|
||||||
import '../code/code.js'
|
import '../code/code.js'
|
||||||
import '../form/checkbox.js'
|
import '../checkbox/checkbox.js'
|
||||||
|
|
||||||
export default md2html
|
export default md2html
|
||||||
|
|
|
@ -15,9 +15,9 @@ import {
|
||||||
clearOutsideClick
|
clearOutsideClick
|
||||||
} from 'wkit'
|
} from 'wkit'
|
||||||
|
|
||||||
import '../views/markd/index.js'
|
import '../markd/markd.js'
|
||||||
import '../form/input.js'
|
import '../input/input.js'
|
||||||
import '../base/button.js'
|
import '../button/button.js'
|
||||||
|
|
||||||
import { DEFAULT_TOOLS, html2md, Addon } from './helper.js'
|
import { DEFAULT_TOOLS, html2md, Addon } from './helper.js'
|
||||||
import ICONS from './svg.js'
|
import ICONS from './svg.js'
|
|
@ -5,7 +5,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { nextTick, css, html, Component, bind } from 'wkit'
|
import { nextTick, css, html, Component, bind } from 'wkit'
|
||||||
import '../base/icon.js'
|
import '../icon/icon.js'
|
||||||
|
|
||||||
const MACOS_KEYS = {
|
const MACOS_KEYS = {
|
||||||
Cmd: '⌘',
|
Cmd: '⌘',
|
||||||
|
|
Loading…
Reference in New Issue