guy 7 years ago
parent
commit
ee888f4360
  1. 5
      dist/bundle.js
  2. 18
      dist/bundle.min.js
  3. 5
      dist/case.js
  4. 5
      dist/fineui.js
  5. 12
      dist/fineui.min.js
  6. 4
      src/case/clipboard/index.js
  7. 1
      src/case/combo/staticcombo/combo.static.js

5
dist/bundle.js vendored

@ -66053,6 +66053,7 @@ BI.ClipBoard = BI.inherit(BI.BasicButton, {
_defaultConfig: function () {
return BI.extend(BI.ClipBoard.superclass._defaultConfig.apply(this, arguments), {
extraCls: "bi-clipboard",
el: {},
copy: BI.emptyFn,
afterCopy: BI.emptyFn
});
@ -66060,6 +66061,9 @@ BI.ClipBoard = BI.inherit(BI.BasicButton, {
_init: function () {
BI.ClipBoard.superclass._init.apply(this, arguments);
BI.createWidget(this.options.el, {
element: this
});
},
mounted: function () {
@ -68128,6 +68132,7 @@ BI.StaticCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
this.trigger = BI.createWidget({
type: "bi.text_trigger",
cls: "bi-border",
items: o.items,
height: o.height,
text: o.text,

18
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

5
dist/case.js vendored

@ -3538,6 +3538,7 @@ BI.ClipBoard = BI.inherit(BI.BasicButton, {
_defaultConfig: function () {
return BI.extend(BI.ClipBoard.superclass._defaultConfig.apply(this, arguments), {
extraCls: "bi-clipboard",
el: {},
copy: BI.emptyFn,
afterCopy: BI.emptyFn
});
@ -3545,6 +3546,9 @@ BI.ClipBoard = BI.inherit(BI.BasicButton, {
_init: function () {
BI.ClipBoard.superclass._init.apply(this, arguments);
BI.createWidget(this.options.el, {
element: this
});
},
mounted: function () {
@ -5613,6 +5617,7 @@ BI.StaticCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
this.trigger = BI.createWidget({
type: "bi.text_trigger",
cls: "bi-border",
items: o.items,
height: o.height,
text: o.text,

5
dist/fineui.js vendored

@ -67807,6 +67807,7 @@ BI.ClipBoard = BI.inherit(BI.BasicButton, {
_defaultConfig: function () {
return BI.extend(BI.ClipBoard.superclass._defaultConfig.apply(this, arguments), {
extraCls: "bi-clipboard",
el: {},
copy: BI.emptyFn,
afterCopy: BI.emptyFn
});
@ -67814,6 +67815,9 @@ BI.ClipBoard = BI.inherit(BI.BasicButton, {
_init: function () {
BI.ClipBoard.superclass._init.apply(this, arguments);
BI.createWidget(this.options.el, {
element: this
});
},
mounted: function () {
@ -69882,6 +69886,7 @@ BI.StaticCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
this.trigger = BI.createWidget({
type: "bi.text_trigger",
cls: "bi-border",
items: o.items,
height: o.height,
text: o.text,

12
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

4
src/case/clipboard/index.js

@ -8,6 +8,7 @@ BI.ClipBoard = BI.inherit(BI.BasicButton, {
_defaultConfig: function () {
return BI.extend(BI.ClipBoard.superclass._defaultConfig.apply(this, arguments), {
extraCls: "bi-clipboard",
el: {},
copy: BI.emptyFn,
afterCopy: BI.emptyFn
});
@ -15,6 +16,9 @@ BI.ClipBoard = BI.inherit(BI.BasicButton, {
_init: function () {
BI.ClipBoard.superclass._init.apply(this, arguments);
BI.createWidget(this.options.el, {
element: this
});
},
mounted: function () {

1
src/case/combo/staticcombo/combo.static.js

@ -21,6 +21,7 @@ BI.StaticCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
this.trigger = BI.createWidget({
type: "bi.text_trigger",
cls: "bi-border",
items: o.items,
height: o.height,
text: o.text,

Loading…
Cancel
Save