codexly-ui 0.10.20 → 0.10.21
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
CHANGED
|
@@ -3898,7 +3898,7 @@ class ClxSelectComponent {
|
|
|
3898
3898
|
}, ...(ngDevMode ? [{ debugName: "_singleDisplayClass" }] : /* istanbul ignore next */ []));
|
|
3899
3899
|
_tagContainerClass = computed(() => {
|
|
3900
3900
|
const s = this._sizeConfig();
|
|
3901
|
-
return `flex flex-wrap flex-1 items-center ${s.py} pl-3
|
|
3901
|
+
return `flex flex-wrap flex-1 items-center min-w-0 ${s.py} pl-3 ${s.gap}`;
|
|
3902
3902
|
}, ...(ngDevMode ? [{ debugName: "_tagContainerClass" }] : /* istanbul ignore next */ []));
|
|
3903
3903
|
_placeholderClass = computed(() => `${this._sizeConfig().text} ${CLX_TEXT_IDLE}`, ...(ngDevMode ? [{ debugName: "_placeholderClass" }] : /* istanbul ignore next */ []));
|
|
3904
3904
|
_chevronBtnClass = computed(() => this._isOpen() ? 'transition-transform duration-200 rotate-180' : 'transition-transform duration-200', ...(ngDevMode ? [{ debugName: "_chevronBtnClass" }] : /* istanbul ignore next */ []));
|
|
@@ -4059,8 +4059,10 @@ class ClxSelectComponent {
|
|
|
4059
4059
|
<span [class]="_singleDisplayClass()" [style.font-family]="_displayFontFamily()">{{ _displayValue() }}</span>
|
|
4060
4060
|
}
|
|
4061
4061
|
|
|
4062
|
-
<!-- Right controls: clear + chevron
|
|
4063
|
-
|
|
4062
|
+
<!-- Right controls: clear + chevron — in normal flow (not absolute) so they never overlap
|
|
4063
|
+
wrapped tag chips in multi mode; reserving fixed pr-* space instead couldn't account
|
|
4064
|
+
for however many rows the chips wrap into. -->
|
|
4065
|
+
<div class="shrink-0 flex items-center gap-0.5 pr-2">
|
|
4064
4066
|
@if (_hasValue() && !_disabled() && multiple()) {
|
|
4065
4067
|
<button
|
|
4066
4068
|
clx-button
|
|
@@ -4208,8 +4210,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
|
|
|
4208
4210
|
<span [class]="_singleDisplayClass()" [style.font-family]="_displayFontFamily()">{{ _displayValue() }}</span>
|
|
4209
4211
|
}
|
|
4210
4212
|
|
|
4211
|
-
<!-- Right controls: clear + chevron
|
|
4212
|
-
|
|
4213
|
+
<!-- Right controls: clear + chevron — in normal flow (not absolute) so they never overlap
|
|
4214
|
+
wrapped tag chips in multi mode; reserving fixed pr-* space instead couldn't account
|
|
4215
|
+
for however many rows the chips wrap into. -->
|
|
4216
|
+
<div class="shrink-0 flex items-center gap-0.5 pr-2">
|
|
4213
4217
|
@if (_hasValue() && !_disabled() && multiple()) {
|
|
4214
4218
|
<button
|
|
4215
4219
|
clx-button
|