| Server IP : 13.235.167.51 / Your IP : 216.73.217.116 Web Server : Apache System : Linux machinox-server 6.17.0-1013-aws #13~24.04.1-Ubuntu SMP Fri Apr 24 21:36:58 UTC 2026 aarch64 User : root ( 0) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/control.machinox.in/node_modules/quill/ui/ |
Upload File : |
import Picker from './picker.js';
class ColorPicker extends Picker {
constructor(select, label) {
super(select);
this.label.innerHTML = label;
this.container.classList.add('ql-color-picker');
Array.from(this.container.querySelectorAll('.ql-picker-item')).slice(0, 7).forEach(item => {
item.classList.add('ql-primary');
});
}
buildItem(option) {
const item = super.buildItem(option);
item.style.backgroundColor = option.getAttribute('value') || '';
return item;
}
selectItem(item, trigger) {
super.selectItem(item, trigger);
const colorLabel = this.label.querySelector('.ql-color-label');
const value = item ? item.getAttribute('data-value') || '' : '';
if (colorLabel) {
if (colorLabel.tagName === 'line') {
colorLabel.style.stroke = value;
} else {
colorLabel.style.fill = value;
}
}
}
}
export default ColorPicker;
//# sourceMappingURL=color-picker.js.map