ngx-gccb 0.26.3 → 0.26.4
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 +2 -2
- package/fesm2022/ngx-gccb.mjs +1 -1
- package/package.json +1 -1
- package/types/ngx-gccb.d.ts +17 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# ngx-gccb
|
|
2
2
|
|
|
3
|
-
Light Angular
|
|
3
|
+
Light Angular 21+ component library providing ease of use shared components, directives, pipes and services
|
|
4
4
|
|
|
5
5
|
## showcase
|
|
6
6
|
|
|
@@ -8,7 +8,7 @@ ngx-gccb interactive showcase with code snippets [link](https://ngx-gccb.netlify
|
|
|
8
8
|
|
|
9
9
|
## Stackblitz Demo
|
|
10
10
|
|
|
11
|
-
- Angular
|
|
11
|
+
- Angular v21 and ngx-gccb [link](https://stackblitz.com/edit/ng-19-ngx-gccb)
|
|
12
12
|
|
|
13
13
|
## Get started
|
|
14
14
|
|
package/fesm2022/ngx-gccb.mjs
CHANGED
|
@@ -1427,5 +1427,5 @@ function convertToMinutes(time) {
|
|
|
1427
1427
|
* Generated bundle index. Do not edit.
|
|
1428
1428
|
*/
|
|
1429
1429
|
|
|
1430
|
-
export { AppIsFormControlPipe, BaseModalComponent, CalendarComponent, LogType, NgxAutofocusDirective, NgxButtonComponent, NgxCardBodyComponent, NgxCardComponent, NgxCardTitleComponent, NgxClass, NgxColDirective, NgxDropdownDirective, NgxFadeAnimation, NgxFadeRightAnimation, NgxFormComponent, NgxFormControl, NgxFormControlPipe, NgxFormErrorsComponent, NgxFormGroup, NgxFormGroupDirective, NgxFormInputDirective, NgxFormLabelDirective, NgxFormSelectDirective, NgxIconButtonComponent, NgxImageService, NgxIsFormGroupPipe, NgxListGroupDirective, NgxListGroupItemAvatarDirective, NgxListGroupItemDirective, NgxLoadingIndicatorComponent, NgxLoadingIndicatorService, NgxLog, NgxModalComponent, NgxModalService, NgxOffCanvasComponent, NgxTabComponent, NgxTabContentComponent, NgxTabsComponent, NgxToastComponent, NgxToastService, NgxTooltipDirective, ngxDateAfterValidator, ngxMatchValidator, ngxTimeAfterValidator };
|
|
1430
|
+
export { AppIsFormControlPipe, BaseModalComponent, CalendarComponent, LogType, NgxAutofocusDirective, NgxButtonComponent, NgxCardBodyComponent, NgxCardComponent, NgxCardTitleComponent, NgxClass, NgxColDirective, NgxDropdownDirective, NgxFadeAnimation, NgxFadeRightAnimation, NgxFormComponent, NgxFormControl, NgxFormControlPipe, NgxFormErrorsComponent, NgxFormGroup, NgxFormGroupDirective, NgxFormInputDirective, NgxFormLabelDirective, NgxFormSelectDirective, NgxIconButtonComponent, NgxIconComponent, NgxImageService, NgxIsFormGroupPipe, NgxListGroupDirective, NgxListGroupItemAvatarDirective, NgxListGroupItemDirective, NgxLoadingIndicatorComponent, NgxLoadingIndicatorService, NgxLog, NgxModalComponent, NgxModalService, NgxOffCanvasComponent, NgxTabComponent, NgxTabContentComponent, NgxTabsComponent, NgxToastComponent, NgxToastService, NgxTooltipDirective, ngxDateAfterValidator, ngxMatchValidator, ngxTimeAfterValidator };
|
|
1431
1431
|
//# sourceMappingURL=ngx-gccb.mjs.map
|
package/package.json
CHANGED
package/types/ngx-gccb.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { InputSignal, WritableSignal, Signal, OnInit, OutputEmitterRef, Template
|
|
|
4
4
|
import dayjs from 'dayjs';
|
|
5
5
|
import { Placement } from '@popperjs/core';
|
|
6
6
|
import { ValidationErrors, UntypedFormGroup, UntypedFormControl, ValidatorFn, AbstractControlOptions, AsyncValidatorFn, FormGroup, FormControl, AbstractControl } from '@angular/forms';
|
|
7
|
+
import { SafeHtml } from '@angular/platform-browser';
|
|
7
8
|
|
|
8
9
|
declare const NgxFadeRightAnimation: AnimationTriggerMetadata;
|
|
9
10
|
|
|
@@ -194,6 +195,21 @@ declare class NgxIsFormGroupPipe implements PipeTransform {
|
|
|
194
195
|
static ɵpipe: i0.ɵɵPipeDeclaration<NgxIsFormGroupPipe, "ngxIsFormGroup", true>;
|
|
195
196
|
}
|
|
196
197
|
|
|
198
|
+
declare class NgxIconComponent {
|
|
199
|
+
private readonly sanitizer;
|
|
200
|
+
readonly svg: InputSignal<string>;
|
|
201
|
+
readonly size: InputSignal<string | number>;
|
|
202
|
+
readonly title: InputSignal<string | undefined>;
|
|
203
|
+
readonly ariaHidden: InputSignal<boolean>;
|
|
204
|
+
readonly class: InputSignal<string | undefined>;
|
|
205
|
+
readonly svgHtml: Signal<SafeHtml>;
|
|
206
|
+
get hostSize(): string;
|
|
207
|
+
get hostClass(): string | null;
|
|
208
|
+
private fixFill;
|
|
209
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgxIconComponent, never>;
|
|
210
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgxIconComponent, "ngx-icon", never, { "svg": { "alias": "svg"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "ariaHidden": { "alias": "ariaHidden"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
211
|
+
}
|
|
212
|
+
|
|
197
213
|
declare class NgxIconButtonComponent {
|
|
198
214
|
svg: InputSignal<string>;
|
|
199
215
|
type: InputSignal<string | undefined>;
|
|
@@ -441,5 +457,5 @@ declare function ngxTimeAfterValidator<T extends {
|
|
|
441
457
|
[key: string]: AbstractControl;
|
|
442
458
|
}>(startTimeControlKey: keyof T & string): ValidatorFn;
|
|
443
459
|
|
|
444
|
-
export { AppIsFormControlPipe, BaseModalComponent, CalendarComponent, LogType, NgxAutofocusDirective, NgxButtonComponent, NgxCardBodyComponent, NgxCardComponent, NgxCardTitleComponent, NgxClass, NgxColDirective, NgxDropdownDirective, NgxFadeAnimation, NgxFadeRightAnimation, NgxFormComponent, NgxFormControl, NgxFormControlPipe, NgxFormErrorsComponent, NgxFormGroup, NgxFormGroupDirective, NgxFormInputDirective, NgxFormLabelDirective, NgxFormSelectDirective, NgxIconButtonComponent, NgxImageService, NgxIsFormGroupPipe, NgxListGroupDirective, NgxListGroupItemAvatarDirective, NgxListGroupItemDirective, NgxLoadingIndicatorComponent, NgxLoadingIndicatorService, NgxLog, NgxModalComponent, NgxModalService, NgxOffCanvasComponent, NgxTabComponent, NgxTabContentComponent, NgxTabsComponent, NgxToastComponent, NgxToastService, NgxTooltipDirective, ngxDateAfterValidator, ngxMatchValidator, ngxTimeAfterValidator };
|
|
460
|
+
export { AppIsFormControlPipe, BaseModalComponent, CalendarComponent, LogType, NgxAutofocusDirective, NgxButtonComponent, NgxCardBodyComponent, NgxCardComponent, NgxCardTitleComponent, NgxClass, NgxColDirective, NgxDropdownDirective, NgxFadeAnimation, NgxFadeRightAnimation, NgxFormComponent, NgxFormControl, NgxFormControlPipe, NgxFormErrorsComponent, NgxFormGroup, NgxFormGroupDirective, NgxFormInputDirective, NgxFormLabelDirective, NgxFormSelectDirective, NgxIconButtonComponent, NgxIconComponent, NgxImageService, NgxIsFormGroupPipe, NgxListGroupDirective, NgxListGroupItemAvatarDirective, NgxListGroupItemDirective, NgxLoadingIndicatorComponent, NgxLoadingIndicatorService, NgxLog, NgxModalComponent, NgxModalService, NgxOffCanvasComponent, NgxTabComponent, NgxTabContentComponent, NgxTabsComponent, NgxToastComponent, NgxToastService, NgxTooltipDirective, ngxDateAfterValidator, ngxMatchValidator, ngxTimeAfterValidator };
|
|
445
461
|
export type { IFormControlConfig, IOption, ISelectConfig, ITestareaConfig, ModalSize, NgxDecoratorClassType, NgxDecoratorMethodType, TooltipSize, TooltipTrigger };
|