codexly-ui 0.0.64 → 0.0.66
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.
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
/* ── Scrollbar ───────────────────────────────────────────────────────────── */
|
|
9
|
-
::-webkit-scrollbar { width: 0.5rem; }
|
|
9
|
+
::-webkit-scrollbar { width: 0.5rem; height: 0.5rem; }
|
|
10
10
|
::-webkit-scrollbar-track { background-color: transparent; }
|
|
11
11
|
::-webkit-scrollbar-thumb {
|
|
12
12
|
background-color: var(--clx-scrollbar);
|
package/fesm2022/codexly-ui.mjs
CHANGED
|
@@ -6277,7 +6277,8 @@ class ClxToastContainerComponent {
|
|
|
6277
6277
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ClxToastContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6278
6278
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.15", type: ClxToastContainerComponent, isStandalone: true, selector: "clx-toast-container", inputs: { entries: { classPropertyName: "entries", publicName: "entries", isSignal: true, isRequired: false, transformFunction: null }, position: { classPropertyName: "position", publicName: "position", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { entries: "entriesChange", position: "positionChange" }, viewQueries: [{ propertyName: "toastRefs", predicate: ClxToastComponent, descendants: true }], ngImport: i0, template: `
|
|
6279
6279
|
<div
|
|
6280
|
-
class="clx-toast-stack fixed
|
|
6280
|
+
class="clx-toast-stack fixed flex flex-col gap-2 w-full max-w-sm pointer-events-none sm:max-w-sm max-sm:max-w-full max-sm:left-0! max-sm:right-0! max-sm:translate-x-0! max-sm:px-3 max-sm:items-stretch!"
|
|
6281
|
+
style="z-index: 99999"
|
|
6281
6282
|
[class]="_positionClass()"
|
|
6282
6283
|
>
|
|
6283
6284
|
@for (entry of entries(); track entry.id) {
|
|
@@ -6295,7 +6296,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
|
|
|
6295
6296
|
type: Component,
|
|
6296
6297
|
args: [{ selector: 'clx-toast-container', standalone: true, imports: [ClxToastComponent], encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, template: `
|
|
6297
6298
|
<div
|
|
6298
|
-
class="clx-toast-stack fixed
|
|
6299
|
+
class="clx-toast-stack fixed flex flex-col gap-2 w-full max-w-sm pointer-events-none sm:max-w-sm max-sm:max-w-full max-sm:left-0! max-sm:right-0! max-sm:translate-x-0! max-sm:px-3 max-sm:items-stretch!"
|
|
6300
|
+
style="z-index: 99999"
|
|
6299
6301
|
[class]="_positionClass()"
|
|
6300
6302
|
>
|
|
6301
6303
|
@for (entry of entries(); track entry.id) {
|