@cuby-ui/core 0.0.19 → 0.0.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/components/context-menu/context-menu.component.d.ts +2 -1
- package/components/textarea/textarea.component.d.ts +2 -1
- package/esm2020/components/context-menu/context-menu.component.mjs +5 -4
- package/esm2020/components/textarea/textarea.component.mjs +9 -3
- package/fesm2015/cuby-ui-core.mjs +12 -5
- package/fesm2015/cuby-ui-core.mjs.map +1 -1
- package/fesm2020/cuby-ui-core.mjs +12 -5
- package/fesm2020/cuby-ui-core.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -564,7 +564,8 @@ class CuiContextMenuComponent {
|
|
|
564
564
|
this.element = inject(ElementRef).nativeElement;
|
|
565
565
|
this.document = inject(DOCUMENT);
|
|
566
566
|
this.documentElement = this.document.documentElement;
|
|
567
|
-
this.
|
|
567
|
+
this.EXTRA_OFFSET_LEFT = 0;
|
|
568
|
+
this.EXTRA_OFFSET_TOP = 0;
|
|
568
569
|
this.isVisible = false;
|
|
569
570
|
this.isHidden = false;
|
|
570
571
|
}
|
|
@@ -617,8 +618,8 @@ class CuiContextMenuComponent {
|
|
|
617
618
|
if (top + height > clientHeight) {
|
|
618
619
|
top -= height;
|
|
619
620
|
}
|
|
620
|
-
left = Math.max(left,
|
|
621
|
-
top = Math.max(top,
|
|
621
|
+
left = Math.max(left, this.EXTRA_OFFSET_LEFT);
|
|
622
|
+
top = Math.max(top, this.EXTRA_OFFSET_TOP);
|
|
622
623
|
this.isHidden = false;
|
|
623
624
|
this.clientX = left;
|
|
624
625
|
this.clientY = top;
|
|
@@ -1710,21 +1711,27 @@ class CuiTextareaComponent {
|
|
|
1710
1711
|
constructor() {
|
|
1711
1712
|
this.cuiTextFieldController = inject(CUI_TEXT_FIELD_CONTROLLER);
|
|
1712
1713
|
this.rows = 4;
|
|
1714
|
+
this.noBordersAndPaddings = false;
|
|
1713
1715
|
}
|
|
1714
1716
|
get isError() {
|
|
1715
1717
|
return this.cuiTextFieldController.isError;
|
|
1716
1718
|
}
|
|
1717
1719
|
}
|
|
1718
1720
|
CuiTextareaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CuiTextareaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1719
|
-
CuiTextareaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CuiTextareaComponent, selector: "textarea[cuiTextarea]", inputs: { rows: "rows" }, host: { properties: { "rows": "this.rows", "class._with-error": "this.isError" } }, providers: [CUI_TEXT_FILED_CONTROLLER_PROVIDER], hostDirectives: [{ directive: i2.CuiAutoResizingDirective }], ngImport: i0, template: '', isInline: true, styles: [":host{padding:11px 13px 11px 0;outline:none;margin:0;border-width:0;appearance:none;caret-color:currentColor;color:inherit;font:inherit;line-height:inherit;padding:11px 13px;font-weight:400;font-size:14px;line-height:20px;box-sizing:border-box;width:100%;border:1px solid var(--cui-base-200);border-radius:8px;resize:none;background:none;color:var(--cui-base-900);font-family:var(--cui-main-font)}:host:hover{border-color:var(--cui-base-300)}:host:focus-
|
|
1721
|
+
CuiTextareaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CuiTextareaComponent, selector: "textarea[cuiTextarea]", inputs: { rows: "rows", noBordersAndPaddings: "noBordersAndPaddings" }, host: { properties: { "rows": "this.rows", "class._no-borders-and-paddings": "this.noBordersAndPaddings", "class._with-error": "this.isError" } }, providers: [CUI_TEXT_FILED_CONTROLLER_PROVIDER], hostDirectives: [{ directive: i2.CuiAutoResizingDirective }], ngImport: i0, template: '', isInline: true, styles: [":host{padding:11px 13px 11px 0;outline:none;margin:0;border-width:0;appearance:none;caret-color:currentColor;color:inherit;font:inherit;line-height:inherit;padding:11px 13px;font-weight:400;font-size:14px;line-height:20px;box-sizing:border-box;width:100%;border:1px solid var(--cui-base-200);border-radius:8px;resize:none;background:none;color:var(--cui-base-900);font-family:var(--cui-main-font)}:host:hover{border-color:var(--cui-base-300)}:host:focus,:host:focus-visible{box-shadow:0 0 0 2px #e5ecff;border-color:var(--cui-info-600)}:host:disabled{cursor:not-allowed;opacity:.5;background:var(--cui-base-50);border-color:var(--cui-base-200)}:host::placeholder{color:var(--cui-base-400)}:host._no-borders-and-paddings{border:none;border-radius:0;padding:0;box-shadow:none}:host._with-error{border-color:var(--cui-error-500)}:host._with-error:focus{box-shadow:0 0 0 2px #d92d2040}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1720
1722
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CuiTextareaComponent, decorators: [{
|
|
1721
1723
|
type: Component,
|
|
1722
|
-
args: [{ selector: 'textarea[cuiTextarea]', template: '', changeDetection: ChangeDetectionStrategy.OnPush, providers: [CUI_TEXT_FILED_CONTROLLER_PROVIDER], hostDirectives: [CuiAutoResizingDirective], styles: [":host{padding:11px 13px 11px 0;outline:none;margin:0;border-width:0;appearance:none;caret-color:currentColor;color:inherit;font:inherit;line-height:inherit;padding:11px 13px;font-weight:400;font-size:14px;line-height:20px;box-sizing:border-box;width:100%;border:1px solid var(--cui-base-200);border-radius:8px;resize:none;background:none;color:var(--cui-base-900);font-family:var(--cui-main-font)}:host:hover{border-color:var(--cui-base-300)}:host:focus-
|
|
1724
|
+
args: [{ selector: 'textarea[cuiTextarea]', template: '', changeDetection: ChangeDetectionStrategy.OnPush, providers: [CUI_TEXT_FILED_CONTROLLER_PROVIDER], hostDirectives: [CuiAutoResizingDirective], styles: [":host{padding:11px 13px 11px 0;outline:none;margin:0;border-width:0;appearance:none;caret-color:currentColor;color:inherit;font:inherit;line-height:inherit;padding:11px 13px;font-weight:400;font-size:14px;line-height:20px;box-sizing:border-box;width:100%;border:1px solid var(--cui-base-200);border-radius:8px;resize:none;background:none;color:var(--cui-base-900);font-family:var(--cui-main-font)}:host:hover{border-color:var(--cui-base-300)}:host:focus,:host:focus-visible{box-shadow:0 0 0 2px #e5ecff;border-color:var(--cui-info-600)}:host:disabled{cursor:not-allowed;opacity:.5;background:var(--cui-base-50);border-color:var(--cui-base-200)}:host::placeholder{color:var(--cui-base-400)}:host._no-borders-and-paddings{border:none;border-radius:0;padding:0;box-shadow:none}:host._with-error{border-color:var(--cui-error-500)}:host._with-error:focus{box-shadow:0 0 0 2px #d92d2040}\n"] }]
|
|
1723
1725
|
}], propDecorators: { rows: [{
|
|
1724
1726
|
type: Input
|
|
1725
1727
|
}, {
|
|
1726
1728
|
type: HostBinding,
|
|
1727
1729
|
args: ['rows']
|
|
1730
|
+
}], noBordersAndPaddings: [{
|
|
1731
|
+
type: Input
|
|
1732
|
+
}, {
|
|
1733
|
+
type: HostBinding,
|
|
1734
|
+
args: ['class._no-borders-and-paddings']
|
|
1728
1735
|
}], isError: [{
|
|
1729
1736
|
type: HostBinding,
|
|
1730
1737
|
args: ['class._with-error']
|