@unipin/angular-applet 18.5.2-beta → 18.5.6
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/esm2022/lib/components/approval/detail/approval-detail.component.mjs +3 -3
- package/esm2022/lib/components/approval/form/approval-form.component.mjs +3 -3
- package/esm2022/lib/components/approval/list/approval-list.component.mjs +3 -3
- package/esm2022/lib/components/approval/services/approval.service.mjs +3 -3
- package/esm2022/lib/components/audit/detail/audit-detail.component.mjs +11 -11
- package/esm2022/lib/components/audit/list/audit-list.component.mjs +3 -3
- package/esm2022/lib/components/audit/service/audit.service.mjs +3 -3
- package/esm2022/lib/components/buttons/group/btn-group.component.mjs +5 -8
- package/esm2022/lib/components/buttons/loading/btn-loading.component.mjs +6 -9
- package/esm2022/lib/components/containers/applet-container/applet-container.component.mjs +5 -5
- package/esm2022/lib/components/containers/colum-header-container/column-header-container.component.mjs +6 -7
- package/esm2022/lib/components/containers/column-container/column-container.component.mjs +7 -11
- package/esm2022/lib/components/containers/column-container/directives/lazy-route.directive.mjs +3 -3
- package/esm2022/lib/components/containers/list-container/list-pagination-container/list-pagination-container.component.mjs +8 -13
- package/esm2022/lib/components/containers/list-container/list-snapshot-container/list-snapshot-container.component.mjs +5 -12
- package/esm2022/lib/components/containers/modal-container/modal-container.component.mjs +4 -4
- package/esm2022/lib/components/filter/filter.component.mjs +7 -9
- package/esm2022/lib/components/forms/country-input/form-country-input.component.mjs +16 -12
- package/esm2022/lib/components/forms/currency-input/form-currency-input.component.mjs +11 -12
- package/esm2022/lib/components/forms/date/form-date.component.mjs +9 -10
- package/esm2022/lib/components/forms/image-picker/directives/drag-n-drop.directive.mjs +3 -3
- package/esm2022/lib/components/forms/image-picker/form-image-picker.component.mjs +11 -12
- package/esm2022/lib/components/forms/input/form-input.component.mjs +7 -9
- package/esm2022/lib/components/forms/number/form-number.component.mjs +10 -9
- package/esm2022/lib/components/forms/number/pipes/locale-number.pipe.mjs +3 -3
- package/esm2022/lib/components/forms/password/form-password.component.mjs +7 -10
- package/esm2022/lib/components/forms/searchable-select/form-searchable-select.component.mjs +10 -11
- package/esm2022/lib/components/forms/select/form-select.component.mjs +8 -11
- package/esm2022/lib/components/forms/textarea/form-textarea.component.mjs +7 -9
- package/esm2022/lib/components/grids/grid-pagination/grid-pagination.component.mjs +3 -3
- package/esm2022/lib/components/grids/grid-snapshot/grid-snapshot.component.mjs +3 -3
- package/esm2022/lib/components/grids/services/grid.service.mjs +3 -3
- package/esm2022/lib/components/infinite-scroll/directive/infinite-scroll.directive.mjs +5 -5
- package/esm2022/lib/components/infinite-scroll/infinite-scroll.component.mjs +6 -9
- package/esm2022/lib/components/tabs/tab-content/tab-content.component.mjs +3 -3
- package/esm2022/lib/components/tabs/tab-group/tab-group.component.mjs +3 -3
- package/esm2022/lib/components/tabs/tabs.component.module.mjs +4 -4
- package/esm2022/lib/interceptors/header/header.interceptor.mjs +3 -3
- package/esm2022/lib/interceptors/refresh-token/refresh-token.interceptor.mjs +3 -3
- package/esm2022/lib/modules/micro-frontend/utils/mf-bootstrap.util.mjs +27 -83
- package/esm2022/lib/modules/permission/directive/permission.directive.mjs +5 -4
- package/esm2022/lib/modules/permission/guards/permission.guard.mjs +3 -7
- package/esm2022/lib/modules/permission/pages/401/unauthorized.page.mjs +3 -3
- package/esm2022/lib/modules/permission/pages/loading/loading.page.mjs +3 -3
- package/esm2022/lib/modules/permission/permission.module.mjs +6 -6
- package/esm2022/lib/modules/permission/services/permission.service.mjs +3 -3
- package/esm2022/lib/resolvers/auth/auth.resolver.mjs +3 -3
- package/esm2022/lib/services/auth/auth.service.mjs +3 -3
- package/esm2022/lib/services/country/country.service.mjs +3 -3
- package/esm2022/lib/services/currency/currency.service.mjs +3 -3
- package/esm2022/lib/services/profile/profile.service.mjs +3 -3
- package/fesm2022/unipin-angular-applet.mjs +246 -308
- package/fesm2022/unipin-angular-applet.mjs.map +1 -1
- package/lib/components/forms/country-input/form-country-input.component.d.ts +2 -1
- package/lib/modules/micro-frontend/utils/mf-bootstrap.util.d.ts +4 -19
- package/lib/modules/permission/directive/permission.directive.d.ts +1 -1
- package/lib/modules/permission/permission.module.d.ts +1 -1
- package/package.json +2 -1
|
@@ -10,6 +10,7 @@ export declare class FormCountryInputComponent implements ControlValueAccessor,
|
|
|
10
10
|
protected readonly countryService: CountryService;
|
|
11
11
|
clearable: boolean;
|
|
12
12
|
required: boolean;
|
|
13
|
+
multiple: boolean;
|
|
13
14
|
disabled: boolean;
|
|
14
15
|
onChange: EventEmitter<Country | undefined | null>;
|
|
15
16
|
items: {
|
|
@@ -36,5 +37,5 @@ export declare class FormCountryInputComponent implements ControlValueAccessor,
|
|
|
36
37
|
change(e?: any): void;
|
|
37
38
|
protected setIsLoading(b: boolean): void;
|
|
38
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormCountryInputComponent, [{ attribute: "placeholder"; }, null, null]>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormCountryInputComponent, "up-country-input", never, { "clearable": { "alias": "clearable"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormCountryInputComponent, "up-country-input", never, { "clearable": { "alias": "clearable"; "required": false; }; "required": { "alias": "required"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
40
41
|
}
|
|
@@ -1,24 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ApplicationConfig, NgZone, Type } from '@angular/core';
|
|
2
2
|
export type AppType = 'shell' | 'microfrontend';
|
|
3
3
|
export type Options = {
|
|
4
4
|
production: boolean;
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
version?: () => string | Version;
|
|
8
|
-
appType?: AppType;
|
|
9
|
-
ngZoneSharing?: boolean;
|
|
10
|
-
platformSharing?: boolean;
|
|
11
|
-
activeLegacyMode?: boolean;
|
|
12
|
-
};
|
|
13
|
-
declare interface BootstrapOptions {
|
|
14
|
-
ngZone?: NgZone | 'zone.js' | 'noop';
|
|
15
|
-
ngZoneEventCoalescing?: boolean;
|
|
16
|
-
ngZoneRunCoalescing?: boolean;
|
|
17
|
-
}
|
|
18
|
-
export declare function getMajor(version: string): string;
|
|
19
|
-
export type LegacyPlatformCache = {
|
|
20
|
-
platform: Record<string, PlatformRef>;
|
|
5
|
+
appType: AppType;
|
|
6
|
+
elementName?: string;
|
|
21
7
|
};
|
|
22
8
|
export declare function shareNgZone(zone: NgZone): void;
|
|
23
|
-
export declare function bootstrap<M>(
|
|
24
|
-
export {};
|
|
9
|
+
export declare function bootstrap<M>(component: Type<M>, options: Options, config: ApplicationConfig): void;
|
|
@@ -12,5 +12,5 @@ export declare class PermissionDirective {
|
|
|
12
12
|
set hasPermissionType(t: string);
|
|
13
13
|
constructor(templateRef: TemplateRef<any>, viewContainer: ViewContainerRef, permissionService: PermissionService);
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<PermissionDirective, never>;
|
|
15
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PermissionDirective, "[hasPermission]", never, { "hasPermission": { "alias": "hasPermission"; "required": false; }; "hasPermissionScope": { "alias": "hasPermissionScope"; "required": false; }; "hasPermissionType": { "alias": "hasPermissionType"; "required": false; }; }, {}, never, never,
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PermissionDirective, "[hasPermission]", never, { "hasPermission": { "alias": "hasPermission"; "required": false; }; "hasPermissionScope": { "alias": "hasPermissionScope"; "required": false; }; "hasPermissionType": { "alias": "hasPermissionType"; "required": false; }; }, {}, never, never, true, never>;
|
|
16
16
|
}
|
|
@@ -2,6 +2,6 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./directive/permission.directive";
|
|
3
3
|
export declare class PermissionModule {
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<PermissionModule, never>;
|
|
5
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PermissionModule, [typeof i1.PermissionDirective],
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PermissionModule, never, [typeof i1.PermissionDirective], [typeof i1.PermissionDirective]>;
|
|
6
6
|
static ɵinj: i0.ɵɵInjectorDeclaration<PermissionModule>;
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unipin/angular-applet",
|
|
3
|
-
"version": "18.5.
|
|
3
|
+
"version": "18.5.6",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"homepage": "https://backoffice.unipin.com/",
|
|
6
6
|
"description": "Angular specific wrappers for UniPin applet",
|
|
7
7
|
"peerDependencies": {
|
|
8
|
+
"@angular-architects/module-federation-tools": "17.x.x",
|
|
8
9
|
"@angular/common": "18.x.x",
|
|
9
10
|
"@angular/core": "18.x.x",
|
|
10
11
|
"@ionic/angular": "7.x.x",
|