@cuby-ui/core 0.0.227 → 0.0.230
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/content-wrapper/content-wrapper.component.d.ts +11 -0
- package/components/content-wrapper/index.d.ts +1 -0
- package/components/empty-state/empty-state.component.d.ts +7 -0
- package/components/empty-state/index.d.ts +1 -0
- package/components/ghost-input/ghost-input.component.d.ts +6 -0
- package/components/ghost-input/index.d.ts +1 -0
- package/components/index.d.ts +3 -0
- package/components/sidebar/sidebar-header/sidebar-header.component.d.ts +1 -1
- package/components/sidebar/sidebar-navigation-item/sidebar-navigation-item.component.d.ts +1 -1
- package/directives/tooltip/tooltip.component.d.ts +1 -1
- package/editor/components/editor-attaches-tool/editor-attaches-tool.component.d.ts +44 -0
- package/editor/components/editor-attaches-tool/editor-attaches-tool.options.d.ts +17 -0
- package/editor/components/editor-attaches-tool/index.d.ts +2 -0
- package/editor/components/editor-image-tool/editor-image-tool.component.d.ts +14 -0
- package/editor/components/editor-image-tool/editor-image-tool.options.d.ts +26 -0
- package/editor/components/editor-image-tool/index.d.ts +2 -0
- package/editor/components/editor-tool/editor-tool.component.d.ts +22 -0
- package/editor/components/editor-tool-modal/editor-tool-modal.component.d.ts +24 -0
- package/editor/components/editor-tool-modal/editor-tool-modal.options.d.ts +8 -0
- package/editor/components/editor-tool-modal/index.d.ts +2 -0
- package/editor/components/editor-tooltip/editor-tooltip.component.d.ts +16 -0
- package/editor/components/editor-tooltip/editor-tooltip.options.d.ts +9 -0
- package/editor/components/editor-tooltip/index.d.ts +2 -0
- package/editor/components/editor-video-tool/editor-video-tool.component.d.ts +12 -0
- package/editor/components/editor-video-tool/editor-video-tool.options.d.ts +26 -0
- package/editor/components/editor-video-tool/index.d.ts +2 -0
- package/editor/components/index.d.ts +7 -0
- package/editor/components/marker-modal/index.d.ts +3 -0
- package/editor/components/marker-modal/marker-modal.component.d.ts +62 -0
- package/editor/components/marker-modal/marker-modal.interfaces.d.ts +7 -0
- package/editor/components/marker-modal/marker-modal.options.d.ts +1 -0
- package/editor/components/marker-select/component/select-item/select-option.component.d.ts +7 -0
- package/editor/components/marker-select/index.d.ts +2 -0
- package/editor/components/marker-select/marker-select.component.d.ts +40 -0
- package/editor/components/marker-select/marker-select.options.d.ts +1 -0
- package/editor/config/custom-elements.d.ts +2 -0
- package/editor/config/editor.config.d.ts +3 -0
- package/editor/config/editor.provider.d.ts +2 -0
- package/editor/config/index.d.ts +2 -0
- package/editor/constants/editor.constants.d.ts +15 -0
- package/editor/constants/index.d.ts +1 -0
- package/editor/editor.component.d.ts +71 -0
- package/editor/events/editor-drag.event.d.ts +2 -0
- package/editor/events/editor-keyboard.event.d.ts +2 -0
- package/editor/events/editor-modal.event.d.ts +3 -0
- package/editor/events/editor-tooltip.event.d.ts +2 -0
- package/editor/events/set-editor-events.d.ts +1 -0
- package/editor/index.d.ts +9 -0
- package/editor/interfaces/angular-element.d.ts +2 -0
- package/editor/interfaces/blocks-request-data.d.ts +6 -0
- package/editor/interfaces/combined-block-adding-event.d.ts +7 -0
- package/editor/interfaces/combined-block-data.d.ts +5 -0
- package/editor/interfaces/combined-part-block-data.d.ts +7 -0
- package/editor/interfaces/custom-element.d.ts +5 -0
- package/editor/interfaces/event-action-data.d.ts +5 -0
- package/editor/interfaces/file-response-data.d.ts +10 -0
- package/editor/interfaces/full-block-data.d.ts +8 -0
- package/editor/interfaces/index.d.ts +14 -0
- package/editor/interfaces/main-editor-config.d.ts +15 -0
- package/editor/interfaces/mutation-actions.d.ts +5 -0
- package/editor/interfaces/parent.d.ts +4 -0
- package/editor/interfaces/tools.d.ts +4 -0
- package/editor/interfaces/tune.d.ts +6 -0
- package/editor/pipes/file-size.pipe.d.ts +9 -0
- package/editor/services/editor-service.options.d.ts +8 -0
- package/editor/services/editor.service.d.ts +23 -0
- package/editor/services/index.d.ts +6 -0
- package/editor/services/jtext-api.options.d.ts +20 -0
- package/editor/services/jtext-api.service.d.ts +23 -0
- package/editor/services/markers-service.options.d.ts +4 -0
- package/editor/services/markers.service.d.ts +11 -0
- package/editor/tools/attaches.tool.d.ts +28 -0
- package/editor/tools/bold.tool.d.ts +11 -0
- package/editor/tools/combined-text-block.tool.d.ts +49 -0
- package/editor/tools/custom-marker.tool.d.ts +16 -0
- package/editor/tools/header.tool.d.ts +8 -0
- package/editor/tools/image.tool.d.ts +37 -0
- package/editor/tools/index.d.ts +11 -0
- package/editor/tools/italic.tool.d.ts +12 -0
- package/editor/tools/link-marker.tool.d.ts +15 -0
- package/editor/tools/list.tool.d.ts +5 -0
- package/editor/tools/marker.tool.d.ts +36 -0
- package/editor/tools/role-marker.tool.d.ts +7 -0
- package/editor/tools/selection-base.tool.d.ts +24 -0
- package/editor/tools/tool-marker.tool.d.ts +7 -0
- package/editor/tools/video.tool.d.ts +32 -0
- package/editor/utils/create-link-modal.d.ts +3 -0
- package/editor/utils/create-tool-modal.d.ts +4 -0
- package/editor/utils/create-tooltip.d.ts +8 -0
- package/editor/utils/file-uploader.d.ts +26 -0
- package/editor/utils/generate-id.d.ts +1 -0
- package/editor/utils/index.d.ts +9 -0
- package/editor/utils/recalculate-indexes.d.ts +2 -0
- package/editor/utils/remove-element-tag-wrapper.d.ts +1 -0
- package/editor/utils/split-html.d.ts +1 -0
- package/editor/utils/url.validator.d.ts +2 -0
- package/editor/widgets/editor-block/editor-block.component.d.ts +22 -0
- package/editor/widgets/editor-block/index.d.ts +1 -0
- package/editor/widgets/editor-modal/editor-modal.component.d.ts +19 -0
- package/editor/widgets/editor-modal/index.d.ts +1 -0
- package/editor/widgets/editor-readonly/editor-readonly.component.d.ts +28 -0
- package/editor/widgets/editor-readonly/editor-readonly.options.d.ts +5 -0
- package/editor/widgets/editor-readonly/index.d.ts +2 -0
- package/editor/widgets/index.d.ts +3 -0
- package/esm2022/components/breadcrumbs/breadcrumbs.component.mjs +2 -2
- package/esm2022/components/content-wrapper/content-wrapper.component.mjs +29 -0
- package/esm2022/components/content-wrapper/index.mjs +2 -0
- package/esm2022/components/empty-state/empty-state.component.mjs +17 -0
- package/esm2022/components/empty-state/index.mjs +2 -0
- package/esm2022/components/ghost-input/ghost-input.component.mjs +16 -0
- package/esm2022/components/ghost-input/index.mjs +2 -0
- package/esm2022/components/index.mjs +4 -1
- package/esm2022/directives/tooltip/tooltip-describe.directive.mjs +5 -3
- package/esm2022/directives/tooltip/tooltip-position.directive.mjs +6 -3
- package/esm2022/directives/tooltip/tooltip.component.mjs +6 -3
- package/esm2022/editor/components/editor-attaches-tool/editor-attaches-tool.component.mjs +76 -0
- package/esm2022/editor/components/editor-attaches-tool/editor-attaches-tool.options.mjs +2 -0
- package/esm2022/editor/components/editor-attaches-tool/index.mjs +3 -0
- package/esm2022/editor/components/editor-image-tool/editor-image-tool.component.mjs +43 -0
- package/esm2022/editor/components/editor-image-tool/editor-image-tool.options.mjs +2 -0
- package/esm2022/editor/components/editor-image-tool/index.mjs +3 -0
- package/esm2022/editor/components/editor-tool/editor-tool.component.mjs +74 -0
- package/esm2022/editor/components/editor-tool-modal/editor-tool-modal.component.mjs +69 -0
- package/esm2022/editor/components/editor-tool-modal/editor-tool-modal.options.mjs +2 -0
- package/esm2022/editor/components/editor-tool-modal/index.mjs +3 -0
- package/esm2022/editor/components/editor-tooltip/editor-tooltip.component.mjs +45 -0
- package/esm2022/editor/components/editor-tooltip/editor-tooltip.options.mjs +2 -0
- package/esm2022/editor/components/editor-tooltip/index.mjs +3 -0
- package/esm2022/editor/components/editor-video-tool/editor-video-tool.component.mjs +41 -0
- package/esm2022/editor/components/editor-video-tool/editor-video-tool.options.mjs +2 -0
- package/esm2022/editor/components/editor-video-tool/index.mjs +3 -0
- package/esm2022/editor/components/index.mjs +8 -0
- package/esm2022/editor/components/marker-modal/index.mjs +3 -0
- package/esm2022/editor/components/marker-modal/marker-modal.component.mjs +261 -0
- package/esm2022/editor/components/marker-modal/marker-modal.interfaces.mjs +2 -0
- package/esm2022/editor/components/marker-modal/marker-modal.options.mjs +2 -0
- package/esm2022/editor/components/marker-select/component/select-item/select-option.component.mjs +15 -0
- package/esm2022/editor/components/marker-select/index.mjs +3 -0
- package/esm2022/editor/components/marker-select/marker-select.component.mjs +155 -0
- package/esm2022/editor/components/marker-select/marker-select.options.mjs +2 -0
- package/esm2022/editor/config/custom-elements.mjs +32 -0
- package/esm2022/editor/config/editor.config.mjs +30 -0
- package/esm2022/editor/config/editor.provider.mjs +19 -0
- package/esm2022/editor/config/index.mjs +3 -0
- package/esm2022/editor/constants/editor.constants.mjs +20 -0
- package/esm2022/editor/constants/index.mjs +2 -0
- package/esm2022/editor/editor.component.mjs +380 -0
- package/esm2022/editor/events/editor-drag.event.mjs +7 -0
- package/esm2022/editor/events/editor-keyboard.event.mjs +33 -0
- package/esm2022/editor/events/editor-modal.event.mjs +31 -0
- package/esm2022/editor/events/editor-tooltip.event.mjs +63 -0
- package/esm2022/editor/events/set-editor-events.mjs +11 -0
- package/esm2022/editor/i18n/en.json +14 -0
- package/esm2022/editor/index.mjs +8 -0
- package/esm2022/editor/interfaces/angular-element.mjs +2 -0
- package/esm2022/editor/interfaces/blocks-request-data.mjs +2 -0
- package/esm2022/editor/interfaces/combined-block-adding-event.mjs +2 -0
- package/esm2022/editor/interfaces/combined-block-data.mjs +2 -0
- package/esm2022/editor/interfaces/combined-part-block-data.mjs +2 -0
- package/esm2022/editor/interfaces/custom-element.mjs +2 -0
- package/esm2022/editor/interfaces/event-action-data.mjs +2 -0
- package/esm2022/editor/interfaces/file-response-data.mjs +2 -0
- package/esm2022/editor/interfaces/full-block-data.mjs +2 -0
- package/esm2022/editor/interfaces/index.mjs +14 -0
- package/esm2022/editor/interfaces/main-editor-config.mjs +2 -0
- package/esm2022/editor/interfaces/mutation-actions.mjs +2 -0
- package/esm2022/editor/interfaces/parent.mjs +2 -0
- package/esm2022/editor/interfaces/tools.mjs +2 -0
- package/esm2022/editor/interfaces/tune.mjs +2 -0
- package/esm2022/editor/pipes/file-size.pipe.mjs +25 -0
- package/esm2022/editor/services/editor-service.options.mjs +4 -0
- package/esm2022/editor/services/editor.service.mjs +138 -0
- package/esm2022/editor/services/index.mjs +7 -0
- package/esm2022/editor/services/jtext-api.options.mjs +2 -0
- package/esm2022/editor/services/jtext-api.service.mjs +50 -0
- package/esm2022/editor/services/markers-service.options.mjs +2 -0
- package/esm2022/editor/services/markers.service.mjs +79 -0
- package/esm2022/editor/tools/attaches.tool.mjs +96 -0
- package/esm2022/editor/tools/bold.tool.mjs +33 -0
- package/esm2022/editor/tools/combined-text-block.tool.mjs +380 -0
- package/esm2022/editor/tools/custom-marker.tool.mjs +88 -0
- package/esm2022/editor/tools/header.tool.mjs +16 -0
- package/esm2022/editor/tools/image.tool.mjs +157 -0
- package/esm2022/editor/tools/index.mjs +12 -0
- package/esm2022/editor/tools/italic.tool.mjs +35 -0
- package/esm2022/editor/tools/link-marker.tool.mjs +80 -0
- package/esm2022/editor/tools/list.tool.mjs +10 -0
- package/esm2022/editor/tools/marker.tool.mjs +144 -0
- package/esm2022/editor/tools/role-marker.tool.mjs +17 -0
- package/esm2022/editor/tools/selection-base.tool.mjs +92 -0
- package/esm2022/editor/tools/tool-marker.tool.mjs +14 -0
- package/esm2022/editor/tools/video.tool.mjs +132 -0
- package/esm2022/editor/utils/create-link-modal.mjs +22 -0
- package/esm2022/editor/utils/create-tool-modal.mjs +45 -0
- package/esm2022/editor/utils/create-tooltip.mjs +44 -0
- package/esm2022/editor/utils/file-uploader.mjs +57 -0
- package/esm2022/editor/utils/generate-id.mjs +4 -0
- package/esm2022/editor/utils/index.mjs +10 -0
- package/esm2022/editor/utils/recalculate-indexes.mjs +32 -0
- package/esm2022/editor/utils/remove-element-tag-wrapper.mjs +11 -0
- package/esm2022/editor/utils/split-html.mjs +128 -0
- package/esm2022/editor/utils/url.validator.mjs +12 -0
- package/esm2022/editor/widgets/editor-block/editor-block.component.mjs +63 -0
- package/esm2022/editor/widgets/editor-block/index.mjs +2 -0
- package/esm2022/editor/widgets/editor-modal/editor-modal.component.mjs +47 -0
- package/esm2022/editor/widgets/editor-modal/index.mjs +2 -0
- package/esm2022/editor/widgets/editor-readonly/editor-readonly.component.mjs +40 -0
- package/esm2022/editor/widgets/editor-readonly/editor-readonly.options.mjs +2 -0
- package/esm2022/editor/widgets/editor-readonly/index.mjs +2 -0
- package/esm2022/editor/widgets/index.mjs +4 -0
- package/esm2022/index.mjs +3 -1
- package/esm2022/interceptors/loader.interceptor.mjs +3 -3
- package/esm2022/services/loader.options.mjs +2 -2
- package/esm2022/services/loader.service.mjs +11 -11
- package/esm2022/utils/default-validators/create-default-validators.mjs +12 -0
- package/esm2022/utils/default-validators/extra-spaces.options.mjs +11 -0
- package/esm2022/utils/default-validators/extra-spaces.validators.mjs +16 -0
- package/esm2022/utils/default-validators/index.mjs +2 -0
- package/esm2022/utils/index.mjs +2 -1
- package/esm2022/widgets/categories/categories.component.mjs +75 -0
- package/esm2022/widgets/categories/components/categories-list/categories-list.component.mjs +16 -0
- package/esm2022/widgets/categories/components/categories-list/index.mjs +2 -0
- package/esm2022/widgets/categories/components/category-form/category-form.component.mjs +79 -0
- package/esm2022/widgets/categories/components/category-form/index.mjs +2 -0
- package/esm2022/widgets/categories/components/category-item/category-item.component.mjs +123 -0
- package/esm2022/widgets/categories/components/category-item/index.mjs +2 -0
- package/esm2022/widgets/categories/components/create-category-item/create-category-item.component.mjs +25 -0
- package/esm2022/widgets/categories/components/create-category-item/index.mjs +2 -0
- package/esm2022/widgets/categories/components/index.mjs +3 -0
- package/esm2022/widgets/categories/index.mjs +2 -0
- package/esm2022/widgets/categories/services/index.mjs +2 -0
- package/esm2022/widgets/categories/services/selected-category.service.mjs +38 -0
- package/esm2022/widgets/general-control-error-hint/general-control-error-hint.component.mjs +21 -0
- package/esm2022/widgets/general-control-error-hint/index.mjs +2 -0
- package/esm2022/widgets/index.mjs +3 -0
- package/esm2022/widgets/utility-info/index.mjs +2 -0
- package/esm2022/widgets/utility-info/utility-info.component.mjs +224 -0
- package/fesm2022/cuby-ui-core-en-D3DnyYmu.mjs +29 -0
- package/fesm2022/cuby-ui-core-en-D3DnyYmu.mjs.map +1 -0
- package/fesm2022/cuby-ui-core.mjs +4047 -67
- package/fesm2022/cuby-ui-core.mjs.map +1 -1
- package/index.d.ts +2 -0
- package/package.json +3 -3
- package/services/loader.options.d.ts +2 -2
- package/services/loader.service.d.ts +7 -7
- package/utils/default-validators/create-default-validators.d.ts +5 -0
- package/utils/default-validators/extra-spaces.options.d.ts +2 -0
- package/utils/default-validators/extra-spaces.validators.d.ts +3 -0
- package/utils/default-validators/index.d.ts +1 -0
- package/utils/index.d.ts +1 -0
- package/widgets/categories/categories.component.d.ts +24 -0
- package/widgets/categories/components/categories-list/categories-list.component.d.ts +7 -0
- package/widgets/categories/components/categories-list/index.d.ts +1 -0
- package/widgets/categories/components/category-form/category-form.component.d.ts +28 -0
- package/widgets/categories/components/category-form/index.d.ts +1 -0
- package/widgets/categories/components/category-item/category-item.component.d.ts +40 -0
- package/widgets/categories/components/category-item/index.d.ts +1 -0
- package/widgets/categories/components/create-category-item/create-category-item.component.d.ts +10 -0
- package/widgets/categories/components/create-category-item/index.d.ts +1 -0
- package/widgets/categories/components/index.d.ts +2 -0
- package/widgets/categories/index.d.ts +1 -0
- package/widgets/categories/services/index.d.ts +1 -0
- package/widgets/categories/services/selected-category.service.d.ts +18 -0
- package/widgets/general-control-error-hint/general-control-error-hint.component.d.ts +9 -0
- package/widgets/general-control-error-hint/index.d.ts +1 -0
- package/widgets/index.d.ts +2 -0
- package/widgets/utility-info/index.d.ts +1 -0
- package/widgets/utility-info/utility-info.component.d.ts +45 -0
package/index.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export * from './components';
|
|
2
|
+
export * from './editor';
|
|
2
3
|
export * from './directives';
|
|
3
4
|
export * from './interceptors';
|
|
4
5
|
export * from './interfaces';
|
|
5
6
|
export * from './services';
|
|
6
7
|
export * from './types';
|
|
7
8
|
export * from './utils';
|
|
9
|
+
export * from './widgets';
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cuby-ui/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.230",
|
|
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
|
-
"@cuby-ui/cdk": "^0.0.
|
|
9
|
-
"@cuby-ui/icons": "^0.0.
|
|
8
|
+
"@cuby-ui/cdk": "^0.0.230",
|
|
9
|
+
"@cuby-ui/icons": "^0.0.230",
|
|
10
10
|
"@maskito/angular": "^2.5.0",
|
|
11
11
|
"@maskito/core": "^2.5.0",
|
|
12
12
|
"@maskito/kit": "^2.5.0",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { CuiValueOf } from '@cuby-ui/cdk';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const CuiLoadingState: {
|
|
3
3
|
readonly LOADING: "loading";
|
|
4
4
|
readonly COMPLETED: "completed";
|
|
5
5
|
readonly INITIAL: "initial";
|
|
6
6
|
};
|
|
7
|
-
export type
|
|
7
|
+
export type CuiLoadingState = CuiValueOf<typeof CuiLoadingState>;
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CuiLoadingState } from './loader.options';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class CuiLoaderService {
|
|
4
4
|
private readonly RESET_TO_INITIAL_TIME;
|
|
5
5
|
private readonly loaderStateSignal;
|
|
6
6
|
private requestCount;
|
|
7
7
|
private resetLoadingStateTimerId?;
|
|
8
|
-
readonly loaderState: import("@angular/core").Signal<
|
|
8
|
+
readonly loaderState: import("@angular/core").Signal<CuiLoadingState>;
|
|
9
9
|
constructor();
|
|
10
10
|
setLoading(): void;
|
|
11
11
|
setCompleted(): void;
|
|
12
12
|
handleCompletedRequest(): void;
|
|
13
13
|
reset(): void;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
15
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiLoaderService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CuiLoaderService>;
|
|
16
16
|
}
|
|
17
17
|
export declare class AngularOutsideLoaderService {
|
|
18
18
|
private static instance;
|
|
19
|
-
static getInstance():
|
|
20
|
-
static setInstance(instance:
|
|
19
|
+
static getInstance(): CuiLoaderService;
|
|
20
|
+
static setInstance(instance: CuiLoaderService): void;
|
|
21
21
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { createDefaultValidators } from './create-default-validators';
|
package/utils/index.d.ts
CHANGED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { CuiNullable } from '@cuby-ui/cdk';
|
|
2
|
+
import { TreeStruct, TreeStructType } from '@cuby-ui/api';
|
|
3
|
+
import { CuiDropdownDirective } from '../../components';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CuiCategoriesComponent {
|
|
6
|
+
private readonly treeStructNavigatorApiService;
|
|
7
|
+
private readonly selectedCategoryService;
|
|
8
|
+
protected readonly stageStorages: import("@angular/core").WritableSignal<CuiNullable<TreeStruct<import("@cuby-ui/api").Job<import("@cuby-ui/api").JobContentStructureType>>[]>>;
|
|
9
|
+
protected readonly isCategoryCreating: import("@angular/core").WritableSignal<boolean>;
|
|
10
|
+
protected readonly isCategoryCreationLoading: import("@angular/core").WritableSignal<boolean>;
|
|
11
|
+
protected readonly isCreateCategoryControlVisible: import("@angular/core").Signal<boolean>;
|
|
12
|
+
protected readonly dropdown: import("@angular/core").Signal<CuiDropdownDirective>;
|
|
13
|
+
readonly treeStructType: import("@angular/core").InputSignal<TreeStructType>;
|
|
14
|
+
readonly buttonId: import("@angular/core").InputSignal<string | undefined>;
|
|
15
|
+
readonly disabled: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
16
|
+
constructor();
|
|
17
|
+
protected onOpenStageStorages(): void;
|
|
18
|
+
protected onStartCreatingNewCategory(): void;
|
|
19
|
+
protected onCreateNewCategory(title: string): void;
|
|
20
|
+
protected onCreatingCategoryCanceled(): void;
|
|
21
|
+
private initSelectCategoryEffect;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiCategoriesComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiCategoriesComponent, "cui-categories", never, { "treeStructType": { "alias": "treeStructType"; "required": true; "isSignal": true; }; "buttonId": { "alias": "buttonId"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { TreeStruct } from '@cuby-ui/api';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CuiCategoriesListComponent {
|
|
4
|
+
readonly stageStorages: import("@angular/core").InputSignal<TreeStruct<import("@cuby-ui/api").Job<import("@cuby-ui/api").JobContentStructureType>>[]>;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiCategoriesListComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiCategoriesListComponent, "cui-categories-list", never, { "stageStorages": { "alias": "stageStorages"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CuiCategoriesListComponent } from './categories-list.component';
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type { OnInit } from '@angular/core';
|
|
2
|
+
import { ElementRef } from '@angular/core';
|
|
3
|
+
import { NonNullableFormBuilder } from '@angular/forms';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CuiCategoryFormComponent implements OnInit {
|
|
6
|
+
protected readonly nonNullableFormBuilder: NonNullableFormBuilder;
|
|
7
|
+
protected readonly form: import("@angular/forms").FormGroup<{
|
|
8
|
+
title: import("@angular/forms").FormControl<string>;
|
|
9
|
+
}>;
|
|
10
|
+
protected readonly titleControl: import("@angular/forms").FormControl<string>;
|
|
11
|
+
readonly isDisabled: import("@angular/core").InputSignal<boolean>;
|
|
12
|
+
readonly defaultTitle: import("@angular/core").InputSignal<string>;
|
|
13
|
+
protected readonly created: import("@angular/core").OutputEmitterRef<string>;
|
|
14
|
+
protected readonly canceled: import("@angular/core").OutputEmitterRef<void>;
|
|
15
|
+
protected readonly input: import("@angular/core").Signal<ElementRef<any>>;
|
|
16
|
+
protected get isTitleInvalid(): boolean;
|
|
17
|
+
protected get isSubmitButtonDisabled(): boolean;
|
|
18
|
+
constructor();
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
protected onHostClick(event: Event): void;
|
|
21
|
+
protected onSubmit(): void;
|
|
22
|
+
protected onCancel(event: Event): void;
|
|
23
|
+
private initInputDisableStateSubscription;
|
|
24
|
+
private initDefaultTitle;
|
|
25
|
+
private initInputFocus;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiCategoryFormComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiCategoryFormComponent, "cui-category-form", never, { "isDisabled": { "alias": "isDisabled"; "required": false; "isSignal": true; }; "defaultTitle": { "alias": "defaultTitle"; "required": false; "isSignal": true; }; }, { "created": "created"; "canceled": "canceled"; }, never, never, true, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CuiCategoryFormComponent } from './category-form.component';
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { TreeStruct } from '@cuby-ui/api';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CuiCategoryItemComponent {
|
|
4
|
+
private readonly treeStructNavigatorApiService;
|
|
5
|
+
private readonly selectedCategoryService;
|
|
6
|
+
protected readonly isStageCreationLoading: import("@angular/core").WritableSignal<boolean>;
|
|
7
|
+
protected readonly stageStorageChildren: import("@angular/core").WritableSignal<TreeStruct<import("@cuby-ui/api").Job<import("@cuby-ui/api").JobContentStructureType>>[]>;
|
|
8
|
+
protected readonly areChildrenOpened: import("@angular/core").WritableSignal<boolean>;
|
|
9
|
+
protected readonly openCloseButtonIcon: import("@angular/core").Signal<"cuiIconLoading" | "cuiIconCheck" | "cuiIconCheckSm" | "cuiIconCheckCircle" | "cuiIconCheckCircleSm" | "cuiIconCheckCircleV2" | "cuiIconMoreVertical" | "cuiIconMoreVerticalSm" | "cuiIconTrash" | "cuiIconTrashSm" | "cuiIconEdit" | "cuiIconEditSm" | "cuiIconArrowSortSm" | "cuiIconX" | "cuiIconXSm" | "cuiIconXCircle" | "cuiIconXCircleSm" | "cuiIconClear" | "cuiIconClearSm" | "cuiIconEye" | "cuiIconEyeSm" | "cuiIconEyeOff" | "cuiIconEyeOffSm" | "cuiIconChevronUp" | "cuiIconChevronUpSm" | "cuiIconChevronRight" | "cuiIconChevronRightSm" | "cuiIconChevronDown" | "cuiIconChevronDownSm" | "cuiIconChevronLeft" | "cuiIconChevronLeftSm" | "cuiIconChevronsRight" | "cuiIconChevronsRightSm" | "cuiIconChevronsLeft" | "cuiIconChevronsLeftSm" | "cuiIconChevronsSwitch" | "cuiIconDatabase" | "cuiIconDatabaseSm" | "cuiIconHome" | "cuiIconHomeSm" | "cuiIconUser" | "cuiIconUserSm" | "cuiIconUsers" | "cuiIconUsersBg" | "cuiIconUsersSm" | "cuiIconUserPlus" | "cuiIconUserPlusSm" | "cuiIconFormula" | "cuiIconSettings" | "cuiIconSettingsSm" | "cuiIconSettingsBold" | "cuiIconCopy" | "cuiIconCopySm" | "cuiIconSidebar" | "cuiIconSidebarSm" | "cuiIconChart" | "cuiIconFolder" | "cuiIconFolderSm" | "cuiIconFolderOpen" | "cuiIconFolderOpenSm" | "cuiIconPlus" | "cuiIconPlusSm" | "cuiIconPlusCircle" | "cuiIconFiltersLines" | "cuiIconFiltersLinesSm" | "cuiIconSearch" | "cuiIconSearchSm" | "cuiIconGrid" | "cuiIconGridSm" | "cuiIconList" | "cuiIconListSm" | "cuiIconProgress" | "cuiIconSortAZSm" | "cuiIconFlagBold" | "cuiIconFileText" | "cuiIconFileTextSm" | "cuiIconLink" | "cuiIconExternalLinkSm" | "cuiIconLinkBroken" | "cuiIconLinkBrokenSm" | "cuiIconClock" | "cuiIconClockSm" | "cuiIconInfo" | "cuiIconInfoSm" | "cuiIconInfoCircle" | "cuiIconInfoCircleBg" | "cuiIconAlertTriangle" | "cuiIconAlertTriangleSm" | "cuiIconAlertCircle" | "cuiIcon2Layers" | "cuiIcon2LayersSm" | "cuiIcon3Layers" | "cuiIcon3LayersSm" | "cuiIconLearningSm" | "cuiIconBellSm" | "cuiIconMessageCircle" | "cuiIconMessageCircleSm" | "cuiIconSlashDivider" | "cuiIconCaretDownFillXxs" | "cuiIconCaretDownFill" | "cuiIconDragHandleDots" | "cuiIconPlayCircle" | "cuiIconPlayCircleSm" | "cuiIconClipBoard" | "cuiIconUpload" | "cuiIconUploadSm" | "cuiIconMaximize" | "cuiIconMaximizeSm" | "cuiIconArrowUpRight" | "cuiIconArrowUpRightSm" | "cuiIconAddBranchSm" | "cuiIconBranch" | "cuiIconBranchSm" | "cuiIconPaperclip" | "cuiIconPaperclipSm" | "cuiIconToolsSm" | "cuiIconPartsSm" | "cuiIconEquipmentSm" | "cuiIconPrimitive" | "cuiIconPrimitiveSm" | "cuiIconSpool" | "cuiIconSpoolSm" | "cuiIconTank" | "cuiIconTankSm" | "cuiIconAssembly" | "cuiIconAssemblySm" | "cuiIconVariant" | "cuiIconVariantSm" | "cuiIconRichText" | "cuiIconRichTextSm" | "cuiIconChecklist" | "cuiIconRefreshCcwSm" | "cuiIconRefreshCcw" | "cuiIconBarChartSm" | "cuiIconBarChart" | "cuiIconCurvedArrow" | "cuiIconBulletFillSm" | "cuiIconBulletSm" | "cuiIconArrowRight" | "cuiIconArrowRightSm" | "cuiIconImage" | "cuiIconCutLinearSm" | "cuiIconCutLinear" | "cuiIconForkLift" | "cuiIconPartPrimitive" | "cuiIconPartPrimitiveSm" | "cuiIconChecklistsSm" | "cuiIconViewInAr" | "cuiIconViewInArSm" | "cuiIconFloorplanSolid" | "cuiIconFloorplanSolidSm">;
|
|
10
|
+
protected readonly doChildrenExist: import("@angular/core").Signal<number>;
|
|
11
|
+
protected readonly isOpenCloseButtonHidden: import("@angular/core").Signal<boolean>;
|
|
12
|
+
protected readonly stageStorageIcon: import("@angular/core").Signal<"cuiIconLoading" | "cuiIconCheck" | "cuiIconCheckSm" | "cuiIconCheckCircle" | "cuiIconCheckCircleSm" | "cuiIconCheckCircleV2" | "cuiIconMoreVertical" | "cuiIconMoreVerticalSm" | "cuiIconTrash" | "cuiIconTrashSm" | "cuiIconEdit" | "cuiIconEditSm" | "cuiIconArrowSortSm" | "cuiIconX" | "cuiIconXSm" | "cuiIconXCircle" | "cuiIconXCircleSm" | "cuiIconClear" | "cuiIconClearSm" | "cuiIconEye" | "cuiIconEyeSm" | "cuiIconEyeOff" | "cuiIconEyeOffSm" | "cuiIconChevronUp" | "cuiIconChevronUpSm" | "cuiIconChevronRight" | "cuiIconChevronRightSm" | "cuiIconChevronDown" | "cuiIconChevronDownSm" | "cuiIconChevronLeft" | "cuiIconChevronLeftSm" | "cuiIconChevronsRight" | "cuiIconChevronsRightSm" | "cuiIconChevronsLeft" | "cuiIconChevronsLeftSm" | "cuiIconChevronsSwitch" | "cuiIconDatabase" | "cuiIconDatabaseSm" | "cuiIconHome" | "cuiIconHomeSm" | "cuiIconUser" | "cuiIconUserSm" | "cuiIconUsers" | "cuiIconUsersBg" | "cuiIconUsersSm" | "cuiIconUserPlus" | "cuiIconUserPlusSm" | "cuiIconFormula" | "cuiIconSettings" | "cuiIconSettingsSm" | "cuiIconSettingsBold" | "cuiIconCopy" | "cuiIconCopySm" | "cuiIconSidebar" | "cuiIconSidebarSm" | "cuiIconChart" | "cuiIconFolder" | "cuiIconFolderSm" | "cuiIconFolderOpen" | "cuiIconFolderOpenSm" | "cuiIconPlus" | "cuiIconPlusSm" | "cuiIconPlusCircle" | "cuiIconFiltersLines" | "cuiIconFiltersLinesSm" | "cuiIconSearch" | "cuiIconSearchSm" | "cuiIconGrid" | "cuiIconGridSm" | "cuiIconList" | "cuiIconListSm" | "cuiIconProgress" | "cuiIconSortAZSm" | "cuiIconFlagBold" | "cuiIconFileText" | "cuiIconFileTextSm" | "cuiIconLink" | "cuiIconExternalLinkSm" | "cuiIconLinkBroken" | "cuiIconLinkBrokenSm" | "cuiIconClock" | "cuiIconClockSm" | "cuiIconInfo" | "cuiIconInfoSm" | "cuiIconInfoCircle" | "cuiIconInfoCircleBg" | "cuiIconAlertTriangle" | "cuiIconAlertTriangleSm" | "cuiIconAlertCircle" | "cuiIcon2Layers" | "cuiIcon2LayersSm" | "cuiIcon3Layers" | "cuiIcon3LayersSm" | "cuiIconLearningSm" | "cuiIconBellSm" | "cuiIconMessageCircle" | "cuiIconMessageCircleSm" | "cuiIconSlashDivider" | "cuiIconCaretDownFillXxs" | "cuiIconCaretDownFill" | "cuiIconDragHandleDots" | "cuiIconPlayCircle" | "cuiIconPlayCircleSm" | "cuiIconClipBoard" | "cuiIconUpload" | "cuiIconUploadSm" | "cuiIconMaximize" | "cuiIconMaximizeSm" | "cuiIconArrowUpRight" | "cuiIconArrowUpRightSm" | "cuiIconAddBranchSm" | "cuiIconBranch" | "cuiIconBranchSm" | "cuiIconPaperclip" | "cuiIconPaperclipSm" | "cuiIconToolsSm" | "cuiIconPartsSm" | "cuiIconEquipmentSm" | "cuiIconPrimitive" | "cuiIconPrimitiveSm" | "cuiIconSpool" | "cuiIconSpoolSm" | "cuiIconTank" | "cuiIconTankSm" | "cuiIconAssembly" | "cuiIconAssemblySm" | "cuiIconVariant" | "cuiIconVariantSm" | "cuiIconRichText" | "cuiIconRichTextSm" | "cuiIconChecklist" | "cuiIconRefreshCcwSm" | "cuiIconRefreshCcw" | "cuiIconBarChartSm" | "cuiIconBarChart" | "cuiIconCurvedArrow" | "cuiIconBulletFillSm" | "cuiIconBulletSm" | "cuiIconArrowRight" | "cuiIconArrowRightSm" | "cuiIconImage" | "cuiIconCutLinearSm" | "cuiIconCutLinear" | "cuiIconForkLift" | "cuiIconPartPrimitive" | "cuiIconPartPrimitiveSm" | "cuiIconChecklistsSm" | "cuiIconViewInAr" | "cuiIconViewInArSm" | "cuiIconFloorplanSolid" | "cuiIconFloorplanSolidSm">;
|
|
13
|
+
protected readonly isSubcategoryCreating: import("@angular/core").WritableSignal<boolean>;
|
|
14
|
+
protected readonly isSubcategoryCreationLoading: import("@angular/core").WritableSignal<boolean>;
|
|
15
|
+
protected readonly alignItems: import("@angular/core").Signal<"flex-start" | "center">;
|
|
16
|
+
protected readonly isTitleEdit: import("@angular/core").Signal<boolean>;
|
|
17
|
+
protected readonly isCreateCategoryControlVisible: import("@angular/core").Signal<boolean>;
|
|
18
|
+
readonly stageStorage: import("@angular/core").InputSignal<TreeStruct<import("@cuby-ui/api").Job<import("@cuby-ui/api").JobContentStructureType>>>;
|
|
19
|
+
readonly categoryTitle: import("@angular/core").WritableSignal<string>;
|
|
20
|
+
readonly category: import("@angular/core").Signal<{
|
|
21
|
+
title: string;
|
|
22
|
+
elements: import("@cuby-ui/api").Job<import("@cuby-ui/api").JobContentStructureType>[];
|
|
23
|
+
children: string[] | TreeStruct<import("@cuby-ui/api").Job<import("@cuby-ui/api").JobContentStructureType>>[];
|
|
24
|
+
id: string;
|
|
25
|
+
description?: string;
|
|
26
|
+
ancestors: [import("@cuby-ui/api").TreeStructAncestor, ...import("@cuby-ui/api").TreeStructAncestor[]];
|
|
27
|
+
}>;
|
|
28
|
+
constructor();
|
|
29
|
+
protected onSelectCategory(): void;
|
|
30
|
+
protected onToggleChildren(event: MouseEvent): void;
|
|
31
|
+
protected onTitleChanged(title: string): void;
|
|
32
|
+
protected onStartTitleEdit(event?: Event): void;
|
|
33
|
+
protected onCancelTitleEdit(): void;
|
|
34
|
+
protected onStartCreatingSubcategory(event: MouseEvent): void;
|
|
35
|
+
protected onCreateNewSubcategoryCategory(title: string): void;
|
|
36
|
+
protected onCreatingSubcategoryCanceled(): void;
|
|
37
|
+
private initStageStorageChildren;
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiCategoryItemComponent, never>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiCategoryItemComponent, "cui-category-item", never, { "stageStorage": { "alias": "stageStorage"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
40
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CuiCategoryItemComponent } from './category-item.component';
|
package/widgets/categories/components/create-category-item/create-category-item.component.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class CuiCreateCategoryItemComponent {
|
|
3
|
+
protected readonly created: import("@angular/core").OutputEmitterRef<string>;
|
|
4
|
+
protected readonly canceled: import("@angular/core").OutputEmitterRef<void>;
|
|
5
|
+
readonly isDisabled: import("@angular/core").InputSignal<boolean>;
|
|
6
|
+
protected onSubmit(title: string): void;
|
|
7
|
+
protected onCancel(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiCreateCategoryItemComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiCreateCategoryItemComponent, "cui-create-category-item", never, { "isDisabled": { "alias": "isDisabled"; "required": false; "isSignal": true; }; }, { "created": "created"; "canceled": "canceled"; }, never, never, true, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CuiCreateCategoryItemComponent } from './create-category-item.component';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CuiCategoriesComponent } from './categories.component';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SelectedCategoryService } from './selected-category.service';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { CuiNullable } from '@cuby-ui/cdk';
|
|
2
|
+
import { TreeStruct } from '@cuby-ui/api';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SelectedCategoryService {
|
|
5
|
+
private readonly editingIdSignal;
|
|
6
|
+
private readonly creatingIdSignal;
|
|
7
|
+
private readonly categorySignal;
|
|
8
|
+
readonly editingId: import("@angular/core").Signal<CuiNullable<string>>;
|
|
9
|
+
readonly creatingId: import("@angular/core").Signal<CuiNullable<string>>;
|
|
10
|
+
readonly category: import("@angular/core").Signal<CuiNullable<TreeStruct<import("@cuby-ui/api").Job<import("@cuby-ui/api").JobContentStructureType>>>>;
|
|
11
|
+
setCurrentCategory(category: CuiNullable<TreeStruct>): void;
|
|
12
|
+
setEditingId(id: string): void;
|
|
13
|
+
setCreatingId(id: string): void;
|
|
14
|
+
clearEditingId(): void;
|
|
15
|
+
clearCreatingId(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectedCategoryService, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SelectedCategoryService>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { AbstractControl } from '@angular/forms';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CuiGeneralControlErrorHintComponent {
|
|
4
|
+
readonly control: import("@angular/core").InputSignal<AbstractControl<any, any>>;
|
|
5
|
+
readonly isVisible: import("@angular/core").InputSignal<boolean | undefined>;
|
|
6
|
+
protected get isInvalid(): boolean;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiGeneralControlErrorHintComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiGeneralControlErrorHintComponent, "cui-general-control-error-hint", never, { "control": { "alias": "control"; "required": true; "isSignal": true; }; "isVisible": { "alias": "isVisible"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CuiGeneralControlErrorHintComponent } from './general-control-error-hint.component';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CuiUtilityInfoComponent } from './utility-info.component';
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { FormControl } from '@angular/forms';
|
|
2
|
+
import { type CuiNullable } from '@cuby-ui/cdk';
|
|
3
|
+
import { ResourceFragment } from '@cuby-ui/api';
|
|
4
|
+
import { CuiEditorConfig } from '../../editor';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CuiUtilityInfoComponent {
|
|
7
|
+
private readonly destroy;
|
|
8
|
+
private readonly translocoService;
|
|
9
|
+
private readonly frameApiService;
|
|
10
|
+
private readonly cuiAlertService;
|
|
11
|
+
private readonly cuiIdService;
|
|
12
|
+
protected readonly CONTROL_DELAY = 500;
|
|
13
|
+
protected readonly MAX_FILE_SIZE = 20971520;
|
|
14
|
+
protected readonly titleId: string;
|
|
15
|
+
protected readonly titleControl: FormControl<string | null>;
|
|
16
|
+
protected readonly isDescriptionModalOpen: import("@angular/core").WritableSignal<boolean>;
|
|
17
|
+
protected readonly isDescriptionEmpty: import("@angular/core").WritableSignal<boolean>;
|
|
18
|
+
protected readonly editorId: import("@angular/core").WritableSignal<CuiNullable<string>>;
|
|
19
|
+
protected readonly thumbnail: import("@angular/core").WritableSignal<CuiNullable<ResourceFragment>>;
|
|
20
|
+
protected readonly thumbnailUrl: import("@angular/core").Signal<string>;
|
|
21
|
+
protected readonly uploadButtonName: import("@angular/core").Signal<string>;
|
|
22
|
+
protected heading: CuiNullable<string>;
|
|
23
|
+
protected get isTitleError(): boolean;
|
|
24
|
+
readonly title: import("@angular/core").InputSignal<string>;
|
|
25
|
+
readonly framerId: import("@angular/core").InputSignal<string>;
|
|
26
|
+
readonly baseResourceUrl: import("@angular/core").InputSignal<string>;
|
|
27
|
+
readonly config: import("@angular/core").InputSignal<CuiEditorConfig>;
|
|
28
|
+
readonly titleChanged: import("@angular/core").OutputEmitterRef<string>;
|
|
29
|
+
readonly isFormValidChanged: import("@angular/core").OutputEmitterRef<boolean>;
|
|
30
|
+
constructor();
|
|
31
|
+
protected onSelectFile(): void;
|
|
32
|
+
protected onEditorEmpty(isEmpty: boolean): void;
|
|
33
|
+
protected onRemoveThumbnail(): void;
|
|
34
|
+
protected onToggleDescriptionModal(): void;
|
|
35
|
+
private initUtilityEffect;
|
|
36
|
+
private initTitleSubscriptions;
|
|
37
|
+
private initFrameFragments;
|
|
38
|
+
private setResourceFile;
|
|
39
|
+
private getFile;
|
|
40
|
+
private uploadFile;
|
|
41
|
+
private getCaptureFromVideo;
|
|
42
|
+
private checkFormValidation;
|
|
43
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiUtilityInfoComponent, never>;
|
|
44
|
+
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; }; }, { "titleChanged": "titleChanged"; "isFormValidChanged": "isFormValidChanged"; }, never, never, true, never>;
|
|
45
|
+
}
|