bkui-vue 0.0.1-beta.139 → 0.0.1-beta.141

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.
Files changed (83) hide show
  1. package/dist/index.cjs.js +29 -29
  2. package/dist/index.esm.js +58 -42
  3. package/dist/index.umd.js +26 -26
  4. package/dist/style.css +1 -1
  5. package/dist/style.variable.css +1 -1
  6. package/lib/affix/affix.variable.css +11 -0
  7. package/lib/alert/alert.variable.css +11 -0
  8. package/lib/backtop/backtop.variable.css +11 -0
  9. package/lib/badge/badge.variable.css +11 -0
  10. package/lib/breadcrumb/breadcrumb.variable.css +11 -0
  11. package/lib/button/button.less +7 -7
  12. package/lib/button/button.variable.css +11 -0
  13. package/lib/card/card.variable.css +11 -0
  14. package/lib/cascader/cascader-panel.d.ts +1 -0
  15. package/lib/cascader/cascader.css +8 -1
  16. package/lib/cascader/cascader.d.ts +12 -2
  17. package/lib/cascader/cascader.less +9 -1
  18. package/lib/cascader/cascader.variable.css +19 -1
  19. package/lib/cascader/index.d.ts +40 -6
  20. package/lib/cascader/index.js +1 -1
  21. package/lib/cascader/interface.d.ts +4 -1
  22. package/lib/cascader/node.d.ts +2 -1
  23. package/lib/cascader/store.d.ts +3 -0
  24. package/lib/checkbox/checkbox.variable.css +11 -0
  25. package/lib/code-diff/code-diff.variable.css +11 -0
  26. package/lib/collapse/collapse.variable.css +11 -0
  27. package/lib/container/container.variable.css +11 -0
  28. package/lib/date-picker/date-picker.variable.css +11 -0
  29. package/lib/divider/divider.variable.css +11 -0
  30. package/lib/dropdown/dropdown.variable.css +11 -0
  31. package/lib/exception/exception.variable.css +11 -0
  32. package/lib/fixed-navbar/fixed-navbar.variable.css +11 -0
  33. package/lib/form/form.variable.css +11 -0
  34. package/lib/input/input.variable.css +11 -0
  35. package/lib/link/link.variable.css +11 -0
  36. package/lib/loading/loading.variable.css +11 -0
  37. package/lib/menu/menu.variable.css +11 -0
  38. package/lib/menu/submenu.variable.css +11 -0
  39. package/lib/message/index.js +1 -1
  40. package/lib/message/message.css +8 -1
  41. package/lib/message/message.less +9 -1
  42. package/lib/message/message.variable.css +19 -1
  43. package/lib/message/messageConstructor.d.ts +2 -2
  44. package/lib/navigation/navigation.variable.css +11 -0
  45. package/lib/notify/index.js +1 -1
  46. package/lib/notify/notify.css +7 -3
  47. package/lib/notify/notify.less +8 -3
  48. package/lib/notify/notify.variable.css +18 -3
  49. package/lib/notify/notifyConstructor.d.ts +2 -2
  50. package/lib/pagination/pagination.variable.css +11 -0
  51. package/lib/popover/popover.variable.css +11 -0
  52. package/lib/popover2/popover2.variable.css +11 -0
  53. package/lib/process/process.variable.css +11 -0
  54. package/lib/progress/progress.variable.css +11 -0
  55. package/lib/radio/radio.css +56 -50
  56. package/lib/radio/radio.less +181 -171
  57. package/lib/radio/radio.variable.css +70 -53
  58. package/lib/resize-layout/resize-layout.variable.css +11 -0
  59. package/lib/select/select.variable.css +11 -0
  60. package/lib/sideslider/index.d.ts +43 -35
  61. package/lib/sideslider/index.js +1 -1
  62. package/lib/sideslider/sideslider.css +6 -7
  63. package/lib/sideslider/sideslider.d.ts +21 -17
  64. package/lib/sideslider/sideslider.less +6 -7
  65. package/lib/sideslider/sideslider.variable.css +17 -7
  66. package/lib/slider/slider.variable.css +11 -0
  67. package/lib/steps/steps.variable.css +11 -0
  68. package/lib/styles/mixins/scroll.variable.css +11 -0
  69. package/lib/styles/themes/themes.less +13 -0
  70. package/lib/switcher/switcher.variable.css +11 -0
  71. package/lib/tab/tab.variable.css +11 -0
  72. package/lib/table/plugins/head-filter.variable.css +11 -0
  73. package/lib/table/plugins/head-sort.variable.css +11 -0
  74. package/lib/table/plugins/settings.variable.css +11 -0
  75. package/lib/table/table.variable.css +11 -0
  76. package/lib/tag/tag.variable.css +11 -0
  77. package/lib/tag-input/tag-input.variable.css +11 -0
  78. package/lib/timeline/timeline.variable.css +11 -0
  79. package/lib/transfer/transfer.variable.css +11 -0
  80. package/lib/tree/tree.variable.css +11 -0
  81. package/lib/upload/upload.variable.css +11 -0
  82. package/lib/virtual-render/virtual-render.variable.css +11 -0
  83. package/package.json +1 -1
@@ -6,7 +6,7 @@ declare const BkSideslider: {
6
6
  title: string;
7
7
  multiInstance: boolean;
8
8
  showMask: boolean;
9
- extCls: string;
9
+ extCls: string | unknown[];
10
10
  width: string | number;
11
11
  height: string | number;
12
12
  draggable: boolean;
@@ -24,14 +24,6 @@ declare const BkSideslider: {
24
24
  fullscreen: boolean;
25
25
  animateType: string;
26
26
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
27
- title: {
28
- type: StringConstructor;
29
- default: string;
30
- };
31
- extCls: {
32
- type: StringConstructor;
33
- default: string;
34
- };
35
27
  direction: {
36
28
  type: StringConstructor;
37
29
  default: string;
@@ -48,6 +40,11 @@ declare const BkSideslider: {
48
40
  height: import("vue-types").VueTypeDef<string | number> & {
49
41
  default: string | number;
50
42
  };
43
+ extCls: (import("vue-types").VueTypeValidableDef<string> & {
44
+ default: string;
45
+ }) | (import("vue-types").VueTypeValidableDef<unknown[]> & {
46
+ default: () => unknown[];
47
+ });
51
48
  scrollable: import("vue-types").VueTypeValidableDef<boolean> & {
52
49
  default: boolean;
53
50
  } & {
@@ -94,6 +91,11 @@ declare const BkSideslider: {
94
91
  maxHeight: import("vue-types").VueTypeValidableDef<string> & {
95
92
  default: string;
96
93
  };
94
+ title: import("vue-types").VueTypeValidableDef<string> & {
95
+ default: string;
96
+ } & {
97
+ default: string;
98
+ };
97
99
  animateType: import("vue-types").VueTypeValidableDef<string> & {
98
100
  default: string;
99
101
  } & {
@@ -132,14 +134,6 @@ declare const BkSideslider: {
132
134
  $emit: (event: "hidden" | "update:isShow" | "shown" | "closed" | "animation-end", ...args: any[]) => void;
133
135
  $el: any;
134
136
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
135
- title: {
136
- type: StringConstructor;
137
- default: string;
138
- };
139
- extCls: {
140
- type: StringConstructor;
141
- default: string;
142
- };
143
137
  direction: {
144
138
  type: StringConstructor;
145
139
  default: string;
@@ -156,6 +150,11 @@ declare const BkSideslider: {
156
150
  height: import("vue-types").VueTypeDef<string | number> & {
157
151
  default: string | number;
158
152
  };
153
+ extCls: (import("vue-types").VueTypeValidableDef<string> & {
154
+ default: string;
155
+ }) | (import("vue-types").VueTypeValidableDef<unknown[]> & {
156
+ default: () => unknown[];
157
+ });
159
158
  scrollable: import("vue-types").VueTypeValidableDef<boolean> & {
160
159
  default: boolean;
161
160
  } & {
@@ -202,6 +201,11 @@ declare const BkSideslider: {
202
201
  maxHeight: import("vue-types").VueTypeValidableDef<string> & {
203
202
  default: string;
204
203
  };
204
+ title: import("vue-types").VueTypeValidableDef<string> & {
205
+ default: string;
206
+ } & {
207
+ default: string;
208
+ };
205
209
  animateType: import("vue-types").VueTypeValidableDef<string> & {
206
210
  default: string;
207
211
  } & {
@@ -229,7 +233,7 @@ declare const BkSideslider: {
229
233
  title: string;
230
234
  multiInstance: boolean;
231
235
  showMask: boolean;
232
- extCls: string;
236
+ extCls: string | unknown[];
233
237
  width: string | number;
234
238
  height: string | number;
235
239
  draggable: boolean;
@@ -267,14 +271,6 @@ declare const BkSideslider: {
267
271
  $nextTick: typeof import("vue").nextTick;
268
272
  $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
269
273
  } & Readonly<import("vue").ExtractPropTypes<{
270
- title: {
271
- type: StringConstructor;
272
- default: string;
273
- };
274
- extCls: {
275
- type: StringConstructor;
276
- default: string;
277
- };
278
274
  direction: {
279
275
  type: StringConstructor;
280
276
  default: string;
@@ -291,6 +287,11 @@ declare const BkSideslider: {
291
287
  height: import("vue-types").VueTypeDef<string | number> & {
292
288
  default: string | number;
293
289
  };
290
+ extCls: (import("vue-types").VueTypeValidableDef<string> & {
291
+ default: string;
292
+ }) | (import("vue-types").VueTypeValidableDef<unknown[]> & {
293
+ default: () => unknown[];
294
+ });
294
295
  scrollable: import("vue-types").VueTypeValidableDef<boolean> & {
295
296
  default: boolean;
296
297
  } & {
@@ -337,6 +338,11 @@ declare const BkSideslider: {
337
338
  maxHeight: import("vue-types").VueTypeValidableDef<string> & {
338
339
  default: string;
339
340
  };
341
+ title: import("vue-types").VueTypeValidableDef<string> & {
342
+ default: string;
343
+ } & {
344
+ default: string;
345
+ };
340
346
  animateType: import("vue-types").VueTypeValidableDef<string> & {
341
347
  default: string;
342
348
  } & {
@@ -365,14 +371,6 @@ declare const BkSideslider: {
365
371
  __isTeleport?: never;
366
372
  __isSuspense?: never;
367
373
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
368
- title: {
369
- type: StringConstructor;
370
- default: string;
371
- };
372
- extCls: {
373
- type: StringConstructor;
374
- default: string;
375
- };
376
374
  direction: {
377
375
  type: StringConstructor;
378
376
  default: string;
@@ -389,6 +387,11 @@ declare const BkSideslider: {
389
387
  height: import("vue-types").VueTypeDef<string | number> & {
390
388
  default: string | number;
391
389
  };
390
+ extCls: (import("vue-types").VueTypeValidableDef<string> & {
391
+ default: string;
392
+ }) | (import("vue-types").VueTypeValidableDef<unknown[]> & {
393
+ default: () => unknown[];
394
+ });
392
395
  scrollable: import("vue-types").VueTypeValidableDef<boolean> & {
393
396
  default: boolean;
394
397
  } & {
@@ -435,6 +438,11 @@ declare const BkSideslider: {
435
438
  maxHeight: import("vue-types").VueTypeValidableDef<string> & {
436
439
  default: string;
437
440
  };
441
+ title: import("vue-types").VueTypeValidableDef<string> & {
442
+ default: string;
443
+ } & {
444
+ default: string;
445
+ };
438
446
  animateType: import("vue-types").VueTypeValidableDef<string> & {
439
447
  default: string;
440
448
  } & {
@@ -462,7 +470,7 @@ declare const BkSideslider: {
462
470
  title: string;
463
471
  multiInstance: boolean;
464
472
  showMask: boolean;
465
- extCls: string;
473
+ extCls: string | unknown[];
466
474
  width: string | number;
467
475
  height: string | number;
468
476
  draggable: boolean;
@@ -1 +1 @@
1
- !function(t,e){if("object"==typeof exports&&"object"==typeof module)module.exports=e(require("../shared"),require("vue"),require("../button"),require("../modal"));else if("function"==typeof define&&define.amd)define(["../shared","vue","../button","../modal"],e);else{var r="object"==typeof exports?e(require("../shared"),require("vue"),require("../button"),require("../modal")):e(t["../shared"],t.vue,t["../button"],t["../modal"]);for(var n in r)("object"==typeof exports?exports:t)[n]=r[n]}}(self,((t,e,r,n)=>(()=>{var o={7162:(t,e,r)=>{t.exports=r(5047)},5047:t=>{var e=function(t){"use strict";var e,r=Object.prototype,n=r.hasOwnProperty,o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",c=o.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function s(t,e,r,n){var o=e&&e.prototype instanceof y?e:y,i=Object.create(o.prototype),a=new k(n||[]);return i._invoke=function(t,e,r){var n=f;return function(o,i){if(n===d)throw new Error("Generator is already running");if(n===p){if("throw"===o)throw i;return P()}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var c=E(a,r);if(c){if(c===v)continue;return c}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(n===f)throw n=p,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n=d;var u=l(t,e,r);if("normal"===u.type){if(n=r.done?p:h,u.arg===v)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n=p,r.method="throw",r.arg=u.arg)}}}(t,r,a),i}function l(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=s;var f="suspendedStart",h="suspendedYield",d="executing",p="completed",v={};function y(){}function g(){}function m(){}var b={};u(b,i,(function(){return this}));var w=Object.getPrototypeOf,x=w&&w(w(N([])));x&&x!==r&&n.call(x,i)&&(b=x);var j=m.prototype=y.prototype=Object.create(b);function L(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function O(t,e){function r(o,i,a,c){var u=l(t[o],t,i);if("throw"!==u.type){var s=u.arg,f=s.value;return f&&"object"==typeof f&&n.call(f,"__await")?e.resolve(f.__await).then((function(t){r("next",t,a,c)}),(function(t){r("throw",t,a,c)})):e.resolve(f).then((function(t){s.value=t,a(s)}),(function(t){return r("throw",t,a,c)}))}c(u.arg)}var o;this._invoke=function(t,n){function i(){return new e((function(e,o){r(t,n,e,o)}))}return o=o?o.then(i,i):i()}}function E(t,r){var n=t.iterator[r.method];if(n===e){if(r.delegate=null,"throw"===r.method){if(t.iterator.return&&(r.method="return",r.arg=e,E(t,r),"throw"===r.method))return v;r.method="throw",r.arg=new TypeError("The iterator does not provide a 'throw' method")}return v}var o=l(n,t.iterator,r.arg);if("throw"===o.type)return r.method="throw",r.arg=o.arg,r.delegate=null,v;var i=o.arg;return i?i.done?(r[t.resultName]=i.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,v):i:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,v)}function S(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function _(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function k(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(S,this),this.reset(!0)}function N(t){if(t){var r=t[i];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,a=function r(){for(;++o<t.length;)if(n.call(t,o))return r.value=t[o],r.done=!1,r;return r.value=e,r.done=!0,r};return a.next=a}}return{next:P}}function P(){return{value:e,done:!0}}return g.prototype=m,u(j,"constructor",m),u(m,"constructor",g),g.displayName=u(m,c,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===g||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,m):(t.__proto__=m,u(t,c,"GeneratorFunction")),t.prototype=Object.create(j),t},t.awrap=function(t){return{__await:t}},L(O.prototype),u(O.prototype,a,(function(){return this})),t.AsyncIterator=O,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new O(s(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},L(j),u(j,c,"Generator"),u(j,i,(function(){return this})),u(j,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=[];for(var r in t)e.push(r);return e.reverse(),function r(){for(;e.length;){var n=e.pop();if(n in t)return r.value=n,r.done=!1,r}return r.done=!0,r}},t.values=N,k.prototype={constructor:k,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(_),!t)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function o(n,o){return c.type="throw",c.arg=t,r.next=n,o&&(r.method="next",r.arg=e),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],c=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var u=n.call(a,"catchLoc"),s=n.call(a,"finallyLoc");if(u&&s){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(u){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!s)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,v):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),_(r),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;_(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:N(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),v}},t}(t.exports);try{regeneratorRuntime=e}catch(t){"object"==typeof globalThis?globalThis.regeneratorRuntime=e:Function("r","regeneratorRuntime = r")(e)}},4976:t=>{"use strict";t.exports=r},8014:t=>{"use strict";t.exports=n},4212:e=>{"use strict";e.exports=t},748:t=>{"use strict";t.exports=e}},i={};function a(t){var e=i[t];if(void 0!==e)return e.exports;var r=i[t]={exports:{}};return o[t](r,r.exports,a),r.exports}a.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return a.d(e,{a:e}),e},a.d=(t,e)=>{for(var r in e)a.o(e,r)&&!a.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},a.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),a.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var c={};return(()=>{"use strict";a.r(c),a.d(c,{default:()=>d});var t=a(4212),e=a(748),r=a(7162),n=a.n(r);Object.create,Object.create;var o=a(4976),i=a.n(o),u=a(8014),s=a.n(u),l=s().propsMixin,f=Object.assign({},l);f.width.default="400",f.height.default="100%";const h=(0,e.defineComponent)({name:"Sideslider",components:{BkModal:s(),BkButton:i()},props:Object.assign(Object.assign({},f),{title:{type:String,default:""},extCls:{type:String,default:""},direction:{type:String,default:"right",validator:function(t){var e=["left","right"];return!(e.indexOf(t)<0&&(console.error("direction property is not valid: '".concat(t,"',【").concat(e.join(" | "),"】")),1))}}}),emits:["closed","update:isShow","shown","hidden","animation-end"],setup:function(t,r){var o=this,i=r.slots,a=r.emit,c=function(){return e=o,r=void 0,i=void 0,c=n().mark((function e(){var r;return n().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(r=!0,"function"!=typeof t.beforeClose){e.next=5;break}return e.next=4,t.beforeClose();case 4:r=e.sent;case 5:r&&(a("update:isShow",!1),a("closed"),setTimeout((function(){a("animation-end")}),250));case 6:case"end":return e.stop()}}),e)})),new(i||(i=Promise))((function(t,n){function o(t){try{u(c.next(t))}catch(t){n(t)}}function a(t){try{u(c.throw(t))}catch(t){n(t)}}function u(e){var r;e.done?t(e.value):(r=e.value,r instanceof i?r:new i((function(t){t(r)}))).then(o,a)}u((c=c.apply(e,r||[])).next())}));var e,r,i,c},u=function(){setTimeout((function(){a("shown")}),200)},l=function(){setTimeout((function(){a("hidden")}),200)};return function(){var r,n={header:function(){var r,n;return(0,e.createVNode)(e.Fragment,null,[(0,e.createVNode)("div",{class:"bk-sideslider-header"},[(0,e.createVNode)("div",{class:"bk-sideslider-close ".concat(t.direction),onClick:function(){c()}},null),(0,e.createVNode)("div",{class:"bk-sideslider-title ".concat(t.direction)},[null!==(n=null===(r=i.header)||void 0===r?void 0:r.call(i))&&void 0!==n?n:t.title])])])},default:function(){var t,e;return null!==(e=null===(t=i.default)||void 0===t?void 0:t.call(i))&&void 0!==e?e:"Content"},footer:function(){var t,r;return(0,e.createVNode)("div",{class:"bk-sideslider-footer"},[null!==(r=null===(t=i.footer)||void 0===t?void 0:t.call(i))&&void 0!==r?r:""])}},o="bk-sideslider-wrapper ".concat(t.scrollable?"scroll-able":""," ").concat(t.extCls),a=i.footer?"calc(100vh - 114px)":"calc(100vh - 60px)";return(0,e.createVNode)(s(),(0,e.mergeProps)(t,{maxHeight:a,extCls:o,style:"".concat(t.direction,": 0;"),onHidden:l,onShown:u,onClose:c}),"function"==typeof(r=n)||"[object Object]"===Object.prototype.toString.call(r)&&!(0,e.isVNode)(r)?n:{default:function(){return[n]}})}}}),d=(0,t.withInstall)(h)})(),c})()));
1
+ !function(t,e){if("object"==typeof exports&&"object"==typeof module)module.exports=e(require("../shared"),require("vue"),require("../button"),require("../modal"));else if("function"==typeof define&&define.amd)define(["../shared","vue","../button","../modal"],e);else{var r="object"==typeof exports?e(require("../shared"),require("vue"),require("../button"),require("../modal")):e(t["../shared"],t.vue,t["../button"],t["../modal"]);for(var n in r)("object"==typeof exports?exports:t)[n]=r[n]}}(self,((t,e,r,n)=>(()=>{var o={7162:(t,e,r)=>{t.exports=r(5047)},5047:t=>{var e=function(t){"use strict";var e,r=Object.prototype,n=r.hasOwnProperty,o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",c=o.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function s(t,e,r,n){var o=e&&e.prototype instanceof y?e:y,i=Object.create(o.prototype),a=new S(n||[]);return i._invoke=function(t,e,r){var n=f;return function(o,i){if(n===d)throw new Error("Generator is already running");if(n===p){if("throw"===o)throw i;return P()}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var c=E(a,r);if(c){if(c===v)continue;return c}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(n===f)throw n=p,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n=d;var u=l(t,e,r);if("normal"===u.type){if(n=r.done?p:h,u.arg===v)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n=p,r.method="throw",r.arg=u.arg)}}}(t,r,a),i}function l(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=s;var f="suspendedStart",h="suspendedYield",d="executing",p="completed",v={};function y(){}function g(){}function m(){}var b={};u(b,i,(function(){return this}));var w=Object.getPrototypeOf,x=w&&w(w(N([])));x&&x!==r&&n.call(x,i)&&(b=x);var j=m.prototype=y.prototype=Object.create(b);function L(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function O(t,e){function r(o,i,a,c){var u=l(t[o],t,i);if("throw"!==u.type){var s=u.arg,f=s.value;return f&&"object"==typeof f&&n.call(f,"__await")?e.resolve(f.__await).then((function(t){r("next",t,a,c)}),(function(t){r("throw",t,a,c)})):e.resolve(f).then((function(t){s.value=t,a(s)}),(function(t){return r("throw",t,a,c)}))}c(u.arg)}var o;this._invoke=function(t,n){function i(){return new e((function(e,o){r(t,n,e,o)}))}return o=o?o.then(i,i):i()}}function E(t,r){var n=t.iterator[r.method];if(n===e){if(r.delegate=null,"throw"===r.method){if(t.iterator.return&&(r.method="return",r.arg=e,E(t,r),"throw"===r.method))return v;r.method="throw",r.arg=new TypeError("The iterator does not provide a 'throw' method")}return v}var o=l(n,t.iterator,r.arg);if("throw"===o.type)return r.method="throw",r.arg=o.arg,r.delegate=null,v;var i=o.arg;return i?i.done?(r[t.resultName]=i.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,v):i:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,v)}function _(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function k(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function S(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(_,this),this.reset(!0)}function N(t){if(t){var r=t[i];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,a=function r(){for(;++o<t.length;)if(n.call(t,o))return r.value=t[o],r.done=!1,r;return r.value=e,r.done=!0,r};return a.next=a}}return{next:P}}function P(){return{value:e,done:!0}}return g.prototype=m,u(j,"constructor",m),u(m,"constructor",g),g.displayName=u(m,c,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===g||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,m):(t.__proto__=m,u(t,c,"GeneratorFunction")),t.prototype=Object.create(j),t},t.awrap=function(t){return{__await:t}},L(O.prototype),u(O.prototype,a,(function(){return this})),t.AsyncIterator=O,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new O(s(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},L(j),u(j,c,"Generator"),u(j,i,(function(){return this})),u(j,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=[];for(var r in t)e.push(r);return e.reverse(),function r(){for(;e.length;){var n=e.pop();if(n in t)return r.value=n,r.done=!1,r}return r.done=!0,r}},t.values=N,S.prototype={constructor:S,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(k),!t)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function o(n,o){return c.type="throw",c.arg=t,r.next=n,o&&(r.method="next",r.arg=e),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],c=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var u=n.call(a,"catchLoc"),s=n.call(a,"finallyLoc");if(u&&s){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(u){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!s)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,v):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),k(r),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;k(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:N(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),v}},t}(t.exports);try{regeneratorRuntime=e}catch(t){"object"==typeof globalThis?globalThis.regeneratorRuntime=e:Function("r","regeneratorRuntime = r")(e)}},4976:t=>{"use strict";t.exports=r},8014:t=>{"use strict";t.exports=n},4212:e=>{"use strict";e.exports=t},748:t=>{"use strict";t.exports=e}},i={};function a(t){var e=i[t];if(void 0!==e)return e.exports;var r=i[t]={exports:{}};return o[t](r,r.exports,a),r.exports}a.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return a.d(e,{a:e}),e},a.d=(t,e)=>{for(var r in e)a.o(e,r)&&!a.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},a.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),a.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var c={};return(()=>{"use strict";a.r(c),a.d(c,{default:()=>d});var t=a(4212),e=a(748),r=a(7162),n=a.n(r);Object.create,Object.create;var o=a(4976),i=a.n(o),u=a(8014),s=a.n(u),l=s().propsMixin,f=Object.assign({},l);f.width.default="400",f.height.default="100%";const h=(0,e.defineComponent)({name:"Sideslider",components:{BkModal:s(),BkButton:i()},props:Object.assign(Object.assign({},f),{direction:{type:String,default:"right",validator:function(t){var e=["left","right"];return!(e.indexOf(t)<0&&(console.error("direction property is not valid: '".concat(t,"',【").concat(e.join(" | "),"】")),1))}}}),emits:["closed","update:isShow","shown","hidden","animation-end"],setup:function(t,r){var o=this,i=r.slots,a=r.emit,c=function(){return e=o,r=void 0,i=void 0,c=n().mark((function e(){var r;return n().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(r=!0,"function"!=typeof t.beforeClose){e.next=5;break}return e.next=4,t.beforeClose();case 4:r=e.sent;case 5:r&&(a("update:isShow",!1),a("closed"),setTimeout((function(){a("animation-end")}),250));case 6:case"end":return e.stop()}}),e)})),new(i||(i=Promise))((function(t,n){function o(t){try{u(c.next(t))}catch(t){n(t)}}function a(t){try{u(c.throw(t))}catch(t){n(t)}}function u(e){var r;e.done?t(e.value):(r=e.value,r instanceof i?r:new i((function(t){t(r)}))).then(o,a)}u((c=c.apply(e,r||[])).next())}));var e,r,i,c},u=function(){setTimeout((function(){a("shown")}),200)},l=function(){setTimeout((function(){a("hidden")}),200)};return function(){var r,n={header:function(){var r,n;return(0,e.createVNode)(e.Fragment,null,[(0,e.createVNode)("div",{class:"bk-sideslider-header"},[(0,e.createVNode)("div",{class:"bk-sideslider-close ".concat(t.direction),onClick:function(){c()}},null),(0,e.createVNode)("div",{class:"bk-sideslider-title ".concat(t.direction)},[null!==(n=null===(r=i.header)||void 0===r?void 0:r.call(i))&&void 0!==n?n:t.title])])])},default:function(){var t,e;return null!==(e=null===(t=i.default)||void 0===t?void 0:t.call(i))&&void 0!==e?e:"Content"},footer:function(){var t,r;return(0,e.createVNode)("div",{class:"bk-sideslider-footer"},[null!==(r=null===(t=i.footer)||void 0===t?void 0:t.call(i))&&void 0!==r?r:""])}},o="bk-sideslider-wrapper ".concat(t.scrollable?"scroll-able":""," ").concat(t.extCls),a=i.footer?"calc(100vh - 106px)":"calc(100vh - 52px)";return(0,e.createVNode)(s(),(0,e.mergeProps)(t,{maxHeight:a,class:o,style:"".concat(t.direction,": 0;"),onHidden:l,onShown:u,onClose:c}),"function"==typeof(r=n)||"[object Object]"===Object.prototype.toString.call(r)&&!(0,e.isVNode)(r)?n:{default:function(){return[n]}})}}}),d=(0,t.withInstall)(h)})(),c})()));
@@ -49,7 +49,7 @@
49
49
  }
50
50
  .bk-modal-wrapper.bk-sideslider-wrapper .bk-sideslider-header {
51
51
  width: 100%;
52
- height: 60px;
52
+ height: 52px;
53
53
  background: #fff;
54
54
  border-bottom: 1px solid #dcdee5;
55
55
  }
@@ -57,9 +57,9 @@
57
57
  position: absolute;
58
58
  top: 0;
59
59
  width: 30px;
60
- height: 60px;
60
+ height: 52px;
61
61
  font-size: 24px;
62
- line-height: 60px;
62
+ line-height: 52px;
63
63
  color: #fff;
64
64
  text-align: center;
65
65
  cursor: pointer;
@@ -94,12 +94,11 @@
94
94
  transform: translate(50%, -50%) rotate(-45deg);
95
95
  }
96
96
  .bk-modal-wrapper.bk-sideslider-wrapper .bk-sideslider-header .bk-sideslider-title {
97
- height: 60px;
97
+ height: 52px;
98
98
  padding-left: 30px;
99
99
  font-size: 16px;
100
- font-weight: 700;
101
- line-height: 60px;
102
- color: #666;
100
+ line-height: 52px;
101
+ color: #313238;
103
102
  }
104
103
  .bk-modal-wrapper.bk-sideslider-wrapper .bk-sideslider-header .bk-sideslider-title.right {
105
104
  padding: 0px 0px 0px 50px;
@@ -1,12 +1,4 @@
1
1
  declare const _default: import("vue").DefineComponent<{
2
- title: {
3
- type: StringConstructor;
4
- default: string;
5
- };
6
- extCls: {
7
- type: StringConstructor;
8
- default: string;
9
- };
10
2
  direction: {
11
3
  type: StringConstructor;
12
4
  default: string;
@@ -23,6 +15,11 @@ declare const _default: import("vue").DefineComponent<{
23
15
  height: import("vue-types").VueTypeDef<string | number> & {
24
16
  default: string | number;
25
17
  };
18
+ extCls: (import("vue-types").VueTypeValidableDef<string> & {
19
+ default: string;
20
+ }) | (import("vue-types").VueTypeValidableDef<unknown[]> & {
21
+ default: () => unknown[];
22
+ });
26
23
  scrollable: import("vue-types").VueTypeValidableDef<boolean> & {
27
24
  default: boolean;
28
25
  } & {
@@ -69,6 +66,11 @@ declare const _default: import("vue").DefineComponent<{
69
66
  maxHeight: import("vue-types").VueTypeValidableDef<string> & {
70
67
  default: string;
71
68
  };
69
+ title: import("vue-types").VueTypeValidableDef<string> & {
70
+ default: string;
71
+ } & {
72
+ default: string;
73
+ };
72
74
  animateType: import("vue-types").VueTypeValidableDef<string> & {
73
75
  default: string;
74
76
  } & {
@@ -87,14 +89,6 @@ declare const _default: import("vue").DefineComponent<{
87
89
  default: boolean;
88
90
  };
89
91
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("hidden" | "update:isShow" | "shown" | "closed" | "animation-end")[], "hidden" | "update:isShow" | "shown" | "closed" | "animation-end", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
90
- title: {
91
- type: StringConstructor;
92
- default: string;
93
- };
94
- extCls: {
95
- type: StringConstructor;
96
- default: string;
97
- };
98
92
  direction: {
99
93
  type: StringConstructor;
100
94
  default: string;
@@ -111,6 +105,11 @@ declare const _default: import("vue").DefineComponent<{
111
105
  height: import("vue-types").VueTypeDef<string | number> & {
112
106
  default: string | number;
113
107
  };
108
+ extCls: (import("vue-types").VueTypeValidableDef<string> & {
109
+ default: string;
110
+ }) | (import("vue-types").VueTypeValidableDef<unknown[]> & {
111
+ default: () => unknown[];
112
+ });
114
113
  scrollable: import("vue-types").VueTypeValidableDef<boolean> & {
115
114
  default: boolean;
116
115
  } & {
@@ -157,6 +156,11 @@ declare const _default: import("vue").DefineComponent<{
157
156
  maxHeight: import("vue-types").VueTypeValidableDef<string> & {
158
157
  default: string;
159
158
  };
159
+ title: import("vue-types").VueTypeValidableDef<string> & {
160
+ default: string;
161
+ } & {
162
+ default: string;
163
+ };
160
164
  animateType: import("vue-types").VueTypeValidableDef<string> & {
161
165
  default: string;
162
166
  } & {
@@ -184,7 +188,7 @@ declare const _default: import("vue").DefineComponent<{
184
188
  title: string;
185
189
  multiInstance: boolean;
186
190
  showMask: boolean;
187
- extCls: string;
191
+ extCls: string | unknown[];
188
192
  width: string | number;
189
193
  height: string | number;
190
194
  draggable: boolean;
@@ -67,7 +67,7 @@
67
67
 
68
68
  .bk-sideslider-header {
69
69
  width: 100%;
70
- height: 60px;
70
+ height: 52px;
71
71
  background: #fff;
72
72
  border-bottom: 1px solid #dcdee5;
73
73
 
@@ -75,9 +75,9 @@
75
75
  position: absolute;
76
76
  top: 0;
77
77
  width: 30px;
78
- height: 60px;
78
+ height: 52px;
79
79
  font-size: 24px;
80
- line-height: 60px;
80
+ line-height: 52px;
81
81
  color: #fff;
82
82
  text-align: center;
83
83
  cursor: pointer;
@@ -119,12 +119,11 @@
119
119
  }
120
120
 
121
121
  .bk-sideslider-title {
122
- height: 60px;
122
+ height: 52px;
123
123
  padding-left: 30px;
124
124
  font-size: 16px;
125
- font-weight: 700;
126
- line-height: 60px;
127
- color: #666;
125
+ line-height: 52px;
126
+ color: #313238;
128
127
 
129
128
  &.right {
130
129
  padding: 0px 0px 0px 50px;
@@ -47,6 +47,13 @@
47
47
  --button-warning-active-color: #eb9000;
48
48
  --button-selected-bg-color: #e1ecff;
49
49
  --button-disabled-selected-bg-color: #f0f1f5;
50
+ --radio-font-color: #63656e;
51
+ --radio-active-color: #5594fa;
52
+ --radio-hover-border-color: #979ba5;
53
+ --radio-disabled-border: #dcdee5;
54
+ --radio-disabled-font-color: #c4c6c;
55
+ --radio-distable-checked-bg: #fafbfd;
56
+ --radio-button-checked-bg: #e1ecff;
50
57
  --fixed-navbar-background: #fff;
51
58
  --fixed-navbar-boxshadow-color: rgba(0, 0, 0, 0.1);
52
59
  --switch-default-color: #fff;
@@ -67,12 +74,16 @@
67
74
  --message-color: var(--default-color);
68
75
  --message-primary-bg-color: #f0f8ff;
69
76
  --message-primary-border-color: #e1ecff;
77
+ --message-primary-shadow-color: #e1e8f4;
70
78
  --message-warning-bg-color: #fff4e2;
71
79
  --message-warning-border-color: #ffe8c3;
80
+ --message-warning-shadow-color: #ede6db;
72
81
  --message-success-bg-color: #f2fff4;
73
82
  --message-success-border-color: #dcffe2;
83
+ --message-success-shadow-color: #cef0d7;
74
84
  --message-danger-bg-color: #ffeded;
75
85
  --message-danger-border-color: #ffdddd;
86
+ --message-danger-shadow-color: #f6dada;
76
87
  --slider-default-bg: #dcdee5;
77
88
  --slider-disable-bar-bg: #979ba5;
78
89
  --menu-bg-color: #182132;
@@ -151,7 +162,7 @@
151
162
  }
152
163
  .bk-modal-wrapper.bk-sideslider-wrapper .bk-sideslider-header {
153
164
  width: 100%;
154
- height: 60px;
165
+ height: 52px;
155
166
  background: #fff;
156
167
  border-bottom: 1px solid #dcdee5;
157
168
  }
@@ -159,9 +170,9 @@
159
170
  position: absolute;
160
171
  top: 0;
161
172
  width: 30px;
162
- height: 60px;
173
+ height: 52px;
163
174
  font-size: 24px;
164
- line-height: 60px;
175
+ line-height: 52px;
165
176
  color: #fff;
166
177
  text-align: center;
167
178
  cursor: pointer;
@@ -196,12 +207,11 @@
196
207
  transform: translate(50%, -50%) rotate(-45deg);
197
208
  }
198
209
  .bk-modal-wrapper.bk-sideslider-wrapper .bk-sideslider-header .bk-sideslider-title {
199
- height: 60px;
210
+ height: 52px;
200
211
  padding-left: 30px;
201
212
  font-size: 16px;
202
- font-weight: 700;
203
- line-height: 60px;
204
- color: #666;
213
+ line-height: 52px;
214
+ color: #313238;
205
215
  }
206
216
  .bk-modal-wrapper.bk-sideslider-wrapper .bk-sideslider-header .bk-sideslider-title.right {
207
217
  padding: 0px 0px 0px 50px;
@@ -47,6 +47,13 @@
47
47
  --button-warning-active-color: #eb9000;
48
48
  --button-selected-bg-color: #e1ecff;
49
49
  --button-disabled-selected-bg-color: #f0f1f5;
50
+ --radio-font-color: #63656e;
51
+ --radio-active-color: #5594fa;
52
+ --radio-hover-border-color: #979ba5;
53
+ --radio-disabled-border: #dcdee5;
54
+ --radio-disabled-font-color: #c4c6c;
55
+ --radio-distable-checked-bg: #fafbfd;
56
+ --radio-button-checked-bg: #e1ecff;
50
57
  --fixed-navbar-background: #fff;
51
58
  --fixed-navbar-boxshadow-color: rgba(0, 0, 0, 0.1);
52
59
  --switch-default-color: #fff;
@@ -67,12 +74,16 @@
67
74
  --message-color: var(--default-color);
68
75
  --message-primary-bg-color: #f0f8ff;
69
76
  --message-primary-border-color: #e1ecff;
77
+ --message-primary-shadow-color: #e1e8f4;
70
78
  --message-warning-bg-color: #fff4e2;
71
79
  --message-warning-border-color: #ffe8c3;
80
+ --message-warning-shadow-color: #ede6db;
72
81
  --message-success-bg-color: #f2fff4;
73
82
  --message-success-border-color: #dcffe2;
83
+ --message-success-shadow-color: #cef0d7;
74
84
  --message-danger-bg-color: #ffeded;
75
85
  --message-danger-border-color: #ffdddd;
86
+ --message-danger-shadow-color: #f6dada;
76
87
  --slider-default-bg: #dcdee5;
77
88
  --slider-disable-bar-bg: #979ba5;
78
89
  --menu-bg-color: #182132;
@@ -48,6 +48,13 @@
48
48
  --button-warning-active-color: #eb9000;
49
49
  --button-selected-bg-color: #e1ecff;
50
50
  --button-disabled-selected-bg-color: #f0f1f5;
51
+ --radio-font-color: #63656e;
52
+ --radio-active-color: #5594fa;
53
+ --radio-hover-border-color: #979ba5;
54
+ --radio-disabled-border: #dcdee5;
55
+ --radio-disabled-font-color: #c4c6c;
56
+ --radio-distable-checked-bg: #fafbfd;
57
+ --radio-button-checked-bg: #e1ecff;
51
58
  --fixed-navbar-background: #fff;
52
59
  --fixed-navbar-boxshadow-color: rgba(0, 0, 0, 0.1);
53
60
  --switch-default-color: #fff;
@@ -68,12 +75,16 @@
68
75
  --message-color: var(--default-color);
69
76
  --message-primary-bg-color: #f0f8ff;
70
77
  --message-primary-border-color: #e1ecff;
78
+ --message-primary-shadow-color: #e1e8f4;
71
79
  --message-warning-bg-color: #fff4e2;
72
80
  --message-warning-border-color: #ffe8c3;
81
+ --message-warning-shadow-color: #ede6db;
73
82
  --message-success-bg-color: #f2fff4;
74
83
  --message-success-border-color: #dcffe2;
84
+ --message-success-shadow-color: #cef0d7;
75
85
  --message-danger-bg-color: #ffeded;
76
86
  --message-danger-border-color: #ffdddd;
87
+ --message-danger-shadow-color: #f6dada;
77
88
  --slider-default-bg: #dcdee5;
78
89
  --slider-disable-bar-bg: #979ba5;
79
90
  --menu-bg-color: #182132;
@@ -47,6 +47,13 @@
47
47
  --button-warning-active-color: #eb9000;
48
48
  --button-selected-bg-color: #e1ecff;
49
49
  --button-disabled-selected-bg-color: #f0f1f5;
50
+ --radio-font-color: #63656e;
51
+ --radio-active-color: #5594fa;
52
+ --radio-hover-border-color: #979ba5;
53
+ --radio-disabled-border: #dcdee5;
54
+ --radio-disabled-font-color: #c4c6c;
55
+ --radio-distable-checked-bg: #fafbfd;
56
+ --radio-button-checked-bg: #e1ecff;
50
57
  --fixed-navbar-background: #fff;
51
58
  --fixed-navbar-boxshadow-color: rgba(0, 0, 0, 0.1);
52
59
  --switch-default-color: #fff;
@@ -67,12 +74,16 @@
67
74
  --message-color: var(--default-color);
68
75
  --message-primary-bg-color: #f0f8ff;
69
76
  --message-primary-border-color: #e1ecff;
77
+ --message-primary-shadow-color: #e1e8f4;
70
78
  --message-warning-bg-color: #fff4e2;
71
79
  --message-warning-border-color: #ffe8c3;
80
+ --message-warning-shadow-color: #ede6db;
72
81
  --message-success-bg-color: #f2fff4;
73
82
  --message-success-border-color: #dcffe2;
83
+ --message-success-shadow-color: #cef0d7;
74
84
  --message-danger-bg-color: #ffeded;
75
85
  --message-danger-border-color: #ffdddd;
86
+ --message-danger-shadow-color: #f6dada;
76
87
  --slider-default-bg: #dcdee5;
77
88
  --slider-disable-bar-bg: #979ba5;
78
89
  --menu-bg-color: #182132;
@@ -60,6 +60,15 @@
60
60
  @button-selected-bg-color: #e1ecff;
61
61
  @button-disabled-selected-bg-color: #f0f1f5;
62
62
 
63
+ // radio theme
64
+ @radio-font-color: #63656e;
65
+ @radio-active-color: #5594fa;
66
+ @radio-hover-border-color: #979ba5;
67
+ @radio-disabled-border: #dcdee5;
68
+ @radio-disabled-font-color: #c4c6c;
69
+ @radio-distable-checked-bg: #fafbfd;
70
+ @radio-button-checked-bg: #e1ecff;
71
+
63
72
 
64
73
  // fixed-navbar theme
65
74
  @fixed-navbar-background: #fff;
@@ -90,12 +99,16 @@
90
99
  @message-color: @default-color;
91
100
  @message-primary-bg-color: #f0f8ff;
92
101
  @message-primary-border-color: #e1ecff;
102
+ @message-primary-shadow-color: #e1e8f4;
93
103
  @message-warning-bg-color: #fff4e2;
94
104
  @message-warning-border-color: #ffe8c3;
105
+ @message-warning-shadow-color: #ede6db;
95
106
  @message-success-bg-color: #f2fff4;
96
107
  @message-success-border-color: #dcffe2;
108
+ @message-success-shadow-color: #cef0d7;
97
109
  @message-danger-bg-color: #ffeded;
98
110
  @message-danger-border-color: #ffdddd;
111
+ @message-danger-shadow-color: #f6dada;
99
112
 
100
113
  // slider theme
101
114
  @slider-default-bg: #dcdee5;
@@ -47,6 +47,13 @@
47
47
  --button-warning-active-color: #eb9000;
48
48
  --button-selected-bg-color: #e1ecff;
49
49
  --button-disabled-selected-bg-color: #f0f1f5;
50
+ --radio-font-color: #63656e;
51
+ --radio-active-color: #5594fa;
52
+ --radio-hover-border-color: #979ba5;
53
+ --radio-disabled-border: #dcdee5;
54
+ --radio-disabled-font-color: #c4c6c;
55
+ --radio-distable-checked-bg: #fafbfd;
56
+ --radio-button-checked-bg: #e1ecff;
50
57
  --fixed-navbar-background: #fff;
51
58
  --fixed-navbar-boxshadow-color: rgba(0, 0, 0, 0.1);
52
59
  --switch-default-color: #fff;
@@ -67,12 +74,16 @@
67
74
  --message-color: var(--default-color);
68
75
  --message-primary-bg-color: #f0f8ff;
69
76
  --message-primary-border-color: #e1ecff;
77
+ --message-primary-shadow-color: #e1e8f4;
70
78
  --message-warning-bg-color: #fff4e2;
71
79
  --message-warning-border-color: #ffe8c3;
80
+ --message-warning-shadow-color: #ede6db;
72
81
  --message-success-bg-color: #f2fff4;
73
82
  --message-success-border-color: #dcffe2;
83
+ --message-success-shadow-color: #cef0d7;
74
84
  --message-danger-bg-color: #ffeded;
75
85
  --message-danger-border-color: #ffdddd;
86
+ --message-danger-shadow-color: #f6dada;
76
87
  --slider-default-bg: #dcdee5;
77
88
  --slider-disable-bar-bg: #979ba5;
78
89
  --menu-bg-color: #182132;
@@ -47,6 +47,13 @@
47
47
  --button-warning-active-color: #eb9000;
48
48
  --button-selected-bg-color: #e1ecff;
49
49
  --button-disabled-selected-bg-color: #f0f1f5;
50
+ --radio-font-color: #63656e;
51
+ --radio-active-color: #5594fa;
52
+ --radio-hover-border-color: #979ba5;
53
+ --radio-disabled-border: #dcdee5;
54
+ --radio-disabled-font-color: #c4c6c;
55
+ --radio-distable-checked-bg: #fafbfd;
56
+ --radio-button-checked-bg: #e1ecff;
50
57
  --fixed-navbar-background: #fff;
51
58
  --fixed-navbar-boxshadow-color: rgba(0, 0, 0, 0.1);
52
59
  --switch-default-color: #fff;
@@ -67,12 +74,16 @@
67
74
  --message-color: var(--default-color);
68
75
  --message-primary-bg-color: #f0f8ff;
69
76
  --message-primary-border-color: #e1ecff;
77
+ --message-primary-shadow-color: #e1e8f4;
70
78
  --message-warning-bg-color: #fff4e2;
71
79
  --message-warning-border-color: #ffe8c3;
80
+ --message-warning-shadow-color: #ede6db;
72
81
  --message-success-bg-color: #f2fff4;
73
82
  --message-success-border-color: #dcffe2;
83
+ --message-success-shadow-color: #cef0d7;
74
84
  --message-danger-bg-color: #ffeded;
75
85
  --message-danger-border-color: #ffdddd;
86
+ --message-danger-shadow-color: #f6dada;
76
87
  --slider-default-bg: #dcdee5;
77
88
  --slider-disable-bar-bg: #979ba5;
78
89
  --menu-bg-color: #182132;