@cuby-ui/core 0.0.236 → 0.0.238
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/button/button.component.d.ts +1 -1
- package/components/button/button.options.d.ts +2 -2
- package/esm2022/components/button/button.component.mjs +5 -4
- package/esm2022/components/button/button.options.mjs +1 -1
- package/esm2022/editor/widgets/editor-block/editor-block.component.mjs +4 -4
- package/esm2022/types/appearance.mjs +1 -1
- package/esm2022/widgets/utility-info/utility-info.component.mjs +7 -6
- package/fesm2022/cuby-ui-core.mjs +13 -11
- package/fesm2022/cuby-ui-core.mjs.map +1 -1
- package/package.json +3 -3
- package/types/appearance.d.ts +1 -0
- package/widgets/utility-info/utility-info.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.238",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=18.0.0",
|
|
6
6
|
"@angular/core": ">=18.0.0",
|
|
7
7
|
"@angular/forms": ">=18.0.0",
|
|
8
8
|
"@angular/elements": ">=18.0.0",
|
|
9
9
|
"@jsverse/transloco": ">=7.1.0",
|
|
10
|
-
"@cuby-ui/cdk": "^0.0.
|
|
11
|
-
"@cuby-ui/icons": "^0.0.
|
|
10
|
+
"@cuby-ui/cdk": "^0.0.238",
|
|
11
|
+
"@cuby-ui/icons": "^0.0.238",
|
|
12
12
|
"@editorjs/editorjs": "2.29.1",
|
|
13
13
|
"@editorjs/header": "^2.8.1",
|
|
14
14
|
"@editorjs/list": "^1.9.0",
|
package/types/appearance.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export declare class CuiUtilityInfoComponent {
|
|
|
29
29
|
protected get isTitleError(): boolean;
|
|
30
30
|
protected get isDescriptionError(): boolean;
|
|
31
31
|
readonly title: import("@angular/core").InputSignal<string>;
|
|
32
|
+
readonly description: import("@angular/core").InputSignal<string>;
|
|
32
33
|
readonly framerId: import("@angular/core").InputSignal<string>;
|
|
33
34
|
readonly baseResourceUrl: import("@angular/core").InputSignal<string>;
|
|
34
35
|
readonly config: import("@angular/core").InputSignal<CuiEditorConfig>;
|
|
@@ -40,7 +41,7 @@ export declare class CuiUtilityInfoComponent {
|
|
|
40
41
|
protected onRemoveThumbnail(): void;
|
|
41
42
|
protected onToggleDescriptionModal(): void;
|
|
42
43
|
private initUtilityEffect;
|
|
43
|
-
private
|
|
44
|
+
private initFormSubscriptions;
|
|
44
45
|
private initFrameFragments;
|
|
45
46
|
private compareFormValues;
|
|
46
47
|
private setResourceFile;
|
|
@@ -49,5 +50,5 @@ export declare class CuiUtilityInfoComponent {
|
|
|
49
50
|
private getCaptureFromVideo;
|
|
50
51
|
private checkFormValidation;
|
|
51
52
|
static ɵfac: i0.ɵɵFactoryDeclaration<CuiUtilityInfoComponent, never>;
|
|
52
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CuiUtilityInfoComponent, "cui-utility-info", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; "framerId": { "alias": "framerId"; "required": true; "isSignal": true; }; "baseResourceUrl": { "alias": "baseResourceUrl"; "required": true; "isSignal": true; }; "config": { "alias": "config"; "required": true; "isSignal": true; }; }, { "formChanged": "formChanged"; "isFormValidChanged": "isFormValidChanged"; }, never, never, true, never>;
|
|
53
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiUtilityInfoComponent, "cui-utility-info", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; "description": { "alias": "description"; "required": true; "isSignal": true; }; "framerId": { "alias": "framerId"; "required": true; "isSignal": true; }; "baseResourceUrl": { "alias": "baseResourceUrl"; "required": true; "isSignal": true; }; "config": { "alias": "config"; "required": true; "isSignal": true; }; }, { "formChanged": "formChanged"; "isFormValidChanged": "isFormValidChanged"; }, never, never, true, never>;
|
|
53
54
|
}
|