@indigina/ui-kit 1.1.308 → 1.1.310
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/fesm2022/indigina-ui-kit.mjs +110 -11
- package/fesm2022/indigina-ui-kit.mjs.map +1 -1
- package/index.d.ts +7 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InputSignal, EventEmitter, Predicate, ModelSignal, TemplateRef, OutputEmitterRef, Signal,
|
|
2
|
+
import { InputSignal, EventEmitter, OnInit, Predicate, ModelSignal, TemplateRef, OutputEmitterRef, Signal, OnDestroy, WritableSignal, OnChanges, ModuleWithProviders, SimpleChanges, ElementRef, AfterContentInit, QueryList, AfterViewInit, ViewContainerRef, PipeTransform, InjectionToken, DestroyRef } from '@angular/core';
|
|
3
3
|
import { ControlValueAccessor, ValidatorFn, FormControl, AbstractControl, UntypedFormGroup } from '@angular/forms';
|
|
4
4
|
import { TextBoxComponent } from '@progress/kendo-angular-inputs';
|
|
5
5
|
import { PopupSettings, DropDownListComponent, ItemDisabledFn, MultiSelectComponent } from '@progress/kendo-angular-dropdowns';
|
|
@@ -269,9 +269,13 @@ declare class KitButtonComponent {
|
|
|
269
269
|
static ɵcmp: i0.ɵɵComponentDeclaration<KitButtonComponent, "kit-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "type": { "alias": "type"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconType": { "alias": "iconType"; "required": false; }; "kind": { "alias": "kind"; "required": false; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "buttonClass": { "alias": "buttonClass"; "required": false; }; "active": { "alias": "active"; "required": false; }; }, { "clicked": "clicked"; }, never, never, true, never>;
|
|
270
270
|
}
|
|
271
271
|
|
|
272
|
-
declare class KitSvgSpriteComponent {
|
|
272
|
+
declare class KitSvgSpriteComponent implements OnInit {
|
|
273
|
+
private readonly kitSvgSpriteService;
|
|
274
|
+
readonly iconsPath: InputSignal<string | undefined>;
|
|
275
|
+
ngOnInit(): void;
|
|
276
|
+
private loadIcons;
|
|
273
277
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitSvgSpriteComponent, never>;
|
|
274
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitSvgSpriteComponent, "kit-svg-sprite", never, {}, {}, never, never, true, never>;
|
|
278
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitSvgSpriteComponent, "kit-svg-sprite", never, { "iconsPath": { "alias": "iconsPath"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
275
279
|
}
|
|
276
280
|
|
|
277
281
|
declare class KitSvgIconComponent {
|