@tuki-io/tuki-widgets 0.0.219-dev.19 → 0.0.219-dev.20
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/esm2020/users-list/src/app.constants.mjs +2 -1
- package/esm2020/users-list/src/components/table-toolbar/table-toolbar.component.mjs +3 -3
- package/esm2020/users-list/src/users-list.component.mjs +17 -6
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs +19 -7
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs +19 -7
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
- package/package.json +1 -1
- package/users-list/src/app.constants.d.ts +1 -0
- package/users-list/src/users-list.component.d.ts +2 -0
package/package.json
CHANGED
|
@@ -37,6 +37,7 @@ export declare class UsersListComponent implements OnInit, OnDestroy {
|
|
|
37
37
|
showMoveUserWizard: boolean;
|
|
38
38
|
moveUserPending: boolean;
|
|
39
39
|
private subscriptions;
|
|
40
|
+
showPaginator: boolean;
|
|
40
41
|
activeSearchToken: string;
|
|
41
42
|
activeUserType: USER_TYPES_TYPE;
|
|
42
43
|
readonly ON_PREM_ID = 2542;
|
|
@@ -95,6 +96,7 @@ export declare class UsersListComponent implements OnInit, OnDestroy {
|
|
|
95
96
|
private getUserIndexById;
|
|
96
97
|
private setOriginalUserStatus;
|
|
97
98
|
private subscribeToUpgradeUsersStatus;
|
|
99
|
+
private setShowPaginator;
|
|
98
100
|
static ɵfac: i0.ɵɵFactoryDeclaration<UsersListComponent, never>;
|
|
99
101
|
static ɵcmp: i0.ɵɵComponentDeclaration<UsersListComponent, "app-users-list", never, { "token": "token"; "customerId": "customerId"; "siteId": "siteId"; "host": "host"; }, { "openUser": "openUser"; "userMoved": "userMoved"; "switchToWizard": "switchToWizard"; "createUserRequested": "createUserRequested"; }, never, never, false, never>;
|
|
100
102
|
}
|