forked from fanruan/fineui
Browse Source
Merge in VISUAL/fineui from ~IMPACT/fine-ui:es6 to es6 * commit 'bac72939090fe9e4d79fcd72273080ac884a47b6': KERNEL-14047 refactor: 修复index KERNEL-14047 refactor: case/colorchoose ES6化es6
Impact-吴家豪
2 years ago
23 changed files with 1260 additions and 1149 deletions
@ -1,50 +1,57 @@ |
|||||||
|
import { shortcut, Widget } from "@/core"; |
||||||
|
import { ColorChooserPopup } from "./colorchooser.popup"; |
||||||
|
import { SimpleColorChooserPopup } from "./colorchooser.popup.simple"; |
||||||
|
|
||||||
/** |
/** |
||||||
* @author windy |
* @author windy |
||||||
* @version 2.0 |
* @version 2.0 |
||||||
* Created by windy on 2020/11/10 |
* Created by windy on 2020/11/10 |
||||||
*/ |
*/ |
||||||
BI.SimpleHexColorChooserPopup = BI.inherit(BI.Widget, { |
@shortcut() |
||||||
|
export class SimpleHexColorChooserPopup extends Widget { |
||||||
|
static xtype = "bi.simple_hex_color_chooser_popup"; |
||||||
|
|
||||||
|
static EVENT_VALUE_CHANGE = "EVENT_VALUE_CHANGE"; |
||||||
|
static EVENT_CHANGE = "EVENT_CHANGE"; |
||||||
|
|
||||||
props: { |
props = { |
||||||
baseCls: "bi-color-chooser-popup", |
baseCls: "bi-color-chooser-popup", |
||||||
}, |
} |
||||||
|
|
||||||
|
render() { |
||||||
|
const o = this.options; |
||||||
|
|
||||||
render: function () { |
|
||||||
var self = this, o = this.options; |
|
||||||
return { |
return { |
||||||
type: "bi.hex_color_chooser_popup", |
type: "bi.hex_color_chooser_popup", |
||||||
recommendColorsGetter: o.recommendColorsGetter, |
recommendColorsGetter: o.recommendColorsGetter, |
||||||
value: o.value, |
value: o.value, |
||||||
simple: true, // 是否有自动
|
simple: true, // 是否有自动
|
||||||
listeners: [{ |
listeners: [{ |
||||||
eventName: BI.ColorChooserPopup.EVENT_CHANGE, |
eventName: ColorChooserPopup.EVENT_CHANGE, |
||||||
action: function () { |
action: (...args) => { |
||||||
self.fireEvent(BI.SimpleColorChooserPopup.EVENT_CHANGE, arguments); |
this.fireEvent(SimpleColorChooserPopup.EVENT_CHANGE, ...args); |
||||||
} |
}, |
||||||
}, { |
}, { |
||||||
eventName: BI.ColorChooserPopup.EVENT_VALUE_CHANGE, |
eventName: ColorChooserPopup.EVENT_VALUE_CHANGE, |
||||||
action: function () { |
action: (...args) => { |
||||||
self.fireEvent(BI.SimpleColorChooserPopup.EVENT_VALUE_CHANGE, arguments); |
this.fireEvent(SimpleColorChooserPopup.EVENT_VALUE_CHANGE, ...args); |
||||||
} |
}, |
||||||
}], |
}], |
||||||
ref: function (_ref) { |
ref: _ref => { |
||||||
self.popup = _ref; |
this.popup = _ref; |
||||||
} |
}, |
||||||
} |
}; |
||||||
}, |
} |
||||||
|
|
||||||
setStoreColors: function (colors) { |
setStoreColors(colors) { |
||||||
this.popup.setStoreColors(colors); |
this.popup.setStoreColors(colors); |
||||||
}, |
} |
||||||
|
|
||||||
setValue: function (color) { |
setValue(color) { |
||||||
this.popup.setValue(color); |
this.popup.setValue(color); |
||||||
}, |
} |
||||||
|
|
||||||
getValue: function () { |
getValue() { |
||||||
return this.popup.getValue(); |
return this.popup.getValue(); |
||||||
} |
} |
||||||
}); |
} |
||||||
BI.SimpleHexColorChooserPopup.EVENT_VALUE_CHANGE = "EVENT_VALUE_CHANGE"; |
|
||||||
BI.SimpleHexColorChooserPopup.EVENT_CHANGE = "EVENT_CHANGE"; |
|
||||||
BI.shortcut("bi.simple_hex_color_chooser_popup", BI.SimpleHexColorChooserPopup); |
|
||||||
|
@ -1,47 +1,52 @@ |
|||||||
|
import { shortcut, Widget, extend, createWidget } from "@/core"; |
||||||
|
import { ColorChooserPopup } from "./colorchooser.popup"; |
||||||
|
|
||||||
/** |
/** |
||||||
* 选色控件 |
* 选色控件 |
||||||
* |
* |
||||||
* Created by GUY on 2015/11/17. |
* Created by GUY on 2015/11/17. |
||||||
* @class BI.SimpleColorChooserPopup |
* @class SimpleColorChooserPopup |
||||||
* @extends BI.Widget |
* @extends Widget |
||||||
*/ |
*/ |
||||||
BI.SimpleColorChooserPopup = BI.inherit(BI.Widget, { |
@shortcut() |
||||||
|
export class SimpleColorChooserPopup extends Widget { |
||||||
|
static xtype = "bi.simple_color_chooser_popup"; |
||||||
|
|
||||||
|
static EVENT_VALUE_CHANGE = "EVENT_VALUE_CHANGE"; |
||||||
|
static EVENT_CHANGE = "EVENT_CHANGE"; |
||||||
|
|
||||||
_defaultConfig: function () { |
_defaultConfig() { |
||||||
return BI.extend(BI.SimpleColorChooserPopup.superclass._defaultConfig.apply(this, arguments), { |
return extend(super._defaultConfig(...arguments), { |
||||||
baseCls: "bi-color-chooser-popup" |
baseCls: "bi-color-chooser-popup", |
||||||
}); |
}); |
||||||
}, |
} |
||||||
|
|
||||||
_init: function () { |
_init() { |
||||||
BI.SimpleColorChooserPopup.superclass._init.apply(this, arguments); |
super._init(...arguments); |
||||||
var self = this, o = this.options; |
const { hex, value } = this.options; |
||||||
this.popup = BI.createWidget({ |
this.popup = createWidget({ |
||||||
type: o.hex ? "bi.hex_color_chooser_popup" : "bi.color_chooser_popup", |
type: hex ? "bi.hex_color_chooser_popup" : "bi.color_chooser_popup", |
||||||
value: o.value, |
value, |
||||||
element: this, |
element: this, |
||||||
simple: true // 是否有自动
|
simple: true, // 是否有自动
|
||||||
}); |
}); |
||||||
this.popup.on(BI.ColorChooserPopup.EVENT_CHANGE, function () { |
this.popup.on(ColorChooserPopup.EVENT_CHANGE, (...args) => { |
||||||
self.fireEvent(BI.SimpleColorChooserPopup.EVENT_CHANGE, arguments); |
this.fireEvent(SimpleColorChooserPopup.EVENT_CHANGE, ...args); |
||||||
}); |
}); |
||||||
this.popup.on(BI.ColorChooserPopup.EVENT_VALUE_CHANGE, function () { |
this.popup.on(ColorChooserPopup.EVENT_VALUE_CHANGE, (...args) => { |
||||||
self.fireEvent(BI.SimpleColorChooserPopup.EVENT_VALUE_CHANGE, arguments); |
this.fireEvent(SimpleColorChooserPopup.EVENT_VALUE_CHANGE, ...args); |
||||||
}); |
}); |
||||||
}, |
} |
||||||
|
|
||||||
setStoreColors: function (colors) { |
setStoreColors(colors) { |
||||||
this.popup.setStoreColors(colors); |
this.popup.setStoreColors(colors); |
||||||
}, |
} |
||||||
|
|
||||||
setValue: function (color) { |
setValue(color) { |
||||||
this.popup.setValue(color); |
this.popup.setValue(color); |
||||||
}, |
} |
||||||
|
|
||||||
getValue: function () { |
getValue() { |
||||||
return this.popup.getValue(); |
return this.popup.getValue(); |
||||||
} |
} |
||||||
}); |
} |
||||||
BI.SimpleColorChooserPopup.EVENT_VALUE_CHANGE = "EVENT_VALUE_CHANGE"; |
|
||||||
BI.SimpleColorChooserPopup.EVENT_CHANGE = "EVENT_CHANGE"; |
|
||||||
BI.shortcut("bi.simple_color_chooser_popup", BI.SimpleColorChooserPopup); |
|
||||||
|
@ -1,66 +1,72 @@ |
|||||||
|
import { shortcut, isNotNull, extend } from "@/core"; |
||||||
|
import { BasicButton, Maskers } from "@/base"; |
||||||
|
|
||||||
/** |
/** |
||||||
* 简单选色控件按钮 |
* 简单选色控件按钮 |
||||||
* |
* |
||||||
* Created by GUY on 2015/11/16. |
* Created by GUY on 2015/11/16. |
||||||
* @class BI.ColorPickerButton |
* @class ColorPickerButton |
||||||
* @extends BI.BasicButton |
* @extends BasicButton |
||||||
*/ |
*/ |
||||||
BI.ColorPickerButton = BI.inherit(BI.BasicButton, { |
@shortcut() |
||||||
|
export class ColorPickerButton extends BasicButton { |
||||||
|
static xtype = "bi.color_picker_button"; |
||||||
|
|
||||||
|
static EVENT_CHANGE = "EVENT_CHANGE"; |
||||||
|
|
||||||
_defaultConfig: function () { |
_defaultConfig() { |
||||||
var conf = BI.ColorPickerButton.superclass._defaultConfig.apply(this, arguments); |
const conf = super._defaultConfig(...arguments); |
||||||
return BI.extend(conf, { |
|
||||||
baseCls: (conf.baseCls || "") + " bi-color-picker-button bi-background bi-border-top bi-border-left" |
return extend(conf, { |
||||||
|
baseCls: `${conf.baseCls || ""} bi-color-picker-button bi-background bi-border-top bi-border-left`, |
||||||
}); |
}); |
||||||
}, |
} |
||||||
|
|
||||||
_init: function () { |
_init() { |
||||||
BI.ColorPickerButton.superclass._init.apply(this, arguments); |
super._init(...arguments); |
||||||
var self = this, o = this.options; |
const o = this.options; |
||||||
if (BI.isNotNull(o.value)) { |
if (isNotNull(o.value)) { |
||||||
if (o.value === '') { |
if (o.value === "") { |
||||||
this.element.addClass("auto-color-no-square-normal-background"); |
this.element.addClass("auto-color-no-square-normal-background"); |
||||||
} else if (o.value === "transparent") { |
} else if (o.value === "transparent") { |
||||||
this.element.addClass("trans-color-background"); |
this.element.addClass("trans-color-background"); |
||||||
} else { |
} else { |
||||||
this.element.css("background-color", o.value); |
this.element.css("background-color", o.value); |
||||||
} |
} |
||||||
var name = this.getName(); |
const name = this.getName(); |
||||||
this.element.hover(function () { |
this.element.hover(() => { |
||||||
self._createMask(); |
this._createMask(); |
||||||
if (self.isEnabled()) { |
if (this.isEnabled()) { |
||||||
BI.Maskers.show(name); |
Maskers.show(name); |
||||||
} |
} |
||||||
}, function () { |
}, () => { |
||||||
if (!self.isSelected()) { |
if (!this.isSelected()) { |
||||||
BI.Maskers.hide(name); |
Maskers.hide(name); |
||||||
} |
} |
||||||
}); |
}); |
||||||
} |
} |
||||||
}, |
} |
||||||
|
|
||||||
_createMask: function () { |
_createMask() { |
||||||
var o = this.options, name = this.getName(); |
const o = this.options, name = this.getName(); |
||||||
if (this.isEnabled() && !BI.Maskers.has(name)) { |
if (this.isEnabled() && !Maskers.has(name)) { |
||||||
var w = BI.Maskers.make(name, this, { |
const w = Maskers.make(name, this, { |
||||||
offset: { |
offset: { |
||||||
left: -1, |
left: -1, |
||||||
top: -1, |
top: -1, |
||||||
right: -1, |
right: -1, |
||||||
bottom: -1 |
bottom: -1, |
||||||
} |
}, |
||||||
}); |
}); |
||||||
w.element.addClass("color-picker-button-mask").css("background-color", o.value); |
w.element.addClass("color-picker-button-mask").css("background-color", o.value); |
||||||
} |
} |
||||||
}, |
} |
||||||
|
|
||||||
setSelected: function (b) { |
setSelected(b) { |
||||||
BI.ColorPickerButton.superclass.setSelected.apply(this, arguments); |
super.setSelected(...arguments); |
||||||
if (b) { |
if (b) { |
||||||
this._createMask(); |
this._createMask(); |
||||||
} |
} |
||||||
BI.Maskers[b ? "show" : "hide"](this.getName()); |
Maskers[b ? "show" : "hide"](this.getName()); |
||||||
} |
} |
||||||
}); |
} |
||||||
BI.ColorPickerButton.EVENT_CHANGE = "EVENT_CHANGE"; |
|
||||||
BI.shortcut("bi.color_picker_button", BI.ColorPickerButton); |
|
||||||
|
@ -0,0 +1,2 @@ |
|||||||
|
export { ColorPickerButton } from "./button.colorpicker"; |
||||||
|
export { ColorChooserShowButton } from "./button.colorshow"; |
@ -1,190 +1,195 @@ |
|||||||
|
import { shortcut, Widget, extend, createItems, createWidget } from "@/core"; |
||||||
|
import { ButtonGroup } from "@/base"; |
||||||
|
|
||||||
/** |
/** |
||||||
* 简单选色控件 |
* 简单选色控件 |
||||||
* |
* |
||||||
* Created by GUY on 2015/11/16. |
* Created by GUY on 2015/11/16. |
||||||
* @class BI.ColorPicker |
* @class ColorPicker |
||||||
* @extends BI.Widget |
* @extends Widget |
||||||
*/ |
*/ |
||||||
BI.ColorPicker = BI.inherit(BI.Widget, { |
@shortcut() |
||||||
|
export class ColorPicker extends Widget { |
||||||
|
static xtype = "bi.color_picker"; |
||||||
|
|
||||||
|
static EVENT_CHANGE = "EVENT_CHANGE"; |
||||||
|
|
||||||
_defaultConfig: function () { |
_defaultConfig() { |
||||||
return BI.extend(BI.ColorPicker.superclass._defaultConfig.apply(this, arguments), { |
return extend(super._defaultConfig(...arguments), { |
||||||
baseCls: "bi-color-picker", |
baseCls: "bi-color-picker", |
||||||
items: null |
items: null, |
||||||
}); |
}); |
||||||
}, |
} |
||||||
|
|
||||||
_items: [ |
_items = [ |
||||||
[{ |
[{ |
||||||
value: "#ffffff" |
value: "#ffffff", |
||||||
}, { |
}, { |
||||||
value: "#f2f2f2" |
value: "#f2f2f2", |
||||||
}, { |
}, { |
||||||
value: "#e5e5e5" |
value: "#e5e5e5", |
||||||
}, { |
}, { |
||||||
value: "#d9d9d9" |
value: "#d9d9d9", |
||||||
}, { |
}, { |
||||||
value: "#cccccc" |
value: "#cccccc", |
||||||
}, { |
}, { |
||||||
value: "#bfbfbf" |
value: "#bfbfbf", |
||||||
}, { |
}, { |
||||||
value: "#b2b2b2" |
value: "#b2b2b2", |
||||||
}, { |
}, { |
||||||
value: "#a6a6a6" |
value: "#a6a6a6", |
||||||
}, { |
}, { |
||||||
value: "#999999" |
value: "#999999", |
||||||
}, { |
}, { |
||||||
value: "#8c8c8c" |
value: "#8c8c8c", |
||||||
}, { |
}, { |
||||||
value: "#808080" |
value: "#808080", |
||||||
}, { |
}, { |
||||||
value: "#737373" |
value: "#737373", |
||||||
}, { |
}, { |
||||||
value: "#666666" |
value: "#666666", |
||||||
}, { |
}, { |
||||||
value: "#4d4d4d" |
value: "#4d4d4d", |
||||||
}, { |
}, { |
||||||
value: "#333333" |
value: "#333333", |
||||||
}, { |
}, { |
||||||
value: "#000000" |
value: "#000000", |
||||||
}], |
}], |
||||||
[{ |
[{ |
||||||
value: "#d8b5a6" |
value: "#d8b5a6", |
||||||
}, { |
}, { |
||||||
value: "#ff9e9a" |
value: "#ff9e9a", |
||||||
}, { |
}, { |
||||||
value: "#ffc17d" |
value: "#ffc17d", |
||||||
}, { |
}, { |
||||||
value: "#f5e56b" |
value: "#f5e56b", |
||||||
}, { |
}, { |
||||||
value: "#d8e698" |
value: "#d8e698", |
||||||
}, { |
}, { |
||||||
value: "#e0ebaf" |
value: "#e0ebaf", |
||||||
}, { |
}, { |
||||||
value: "#c3d825" |
value: "#c3d825", |
||||||
}, { |
}, { |
||||||
value: "#bbe2e7" |
value: "#bbe2e7", |
||||||
}, { |
}, { |
||||||
value: "#85d3cd" |
value: "#85d3cd", |
||||||
}, { |
}, { |
||||||
value: "#bde1e6" |
value: "#bde1e6", |
||||||
}, { |
}, { |
||||||
value: "#a0d8ef" |
value: "#a0d8ef", |
||||||
}, { |
}, { |
||||||
value: "#89c3eb" |
value: "#89c3eb", |
||||||
}, { |
}, { |
||||||
value: "#bbc8e6" |
value: "#bbc8e6", |
||||||
}, { |
}, { |
||||||
value: "#bbbcde" |
value: "#bbbcde", |
||||||
}, { |
}, { |
||||||
value: "#d6b4cc" |
value: "#d6b4cc", |
||||||
}, { |
}, { |
||||||
value: "#fbc0d3" |
value: "#fbc0d3", |
||||||
}], |
}], |
||||||
[{ |
[{ |
||||||
value: "#bb9581" |
value: "#bb9581", |
||||||
}, { |
}, { |
||||||
value: "#f37d79" |
value: "#f37d79", |
||||||
}, { |
}, { |
||||||
value: "#fba74f" |
value: "#fba74f", |
||||||
}, { |
}, { |
||||||
value: "#ffdb4f" |
value: "#ffdb4f", |
||||||
}, { |
}, { |
||||||
value: "#c7dc68" |
value: "#c7dc68", |
||||||
}, { |
}, { |
||||||
value: "#b0ca71" |
value: "#b0ca71", |
||||||
}, { |
}, { |
||||||
value: "#99ab4e" |
value: "#99ab4e", |
||||||
}, { |
}, { |
||||||
value: "#84b9cb" |
value: "#84b9cb", |
||||||
}, { |
}, { |
||||||
value: "#00a3af" |
value: "#00a3af", |
||||||
}, { |
}, { |
||||||
value: "#2ca9e1" |
value: "#2ca9e1", |
||||||
}, { |
}, { |
||||||
value: "#0095d9" |
value: "#0095d9", |
||||||
}, { |
}, { |
||||||
value: "#4c6cb3" |
value: "#4c6cb3", |
||||||
}, { |
}, { |
||||||
value: "#8491c3" |
value: "#8491c3", |
||||||
}, { |
}, { |
||||||
value: "#a59aca" |
value: "#a59aca", |
||||||
}, { |
}, { |
||||||
value: "#cc7eb1" |
value: "#cc7eb1", |
||||||
}, { |
}, { |
||||||
value: "#e89bb4" |
value: "#e89bb4", |
||||||
}], |
}], |
||||||
[{ |
[{ |
||||||
value: "#9d775f" |
value: "#9d775f", |
||||||
}, { |
}, { |
||||||
value: "#dd4b4b" |
value: "#dd4b4b", |
||||||
}, { |
}, { |
||||||
value: "#ef8b07" |
value: "#ef8b07", |
||||||
}, { |
}, { |
||||||
value: "#fcc800" |
value: "#fcc800", |
||||||
}, { |
}, { |
||||||
value: "#aacf53" |
value: "#aacf53", |
||||||
}, { |
}, { |
||||||
value: "#82ae46" |
value: "#82ae46", |
||||||
}, { |
}, { |
||||||
value: "#69821b" |
value: "#69821b", |
||||||
}, { |
}, { |
||||||
value: "#59b9c6" |
value: "#59b9c6", |
||||||
}, { |
}, { |
||||||
value: "#2a83a2" |
value: "#2a83a2", |
||||||
}, { |
}, { |
||||||
value: "#007bbb" |
value: "#007bbb", |
||||||
}, { |
}, { |
||||||
value: "#19448e" |
value: "#19448e", |
||||||
}, { |
}, { |
||||||
value: "#274a78" |
value: "#274a78", |
||||||
}, { |
}, { |
||||||
value: "#4a488e" |
value: "#4a488e", |
||||||
}, { |
}, { |
||||||
value: "#7058a3" |
value: "#7058a3", |
||||||
}, { |
}, { |
||||||
value: "#884898" |
value: "#884898", |
||||||
}, { |
}, { |
||||||
value: "#d47596" |
value: "#d47596", |
||||||
}] |
}] |
||||||
], |
] |
||||||
|
|
||||||
_init: function () { |
_init() { |
||||||
BI.ColorPicker.superclass._init.apply(this, arguments); |
super._init(...arguments); |
||||||
var self = this, o = this.options; |
const o = this.options; |
||||||
this.colors = BI.createWidget({ |
this.colors = createWidget({ |
||||||
type: "bi.button_group", |
type: "bi.button_group", |
||||||
element: this, |
element: this, |
||||||
items: BI.createItems(o.items || this._items, { |
items: createItems(o.items || this._items, { |
||||||
type: "bi.color_picker_button", |
type: "bi.color_picker_button", |
||||||
once: false |
once: false, |
||||||
}), |
}), |
||||||
layouts: [{ |
layouts: [{ |
||||||
type: "bi.grid" |
type: "bi.grid", |
||||||
}], |
}], |
||||||
value: o.value |
value: o.value, |
||||||
}); |
}); |
||||||
this.colors.on(BI.ButtonGroup.EVENT_CHANGE, function () { |
this.colors.on(ButtonGroup.EVENT_CHANGE, (...args) => { |
||||||
self.fireEvent(BI.ColorPicker.EVENT_CHANGE, arguments); |
this.fireEvent(ColorPicker.EVENT_CHANGE, ...args); |
||||||
}); |
}); |
||||||
}, |
} |
||||||
|
|
||||||
populate: function (items) { |
populate(items) { |
||||||
var args = [].slice.call(arguments); |
const args = [].slice.call(arguments); |
||||||
args[0] = BI.createItems(items, { |
args[0] = createItems(items, { |
||||||
type: "bi.color_picker_button", |
type: "bi.color_picker_button", |
||||||
once: false |
once: false, |
||||||
}); |
}); |
||||||
this.colors.populate.apply(this.colors, args); |
this.colors.populate.apply(this.colors, args); |
||||||
}, |
} |
||||||
|
|
||||||
setValue: function (color) { |
setValue(color) { |
||||||
this.colors.setValue(color); |
this.colors.setValue(color); |
||||||
}, |
} |
||||||
|
|
||||||
getValue: function () { |
getValue() { |
||||||
return this.colors.getValue(); |
return this.colors.getValue(); |
||||||
} |
} |
||||||
}); |
} |
||||||
BI.ColorPicker.EVENT_CHANGE = "EVENT_CHANGE"; |
|
||||||
BI.shortcut("bi.color_picker", BI.ColorPicker); |
|
||||||
|
@ -0,0 +1,7 @@ |
|||||||
|
export { ColorPicker } from "./colorpicker"; |
||||||
|
export { HexColorPicker } from "./colorpicker.hex"; |
||||||
|
export { ColorPickerEditor } from "./editor.colorpicker"; |
||||||
|
export { HexColorPickerEditor } from "./editor.colorpicker.hex"; |
||||||
|
export { SimpleHexColorPickerEditor } from "./editor.colorpicker.hex.simple"; |
||||||
|
export { SimpleColorPickerEditor } from "./editor.colorpicker.simple"; |
||||||
|
export * from "./button"; |
@ -0,0 +1,11 @@ |
|||||||
|
export { ColorChooser } from "./colorchooser"; |
||||||
|
export { CustomColorChooser } from "./colorchooser.custom"; |
||||||
|
export { ColorChooserPopup } from "./colorchooser.popup"; |
||||||
|
export { HexColorChooserPopup } from "./colorchooser.popup.hex"; |
||||||
|
export { SimpleHexColorChooserPopup } from "./colorchooser.popup.hex.simple"; |
||||||
|
export { SimpleColorChooserPopup } from "./colorchooser.popup.simple"; |
||||||
|
export { SimpleColorChooser } from "./colorchooser.simple"; |
||||||
|
export { ColorChooserTrigger } from "./colorchooser.trigger"; |
||||||
|
export { LongColorChooserTrigger } from "./colorchooser.trigger.long"; |
||||||
|
export { Farbtastic } from "./farbtastic/farbtastic"; |
||||||
|
export * from "./colorpicker"; |
Loading…
Reference in new issue