@alauda/ui 6.4.1-beta.7 → 6.4.1
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/autocomplete/autocomplete.directive.d.ts +1 -1
- package/esm2020/accordion/accordion-item/accordion-item.component.mjs +2 -2
- package/esm2020/anchor/anchor.component.mjs +2 -3
- package/esm2020/anchor/anchor.directive.mjs +2 -3
- package/esm2020/autocomplete/autocomplete.component.mjs +9 -6
- package/esm2020/autocomplete/autocomplete.directive.mjs +3 -4
- package/esm2020/autocomplete/suggestion/suggestion.component.mjs +5 -6
- package/esm2020/autocomplete/suggestion-group/suggestion-group.component.mjs +4 -4
- package/esm2020/back-top/back-top.component.mjs +2 -3
- package/esm2020/breadcrumb/breadcrumb-item.component.mjs +2 -2
- package/esm2020/checkbox/checkbox.component.mjs +2 -3
- package/esm2020/dialog/confirm-dialog/confirm-dialog.component.mjs +3 -4
- package/esm2020/drawer/component/drawer.component.mjs +2 -3
- package/esm2020/drawer/drawer.service.mjs +2 -3
- package/esm2020/dropdown/dropdown.directive.mjs +2 -2
- package/esm2020/form/form-item/form-item.component.mjs +4 -4
- package/esm2020/form/form.directive.mjs +2 -3
- package/esm2020/icon/icon-register.service.mjs +8 -5
- package/esm2020/input/autosize.directive.mjs +2 -3
- package/esm2020/radio/base-radio.mjs +2 -3
- package/esm2020/radio/radio-button/radio-button.component.mjs +2 -2
- package/esm2020/radio/radio-group/radio-group.component.mjs +2 -3
- package/esm2020/scrolling/fixed-size-table-virtual-scroll-strategy.mjs +2 -3
- package/esm2020/scrolling/fixed-size-table-virtual-scroll.directive.mjs +2 -3
- package/esm2020/select/base-select.mjs +7 -8
- package/esm2020/select/multi-select/multi-select.component.mjs +5 -6
- package/esm2020/select/option/option.component.mjs +5 -6
- package/esm2020/select/option-group/option-group.component.mjs +4 -4
- package/esm2020/select/select.component.mjs +5 -6
- package/esm2020/steps/steps.component.mjs +2 -3
- package/esm2020/table/table-scroll.directive.mjs +2 -3
- package/esm2020/table-of-contents/toc-container.directive.mjs +2 -3
- package/esm2020/tabs/tab-context.service.mjs +2 -3
- package/esm2020/tabs/tab-header.component.mjs +2 -3
- package/esm2020/theme/theme.pipe.mjs +2 -3
- package/esm2020/theme/theme.service.mjs +2 -3
- package/esm2020/tooltip/base-tooltip.mjs +2 -3
- package/esm2020/tooltip/tooltip.component.mjs +7 -8
- package/esm2020/tree-select/tree-select.component.mjs +6 -6
- package/esm2020/utils/index.mjs +2 -1
- package/esm2020/utils/operators.mjs +12 -0
- package/esm2020/utils/watch-content-exist.mjs +4 -3
- package/fesm2015/alauda-ui.mjs +70 -54
- package/fesm2015/alauda-ui.mjs.map +1 -1
- package/fesm2020/alauda-ui.mjs +70 -54
- package/fesm2020/alauda-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/utils/index.d.ts +1 -0
- package/utils/operators.d.ts +8 -0
package/fesm2015/alauda-ui.mjs
CHANGED
|
@@ -5,8 +5,7 @@ import * as i2 from '@angular/common';
|
|
|
5
5
|
import { DOCUMENT, CommonModule } from '@angular/common';
|
|
6
6
|
import * as i2$1 from '@angular/cdk/a11y';
|
|
7
7
|
import { FocusKeyManager, A11yModule } from '@angular/cdk/a11y';
|
|
8
|
-
import { Observable,
|
|
9
|
-
import { startWith, map, publishReplay, refCount, distinctUntilChanged, takeUntil, filter, take, debounceTime, switchMap, tap, throttleTime, first, observeOn, repeat, takeWhile, endWith } from 'rxjs/operators';
|
|
8
|
+
import { Observable, pipe, publishReplay, refCount, startWith, map, ReplaySubject, distinctUntilChanged, Subject, takeUntil, filter, take, merge, fromEvent, combineLatest, debounceTime, switchMap, of, EMPTY, tap, BehaviorSubject, withLatestFrom, throttleTime, pluck, firstValueFrom, observeOn, animationFrameScheduler, repeat, takeWhile, endWith, Subscription } from 'rxjs';
|
|
10
9
|
import * as i1 from '@angular/common/http';
|
|
11
10
|
import { HttpClient } from '@angular/common/http';
|
|
12
11
|
import { trigger, state, style, transition, animate } from '@angular/animations';
|
|
@@ -186,6 +185,17 @@ const observeMutationOn = (target, options) => new Observable(observer => {
|
|
|
186
185
|
return () => mutationObserver.disconnect();
|
|
187
186
|
});
|
|
188
187
|
|
|
188
|
+
/**
|
|
189
|
+
* @see https://rxjs.dev/deprecations/multicasting#publishreplay
|
|
190
|
+
*
|
|
191
|
+
* FIXME:
|
|
192
|
+
* The recommended replacement is breaking our apps for watching resources,
|
|
193
|
+
* revert it back temporarily. see also https://github.com/ReactiveX/rxjs/discussions/6438
|
|
194
|
+
*/
|
|
195
|
+
const publishRef = (bufferSize = 1, windowTime) =>
|
|
196
|
+
// eslint-disable-next-line sonar/deprecation
|
|
197
|
+
pipe(publishReplay(bufferSize, windowTime), refCount());
|
|
198
|
+
|
|
189
199
|
function scrollIntoView(container, selected) {
|
|
190
200
|
if (!selected) {
|
|
191
201
|
container.scrollTop = 0;
|
|
@@ -204,7 +214,7 @@ function scrollIntoView(container, selected) {
|
|
|
204
214
|
}
|
|
205
215
|
|
|
206
216
|
function watchContentExist(queryList) {
|
|
207
|
-
return queryList.changes.pipe(startWith(queryList), map((list) => !!list.length),
|
|
217
|
+
return queryList.changes.pipe(startWith(queryList), map((list) => !!list.length), publishRef());
|
|
208
218
|
}
|
|
209
219
|
|
|
210
220
|
const auiIcons = '<svg><symbol id="aui-icon-computer" viewBox="0 0 1024 1024"><path d="M896 128H128c-35.264 0-64 27.52-64 61.44v491.52c0 33.92 28.736 61.44 64 61.44h320v92.16H288a31.36 31.36 0 0 0-32 30.72V896h512v-30.72a31.36 31.36 0 0 0-32-30.72H576V742.4h320c35.392 0 64-27.52 64-61.44V189.44c0-33.92-28.608-61.44-64-61.44z m-416 552.96a31.36 31.36 0 0 1 32-30.72c17.728 0 32 13.76 32 30.72a31.36 31.36 0 0 1-32 30.72 31.36 31.36 0 0 1-32-30.72zM300.352 361.28l-24.32 108.736h-36.8l-45.44-159.872h36.8l26.88 103.552 24.64-103.552h36.48l24 103.552 27.264-103.552h73.92l26.88 103.552 24.64-103.552h36.48l24 103.552 27.264-103.552h73.92l26.88 103.552 24.64-103.552h36.48l24 103.552 27.52-103.552h37.504l-46.08 159.872h-36.48l-24.704-108.736-24.32 108.736H665.6l-45.12-159.232-45.76 159.232h-36.48l-24.704-108.736-24.32 108.736h-36.8L407.232 310.4l-45.76 159.552h-36.48l-24.704-108.736 0.064 0.064zM128.064 619.52V189.44h768v430.08H128h0.064z" ></path></symbol><symbol id="aui-icon-square_s" viewBox="0 0 1024 1024"><path d="M950.857143 0a73.142857 73.142857 0 0 1 73.142857 73.142857v877.714286a73.142857 73.142857 0 0 1-73.142857 73.142857H73.142857a73.142857 73.142857 0 0 1-73.142857-73.142857V73.142857a73.142857 73.142857 0 0 1 73.142857-73.142857h877.714286z m-182.857143 219.428571h-512a36.571429 36.571429 0 0 0-35.986286 29.988572L219.428571 256v512a36.571429 36.571429 0 0 0 29.988572 35.986286L256 804.571429h512a36.571429 36.571429 0 0 0 35.986286-29.988572L804.571429 768v-512a36.571429 36.571429 0 0 0-29.988572-35.986286L768 219.428571z" ></path></symbol><symbol id="aui-icon-close_small" viewBox="0 0 1024 1024"><path d="M597.333333 512l170.666667-170.666667a60.672 60.672 0 0 0 0-85.333333 60.672 60.672 0 0 0-85.333333 0L512 426.666667 341.333333 256a60.672 60.672 0 0 0-85.333333 0 60.672 60.672 0 0 0 0 85.333333l170.666667 170.666667-170.666667 170.666667a60.672 60.672 0 0 0 0 85.333333 60.672 60.672 0 0 0 85.333333 0l170.666667-170.666667 170.666667 170.666667a60.672 60.672 0 0 0 85.333333 0 60.672 60.672 0 0 0 0-85.333333L597.333333 512z" ></path></symbol><symbol id="aui-icon-close" viewBox="0 0 1024 1024"><path d="M597.333 512l341.334-341.333a60.672 60.672 0 0 0 0-85.334 60.672 60.672 0 0 0-85.334 0L512 426.667 170.667 85.333a60.672 60.672 0 0 0-85.334 0 60.672 60.672 0 0 0 0 85.334L426.667 512 85.333 853.333a60.672 60.672 0 0 0 0 85.334 60.672 60.672 0 0 0 85.334 0L512 597.333l341.333 341.334a60.672 60.672 0 0 0 85.334 0 60.672 60.672 0 0 0 0-85.334L597.333 512z" ></path></symbol><symbol id="aui-icon-arrow" viewBox="0 0 1024 1024"><path d="M700.352 180.16l301.696 301.696a42.56 42.56 0 0 1 0 60.288l-301.696 301.696a42.688 42.688 0 1 1-60.352-60.288l228.8-228.928H52.16a42.688 42.688 0 0 1 0-85.312h816.64L640 240.448a42.688 42.688 0 0 1 60.352-60.288z" ></path></symbol><symbol id="aui-icon-time" viewBox="0 0 1024 1024"><path d="M567.678 277.319v278.584a20.735 20.735 0 0 1-5.951 15.36 20.735 20.735 0 0 1-15.36 5.951h-192.25a20.735 20.735 0 0 1-15.36-6.016 20.735 20.735 0 0 1-5.952-15.36V523.2c0-6.208 1.984-11.328 6.016-15.36a20.735 20.735 0 0 1 15.36-5.952h145.915v-224.57c0-6.207 1.92-11.327 5.952-15.359a20.735 20.735 0 0 1 15.36-5.952h24.959c6.208 0 11.328 1.984 15.36 6.016a20.735 20.735 0 0 1 6.015 15.36z m318.327 451.443A422.26 422.26 0 0 0 943.988 512a422.26 422.26 0 0 0-57.983-216.762 430.644 430.644 0 0 0-157.243-157.243A422.26 422.26 0 0 0 512 80.012a422.26 422.26 0 0 0-216.762 57.983 430.644 430.644 0 0 0-157.243 157.243A422.26 422.26 0 0 0 80.012 512c0 78.334 19.328 150.588 57.983 216.762a430.644 430.644 0 0 0 157.243 157.243A422.26 422.26 0 0 0 512 943.988a422.26 422.26 0 0 0 216.762-57.983 430.644 430.644 0 0 0 157.243-157.243z m69.31-473.395A499.058 499.058 0 0 1 1023.985 512c0 92.861-22.911 178.555-68.67 257.017a509.681 509.681 0 0 1-186.298 186.298A500.85 500.85 0 0 1 512 1023.985a500.85 500.85 0 0 1-257.017-68.67A509.681 509.681 0 0 1 68.685 769.017 500.85 500.85 0 0 1 0.015 512c0-92.861 22.911-178.555 68.67-257.017A509.681 509.681 0 0 1 254.983 68.685 500.85 500.85 0 0 1 512 0.015c92.861 0 178.555 22.911 257.017 68.67a508.913 508.913 0 0 1 186.298 186.682z" ></path></symbol><symbol id="aui-icon-calendar" viewBox="0 0 1024 1024"><path d="M332.8 25.6L332.736 128h358.4L691.2 25.6H768L767.936 128H947.2v870.4H76.8V128h179.136L256 25.6h76.8zM255.936 209.6H158.4v707.2h707.2V209.6h-97.664L768 256h-76.8l-0.064-46.4h-358.4L332.8 256H256l-0.064-46.4zM704 601.6v76.8H320V601.6h384z m0-192v76.8H320V409.6h384z" ></path></symbol><symbol id="aui-icon-check_circle_s" viewBox="0 0 1024 1024"><path d="M512 1024A512 512 0 1 1 512 0a512 512 0 0 1 0 1024zM248 536l192 192 336-336L704 320 440 584 320 464 248 536z" ></path></symbol><symbol id="aui-icon-close_circle_small_s" viewBox="0 0 1024 1024"><path d="M512 1024A512 512 0 1 1 512 0a512 512 0 0 1 0 1024z m85.333333-512l170.666667-170.666667a60.672 60.672 0 0 0 0-85.333333 60.672 60.672 0 0 0-85.333333 0L512 426.666667 341.333333 256a60.672 60.672 0 0 0-85.333333 0 60.672 60.672 0 0 0 0 85.333333l170.666667 170.666667-170.666667 170.666667a60.672 60.672 0 0 0 0 85.333333 60.672 60.672 0 0 0 85.333333 0l170.666667-170.666667 170.666667 170.666667a60.672 60.672 0 0 0 85.333333 0 60.672 60.672 0 0 0 0-85.333333L597.333333 512z" ></path></symbol><symbol id="aui-icon-angle_down" viewBox="0 0 1024 1024"><path d="M512 678.4a38.4 38.4 0 0 1-27.136-11.264l-256-256a38.272 38.272 0 0 1 0-54.272 38.272 38.272 0 0 1 54.272 0L512 585.664l228.864-228.8a38.272 38.272 0 0 1 54.272 0 38.272 38.272 0 0 1 0 54.272l-256 256A38.4 38.4 0 0 1 512 678.4" ></path></symbol><symbol id="aui-icon-angle_double_left" viewBox="0 0 1024 1024"><path d="M568.64 749.44a19.776 19.776 0 0 1-5.696 13.12l-28.544 28.544a19.584 19.584 0 0 1-13.12 5.696 19.776 19.776 0 0 1-13.12-5.696L241.856 524.8a19.584 19.584 0 0 1-5.696-13.12c0-4.544 2.304-9.728 5.696-13.12L508.16 232.256a19.584 19.584 0 0 1 13.12-5.696c4.544 0 9.728 2.304 13.12 5.696l28.544 28.544a19.584 19.584 0 0 1 5.696 13.12 19.776 19.776 0 0 1-5.696 13.12L338.368 511.616l224.576 224.576a19.584 19.584 0 0 1 5.696 13.12v0.128z m219.456 0a19.776 19.776 0 0 1-5.696 13.12l-28.544 28.544a19.584 19.584 0 0 1-13.12 5.696 19.776 19.776 0 0 1-13.12-5.696L461.312 524.8a19.584 19.584 0 0 1-5.696-13.12c0-4.544 2.304-9.728 5.696-13.12l266.304-266.304a19.584 19.584 0 0 1 13.12-5.696c4.544 0 9.728 2.304 13.12 5.696l28.544 28.544a19.584 19.584 0 0 1 5.696 13.12 19.776 19.776 0 0 1-5.696 13.12L557.824 511.616l224.576 224.576a19.584 19.584 0 0 1 5.696 13.12v0.128z" ></path></symbol><symbol id="aui-icon-angle_double_right" viewBox="0 0 1024 1024"><path d="M568.64 511.552a19.776 19.776 0 0 1-5.696 13.12l-266.304 266.304a19.584 19.584 0 0 1-13.12 5.696 19.776 19.776 0 0 1-13.12-5.696l-28.544-28.544a19.584 19.584 0 0 1-5.696-13.12c0-4.544 2.304-9.728 5.696-13.12l224.576-224.576-224.576-224.576a19.584 19.584 0 0 1-5.696-13.12c0-4.544 2.304-9.728 5.696-13.12l28.544-28.544a19.584 19.584 0 0 1 13.12-5.696c4.544 0 9.728 2.304 13.12 5.696L562.944 498.56a19.584 19.584 0 0 1 5.696 13.12v-0.128z m219.392 0a19.776 19.776 0 0 1-5.696 13.12l-266.304 266.304a19.584 19.584 0 0 1-13.12 5.696 19.776 19.776 0 0 1-13.12-5.696l-28.544-28.544a19.584 19.584 0 0 1-5.696-13.12c0-4.544 2.304-9.728 5.696-13.12l224.576-224.576-224.576-224.576a19.584 19.584 0 0 1-5.696-13.12c0-4.544 2.304-9.728 5.696-13.12l28.544-28.544a19.584 19.584 0 0 1 13.12-5.696c4.544 0 9.728 2.304 13.12 5.696l266.304 266.304a19.584 19.584 0 0 1 5.696 13.12v-0.128z" ></path></symbol><symbol id="aui-icon-caret_down_s" viewBox="0 0 1024 1024"><path d="M269.248 384h485.504a32 32 0 0 1 22.592 54.656l-242.688 242.688a32 32 0 0 1-45.312 0L246.656 438.656A32 32 0 0 1 269.248 384z" ></path></symbol><symbol id="aui-icon-angle_left" viewBox="0 0 1024 1024"><path d="M345.6 512a38.4 38.4 0 0 1 11.264-27.136l256-256a38.272 38.272 0 0 1 54.272 0 38.272 38.272 0 0 1 0 54.272L438.336 512l228.8 228.864a38.272 38.272 0 0 1 0 54.272 38.272 38.272 0 0 1-54.272 0l-256-256A38.4 38.4 0 0 1 345.6 512" ></path></symbol><symbol id="aui-icon-check_triangle_s" viewBox="0 0 1024 1024"><path d="M1024 1024H0L1024 0v1024z m-544-288L640 896l256-256-64-64-192 192-96-96-64 64z" ></path></symbol><symbol id="aui-icon-check" viewBox="0 0 1024 1024"><path d="M974.656 224.96c11.552 12.064 17.344 26.72 17.344 43.968s-5.792 31.904-17.344 43.968L442.016 868.864c-11.552 12.064-25.6 18.112-42.112 18.112s-30.56-6.048-42.112-18.112L49.344 546.912C37.792 534.848 32 520.192 32 502.944s5.792-31.904 17.344-43.968l84.224-87.904c11.552-12.064 25.6-18.112 42.112-18.112s30.56 6.048 42.112 18.112l182.08 190.72L806.176 137.056c11.552-12.064 25.6-18.112 42.112-18.112s30.56 6.048 42.112 18.112l84.224 87.904z" ></path></symbol><symbol id="aui-icon-ellipsis_h_s" viewBox="0 0 1024 1024"><path d="M192 416a96 96 0 1 1 0 192 96 96 0 0 1 0-192z m320 0a96 96 0 1 1 0 192 96 96 0 0 1 0-192z m320 0a96 96 0 1 1 0 192 96 96 0 0 1 0-192z" ></path></symbol><symbol id="aui-icon-exclamation_circle_s" viewBox="0 0 1024 1024"><path d="M512 0c282.688 0 512 229.312 512 512s-229.312 512-512 512-512-229.312-512-512 229.312-512 512-512z m85.312 831.36v-126.72c0-11.968-9.344-21.952-20.672-21.952h-128a22.208 22.208 0 0 0-21.952 21.952v126.72c0 11.968 9.984 21.952 21.952 21.952h128c11.392 0 20.672-9.984 20.672-21.952z m-1.28-229.376L608 187.968a13.376 13.376 0 0 0-6.656-11.968 25.664 25.664 0 0 0-16-5.312H438.656a25.664 25.664 0 0 0-16 5.312 13.376 13.376 0 0 0-6.656 12.032l11.328 413.952c0 9.344 9.984 16.64 22.656 16.64h123.328c12.032 0 22.016-7.296 22.656-16.64z" ></path></symbol><symbol id="aui-icon-check_s" viewBox="0 0 1024 1024"><path d="M169.024 534.976L247.04 456.96a12.8 12.8 0 0 1 18.048 0L416 608l342.976-342.976a12.8 12.8 0 0 1 18.048 0L855.04 343.04a12.8 12.8 0 0 1 0 18.048L424.96 791.04a12.8 12.8 0 0 1-18.048 0L168.96 552.96a12.8 12.8 0 0 1 0-18.048z" ></path></symbol><symbol id="aui-icon-compress_s" viewBox="0 0 1024 1024"><path d="M512 549.952v265.856c0 10.24-3.776 19.2-11.264 26.688a36.48 36.48 0 0 1-26.688 11.264 36.48 36.48 0 0 1-26.752-11.264L361.856 757.12l-196.992 196.992a18.752 18.752 0 0 1-27.264 0L69.952 886.4a18.752 18.752 0 0 1 0-27.264l196.992-196.992L181.504 576.64a36.48 36.48 0 0 1-11.264-26.752c0-10.24 3.712-19.2 11.264-26.688A36.48 36.48 0 0 1 208.192 512h265.856c10.24 0 19.2 3.776 26.688 11.264A36.48 36.48 0 0 1 512 549.952z m442.048-412.352a18.752 18.752 0 0 1 0 27.264L757.12 361.856l85.44 85.44a36.48 36.48 0 0 1 11.264 26.752c0 10.24-3.712 19.2-11.264 26.688a36.48 36.48 0 0 1-26.688 11.264H549.952a36.48 36.48 0 0 1-26.688-11.264A36.48 36.48 0 0 1 512 474.048V208.192c0-10.24 3.776-19.2 11.264-26.688a36.48 36.48 0 0 1 26.688-11.264c10.304 0 19.2 3.712 26.752 11.264l85.44 85.44 196.992-196.992a18.752 18.752 0 0 1 27.264 0l67.648 67.648z" ></path></symbol><symbol id="aui-icon-angle_right" viewBox="0 0 1024 1024"><path d="M678.4 512a38.4 38.4 0 0 1-11.264 27.136l-256 256a38.272 38.272 0 0 1-54.272 0 38.272 38.272 0 0 1 0-54.272L585.664 512 356.864 283.136a38.272 38.272 0 0 1 0-54.272 38.272 38.272 0 0 1 54.272 0l256 256A38.4 38.4 0 0 1 678.4 512" ></path></symbol><symbol id="aui-icon-export" viewBox="0 0 1024 1024"><path d="M729.6 624H448v-96h281.6V452.352a32 32 0 0 1 52.48-24.64l148.48 123.712a32 32 0 0 1 0 49.152l-148.48 123.712a32 32 0 0 1-52.48-24.64V624zM832 384h-64V128H128v768h640v-128h64v128a64 64 0 0 1-64 64H128a64 64 0 0 1-64-64V128a64 64 0 0 1 64-64h640a64 64 0 0 1 64 64v256z" ></path></symbol><symbol id="aui-icon-import" viewBox="0 0 1024 1024"><path d="M678.4 528H960v96h-281.6v75.648a32 32 0 0 1-52.48 24.64L477.44 600.576a32 32 0 0 1 0-49.152l148.48-123.712a32 32 0 0 1 52.48 24.64V528zM832 384h-64V128H128v768h640v-128h64v128a64 64 0 0 1-64 64H128a64 64 0 0 1-64-64V128a64 64 0 0 1 64-64h640a64 64 0 0 1 64 64v256z" ></path></symbol><symbol id="aui-icon-exclamation_triangle_s" viewBox="0 0 1024 1024"><path d="M585.152 849.792V741.12a18.56 18.56 0 0 0-18.304-18.88H457.152a18.56 18.56 0 0 0-18.304 18.88v108.608c0 10.24 8 18.88 18.304 18.88h109.696a18.56 18.56 0 0 0 18.304-18.88z m-1.152-213.76l10.24-262.272a13.824 13.824 0 0 0-5.632-10.88c-3.456-2.816-8.576-6.272-13.76-6.272H449.152c-5.12 0-10.24 3.456-13.696 6.272-3.968 2.88-5.76 8.576-5.76 12.032l9.792 261.12c0 7.488 8.576 13.184 19.392 13.184h105.728c10.304 0 18.88-5.76 19.456-13.12zM576 102.336l438.912 804.672a73.088 73.088 0 0 1-64 108.032H73.088c-25.664 0-49.664-13.76-62.848-36.032a72 72 0 0 1-1.152-72L448 102.272a72.704 72.704 0 0 1 128 0z" ></path></symbol><symbol id="aui-icon-expand_s" viewBox="0 0 1024 1024"><path d="M498.56 591.936a18.432 18.432 0 0 1 0 26.816l-193.664 193.664 84.032 84.032a35.84 35.84 0 0 1 11.072 26.24 35.84 35.84 0 0 1-11.072 26.24 35.84 35.84 0 0 1-26.24 11.072H101.312a35.84 35.84 0 0 1-26.24-11.072 35.84 35.84 0 0 1-11.072-26.24v-261.376a35.84 35.84 0 0 1 11.072-26.24 35.84 35.84 0 0 1 26.24-11.072 35.84 35.84 0 0 1 26.24 11.072l84.032 84.032L405.248 525.44a18.432 18.432 0 0 1 26.88 0L498.56 591.936zM960 101.312v261.376a35.84 35.84 0 0 1-11.072 26.24 35.84 35.84 0 0 1-26.24 11.072 35.84 35.84 0 0 1-26.24-11.072l-84.032-84.032L618.752 498.56a18.432 18.432 0 0 1-26.88 0L525.44 432.064a18.432 18.432 0 0 1 0-26.816l193.664-193.664-84.032-84.032a35.84 35.84 0 0 1-11.072-26.24 35.84 35.84 0 0 1 11.072-26.24 35.84 35.84 0 0 1 26.24-11.072h261.376a35.84 35.84 0 0 1 26.24 11.072 35.84 35.84 0 0 1 11.072 26.24z" ></path></symbol><symbol id="aui-icon-minus_s" viewBox="0 0 1024 1024"><path d="M256 448h512a64 64 0 0 1 0 128H256a64 64 0 0 1 0-128" ></path></symbol><symbol id="aui-icon-minus" viewBox="0 0 1024 1024"><path d="M904 448H120C86.4 448 64 470.4 64 504s22.4 56 56 56h784c33.6 0 56-22.4 56-56S937.6 448 904 448z" ></path></symbol><symbol id="aui-icon-info_circle_s" viewBox="0 0 1024 1024"><path d="M512 0a512 512 0 1 1 0 1024A512 512 0 0 1 512 0zM448 304v32c0 26.368 21.632 48 48 48h32c26.368 0 48-21.632 48-48v-32A48.192 48.192 0 0 0 528 256h-32a48.192 48.192 0 0 0-48 48zM640 768v-64H576V448H384v64h64v192H384v64h256z" ></path></symbol><symbol id="aui-icon-navigation_expand" viewBox="0 0 1024 1024"><path d="M512 192l256 320-256 320H448V192h64zM256 192h64v640H256V192z" ></path></symbol><symbol id="aui-icon-copy" viewBox="0 0 1024 1024"><path d="M742.848 865.728v40.768c0 29.44-25.088 53.504-55.936 53.504h-503.04C153.152 960 128 936 128 906.496V226.816c0-29.568 25.088-53.568 55.936-53.568h124.096v-40.96c0-37.76 29.824-68.288 66.624-68.288h271.36C784.192 64 896 178.56 896 320v477.44c0 37.76-29.824 68.288-66.624 68.288h-86.528z m0-51.2h86.528c9.152 0 16.64-7.616 16.64-17.024V319.936c0-113.088-89.536-204.8-199.936-204.8h-271.36c-9.28 0-16.704 7.68-16.704 17.088v41.024h192.768c128 127.744 192.064 192.768 192.064 195.008v446.272z m-52.608 95.104V388.864h-197.12V223.68H180.672v685.952h509.568zM533.44 347.52h126.912L533.504 223.488V347.52z" ></path></symbol><symbol id="aui-icon-plus" viewBox="0 0 1024 1024"><path d="M904 456h-336v-336C568 86.4 545.6 64 512 64s-56 22.4-56 56v336h-336C86.4 456 64 478.4 64 512s22.4 56 56 56h336v336c0 33.6 22.4 56 56 56s56-22.4 56-56v-336h336c33.6 0 56-22.4 56-56s-22.4-56-56-56z" ></path></symbol><symbol id="aui-icon-back_top" viewBox="0 0 1024 1024"><path d="M545.07353 181.552571a42.2855 42.2855 0 0 0-34.480914-12.346599l-0.511776 0.063972a37.551571 37.551571 0 0 0-1.471357 0.191916c-0.383832 0-0.703692 0.127944-1.023552 0.191916l-1.023552 0.127944a42.413444 42.413444 0 0 0-1.27944 0.319861l-0.63972 0.127944a37.103767 37.103767 0 0 0-1.471357 0.447804l-0.511776 0.127944a39.150871 39.150871 0 0 0-1.535328 0.511776l-0.447804 0.127944a43.820828 43.820828 0 0 0-1.535328 0.63972l-0.383833 0.063972a36.400075 36.400075 0 0 0-1.5993 0.703692l-0.255888 0.127944a44.460549 44.460549 0 0 0-1.663272 0.831636l-0.191916 0.127944a44.652465 44.652465 0 0 0-10.939214 8.316362L117.804461 551.502718a43.24508 43.24508 0 0 0 0 60.773411c16.632723 16.760667 43.692884 16.760667 60.325607 0l294.271256-296.510277v665.180984a42.861248 42.861248 0 0 0 42.541389 43.053164h-0.191916a42.733304 42.733304 0 0 0 42.477416-43.053164v-665.308928l294.463172 296.446305c16.632723 16.760667 43.692884 16.632723 60.325608-0.255888a42.989192 42.989192 0 0 0 0.063972-60.517523l-367.007435-369.758231zM991.790092 43.181108a42.60536 42.60536 0 0 0-42.477416-42.733304H74.687324C51.209596 0.447804 32.209908 19.575436 32.209908 43.181108c0 23.669645 18.999688 42.861248 42.477416 42.861248h874.625352c23.477728 0 42.477416-19.191604 42.477416-42.861248z" ></path></symbol><symbol id="aui-icon-moon" viewBox="0 0 1024 1024"><path d="M831.68 749.568c-21.952 3.456-44.224 5.248-66.944 5.248a414.592 414.592 0 0 1-204.992-52.48 396.16 396.16 0 0 1-148.992-142.848 372.224 372.224 0 0 1-54.784-196.48c0-74.56 21.12-144 63.296-208.064a381.44 381.44 0 0 0-199.872 133.504 352.256 352.256 0 0 0-77.504 223.872c0 50.496 10.304 98.752 30.976 144.832 20.672 46.08 48.384 85.696 83.072 118.912 34.624 33.28 76.032 59.776 124.096 79.616 48 19.84 98.432 29.696 151.104 29.696 58.432 0 113.92-11.968 166.4-35.84a386.24 386.24 0 0 0 134.144-99.968z m123.456-49.536c-38.144 78.848-95.616 141.888-172.48 189.12A471.424 471.424 0 0 1 531.2 960a471.552 471.552 0 0 1-181.248-35.584 473.088 473.088 0 0 1-149.056-95.552 451.008 451.008 0 0 1-99.712-142.848A420.032 420.032 0 0 1 64 512.32c0-59.52 11.648-116.352 35.008-170.56a442.112 442.112 0 0 1 94.848-140.8 465.856 465.856 0 0 1 143.232-95.872 481.472 481.472 0 0 1 176.448-39.936c17.856-0.768 30.208 6.784 37.12 22.72 7.296 16 4.224 29.952-9.152 41.984a310.912 310.912 0 0 0-80 105.792 301.952 301.952 0 0 0-27.648 127.36c0 57.6 14.784 110.592 44.416 159.168 29.568 48.64 69.76 87.04 120.384 115.456a334.272 334.272 0 0 0 166.08 42.56c47.872 0 94.08-9.92 138.688-29.76 16.64-6.976 31.232-4.48 43.776 7.616a35.648 35.648 0 0 1 10.688 19.84 36.032 36.032 0 0 1-2.752 22.144z" ></path></symbol><symbol id="aui-icon-navigation_collapse" viewBox="0 0 1024 1024"><path d="M512 832L256 512l256-320h64v640H512z m192-640h64v640h-64V192z" ></path></symbol><symbol id="aui-icon-sun" viewBox="0 0 1024 1024"><path d="M787.392 623.808c16-35.712 24.064-73.024 24.064-112 0-39.04-7.936-76.352-23.808-111.872a288.96 288.96 0 0 0-64.32-92.032A303.68 303.68 0 0 0 627.2 246.336a305.792 305.792 0 0 0-116.8-22.72c-40.768 0-79.744 7.552-116.864 22.72-37.12 15.168-69.12 35.712-96.192 61.568a288.96 288.96 0 0 0-64.256 92.032 271.296 271.296 0 0 0-23.808 111.808c0 39.04 7.936 76.288 23.808 111.808a288.96 288.96 0 0 0 64.256 92.032c27.008 25.856 59.072 46.4 96.192 61.568 37.12 15.168 76.096 22.784 116.864 22.784s79.68-7.616 116.8-22.784a303.68 303.68 0 0 0 96.192-61.568 286.272 286.272 0 0 0 64-91.776z m168.32 26.496c-1.408 5.056-4.864 8.32-10.432 10.048l-152.704 48v153.088a15.424 15.424 0 0 1-6.784 12.992c-5.184 3.328-10.24 4.032-15.168 2.048l-152.64-47.04-94.08 124.032a16.64 16.64 0 0 1-13.568 6.528 16.64 16.64 0 0 1-13.632-6.528l-94.08-124.032-152.64 47.04c-4.864 1.92-9.92 1.28-15.168-2.048a15.424 15.424 0 0 1-6.784-12.992v-153.088l-152.64-48c-5.568-1.664-9.088-4.992-10.432-10.048-1.792-5.632-1.088-10.496 2.048-14.464l94.08-124.096-94.08-124.032a15.36 15.36 0 0 1-2.048-14.528c1.344-4.992 4.864-8.32 10.432-10.048l152.64-48V162.048c0-5.312 2.24-9.664 6.784-12.992 5.248-3.328 10.24-4.032 15.168-1.984l152.64 46.976 94.08-124.032A16.256 16.256 0 0 1 510.336 64c5.888 0 10.432 1.984 13.568 6.016l94.08 124.032 152.64-46.976c4.928-2.048 9.984-1.344 15.168 1.92 4.544 3.392 6.784 7.68 6.784 13.056v153.088l152.704 48c5.568 1.728 9.024 5.056 10.432 10.048a15.36 15.36 0 0 1-2.112 14.528l-94.08 124.032 94.08 124.096c3.2 3.968 3.84 8.832 2.112 14.464z" ></path></symbol><symbol id="aui-icon-search_s" viewBox="0 0 1024 1024"><path d="M613.248 613.76c47.36-47.36 71.04-104.32 71.04-170.688 0-66.432-23.552-123.2-70.784-170.432-47.232-47.168-104-70.784-170.432-70.784-66.432 0-123.2 23.616-170.432 70.784-47.168 47.232-70.784 104-70.784 170.432 0 66.432 23.616 123.2 70.784 170.432 47.232 47.232 104 70.784 170.432 70.784A231.872 231.872 0 0 0 613.248 613.76zM960 891.072c0 18.688-6.848 34.816-20.48 48.448-13.632 13.632-29.76 20.48-48.448 20.48a64 64 0 0 1-48.448-20.48l-184.704-184.128a368.704 368.704 0 0 1-214.848 66.752 372.48 372.48 0 0 1-147.264-29.888 379.008 379.008 0 0 1-121.152-80.768 379.008 379.008 0 0 1-80.768-121.152A372.48 372.48 0 0 1 64 443.136c0-51.392 9.984-100.48 29.888-147.328a379.008 379.008 0 0 1 80.768-121.152c33.92-33.92 74.304-60.8 121.152-80.768A372.48 372.48 0 0 1 443.072 64c51.328 0 100.48 9.984 147.264 29.888a379.008 379.008 0 0 1 121.152 80.768c33.92 33.92 60.8 74.304 80.768 121.152a372.48 372.48 0 0 1 29.888 147.264 368.704 368.704 0 0 1-66.752 214.848l184.704 184.704c13.248 13.248 19.904 29.44 19.904 48.448z" ></path></symbol><symbol id="aui-icon-history_s" viewBox="0 0 1024 1024"><path d="M924.416 338.176A435.84 435.84 0 0 1 960 512a435.84 435.84 0 0 1-35.584 173.824 451.968 451.968 0 0 1-95.68 142.912 451.968 451.968 0 0 1-142.912 95.68A435.84 435.84 0 0 1 512 960a444.8 444.8 0 0 1-190.72-42.24 437.952 437.952 0 0 1-154.048-119.36 20.8 20.8 0 0 1-3.776-13.12 17.28 17.28 0 0 1 4.992-11.968l79.872-80.448a20.992 20.992 0 0 1 14.592-5.312c6.208 0.832 10.688 3.2 13.44 7.04a292.8 292.8 0 0 0 104.384 85.76A294.144 294.144 0 0 0 512 810.688c40.448 0 79.04-7.872 115.84-23.68a300.928 300.928 0 0 0 95.36-63.872c26.816-26.816 48.064-58.624 63.872-95.36 15.744-36.736 23.616-75.328 23.616-115.776 0-40.448-7.872-79.04-23.68-115.84A300.928 300.928 0 0 0 723.2 300.8a300.928 300.928 0 0 0-95.36-63.872A290.944 290.944 0 0 0 512 213.312c-38.08 0-74.688 6.912-109.696 20.736a289.792 289.792 0 0 0-93.312 59.2L388.928 373.76c12.032 11.648 14.72 25.088 8.128 40.256-6.592 15.552-18.048 23.296-34.368 23.296H101.312a35.84 35.84 0 0 1-26.24-11.072A35.84 35.84 0 0 1 64 400V138.688c0-16.384 7.808-27.84 23.36-34.432 15.168-6.592 28.544-3.84 40.192 8.192l75.84 75.2a452.8 452.8 0 0 1 142.656-91.264A439.424 439.424 0 0 1 512 64a435.84 435.84 0 0 1 173.824 35.584c55.232 23.68 102.848 55.616 142.912 95.68a451.968 451.968 0 0 1 95.68 142.912z m-337.728 5.824v261.312a18.176 18.176 0 0 1-5.248 13.44 18.176 18.176 0 0 1-13.44 5.248H381.312a18.176 18.176 0 0 1-13.44-5.248 18.176 18.176 0 0 1-5.184-13.44v-37.312c0-5.44 1.728-9.92 5.248-13.44a18.176 18.176 0 0 1 13.44-5.248H512V344c0-5.44 1.728-9.92 5.248-13.44a18.176 18.176 0 0 1 13.44-5.248h37.312c5.44 0 9.92 1.792 13.44 5.248a18.176 18.176 0 0 1 5.248 13.44z" ></path></symbol><symbol id="aui-icon-check_circle" viewBox="0 0 24 24"><path d="M12,0 C18.627417,0 24,5.372583 24,12 C24,18.627417 18.627417,24 12,24 C5.372583,24 0,18.627417 0,12 C0,5.372583 5.372583,0 12,0 Z M12,1 C5.92486775,1 1,5.92486775 1,12 C1,18.0751322 5.92486775,23 12,23 C18.0751322,23 23,18.0751322 23,12 C23,5.92486775 18.0751322,1 12,1 Z M16.5,8 L18,9.588 L11,17 L7,12.765 L8.5,11.176 L11,13.824 L16.5,8 Z"/></symbol><symbol id="aui-icon-sync_circle" viewBox="0 0 24 24"><path d="M11.5,-0.5 C18.127417,-0.5 23.5,4.872583 23.5,11.5 C23.5,18.127417 18.127417,23.5 11.5,23.5 C4.872583,23.5 -0.5,18.127417 -0.5,11.5 C-0.5,4.872583 4.872583,-0.5 11.5,-0.5 Z M11.5,0.5 C5.42486775,0.5 0.5,5.42486775 0.5,11.5 C0.5,17.5751322 5.42486775,22.5 11.5,22.5 C17.5751322,22.5 22.5,17.5751322 22.5,11.5 C22.5,5.42486775 17.5751322,0.5 11.5,0.5 Z M18.0455081,12.4032823 C18.2571452,12.4032823 18.4179194,12.5954153 18.3787702,12.8034113 C17.7680202,16.0465 14.9206008,18.5 11.5,18.5 C9.62445161,18.5 7.92122177,17.7622903 6.66449597,16.5613105 L5.65641129,17.5693952 C5.22966532,17.9961411 4.5,17.6938992 4.5,17.090375 L4.5,13.3064516 C4.5,12.9323185 4.80328629,12.6290323 5.17741935,12.6290323 L8.96134274,12.6290323 C9.56486694,12.6290323 9.86710887,13.3586976 9.4403629,13.7854718 L8.26193548,14.9638992 C9.14433065,15.7901532 10.2895363,16.2430645 11.5044032,16.2419637 C13.6895887,16.2399879 15.5778105,14.7419315 16.0991976,12.6615484 C16.1371331,12.5101734 16.271996,12.4032823 16.4280565,12.4032823 L18.0455081,12.4032823 Z M11.5,4.5 C13.3755484,4.5 15.0787782,5.23770968 16.335504,6.43868952 L17.3435887,5.43060484 C17.7703347,5.00385887 18.5,5.30610081 18.5,5.909625 L18.5,9.69354839 C18.5,10.0676814 18.1967137,10.3709677 17.8225806,10.3709677 L14.0386573,10.3709677 C13.4351331,10.3709677 13.1328911,9.64130242 13.5596371,9.21452823 L14.7380645,8.03612903 C13.8556694,7.20990323 12.7105484,6.75699194 11.4957097,6.75806452 C9.30939516,6.75998387 7.42193548,8.25905645 6.90080242,10.3385081 C6.86286694,10.4898831 6.72800403,10.5967742 6.57194355,10.5967742 L4.95452016,10.5967742 C4.74288306,10.5967742 4.58210887,10.4046411 4.62125806,10.1966452 C5.23197984,6.9535 8.07939919,4.5 11.5,4.5 Z" transform="translate(.5 .5)"></path></symbol><symbol id="aui-icon-close_circle" viewBox="0 0 24 24"><path d="M12,0 C18.627417,0 24,5.372583 24,12 C24,18.627417 18.627417,24 12,24 C5.372583,24 0,18.627417 0,12 C0,5.372583 5.372583,0 12,0 Z M12,1 C5.92486775,1 1,5.92486775 1,12 C1,18.0751322 5.92486775,23 12,23 C18.0751322,23 23,18.0751322 23,12 C23,5.92486775 18.0751322,1 12,1 Z M15.2301716,6.7 C15.4530454,6.7 15.6759193,6.78894965 15.8368282,6.94985857 L17.0501414,8.16317179 C17.2110503,8.32408071 17.3,8.54695455 17.3,8.7698284 C17.3,8.99270224 17.2110503,9.21557609 17.0501414,9.37648501 L14.4266264,12 L17.0501414,14.623515 C17.2110503,14.7844239 17.3,15.0072978 17.3,15.2301716 C17.3,15.4530454 17.2110503,15.6759193 17.0501414,15.8368282 L15.8368282,17.0501414 C15.6759193,17.2110503 15.4530454,17.3 15.2301716,17.3 C15.0072978,17.3 14.7844239,17.2110503 14.623515,17.0501414 L12,14.4266264 L9.37648501,17.0501414 C9.21557609,17.2110503 8.99270224,17.3 8.7698284,17.3 C8.54695455,17.3 8.32408071,17.2110503 8.16317179,17.0501414 L6.94985857,15.8368282 C6.78894965,15.6759193 6.7,15.4530454 6.7,15.2301716 C6.7,15.0072978 6.78894965,14.7844239 6.94985857,14.623515 L9.57337356,12 L6.94985857,9.37648501 C6.78894965,9.21557609 6.7,8.99270224 6.7,8.7698284 C6.7,8.54695455 6.78894965,8.32408071 6.94985857,8.16317179 L8.16317179,6.94985857 C8.32408071,6.78894965 8.54695455,6.7 8.7698284,6.7 C8.99270224,6.7 9.21557609,6.78894965 9.37648501,6.94985857 L12,9.57337356 L14.623515,6.94985857 C14.7844239,6.78894965 15.0072978,6.7 15.2301716,6.7 Z"></path></symbol><symbol id="aui-icon-sync_circle_s" viewBox="0 0 1024 1024"><path d="M512 1024A512 512 0 1 1 512 0a512 512 0 0 1 0 1024z m148.032-670.336l-53.888 53.888a30.976 30.976 0 0 0 21.888 52.864h172.992A30.976 30.976 0 0 0 832 429.44V256.448a30.976 30.976 0 0 0-52.864-21.888l-46.08 46.08a320.064 320.064 0 0 0-535.488 171.776 15.488 15.488 0 0 0 15.232 18.304H286.72a15.552 15.552 0 0 0 15.04-11.84 217.024 217.024 0 0 1 210.048-163.648c55.552 0 107.904 20.672 148.224 58.432z m-437.12 209.92A30.976 30.976 0 0 0 192 594.56v172.992c0 27.584 33.344 41.408 52.864 21.888l46.08-46.08a320.128 320.128 0 0 0 535.488-171.776 15.488 15.488 0 0 0-15.232-18.304H737.28a15.552 15.552 0 0 0-15.04 11.84 217.024 217.024 0 0 1-210.048 163.648 215.232 215.232 0 0 1-148.224-58.432l53.888-53.888a30.976 30.976 0 0 0-21.888-52.864H222.976z" ></path></symbol><symbol id="aui-icon-close_circle_s" viewBox="0 0 1024 1024"><path d="M512 0C229.12 0 0 229.12 0 512s229.12 512 512 512 512-229.12 512-512-229.12-512-512-512z m251.072 646.4a24.768 24.768 0 0 1 0 35.072l-81.792 81.6a24.768 24.768 0 0 1-35.072 0L512 627.584l-134.4 135.488a24.768 24.768 0 0 1-35.072 0l-81.6-81.792a24.768 24.768 0 0 1 0-35.072L396.416 512 260.928 377.6a24.768 24.768 0 0 1 0-35.072l81.792-81.792a24.768 24.768 0 0 1 35.072 0L512 396.416l134.4-135.488a24.768 24.768 0 0 1 35.072 0l81.792 81.792a24.768 24.768 0 0 1 0 35.072L627.584 512l135.488 134.4z" ></path></symbol></svg>';
|
|
@@ -237,10 +247,13 @@ class IconRegisterService {
|
|
|
237
247
|
.get(url, {
|
|
238
248
|
responseType: 'text',
|
|
239
249
|
})
|
|
240
|
-
.subscribe(
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
250
|
+
.subscribe({
|
|
251
|
+
next: res => {
|
|
252
|
+
this.registerSvgSymbolsByString(res);
|
|
253
|
+
},
|
|
254
|
+
error() {
|
|
255
|
+
throw getAuiIconFailedToLoadCustomIconFile(url);
|
|
256
|
+
},
|
|
244
257
|
});
|
|
245
258
|
}
|
|
246
259
|
registerSvgSymbolsByString(str) {
|
|
@@ -1125,14 +1138,14 @@ class SuggestionComponent {
|
|
|
1125
1138
|
this.value$$,
|
|
1126
1139
|
]).pipe(map(([inputValue, selfValue]) => inputValue === selfValue), tap(selected => {
|
|
1127
1140
|
this.selected = selected;
|
|
1128
|
-
}),
|
|
1141
|
+
}), publishRef());
|
|
1129
1142
|
this.visible$ = combineLatest([
|
|
1130
1143
|
this.autocomplete.directive$$.pipe(switchMap(directive => directive.filterFn$)),
|
|
1131
1144
|
this.autocomplete.directive$$.pipe(switchMap(directive => directive.inputValue$)),
|
|
1132
1145
|
this.value$$,
|
|
1133
1146
|
]).pipe(map(([filterFn, filterString, suggestion]) => filterFn(filterString, suggestion)), tap(visible => {
|
|
1134
1147
|
this.visible = visible;
|
|
1135
|
-
}),
|
|
1148
|
+
}), publishRef());
|
|
1136
1149
|
}
|
|
1137
1150
|
get value() {
|
|
1138
1151
|
return this._value;
|
|
@@ -1191,9 +1204,12 @@ class AutocompleteComponent {
|
|
|
1191
1204
|
ngAfterContentInit() {
|
|
1192
1205
|
this.hasVisibleSuggestion$ = this.suggestions.changes.pipe(startWith(this.suggestions), switchMap((suggestions) => suggestions.length > 0
|
|
1193
1206
|
? combineLatest(suggestions.map(suggestion => suggestion.visible$))
|
|
1194
|
-
: of([])), map(visible => visible.some(Boolean)),
|
|
1195
|
-
|
|
1196
|
-
|
|
1207
|
+
: of([])), map(visible => visible.some(Boolean)), withLatestFrom(this.directive$$), map(([hasVisibleSuggestion, directive]) => {
|
|
1208
|
+
if (hasVisibleSuggestion && directive.defaultFirstSuggestion) {
|
|
1209
|
+
directive.autoFocusFirstSuggestion();
|
|
1210
|
+
}
|
|
1211
|
+
return hasVisibleSuggestion;
|
|
1212
|
+
}), distinctUntilChanged(), debounceTime(0), tap(() => this.cdr.markForCheck()), publishRef());
|
|
1197
1213
|
this.hasContent$ = combineLatest([
|
|
1198
1214
|
this.hasVisibleSuggestion$,
|
|
1199
1215
|
this.placeholder.changes.pipe(startWith(this.placeholder), map((list) => !!list.length)),
|
|
@@ -1251,13 +1267,13 @@ class TooltipComponent {
|
|
|
1251
1267
|
return val;
|
|
1252
1268
|
}
|
|
1253
1269
|
return '';
|
|
1254
|
-
}),
|
|
1270
|
+
}), publishRef());
|
|
1255
1271
|
this.template$ = this.inputContent$.pipe(map(val => {
|
|
1256
1272
|
if (typeof val !== 'string') {
|
|
1257
1273
|
return val;
|
|
1258
1274
|
}
|
|
1259
1275
|
return null;
|
|
1260
|
-
}),
|
|
1276
|
+
}), publishRef());
|
|
1261
1277
|
this.class$ = combineLatest([
|
|
1262
1278
|
this.inputPosition$.pipe(startWith('top')),
|
|
1263
1279
|
this.inputType$.pipe(startWith(TooltipType.Default)),
|
|
@@ -1268,8 +1284,8 @@ class TooltipComponent {
|
|
|
1268
1284
|
return inputType === TooltipType.Plain
|
|
1269
1285
|
? `${b}--${dir} ${inputClass}`
|
|
1270
1286
|
: `${b} ${b}--${inputType} ${b}--${dir} ${inputClass}`;
|
|
1271
|
-
}),
|
|
1272
|
-
this.context$ = this.inputContext$.pipe(
|
|
1287
|
+
}), publishRef());
|
|
1288
|
+
this.context$ = this.inputContext$.pipe(publishRef());
|
|
1273
1289
|
}
|
|
1274
1290
|
}
|
|
1275
1291
|
TooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: TooltipComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1851,7 +1867,7 @@ class AutoCompleteDirective extends BaseTooltip {
|
|
|
1851
1867
|
ngAfterViewInit() {
|
|
1852
1868
|
const input = this.input;
|
|
1853
1869
|
merge(fromEvent(this.elRef.nativeElement, 'click'), fromEvent(input, 'focus'))
|
|
1854
|
-
.pipe(takeUntil(this.unsubscribe$))
|
|
1870
|
+
.pipe(debounceTime(0), takeUntil(this.unsubscribe$))
|
|
1855
1871
|
.subscribe(() => this.onFocus());
|
|
1856
1872
|
fromEvent(input, 'blur')
|
|
1857
1873
|
.pipe(takeUntil(this.unsubscribe$))
|
|
@@ -2075,7 +2091,7 @@ class SuggestionGroupComponent {
|
|
|
2075
2091
|
ngAfterContentInit() {
|
|
2076
2092
|
this.hasVisibleSuggestion$ = this.suggestions.changes.pipe(startWith(this.suggestions), switchMap((options) => options.length > 0
|
|
2077
2093
|
? combineLatest(options.map(node => node.visible$))
|
|
2078
|
-
: of([false])), map(visible => visible.some(Boolean)),
|
|
2094
|
+
: of([false])), map(visible => visible.some(Boolean)), publishRef());
|
|
2079
2095
|
}
|
|
2080
2096
|
}
|
|
2081
2097
|
SuggestionGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: SuggestionGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -2230,10 +2246,10 @@ class BreadcrumbItemComponent {
|
|
|
2230
2246
|
}
|
|
2231
2247
|
}
|
|
2232
2248
|
BreadcrumbItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: BreadcrumbItemComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
2233
|
-
BreadcrumbItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.2", type: BreadcrumbItemComponent, selector: "aui-breadcrumb-item", ngImport: i0, template: "<div class=\"aui-breadcrumb__item\">\n <span class=\"aui-breadcrumb__content\"><ng-content></ng-content></span>\n <span class=\"aui-breadcrumb__separator\">\n <ng-container *ngIf=\"!separatorIcon\">{{ separator }}</ng-container>\n <aui-icon\n *ngIf=\"separatorIcon\"\n [icon]=\"separatorIcon\"\n ></aui-icon>\n </span>\n</div>\n", styles: [".aui-breadcrumb__item{display:flex}.aui-breadcrumb__item .aui-breadcrumb__content{
|
|
2249
|
+
BreadcrumbItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.2", type: BreadcrumbItemComponent, selector: "aui-breadcrumb-item", ngImport: i0, template: "<div class=\"aui-breadcrumb__item\">\n <span class=\"aui-breadcrumb__content\"><ng-content></ng-content></span>\n <span class=\"aui-breadcrumb__separator\">\n <ng-container *ngIf=\"!separatorIcon\">{{ separator }}</ng-container>\n <aui-icon\n *ngIf=\"separatorIcon\"\n [icon]=\"separatorIcon\"\n ></aui-icon>\n </span>\n</div>\n", styles: [".aui-breadcrumb__item{display:flex}.aui-breadcrumb__item .aui-breadcrumb__content{max-width:224px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}\n"], components: [{ type: IconComponent, selector: "aui-icon", inputs: ["icon", "light", "dark", "link", "margin", "size", "color", "background", "backgroundColor"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
2234
2250
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: BreadcrumbItemComponent, decorators: [{
|
|
2235
2251
|
type: Component,
|
|
2236
|
-
args: [{ selector: 'aui-breadcrumb-item', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, preserveWhitespaces: false, template: "<div class=\"aui-breadcrumb__item\">\n <span class=\"aui-breadcrumb__content\"><ng-content></ng-content></span>\n <span class=\"aui-breadcrumb__separator\">\n <ng-container *ngIf=\"!separatorIcon\">{{ separator }}</ng-container>\n <aui-icon\n *ngIf=\"separatorIcon\"\n [icon]=\"separatorIcon\"\n ></aui-icon>\n </span>\n</div>\n", styles: [".aui-breadcrumb__item{display:flex}.aui-breadcrumb__item .aui-breadcrumb__content{
|
|
2252
|
+
args: [{ selector: 'aui-breadcrumb-item', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, preserveWhitespaces: false, template: "<div class=\"aui-breadcrumb__item\">\n <span class=\"aui-breadcrumb__content\"><ng-content></ng-content></span>\n <span class=\"aui-breadcrumb__separator\">\n <ng-container *ngIf=\"!separatorIcon\">{{ separator }}</ng-container>\n <aui-icon\n *ngIf=\"separatorIcon\"\n [icon]=\"separatorIcon\"\n ></aui-icon>\n </span>\n</div>\n", styles: [".aui-breadcrumb__item{display:flex}.aui-breadcrumb__item .aui-breadcrumb__content{max-width:224px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}\n"] }]
|
|
2237
2253
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; } });
|
|
2238
2254
|
|
|
2239
2255
|
class BreadcrumbComponent {
|
|
@@ -2662,25 +2678,25 @@ class FormItemComponent {
|
|
|
2662
2678
|
: '';
|
|
2663
2679
|
}
|
|
2664
2680
|
ngAfterContentInit() {
|
|
2665
|
-
this.hasError$ = this.ngControls.changes.pipe(startWith
|
|
2666
|
-
this.errorCount$ = this.errors.changes.pipe(map
|
|
2667
|
-
this.hintCount$ = this.hints.changes.pipe(map
|
|
2681
|
+
this.hasError$ = this.ngControls.changes.pipe(startWith(this.ngControls), switchMap((controls) => combineLatest(controls.map(control => this.mapControlStatus(control))).pipe(map(statuses => statuses.some(Boolean)))));
|
|
2682
|
+
this.errorCount$ = this.errors.changes.pipe(map(errors => errors.length), startWith(this.errors.length));
|
|
2683
|
+
this.hintCount$ = this.hints.changes.pipe(map(hints => hints.length), startWith(this.hints.length));
|
|
2668
2684
|
}
|
|
2669
2685
|
subscribeInputsFromParent() {
|
|
2670
2686
|
this.auiForm.labelWidth$
|
|
2671
|
-
.pipe(takeUntil
|
|
2687
|
+
.pipe(takeUntil(this.destroy$$))
|
|
2672
2688
|
.subscribe(width => {
|
|
2673
2689
|
this.labelWidth = width;
|
|
2674
2690
|
this.cdr.markForCheck();
|
|
2675
2691
|
});
|
|
2676
2692
|
this.auiForm.labelPosition$
|
|
2677
|
-
.pipe(takeUntil
|
|
2693
|
+
.pipe(takeUntil(this.destroy$$))
|
|
2678
2694
|
.subscribe(position => {
|
|
2679
2695
|
this.labelPosition = position;
|
|
2680
2696
|
this.cdr.markForCheck();
|
|
2681
2697
|
});
|
|
2682
2698
|
this.auiForm.emptyAddon$
|
|
2683
|
-
.pipe(takeUntil
|
|
2699
|
+
.pipe(takeUntil(this.destroy$$))
|
|
2684
2700
|
.subscribe(emptyAddon => {
|
|
2685
2701
|
this.emptyAddon = emptyAddon;
|
|
2686
2702
|
this.cdr.markForCheck();
|
|
@@ -2689,10 +2705,10 @@ class FormItemComponent {
|
|
|
2689
2705
|
mapControlStatus(control) {
|
|
2690
2706
|
return (this.parentForm
|
|
2691
2707
|
? combineLatest([
|
|
2692
|
-
control.statusChanges.pipe(startWith
|
|
2693
|
-
merge(this.parentForm.statusChanges.pipe(startWith
|
|
2694
|
-
]).pipe(map
|
|
2695
|
-
: control.statusChanges).pipe(map
|
|
2708
|
+
control.statusChanges.pipe(startWith(control.status)),
|
|
2709
|
+
merge(this.parentForm.statusChanges.pipe(startWith(this.parentForm.status)), this.parentForm.ngSubmit),
|
|
2710
|
+
]).pipe(map(([status]) => status))
|
|
2711
|
+
: control.statusChanges).pipe(map((status) => { var _a; return status === 'INVALID' && (control.dirty || ((_a = this.parentForm) === null || _a === void 0 ? void 0 : _a.submitted)); }), publishRef());
|
|
2696
2712
|
}
|
|
2697
2713
|
ngOnDestroy() {
|
|
2698
2714
|
this.destroy$$.next();
|
|
@@ -5023,7 +5039,7 @@ class TagsInputComponent extends CommonFormControl {
|
|
|
5023
5039
|
}
|
|
5024
5040
|
else if (this.inputControl.pending) {
|
|
5025
5041
|
// PENDING 后只会变为 VALID 或 INVALID 的决议状态
|
|
5026
|
-
this.inputControl.statusChanges.pipe(take
|
|
5042
|
+
this.inputControl.statusChanges.pipe(take(1)).subscribe(_ => {
|
|
5027
5043
|
this.syncControlStatus();
|
|
5028
5044
|
if (this.inputControl.valid) {
|
|
5029
5045
|
this.emitValue(this.model.concat(value));
|
|
@@ -5730,7 +5746,7 @@ class ConfirmDialogComponent {
|
|
|
5730
5746
|
}
|
|
5731
5747
|
const result = beforeAction();
|
|
5732
5748
|
if (result instanceof Observable) {
|
|
5733
|
-
return result
|
|
5749
|
+
return firstValueFrom(result);
|
|
5734
5750
|
}
|
|
5735
5751
|
return result;
|
|
5736
5752
|
}
|
|
@@ -7269,7 +7285,7 @@ class OptionComponent {
|
|
|
7269
7285
|
this.select = select;
|
|
7270
7286
|
this.selected$ = combineLatest([this.select.values$, this.value$$]).pipe(map(([selectValue, selfValue]) => selectValue === null || selectValue === void 0 ? void 0 : selectValue.map(this.select.trackFn).includes(this.select.trackFn(selfValue))), distinctUntilChanged(), tap(selected => {
|
|
7271
7287
|
this.selected = selected;
|
|
7272
|
-
}),
|
|
7288
|
+
}), publishRef());
|
|
7273
7289
|
this.size$ = this.select.size$.pipe(tap(size => {
|
|
7274
7290
|
this.size = size;
|
|
7275
7291
|
}));
|
|
@@ -7278,7 +7294,7 @@ class OptionComponent {
|
|
|
7278
7294
|
combineLatest([this.label$, this.value$, this.labelContext$]).pipe(map(([label, value, labelContext]) => ({ label, value, labelContext }))),
|
|
7279
7295
|
]).pipe(map(([filterString, option]) => this.select.filterFn(filterString, option)), distinctUntilChanged(), tap(visible => {
|
|
7280
7296
|
this.visible = visible;
|
|
7281
|
-
}),
|
|
7297
|
+
}), publishRef());
|
|
7282
7298
|
}
|
|
7283
7299
|
get label() {
|
|
7284
7300
|
return this._label;
|
|
@@ -7445,13 +7461,13 @@ class BaseSelect extends CommonFormControl {
|
|
|
7445
7461
|
}
|
|
7446
7462
|
}
|
|
7447
7463
|
return acc;
|
|
7448
|
-
}, [])),
|
|
7464
|
+
}, [])), publishRef());
|
|
7449
7465
|
}
|
|
7450
7466
|
ngAfterViewInit() {
|
|
7451
7467
|
this.allOptions$ = combineLatest([
|
|
7452
7468
|
this.customOptions.changes.pipe(startWith(this.customOptions)),
|
|
7453
7469
|
this.contentOptions.changes.pipe(startWith(this.contentOptions)),
|
|
7454
|
-
]).pipe(map(([customOptions, contentOptions]) => [...customOptions.toArray(), ...contentOptions.toArray()]),
|
|
7470
|
+
]).pipe(map(([customOptions, contentOptions]) => [...customOptions.toArray(), ...contentOptions.toArray()]), publishRef());
|
|
7455
7471
|
// support dynamic options loading on filtering
|
|
7456
7472
|
this.allOptions$.pipe(takeUntil(this.destroy$$)).subscribe(() => {
|
|
7457
7473
|
if (this.opened) {
|
|
@@ -7467,10 +7483,10 @@ class BaseSelect extends CommonFormControl {
|
|
|
7467
7483
|
? combineLatest(options.map(option => option.value$))
|
|
7468
7484
|
: of([]))),
|
|
7469
7485
|
this.filterString$,
|
|
7470
|
-
]).pipe(map(([values, filterString]) => values.some(value => this.trackFn(value) === filterString)),
|
|
7486
|
+
]).pipe(map(([values, filterString]) => values.some(value => this.trackFn(value) === filterString)), publishRef());
|
|
7471
7487
|
this.hasVisibleOption$ = this.contentOptions.changes.pipe(startWith(this.contentOptions), switchMap((options) => options.length > 0
|
|
7472
7488
|
? combineLatest(options.map(option => option.visible$))
|
|
7473
|
-
: of([])), map(visible => visible.some(Boolean)),
|
|
7489
|
+
: of([])), map(visible => visible.some(Boolean)), publishRef());
|
|
7474
7490
|
}
|
|
7475
7491
|
ngOnDestroy() {
|
|
7476
7492
|
var _a;
|
|
@@ -7720,8 +7736,8 @@ class SelectComponent extends BaseSelect {
|
|
|
7720
7736
|
: {
|
|
7721
7737
|
label: ((_b = this.labelFn) === null || _b === void 0 ? void 0 : _b.call(this, value)) || coerceString(this.trackFn(value)),
|
|
7722
7738
|
};
|
|
7723
|
-
}),
|
|
7724
|
-
this.hasSelected$ = this.selectedOption$.pipe(map(({ label }) => !!label),
|
|
7739
|
+
}), publishRef());
|
|
7740
|
+
this.hasSelected$ = this.selectedOption$.pipe(map(({ label }) => !!label), publishRef());
|
|
7725
7741
|
}
|
|
7726
7742
|
onShowOptions() {
|
|
7727
7743
|
super.onShowOptions();
|
|
@@ -7987,7 +8003,7 @@ class MultiSelectComponent extends BaseSelect {
|
|
|
7987
8003
|
return 1;
|
|
7988
8004
|
}
|
|
7989
8005
|
return 0;
|
|
7990
|
-
})),
|
|
8006
|
+
})), publishRef());
|
|
7991
8007
|
}
|
|
7992
8008
|
ngAfterViewInit() {
|
|
7993
8009
|
super.ngAfterViewInit();
|
|
@@ -8005,7 +8021,7 @@ class MultiSelectComponent extends BaseSelect {
|
|
|
8005
8021
|
: selected.length !== statuses.length
|
|
8006
8022
|
? SelectAllStatus.Indeterminate
|
|
8007
8023
|
: SelectAllStatus.Checked;
|
|
8008
|
-
}), startWith(SelectAllStatus.Empty), tap(selectAllStatus => (this.selectAllStatus = selectAllStatus)),
|
|
8024
|
+
}), startWith(SelectAllStatus.Empty), tap(selectAllStatus => (this.selectAllStatus = selectAllStatus)), publishRef());
|
|
8009
8025
|
this.hasEnabledOptions$ = combineLatest([
|
|
8010
8026
|
this.allOptions$,
|
|
8011
8027
|
this.filterString$,
|
|
@@ -8194,7 +8210,7 @@ class OptionGroupComponent {
|
|
|
8194
8210
|
ngAfterContentInit() {
|
|
8195
8211
|
this.hasVisibleOption$ = this.options.changes.pipe(startWith(this.options), switchMap((options) => options.length > 0
|
|
8196
8212
|
? combineLatest(options.map(node => node.visible$))
|
|
8197
|
-
: of([false])), map(visible => visible.some(Boolean)),
|
|
8213
|
+
: of([false])), map(visible => visible.some(Boolean)), publishRef());
|
|
8198
8214
|
}
|
|
8199
8215
|
}
|
|
8200
8216
|
OptionGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: OptionGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -11455,15 +11471,15 @@ class TreeNodeComponent {
|
|
|
11455
11471
|
this.select = select;
|
|
11456
11472
|
this.selected$ = combineLatest([
|
|
11457
11473
|
this.select.model$,
|
|
11458
|
-
this.nodeData$$.pipe(map
|
|
11459
|
-
]).pipe(map
|
|
11460
|
-
this.select.trackFn(selectValue) === this.select.trackFn(selfValue)), tap
|
|
11474
|
+
this.nodeData$$.pipe(map(data => data.value)),
|
|
11475
|
+
]).pipe(map(([selectValue, selfValue]) => selectValue &&
|
|
11476
|
+
this.select.trackFn(selectValue) === this.select.trackFn(selfValue)), tap(selected => {
|
|
11461
11477
|
this.selected = selected;
|
|
11462
|
-
}),
|
|
11478
|
+
}), publishRef());
|
|
11463
11479
|
this.selfVisible$ = combineLatest([
|
|
11464
11480
|
this.select.filterString$,
|
|
11465
11481
|
this.nodeData$$,
|
|
11466
|
-
]).pipe(map
|
|
11482
|
+
]).pipe(map(([filterString, nodeData]) => this.select.filterFn(filterString, nodeData)), publishRef());
|
|
11467
11483
|
}
|
|
11468
11484
|
get nodeData() {
|
|
11469
11485
|
return this._nodeData;
|
|
@@ -11482,18 +11498,18 @@ class TreeNodeComponent {
|
|
|
11482
11498
|
this._leafOnly = coerceAttrBoolean(val);
|
|
11483
11499
|
}
|
|
11484
11500
|
ngAfterViewInit() {
|
|
11485
|
-
const hasVisibleChildNodes$ = this.childNodes.changes.pipe(startWith
|
|
11501
|
+
const hasVisibleChildNodes$ = this.childNodes.changes.pipe(startWith(this.childNodes), switchMap((nodes) => nodes.length > 0
|
|
11486
11502
|
? combineLatest(nodes.map(node => node.visible$))
|
|
11487
|
-
: of([false])), map
|
|
11503
|
+
: of([false])), map(visible => visible.some(Boolean)), tap(hasVisibleChildren => (this.isLeaf = !hasVisibleChildren)));
|
|
11488
11504
|
this.visible$ = combineLatest([
|
|
11489
11505
|
this.selfVisible$,
|
|
11490
11506
|
hasVisibleChildNodes$,
|
|
11491
|
-
]).pipe(map
|
|
11492
|
-
this.visible$.pipe(takeUntil
|
|
11507
|
+
]).pipe(map(visible => visible.some(Boolean)), publishRef());
|
|
11508
|
+
this.visible$.pipe(takeUntil(this.destroy$$)).subscribe(visible => {
|
|
11493
11509
|
this.visible = visible;
|
|
11494
11510
|
this.cdr.markForCheck();
|
|
11495
11511
|
});
|
|
11496
|
-
this.selected$.pipe(takeUntil
|
|
11512
|
+
this.selected$.pipe(takeUntil(this.destroy$$)).subscribe(selected => {
|
|
11497
11513
|
this.selected = selected;
|
|
11498
11514
|
this.cdr.markForCheck();
|
|
11499
11515
|
});
|
|
@@ -11589,5 +11605,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
11589
11605
|
* Generated bundle index. Do not edit.
|
|
11590
11606
|
*/
|
|
11591
11607
|
|
|
11592
|
-
export { AccordionComponent, AccordionItemComponent, AccordionItemContentDirective, AccordionItemHeaderDirective, AccordionModule, AnchorComponent, AnchorDirective, AnchorDirectiveChild, AnchorLabelDirective, AnchorModule, AnchorTreeComponent, AuiSelectValidators, AutoCompleteDirective, AutocompleteComponent, AutocompleteModule, AutocompletePlaceholderComponent, AutosizeDirective, BackTopComponent, BackTopModule, BaseTooltip, Bem, BreadcrumbComponent, BreadcrumbItemComponent, BreadcrumbModule, ButtonComponent, ButtonGroupComponent, ButtonModule, ButtonType, CONTROL_ITEM_HEIGHT, CalendarFooterComponent, CalendarHeaderComponent, CardComponent, CardFooterDirective, CardHeaderDirective, CardModule, CheckTagComponent, CheckboxComponent, CheckboxGroupComponent, CheckboxModule, ColorPickerComponent, ColorPickerModule, CommonForm, CommonFormControl, ComponentSize, ConfirmDialogConfig, ConfirmType, CssVarPipe, CustomAutoCompleteDirective, DATA, DATE, DATE_NAV_RANGES, DATE_TYPES, DAY, DAY_PANEL_COLUMN_COUNT, DAY_PANEL_ROW_COUNT, DIALOG_DATA, DISPLAY_DELAY, DateNavRange, DatePickerComponent, DatePickerModule, DatePickerPanelComponent, DatePickerTriggerComponent, DatePickerType, DateRangePickerPanelComponent, DialogCloseDirective, DialogComponent, DialogConfig, DialogContentComponent, DialogFooterComponent, DialogHeaderComponent, DialogModule, DialogRef, DialogService, DialogSize, DrawerComponent, DrawerContentDirective, DrawerFooterDirective, DrawerHeaderDirective, DrawerModule, DrawerRef, DrawerService, DrawerSize, DropdownActiveDirective, DropdownButtonComponent, DropdownDirective, DropdownModule, FixedSizeTableVirtualScrollDirective, FixedSizeTableVirtualScrollStrategy, FixedSizeVirtualScrollDirective, FormDirective, FormItemAddonDirective, FormItemComponent, FormItemControlDirective, FormItemErrorDirective, FormItemHintDirective, FormItemLabelDirective, FormItemWidth, FormModule, HIDDEN_DELAY, HOUR, HOUR_ITEMS, I18NInterfaceToken, I18nModule, I18nPipe, I18nService, ICON_REGISTER_PROVIDER_FACTORY, ICON_REGISTER_SERVICE_PROVIDER, INPUT_ERROR_KEY, IconComponent, IconModule, IconRegisterService, IncludesDirective, InlineAlertComponent, InlineAlertModule, InlineAlertTitleDirective, InlineAlertType, InputAddonAfterDirective, InputAddonBeforeDirective, InputComponent, InputGroupComponent, InputModule, InputPrefixDirective, InputSuffixDirective, LabelPosition, MESSAGE_CONFIG, MESSAGE_DEFAULT_CONFIG, MINUTE, MINUTE_ITEMS, MONTH, MONTH_PANEL_COLUMN_COUNT, MONTH_PANEL_ROW_COUNT, MenuComponent, MenuContentDirective, MenuGroupComponent, MenuGroupTitleDirective, MenuItemComponent, MenuItemType, MessageConfig, MessageModule, MessageService, MessageType, MultiSelectComponent, NOTIFICATION_CONFIG, NOTIFICATION_DEFAULT_CONFIG, NotificationComponent, NotificationModule, NotificationService, NumberInputComponent, OptionComponent, OptionContentDirective, OptionGroupComponent, OptionGroupTitleDirective, OptionPlaceholderComponent, PAGINATOR_INTL_PROVIDER, PAGINATOR_INTL_PROVIDER_FACTORY, PageEvent, PaginatorComponent, PaginatorIntl, PaginatorModule, PickerPanelComponent, RadioButtonComponent, RadioComponent, RadioGroupComponent, RadioModule, RadioSize, RangePickerComponent, RgbColorPipe, RgbaColorPipe, SECOND, SECOND_ITEMS, ScrollingModule, SearchComponent, SectionComponent, SectionTitleDirective, SelectAllStatus, SelectComponent, SelectModule, Side, SortDirective, SortHeaderComponent, SortModule, StatusBarComponent, StatusBarModule, StatusBarSize, StatusType, StepState, StepsComponent, StepsModule, SubmenuComponent, SuggestionComponent, SuggestionGroupComponent, SuggestionGroupTitleDirective, SwitchComponent, SwitchModule, TOOLTIP_COPY_INTL_INTL_PROVIDER, TOOLTIP_COPY_INTL_PROVIDER_FACTORY, TabBodyComponent, TabBodyPortalDirective, TabChangeEvent, TabComponent, TabContentDirective, TabContextService, TabGroupComponent, TabHeaderActiveIndicatorComponent, TabHeaderAddonDirective, TabHeaderComponent, TabLabelDirective, TabLabelWrapperDirective, TabSize, TabTitleDirective, TabType, TableCellDefDirective, TableCellDirective, TableColumnDefDirective, TableComponent, TableExpandButtonCellComponent, TableExpandPanelCellComponent, TableHeaderCellDefDirective, TableHeaderCellDirective, TableHeaderRowComponent, TableHeaderRowDefDirective, TableModule, TableOfContentsModule, TablePlaceholderDefDirective, TablePlaceholderOutletDirective, TableRowComponent, TableRowDefDirective, TableScrollShadowDirective, TableScrollWrapperDirective, TabsModule, TagComponent, TagModule, TagType, TagsInputComponent, ThemeModule, ThemePickerPipe, ThemeService, TimePickerComponent, TimePickerControlType, TimePickerModule, TimePickerPanelComponent, TocContainerDirective, TocContentDirective, TocLinkDirective, TooltipActiveDirective, TooltipComponent, TooltipCopyDirective, TooltipCopyIntl, TooltipDirective, TooltipModule, TooltipTrigger, TooltipType, TreeNodeComponent, TreeNodePlaceholderComponent, TreeSelectComponent, TreeSelectModule, VirtualForOfDirective, VirtualScrollViewportComponent, YEAR, YEAR_PANEL_COLUMN_COUNT, YEAR_PANEL_ROW_COUNT, _isNumberValue, _tableVirtualScrollDirectiveStrategyFactory, buildBem, coerceAttrBoolean, coerceNumber, coerceString, cssVar, en, getAnchorTreeItems, getSortDuplicateSortableIdError, getSortHeaderMissingIdError, getSortHeaderNotContainedWithinSortError, getSortInvalidDirectionError, handlePixel, isTemplateRef, isTimePickerModel, isUndefined, last, observeMutationOn, observeResizeOn, rgbColor, rgbaColor, scrollIntoView, sleep, watchContentExist, zh };
|
|
11608
|
+
export { AccordionComponent, AccordionItemComponent, AccordionItemContentDirective, AccordionItemHeaderDirective, AccordionModule, AnchorComponent, AnchorDirective, AnchorDirectiveChild, AnchorLabelDirective, AnchorModule, AnchorTreeComponent, AuiSelectValidators, AutoCompleteDirective, AutocompleteComponent, AutocompleteModule, AutocompletePlaceholderComponent, AutosizeDirective, BackTopComponent, BackTopModule, BaseTooltip, Bem, BreadcrumbComponent, BreadcrumbItemComponent, BreadcrumbModule, ButtonComponent, ButtonGroupComponent, ButtonModule, ButtonType, CONTROL_ITEM_HEIGHT, CalendarFooterComponent, CalendarHeaderComponent, CardComponent, CardFooterDirective, CardHeaderDirective, CardModule, CheckTagComponent, CheckboxComponent, CheckboxGroupComponent, CheckboxModule, ColorPickerComponent, ColorPickerModule, CommonForm, CommonFormControl, ComponentSize, ConfirmDialogConfig, ConfirmType, CssVarPipe, CustomAutoCompleteDirective, DATA, DATE, DATE_NAV_RANGES, DATE_TYPES, DAY, DAY_PANEL_COLUMN_COUNT, DAY_PANEL_ROW_COUNT, DIALOG_DATA, DISPLAY_DELAY, DateNavRange, DatePickerComponent, DatePickerModule, DatePickerPanelComponent, DatePickerTriggerComponent, DatePickerType, DateRangePickerPanelComponent, DialogCloseDirective, DialogComponent, DialogConfig, DialogContentComponent, DialogFooterComponent, DialogHeaderComponent, DialogModule, DialogRef, DialogService, DialogSize, DrawerComponent, DrawerContentDirective, DrawerFooterDirective, DrawerHeaderDirective, DrawerModule, DrawerRef, DrawerService, DrawerSize, DropdownActiveDirective, DropdownButtonComponent, DropdownDirective, DropdownModule, FixedSizeTableVirtualScrollDirective, FixedSizeTableVirtualScrollStrategy, FixedSizeVirtualScrollDirective, FormDirective, FormItemAddonDirective, FormItemComponent, FormItemControlDirective, FormItemErrorDirective, FormItemHintDirective, FormItemLabelDirective, FormItemWidth, FormModule, HIDDEN_DELAY, HOUR, HOUR_ITEMS, I18NInterfaceToken, I18nModule, I18nPipe, I18nService, ICON_REGISTER_PROVIDER_FACTORY, ICON_REGISTER_SERVICE_PROVIDER, INPUT_ERROR_KEY, IconComponent, IconModule, IconRegisterService, IncludesDirective, InlineAlertComponent, InlineAlertModule, InlineAlertTitleDirective, InlineAlertType, InputAddonAfterDirective, InputAddonBeforeDirective, InputComponent, InputGroupComponent, InputModule, InputPrefixDirective, InputSuffixDirective, LabelPosition, MESSAGE_CONFIG, MESSAGE_DEFAULT_CONFIG, MINUTE, MINUTE_ITEMS, MONTH, MONTH_PANEL_COLUMN_COUNT, MONTH_PANEL_ROW_COUNT, MenuComponent, MenuContentDirective, MenuGroupComponent, MenuGroupTitleDirective, MenuItemComponent, MenuItemType, MessageConfig, MessageModule, MessageService, MessageType, MultiSelectComponent, NOTIFICATION_CONFIG, NOTIFICATION_DEFAULT_CONFIG, NotificationComponent, NotificationModule, NotificationService, NumberInputComponent, OptionComponent, OptionContentDirective, OptionGroupComponent, OptionGroupTitleDirective, OptionPlaceholderComponent, PAGINATOR_INTL_PROVIDER, PAGINATOR_INTL_PROVIDER_FACTORY, PageEvent, PaginatorComponent, PaginatorIntl, PaginatorModule, PickerPanelComponent, RadioButtonComponent, RadioComponent, RadioGroupComponent, RadioModule, RadioSize, RangePickerComponent, RgbColorPipe, RgbaColorPipe, SECOND, SECOND_ITEMS, ScrollingModule, SearchComponent, SectionComponent, SectionTitleDirective, SelectAllStatus, SelectComponent, SelectModule, Side, SortDirective, SortHeaderComponent, SortModule, StatusBarComponent, StatusBarModule, StatusBarSize, StatusType, StepState, StepsComponent, StepsModule, SubmenuComponent, SuggestionComponent, SuggestionGroupComponent, SuggestionGroupTitleDirective, SwitchComponent, SwitchModule, TOOLTIP_COPY_INTL_INTL_PROVIDER, TOOLTIP_COPY_INTL_PROVIDER_FACTORY, TabBodyComponent, TabBodyPortalDirective, TabChangeEvent, TabComponent, TabContentDirective, TabContextService, TabGroupComponent, TabHeaderActiveIndicatorComponent, TabHeaderAddonDirective, TabHeaderComponent, TabLabelDirective, TabLabelWrapperDirective, TabSize, TabTitleDirective, TabType, TableCellDefDirective, TableCellDirective, TableColumnDefDirective, TableComponent, TableExpandButtonCellComponent, TableExpandPanelCellComponent, TableHeaderCellDefDirective, TableHeaderCellDirective, TableHeaderRowComponent, TableHeaderRowDefDirective, TableModule, TableOfContentsModule, TablePlaceholderDefDirective, TablePlaceholderOutletDirective, TableRowComponent, TableRowDefDirective, TableScrollShadowDirective, TableScrollWrapperDirective, TabsModule, TagComponent, TagModule, TagType, TagsInputComponent, ThemeModule, ThemePickerPipe, ThemeService, TimePickerComponent, TimePickerControlType, TimePickerModule, TimePickerPanelComponent, TocContainerDirective, TocContentDirective, TocLinkDirective, TooltipActiveDirective, TooltipComponent, TooltipCopyDirective, TooltipCopyIntl, TooltipDirective, TooltipModule, TooltipTrigger, TooltipType, TreeNodeComponent, TreeNodePlaceholderComponent, TreeSelectComponent, TreeSelectModule, VirtualForOfDirective, VirtualScrollViewportComponent, YEAR, YEAR_PANEL_COLUMN_COUNT, YEAR_PANEL_ROW_COUNT, _isNumberValue, _tableVirtualScrollDirectiveStrategyFactory, buildBem, coerceAttrBoolean, coerceNumber, coerceString, cssVar, en, getAnchorTreeItems, getSortDuplicateSortableIdError, getSortHeaderMissingIdError, getSortHeaderNotContainedWithinSortError, getSortInvalidDirectionError, handlePixel, isTemplateRef, isTimePickerModel, isUndefined, last, observeMutationOn, observeResizeOn, publishRef, rgbColor, rgbaColor, scrollIntoView, sleep, watchContentExist, zh };
|
|
11593
11609
|
//# sourceMappingURL=alauda-ui.mjs.map
|