chrv-components 1.12.21 → 1.12.22
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/README.md +544 -544
- package/chrv-components-1.12.22.tgz +0 -0
- package/fesm2022/chrv-components.mjs +98 -63
- package/fesm2022/chrv-components.mjs.map +1 -1
- package/package.json +1 -1
- package/types/chrv-components.d.ts +15 -2
- package/chrv-components-1.12.21.tgz +0 -0
package/package.json
CHANGED
|
@@ -6,7 +6,8 @@ import { Observable, Subject, BehaviorSubject } from 'rxjs';
|
|
|
6
6
|
import * as _angular_forms from '@angular/forms';
|
|
7
7
|
import { AbstractControl, ValidationErrors, ValidatorFn, AsyncValidatorFn, FormControl, FormGroup, ControlValueAccessor, NgControl, Validator } from '@angular/forms';
|
|
8
8
|
import { MatAutocomplete } from '@angular/material/autocomplete';
|
|
9
|
-
import
|
|
9
|
+
import * as _angular_platform_browser from '@angular/platform-browser';
|
|
10
|
+
import { SafeHtml, DomSanitizer, EventManagerPlugin } from '@angular/platform-browser';
|
|
10
11
|
import { HttpClient, HttpContextToken, HttpInterceptorFn, HttpEvent, HttpFeature } from '@angular/common/http';
|
|
11
12
|
import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
|
|
12
13
|
import { Overlay } from '@angular/cdk/overlay';
|
|
@@ -2020,6 +2021,7 @@ declare class DataGrid {
|
|
|
2020
2021
|
toggleAllowFetchDistinctValues(): void;
|
|
2021
2022
|
onViewportScroll(event: Event): void;
|
|
2022
2023
|
datagridContextMenuActions: (column: string, filterElement: ColumnFilter, groupElement: ColumnGroup) => IContextMenuItem[];
|
|
2024
|
+
log: (msg: any) => void;
|
|
2023
2025
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DataGrid, never>;
|
|
2024
2026
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DataGrid, "chr-data-grid", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "table": { "alias": "table"; "required": false; "isSignal": true; }; "currentPage": { "alias": "currentPage"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "sort": { "alias": "sort"; "required": false; "isSignal": true; }; "filter": { "alias": "filter"; "required": false; "isSignal": true; }; "groupBy": { "alias": "groupBy"; "required": false; "isSignal": true; }; "enableVirtualization": { "alias": "enableVirtualization"; "required": false; "isSignal": true; }; "allowInsert": { "alias": "allowInsert"; "required": false; "isSignal": true; }; "allowUpdate": { "alias": "allowUpdate"; "required": false; "isSignal": true; }; "allowDelete": { "alias": "allowDelete"; "required": false; "isSignal": true; }; "allowSync": { "alias": "allowSync"; "required": false; "isSignal": true; }; "allowRefresh": { "alias": "allowRefresh"; "required": false; "isSignal": true; }; "allowNavigation": { "alias": "allowNavigation"; "required": false; "isSignal": true; }; "allowExport": { "alias": "allowExport"; "required": false; "isSignal": true; }; "allowManageTrackingPersistence": { "alias": "allowManageTrackingPersistence"; "required": false; "isSignal": true; }; "allowManageDistincValueFetching": { "alias": "allowManageDistincValueFetching"; "required": false; "isSignal": true; }; "maxHeight": { "alias": "maxHeight"; "required": false; "isSignal": true; }; "allowFetchDistinctValues": { "alias": "allowFetchDistinctValues"; "required": false; "isSignal": true; }; "crossRequestTrackingPersistence": { "alias": "crossRequestTrackingPersistence"; "required": false; "isSignal": true; }; "modifiedCells": { "alias": "modifiedCells"; "required": false; "isSignal": true; }; "modifiedRows": { "alias": "modifiedRows"; "required": false; "isSignal": true; }; "addedRows": { "alias": "addedRows"; "required": false; "isSignal": true; }; "deletedRows": { "alias": "deletedRows"; "required": false; "isSignal": true; }; "distinctValues": { "alias": "distinctValues"; "required": false; "isSignal": true; }; "trackByMode": { "alias": "trackByMode"; "required": false; "isSignal": true; }; }, { "pageChange": "pageChange"; "pageSizeChange": "pageSizeChange"; "sort": "sortChange"; "filter": "filterChange"; "groupBy": "groupByChange"; "cellChange": "cellChange"; "rowClick": "rowClick"; "onExport": "onExport"; "onSync": "onSync"; "onRefresh": "onRefresh"; "onAddRow": "onAddRow"; "onDeleteRow": "onDeleteRow"; "onForeignTableNavigate": "onForeignTableNavigate"; "onNavigate": "onNavigate"; "onFilterValueChange": "onFilterValueChange"; "allowFetchDistinctValues": "allowFetchDistinctValuesChange"; "crossRequestTrackingPersistence": "crossRequestTrackingPersistenceChange"; "modifiedCells": "modifiedCellsChange"; "modifiedRows": "modifiedRowsChange"; "addedRows": "addedRowsChange"; "deletedRows": "deletedRowsChange"; "trackByMode": "trackByModeChange"; }, never, never, true, never>;
|
|
2025
2027
|
}
|
|
@@ -2459,6 +2461,11 @@ declare const WaitAndStoreXsrfToken: (headername: string, dataService: DataServi
|
|
|
2459
2461
|
|
|
2460
2462
|
declare const ChrDeactivationGuard: CanDeactivateFn<ICanBeDeactivated>;
|
|
2461
2463
|
|
|
2464
|
+
declare class DebounceEventPlugin extends EventManagerPlugin {
|
|
2465
|
+
supports(eventName: string): boolean;
|
|
2466
|
+
addEventListener(element: HTMLElement, eventName: string, handler: Function): Function;
|
|
2467
|
+
}
|
|
2468
|
+
|
|
2462
2469
|
interface IXsrfProviderParams {
|
|
2463
2470
|
xsrfHeader: string;
|
|
2464
2471
|
xsrfCookie?: string;
|
|
@@ -2471,5 +2478,11 @@ declare const XSRFHEADERNAME: InjectionToken<string>;
|
|
|
2471
2478
|
declare const XSRFCOOKIENAME: InjectionToken<string>;
|
|
2472
2479
|
declare const HUBURL: InjectionToken<string>;
|
|
2473
2480
|
|
|
2474
|
-
|
|
2481
|
+
declare const provideDebounceEventPlugin: () => {
|
|
2482
|
+
provide: _angular_core.InjectionToken<_angular_platform_browser.EventManagerPlugin[]>;
|
|
2483
|
+
multi: boolean;
|
|
2484
|
+
useClass: typeof DebounceEventPlugin;
|
|
2485
|
+
}[];
|
|
2486
|
+
|
|
2487
|
+
export { Aligments, AnonymousTable, AutofocusDirective, BaseErrorDisplays, BaseTable, BreadcrumbComponent, ButtonComponent, CHR_DEACTIVATION_MODAL, CHR_DEBOUNCE_DEFAULTS, CHR_MODAL_DATA, CHR_MODAL_REF, CarouselComponent, ChrBaseInputComponent, ChrButtonComponent, ChrCheckboxComponent, ChrColorInputComponent, ChrContextMenuComponent, ChrDataTable, ChrDateInputComponent, ChrDatetimeInputComponent, ChrDeactivationGuard, ChrDebounceDirective, ChrDefaultModalComponent, ChrDeleteModalComponent, ChrDropdownComponent, ChrFile, ChrFileInputComponent, ChrFormComponent, ChrHoverTitleComponent, ChrHoverTitleDirective, ChrModalComponent, ChrNiceFileInputComponent, ChrPaginatorComponent, ChrPreventReloadDirective, ChrSearchSelectComponent, ChrSearchbarComponent, ChrSeparatorComponent, ChrSpinnerComponent, ChrTableComponent, ChrTableHeaderCellComponent, ChrTagSelectComponent, ChrTextareaInputComponent, ChrToastComponent, ChrToggleInputComponent, Colors, ColorsVariables, ColumnFilter, ColumnGroup, ColumnMetadata, ContextMenuDirective, ControlClickDirective, CookiesService, CrossCellNavigationDirective, DEFAULTLIVEUPDATEMESSAGE, DGFilterMode, DGGroupAggregationEnum, DataExporterService, DataFormatterService, DataGrid, DataListComponent, DataService, DebounceDefaults, DebounceEventPlugin, DecimalValidatorDirective, DefaultLiveUpdateMessage, EditableCell, FileService, HUBURL, InlineSvgComponent, LiveUpdateService, LiveUpdateStatus, LoaderService, MaxDateValidatorDirective, MaxFileSizeValidator, MaxLengthValidatorDirective, MessageBanner, MinFileSizeValidator, MinLengthValidatorDirective, ModalRef, ModalService, OutsideClickAwareDirective, RequiredValidatorDirective, SHOW_SPINNER, ScrollIntoViewDirective, SpinnerInterceptor, SyncValidatorToAsync, TabComponent, TabGroupComponent, TabToEnterHandlerDirective, TabToInputHandlerDirective, TableConstraint, TableConstraintColumn, TableConstraintReference, ToastService, TypeValidatorDirective, WaitAndStoreXsrfToken, XSRFCOOKIENAME, XSRFHEADERNAME, XsrfInterceptor, decimal, getAsyncValidators, getBackgroundColor, getBorderColor, getContrastBackgroundColor, getContrastBorderColor, getContrastTextColor, getSyncValidators, getTextColor, getValidators, getVariableColor, getVariableContrastColor, maxDate, maxFileSize, maxLength, minFileSize, minLength, provideDebounceEventPlugin, provideXsrfHttpClient, required, type };
|
|
2475
2488
|
export type { Alignment, Breadcrumb, Color, IAction, IAnonymousTable, ICanBeDeactivated, IChip, IChips, IColumn, IComputedColumn, IComputedRow, IContextMenuItem, IControl, IControlValidation, IDB2ColumnMetadata, IDGAddedEntry, IDGChangedEntry, IDGDeletedEntry, IDGFilter, IDGGroup, IDGRow, IDGSort, IDGTrackByMode, IDataTable, IDebounceDefaults, IFile, IFormSection, IFormatter, IInputSearchFilter, ILiveUpdateMessage, IMinimumColumnMetadata, IMinimumTableConstraint, IMinimumTableConstraintColumn, IMinimumTableConstraintReference, IModalRef, ISearchFilter, ITableConstraint, ITableConstraintColumn, ITableConstraintReference, IXsrfProviderParams, InputType, ModalData, ModalOptions, TColumn, TColumnType, Toast, ValidationResult };
|
|
Binary file
|