@dev-tcloud/tcloud-ui 6.18.0 → 6.19.0-beta.2
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/docs/tcloud-ui-input.md +136 -0
- package/fesm2022/dev-tcloud-tcloud-ui.mjs +37 -4
- package/fesm2022/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/lib/_directives/tcloud-ui-input/tcloud-ui-input.directive.d.ts +10 -0
- package/lib/_modules/tcloud-ui-pagination/tcloud-ui-pagination.component.d.ts +4 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TCloudUiInputDirective {
|
|
4
|
+
private _el;
|
|
5
|
+
fullWidth: import("@angular/core").InputSignal<boolean>;
|
|
6
|
+
constructor(_el: ElementRef<HTMLInputElement>);
|
|
7
|
+
private setClasses;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiInputDirective, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TCloudUiInputDirective, "input[tcloudUiInput], select[tcloudUiInput]", never, { "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
10
|
+
}
|
|
@@ -9,6 +9,9 @@ export declare class TCloudUiPaginationComponent implements OnInit {
|
|
|
9
9
|
private _currentPage;
|
|
10
10
|
set currentPage(value: number);
|
|
11
11
|
get currentPage(): number;
|
|
12
|
+
private _enableLoadOnDemand;
|
|
13
|
+
set enableLoadOnDemand(value: boolean);
|
|
14
|
+
get enableLoadOnDemand(): boolean;
|
|
12
15
|
private _tcloudUiPaginationService;
|
|
13
16
|
private _changeDetectorRef;
|
|
14
17
|
private _lastTotalPages;
|
|
@@ -22,5 +25,5 @@ export declare class TCloudUiPaginationComponent implements OnInit {
|
|
|
22
25
|
goToPage(event: Event): void;
|
|
23
26
|
formatPage(page: number): string;
|
|
24
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiPaginationComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiPaginationComponent, "tcloud-ui-pagination", never, { "id": { "alias": "id"; "required": false; }; "currentPage": { "alias": "currentPage"; "required": false; }; }, { "pageChange": "pageChange"; }, never, never, true, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiPaginationComponent, "tcloud-ui-pagination", never, { "id": { "alias": "id"; "required": false; }; "currentPage": { "alias": "currentPage"; "required": false; }; "enableLoadOnDemand": { "alias": "enableLoadOnDemand"; "required": false; }; }, { "pageChange": "pageChange"; }, never, never, true, never>;
|
|
26
29
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -82,6 +82,7 @@ export * from './lib/_directives/tcloud-form/tcloud-form.directive';
|
|
|
82
82
|
export * from './lib/_directives/tcloud-ui-slide-toggle/tcloud-ui-slide-toggle.directive';
|
|
83
83
|
export * from './lib/_directives/tcloud-ui-radio/tcloud-ui-radio.directive';
|
|
84
84
|
export * from './lib/_directives/tcloud-ui-icon-button/tcloud-ui-icon-button.directive';
|
|
85
|
+
export * from './lib/_directives/tcloud-ui-input/tcloud-ui-input.directive';
|
|
85
86
|
export * from './lib/_modules/tcloud-ui-search-input/tcloud-ui-search-input.component';
|
|
86
87
|
export * from './lib/_pipes/index';
|
|
87
88
|
export * from './lib/_services/loading-transitions.service';
|