@cuby-ui/core 0.0.595 → 0.0.597
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/collapsible-panel/collapsible-panel.component.d.ts +8 -0
- package/components/collapsible-panel/index.d.ts +1 -0
- package/components/index.d.ts +1 -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/editor/editor.component.d.ts +19 -8
- package/esm2022/components/collapsible-panel/collapsible-panel.component.mjs +22 -0
- package/esm2022/components/collapsible-panel/index.mjs +2 -0
- package/esm2022/components/index.mjs +2 -1
- package/esm2022/editor/editor.component.mjs +121 -57
- package/fesm2022/cuby-ui-core.mjs +139 -57
- package/fesm2022/cuby-ui-core.mjs.map +1 -1
- package/package.json +4 -4
- package/widgets/ui/categories/components/category-item/category-item.component.d.ts +2 -2
- package/widgets/ui/categories-tree/components/category-tree-item/category-tree-item.component.d.ts +2 -2
- package/widgets/ui/loader/components/stated-loader/stated-loader.component.d.ts +1 -1
- package/widgets/ui/storage-list/components/storage-list-item/storage-list-item.component.d.ts +1 -1
|
@@ -6,7 +6,7 @@ import { DomSanitizer } from '@angular/platform-browser';
|
|
|
6
6
|
import { cuiIsIcon, CUI_ICONS } from '@cuby-ui/icons';
|
|
7
7
|
import * as i1$1 from '@cuby-ui/cdk';
|
|
8
8
|
import { cuiCreateToken, cuiCreateTokenFromFactory, CuiDestroyService, CuiFilterPipe, CuiLetDirective, CuiPopoverService, cuiProvide, CUI_ANIMATION_FRAME, cuiZonefree, EMPTY_CLIENT_RECT, cuiInjectElement, CUI_LOCAL_STORAGE, CUI_IS_WEBKIT, CUI_WINDOW, cuiGetElementObscures, CUI_IS_MOBILE, CuiHoveredService, cuiPure, CuiActiveZone, cuiPointToClientRect, cuiClamp, cuiPx, cuiIfMap, cuiIsPresent, cuiTypedFromEvent, cuiZonefreeScheduler, cuiZoneOptimized, cuiIsNativeFocused, cuiWithStyles, CHAR_NO_BREAK_SPACE, CuiItemDirective, CuiFocusTrapDirective, CuiClickOutsideDirective, CuiTargetDirective, cuiGetClosestFocusable, CuiTime, CuiElementDirective, CuiDimensionsObserverDirective, CuiIdService, CuiAutoResizingDirective, CuiDragPointerDirective, CuiDragDropDirective, CuiDragListDirective, CuiHandleScrollDirective, FilesUploader, takeCaptureFromVideo, CuiConsumptionUnitsService, UnitsAmount, CuiTypedTemplateDirective } from '@cuby-ui/cdk';
|
|
9
|
-
import { BehaviorSubject, takeUntil, Observable, merge, distinctUntilChanged, startWith, map, finalize, switchMap, tap, catchError, throwError, of, from, filter, timer, Subject, delay, repeat, takeWhile, fromEvent, debounce, skip, take, forkJoin,
|
|
9
|
+
import { BehaviorSubject, takeUntil, Observable, merge, distinctUntilChanged, startWith, map, finalize, switchMap, tap, catchError, throwError, of, from, filter, timer, Subject, delay, repeat, takeWhile, fromEvent, debounce, skip, take, forkJoin, EMPTY, concatMap, toArray, debounceTime, pairwise } from 'rxjs';
|
|
10
10
|
import { __decorate, __metadata } from 'tslib';
|
|
11
11
|
import { takeUntilDestroyed, toSignal } from '@angular/core/rxjs-interop';
|
|
12
12
|
import { trigger, transition, query, animateChild, style, animate, stagger } from '@angular/animations';
|
|
@@ -2680,6 +2680,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
2680
2680
|
}]
|
|
2681
2681
|
}] });
|
|
2682
2682
|
|
|
2683
|
+
class CuiCollapsiblePanelComponent {
|
|
2684
|
+
constructor() {
|
|
2685
|
+
this.toggleIcon = computed(() => this.isCollapsed() ? 'cuiIconChevronsRightSm' : 'cuiIconChevronsLeftSm');
|
|
2686
|
+
this.isCollapsed = model(false);
|
|
2687
|
+
}
|
|
2688
|
+
onToggleCollapsed() {
|
|
2689
|
+
this.isCollapsed.update((isCollapsed) => !isCollapsed);
|
|
2690
|
+
}
|
|
2691
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CuiCollapsiblePanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2692
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.2.14", type: CuiCollapsiblePanelComponent, isStandalone: true, selector: "cui-collapsible-panel", inputs: { isCollapsed: { classPropertyName: "isCollapsed", publicName: "isCollapsed", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { isCollapsed: "isCollapsedChange" }, host: { properties: { "class._collapsed": "isCollapsed()" } }, ngImport: i0, template: "<div class=\"head\">\n <div [hidden]=\"isCollapsed()\">\n <ng-content select=\"[cuiCollapsiblePanelTitle]\" />\n </div>\n\n <button\n type=\"button\"\n cuiButton\n appearance=\"ghost\"\n size=\"xs\"\n [icon]=\"toggleIcon()\"\n (click)=\"onToggleCollapsed()\"\n ></button>\n</div>\n\n<div\n [hidden]=\"isCollapsed()\"\n class=\"body\"\n>\n <ng-content />\n</div>\n", styles: [":host{--gap: 8px;--width: 100%;--min-width: 300px;--max-width: 100%;--collapsed-width: 44px;--transition-duration: .25s;display:flex;flex-direction:column;gap:var(--gap);padding:16px 8px;min-width:var(--min-width);max-width:var(--max-width);width:var(--width);transition:width var(--transition-duration) ease,min-width var(--transition-duration) ease,max-width var(--transition-duration) ease}:host._collapsed{min-width:var(--collapsed-width);max-width:var(--collapsed-width);width:var(--collapsed-width)}.head{display:flex;flex-direction:row;gap:var(--gap);align-items:center;justify-content:space-between}:host(._collapsed) .head{align-items:center;justify-content:center}\n"], dependencies: [{ kind: "ngmodule", type: CuiButtonModule }, { kind: "component", type: CuiButtonComponent, selector: "button[cuiButton], a[cuiButton]", inputs: ["shape", "disabled", "isLoaderShown", "icon", "iconRight", "appearance", "theme", "size"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2693
|
+
}
|
|
2694
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CuiCollapsiblePanelComponent, decorators: [{
|
|
2695
|
+
type: Component,
|
|
2696
|
+
args: [{ selector: 'cui-collapsible-panel', standalone: true, imports: [CuiButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
2697
|
+
'[class._collapsed]': 'isCollapsed()'
|
|
2698
|
+
}, template: "<div class=\"head\">\n <div [hidden]=\"isCollapsed()\">\n <ng-content select=\"[cuiCollapsiblePanelTitle]\" />\n </div>\n\n <button\n type=\"button\"\n cuiButton\n appearance=\"ghost\"\n size=\"xs\"\n [icon]=\"toggleIcon()\"\n (click)=\"onToggleCollapsed()\"\n ></button>\n</div>\n\n<div\n [hidden]=\"isCollapsed()\"\n class=\"body\"\n>\n <ng-content />\n</div>\n", styles: [":host{--gap: 8px;--width: 100%;--min-width: 300px;--max-width: 100%;--collapsed-width: 44px;--transition-duration: .25s;display:flex;flex-direction:column;gap:var(--gap);padding:16px 8px;min-width:var(--min-width);max-width:var(--max-width);width:var(--width);transition:width var(--transition-duration) ease,min-width var(--transition-duration) ease,max-width var(--transition-duration) ease}:host._collapsed{min-width:var(--collapsed-width);max-width:var(--collapsed-width);width:var(--collapsed-width)}.head{display:flex;flex-direction:row;gap:var(--gap);align-items:center;justify-content:space-between}:host(._collapsed) .head{align-items:center;justify-content:center}\n"] }]
|
|
2699
|
+
}] });
|
|
2700
|
+
|
|
2683
2701
|
class ContentHeaderComponent {
|
|
2684
2702
|
constructor() {
|
|
2685
2703
|
this.heading = input.required();
|
|
@@ -8469,21 +8487,25 @@ class CuiEditorComponent {
|
|
|
8469
8487
|
this.editorService = inject(CuiEditorService);
|
|
8470
8488
|
this.jTextService = inject(CUI_JTEXT_API_SERVICE);
|
|
8471
8489
|
this.POOLING_DELAY = 100;
|
|
8472
|
-
this.
|
|
8473
|
-
this.SCROLL_THROTTLE_TIME = 200;
|
|
8490
|
+
this.RETRY_DELAY = 3000;
|
|
8474
8491
|
this.emptyQueue = new Subject();
|
|
8475
8492
|
this.initChain = Promise.resolve();
|
|
8493
|
+
this.lazyLoadObserver = null;
|
|
8494
|
+
this.lazyLoadSubscription = null;
|
|
8476
8495
|
this.isSkipCombinedBlockOnChange = [];
|
|
8477
8496
|
this.isFirst = true;
|
|
8478
8497
|
this.isChanging = false;
|
|
8479
8498
|
this.isSkip = false;
|
|
8480
8499
|
this.isRequested = false;
|
|
8481
8500
|
this.isDestroyed = false;
|
|
8501
|
+
this.isPreloadFinished = false;
|
|
8502
|
+
this.hasEndLeftZone = false;
|
|
8482
8503
|
// Нужен для соотношения локального ID и основного ID после создания элемента
|
|
8483
8504
|
this.blockIdsMap = new Map();
|
|
8484
8505
|
this.combinedBlocks = new Map();
|
|
8485
8506
|
this.index = 0;
|
|
8486
8507
|
this.page = 0;
|
|
8508
|
+
this.lazyLoadVersion = 0;
|
|
8487
8509
|
this.addedBlocks = [];
|
|
8488
8510
|
this.updatedBlocks = [];
|
|
8489
8511
|
this.removedBlocksIds = [];
|
|
@@ -8492,6 +8514,7 @@ class CuiEditorComponent {
|
|
|
8492
8514
|
this.editorId = this.cuiIdService.generate();
|
|
8493
8515
|
this.isReadonly = computed(() => this.config()?.readOnly);
|
|
8494
8516
|
this.requestOptions = computed(() => this.config()?.requestOptions);
|
|
8517
|
+
this.editorEndRef = viewChild.required('editorEnd');
|
|
8495
8518
|
this.editorRef = viewChild.required('editor');
|
|
8496
8519
|
this.editorApiId = input.required();
|
|
8497
8520
|
this.config = input(DEFAULT_CONFIG);
|
|
@@ -8503,25 +8526,67 @@ class CuiEditorComponent {
|
|
|
8503
8526
|
this.isDestroyed = true;
|
|
8504
8527
|
this.enqueueInit(() => this.teardownEditor());
|
|
8505
8528
|
}
|
|
8506
|
-
|
|
8507
|
-
const overallHeight = element.scrollHeight - this.ELEMENT_SPACE_TO_BOTTOM;
|
|
8508
|
-
const currentHeight = element.scrollTop + element.clientHeight;
|
|
8509
|
-
if (currentHeight < overallHeight || this.isRequested) {
|
|
8510
|
-
return;
|
|
8511
|
-
}
|
|
8529
|
+
loadPage() {
|
|
8512
8530
|
this.isRequested = true;
|
|
8531
|
+
const version = this.lazyLoadVersion;
|
|
8513
8532
|
const size = this.requestSize();
|
|
8514
8533
|
let blocksCount = 0;
|
|
8515
|
-
|
|
8516
|
-
|
|
8517
|
-
|
|
8518
|
-
|
|
8519
|
-
|
|
8520
|
-
|
|
8521
|
-
this.scrollSubscription.unsubscribe();
|
|
8522
|
-
}))
|
|
8534
|
+
let isFailed = false;
|
|
8535
|
+
this.lazyLoadSubscription = this.getBlocks(this.page, size)
|
|
8536
|
+
.pipe(tap((blocks) => (blocksCount = blocks.length)), catchError(() => {
|
|
8537
|
+
isFailed = true;
|
|
8538
|
+
return EMPTY;
|
|
8539
|
+
}), finalize(() => this.finishPageLoad(blocksCount, size, version, isFailed)))
|
|
8523
8540
|
.subscribe();
|
|
8541
|
+
}
|
|
8542
|
+
finishPageLoad(blocksCount, size, version, isFailed) {
|
|
8543
|
+
this.isRequested = false;
|
|
8544
|
+
if (this.isDestroyed || version !== this.lazyLoadVersion) {
|
|
8545
|
+
return;
|
|
8546
|
+
}
|
|
8547
|
+
if (isFailed) {
|
|
8548
|
+
this.retryPageLoad(version);
|
|
8549
|
+
return;
|
|
8550
|
+
}
|
|
8524
8551
|
this.page++;
|
|
8552
|
+
this.scheduleNextPage(blocksCount, size, version);
|
|
8553
|
+
}
|
|
8554
|
+
retryPageLoad(version) {
|
|
8555
|
+
this.isRequested = true;
|
|
8556
|
+
timer(this.RETRY_DELAY)
|
|
8557
|
+
.pipe(takeUntilDestroyed(this.destroy))
|
|
8558
|
+
.subscribe(() => {
|
|
8559
|
+
if (this.isDestroyed || version !== this.lazyLoadVersion) {
|
|
8560
|
+
return;
|
|
8561
|
+
}
|
|
8562
|
+
this.loadPage();
|
|
8563
|
+
});
|
|
8564
|
+
}
|
|
8565
|
+
scheduleNextPage(blocksCount, size, version) {
|
|
8566
|
+
if (blocksCount < size) {
|
|
8567
|
+
this.lazyLoadObserver?.disconnect();
|
|
8568
|
+
this.finishPreload();
|
|
8569
|
+
return;
|
|
8570
|
+
}
|
|
8571
|
+
timer(this.POOLING_DELAY)
|
|
8572
|
+
.pipe(takeUntilDestroyed(this.destroy))
|
|
8573
|
+
.subscribe(() => this.continueLazyLoad(version));
|
|
8574
|
+
}
|
|
8575
|
+
continueLazyLoad(version) {
|
|
8576
|
+
if (this.isDestroyed || version !== this.lazyLoadVersion) {
|
|
8577
|
+
return;
|
|
8578
|
+
}
|
|
8579
|
+
if (this.config()?.withoutPreload) {
|
|
8580
|
+
this.finishPreload();
|
|
8581
|
+
}
|
|
8582
|
+
this.observeEditorEnd();
|
|
8583
|
+
}
|
|
8584
|
+
finishPreload() {
|
|
8585
|
+
if (this.isPreloadFinished) {
|
|
8586
|
+
return;
|
|
8587
|
+
}
|
|
8588
|
+
this.isPreloadFinished = true;
|
|
8589
|
+
this.setStartBlock();
|
|
8525
8590
|
}
|
|
8526
8591
|
onEditorChange(_, event) {
|
|
8527
8592
|
if (this.isReadonly() || this.isDestroyed) {
|
|
@@ -8559,6 +8624,30 @@ class CuiEditorComponent {
|
|
|
8559
8624
|
}
|
|
8560
8625
|
this.recalculateAllBlocksAfterRemoval(blockIds);
|
|
8561
8626
|
}
|
|
8627
|
+
onEditorEndMove(entry) {
|
|
8628
|
+
if (this.isRequested) {
|
|
8629
|
+
return;
|
|
8630
|
+
}
|
|
8631
|
+
if (!entry.isIntersecting) {
|
|
8632
|
+
this.hasEndLeftZone = true;
|
|
8633
|
+
this.finishPreload();
|
|
8634
|
+
return;
|
|
8635
|
+
}
|
|
8636
|
+
if (this.config()?.withoutPreload && !this.hasEndLeftZone) {
|
|
8637
|
+
return;
|
|
8638
|
+
}
|
|
8639
|
+
this.loadPage();
|
|
8640
|
+
}
|
|
8641
|
+
initEditorEffect() {
|
|
8642
|
+
effect(() => {
|
|
8643
|
+
if (this.editorApiId() || this.config()) {
|
|
8644
|
+
this.initEditorChanges();
|
|
8645
|
+
}
|
|
8646
|
+
}, { allowSignalWrites: true });
|
|
8647
|
+
}
|
|
8648
|
+
initEditorChanges() {
|
|
8649
|
+
this.enqueueInit(() => this.runEditorInit());
|
|
8650
|
+
}
|
|
8562
8651
|
recalculateAllBlocksAfterRemoval(blockIds) {
|
|
8563
8652
|
const remainingRemovedBlockIds = new Set(blockIds);
|
|
8564
8653
|
this.updatedBlocks = this.updatedBlocks.filter((updatedBlock) => !remainingRemovedBlockIds.has(updatedBlock.id ?? ''));
|
|
@@ -8571,25 +8660,19 @@ class CuiEditorComponent {
|
|
|
8571
8660
|
});
|
|
8572
8661
|
this.removedBlocksIds.push(...remainingRemovedBlockIds.values());
|
|
8573
8662
|
}
|
|
8574
|
-
|
|
8575
|
-
|
|
8576
|
-
|
|
8577
|
-
|
|
8578
|
-
|
|
8579
|
-
}, { allowSignalWrites: true });
|
|
8663
|
+
observeEditorEnd() {
|
|
8664
|
+
const editorEndElement = this.editorEndRef().nativeElement;
|
|
8665
|
+
this.lazyLoadObserver ??= this.createLazyLoadObserver();
|
|
8666
|
+
this.lazyLoadObserver.unobserve(editorEndElement);
|
|
8667
|
+
this.lazyLoadObserver.observe(editorEndElement);
|
|
8580
8668
|
}
|
|
8581
|
-
|
|
8582
|
-
|
|
8669
|
+
createLazyLoadObserver() {
|
|
8670
|
+
return new IntersectionObserver((entries) => this.onEditorEndMove(entries[entries.length - 1]), {
|
|
8671
|
+
root: this.getViewportElement()
|
|
8672
|
+
});
|
|
8583
8673
|
}
|
|
8584
|
-
|
|
8585
|
-
|
|
8586
|
-
const scrollObserver = fromEvent(element, 'scroll');
|
|
8587
|
-
this.scrollSubscription = scrollObserver
|
|
8588
|
-
.pipe(takeUntilDestroyed(this.destroy), throttleTime(this.SCROLL_THROTTLE_TIME, undefined, {
|
|
8589
|
-
leading: true,
|
|
8590
|
-
trailing: true
|
|
8591
|
-
}), map(() => this.onScrollEvent(element)))
|
|
8592
|
-
.subscribe();
|
|
8674
|
+
getViewportElement() {
|
|
8675
|
+
return this.config()?.element ?? this.editorElement;
|
|
8593
8676
|
}
|
|
8594
8677
|
initEditorEvents(element) {
|
|
8595
8678
|
const readOnly = this.isReadonly();
|
|
@@ -8598,20 +8681,6 @@ class CuiEditorComponent {
|
|
|
8598
8681
|
}
|
|
8599
8682
|
setEditorEvents(element, this.abortController.signal);
|
|
8600
8683
|
}
|
|
8601
|
-
startPooling(size) {
|
|
8602
|
-
const scrollElement = this.config()?.element ?? this.editorElement;
|
|
8603
|
-
const withoutPreload = this.config()?.withoutPreload;
|
|
8604
|
-
this.poolingSubscription = timer(0, this.POOLING_DELAY)
|
|
8605
|
-
.pipe(concatMap(() => this.getBlocks(this.page, size).pipe(delay(this.POOLING_DELAY))), tap(() => this.page++), takeWhile((blocks) => !withoutPreload &&
|
|
8606
|
-
scrollElement.scrollHeight <= scrollElement.clientHeight &&
|
|
8607
|
-
blocks.length >= size), finalize(() => {
|
|
8608
|
-
if (this.isDestroyed) {
|
|
8609
|
-
return;
|
|
8610
|
-
}
|
|
8611
|
-
this.setStartBlock();
|
|
8612
|
-
}))
|
|
8613
|
-
.subscribe();
|
|
8614
|
-
}
|
|
8615
8684
|
teardownEditor() {
|
|
8616
8685
|
this.abortController.abort();
|
|
8617
8686
|
this.resetData();
|
|
@@ -8641,8 +8710,7 @@ class CuiEditorComponent {
|
|
|
8641
8710
|
wireEditor() {
|
|
8642
8711
|
this.editorElement = this.editorRef().nativeElement;
|
|
8643
8712
|
this.initEditorEvents(this.editorElement);
|
|
8644
|
-
this.
|
|
8645
|
-
this.startPooling(this.requestSize());
|
|
8713
|
+
this.loadPage();
|
|
8646
8714
|
this.setListenersOnCustomBlockChanges();
|
|
8647
8715
|
}
|
|
8648
8716
|
setListenersOnCustomBlockChanges() {
|
|
@@ -8746,6 +8814,9 @@ class CuiEditorComponent {
|
|
|
8746
8814
|
if (typeof block.type !== 'string') {
|
|
8747
8815
|
return;
|
|
8748
8816
|
}
|
|
8817
|
+
if (this.blockIdsMap.has(block.id)) {
|
|
8818
|
+
return;
|
|
8819
|
+
}
|
|
8749
8820
|
this.blockIdsMap.set(block.id, block.id);
|
|
8750
8821
|
this.insert(block);
|
|
8751
8822
|
}
|
|
@@ -8775,6 +8846,9 @@ class CuiEditorComponent {
|
|
|
8775
8846
|
setCombinedBlock(block) {
|
|
8776
8847
|
const combinedBlockData = block.data;
|
|
8777
8848
|
const parent = this.combinedBlocks.get(combinedBlockData.parentId);
|
|
8849
|
+
if (parent && this.blockIdsMap.has(block.id)) {
|
|
8850
|
+
return parent;
|
|
8851
|
+
}
|
|
8778
8852
|
this.blockIdsMap.set(block.id, block.id);
|
|
8779
8853
|
if (parent) {
|
|
8780
8854
|
const parentData = parent.data;
|
|
@@ -8844,23 +8918,31 @@ class CuiEditorComponent {
|
|
|
8844
8918
|
return !redactorTextContent;
|
|
8845
8919
|
}
|
|
8846
8920
|
resetData() {
|
|
8847
|
-
this.
|
|
8848
|
-
this.poolingSubscription?.unsubscribe();
|
|
8921
|
+
this.resetLazyLoad();
|
|
8849
8922
|
this.isSkipCombinedBlockOnChange = [];
|
|
8850
8923
|
this.isFirst = true;
|
|
8851
8924
|
this.isChanging = false;
|
|
8852
8925
|
this.isSkip = false;
|
|
8853
|
-
this.isRequested = false;
|
|
8854
8926
|
this.blockIdsMap = new Map();
|
|
8855
8927
|
this.combinedBlocks = new Map();
|
|
8856
8928
|
this.index = 0;
|
|
8857
|
-
this.page = 0;
|
|
8858
8929
|
this.addedBlocks = [];
|
|
8859
8930
|
this.updatedBlocks = [];
|
|
8860
8931
|
this.removedBlocksIds = [];
|
|
8861
8932
|
this.changesQueue = [];
|
|
8862
8933
|
this.abortController = new AbortController();
|
|
8863
8934
|
}
|
|
8935
|
+
resetLazyLoad() {
|
|
8936
|
+
this.lazyLoadVersion++;
|
|
8937
|
+
this.lazyLoadObserver?.disconnect();
|
|
8938
|
+
this.lazyLoadObserver = null;
|
|
8939
|
+
this.lazyLoadSubscription?.unsubscribe();
|
|
8940
|
+
this.lazyLoadSubscription = null;
|
|
8941
|
+
this.isRequested = false;
|
|
8942
|
+
this.isPreloadFinished = false;
|
|
8943
|
+
this.hasEndLeftZone = false;
|
|
8944
|
+
this.page = 0;
|
|
8945
|
+
}
|
|
8864
8946
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CuiEditorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
8865
8947
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "18.2.14", type: CuiEditorComponent, isStandalone: true, selector: "cui-editor", inputs: { editorApiId: { classPropertyName: "editorApiId", publicName: "editorApiId", isSignal: true, isRequired: true, transformFunction: null }, config: { classPropertyName: "config", publicName: "config", isSignal: true, isRequired: false, transformFunction: null }, requestSize: { classPropertyName: "requestSize", publicName: "requestSize", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { editorEmpty: "editorEmpty" }, providers: [
|
|
8866
8948
|
CuiEditorService,
|
|
@@ -8868,7 +8950,7 @@ class CuiEditorComponent {
|
|
|
8868
8950
|
provide: CUI_JTEXT_API_SERVICE,
|
|
8869
8951
|
useFactory: () => inject(CUI_JTEXT_API_SERVICE, { optional: true, skipSelf: true }) ?? new CuiJTextApiService()
|
|
8870
8952
|
}
|
|
8871
|
-
], viewQueries: [{ propertyName: "editorRef", first: true, predicate: ["editor"], descendants: true, isSignal: true }], ngImport: i0, template: "<div\n #editor\n
|
|
8953
|
+
], viewQueries: [{ propertyName: "editorEndRef", first: true, predicate: ["editorEnd"], descendants: true, isSignal: true }, { propertyName: "editorRef", first: true, predicate: ["editor"], descendants: true, isSignal: true }], ngImport: i0, template: "<div\n #editor\n data-editor\n [class._readonly]=\"config().readOnly\"\n>\n <div [id]=\"editorId\"></div>\n <div\n #editorEnd\n class=\"editor-end\"\n ></div>\n</div>\n", styles: [":host{--textColor: var(--cui-base-900);--menuBackground: var(--cui-base-0);--menuBorder: var(--cui-base-200);--menuItemHover: var(--cui-base-10);--menuItemBackground: var(cui-base-900);--menuIconBackground: var(--cui-base-50);--menuIconHover: var(--cui-base-10);font-weight:400;font-size:14px;line-height:20px;font-family:var(--cui-main-font)}:host ::ng-deep .ce-popover{--color-background: var(--menuBackground);--color-text-primary: var(--textColor);--color-border: var(--menuBorder);--color-border-icon: var(--menuBorder);--color-background-item: var(--menuItemBackground);--color-background-item-hover: var(--menuItemHover)}:host ::ng-deep .ce-popover__search{background:var(--menuIconBackground)}:host ::ng-deep .ce-popover .ce-popover-item__icon{background:var(--menuIconBackground)}:host ::ng-deep .ce-conversion-toolbar{background-color:var(--menuBackground);border-color:var(--menuBorder)}:host ::ng-deep .ce-conversion-toolbar__tools{padding:0 6px 6px}:host ::ng-deep .ce-conversion-tool{padding:3px;border-radius:6px}:host ::ng-deep .ce-conversion-tool__icon{border:1px solid var(--menuBorder);background-color:var(--menuIconBackground);box-shadow:none}:host ::ng-deep .ce-conversion-tool:hover{background-color:var(--menuItemHover)}:host ::ng-deep .ce-conversion-tool:hover .ce-conversion-tool__icon{border-color:var(--menuIconHover)}:host ::ng-deep .combined-text-block{padding:.4em 0;line-height:1.6em;outline:none}:host ::ng-deep .combined-text-block .combined-text-block-part{outline:none}:host ::ng-deep .combined-text-block .combined-text-block-part:only-child,:host ::ng-deep .combined-text-block .combined-text-block-part._selected{display:list-item}:host ::ng-deep .combined-text-block .combined-text-block-part:only-child::marker,:host ::ng-deep .combined-text-block .combined-text-block-part._selected::marker{content:\"\"}:host ::ng-deep .image-tool__image{border:1px solid var(--cui-base-200);background-color:var(--cui-base-0)}:host ::ng-deep .image-tool__image-preloader{background-color:var(--cui-base-200)}:host ::ng-deep .image-tool__image-preloader:after{border:1px solid var(--cui-base-200);border-top:1px solid var(--cui-blue-600)}:host ::ng-deep .cdx-button{border-radius:8px;border:1px solid var(--cui-base-200);color:var(--textColor);background-color:var(--cui-base-10);box-shadow:none}:host ::ng-deep .ce-inline-toolbar{border-color:var(--cui-base-100);color:var(--textColor);background-color:var(--cui-base-0)}:host ::ng-deep .ce-inline-toolbar__dropdown:hover{background-color:var(--cui-base-100)}:host ::ng-deep .ce-inline-tool:hover{background-color:var(--cui-base-100)}:host ::ng-deep .ce-toolbar__plus,:host ::ng-deep .ce-toolbar__settings-btn{color:var(--cui-base-500)}:host ::ng-deep .ce-toolbar__plus:hover,:host ::ng-deep .ce-toolbar__settings-btn:hover{background-color:var(--cui-base-100)}:host ::ng-deep .ce-toolbar__actions{right:100%}:host ::ng-deep .ce-toolbar__content{max-width:none}@media (max-width: 650px){:host ::ng-deep .ce-toolbar__plus,:host ::ng-deep .ce-toolbar__settings-btn{border-color:var(--menuBorder);background-color:var(--menuBackground)}:host ::ng-deep .ce-toolbar__actions{inset:0 auto auto 0}}:host ::ng-deep .ce-block--selected .ce-block__content{background-color:var(--cui-base-200)}:host ::ng-deep .ce-block__content{max-width:100%}:host ::ng-deep .ce-block:only-of-type .combined-text-block[data-placeholder-active][data-empty=true]:before{content:attr(data-placeholder-active);position:absolute;color:var(--cui-base-400)}:host ::ng-deep [data-editor]{padding-right:4px;width:100%;height:100%;min-height:200px;overflow:hidden auto;scrollbar-gutter:stable}:host ::ng-deep [data-editor] .codex-editor{margin-left:60px}:host ::ng-deep [data-editor] .codex-editor--narrow .ce-popover{right:auto}:host ::ng-deep [data-editor] .codex-editor__redactor{margin-right:auto;padding-bottom:260px!important}@media (max-width: 650px){:host ::ng-deep [data-editor] .codex-editor{margin-left:0}}:host ::ng-deep [data-editor]._readonly{min-height:auto}:host ::ng-deep [data-editor]._readonly .codex-editor{margin:auto}:host ::ng-deep [data-editor]._readonly .codex-editor__redactor{padding-bottom:0!important}:host ::ng-deep [data-editor]._readonly .combined-text-block{padding:0}:host ::ng-deep [data-editor] [data-item-name=move-up],:host ::ng-deep [data-editor] [data-item-name=move-down],:host ::ng-deep [data-editor] [data-tool=paragraph]{display:none}:host ::ng-deep [data-editor] *::selection{background:var(--cui-base-200)}:host ::ng-deep [data-editor] a{color:var(--cui-light-blue-600)}:host ::ng-deep .marker{cursor:pointer;text-decoration:underline;color:var(--cui-light-blue-600);background-color:transparent}:host ::ng-deep .tool-marker,:host ::ng-deep .role-marker{margin:0 5px}:host ::ng-deep .tool-marker{color:var(--cui-warning)}:host ::ng-deep .role-marker{color:var(--cui-info)}.editor-end{margin-top:-150px;height:150px;pointer-events:none}.form{height:100%}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8872
8954
|
}
|
|
8873
8955
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CuiEditorComponent, decorators: [{
|
|
8874
8956
|
type: Component,
|
|
@@ -8878,7 +8960,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
8878
8960
|
provide: CUI_JTEXT_API_SERVICE,
|
|
8879
8961
|
useFactory: () => inject(CUI_JTEXT_API_SERVICE, { optional: true, skipSelf: true }) ?? new CuiJTextApiService()
|
|
8880
8962
|
}
|
|
8881
|
-
], template: "<div\n #editor\n
|
|
8963
|
+
], template: "<div\n #editor\n data-editor\n [class._readonly]=\"config().readOnly\"\n>\n <div [id]=\"editorId\"></div>\n <div\n #editorEnd\n class=\"editor-end\"\n ></div>\n</div>\n", styles: [":host{--textColor: var(--cui-base-900);--menuBackground: var(--cui-base-0);--menuBorder: var(--cui-base-200);--menuItemHover: var(--cui-base-10);--menuItemBackground: var(cui-base-900);--menuIconBackground: var(--cui-base-50);--menuIconHover: var(--cui-base-10);font-weight:400;font-size:14px;line-height:20px;font-family:var(--cui-main-font)}:host ::ng-deep .ce-popover{--color-background: var(--menuBackground);--color-text-primary: var(--textColor);--color-border: var(--menuBorder);--color-border-icon: var(--menuBorder);--color-background-item: var(--menuItemBackground);--color-background-item-hover: var(--menuItemHover)}:host ::ng-deep .ce-popover__search{background:var(--menuIconBackground)}:host ::ng-deep .ce-popover .ce-popover-item__icon{background:var(--menuIconBackground)}:host ::ng-deep .ce-conversion-toolbar{background-color:var(--menuBackground);border-color:var(--menuBorder)}:host ::ng-deep .ce-conversion-toolbar__tools{padding:0 6px 6px}:host ::ng-deep .ce-conversion-tool{padding:3px;border-radius:6px}:host ::ng-deep .ce-conversion-tool__icon{border:1px solid var(--menuBorder);background-color:var(--menuIconBackground);box-shadow:none}:host ::ng-deep .ce-conversion-tool:hover{background-color:var(--menuItemHover)}:host ::ng-deep .ce-conversion-tool:hover .ce-conversion-tool__icon{border-color:var(--menuIconHover)}:host ::ng-deep .combined-text-block{padding:.4em 0;line-height:1.6em;outline:none}:host ::ng-deep .combined-text-block .combined-text-block-part{outline:none}:host ::ng-deep .combined-text-block .combined-text-block-part:only-child,:host ::ng-deep .combined-text-block .combined-text-block-part._selected{display:list-item}:host ::ng-deep .combined-text-block .combined-text-block-part:only-child::marker,:host ::ng-deep .combined-text-block .combined-text-block-part._selected::marker{content:\"\"}:host ::ng-deep .image-tool__image{border:1px solid var(--cui-base-200);background-color:var(--cui-base-0)}:host ::ng-deep .image-tool__image-preloader{background-color:var(--cui-base-200)}:host ::ng-deep .image-tool__image-preloader:after{border:1px solid var(--cui-base-200);border-top:1px solid var(--cui-blue-600)}:host ::ng-deep .cdx-button{border-radius:8px;border:1px solid var(--cui-base-200);color:var(--textColor);background-color:var(--cui-base-10);box-shadow:none}:host ::ng-deep .ce-inline-toolbar{border-color:var(--cui-base-100);color:var(--textColor);background-color:var(--cui-base-0)}:host ::ng-deep .ce-inline-toolbar__dropdown:hover{background-color:var(--cui-base-100)}:host ::ng-deep .ce-inline-tool:hover{background-color:var(--cui-base-100)}:host ::ng-deep .ce-toolbar__plus,:host ::ng-deep .ce-toolbar__settings-btn{color:var(--cui-base-500)}:host ::ng-deep .ce-toolbar__plus:hover,:host ::ng-deep .ce-toolbar__settings-btn:hover{background-color:var(--cui-base-100)}:host ::ng-deep .ce-toolbar__actions{right:100%}:host ::ng-deep .ce-toolbar__content{max-width:none}@media (max-width: 650px){:host ::ng-deep .ce-toolbar__plus,:host ::ng-deep .ce-toolbar__settings-btn{border-color:var(--menuBorder);background-color:var(--menuBackground)}:host ::ng-deep .ce-toolbar__actions{inset:0 auto auto 0}}:host ::ng-deep .ce-block--selected .ce-block__content{background-color:var(--cui-base-200)}:host ::ng-deep .ce-block__content{max-width:100%}:host ::ng-deep .ce-block:only-of-type .combined-text-block[data-placeholder-active][data-empty=true]:before{content:attr(data-placeholder-active);position:absolute;color:var(--cui-base-400)}:host ::ng-deep [data-editor]{padding-right:4px;width:100%;height:100%;min-height:200px;overflow:hidden auto;scrollbar-gutter:stable}:host ::ng-deep [data-editor] .codex-editor{margin-left:60px}:host ::ng-deep [data-editor] .codex-editor--narrow .ce-popover{right:auto}:host ::ng-deep [data-editor] .codex-editor__redactor{margin-right:auto;padding-bottom:260px!important}@media (max-width: 650px){:host ::ng-deep [data-editor] .codex-editor{margin-left:0}}:host ::ng-deep [data-editor]._readonly{min-height:auto}:host ::ng-deep [data-editor]._readonly .codex-editor{margin:auto}:host ::ng-deep [data-editor]._readonly .codex-editor__redactor{padding-bottom:0!important}:host ::ng-deep [data-editor]._readonly .combined-text-block{padding:0}:host ::ng-deep [data-editor] [data-item-name=move-up],:host ::ng-deep [data-editor] [data-item-name=move-down],:host ::ng-deep [data-editor] [data-tool=paragraph]{display:none}:host ::ng-deep [data-editor] *::selection{background:var(--cui-base-200)}:host ::ng-deep [data-editor] a{color:var(--cui-light-blue-600)}:host ::ng-deep .marker{cursor:pointer;text-decoration:underline;color:var(--cui-light-blue-600);background-color:transparent}:host ::ng-deep .tool-marker,:host ::ng-deep .role-marker{margin:0 5px}:host ::ng-deep .tool-marker{color:var(--cui-warning)}:host ::ng-deep .role-marker{color:var(--cui-info)}.editor-end{margin-top:-150px;height:150px;pointer-events:none}.form{height:100%}\n"] }]
|
|
8882
8964
|
}], ctorParameters: () => [] });
|
|
8883
8965
|
|
|
8884
8966
|
class EditorResizeObserverDirective {
|
|
@@ -13983,5 +14065,5 @@ const CuiTranslations = {
|
|
|
13983
14065
|
* Generated bundle index. Do not edit.
|
|
13984
14066
|
*/
|
|
13985
14067
|
|
|
13986
|
-
export { AlertHintComponent, AngularOutsideLoaderService, AssigneeRoleItemComponent, AssigneeRolesTabsComponent, ButtonChangeThemeComponent, CUI_ACTIVITY_SERVICE_TOKEN, CUI_ALERTS, CUI_ALERT_CONTEXT, CUI_ALERT_DEFAULT_OPTIONS, CUI_ALERT_OPTIONS, CUI_ANIMATIONS_DEFAULT_DURATION, CUI_BADGE_DEFAULT_OPTIONS, CUI_BADGE_OPTIONS, CUI_BANNER_DEFAULT_OPTIONS, CUI_BANNER_OPTIONS, CUI_BUTTON_DEFAULT_OPTIONS, CUI_BUTTON_OPTIONS, CUI_CATEGORIES_TREE_DATA_SOURCE_SERVICE_TOKEN, CUI_DEFAULT_THEME, CUI_DIALOGS, CUI_DIALOG_CONTEXT, CUI_DIALOG_DEFAULT_OPTIONS, CUI_DIALOG_OPTIONS, CUI_FILTER_BAR_DEFAULT_TRANSLATIONS, CUI_INPUT_TIME_DEFAULT_OPTIONS, CUI_INPUT_TIME_OPTIONS, CUI_NOTIFICATION_DEFAULT_OPTIONS, CUI_NOTIFICATION_ICONS, CUI_NOTIFICATION_ICON_OPTIONS, CUI_NOTIFICATION_ICON_OPTIONS_DEFAULT_MODE, CUI_NOTIFICATION_ICON_OPTIONS_LIGHT_MODE, CUI_NOTIFICATION_OPTIONS, CUI_RESOURCE_STATE_SERVICE_TOKEN, CUI_ROOT_SELECTOR, CUI_STORAGE_LIST_SERVICE_TOKEN, CUI_SUBJECT_MODAL_SERVICE_TOKEN, CUI_TABS_SERVICE_TOKEN, CUI_TEXT_FIELD_CONTROLLER, CUI_TEXT_FIELD_ICON_LEFT, CUI_TEXT_FIELD_ID, CUI_TEXT_FIELD_IS_ERROR, CUI_TEXT_FIELD_PLACEHOLDER, CUI_TEXT_FIELD_SIZE, CUI_TEXT_FILED_CONTROLLER_PROVIDER, CUI_THEME, CUI_THEME_STORAGE_DEFAULT_KEY, CUI_THEME_STORAGE_KEY, CUI_TOOLTIP_COMPONENT, CUI_TOOLTIP_DEFAULT_OPTIONS, CUI_TOOLTIP_DIRECTIONS, CUI_TOOLTIP_OPTIONS, CUI_TOOLTIP_PROVIDERS, CUI_USED_ELEMENTS_SERVICE_TOKEN, CUI_UTILITY_SERVICE_TOKEN, ContentHeaderComponent, CuiAbstractTabsComponent, CuiAccessor, CuiAccordionComponent, CuiAccordionDirective, CuiAccordionItemComponent, CuiAccordionModule, CuiActivityBaseService, CuiActivityImplService, CuiAlertComponent, CuiAlertModule, CuiAlertService, CuiAlertsComponent, CuiAttachesTool, CuiAuthBase, CuiAuthService, CuiBadgeComponent, CuiBadgeModule, CuiBannerComponent, CuiBannerModule, CuiBreadcrumbComponent, CuiBreadcrumbsComponent, CuiBreadcrumbsModule, CuiBrowserLoginStrategyService, CuiButtonComponent, CuiButtonGroupComponent, CuiButtonGroupModule, CuiButtonModule, CuiCardWrapperComponent, CuiCategoriesComponent, CuiCategoriesTreeComponent, CuiCategoriesTreeListComponent, CuiCategoryTreeItemComponent, CuiCategoryTreeStateService, CuiCheckListBlockListItemActionCardComponent, CuiCheckListBlockListItemActionWithVerificationComponent, CuiCheckListBlockListItemActionWithoutVerificationComponent, CuiCheckListBlockListItemEvaluationComponent, CuiCheckListBlockListItemEvaluationCriteriaComponent, CuiCheckListBlockService, CuiCheckboxComponent, CuiCheckboxModule, CuiChecklistBlockComponent, CuiChecklistBlockListComponent, CuiChecklistBlockListItemContainerComponent, CuiChecklistBlockTitleControlComponent, CuiCircleLoaderComponent, CuiContentWrapperComponent, CuiContextMenuComponent, CuiContextMenuModule, CuiCriterionInfoComponent, CuiCriterionInfoFormComponent, CuiCriterionModalCreateComponent, CuiCriterionReadonlyInfoComponent, CuiDateRangeCalendarComponent, CuiDateRangeCalendarModule, CuiDeleteModalComponent, CuiDialogActionsComponent, CuiDialogComponent, CuiDialogHeaderComponent, CuiDialogModule, CuiDialogService, CuiDialogsComponent, CuiDriver, CuiDriverDirective, CuiDropdownDirective, CuiDropdownWrapperComponent, CuiEditorBlockComponent, CuiEditorComponent, CuiEditorModalComponent, CuiEditorReadonlyComponent, CuiEditorTranslations, CuiEmptyStateComponent, CuiFileIconComponent, CuiFileUploader, CuiFileUploaderStatus, CuiFilterBarComponent, CuiFilterBarModule, CuiFormFieldComponent, CuiFormFieldModule, CuiFramerPreviewComponent, CuiGeneralControlErrorHintComponent, CuiGhostInputComponent, CuiGlobalErrorHandler, CuiHeaderTool, CuiHintComponent, CuiHintModule, CuiHybridStorageService, CuiIconButtonComponent, CuiIconButtonModule, CuiImageTool, CuiInputModule, CuiInputNumberComponent, CuiInputNumberModule, CuiInputPasswordComponent, CuiInputPasswordModule, CuiInputTextComponent, CuiInputTimeComponent, CuiInputTimeModule, CuiInstructionInfoComponent, CuiInstructionInfoFormComponent, CuiInstructionModalCreateComponent, CuiInstructionReadonlyInfoComponent, CuiLabelComponent, CuiLabelModule, CuiLayoutComponent, CuiLetterBoxComponent, CuiLibTranslations, CuiLinearLoaderComponent, CuiLinkMarker, CuiListTool, CuiLoaderComponent, CuiLoaderService, CuiLoadingState, CuiNotificationComponent, CuiNotificationModule, CuiPositionAccessor, CuiPositionService, CuiPulseLoaderComponent, CuiRadioComponent, CuiRadioModule, CuiReadonlyCriterionModalComponent, CuiReadonlyInstructionModalComponent, CuiReadonlyUtilityModalComponent, CuiRectAccessor, CuiRenderDynamicComponentsComponent, CuiRenderDynamicComponentsService, CuiRoleMarker, CuiRootComponent, CuiRootModule, CuiSelectComponent, CuiSelectModalComponent, CuiSelectModalFolderComponent, CuiSelectModalSearchComponent, CuiSelectModalService, CuiSelectModule, CuiSelectedCategoryService, CuiSidebarContainerComponent, CuiSidebarHeaderComponent, CuiSidebarNavigationComponent, CuiSidebarNavigationContainerComponent, CuiSidebarNavigationItemComponent, CuiSidebarService, CuiSkeleton, CuiStatedLoaderComponent, CuiStorageListComponent, CuiSvgComponent, CuiSvgModule, CuiTabDirective, CuiTabsComponent, CuiTabsServiceImpl, CuiTextFieldController, CuiTextFieldControllerModule, CuiTextFieldIconLeftDirective, CuiTextFieldIdDirective, CuiTextFieldIsErrorDirective, CuiTextFieldPlaceholderDirective, CuiTextFieldSizeDirective, CuiTextareaComponent, CuiTextareaModule, CuiThemeService, CuiTimePipe, CuiToggleComponent, CuiToggleModule, CuiToolMarker, CuiTooltip, CuiTooltipComponent, CuiTooltipDescribe, CuiTooltipDirective, CuiTooltipDriver, CuiTooltipHost, CuiTooltipHover, CuiTooltipManual, CuiTooltipOptionsDirective, CuiTooltipOverflow, CuiTooltipPointer, CuiTooltipPosition, CuiTooltipService, CuiTooltipUnstyled, CuiTooltipUnstyledComponent, CuiTooltips, CuiTranslations, CuiTreeComponent, CuiUserActionContextMenuComponent, CuiUtilityModalComponent, CuiUtilityModalCreateComponent, CuiUtilityReadonlyThumbnailComponent, CuiUtilityThumbnailComponent, CuiVehicle, CuiVideoTool, CuiVisualViewportService, FileSizePipe, InsertedComponent, ModalDividedSectionComponent, ModalHeaderComponent, ModalHeaderInsertedButtonsComponent, ModalInfoTabComponent, ModalOperationPartComponent, ModalResourcesTabComponent, OptionsButtonComponent, RenderDynamicModalComponent, ResourceStateBaseService, ResourcesBlockComponent, ResourcesBlockPartComponent, ResourcesBlockTabsComponent$1 as ResourcesBlockTabsComponent, ResourcesOptionsComponent, SubjectModalBaseService, UTILITY_MODAL_SERVICE_TOKEN, UsedElementsBaseService, UtilityBaseService, UtilityInfoReadonlyComponent, createEditorTools, cuiAsDriver, cuiAsPositionAccessor, cuiAsRectAccessor, cuiAsVehicle, cuiAuthErrorInterceptor, cuiAuthInterceptor, cuiCheckAuthFailureEvent, cuiCheckFixedPosition, cuiCreateDefaultValidators, cuiErrorHandlerInterceptor, cuiFallbackAccessor, cuiGetDuration, cuiIsObscured, cuiLoaderInterceptor, cuiOverrideOptions, cuiPositionAccessorFor, cuiProvideAccessor, cuiProvideEditor, cuiRectAccessorFor, cuiRemoveSpaces, cuiReplace, cuiToAnimationOptions, cuiTooltipOptionsProvider, cuiXNdjsonInterceptor, handleError, openFileInBrowser, presetConfigToken, provideCuiAuth, provideCuiErrorHandler, provideCuiTabs, setLoading, sseStreamReaderInterceptor };
|
|
14068
|
+
export { AlertHintComponent, AngularOutsideLoaderService, AssigneeRoleItemComponent, AssigneeRolesTabsComponent, ButtonChangeThemeComponent, CUI_ACTIVITY_SERVICE_TOKEN, CUI_ALERTS, CUI_ALERT_CONTEXT, CUI_ALERT_DEFAULT_OPTIONS, CUI_ALERT_OPTIONS, CUI_ANIMATIONS_DEFAULT_DURATION, CUI_BADGE_DEFAULT_OPTIONS, CUI_BADGE_OPTIONS, CUI_BANNER_DEFAULT_OPTIONS, CUI_BANNER_OPTIONS, CUI_BUTTON_DEFAULT_OPTIONS, CUI_BUTTON_OPTIONS, CUI_CATEGORIES_TREE_DATA_SOURCE_SERVICE_TOKEN, CUI_DEFAULT_THEME, CUI_DIALOGS, CUI_DIALOG_CONTEXT, CUI_DIALOG_DEFAULT_OPTIONS, CUI_DIALOG_OPTIONS, CUI_FILTER_BAR_DEFAULT_TRANSLATIONS, CUI_INPUT_TIME_DEFAULT_OPTIONS, CUI_INPUT_TIME_OPTIONS, CUI_NOTIFICATION_DEFAULT_OPTIONS, CUI_NOTIFICATION_ICONS, CUI_NOTIFICATION_ICON_OPTIONS, CUI_NOTIFICATION_ICON_OPTIONS_DEFAULT_MODE, CUI_NOTIFICATION_ICON_OPTIONS_LIGHT_MODE, CUI_NOTIFICATION_OPTIONS, CUI_RESOURCE_STATE_SERVICE_TOKEN, CUI_ROOT_SELECTOR, CUI_STORAGE_LIST_SERVICE_TOKEN, CUI_SUBJECT_MODAL_SERVICE_TOKEN, CUI_TABS_SERVICE_TOKEN, CUI_TEXT_FIELD_CONTROLLER, CUI_TEXT_FIELD_ICON_LEFT, CUI_TEXT_FIELD_ID, CUI_TEXT_FIELD_IS_ERROR, CUI_TEXT_FIELD_PLACEHOLDER, CUI_TEXT_FIELD_SIZE, CUI_TEXT_FILED_CONTROLLER_PROVIDER, CUI_THEME, CUI_THEME_STORAGE_DEFAULT_KEY, CUI_THEME_STORAGE_KEY, CUI_TOOLTIP_COMPONENT, CUI_TOOLTIP_DEFAULT_OPTIONS, CUI_TOOLTIP_DIRECTIONS, CUI_TOOLTIP_OPTIONS, CUI_TOOLTIP_PROVIDERS, CUI_USED_ELEMENTS_SERVICE_TOKEN, CUI_UTILITY_SERVICE_TOKEN, ContentHeaderComponent, CuiAbstractTabsComponent, CuiAccessor, CuiAccordionComponent, CuiAccordionDirective, CuiAccordionItemComponent, CuiAccordionModule, CuiActivityBaseService, CuiActivityImplService, CuiAlertComponent, CuiAlertModule, CuiAlertService, CuiAlertsComponent, CuiAttachesTool, CuiAuthBase, CuiAuthService, CuiBadgeComponent, CuiBadgeModule, CuiBannerComponent, CuiBannerModule, CuiBreadcrumbComponent, CuiBreadcrumbsComponent, CuiBreadcrumbsModule, CuiBrowserLoginStrategyService, CuiButtonComponent, CuiButtonGroupComponent, CuiButtonGroupModule, CuiButtonModule, CuiCardWrapperComponent, CuiCategoriesComponent, CuiCategoriesTreeComponent, CuiCategoriesTreeListComponent, CuiCategoryTreeItemComponent, CuiCategoryTreeStateService, CuiCheckListBlockListItemActionCardComponent, CuiCheckListBlockListItemActionWithVerificationComponent, CuiCheckListBlockListItemActionWithoutVerificationComponent, CuiCheckListBlockListItemEvaluationComponent, CuiCheckListBlockListItemEvaluationCriteriaComponent, CuiCheckListBlockService, CuiCheckboxComponent, CuiCheckboxModule, CuiChecklistBlockComponent, CuiChecklistBlockListComponent, CuiChecklistBlockListItemContainerComponent, CuiChecklistBlockTitleControlComponent, CuiCircleLoaderComponent, CuiCollapsiblePanelComponent, CuiContentWrapperComponent, CuiContextMenuComponent, CuiContextMenuModule, CuiCriterionInfoComponent, CuiCriterionInfoFormComponent, CuiCriterionModalCreateComponent, CuiCriterionReadonlyInfoComponent, CuiDateRangeCalendarComponent, CuiDateRangeCalendarModule, CuiDeleteModalComponent, CuiDialogActionsComponent, CuiDialogComponent, CuiDialogHeaderComponent, CuiDialogModule, CuiDialogService, CuiDialogsComponent, CuiDriver, CuiDriverDirective, CuiDropdownDirective, CuiDropdownWrapperComponent, CuiEditorBlockComponent, CuiEditorComponent, CuiEditorModalComponent, CuiEditorReadonlyComponent, CuiEditorTranslations, CuiEmptyStateComponent, CuiFileIconComponent, CuiFileUploader, CuiFileUploaderStatus, CuiFilterBarComponent, CuiFilterBarModule, CuiFormFieldComponent, CuiFormFieldModule, CuiFramerPreviewComponent, CuiGeneralControlErrorHintComponent, CuiGhostInputComponent, CuiGlobalErrorHandler, CuiHeaderTool, CuiHintComponent, CuiHintModule, CuiHybridStorageService, CuiIconButtonComponent, CuiIconButtonModule, CuiImageTool, CuiInputModule, CuiInputNumberComponent, CuiInputNumberModule, CuiInputPasswordComponent, CuiInputPasswordModule, CuiInputTextComponent, CuiInputTimeComponent, CuiInputTimeModule, CuiInstructionInfoComponent, CuiInstructionInfoFormComponent, CuiInstructionModalCreateComponent, CuiInstructionReadonlyInfoComponent, CuiLabelComponent, CuiLabelModule, CuiLayoutComponent, CuiLetterBoxComponent, CuiLibTranslations, CuiLinearLoaderComponent, CuiLinkMarker, CuiListTool, CuiLoaderComponent, CuiLoaderService, CuiLoadingState, CuiNotificationComponent, CuiNotificationModule, CuiPositionAccessor, CuiPositionService, CuiPulseLoaderComponent, CuiRadioComponent, CuiRadioModule, CuiReadonlyCriterionModalComponent, CuiReadonlyInstructionModalComponent, CuiReadonlyUtilityModalComponent, CuiRectAccessor, CuiRenderDynamicComponentsComponent, CuiRenderDynamicComponentsService, CuiRoleMarker, CuiRootComponent, CuiRootModule, CuiSelectComponent, CuiSelectModalComponent, CuiSelectModalFolderComponent, CuiSelectModalSearchComponent, CuiSelectModalService, CuiSelectModule, CuiSelectedCategoryService, CuiSidebarContainerComponent, CuiSidebarHeaderComponent, CuiSidebarNavigationComponent, CuiSidebarNavigationContainerComponent, CuiSidebarNavigationItemComponent, CuiSidebarService, CuiSkeleton, CuiStatedLoaderComponent, CuiStorageListComponent, CuiSvgComponent, CuiSvgModule, CuiTabDirective, CuiTabsComponent, CuiTabsServiceImpl, CuiTextFieldController, CuiTextFieldControllerModule, CuiTextFieldIconLeftDirective, CuiTextFieldIdDirective, CuiTextFieldIsErrorDirective, CuiTextFieldPlaceholderDirective, CuiTextFieldSizeDirective, CuiTextareaComponent, CuiTextareaModule, CuiThemeService, CuiTimePipe, CuiToggleComponent, CuiToggleModule, CuiToolMarker, CuiTooltip, CuiTooltipComponent, CuiTooltipDescribe, CuiTooltipDirective, CuiTooltipDriver, CuiTooltipHost, CuiTooltipHover, CuiTooltipManual, CuiTooltipOptionsDirective, CuiTooltipOverflow, CuiTooltipPointer, CuiTooltipPosition, CuiTooltipService, CuiTooltipUnstyled, CuiTooltipUnstyledComponent, CuiTooltips, CuiTranslations, CuiTreeComponent, CuiUserActionContextMenuComponent, CuiUtilityModalComponent, CuiUtilityModalCreateComponent, CuiUtilityReadonlyThumbnailComponent, CuiUtilityThumbnailComponent, CuiVehicle, CuiVideoTool, CuiVisualViewportService, FileSizePipe, InsertedComponent, ModalDividedSectionComponent, ModalHeaderComponent, ModalHeaderInsertedButtonsComponent, ModalInfoTabComponent, ModalOperationPartComponent, ModalResourcesTabComponent, OptionsButtonComponent, RenderDynamicModalComponent, ResourceStateBaseService, ResourcesBlockComponent, ResourcesBlockPartComponent, ResourcesBlockTabsComponent$1 as ResourcesBlockTabsComponent, ResourcesOptionsComponent, SubjectModalBaseService, UTILITY_MODAL_SERVICE_TOKEN, UsedElementsBaseService, UtilityBaseService, UtilityInfoReadonlyComponent, createEditorTools, cuiAsDriver, cuiAsPositionAccessor, cuiAsRectAccessor, cuiAsVehicle, cuiAuthErrorInterceptor, cuiAuthInterceptor, cuiCheckAuthFailureEvent, cuiCheckFixedPosition, cuiCreateDefaultValidators, cuiErrorHandlerInterceptor, cuiFallbackAccessor, cuiGetDuration, cuiIsObscured, cuiLoaderInterceptor, cuiOverrideOptions, cuiPositionAccessorFor, cuiProvideAccessor, cuiProvideEditor, cuiRectAccessorFor, cuiRemoveSpaces, cuiReplace, cuiToAnimationOptions, cuiTooltipOptionsProvider, cuiXNdjsonInterceptor, handleError, openFileInBrowser, presetConfigToken, provideCuiAuth, provideCuiErrorHandler, provideCuiTabs, setLoading, sseStreamReaderInterceptor };
|
|
13987
14069
|
//# sourceMappingURL=cuby-ui-core.mjs.map
|