@ajaxjs/ui 1.7.3 → 1.7.5

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.
Binary file
@@ -0,0 +1,70 @@
1
+ /**
2
+ * 错误的元素
3
+ */
4
+ interface ErrorElement {
5
+ /**
6
+ * DOM 元素
7
+ */
8
+ el: HTMLFormControl;
9
+ /**
10
+ * 错误的讯息
11
+ */
12
+ msg: string;
13
+ }
14
+ /**
15
+ * 通常是表单里面的 input 元素,但是 ts 没有对应的类型
16
+ */
17
+ export interface HTMLFormControl extends HTMLElement {
18
+ type: string;
19
+ disabled: boolean;
20
+ validity: ValidityState;
21
+ name: string;
22
+ value: string;
23
+ form: HTMLFormElement;
24
+ }
25
+ /**
26
+ * 表单验证器
27
+ */
28
+ export declare class Validator {
29
+ constructor(el: HTMLFormElement);
30
+ /**
31
+ * 表单元素
32
+ */
33
+ private el;
34
+ private errorElements;
35
+ /**
36
+ * 对每一个表单元素监听事件,一失去焦点就触发表单验证
37
+ */
38
+ private checkEveryField;
39
+ /**
40
+ *
41
+ * @param err
42
+ */
43
+ private showError;
44
+ /**
45
+ * 移除所有的错误信息
46
+ *
47
+ * @param el
48
+ */
49
+ private removeError;
50
+ /**
51
+ * 是否忽略的表单元素
52
+ *
53
+ * @param el
54
+ */
55
+ private static isIgnoreEl;
56
+ /**
57
+ * 验证字段
58
+ *
59
+ * @param field 表单字段元素
60
+ * @returns 若验证通过返回 null,否则返回 ErrorElement
61
+ */
62
+ static check(field: HTMLFormControl): ErrorElement | null;
63
+ /**
64
+ * 是否通过验证
65
+ *
66
+ * @param form
67
+ */
68
+ static onSubmit(form: HTMLFormElement): boolean;
69
+ }
70
+ export {};
@@ -1,9 +1,9 @@
1
- export * from './components';
2
1
  export * from './utils';
3
2
  export { default as HtmlEditor } from './components/html-editor/HtmlEditor.vue';
4
3
  export declare const admin: {
5
4
  HomePage: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
6
5
  Login: import('vue').DefineComponent<{}, {}, {
6
+ name: string;
7
7
  msg: string;
8
8
  autoLogin: boolean;
9
9
  }, {}, {
@@ -1,4 +1,5 @@
1
1
  declare const _default: import('vue').DefineComponent<{}, {}, {
2
+ name: string;
2
3
  userLoginId: string;
3
4
  avatarUrl: string;
4
5
  isCollapsed: boolean;
@@ -1,4 +1,5 @@
1
1
  declare const _default: import('vue').DefineComponent<{}, {}, {
2
+ name: string;
2
3
  msg: string;
3
4
  autoLogin: boolean;
4
5
  }, {}, {
package/dist/ui.css CHANGED
@@ -1 +1 @@
1
- .aj-form-html-editor ul.toolbar{border:1px solid #C5C5C5;border-radius:4px 4px 0 0;border-bottom:0;background-color:#e8e7e4;width:100%;min-height:30px;margin:0;box-sizing:border-box;padding:3px 4px}.aj-form-html-editor ul.toolbar>li{list-style:none;float:left;cursor:pointer}.aj-form-html-editor ul.toolbar>li>i{border:1px solid transparent;min-width:25px;height:20px;line-height:20px;text-align:center;display:block}.aj-form-html-editor ul.toolbar>li>i.text-icon{font-family:Times New Roman;font-weight:700;font-style:normal}.aj-form-html-editor ul.toolbar>li>i.fontAwesome{padding-top:2px;font: 18px/1 FontAwesome}.aj-form-html-editor ul.toolbar>li>i:hover{border-right-color:#aaa;border-bottom-color:#aaa;border-top-color:#fff;border-left-color:#fff}.aj-form-html-editor ul.toolbar>li>i:active{border-right-color:#f3f8fc;border-bottom-color:#f3f8fc;border-top-color:#ccc;border-left-color:#ccc}.aj-form-html-editor ul.toolbar>li ul li{padding:3px;cursor:pointer}.aj-form-html-editor ul.toolbar>li ul li:hover{background-color:#d3d3d3}.aj-form-html-editor ul.toolbar>li .cleanHTML{background-size:16px 16px}.aj-form-html-editor ul.toolbar>li .noBg{background-image:none}.aj-form-html-editor .editorBody iframe,.aj-form-html-editor .editorBody textarea{border:1px solid #C5C5C5;border-radius:0 0 4px 4px;border-top-width:0;box-sizing:border-box;background-color:#fff;min-height:300px;width:100%}.aj-form-html-editor .editorBody iframe.hide{display:none}.aj-form-html-editor .editorBody textarea{resize:none;display:none}.aj-form-html-editor .editorBody textarea.show{display:block}.aj-form-html-editor .colorPicker{width:210px;border:1px solid #D3D3D3;position:absolute}.aj-form-html-editor .colorPicker table{border-collapse:collapse}.aj-form-html-editor .colorPicker .colorhead{height:23px;line-height:23px;font-weight:700;width:100%}.aj-form-html-editor .colorPicker .colortitle{margin-left:6px;font-size:12px}.aj-form-html-editor .colorPicker .colorpanel td{border:1px solid #000;height:10px;width:10px;overflow:hidden;font-size:1px;cursor:pointer}.aj-form-html-editor .fontfamilyChoser a,.aj-form-html-editor .fontsizeChoser a{display:block;padding:2px;color:#000;line-height:120%;text-decoration:none}.aj-form-html-editor .fontfamilyChoser a:hover,.aj-form-html-editor .fontsizeChoser a:hover{background:#e5e5e5}.aj-form-html-editor .dorpdown{position:relative}.aj-form-html-editor .dorpdown:hover .fontfamilyChoser,.aj-form-html-editor .dorpdown .fontfamilyChoser:hover,.aj-form-html-editor .dorpdown:hover .fontsizeChoser,.aj-form-html-editor .dorpdown .fontsizeChoser:hover,.aj-form-html-editor .dorpdown:hover .colorPicker,.aj-form-html-editor .dorpdown .colorPicker:hover{display:block}.aj-form-html-editor .dorpdown>div{display:none;position:absolute;top:22px;left:0;background-color:#f5f5f5;border:1px solid lightgray;border-top:0;padding:5px;width:230px}.aj-form-html-editor .dorpdown .fontsizeChoser{top:inherit;right:0}.mask[data-v-2149b790]{position:fixed;top:0;left:0;width:100%;height:100%;z-index:9999;-webkit-backdrop-filter:blur(2px) opacity(.7);backdrop-filter:blur(2px) opacity(.7);background:#000000b3}.login[data-v-2149b790]{width:400px;margin:10% auto 0;background-color:#fff;padding:3%;border-radius:5px;box-shadow:2px 4px 5px #0006}.login h1[data-v-2149b790]{font-size:20px;letter-spacing:2px;margin-bottom:20px}.login .auto-login[data-v-2149b790]{margin-bottom:14px;text-align:left}.login .auto-login span[data-v-2149b790]{color:red}.login a[data-v-2149b790]{float:right}.html-content img{max-width:60%}.btns[data-v-1501f676]{text-align:center;padding:20px 0}.btns Button[data-v-1501f676]{width:130px;letter-spacing:3px;margin-right:30px}.toolbar[data-v-c19c2b56]{margin-bottom:20px;overflow:hidden;float:right}.toolbar .ivu-ml[data-v-c19c2b56]{float:right;padding-top:10px}.ivu-mt.ivu-text-right[data-v-c19c2b56]{text-align:right;margin-top:20px}.common-search-panel[data-v-c19c2b56]{width:380px;float:left}.common-search-panel .ivu-input-type-text[data-v-c19c2b56]{width:200px;margin:0 10px 16px 0}Button[data-v-33ead70c]{margin-right:10px}h1[data-v-d7a63bb7]{margin:0% 1%}Form[data-v-d7a63bb7]{max-width:1500px;margin:3% 0%}.note{color:gray;margin:20px 0}.btn{text-align:center;padding:20px;width:100%}.btn button{width:150px}input.editMode{border-bottom:1px solid lightgray!important}textarea{width:92%!important;min-height:50px!important;padding:5px!important}textarea.editMode{border:1px solid lightgray!important;background-color:#fff!important;border-radius:5px!important}.layer[data-v-4d3e0160]{position:fixed;top:0;left:0;width:100%;height:100%;background-color:#00000080;display:flex;justify-content:center;align-items:center}.layer-content[data-v-4d3e0160]{background-color:#fff;padding:20px;border-radius:5px;box-shadow:0 0 10px #0000004d}.aj-process-line[data-v-3aa0b34d]{display:flex;padding:5%;justify-content:center}.aj-process-line .process-line[data-v-3aa0b34d]{font-size:18px;color:#d3d3d3;font-weight:700}.aj-process-line .process-line>div[data-v-3aa0b34d]{float:left;width:156px;text-align:center;position:relative}.aj-process-line .process-line>div.current[data-v-3aa0b34d]{color:#000}.aj-process-line .process-line>div.current span[data-v-3aa0b34d]{background-color:gray}.aj-process-line .process-line>div p[data-v-3aa0b34d]{font-size:1rem;letter-spacing:3px;padding-top:5%}.aj-process-line .process-line>div span[data-v-3aa0b34d]{display:inline-block;width:32px;height:32px;border-radius:50%;color:#fff;line-height:32px;font-size:16px;background-color:#d3d3d3;position:relative;z-index:1}.aj-process-line .process-line>div[data-v-3aa0b34d]:last-child:after{display:none}.aj-process-line .process-line>div[data-v-3aa0b34d]:after{content:"";position:absolute;top:14px;left:94px;width:124px;height:4px;background-color:#d3d3d3}.aj-form>div{margin-bottom:15px}.aj-form>div.left-a{text-align:left}.aj-form>div.left-a .ivu-input-wrapper{width:193px}.login-log .ivu-card-body{padding:0}.user-center{min-height:700px;clear:both;margin:30px auto auto;height:82%;max-width:1200px}.user-center h4{padding:0 0 1% 3%;font-weight:700;letter-spacing:3px;font-size:1.1rem}.user-center .aj-hr{width:95%}.user-center .left{border-radius:20px 0 0 20px;background-color:#f5f5f5;overflow:hidden;width:22%;height:500px;float:left}.user-center .left menu{width:100%;margin:5% 0 0;padding:0 0 10%}.user-center .left menu a{text-decoration:none}.user-center .left menu li{border-top:1px solid lightgray;list-style-type:none;padding:5%;text-align:center;font-size:.95rem;cursor:pointer}.user-center .left menu li.actived{background-color:#fff;font-weight:700}.user-center .right{background-color:#fefefe;width:78%;float:left;border-radius:0 10px 10px;display:flex;flex-direction:column;border:1px solid #e6e3e3;box-sizing:border-box;min-height:600px;padding:4%}.user-center .right h3{width:80%;margin:0% auto 4%;text-align:center;font-weight:700;letter-spacing:5px;font-size:1.4rem}.user-center .right iframe{height:100%;width:100%;border:0;min-height:600px}.user-center .right .achor{text-align:right;padding-right:5%;font-size:.9rem;margin-bottom:3%}.user-center .avatar{margin:10% auto}.user-center .avatar div{margin:5% auto}.user-center .avatar div.imgHolder{width:100px;height:100px}.user-center .avatar div.imgHolder img{border-radius:50%;width:100px;height:100px}.user-center .avatar h3{text-align:center}.user-center .user-center-main table{width:100%;font-size:.95rem}.user-center .user-center-main table td{vertical-align:middle}.user-center .user-center-main table td input,.user-center .user-center-main table td textarea{border:none;background-color:transparent;outline:none}.user-center .user-center-profile{font-size:.95rem}.user-center .user-center-profile .loginId{padding:2% 5%}.user-center .user-center-profile table td{vertical-align:middle}.user-center .user-center-profile table td .aj-file-upload{width:130px;margin:0 auto}.user-center .user-center-profile table td .aj-file-upload .image-preview img{max-width:100px}.user-center .user-center-profile table tr td:nth-child(odd),.user-center .user-center-profile table tr th:nth-child(odd){color:gray}.user-center .user-center-profile .button-1{display:block;margin:2% auto}.user-center .user-center-account{min-height:600px;clear:both;overflow:hidden}.user-center .user-center-account .safe{margin:0 5%}.user-center .user-center-account .safe li{border-bottom:1px solid lightgray;padding:4% 0;list-style:none}.user-center .user-center-account .safe li div{display:inline-block;min-width:25%;box-sizing:border-box}.user-center .user-center-account .safe li div.ok{color:green}.user-center .user-center-account .safe li div.ok:before{content:"✔";border:2px solid;text-align:center;padding:3px 3px 0 2px;border-radius:50%;margin-right:10px;font-size:12px}.user-center .user-center-account .safe li div.fail{color:red}.user-center .user-center-account .safe li div.fail:before{content:"✖";border:2px solid;text-align:center;padding:3px 3px 0 2px;border-radius:50%;margin-right:10px;font-size:12px}.user-center .user-center-account .safe li a{float:right;font-weight:700}.user-center .user-center-account>.center{margin:5% auto;height:82%}.user-center .user-center-account>.center .left{border-radius:20px 0 0 20px;background-color:#f5f5f5;overflow:hidden;width:22%;height:100%;float:left}.user-center .user-center-account>.center .left menu{width:100%;margin:5% 0 0;padding:0 0 10%}.user-center .user-center-account>.center .left menu li{border-top:1px solid lightgray;list-style-type:none;padding:5%;text-align:center;font-size:.9rem}.user-center .user-center-account>.center .left menu li.selected{background-color:#fff}.user-center .user-center-account>.center .right{background-color:#fefefe;width:78%;float:left;border-radius:0 10px 10px;display:flex;flex-direction:column;border:1px solid #e6e3e3;box-sizing:border-box;min-height:600px}.user-center .user-center-account>.center .right>h3{width:80%;margin:0% auto;text-align:center;font-weight:700;letter-spacing:5px;font-size:1.8rem}.user-center .user-center-account>.center .right iframe{height:100%;width:100%;border:0;min-height:600px}.user-center .user-center-account>.center .right .achor{text-align:right;padding-right:5%;font-size:.9rem;margin-bottom:3%}.user-center .copyright{text-align:center;color:gray;font-size:.9rem;padding-top:2%;clear:both}hr{border:none;border-top:1px solid #e3e3e3}.aj-form-table{width:95%;border-collapse:collapse;border-spacing:0}.aj-form-table th{background-color:#efefef;letter-spacing:3px}.aj-form-table td,.aj-form-table th{line-height:160%;height:120%;padding:10px 15px}.aj-form-table tr{transition:background-color .4s ease-out}.aj-form-table tr:nth-child(odd){background:#f5f5f5;box-shadow:0 1px #fffc inset}.aj-form-table tr:hover{background-color:#fbf8e9}.toolbar[data-v-99c09796]{margin-bottom:20px;overflow:hidden}.toolbar .ivu-ml[data-v-99c09796]{float:right;padding-top:10px}.ivu-mt.ivu-text-right[data-v-99c09796]{text-align:right;margin-top:20px}.common-search-panel .ivu-input-type-text[data-v-99c09796]{width:280px;margin:0 10px 16px 0}.searchFieldInput[data-v-31c6310a]{width:240px;margin:10px 10px 0 0}.more-attrib.input[data-v-b491a8d2]{width:260px}.more-attrib.input.small[data-v-b491a8d2]{width:100px}ul[data-v-b491a8d2]{width:350px;max-height:400px;border:1px solid lightgray;overflow-x:auto}li[data-v-b491a8d2]{list-style:none}li[data-v-b491a8d2]:hover{color:#000}li:hover .isChecked a[data-v-b491a8d2]{display:inline}li[data-v-b491a8d2]:nth-child(odd){background-color:#f0f0f0}li>div[data-v-b491a8d2]{display:inline-block;width:33%;text-align:center}li>div div[data-v-b491a8d2]{width:20px;display:inline-block}li>div input[data-v-b491a8d2]{border:none;text-align:center;width:90%;background-color:transparent;outline:none}li .isChecked a[data-v-b491a8d2]{color:red}.box[data-v-b491a8d2]{position:relative}.box .plus[data-v-b491a8d2]{color:green;position:absolute;right:0;bottom:0;cursor:pointer}.box.disabled[data-v-b491a8d2]{filter:grayscale(1) opacity(.4)}.notTooLong[data-v-280d1c62]{display:inline-block;color:gray;overflow:hidden;text-overflow:ellipsis;max-width:190px;white-space:nowrap;vertical-align:middle}.box[data-v-280d1c62]{width:400px;height:400px;border:1px solid lightgray;overflow-x:auto}.box li[data-v-280d1c62]{list-style:none;padding:5px 15px}.box li[data-v-280d1c62]:hover{color:#000}.box li span.right[data-v-280d1c62]{float:right}.box li label[data-v-280d1c62]{cursor:pointer}.box.even li[data-v-280d1c62]:nth-child(2n){background-color:#f0f0f0}.box.odd li[data-v-280d1c62]:nth-child(odd){background-color:#f0f0f0}.rightMargin{margin-right:10px}ul.table{width:100%;margin:30px 0 0;overflow-x:auto}ul.table li{list-style:none;white-space:nowrap;border-bottom:1px solid #e8eaec;transition:background-color .2s ease-in-out}ul.table li .checkbox-width{width:50px;text-align:center}ul.table li .field,ul.table li .uiLabel,ul.table li .input-width{width:150px}ul.table li .input-width-small{width:110px}ul.table li .number-width{width:100px}ul.table li .action{width:160px;float:right;height:20px}ul.table li:hover{background-color:#ebf7ff}ul.table header{background-color:#f8f8f9;color:#3b4251;white-space:nowrap;font-weight:700}ul.table section{max-height:500px;overflow-y:auto;overflow-x:hidden}ul.table>header>li>div,ul.table>section>li>div{text-align:center;padding:10px 5px;display:inline-block}.list-factory ul.table header,.list-factory ul.table section{width:100%}.config-table{overflow:hidden;padding:10px}.config-table .main{float:left;width:100%}.config-table .main.small{width:60%}.config-table .live-perview{float:right;width:39%;overflow:auto;min-height:500px;max-height:600px}.config-table .live-perview.hide{display:none}.config-table .below-perview{float:initial;width:100%}fieldset.hr[data-v-ce135107]{border:none;width:90%;margin:0 auto;border-top:1px solid lightgray}fieldset.hr legend[data-v-ce135107]{text-align:center;padding:10px}fieldset.panel[data-v-ce135107]{margin-top:20px;border:1px solid lightgray;padding:10px 20px}fieldset.panel legend[data-v-ce135107]{text-align:center;letter-spacing:5px}.list-factory[data-v-ce135107]{margin:10px auto}.list-factory .center input[data-v-ce135107]{text-align:center}li .render[data-v-ce135107]{width:120px}li .align[data-v-ce135107]{width:90px}ul.custom[data-v-ce135107]{width:380px;max-height:400px;border:1px solid lightgray;overflow-x:auto}ul.custom li[data-v-ce135107]{list-style:none;padding:3px}ul.custom li[data-v-ce135107]:hover{color:#000}ul.custom li:hover .isChecked a[data-v-ce135107]{display:inline}ul.custom li>div[data-v-ce135107]{display:inline-block;width:33%;text-align:center}ul.custom li>div input[data-v-ce135107]{border:none;text-align:center;width:90%;background-color:transparent;outline:none}ul.custom li[data-v-ce135107]:nth-child(odd){background-color:#f0f0f0}ul.custom li .action a[data-v-ce135107]{color:red}ul.custom.disabled[data-v-ce135107]{filter:grayscale(1) opacity(.4)}.icons[data-v-564b2b1a] .ivu-input-group-prepend{width:40px;cursor:pointer}.modal-icons .icon-list[data-v-564b2b1a]{height:450px;margin-top:16px;overflow-y:scroll}.modal-icons .list-items[data-v-564b2b1a]{cursor:pointer}.modal-icons[data-v-564b2b1a] .ivu-modal-wrap{display:flex;align-items:center;justify-content:center}.modal-icons[data-v-564b2b1a] .ivu-modal-wrap :deep(.ivu-modal){top:0}ul[data-v-60613061]{width:350px;max-height:400px;border:1px solid lightgray;overflow-x:auto}li[data-v-60613061]{list-style:none}li[data-v-60613061]:hover{color:#000}li:hover .isChecked a[data-v-60613061]{display:inline}li[data-v-60613061]:nth-child(odd){background-color:#f0f0f0}li>div[data-v-60613061]{display:inline-block;width:33%;text-align:center}li>div div[data-v-60613061]{width:20px;display:inline-block}li>div input[data-v-60613061]{border:none;text-align:center;width:90%;background-color:transparent;outline:none}li .isChecked a[data-v-60613061]{color:red}.box[data-v-60613061]{position:relative}.box .plus[data-v-60613061]{color:green;position:absolute;right:0;bottom:0;cursor:pointer}.box.disabled[data-v-60613061]{filter:grayscale(1) opacity(.4)}.more-attrib.input[data-v-1d990119]{width:260px}.more-attrib.input.small[data-v-1d990119]{width:100px}.aj-table{border:1px lightgray solid;border-collapse:collapse;border-spacing:0}.aj-table th{background-color:#efefef;letter-spacing:3px}.aj-table td,.aj-table th{border:1px lightgray solid;line-height:160%;height:120%;padding:6px}.aj-table tr:nth-child(odd){background:#f5f5f5;box-shadow:0 1px #fffc inset}.aj-table tr:hover{background-color:#fbf8e9}.checkbox_holder{width:12px;margin:0 auto}fieldset.hr[data-v-fa68a729]{border:none;width:90%;margin:0 auto;border-top:1px solid lightgray}fieldset.hr legend[data-v-fa68a729]{text-align:center;padding:10px}fieldset.panel[data-v-fa68a729]{margin-top:20px;border:1px solid lightgray;padding:10px 20px}fieldset.panel legend[data-v-fa68a729]{text-align:center;letter-spacing:5px}.form-factory[data-v-fa68a729]{margin:10px auto;width:98%}.form-factory .center input[data-v-fa68a729]{text-align:center}.form-factory fieldset.panel[data-v-fa68a729]{margin:20px 0;border:1px solid lightgray;border-radius:5px;padding:10px 20px}.form-factory fieldset.panel legend[data-v-fa68a729]{margin-left:8px;letter-spacing:5px}.form-factory .hide[data-v-fa68a729]{display:none}.uiType[data-v-fa68a729]{width:180px}.uiLayout[data-v-fa68a729]{width:100px}a.selected[data-v-fa68a729]{font-weight:700}p[data-v-fa68a729]{margin:15px 0}
1
+ .aj-form-html-editor ul.toolbar{border:1px solid #C5C5C5;border-radius:4px 4px 0 0;border-bottom:0;background-color:#e8e7e4;width:100%;min-height:30px;margin:0;box-sizing:border-box;padding:3px 4px}.aj-form-html-editor ul.toolbar>li{list-style:none;float:left;cursor:pointer}.aj-form-html-editor ul.toolbar>li>i{border:1px solid transparent;min-width:25px;height:20px;line-height:20px;text-align:center;display:block}.aj-form-html-editor ul.toolbar>li>i.text-icon{font-family:Times New Roman;font-weight:700;font-style:normal}.aj-form-html-editor ul.toolbar>li>i.fontAwesome{padding-top:2px;font: 18px/1 FontAwesome}.aj-form-html-editor ul.toolbar>li>i:hover{border-right-color:#aaa;border-bottom-color:#aaa;border-top-color:#fff;border-left-color:#fff}.aj-form-html-editor ul.toolbar>li>i:active{border-right-color:#f3f8fc;border-bottom-color:#f3f8fc;border-top-color:#ccc;border-left-color:#ccc}.aj-form-html-editor ul.toolbar>li ul li{padding:3px;cursor:pointer}.aj-form-html-editor ul.toolbar>li ul li:hover{background-color:#d3d3d3}.aj-form-html-editor ul.toolbar>li .cleanHTML{background-size:16px 16px}.aj-form-html-editor ul.toolbar>li .noBg{background-image:none}.aj-form-html-editor .editorBody iframe,.aj-form-html-editor .editorBody textarea{border:1px solid #C5C5C5;border-radius:0 0 4px 4px;border-top-width:0;box-sizing:border-box;background-color:#fff;min-height:300px;width:100%}.aj-form-html-editor .editorBody iframe.hide{display:none}.aj-form-html-editor .editorBody textarea{resize:none;display:none}.aj-form-html-editor .editorBody textarea.show{display:block}.aj-form-html-editor .colorPicker{width:210px;border:1px solid #D3D3D3;position:absolute}.aj-form-html-editor .colorPicker table{border-collapse:collapse}.aj-form-html-editor .colorPicker .colorhead{height:23px;line-height:23px;font-weight:700;width:100%}.aj-form-html-editor .colorPicker .colortitle{margin-left:6px;font-size:12px}.aj-form-html-editor .colorPicker .colorpanel td{border:1px solid #000;height:10px;width:10px;overflow:hidden;font-size:1px;cursor:pointer}.aj-form-html-editor .fontfamilyChoser a,.aj-form-html-editor .fontsizeChoser a{display:block;padding:2px;color:#000;line-height:120%;text-decoration:none}.aj-form-html-editor .fontfamilyChoser a:hover,.aj-form-html-editor .fontsizeChoser a:hover{background:#e5e5e5}.aj-form-html-editor .dorpdown{position:relative}.aj-form-html-editor .dorpdown:hover .fontfamilyChoser,.aj-form-html-editor .dorpdown .fontfamilyChoser:hover,.aj-form-html-editor .dorpdown:hover .fontsizeChoser,.aj-form-html-editor .dorpdown .fontsizeChoser:hover,.aj-form-html-editor .dorpdown:hover .colorPicker,.aj-form-html-editor .dorpdown .colorPicker:hover{display:block}.aj-form-html-editor .dorpdown>div{display:none;position:absolute;top:22px;left:0;background-color:#f5f5f5;border:1px solid lightgray;border-top:0;padding:5px;width:230px}.aj-form-html-editor .dorpdown .fontsizeChoser{top:inherit;right:0}.mask[data-v-e7c3fec5]{position:fixed;top:0;left:0;width:100%;height:100%;z-index:9999;-webkit-backdrop-filter:blur(2px) opacity(.7);backdrop-filter:blur(2px) opacity(.7);background:#000000b3}.login[data-v-e7c3fec5]{width:450px;margin:10% auto 0;background-color:#fff;padding:3%;border-radius:5px;box-shadow:2px 4px 5px #0006}.login h1[data-v-e7c3fec5]{font-size:20px;letter-spacing:2px;margin-bottom:20px}.login .auto-login[data-v-e7c3fec5]{margin-bottom:14px;text-align:left}.login .auto-login span[data-v-e7c3fec5]{color:red}.login a[data-v-e7c3fec5]{float:right}.html-content img{max-width:60%}.btns[data-v-1501f676]{text-align:center;padding:20px 0}.btns Button[data-v-1501f676]{width:130px;letter-spacing:3px;margin-right:30px}.toolbar[data-v-c19c2b56]{margin-bottom:20px;overflow:hidden;float:right}.toolbar .ivu-ml[data-v-c19c2b56]{float:right;padding-top:10px}.ivu-mt.ivu-text-right[data-v-c19c2b56]{text-align:right;margin-top:20px}.common-search-panel[data-v-c19c2b56]{width:380px;float:left}.common-search-panel .ivu-input-type-text[data-v-c19c2b56]{width:200px;margin:0 10px 16px 0}Button[data-v-f578bd16]{margin-right:10px}h1[data-v-d7a63bb7]{margin:0% 1%}Form[data-v-d7a63bb7]{max-width:1500px;margin:3% 0%}.note{color:gray;margin:20px 0}.btn{text-align:center;padding:20px;width:100%}.btn button{width:150px}input.editMode{border-bottom:1px solid lightgray!important}textarea{width:92%!important;min-height:50px!important;padding:5px!important}textarea.editMode{border:1px solid lightgray!important;background-color:#fff!important;border-radius:5px!important}.layer[data-v-4d3e0160]{position:fixed;top:0;left:0;width:100%;height:100%;background-color:#00000080;display:flex;justify-content:center;align-items:center}.layer-content[data-v-4d3e0160]{background-color:#fff;padding:20px;border-radius:5px;box-shadow:0 0 10px #0000004d}.aj-process-line[data-v-3aa0b34d]{display:flex;padding:5%;justify-content:center}.aj-process-line .process-line[data-v-3aa0b34d]{font-size:18px;color:#d3d3d3;font-weight:700}.aj-process-line .process-line>div[data-v-3aa0b34d]{float:left;width:156px;text-align:center;position:relative}.aj-process-line .process-line>div.current[data-v-3aa0b34d]{color:#000}.aj-process-line .process-line>div.current span[data-v-3aa0b34d]{background-color:gray}.aj-process-line .process-line>div p[data-v-3aa0b34d]{font-size:1rem;letter-spacing:3px;padding-top:5%}.aj-process-line .process-line>div span[data-v-3aa0b34d]{display:inline-block;width:32px;height:32px;border-radius:50%;color:#fff;line-height:32px;font-size:16px;background-color:#d3d3d3;position:relative;z-index:1}.aj-process-line .process-line>div[data-v-3aa0b34d]:last-child:after{display:none}.aj-process-line .process-line>div[data-v-3aa0b34d]:after{content:"";position:absolute;top:14px;left:94px;width:124px;height:4px;background-color:#d3d3d3}.aj-form>div{margin-bottom:15px}.aj-form>div.left-a{text-align:left}.aj-form>div.left-a .ivu-input-wrapper{width:193px}.login-log .ivu-card-body{padding:0}.user-center{min-height:700px;clear:both;margin:30px auto auto;height:82%;max-width:1200px}.user-center h4{padding:0 0 1% 3%;font-weight:700;letter-spacing:3px;font-size:1.1rem}.user-center .aj-hr{width:95%}.user-center .left{border-radius:20px 0 0 20px;background-color:#f5f5f5;overflow:hidden;width:22%;height:500px;float:left}.user-center .left menu{width:100%;margin:5% 0 0;padding:0 0 10%}.user-center .left menu a{text-decoration:none}.user-center .left menu li{border-top:1px solid lightgray;list-style-type:none;padding:5%;text-align:center;font-size:.95rem;cursor:pointer}.user-center .left menu li.actived{background-color:#fff;font-weight:700}.user-center .right{background-color:#fefefe;width:78%;float:left;border-radius:0 10px 10px;display:flex;flex-direction:column;border:1px solid #e6e3e3;box-sizing:border-box;min-height:600px;padding:4%}.user-center .right h3{width:80%;margin:0% auto 4%;text-align:center;font-weight:700;letter-spacing:5px;font-size:1.4rem}.user-center .right iframe{height:100%;width:100%;border:0;min-height:600px}.user-center .right .achor{text-align:right;padding-right:5%;font-size:.9rem;margin-bottom:3%}.user-center .avatar{margin:10% auto}.user-center .avatar div{margin:5% auto}.user-center .avatar div.imgHolder{width:100px;height:100px}.user-center .avatar div.imgHolder img{border-radius:50%;width:100px;height:100px}.user-center .avatar h3{text-align:center}.user-center .user-center-main table{width:100%;font-size:.95rem}.user-center .user-center-main table td{vertical-align:middle}.user-center .user-center-main table td input,.user-center .user-center-main table td textarea{border:none;background-color:transparent;outline:none}.user-center .user-center-profile{font-size:.95rem}.user-center .user-center-profile .loginId{padding:2% 5%}.user-center .user-center-profile table td{vertical-align:middle}.user-center .user-center-profile table td .aj-file-upload{width:130px;margin:0 auto}.user-center .user-center-profile table td .aj-file-upload .image-preview img{max-width:100px}.user-center .user-center-profile table tr td:nth-child(odd),.user-center .user-center-profile table tr th:nth-child(odd){color:gray}.user-center .user-center-profile .button-1{display:block;margin:2% auto}.user-center .user-center-account{min-height:600px;clear:both;overflow:hidden}.user-center .user-center-account .safe{margin:0 5%}.user-center .user-center-account .safe li{border-bottom:1px solid lightgray;padding:4% 0;list-style:none}.user-center .user-center-account .safe li div{display:inline-block;min-width:25%;box-sizing:border-box}.user-center .user-center-account .safe li div.ok{color:green}.user-center .user-center-account .safe li div.ok:before{content:"✔";border:2px solid;text-align:center;padding:3px 3px 0 2px;border-radius:50%;margin-right:10px;font-size:12px}.user-center .user-center-account .safe li div.fail{color:red}.user-center .user-center-account .safe li div.fail:before{content:"✖";border:2px solid;text-align:center;padding:3px 3px 0 2px;border-radius:50%;margin-right:10px;font-size:12px}.user-center .user-center-account .safe li a{float:right;font-weight:700}.user-center .user-center-account>.center{margin:5% auto;height:82%}.user-center .user-center-account>.center .left{border-radius:20px 0 0 20px;background-color:#f5f5f5;overflow:hidden;width:22%;height:100%;float:left}.user-center .user-center-account>.center .left menu{width:100%;margin:5% 0 0;padding:0 0 10%}.user-center .user-center-account>.center .left menu li{border-top:1px solid lightgray;list-style-type:none;padding:5%;text-align:center;font-size:.9rem}.user-center .user-center-account>.center .left menu li.selected{background-color:#fff}.user-center .user-center-account>.center .right{background-color:#fefefe;width:78%;float:left;border-radius:0 10px 10px;display:flex;flex-direction:column;border:1px solid #e6e3e3;box-sizing:border-box;min-height:600px}.user-center .user-center-account>.center .right>h3{width:80%;margin:0% auto;text-align:center;font-weight:700;letter-spacing:5px;font-size:1.8rem}.user-center .user-center-account>.center .right iframe{height:100%;width:100%;border:0;min-height:600px}.user-center .user-center-account>.center .right .achor{text-align:right;padding-right:5%;font-size:.9rem;margin-bottom:3%}.user-center .copyright{text-align:center;color:gray;font-size:.9rem;padding-top:2%;clear:both}hr{border:none;border-top:1px solid #e3e3e3}.aj-form-table{width:95%;border-collapse:collapse;border-spacing:0}.aj-form-table th{background-color:#efefef;letter-spacing:3px}.aj-form-table td,.aj-form-table th{line-height:160%;height:120%;padding:10px 15px}.aj-form-table tr{transition:background-color .4s ease-out}.aj-form-table tr:nth-child(odd){background:#f5f5f5;box-shadow:0 1px #fffc inset}.aj-form-table tr:hover{background-color:#fbf8e9}.toolbar[data-v-99c09796]{margin-bottom:20px;overflow:hidden}.toolbar .ivu-ml[data-v-99c09796]{float:right;padding-top:10px}.ivu-mt.ivu-text-right[data-v-99c09796]{text-align:right;margin-top:20px}.common-search-panel .ivu-input-type-text[data-v-99c09796]{width:280px;margin:0 10px 16px 0}.searchFieldInput[data-v-31c6310a]{width:240px;margin:10px 10px 0 0}.more-attrib.input[data-v-b491a8d2]{width:260px}.more-attrib.input.small[data-v-b491a8d2]{width:100px}ul[data-v-b491a8d2]{width:350px;max-height:400px;border:1px solid lightgray;overflow-x:auto}li[data-v-b491a8d2]{list-style:none}li[data-v-b491a8d2]:hover{color:#000}li:hover .isChecked a[data-v-b491a8d2]{display:inline}li[data-v-b491a8d2]:nth-child(odd){background-color:#f0f0f0}li>div[data-v-b491a8d2]{display:inline-block;width:33%;text-align:center}li>div div[data-v-b491a8d2]{width:20px;display:inline-block}li>div input[data-v-b491a8d2]{border:none;text-align:center;width:90%;background-color:transparent;outline:none}li .isChecked a[data-v-b491a8d2]{color:red}.box[data-v-b491a8d2]{position:relative}.box .plus[data-v-b491a8d2]{color:green;position:absolute;right:0;bottom:0;cursor:pointer}.box.disabled[data-v-b491a8d2]{filter:grayscale(1) opacity(.4)}.notTooLong[data-v-280d1c62]{display:inline-block;color:gray;overflow:hidden;text-overflow:ellipsis;max-width:190px;white-space:nowrap;vertical-align:middle}.box[data-v-280d1c62]{width:400px;height:400px;border:1px solid lightgray;overflow-x:auto}.box li[data-v-280d1c62]{list-style:none;padding:5px 15px}.box li[data-v-280d1c62]:hover{color:#000}.box li span.right[data-v-280d1c62]{float:right}.box li label[data-v-280d1c62]{cursor:pointer}.box.even li[data-v-280d1c62]:nth-child(2n){background-color:#f0f0f0}.box.odd li[data-v-280d1c62]:nth-child(odd){background-color:#f0f0f0}.rightMargin{margin-right:10px}ul.table{width:100%;margin:30px 0 0;overflow-x:auto}ul.table li{list-style:none;white-space:nowrap;border-bottom:1px solid #e8eaec;transition:background-color .2s ease-in-out}ul.table li .checkbox-width{width:50px;text-align:center}ul.table li .field,ul.table li .uiLabel,ul.table li .input-width{width:150px}ul.table li .input-width-small{width:110px}ul.table li .number-width{width:100px}ul.table li .action{width:160px;float:right;height:20px}ul.table li:hover{background-color:#ebf7ff}ul.table header{background-color:#f8f8f9;color:#3b4251;white-space:nowrap;font-weight:700}ul.table section{max-height:500px;overflow-y:auto;overflow-x:hidden}ul.table>header>li>div,ul.table>section>li>div{text-align:center;padding:10px 5px;display:inline-block}.list-factory ul.table header,.list-factory ul.table section{width:100%}.config-table{overflow:hidden;padding:10px}.config-table .main{float:left;width:100%}.config-table .main.small{width:60%}.config-table .live-perview{float:right;width:39%;overflow:auto;min-height:500px;max-height:600px}.config-table .live-perview.hide{display:none}.config-table .below-perview{float:initial;width:100%}fieldset.hr[data-v-ce135107]{border:none;width:90%;margin:0 auto;border-top:1px solid lightgray}fieldset.hr legend[data-v-ce135107]{text-align:center;padding:10px}fieldset.panel[data-v-ce135107]{margin-top:20px;border:1px solid lightgray;padding:10px 20px}fieldset.panel legend[data-v-ce135107]{text-align:center;letter-spacing:5px}.list-factory[data-v-ce135107]{margin:10px auto}.list-factory .center input[data-v-ce135107]{text-align:center}li .render[data-v-ce135107]{width:120px}li .align[data-v-ce135107]{width:90px}ul.custom[data-v-ce135107]{width:380px;max-height:400px;border:1px solid lightgray;overflow-x:auto}ul.custom li[data-v-ce135107]{list-style:none;padding:3px}ul.custom li[data-v-ce135107]:hover{color:#000}ul.custom li:hover .isChecked a[data-v-ce135107]{display:inline}ul.custom li>div[data-v-ce135107]{display:inline-block;width:33%;text-align:center}ul.custom li>div input[data-v-ce135107]{border:none;text-align:center;width:90%;background-color:transparent;outline:none}ul.custom li[data-v-ce135107]:nth-child(odd){background-color:#f0f0f0}ul.custom li .action a[data-v-ce135107]{color:red}ul.custom.disabled[data-v-ce135107]{filter:grayscale(1) opacity(.4)}.icons[data-v-564b2b1a] .ivu-input-group-prepend{width:40px;cursor:pointer}.modal-icons .icon-list[data-v-564b2b1a]{height:450px;margin-top:16px;overflow-y:scroll}.modal-icons .list-items[data-v-564b2b1a]{cursor:pointer}.modal-icons[data-v-564b2b1a] .ivu-modal-wrap{display:flex;align-items:center;justify-content:center}.modal-icons[data-v-564b2b1a] .ivu-modal-wrap :deep(.ivu-modal){top:0}ul[data-v-60613061]{width:350px;max-height:400px;border:1px solid lightgray;overflow-x:auto}li[data-v-60613061]{list-style:none}li[data-v-60613061]:hover{color:#000}li:hover .isChecked a[data-v-60613061]{display:inline}li[data-v-60613061]:nth-child(odd){background-color:#f0f0f0}li>div[data-v-60613061]{display:inline-block;width:33%;text-align:center}li>div div[data-v-60613061]{width:20px;display:inline-block}li>div input[data-v-60613061]{border:none;text-align:center;width:90%;background-color:transparent;outline:none}li .isChecked a[data-v-60613061]{color:red}.box[data-v-60613061]{position:relative}.box .plus[data-v-60613061]{color:green;position:absolute;right:0;bottom:0;cursor:pointer}.box.disabled[data-v-60613061]{filter:grayscale(1) opacity(.4)}.more-attrib.input[data-v-1d990119]{width:260px}.more-attrib.input.small[data-v-1d990119]{width:100px}.aj-table{border:1px lightgray solid;border-collapse:collapse;border-spacing:0}.aj-table th{background-color:#efefef;letter-spacing:3px}.aj-table td,.aj-table th{border:1px lightgray solid;line-height:160%;height:120%;padding:6px}.aj-table tr:nth-child(odd){background:#f5f5f5;box-shadow:0 1px #fffc inset}.aj-table tr:hover{background-color:#fbf8e9}.checkbox_holder{width:12px;margin:0 auto}fieldset.hr[data-v-fa68a729]{border:none;width:90%;margin:0 auto;border-top:1px solid lightgray}fieldset.hr legend[data-v-fa68a729]{text-align:center;padding:10px}fieldset.panel[data-v-fa68a729]{margin-top:20px;border:1px solid lightgray;padding:10px 20px}fieldset.panel legend[data-v-fa68a729]{text-align:center;letter-spacing:5px}.form-factory[data-v-fa68a729]{margin:10px auto;width:98%}.form-factory .center input[data-v-fa68a729]{text-align:center}.form-factory fieldset.panel[data-v-fa68a729]{margin:20px 0;border:1px solid lightgray;border-radius:5px;padding:10px 20px}.form-factory fieldset.panel legend[data-v-fa68a729]{margin-left:8px;letter-spacing:5px}.form-factory .hide[data-v-fa68a729]{display:none}.uiType[data-v-fa68a729]{width:180px}.uiLayout[data-v-fa68a729]{width:100px}a.selected[data-v-fa68a729]{font-weight:700}p[data-v-fa68a729]{margin:15px 0}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ajaxjs/ui",
3
- "version": "1.7.3",
3
+ "version": "1.7.5",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -1,2 +0,0 @@
1
- declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
- export default _default;
@@ -1,2 +0,0 @@
1
- export { default as MyButton } from './MyButton.vue';
2
- export { default as HtmlEditor } from './html-editor/HtmlEditor.vue';