@brickclay-org/ui 0.0.47 → 0.0.49
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 +1911 -1911
- package/fesm2022/brickclay-org-ui.mjs +26 -1
- package/fesm2022/brickclay-org-ui.mjs.map +1 -1
- package/index.d.ts +13 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { OnInit, OnDestroy, OnChanges, EventEmitter, SimpleChanges, AfterViewIni
|
|
|
3
3
|
import * as rxjs from 'rxjs';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import * as i1 from '@angular/common';
|
|
6
|
-
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
6
|
+
import { ControlValueAccessor, NgControl, NgModel } from '@angular/forms';
|
|
7
7
|
import { CdkDragDrop, CdkDragMove, CdkDragStart } from '@angular/cdk/drag-drop';
|
|
8
8
|
import * as i1$2 from '@angular/cdk/dialog';
|
|
9
9
|
import { CdkDialogContainer, DialogRef as DialogRef$1 } from '@angular/cdk/dialog';
|
|
@@ -1542,5 +1542,16 @@ declare class BKTooltipDirective implements OnInit, OnChanges, OnDestroy {
|
|
|
1542
1542
|
static ɵdir: i0.ɵɵDirectiveDeclaration<BKTooltipDirective, "[bkTooltip]", never, { "tooltipContent": { "alias": "bkTooltip"; "required": false; }; "tooltipPosition": { "alias": "bkTooltipPosition"; "required": false; }; }, {}, never, never, true, never>;
|
|
1543
1543
|
}
|
|
1544
1544
|
|
|
1545
|
-
|
|
1545
|
+
declare class BkValidator implements OnInit {
|
|
1546
|
+
control: NgModel;
|
|
1547
|
+
label: string;
|
|
1548
|
+
errorMessage: string;
|
|
1549
|
+
showError: boolean;
|
|
1550
|
+
constructor();
|
|
1551
|
+
ngOnInit(): void;
|
|
1552
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BkValidator, never>;
|
|
1553
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BkValidator, "bk-validator", never, { "control": { "alias": "control"; "required": false; }; "label": { "alias": "label"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "showError": { "alias": "showError"; "required": false; }; }, {}, never, never, true, never>;
|
|
1554
|
+
}
|
|
1555
|
+
|
|
1556
|
+
export { BKTooltipDirective, BkBadge, BkButton, BkButtonGroup, BkCheckbox, BkCustomCalendar, BkDialogActions, BkDialogClose, BkDialogContent, BkDialogModule, BkDialogTitle, BkGrid, BkIconButton, BkInput, BkInputChips, BkPill, BkRadioButton, BkScheduledDatePicker, BkSelect, BkSpinner, BkTabs, BkTextarea, BkTimePicker, BkToggle, BkValidator, BrickclayIcons, BrickclayLib, CalendarManagerService, CalendarModule, DEFAULT_DIALOG_CONFIG, DIALOG_DATA, DIALOG_GLOBAL_CONFIG, DialogRef, DialogService, getDialogBackdropAnimation, getDialogPanelAnimation };
|
|
1546
1557
|
export type { AnimationKeyframes, BadgeColor, BadgeSize, BadgeVariant, BkInputAutoCapitalize, BkInputAutoComplete, BkInputMode, BkInputType, BkTextAreaAutoCapitalize, BkTextAreaAutoComplete, BkTextAreaInputMode, ButtonSize, ButtonVariant, CalendarRange, CalendarSelection, CountryOption, DialogAnimation, DialogConfig, DialogPosition, GroupItem, GroupMode, IconButtonSize, IconButtonVariant, IconOrientation, PillColor, PillSize, PillVariant, ScheduledDateSelection, SortDirection, SpinnerSize, TabItem, TableAction, TableColumn, TimeConfiguration };
|