@cuby-ui/core 0.0.204 → 0.0.205
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/readonly-description/index.d.ts +1 -0
- package/components/readonly-description/readonly-description.component.d.ts +9 -5
- package/components/readonly-description/readonly-description.options.d.ts +5 -0
- package/esm2022/components/readonly-description/index.mjs +1 -1
- package/esm2022/components/readonly-description/readonly-description.component.mjs +5 -5
- package/esm2022/components/readonly-description/readonly-description.options.mjs +2 -0
- package/fesm2022/cuby-ui-core.mjs +4 -4
- package/fesm2022/cuby-ui-core.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -1,17 +1,21 @@
|
|
|
1
1
|
import { TemplateRef } from '@angular/core';
|
|
2
|
-
import { CuiEditorComponent
|
|
2
|
+
import { CuiEditorComponent } from '@cuby-ui/editor';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class CuiReadonlyDescriptionComponent {
|
|
5
5
|
protected readonly isShowMore: import("@angular/core").WritableSignal<boolean>;
|
|
6
6
|
protected readonly isMoreButtonShown: import("@angular/core").WritableSignal<boolean>;
|
|
7
|
-
protected readonly
|
|
7
|
+
protected readonly editorConfig: import("@angular/core").Signal<{
|
|
8
|
+
tools?: import("@cuby-ui/editor").CuiTools;
|
|
8
9
|
readOnly: boolean;
|
|
9
|
-
|
|
10
|
+
autofocus?: boolean;
|
|
11
|
+
element?: HTMLElement;
|
|
10
12
|
withoutPreload: boolean;
|
|
13
|
+
placeholder?: string;
|
|
14
|
+
readonlyPlaceholder?: string;
|
|
11
15
|
}>;
|
|
12
16
|
protected readonly editor: import("@angular/core").Signal<CuiEditorComponent>;
|
|
13
17
|
readonly editorId: import("@angular/core").InputSignal<string>;
|
|
14
|
-
readonly
|
|
18
|
+
readonly config: import("@angular/core").InputSignal<import("@cuby-ui/editor").CuiEditorConfig>;
|
|
15
19
|
readonly buttonTemplate: import("@angular/core").InputSignal<TemplateRef<unknown>>;
|
|
16
20
|
readonly shortHeight: import("@angular/core").InputSignal<number>;
|
|
17
21
|
constructor();
|
|
@@ -19,5 +23,5 @@ export declare class CuiReadonlyDescriptionComponent {
|
|
|
19
23
|
private initReadEditorProperty;
|
|
20
24
|
private initEditorIdEffect;
|
|
21
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<CuiReadonlyDescriptionComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CuiReadonlyDescriptionComponent, "cui-readonly-description", never, { "editorId": { "alias": "editorId"; "required": true; "isSignal": true; }; "
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiReadonlyDescriptionComponent, "cui-readonly-description", never, { "editorId": { "alias": "editorId"; "required": true; "isSignal": true; }; "config": { "alias": "config"; "required": true; "isSignal": true; }; "buttonTemplate": { "alias": "buttonTemplate"; "required": true; "isSignal": true; }; "shortHeight": { "alias": "shortHeight"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
23
27
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { CuiReadonlyDescriptionComponent } from './readonly-description.component';
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jb3JlL2NvbXBvbmVudHMvcmVhZG9ubHktZGVzY3JpcHRpb24vaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLCtCQUErQixFQUFFLE1BQU0sa0NBQWtDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgeyBDdWlSZWFkb25seURlc2NyaXB0aW9uQ29tcG9uZW50IH0gZnJvbSAnLi9yZWFkb25seS1kZXNjcmlwdGlvbi5jb21wb25lbnQnO1xyXG5leHBvcnQgeyBDdWlSZWFkb25seUVkaXRvckNvbmZpZyB9IGZyb20gJy4vcmVhZG9ubHktZGVzY3JpcHRpb24ub3B0aW9ucyc7XHJcbiJdfQ==
|
|
@@ -6,10 +6,10 @@ export class CuiReadonlyDescriptionComponent {
|
|
|
6
6
|
constructor() {
|
|
7
7
|
this.isShowMore = signal(false);
|
|
8
8
|
this.isMoreButtonShown = signal(false);
|
|
9
|
-
this.
|
|
9
|
+
this.editorConfig = computed(() => ({ readOnly: true, withoutPreload: true, ...this.config() }));
|
|
10
10
|
this.editor = viewChild.required('editor');
|
|
11
11
|
this.editorId = input.required();
|
|
12
|
-
this.
|
|
12
|
+
this.config = input.required();
|
|
13
13
|
this.buttonTemplate = input.required();
|
|
14
14
|
this.shortHeight = input(68);
|
|
15
15
|
this.initEditorIdEffect();
|
|
@@ -31,10 +31,10 @@ export class CuiReadonlyDescriptionComponent {
|
|
|
31
31
|
}, { allowSignalWrites: true });
|
|
32
32
|
}
|
|
33
33
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CuiReadonlyDescriptionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
34
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: CuiReadonlyDescriptionComponent, isStandalone: true, selector: "cui-readonly-description", inputs: { editorId: { classPropertyName: "editorId", publicName: "editorId", isSignal: true, isRequired: true, transformFunction: null },
|
|
34
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: CuiReadonlyDescriptionComponent, isStandalone: true, selector: "cui-readonly-description", inputs: { editorId: { classPropertyName: "editorId", publicName: "editorId", isSignal: true, isRequired: true, transformFunction: null }, config: { classPropertyName: "config", publicName: "config", isSignal: true, isRequired: true, transformFunction: null }, buttonTemplate: { classPropertyName: "buttonTemplate", publicName: "buttonTemplate", isSignal: true, isRequired: true, transformFunction: null }, shortHeight: { classPropertyName: "shortHeight", publicName: "shortHeight", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "editor", first: true, predicate: ["editor"], descendants: true, isSignal: true }], ngImport: i0, template: "<cui-editor\r\n #editor\r\n class=\"editor\"\r\n [class.editor_opened]=\"isShowMore()\"\r\n [editorID]=\"editorId()\"\r\n [config]=\"editorConfig()\"\r\n/>\r\n@if (isMoreButtonShown()) {\r\n <button class=\"c-button\" (click)=\"onShow(editor)\">\r\n <ng-container [ngTemplateOutlet]=\"buttonTemplate()\" [ngTemplateOutletContext]=\"{ $implicit: isShowMore }\"></ng-container>\r\n </button>\r\n}\r\n", styles: [":host{--height: 68px;--fullHeight: 500px;display:flex;flex-direction:column;gap:8px}:host .editor{display:block;max-height:var(--height);overflow:hidden}:host .editor_opened{max-height:var(--fullHeight);overflow:hidden auto}.c-button{padding:0}\n"], dependencies: [{ kind: "component", type: CuiEditorComponent, selector: "cui-editor", inputs: ["editorID", "config", "requestSize"], outputs: ["editorEmpty"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
35
35
|
}
|
|
36
36
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CuiReadonlyDescriptionComponent, decorators: [{
|
|
37
37
|
type: Component,
|
|
38
|
-
args: [{ selector: 'cui-readonly-description', standalone: true, imports: [CuiEditorComponent, NgTemplateOutlet], changeDetection: ChangeDetectionStrategy.OnPush, template: "<cui-editor\r\n #editor\r\n class=\"editor\"\r\n [class.editor_opened]=\"isShowMore()\"\r\n [editorID]=\"editorId()\"\r\n [config]=\"
|
|
38
|
+
args: [{ selector: 'cui-readonly-description', standalone: true, imports: [CuiEditorComponent, NgTemplateOutlet], changeDetection: ChangeDetectionStrategy.OnPush, template: "<cui-editor\r\n #editor\r\n class=\"editor\"\r\n [class.editor_opened]=\"isShowMore()\"\r\n [editorID]=\"editorId()\"\r\n [config]=\"editorConfig()\"\r\n/>\r\n@if (isMoreButtonShown()) {\r\n <button class=\"c-button\" (click)=\"onShow(editor)\">\r\n <ng-container [ngTemplateOutlet]=\"buttonTemplate()\" [ngTemplateOutletContext]=\"{ $implicit: isShowMore }\"></ng-container>\r\n </button>\r\n}\r\n", styles: [":host{--height: 68px;--fullHeight: 500px;display:flex;flex-direction:column;gap:8px}:host .editor{display:block;max-height:var(--height);overflow:hidden}:host .editor_opened{max-height:var(--fullHeight);overflow:hidden auto}.c-button{padding:0}\n"] }]
|
|
39
39
|
}], ctorParameters: () => [] });
|
|
40
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
40
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVhZG9ubHktZGVzY3JpcHRpb24uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY29yZS9jb21wb25lbnRzL3JlYWRvbmx5LWRlc2NyaXB0aW9uL3JlYWRvbmx5LWRlc2NyaXB0aW9uLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NvcmUvY29tcG9uZW50cy9yZWFkb25seS1kZXNjcmlwdGlvbi9yZWFkb25seS1kZXNjcmlwdGlvbi5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUNuRCxPQUFPLEVBQ0gsV0FBVyxFQUNYLHVCQUF1QixFQUN2QixTQUFTLEVBQ1QsUUFBUSxFQUNSLE1BQU0sRUFDTixLQUFLLEVBQ0wsTUFBTSxFQUVOLFNBQVMsRUFDWixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQzs7QUFZckQsTUFBTSxPQUFPLCtCQUErQjtJQVl4QztRQVhtQixlQUFVLEdBQUcsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQzNCLHNCQUFpQixHQUFHLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUNsQyxpQkFBWSxHQUFHLFFBQVEsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxDQUFDLEVBQUUsUUFBUSxFQUFFLElBQUksRUFBRSxjQUFjLEVBQUUsSUFBSSxFQUFFLEdBQUcsSUFBSSxDQUFDLE1BQU0sRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDO1FBRTVGLFdBQU0sR0FBRyxTQUFTLENBQUMsUUFBUSxDQUFxQixRQUFRLENBQUMsQ0FBQztRQUU3RCxhQUFRLEdBQUcsS0FBSyxDQUFDLFFBQVEsRUFBVSxDQUFDO1FBQ3BDLFdBQU0sR0FBRyxLQUFLLENBQUMsUUFBUSxFQUEyQixDQUFDO1FBQ25ELG1CQUFjLEdBQUcsS0FBSyxDQUFDLFFBQVEsRUFBd0IsQ0FBQztRQUN4RCxnQkFBVyxHQUFHLEtBQUssQ0FBUyxFQUFFLENBQUMsQ0FBQztRQUc1QyxJQUFJLENBQUMsa0JBQWtCLEVBQUUsQ0FBQztRQUMxQixJQUFJLENBQUMsc0JBQXNCLEVBQUUsQ0FBQztJQUNsQyxDQUFDO0lBRVMsTUFBTSxDQUFDLE1BQTBCO1FBQ3ZDLE1BQU0sQ0FBQyxhQUFhLENBQUMsUUFBUSxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQztRQUNwQyxJQUFJLENBQUMsVUFBVSxDQUFDLE1BQU0sQ0FBQyxDQUFDLElBQUksRUFBRSxFQUFFLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUM1QyxDQUFDO0lBRU8sc0JBQXNCO1FBQzFCLFdBQVcsQ0FBQztZQUNSLElBQUksRUFBRSxHQUFHLEVBQUUsQ0FBQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxNQUFNLEVBQUUsQ0FBQyxhQUFhLEVBQUUsWUFBWSxHQUFHLElBQUksQ0FBQyxXQUFXLEVBQUUsQ0FBQztTQUN6RyxDQUFDLENBQUM7SUFDUCxDQUFDO0lBRU8sa0JBQWtCO1FBQ3hCLE1BQU0sQ0FBQyxHQUFHLEVBQUU7WUFDUixJQUFJLENBQUMsUUFBUSxFQUFFLENBQUM7WUFDaEIsSUFBSSxDQUFDLFVBQVUsQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDL0IsQ0FBQyxFQUFFLEVBQUUsaUJBQWlCLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQztJQUNwQyxDQUFDOytHQWpDVSwrQkFBK0I7bUdBQS9CLCtCQUErQix3dUJDeEI1QyxzYUFZQSxnVERPYyxrQkFBa0IsZ0lBQUUsZ0JBQWdCOzs0RkFLckMsK0JBQStCO2tCQVIzQyxTQUFTOytCQUNJLDBCQUEwQixjQUN4QixJQUFJLFdBQ1AsQ0FBQyxrQkFBa0IsRUFBRSxnQkFBZ0IsQ0FBQyxtQkFHOUIsdUJBQXVCLENBQUMsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nVGVtcGxhdGVPdXRsZXQgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xyXG5pbXBvcnQge1xyXG4gICAgYWZ0ZXJSZW5kZXIsXHJcbiAgICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcclxuICAgIENvbXBvbmVudCxcclxuICAgIGNvbXB1dGVkLFxyXG4gICAgZWZmZWN0LFxyXG4gICAgaW5wdXQsXHJcbiAgICBzaWduYWwsXHJcbiAgICBUZW1wbGF0ZVJlZixcclxuICAgIHZpZXdDaGlsZFxyXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBDdWlFZGl0b3JDb21wb25lbnQgfSBmcm9tICdAY3VieS11aS9lZGl0b3InO1xyXG5cclxuaW1wb3J0IHsgQ3VpUmVhZG9ubHlFZGl0b3JDb25maWcgfSBmcm9tICcuL3JlYWRvbmx5LWRlc2NyaXB0aW9uLm9wdGlvbnMnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgICBzZWxlY3RvcjogJ2N1aS1yZWFkb25seS1kZXNjcmlwdGlvbicsXHJcbiAgICBzdGFuZGFsb25lOiB0cnVlLFxyXG4gICAgaW1wb3J0czogW0N1aUVkaXRvckNvbXBvbmVudCwgTmdUZW1wbGF0ZU91dGxldF0sXHJcbiAgICB0ZW1wbGF0ZVVybDogJy4vcmVhZG9ubHktZGVzY3JpcHRpb24uY29tcG9uZW50Lmh0bWwnLFxyXG4gICAgc3R5bGVVcmxzOiBbJy4vcmVhZG9ubHktZGVzY3JpcHRpb24uY29tcG9uZW50LnNjc3MnXSxcclxuICAgIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBDdWlSZWFkb25seURlc2NyaXB0aW9uQ29tcG9uZW50IHtcclxuICAgIHByb3RlY3RlZCByZWFkb25seSBpc1Nob3dNb3JlID0gc2lnbmFsKGZhbHNlKTtcclxuICAgIHByb3RlY3RlZCByZWFkb25seSBpc01vcmVCdXR0b25TaG93biA9IHNpZ25hbChmYWxzZSk7XHJcbiAgICBwcm90ZWN0ZWQgcmVhZG9ubHkgZWRpdG9yQ29uZmlnID0gY29tcHV0ZWQoKCkgPT4gKHsgcmVhZE9ubHk6IHRydWUsIHdpdGhvdXRQcmVsb2FkOiB0cnVlLCAuLi50aGlzLmNvbmZpZygpIH0pKTtcclxuXHJcbiAgICBwcm90ZWN0ZWQgcmVhZG9ubHkgZWRpdG9yID0gdmlld0NoaWxkLnJlcXVpcmVkPEN1aUVkaXRvckNvbXBvbmVudD4oJ2VkaXRvcicpO1xyXG5cclxuICAgIHB1YmxpYyByZWFkb25seSBlZGl0b3JJZCA9IGlucHV0LnJlcXVpcmVkPHN0cmluZz4oKTtcclxuICAgIHB1YmxpYyByZWFkb25seSBjb25maWcgPSBpbnB1dC5yZXF1aXJlZDxDdWlSZWFkb25seUVkaXRvckNvbmZpZz4oKTtcclxuICAgIHB1YmxpYyByZWFkb25seSBidXR0b25UZW1wbGF0ZSA9IGlucHV0LnJlcXVpcmVkPFRlbXBsYXRlUmVmPHVua25vd24+PigpO1xyXG4gICAgcHVibGljIHJlYWRvbmx5IHNob3J0SGVpZ2h0ID0gaW5wdXQ8bnVtYmVyPig2OCk7XHJcblxyXG4gICAgY29uc3RydWN0b3IoKSB7XHJcbiAgICAgICAgdGhpcy5pbml0RWRpdG9ySWRFZmZlY3QoKTtcclxuICAgICAgICB0aGlzLmluaXRSZWFkRWRpdG9yUHJvcGVydHkoKTtcclxuICAgIH1cclxuXHJcbiAgICBwcm90ZWN0ZWQgb25TaG93KGVkaXRvcjogQ3VpRWRpdG9yQ29tcG9uZW50KTogdm9pZCB7XHJcbiAgICAgICAgZWRpdG9yLmVkaXRvckVsZW1lbnQuc2Nyb2xsVG8oMCwgMCk7XHJcbiAgICAgICAgdGhpcy5pc1Nob3dNb3JlLnVwZGF0ZSgocHJldikgPT4gIXByZXYpO1xyXG4gICAgfVxyXG5cclxuICAgIHByaXZhdGUgaW5pdFJlYWRFZGl0b3JQcm9wZXJ0eSgpOiB2b2lkIHtcclxuICAgICAgICBhZnRlclJlbmRlcih7XHJcbiAgICAgICAgICAgIHJlYWQ6ICgpID0+IHRoaXMuaXNNb3JlQnV0dG9uU2hvd24uc2V0KHRoaXMuZWRpdG9yKCkuZWRpdG9yRWxlbWVudD8uc2Nyb2xsSGVpZ2h0ID4gdGhpcy5zaG9ydEhlaWdodCgpKVxyXG4gICAgICAgIH0pO1xyXG4gICAgfVxyXG5cclxuICAgIHByaXZhdGUgaW5pdEVkaXRvcklkRWZmZWN0KCk6IHZvaWQge1xyXG4gICAgICBlZmZlY3QoKCkgPT4ge1xyXG4gICAgICAgICAgdGhpcy5lZGl0b3JJZCgpO1xyXG4gICAgICAgICAgdGhpcy5pc1Nob3dNb3JlLnNldChmYWxzZSk7XHJcbiAgICAgIH0sIHsgYWxsb3dTaWduYWxXcml0ZXM6IHRydWUgfSk7XHJcbiAgfVxyXG59XHJcbiIsIjxjdWktZWRpdG9yXHJcbiAgICAjZWRpdG9yXHJcbiAgICBjbGFzcz1cImVkaXRvclwiXHJcbiAgICBbY2xhc3MuZWRpdG9yX29wZW5lZF09XCJpc1Nob3dNb3JlKClcIlxyXG4gICAgW2VkaXRvcklEXT1cImVkaXRvcklkKClcIlxyXG4gICAgW2NvbmZpZ109XCJlZGl0b3JDb25maWcoKVwiXHJcbi8+XHJcbkBpZiAoaXNNb3JlQnV0dG9uU2hvd24oKSkge1xyXG4gIDxidXR0b24gY2xhc3M9XCJjLWJ1dHRvblwiIChjbGljayk9XCJvblNob3coZWRpdG9yKVwiPlxyXG4gICAgICA8bmctY29udGFpbmVyIFtuZ1RlbXBsYXRlT3V0bGV0XT1cImJ1dHRvblRlbXBsYXRlKClcIiBbbmdUZW1wbGF0ZU91dGxldENvbnRleHRdPVwieyAkaW1wbGljaXQ6IGlzU2hvd01vcmUgfVwiPjwvbmctY29udGFpbmVyPlxyXG4gIDwvYnV0dG9uPlxyXG59XHJcbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVhZG9ubHktZGVzY3JpcHRpb24ub3B0aW9ucy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NvcmUvY29tcG9uZW50cy9yZWFkb25seS1kZXNjcmlwdGlvbi9yZWFkb25seS1kZXNjcmlwdGlvbi5vcHRpb25zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDdWlFZGl0b3JDb25maWcgfSBmcm9tIFwiQGN1YnktdWkvZWRpdG9yXCI7XHJcblxyXG5leHBvcnQgdHlwZSBDdWlSZWFkb25seUVkaXRvckNvbmZpZyA9IEV4Y2x1ZGU8Q3VpRWRpdG9yQ29uZmlnLCB7IHJlYWRPbmx5OiBib29sZWFuLCB3aXRob3V0UHJlbG9hZDogYm9vbGVhbiB9PlxyXG4iXX0=
|
|
@@ -3323,10 +3323,10 @@ class CuiReadonlyDescriptionComponent {
|
|
|
3323
3323
|
constructor() {
|
|
3324
3324
|
this.isShowMore = signal(false);
|
|
3325
3325
|
this.isMoreButtonShown = signal(false);
|
|
3326
|
-
this.
|
|
3326
|
+
this.editorConfig = computed(() => ({ readOnly: true, withoutPreload: true, ...this.config() }));
|
|
3327
3327
|
this.editor = viewChild.required('editor');
|
|
3328
3328
|
this.editorId = input.required();
|
|
3329
|
-
this.
|
|
3329
|
+
this.config = input.required();
|
|
3330
3330
|
this.buttonTemplate = input.required();
|
|
3331
3331
|
this.shortHeight = input(68);
|
|
3332
3332
|
this.initEditorIdEffect();
|
|
@@ -3348,11 +3348,11 @@ class CuiReadonlyDescriptionComponent {
|
|
|
3348
3348
|
}, { allowSignalWrites: true });
|
|
3349
3349
|
}
|
|
3350
3350
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CuiReadonlyDescriptionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3351
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: CuiReadonlyDescriptionComponent, isStandalone: true, selector: "cui-readonly-description", inputs: { editorId: { classPropertyName: "editorId", publicName: "editorId", isSignal: true, isRequired: true, transformFunction: null },
|
|
3351
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: CuiReadonlyDescriptionComponent, isStandalone: true, selector: "cui-readonly-description", inputs: { editorId: { classPropertyName: "editorId", publicName: "editorId", isSignal: true, isRequired: true, transformFunction: null }, config: { classPropertyName: "config", publicName: "config", isSignal: true, isRequired: true, transformFunction: null }, buttonTemplate: { classPropertyName: "buttonTemplate", publicName: "buttonTemplate", isSignal: true, isRequired: true, transformFunction: null }, shortHeight: { classPropertyName: "shortHeight", publicName: "shortHeight", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "editor", first: true, predicate: ["editor"], descendants: true, isSignal: true }], ngImport: i0, template: "<cui-editor\r\n #editor\r\n class=\"editor\"\r\n [class.editor_opened]=\"isShowMore()\"\r\n [editorID]=\"editorId()\"\r\n [config]=\"editorConfig()\"\r\n/>\r\n@if (isMoreButtonShown()) {\r\n <button class=\"c-button\" (click)=\"onShow(editor)\">\r\n <ng-container [ngTemplateOutlet]=\"buttonTemplate()\" [ngTemplateOutletContext]=\"{ $implicit: isShowMore }\"></ng-container>\r\n </button>\r\n}\r\n", styles: [":host{--height: 68px;--fullHeight: 500px;display:flex;flex-direction:column;gap:8px}:host .editor{display:block;max-height:var(--height);overflow:hidden}:host .editor_opened{max-height:var(--fullHeight);overflow:hidden auto}.c-button{padding:0}\n"], dependencies: [{ kind: "component", type: CuiEditorComponent, selector: "cui-editor", inputs: ["editorID", "config", "requestSize"], outputs: ["editorEmpty"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3352
3352
|
}
|
|
3353
3353
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CuiReadonlyDescriptionComponent, decorators: [{
|
|
3354
3354
|
type: Component,
|
|
3355
|
-
args: [{ selector: 'cui-readonly-description', standalone: true, imports: [CuiEditorComponent, NgTemplateOutlet], changeDetection: ChangeDetectionStrategy.OnPush, template: "<cui-editor\r\n #editor\r\n class=\"editor\"\r\n [class.editor_opened]=\"isShowMore()\"\r\n [editorID]=\"editorId()\"\r\n [config]=\"
|
|
3355
|
+
args: [{ selector: 'cui-readonly-description', standalone: true, imports: [CuiEditorComponent, NgTemplateOutlet], changeDetection: ChangeDetectionStrategy.OnPush, template: "<cui-editor\r\n #editor\r\n class=\"editor\"\r\n [class.editor_opened]=\"isShowMore()\"\r\n [editorID]=\"editorId()\"\r\n [config]=\"editorConfig()\"\r\n/>\r\n@if (isMoreButtonShown()) {\r\n <button class=\"c-button\" (click)=\"onShow(editor)\">\r\n <ng-container [ngTemplateOutlet]=\"buttonTemplate()\" [ngTemplateOutletContext]=\"{ $implicit: isShowMore }\"></ng-container>\r\n </button>\r\n}\r\n", styles: [":host{--height: 68px;--fullHeight: 500px;display:flex;flex-direction:column;gap:8px}:host .editor{display:block;max-height:var(--height);overflow:hidden}:host .editor_opened{max-height:var(--fullHeight);overflow:hidden auto}.c-button{padding:0}\n"] }]
|
|
3356
3356
|
}], ctorParameters: () => [] });
|
|
3357
3357
|
|
|
3358
3358
|
class CuiSelectComponent {
|