@rolatech/angular-components 17.4.27 → 17.5.0

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.
Files changed (75) hide show
  1. package/esm2022/index.mjs +6 -6
  2. package/esm2022/lib/angular-components.module.mjs +4 -4
  3. package/esm2022/lib/avatar/avatar.component.mjs +3 -3
  4. package/esm2022/lib/chip-bar/chip-bar.component.mjs +3 -3
  5. package/esm2022/lib/confirmation-dialog/confirmation-dialog.component.mjs +3 -3
  6. package/esm2022/lib/console-layout/console-layout.component.mjs +3 -3
  7. package/esm2022/lib/container/container.component.mjs +20 -0
  8. package/esm2022/lib/container-content/container-content.component.mjs +13 -0
  9. package/esm2022/lib/content/content.component.mjs +3 -3
  10. package/esm2022/lib/drawer/drawer.component.mjs +117 -0
  11. package/esm2022/lib/drawer/expansion-animations.mjs +33 -0
  12. package/esm2022/lib/empty/empty.component.mjs +3 -3
  13. package/esm2022/lib/folder/folder.component.mjs +3 -3
  14. package/esm2022/lib/footer/footer.component.mjs +24 -0
  15. package/esm2022/lib/icon/icon.component.mjs +3 -3
  16. package/esm2022/lib/icon-button/icon-button.component.mjs +3 -3
  17. package/esm2022/lib/image/image.component.mjs +3 -3
  18. package/esm2022/lib/image-placeholder/image-placeholder.component.mjs +3 -3
  19. package/esm2022/lib/image-preview-dialog/image-preview-dialog.component.mjs +3 -3
  20. package/esm2022/lib/input/input.component.mjs +3 -3
  21. package/esm2022/lib/layout/layout.component.mjs +102 -0
  22. package/esm2022/lib/list/list.component.mjs +3 -3
  23. package/esm2022/lib/material.module.mjs +4 -4
  24. package/esm2022/lib/media-list/media-list.component.mjs +3 -3
  25. package/esm2022/lib/media-list-item/media-list-item.component.mjs +3 -3
  26. package/esm2022/lib/media-preview/media-preview.component.mjs +3 -3
  27. package/esm2022/lib/media-preview-dialog/media-preview-dialog.component.mjs +3 -3
  28. package/esm2022/lib/media-upload/media-upload.component.mjs +3 -3
  29. package/esm2022/lib/media-upload-dialog/media-upload-dialog.component.mjs +3 -3
  30. package/esm2022/lib/menu-icon/menu-icon.component.mjs +3 -3
  31. package/esm2022/lib/menu-user/menu-user.component.mjs +3 -3
  32. package/esm2022/lib/mini-guide/mini-guide.component.mjs +3 -3
  33. package/esm2022/lib/not-found/not-found.component.mjs +3 -3
  34. package/esm2022/lib/page/page.component.mjs +24 -0
  35. package/esm2022/lib/paginator/paginator.component.mjs +3 -3
  36. package/esm2022/lib/rich-item/rich-item.component.mjs +3 -3
  37. package/esm2022/lib/rich-view/rich-view.component.mjs +3 -3
  38. package/esm2022/lib/spacer/spacer.component.mjs +3 -3
  39. package/esm2022/lib/spinner/spinner.component.mjs +3 -3
  40. package/esm2022/lib/storage-bucket-create/storage-bucket-create.component.mjs +3 -3
  41. package/esm2022/lib/storage-file-upload/storage-file-upload.component.mjs +3 -3
  42. package/esm2022/lib/storage-folder-create/storage-folder-create.component.mjs +3 -3
  43. package/esm2022/lib/tab/tab.component.mjs +3 -3
  44. package/esm2022/lib/table/table.component.mjs +3 -3
  45. package/esm2022/lib/tabs/tabs.component.mjs +3 -3
  46. package/esm2022/lib/thumbnail/thumbnail.component.mjs +3 -3
  47. package/esm2022/lib/title/title.component.mjs +3 -3
  48. package/esm2022/lib/toolbar/toolbar.component.mjs +3 -3
  49. package/esm2022/lib/topbar/topbar.component.mjs +5 -5
  50. package/esm2022/lib/topbar-avatar-menu/topbar-avatar-menu.component.mjs +3 -3
  51. package/esm2022/lib/wechat-connect-dialog/wechat-connect-dialog.component.mjs +3 -3
  52. package/esm2022/provider.mjs +1 -1
  53. package/fesm2022/rolatech-angular-components.mjs +179 -179
  54. package/fesm2022/rolatech-angular-components.mjs.map +1 -1
  55. package/index.d.ts +5 -5
  56. package/lib/container/container.component.d.ts +7 -0
  57. package/lib/container-content/container-content.component.d.ts +5 -0
  58. package/lib/{app-drawer/app-drawer.component.d.ts → drawer/drawer.component.d.ts} +3 -3
  59. package/lib/footer/footer.component.d.ts +10 -0
  60. package/lib/{app-layout/app-layout.component.d.ts → layout/layout.component.d.ts} +5 -5
  61. package/lib/{app-page/app-page.component.d.ts → page/page.component.d.ts} +1 -1
  62. package/lib/topbar/topbar.component.d.ts +2 -2
  63. package/package.json +1 -1
  64. package/provider.d.ts +2 -2
  65. package/esm2022/lib/app-container/app-container.component.mjs +0 -20
  66. package/esm2022/lib/app-container-content/app-container-content.component.mjs +0 -13
  67. package/esm2022/lib/app-drawer/app-drawer.component.mjs +0 -117
  68. package/esm2022/lib/app-drawer/expansion-animations.mjs +0 -33
  69. package/esm2022/lib/app-footer/app-footer.component.mjs +0 -24
  70. package/esm2022/lib/app-layout/app-layout.component.mjs +0 -102
  71. package/esm2022/lib/app-page/app-page.component.mjs +0 -24
  72. package/lib/app-container/app-container.component.d.ts +0 -7
  73. package/lib/app-container-content/app-container-content.component.d.ts +0 -5
  74. package/lib/app-footer/app-footer.component.d.ts +0 -10
  75. /package/lib/{app-drawer → drawer}/expansion-animations.d.ts +0 -0
@@ -14,10 +14,10 @@ export class TopbarAvatarMenuComponent {
14
14
  platformId = inject(PLATFORM_ID);
15
15
  menu = input.required();
16
16
  avatar = input();
17
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: TopbarAvatarMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
18
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: TopbarAvatarMenuComponent, isStandalone: true, selector: "rolatech-topbar-avatar-menu", inputs: { menu: { classPropertyName: "menu", publicName: "menu", isSignal: true, isRequired: true, transformFunction: null }, avatar: { classPropertyName: "avatar", publicName: "avatar", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<div class=\"flex\">\n <a\n class=\"flex justify-center items-center rounded-full overflow-hidden cursor-pointer hover:outline-[--rt-raised-background] outline outline-transparent outline-4\"\n [matMenuTriggerFor]=\"menu()\"\n >\n <div class=\"bg-orange-600 w-9 h-9\">\n @if (avatar()) {\n <img class=\"w-9 h-9 object-cover\" [src]=\"avatar()\" />\n }\n </div>\n </a>\n</div>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: MatSidenavModule }, { kind: "ngmodule", type: MatListModule }, { kind: "ngmodule", type: MatIconModule }, { kind: "ngmodule", type: MatMenuModule }, { kind: "directive", type: i1.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }] });
17
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: TopbarAvatarMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
18
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.3", type: TopbarAvatarMenuComponent, isStandalone: true, selector: "rolatech-topbar-avatar-menu", inputs: { menu: { classPropertyName: "menu", publicName: "menu", isSignal: true, isRequired: true, transformFunction: null }, avatar: { classPropertyName: "avatar", publicName: "avatar", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<div class=\"flex\">\n <a\n class=\"flex justify-center items-center rounded-full overflow-hidden cursor-pointer hover:outline-[--rt-raised-background] outline outline-transparent outline-4\"\n [matMenuTriggerFor]=\"menu()\"\n >\n <div class=\"bg-orange-600 w-9 h-9\">\n @if (avatar()) {\n <img class=\"w-9 h-9 object-cover\" [src]=\"avatar()\" />\n }\n </div>\n </a>\n</div>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: MatSidenavModule }, { kind: "ngmodule", type: MatListModule }, { kind: "ngmodule", type: MatIconModule }, { kind: "ngmodule", type: MatMenuModule }, { kind: "directive", type: i1.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }] });
19
19
  }
20
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: TopbarAvatarMenuComponent, decorators: [{
20
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: TopbarAvatarMenuComponent, decorators: [{
21
21
  type: Component,
22
22
  args: [{ selector: 'rolatech-topbar-avatar-menu', standalone: true, imports: [
23
23
  CommonModule,
@@ -24,10 +24,10 @@ export class WechatConnectDialogComponent {
24
24
  this.dialogRef.close();
25
25
  }
26
26
  }
27
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: WechatConnectDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
28
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: WechatConnectDialogComponent, isStandalone: true, selector: "rolatech-wechat-connect-dialog", host: { listeners: { "window:message": "onLogin($event)" } }, ngImport: i0, template: "<div class=\"flex flex-col p-3\">\n <div class=\"text-xl font-bold\">\u626B\u7801\u7ED1\u5B9A\u5FAE\u4FE1\uFF0C\u63D0\u5347\u8D26\u53F7\u5B89\u5168\u548C\u4F7F\u7528\u4FBF\u5229\u6027</div>\n <div class=\"w-[190px] h-[190px]\">\n <iframe [src]=\"urlSafe\" class=\"w-full h-full inline\" scrolling=\"no\" frameBorder=\"no\"></iframe>\n <div></div>\n </div>\n</div>\n", styles: ["*{margin:0;padding:0}.normalPanel .panelContent{width:188px;height:188px}.normalPanel .wrp_code{position:relative;width:188px;height:188px;margin:0}.impowerBox .title,.normalPanel .info{display:none}.impowerBox .qrcode{margin-top:0;border:0;width:188px;height:188px}#MAXIM{content:\"veg20170418191511\"}mat-mdc-dialog-content mdc-dialog__content{padding:0}\n"] });
27
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: WechatConnectDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
28
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: WechatConnectDialogComponent, isStandalone: true, selector: "rolatech-wechat-connect-dialog", host: { listeners: { "window:message": "onLogin($event)" } }, ngImport: i0, template: "<div class=\"flex flex-col p-3\">\n <div class=\"text-xl font-bold\">\u626B\u7801\u7ED1\u5B9A\u5FAE\u4FE1\uFF0C\u63D0\u5347\u8D26\u53F7\u5B89\u5168\u548C\u4F7F\u7528\u4FBF\u5229\u6027</div>\n <div class=\"w-[190px] h-[190px]\">\n <iframe [src]=\"urlSafe\" class=\"w-full h-full inline\" scrolling=\"no\" frameBorder=\"no\"></iframe>\n <div></div>\n </div>\n</div>\n", styles: ["*{margin:0;padding:0}.normalPanel .panelContent{width:188px;height:188px}.normalPanel .wrp_code{position:relative;width:188px;height:188px;margin:0}.impowerBox .title,.normalPanel .info{display:none}.impowerBox .qrcode{margin-top:0;border:0;width:188px;height:188px}#MAXIM{content:\"veg20170418191511\"}mat-mdc-dialog-content mdc-dialog__content{padding:0}\n"] });
29
29
  }
30
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: WechatConnectDialogComponent, decorators: [{
30
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: WechatConnectDialogComponent, decorators: [{
31
31
  type: Component,
32
32
  args: [{ selector: 'rolatech-wechat-connect-dialog', standalone: true, template: "<div class=\"flex flex-col p-3\">\n <div class=\"text-xl font-bold\">\u626B\u7801\u7ED1\u5B9A\u5FAE\u4FE1\uFF0C\u63D0\u5347\u8D26\u53F7\u5B89\u5168\u548C\u4F7F\u7528\u4FBF\u5229\u6027</div>\n <div class=\"w-[190px] h-[190px]\">\n <iframe [src]=\"urlSafe\" class=\"w-full h-full inline\" scrolling=\"no\" frameBorder=\"no\"></iframe>\n <div></div>\n </div>\n</div>\n", styles: ["*{margin:0;padding:0}.normalPanel .panelContent{width:188px;height:188px}.normalPanel .wrp_code{position:relative;width:188px;height:188px;margin:0}.impowerBox .title,.normalPanel .info{display:none}.impowerBox .qrcode{margin-top:0;border:0;width:188px;height:188px}#MAXIM{content:\"veg20170418191511\"}mat-mdc-dialog-content mdc-dialog__content{padding:0}\n"] }]
33
33
  }], ctorParameters: () => [], propDecorators: { onLogin: [{
@@ -9,4 +9,4 @@ export function provideAngularLayout(config) {
9
9
  ];
10
10
  return makeEnvironmentProviders(providers);
11
11
  }
12
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvdmlkZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9saWJzL2FuZ3VsYXItY29tcG9uZW50cy9zcmMvcHJvdmlkZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUF3QixjQUFjLEVBQVksd0JBQXdCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFpQnpHLE1BQU0sQ0FBQyxNQUFNLFVBQVUsR0FBRyxJQUFJLGNBQWMsQ0FBa0IsWUFBWSxDQUFDLENBQUM7QUFFNUUsTUFBTSxVQUFVLG9CQUFvQixDQUFDLE1BQXdCO0lBQzNELE1BQU0sU0FBUyxHQUF3QztRQUNyRDtZQUNFLE9BQU8sRUFBRSxVQUFVO1lBQ25CLFFBQVEsRUFBRSxNQUFNO1NBQ2pCO0tBQ0YsQ0FBQztJQUNGLE9BQU8sd0JBQXdCLENBQUMsU0FBUyxDQUFDLENBQUM7QUFDN0MsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEVudmlyb25tZW50UHJvdmlkZXJzLCBJbmplY3Rpb25Ub2tlbiwgUHJvdmlkZXIsIG1ha2VFbnZpcm9ubWVudFByb3ZpZGVycyB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5leHBvcnQgaW50ZXJmYWNlIEFwcERyYXdlckNvbmZpZyB7XG4gIHBlcnNpc3RlbnQ6IGJvb2xlYW47XG59XG5leHBvcnQgaW50ZXJmYWNlIEFwcFRvcGJhckNvbmZpZyB7XG4gIHBlcnNpc3RlbnQ6IGJvb2xlYW47XG59XG5leHBvcnQgaW50ZXJmYWNlIEFwcExheW91dENvbmZpZyB7XG4gIHRpdGxlOiBzdHJpbmc7XG4gIHN1YnRpdGxlPzogc3RyaW5nO1xuICBwZXJzaXN0ZW50PzogYm9vbGVhbiB8IHVuZGVmaW5lZDtcbiAgdG9wYmFyPzogQXBwVG9wYmFyQ29uZmlnO1xuICBkcmF3ZXI/OiBBcHBEcmF3ZXJDb25maWc7XG4gIGd1aWRlPzogYm9vbGVhbiB8IHVuZGVmaW5lZDtcbn1cblxuZXhwb3J0IGNvbnN0IEFQUF9MQVlPVVQgPSBuZXcgSW5qZWN0aW9uVG9rZW48QXBwTGF5b3V0Q29uZmlnPignQVBQX0xBWU9VVCcpO1xuXG5leHBvcnQgZnVuY3Rpb24gcHJvdmlkZUFuZ3VsYXJMYXlvdXQoY29uZmlnPzogQXBwTGF5b3V0Q29uZmlnKTogRW52aXJvbm1lbnRQcm92aWRlcnMge1xuICBjb25zdCBwcm92aWRlcnM6IChQcm92aWRlciB8IEVudmlyb25tZW50UHJvdmlkZXJzKVtdID0gW1xuICAgIHtcbiAgICAgIHByb3ZpZGU6IEFQUF9MQVlPVVQsXG4gICAgICB1c2VWYWx1ZTogY29uZmlnLFxuICAgIH0sXG4gIF07XG4gIHJldHVybiBtYWtlRW52aXJvbm1lbnRQcm92aWRlcnMocHJvdmlkZXJzKTtcbn1cbiJdfQ==
12
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvdmlkZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9saWJzL2FuZ3VsYXItY29tcG9uZW50cy9zcmMvcHJvdmlkZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUF3QixjQUFjLEVBQVksd0JBQXdCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFpQnpHLE1BQU0sQ0FBQyxNQUFNLFVBQVUsR0FBRyxJQUFJLGNBQWMsQ0FBa0IsWUFBWSxDQUFDLENBQUM7QUFFNUUsTUFBTSxVQUFVLG9CQUFvQixDQUFDLE1BQXdCO0lBQzNELE1BQU0sU0FBUyxHQUF3QztRQUNyRDtZQUNFLE9BQU8sRUFBRSxVQUFVO1lBQ25CLFFBQVEsRUFBRSxNQUFNO1NBQ2pCO0tBQ0YsQ0FBQztJQUNGLE9BQU8sd0JBQXdCLENBQUMsU0FBUyxDQUFDLENBQUM7QUFDN0MsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEVudmlyb25tZW50UHJvdmlkZXJzLCBJbmplY3Rpb25Ub2tlbiwgUHJvdmlkZXIsIG1ha2VFbnZpcm9ubWVudFByb3ZpZGVycyB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5leHBvcnQgaW50ZXJmYWNlIERyYXdlckNvbmZpZyB7XG4gIHBlcnNpc3RlbnQ6IGJvb2xlYW47XG59XG5leHBvcnQgaW50ZXJmYWNlIEFwcFRvcGJhckNvbmZpZyB7XG4gIHBlcnNpc3RlbnQ6IGJvb2xlYW47XG59XG5leHBvcnQgaW50ZXJmYWNlIEFwcExheW91dENvbmZpZyB7XG4gIHRpdGxlOiBzdHJpbmc7XG4gIHN1YnRpdGxlPzogc3RyaW5nO1xuICBwZXJzaXN0ZW50PzogYm9vbGVhbiB8IHVuZGVmaW5lZDtcbiAgdG9wYmFyPzogQXBwVG9wYmFyQ29uZmlnO1xuICBkcmF3ZXI/OiBEcmF3ZXJDb25maWc7XG4gIGd1aWRlPzogYm9vbGVhbiB8IHVuZGVmaW5lZDtcbn1cblxuZXhwb3J0IGNvbnN0IEFQUF9MQVlPVVQgPSBuZXcgSW5qZWN0aW9uVG9rZW48QXBwTGF5b3V0Q29uZmlnPignQVBQX0xBWU9VVCcpO1xuXG5leHBvcnQgZnVuY3Rpb24gcHJvdmlkZUFuZ3VsYXJMYXlvdXQoY29uZmlnPzogQXBwTGF5b3V0Q29uZmlnKTogRW52aXJvbm1lbnRQcm92aWRlcnMge1xuICBjb25zdCBwcm92aWRlcnM6IChQcm92aWRlciB8IEVudmlyb25tZW50UHJvdmlkZXJzKVtdID0gW1xuICAgIHtcbiAgICAgIHByb3ZpZGU6IEFQUF9MQVlPVVQsXG4gICAgICB1c2VWYWx1ZTogY29uZmlnLFxuICAgIH0sXG4gIF07XG4gIHJldHVybiBtYWtlRW52aXJvbm1lbnRQcm92aWRlcnMocHJvdmlkZXJzKTtcbn1cbiJdfQ==