feat(layout): enhance topbar with customizable templates and full-page support

- Updated app.layout.component.html to include start, center, and end templates for the topbar.
- Modified app.layout.component.ts to manage new template references and added isFullPage getter.
- Refactored app.topbar.component.html to utilize new templates and improved layout structure.
- Enhanced app.topbar.component.ts to accept new input properties for templates.
- Updated layout.service.ts to manage full-page state and new topbar slots.
- Added new payment bridge services for POS functionality.
- Introduced greater validator for form validation.
- Improved dialog component to support mobile drawer and responsive design.
- Updated styles for better mobile support and layout adjustments.
- Added new main menu sidebar for POS with dynamic content.
This commit is contained in:
2026-04-30 16:27:42 +03:30
parent c89d4027d6
commit 8104f1b7a7
56 changed files with 1130 additions and 434 deletions
+27 -7
View File
@@ -2,13 +2,11 @@ import ISummary from '@/core/models/summary';
export interface IPosInfoRawResponse {
name: string;
complex: {
id: string;
name: string;
branch_code: string;
};
businessActivity: ISummary;
guild: ISummary;
complex: Complex;
businessActivity: BusinessActivity;
guild: Guild;
license_info: LicenseInfo;
partner: Partner;
}
export interface IPosInfoResponse extends IPosInfoRawResponse {}
@@ -21,3 +19,25 @@ export interface IPosAccessibleResponse extends IPosAccessibleRawResponse {}
interface Complex extends ISummary {
business_activity: ISummary;
}
interface LicenseInfo {
expires_at: string;
license_id: string;
}
interface Guild extends ISummary {
code: string;
}
interface Partner extends ISummary {
code: string;
logo_url?: string;
}
interface BusinessActivity extends ISummary {
economic_code: string;
}
interface Complex extends ISummary {
branch_code: string;
}