codexly-ui 0.12.2 → 0.12.3
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.
- package/fesm2022/codexly-ui.mjs +1 -1
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +12 -12
package/fesm2022/codexly-ui.mjs
CHANGED
|
@@ -7893,7 +7893,7 @@ class ClxDateRangePickerComponent {
|
|
|
7893
7893
|
const size = this._sizeConfig();
|
|
7894
7894
|
const status = this._statusCfg();
|
|
7895
7895
|
const focus = resolveColor(this._color()).focus;
|
|
7896
|
-
const border = this._disabled() ? 'border-gray-200 bg-gray-50' : `${status.border} focus:outline-none ${focus}`;
|
|
7896
|
+
const border = this._disabled() ? 'border-gray-200 bg-gray-50' : `${status.border} bg-clx-surface focus:outline-none ${focus}`;
|
|
7897
7897
|
const cursor = this._disabled() ? 'cursor-not-allowed opacity-60' : 'cursor-pointer';
|
|
7898
7898
|
return `relative flex items-stretch ${size.trigger} ${resolveRadius(this._themeSvc.config().borderRadius)} border ${border} ${cursor} overflow-hidden transition-[border-color,box-shadow] duration-200 select-none`;
|
|
7899
7899
|
}, ...(ngDevMode ? [{ debugName: "_triggerClass" }] : /* istanbul ignore next */ []));
|