otimus-library 0.3.45 → 0.3.47
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/otimus-library.mjs +39 -20
- package/fesm2022/otimus-library.mjs.map +1 -1
- package/index.d.ts +7 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -322,7 +322,7 @@ declare class OcAutocompleteComponent implements AfterContentInit, AfterViewInit
|
|
|
322
322
|
ocClick: EventEmitter<any>;
|
|
323
323
|
hasSuffix: boolean;
|
|
324
324
|
hasPrefix: boolean;
|
|
325
|
-
isOptionsShown
|
|
325
|
+
private isOptionsShown;
|
|
326
326
|
private _filteredData;
|
|
327
327
|
get filteredData(): OcAutoCompleteType[];
|
|
328
328
|
set filteredData(value: OcAutoCompleteType[]);
|
|
@@ -342,11 +342,14 @@ declare class OcAutocompleteComponent implements AfterContentInit, AfterViewInit
|
|
|
342
342
|
updateInputWidth(): void;
|
|
343
343
|
getTranslation(code: number | string): string;
|
|
344
344
|
loadOptions(): void;
|
|
345
|
+
private clickOutListener;
|
|
345
346
|
closeOnClickOut(): void;
|
|
346
347
|
findByTyping(): void;
|
|
347
348
|
filterData(name: string): void;
|
|
348
349
|
getFormattedName(str: string): string;
|
|
349
|
-
|
|
350
|
+
open(): void;
|
|
351
|
+
close(): void;
|
|
352
|
+
protected toggleOptions(): void;
|
|
350
353
|
private openOverlay;
|
|
351
354
|
private updateOverlayPosition;
|
|
352
355
|
private updateOverlayWidth;
|
|
@@ -389,7 +392,7 @@ declare class OcPaginationComponent implements OnInit {
|
|
|
389
392
|
ocPage: number;
|
|
390
393
|
ocMaxPage?: number;
|
|
391
394
|
ocStyle: OcStyleThemeType;
|
|
392
|
-
|
|
395
|
+
ocItemName: string;
|
|
393
396
|
ocGetPage: EventEmitter<number>;
|
|
394
397
|
constructor(styleThemeService: StyleThemeService);
|
|
395
398
|
ngOnInit(): void;
|
|
@@ -398,7 +401,7 @@ declare class OcPaginationComponent implements OnInit {
|
|
|
398
401
|
incrementPage(): void;
|
|
399
402
|
lastPage(): void;
|
|
400
403
|
static ɵfac: i0.ɵɵFactoryDeclaration<OcPaginationComponent, never>;
|
|
401
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OcPaginationComponent, "oc-pagination", never, { "ocPage": { "alias": "ocPage"; "required": false; }; "ocMaxPage": { "alias": "ocMaxPage"; "required": false; }; "ocStyle": { "alias": "ocStyle"; "required": false; }; "
|
|
404
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OcPaginationComponent, "oc-pagination", never, { "ocPage": { "alias": "ocPage"; "required": false; }; "ocMaxPage": { "alias": "ocMaxPage"; "required": false; }; "ocStyle": { "alias": "ocStyle"; "required": false; }; "ocItemName": { "alias": "ocItemName"; "required": false; }; }, { "ocGetPage": "ocGetPage"; }, never, never, true, never>;
|
|
402
405
|
}
|
|
403
406
|
|
|
404
407
|
declare class OcNotFoundComponent {
|