@cuby-ui/core 0.0.452 → 0.0.453
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/esm2022/widgets/ui/modal-divided-section/modal-divided-section.component.mjs +3 -3
- package/esm2022/widgets/ui/modal-header-tabs/modal-header-tabs.component.mjs +3 -3
- package/esm2022/widgets/ui/modal-operation-part/modal-operation-part.component.mjs +4 -3
- package/esm2022/widgets/ui/utility-info-readonly/utility-info-readonly.component.mjs +13 -4
- package/fesm2022/cuby-ui-core.mjs +19 -9
- package/fesm2022/cuby-ui-core.mjs.map +1 -1
- package/package.json +4 -4
- package/widgets/ui/modal-operation-part/modal-operation-part.component.d.ts +2 -0
- package/widgets/ui/utility-info-readonly/utility-info-readonly.component.d.ts +3 -2
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cuby-ui/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.453",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=18.0.0",
|
|
6
6
|
"@angular/core": ">=18.0.0",
|
|
7
7
|
"@angular/elements": ">=18.0.0",
|
|
8
8
|
"@angular/forms": ">=18.0.0",
|
|
9
|
-
"@cuby-ui/api": "^0.0.
|
|
10
|
-
"@cuby-ui/cdk": "^0.0.
|
|
11
|
-
"@cuby-ui/icons": "^0.0.
|
|
9
|
+
"@cuby-ui/api": "^0.0.453",
|
|
10
|
+
"@cuby-ui/cdk": "^0.0.453",
|
|
11
|
+
"@cuby-ui/icons": "^0.0.453",
|
|
12
12
|
"@editorjs/editorjs": "2.29.1",
|
|
13
13
|
"@editorjs/header": "^2.8.1",
|
|
14
14
|
"@editorjs/list": "^1.9.0",
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { AfterViewInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import { CuiEditorConfig } from '../../../editor';
|
|
2
3
|
import { CuiNullable } from '@cuby-ui/cdk';
|
|
3
4
|
import { ModalHeaderTab, Operation, StorageObject } from '@cuby-ui/api';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class ModalOperationPartComponent implements AfterViewInit {
|
|
6
7
|
private readonly context;
|
|
7
8
|
private readonly jobApiService;
|
|
9
|
+
protected editorConfig: CuiEditorConfig;
|
|
8
10
|
protected readonly tabs: import("@angular/core").WritableSignal<ModalHeaderTab[]>;
|
|
9
11
|
protected readonly ptFormat: import("@angular/core").Signal<string>;
|
|
10
12
|
readonly storageObjectOperation: import("@angular/core").InputSignal<StorageObject<Operation>>;
|
|
@@ -12,7 +12,7 @@ export declare class UtilityInfoReadonlyComponent {
|
|
|
12
12
|
protected readonly isDescriptionEmpty: import("@angular/core").Signal<boolean>;
|
|
13
13
|
readonly environmentUrlForResources: import("@angular/core").InputSignal<string | undefined>;
|
|
14
14
|
readonly environmentUrlForInstruction: import("@angular/core").InputSignal<string | undefined>;
|
|
15
|
-
readonly context: import("@angular/core").
|
|
15
|
+
readonly context: import("@angular/core").WritableSignal<CuiApiContext>;
|
|
16
16
|
protected isVideo: boolean;
|
|
17
17
|
protected editorConfig: CuiEditorConfig;
|
|
18
18
|
readonly framerId: import("@angular/core").InputSignal<string>;
|
|
@@ -21,8 +21,9 @@ export declare class UtilityInfoReadonlyComponent {
|
|
|
21
21
|
private initConfigEffect;
|
|
22
22
|
private checkCurrentTypeUtility;
|
|
23
23
|
private initFramerIdEffect;
|
|
24
|
+
private setContext;
|
|
24
25
|
private initFrameFragments;
|
|
25
26
|
private setResourceFile;
|
|
26
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<UtilityInfoReadonlyComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UtilityInfoReadonlyComponent, "cui-utility-info-readonly", never, { "environmentUrlForResources": { "alias": "environmentUrlForResources"; "required": false; "isSignal": true; }; "environmentUrlForInstruction": { "alias": "environmentUrlForInstruction"; "required": false; "isSignal": true; }; "
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UtilityInfoReadonlyComponent, "cui-utility-info-readonly", never, { "environmentUrlForResources": { "alias": "environmentUrlForResources"; "required": false; "isSignal": true; }; "environmentUrlForInstruction": { "alias": "environmentUrlForInstruction"; "required": false; "isSignal": true; }; "framerId": { "alias": "framerId"; "required": true; "isSignal": true; }; "element": { "alias": "element"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
28
29
|
}
|