uapp-communication-sdk 1.0.0-dev.114 → 1.0.0-dev.116

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 (160) hide show
  1. package/{CloudflareMeetingExperience-B4DDJ_J3.cjs → CloudflareMeetingExperience-BxYAkD6u.cjs} +2 -2
  2. package/{CloudflareMeetingExperience-LrMtoftH.js → CloudflareMeetingExperience-C_gT6XSQ.js} +3 -3
  3. package/{ExperienceError-D9S8PQbQ.js → ExperienceError-Bc2ulbHe.js} +2 -2
  4. package/{ExperienceError-Bkb6cI2H.cjs → ExperienceError-CWDatkwP.cjs} +2 -2
  5. package/{ZoomMeetingExperience-k_A10vQd.js → ZoomMeetingExperience-CKvBItWD.js} +3 -3
  6. package/{ZoomMeetingExperience-Bk31KY_k.cjs → ZoomMeetingExperience-Cx2fME7Q.cjs} +2 -2
  7. package/communication-sdk.cjs +5 -5
  8. package/communication-sdk.js +2179 -2167
  9. package/communication-sdk.standalone.js +139 -139
  10. package/package.json +1 -1
  11. package/types/app/App.d.ts +1 -2
  12. package/types/app/App.d.ts.map +1 -1
  13. package/types/app/AppFeatureProviders.d.ts +8 -0
  14. package/types/app/AppFeatureProviders.d.ts.map +1 -0
  15. package/types/app/di/composition-root.d.ts +2 -0
  16. package/types/app/di/composition-root.d.ts.map +1 -1
  17. package/types/app/router/AppRouter.d.ts.map +1 -1
  18. package/types/features/chat/infrastructure/chat-realtime-protocol.d.ts +2 -2
  19. package/types/features/chat/infrastructure/dto/chat-dtos.d.ts +4 -4
  20. package/types/features/chat/presentation/use-jump-to-message.d.ts +1 -1
  21. package/types/features/chat/presentation/use-jump-to-message.d.ts.map +1 -1
  22. package/types/features/feed/infrastructure/dto/feed-dtos.d.ts +4 -4
  23. package/types/features/org/infrastructure/dto/org-dtos.d.ts +12 -12
  24. package/types/features/permissions/presentation/use-permission-mutations.d.ts.map +1 -1
  25. package/types/features/settings/infrastructure/dto/feed-pref/feed-pref-dtos.d.ts +2 -2
  26. package/types/features/settings/infrastructure/dto/settings/settings-dtos.d.ts +12 -12
  27. package/types/features/tenant/application/get-tenant-dashboard-stats.use-case.d.ts +14 -0
  28. package/types/features/tenant/application/get-tenant-dashboard-stats.use-case.d.ts.map +1 -0
  29. package/types/features/tenant/application/get-tenant-general-settings.use-case.d.ts +11 -0
  30. package/types/features/tenant/application/get-tenant-general-settings.use-case.d.ts.map +1 -0
  31. package/types/features/tenant/application/get-tenant-list.use-case.d.ts +11 -0
  32. package/types/features/tenant/application/get-tenant-list.use-case.d.ts.map +1 -0
  33. package/types/features/tenant/application/index.d.ts +7 -0
  34. package/types/features/tenant/application/index.d.ts.map +1 -0
  35. package/types/features/tenant/application/login-tenant.use-case.d.ts +14 -0
  36. package/types/features/tenant/application/login-tenant.use-case.d.ts.map +1 -0
  37. package/types/features/tenant/application/register-tenant.use-case.d.ts +14 -0
  38. package/types/features/tenant/application/register-tenant.use-case.d.ts.map +1 -0
  39. package/types/features/tenant/application/update-tenant-general-settings.use-case.d.ts +11 -0
  40. package/types/features/tenant/application/update-tenant-general-settings.use-case.d.ts.map +1 -0
  41. package/types/features/tenant/domain/entities/tenant-dashboard-stats.d.ts +31 -0
  42. package/types/features/tenant/domain/entities/tenant-dashboard-stats.d.ts.map +1 -0
  43. package/types/features/tenant/domain/entities/tenant-general-settings.d.ts +22 -0
  44. package/types/features/tenant/domain/entities/tenant-general-settings.d.ts.map +1 -0
  45. package/types/features/tenant/domain/entities/tenant-item.d.ts +17 -0
  46. package/types/features/tenant/domain/entities/tenant-item.d.ts.map +1 -0
  47. package/types/features/tenant/domain/errors/tenant-errors.d.ts +20 -0
  48. package/types/features/tenant/domain/errors/tenant-errors.d.ts.map +1 -0
  49. package/types/features/tenant/domain/index.d.ts +7 -0
  50. package/types/features/tenant/domain/index.d.ts.map +1 -0
  51. package/types/features/tenant/domain/ports/tenant-auth-gateway.d.ts +37 -0
  52. package/types/features/tenant/domain/ports/tenant-auth-gateway.d.ts.map +1 -0
  53. package/types/features/tenant/domain/value-objects/index.d.ts +6 -0
  54. package/types/features/tenant/domain/value-objects/index.d.ts.map +1 -0
  55. package/types/features/tenant/domain/value-objects/tenant-app-name.vo.d.ts +8 -0
  56. package/types/features/tenant/domain/value-objects/tenant-app-name.vo.d.ts.map +1 -0
  57. package/types/features/tenant/domain/value-objects/tenant-password.vo.d.ts +8 -0
  58. package/types/features/tenant/domain/value-objects/tenant-password.vo.d.ts.map +1 -0
  59. package/types/features/tenant/domain/value-objects/tenant-person-name.vo.d.ts +8 -0
  60. package/types/features/tenant/domain/value-objects/tenant-person-name.vo.d.ts.map +1 -0
  61. package/types/features/tenant/domain/value-objects/tenant-phone.vo.d.ts +8 -0
  62. package/types/features/tenant/domain/value-objects/tenant-phone.vo.d.ts.map +1 -0
  63. package/types/features/tenant/domain/value-objects/tenant-user-name.vo.d.ts +8 -0
  64. package/types/features/tenant/domain/value-objects/tenant-user-name.vo.d.ts.map +1 -0
  65. package/types/features/tenant/index.d.ts +6 -0
  66. package/types/features/tenant/index.d.ts.map +1 -0
  67. package/types/features/tenant/infrastructure/index.d.ts +2 -0
  68. package/types/features/tenant/infrastructure/index.d.ts.map +1 -0
  69. package/types/features/tenant/infrastructure/mock-tenant-auth-gateway.d.ts +17 -0
  70. package/types/features/tenant/infrastructure/mock-tenant-auth-gateway.d.ts.map +1 -0
  71. package/types/features/tenant/presentation/TenantModuleProvider.d.ts +8 -0
  72. package/types/features/tenant/presentation/TenantModuleProvider.d.ts.map +1 -0
  73. package/types/features/tenant/presentation/components/RegisterFormFields.d.ts +10 -0
  74. package/types/features/tenant/presentation/components/RegisterFormFields.d.ts.map +1 -0
  75. package/types/features/tenant/presentation/components/TenantAuthLayout.d.ts +10 -0
  76. package/types/features/tenant/presentation/components/TenantAuthLayout.d.ts.map +1 -0
  77. package/types/features/tenant/presentation/components/TenantLoginForm.d.ts +7 -0
  78. package/types/features/tenant/presentation/components/TenantLoginForm.d.ts.map +1 -0
  79. package/types/features/tenant/presentation/components/TenantRegisterForm.d.ts +12 -0
  80. package/types/features/tenant/presentation/components/TenantRegisterForm.d.ts.map +1 -0
  81. package/types/features/tenant/presentation/components/dashboard/GrowthChartSvg.d.ts +7 -0
  82. package/types/features/tenant/presentation/components/dashboard/GrowthChartSvg.d.ts.map +1 -0
  83. package/types/features/tenant/presentation/components/dashboard/TenantKpiCards.d.ts +7 -0
  84. package/types/features/tenant/presentation/components/dashboard/TenantKpiCards.d.ts.map +1 -0
  85. package/types/features/tenant/presentation/components/dashboard/UserDistributionChart.d.ts +8 -0
  86. package/types/features/tenant/presentation/components/dashboard/UserDistributionChart.d.ts.map +1 -0
  87. package/types/features/tenant/presentation/components/dashboard/UserGrowthChart.d.ts +8 -0
  88. package/types/features/tenant/presentation/components/dashboard/UserGrowthChart.d.ts.map +1 -0
  89. package/types/features/tenant/presentation/components/dashboard/growth-chart-math.d.ts +37 -0
  90. package/types/features/tenant/presentation/components/dashboard/growth-chart-math.d.ts.map +1 -0
  91. package/types/features/tenant/presentation/components/manage/ColorPickerField.d.ts +7 -0
  92. package/types/features/tenant/presentation/components/manage/ColorPickerField.d.ts.map +1 -0
  93. package/types/features/tenant/presentation/components/manage/GeneralSettingsTab.d.ts +9 -0
  94. package/types/features/tenant/presentation/components/manage/GeneralSettingsTab.d.ts.map +1 -0
  95. package/types/features/tenant/presentation/components/manage/TenantManageHeader.d.ts +8 -0
  96. package/types/features/tenant/presentation/components/manage/TenantManageHeader.d.ts.map +1 -0
  97. package/types/features/tenant/presentation/components/manage/TenantManageTabs.d.ts +8 -0
  98. package/types/features/tenant/presentation/components/manage/TenantManageTabs.d.ts.map +1 -0
  99. package/types/features/tenant/presentation/components/manage/index.d.ts +4 -0
  100. package/types/features/tenant/presentation/components/manage/index.d.ts.map +1 -0
  101. package/types/features/tenant/presentation/components/registry/RegisterTenantFields.d.ts +12 -0
  102. package/types/features/tenant/presentation/components/registry/RegisterTenantFields.d.ts.map +1 -0
  103. package/types/features/tenant/presentation/components/registry/RegisterTenantModal.d.ts +50 -0
  104. package/types/features/tenant/presentation/components/registry/RegisterTenantModal.d.ts.map +1 -0
  105. package/types/features/tenant/presentation/components/registry/TableRowActions.d.ts +9 -0
  106. package/types/features/tenant/presentation/components/registry/TableRowActions.d.ts.map +1 -0
  107. package/types/features/tenant/presentation/components/registry/TenantCardActions.d.ts +10 -0
  108. package/types/features/tenant/presentation/components/registry/TenantCardActions.d.ts.map +1 -0
  109. package/types/features/tenant/presentation/components/registry/TenantCardGrid.d.ts +12 -0
  110. package/types/features/tenant/presentation/components/registry/TenantCardGrid.d.ts.map +1 -0
  111. package/types/features/tenant/presentation/components/registry/TenantCardModules.d.ts +6 -0
  112. package/types/features/tenant/presentation/components/registry/TenantCardModules.d.ts.map +1 -0
  113. package/types/features/tenant/presentation/components/registry/TenantGridCard.d.ts +11 -0
  114. package/types/features/tenant/presentation/components/registry/TenantGridCard.d.ts.map +1 -0
  115. package/types/features/tenant/presentation/components/registry/TenantQuickFilterCards.d.ts +12 -0
  116. package/types/features/tenant/presentation/components/registry/TenantQuickFilterCards.d.ts.map +1 -0
  117. package/types/features/tenant/presentation/components/registry/TenantRegistryHeader.d.ts +9 -0
  118. package/types/features/tenant/presentation/components/registry/TenantRegistryHeader.d.ts.map +1 -0
  119. package/types/features/tenant/presentation/components/registry/TenantSearchToolbar.d.ts +11 -0
  120. package/types/features/tenant/presentation/components/registry/TenantSearchToolbar.d.ts.map +1 -0
  121. package/types/features/tenant/presentation/components/registry/TenantTable.d.ts +11 -0
  122. package/types/features/tenant/presentation/components/registry/TenantTable.d.ts.map +1 -0
  123. package/types/features/tenant/presentation/components/registry/TenantTableRow.d.ts +10 -0
  124. package/types/features/tenant/presentation/components/registry/TenantTableRow.d.ts.map +1 -0
  125. package/types/features/tenant/presentation/components/registry/index.d.ts +8 -0
  126. package/types/features/tenant/presentation/components/registry/index.d.ts.map +1 -0
  127. package/types/features/tenant/presentation/components/registry/quick-filter-icons.d.ts +6 -0
  128. package/types/features/tenant/presentation/components/registry/quick-filter-icons.d.ts.map +1 -0
  129. package/types/features/tenant/presentation/components/registry/register-tenant-sub-components.d.ts +13 -0
  130. package/types/features/tenant/presentation/components/registry/register-tenant-sub-components.d.ts.map +1 -0
  131. package/types/features/tenant/presentation/components/registry/registry-action-icons.d.ts +6 -0
  132. package/types/features/tenant/presentation/components/registry/registry-action-icons.d.ts.map +1 -0
  133. package/types/features/tenant/presentation/components/registry/tenant-icon-renderer.d.ts +4 -0
  134. package/types/features/tenant/presentation/components/registry/tenant-icon-renderer.d.ts.map +1 -0
  135. package/types/features/tenant/presentation/index.d.ts +12 -0
  136. package/types/features/tenant/presentation/index.d.ts.map +1 -0
  137. package/types/features/tenant/presentation/pages/TenantDashboardPage.d.ts +3 -0
  138. package/types/features/tenant/presentation/pages/TenantDashboardPage.d.ts.map +1 -0
  139. package/types/features/tenant/presentation/pages/TenantLoginPage.d.ts +3 -0
  140. package/types/features/tenant/presentation/pages/TenantLoginPage.d.ts.map +1 -0
  141. package/types/features/tenant/presentation/pages/TenantManagePage.d.ts +3 -0
  142. package/types/features/tenant/presentation/pages/TenantManagePage.d.ts.map +1 -0
  143. package/types/features/tenant/presentation/pages/TenantRegisterPage.d.ts +3 -0
  144. package/types/features/tenant/presentation/pages/TenantRegisterPage.d.ts.map +1 -0
  145. package/types/features/tenant/presentation/pages/TenantsRegistryContent.d.ts +15 -0
  146. package/types/features/tenant/presentation/pages/TenantsRegistryContent.d.ts.map +1 -0
  147. package/types/features/tenant/presentation/pages/TenantsRegistryPage.d.ts +3 -0
  148. package/types/features/tenant/presentation/pages/TenantsRegistryPage.d.ts.map +1 -0
  149. package/types/features/tenant/presentation/pages/use-tenants-registry-data.d.ts +9 -0
  150. package/types/features/tenant/presentation/pages/use-tenants-registry-data.d.ts.map +1 -0
  151. package/types/features/tenant/presentation/tenant-module-context.d.ts +3 -0
  152. package/types/features/tenant/presentation/tenant-module-context.d.ts.map +1 -0
  153. package/types/features/tenant/presentation/use-tenant-module.d.ts +3 -0
  154. package/types/features/tenant/presentation/use-tenant-module.d.ts.map +1 -0
  155. package/types/features/tenant/tenant-module.d.ts +19 -0
  156. package/types/features/tenant/tenant-module.d.ts.map +1 -0
  157. package/types/features/users/infrastructure/dto/user-dtos.d.ts +24 -24
  158. package/types/shared/ui/Tooltip/Tooltip.d.ts.map +1 -1
  159. package/{use-active-meeting-store-BZFagv6v.js → use-active-meeting-store-CNyx0nrT.js} +16 -10
  160. package/{use-active-meeting-store-C-MpvHC1.cjs → use-active-meeting-store-D_OYWUwX.cjs} +2 -2
@@ -0,0 +1,7 @@
1
+ export * from './errors/tenant-errors';
2
+ export * from './value-objects';
3
+ export * from './entities/tenant-dashboard-stats';
4
+ export * from './entities/tenant-item';
5
+ export * from './entities/tenant-general-settings';
6
+ export * from './ports/tenant-auth-gateway';
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/features/tenant/domain/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAC;AACvC,cAAc,iBAAiB,CAAC;AAChC,cAAc,mCAAmC,CAAC;AAClD,cAAc,wBAAwB,CAAC;AACvC,cAAc,oCAAoC,CAAC;AACnD,cAAc,6BAA6B,CAAC"}
@@ -0,0 +1,37 @@
1
+ import type { Result } from '@core/result';
2
+ import type { TenantError } from '../errors/tenant-errors';
3
+ import type { TenantDashboardStats } from '../entities/tenant-dashboard-stats';
4
+ import type { TenantItem } from '../entities/tenant-item';
5
+ import type { TenantGeneralSettings, UpdateTenantGeneralSettingsCommand } from '../entities/tenant-general-settings';
6
+ export interface TenantRegisterCommand {
7
+ readonly userName: string;
8
+ readonly emailAddress: string;
9
+ readonly password: string;
10
+ readonly appName: string;
11
+ readonly firstName: string;
12
+ readonly lastName: string;
13
+ readonly phoneNumber: string;
14
+ }
15
+ export interface TenantRegisterResult {
16
+ readonly success: boolean;
17
+ readonly message: string;
18
+ readonly tenantId?: string;
19
+ }
20
+ export interface TenantLoginCommand {
21
+ readonly userName: string;
22
+ readonly password: string;
23
+ }
24
+ export interface TenantLoginResult {
25
+ readonly success: boolean;
26
+ readonly token: string;
27
+ readonly userName: string;
28
+ }
29
+ export interface TenantAuthGateway {
30
+ register(cmd: TenantRegisterCommand): Promise<Result<TenantRegisterResult, TenantError>>;
31
+ login(cmd: TenantLoginCommand): Promise<Result<TenantLoginResult, TenantError>>;
32
+ getDashboardStats(): Promise<Result<TenantDashboardStats, TenantError>>;
33
+ getTenantList(): Promise<Result<readonly TenantItem[], TenantError>>;
34
+ getTenantGeneralSettings(id: string): Promise<Result<TenantGeneralSettings, TenantError>>;
35
+ updateTenantGeneralSettings(cmd: UpdateTenantGeneralSettingsCommand): Promise<Result<TenantGeneralSettings, TenantError>>;
36
+ }
37
+ //# sourceMappingURL=tenant-auth-gateway.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tenant-auth-gateway.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/tenant/domain/ports/tenant-auth-gateway.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AAC3C,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC3D,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,oCAAoC,CAAC;AAC/E,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,KAAK,EACV,qBAAqB,EACrB,kCAAkC,EACnC,MAAM,qCAAqC,CAAC;AAE7C,MAAM,WAAW,qBAAqB;IACpC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;CAC9B;AAED,MAAM,WAAW,oBAAoB;IACnC,QAAQ,CAAC,OAAO,EAAE,OAAO,CAAC;IAC1B,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED,MAAM,WAAW,kBAAkB;IACjC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;CAC3B;AAED,MAAM,WAAW,iBAAiB;IAChC,QAAQ,CAAC,OAAO,EAAE,OAAO,CAAC;IAC1B,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;CAC3B;AAED,MAAM,WAAW,iBAAiB;IAChC,QAAQ,CACN,GAAG,EAAE,qBAAqB,GACzB,OAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,WAAW,CAAC,CAAC,CAAC;IACtD,KAAK,CAAC,GAAG,EAAE,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,iBAAiB,EAAE,WAAW,CAAC,CAAC,CAAC;IAChF,iBAAiB,IAAI,OAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,WAAW,CAAC,CAAC,CAAC;IACxE,aAAa,IAAI,OAAO,CAAC,MAAM,CAAC,SAAS,UAAU,EAAE,EAAE,WAAW,CAAC,CAAC,CAAC;IACrE,wBAAwB,CACtB,EAAE,EAAE,MAAM,GACT,OAAO,CAAC,MAAM,CAAC,qBAAqB,EAAE,WAAW,CAAC,CAAC,CAAC;IACvD,2BAA2B,CACzB,GAAG,EAAE,kCAAkC,GACtC,OAAO,CAAC,MAAM,CAAC,qBAAqB,EAAE,WAAW,CAAC,CAAC,CAAC;CACxD"}
@@ -0,0 +1,6 @@
1
+ export * from './tenant-user-name.vo';
2
+ export * from './tenant-password.vo';
3
+ export * from './tenant-app-name.vo';
4
+ export * from './tenant-person-name.vo';
5
+ export * from './tenant-phone.vo';
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/tenant/domain/value-objects/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC"}
@@ -0,0 +1,8 @@
1
+ import { type Result } from '@core/result';
2
+ import { InvalidTenantFieldError } from '../errors/tenant-errors';
3
+ export declare class TenantAppName {
4
+ readonly value: string;
5
+ private constructor();
6
+ static create(raw: string): Result<TenantAppName, InvalidTenantFieldError>;
7
+ }
8
+ //# sourceMappingURL=tenant-app-name.vo.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tenant-app-name.vo.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/tenant/domain/value-objects/tenant-app-name.vo.ts"],"names":[],"mappings":"AAAA,OAAO,EAAW,KAAK,MAAM,EAAE,MAAM,cAAc,CAAC;AACpD,OAAO,EAAE,uBAAuB,EAAE,MAAM,yBAAyB,CAAC;AAElE,qBAAa,aAAa;IACxB,SAAgB,KAAK,EAAE,MAAM,CAAC;IAE9B,OAAO;WAIO,MAAM,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC,aAAa,EAAE,uBAAuB,CAAC;CAelF"}
@@ -0,0 +1,8 @@
1
+ import { type Result } from '@core/result';
2
+ import { InvalidTenantFieldError } from '../errors/tenant-errors';
3
+ export declare class TenantPassword {
4
+ readonly value: string;
5
+ private constructor();
6
+ static create(raw: string): Result<TenantPassword, InvalidTenantFieldError>;
7
+ }
8
+ //# sourceMappingURL=tenant-password.vo.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tenant-password.vo.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/tenant/domain/value-objects/tenant-password.vo.ts"],"names":[],"mappings":"AAAA,OAAO,EAAW,KAAK,MAAM,EAAE,MAAM,cAAc,CAAC;AACpD,OAAO,EAAE,uBAAuB,EAAE,MAAM,yBAAyB,CAAC;AAElE,qBAAa,cAAc;IACzB,SAAgB,KAAK,EAAE,MAAM,CAAC;IAE9B,OAAO;WAIO,MAAM,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC,cAAc,EAAE,uBAAuB,CAAC;CAWnF"}
@@ -0,0 +1,8 @@
1
+ import { type Result } from '@core/result';
2
+ import { InvalidTenantFieldError } from '../errors/tenant-errors';
3
+ export declare class TenantPersonName {
4
+ readonly value: string;
5
+ private constructor();
6
+ static create(raw: string, fieldName?: string): Result<TenantPersonName, InvalidTenantFieldError>;
7
+ }
8
+ //# sourceMappingURL=tenant-person-name.vo.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tenant-person-name.vo.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/tenant/domain/value-objects/tenant-person-name.vo.ts"],"names":[],"mappings":"AAAA,OAAO,EAAW,KAAK,MAAM,EAAE,MAAM,cAAc,CAAC;AACpD,OAAO,EAAE,uBAAuB,EAAE,MAAM,yBAAyB,CAAC;AAElE,qBAAa,gBAAgB;IAC3B,SAAgB,KAAK,EAAE,MAAM,CAAC;IAE9B,OAAO;WAIO,MAAM,CAClB,GAAG,EAAE,MAAM,EACX,SAAS,SAAS,GACjB,MAAM,CAAC,gBAAgB,EAAE,uBAAuB,CAAC;CAerD"}
@@ -0,0 +1,8 @@
1
+ import { type Result } from '@core/result';
2
+ import { InvalidTenantFieldError } from '../errors/tenant-errors';
3
+ export declare class TenantPhone {
4
+ readonly value: string;
5
+ private constructor();
6
+ static create(raw: string): Result<TenantPhone, InvalidTenantFieldError>;
7
+ }
8
+ //# sourceMappingURL=tenant-phone.vo.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tenant-phone.vo.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/tenant/domain/value-objects/tenant-phone.vo.ts"],"names":[],"mappings":"AAAA,OAAO,EAAW,KAAK,MAAM,EAAE,MAAM,cAAc,CAAC;AACpD,OAAO,EAAE,uBAAuB,EAAE,MAAM,yBAAyB,CAAC;AAIlE,qBAAa,WAAW;IACtB,SAAgB,KAAK,EAAE,MAAM,CAAC;IAE9B,OAAO;WAIO,MAAM,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC,WAAW,EAAE,uBAAuB,CAAC;CAiBhF"}
@@ -0,0 +1,8 @@
1
+ import { type Result } from '@core/result';
2
+ import { InvalidTenantFieldError } from '../errors/tenant-errors';
3
+ export declare class TenantUserName {
4
+ readonly value: string;
5
+ private constructor();
6
+ static create(raw: string): Result<TenantUserName, InvalidTenantFieldError>;
7
+ }
8
+ //# sourceMappingURL=tenant-user-name.vo.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tenant-user-name.vo.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/tenant/domain/value-objects/tenant-user-name.vo.ts"],"names":[],"mappings":"AAAA,OAAO,EAAW,KAAK,MAAM,EAAE,MAAM,cAAc,CAAC;AACpD,OAAO,EAAE,uBAAuB,EAAE,MAAM,yBAAyB,CAAC;AAIlE,qBAAa,cAAc;IACzB,SAAgB,KAAK,EAAE,MAAM,CAAC;IAE9B,OAAO;WAIO,MAAM,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC,cAAc,EAAE,uBAAuB,CAAC;CAoBnF"}
@@ -0,0 +1,6 @@
1
+ export * from './domain';
2
+ export * from './application';
3
+ export * from './infrastructure';
4
+ export * from './presentation';
5
+ export * from './tenant-module';
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/features/tenant/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './mock-tenant-auth-gateway';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/features/tenant/infrastructure/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC"}
@@ -0,0 +1,17 @@
1
+ import { type Result } from '@core/result';
2
+ import type { Logger } from '@core/logger';
3
+ import { type TenantAuthGateway, type TenantRegisterCommand, type TenantRegisterResult, type TenantLoginCommand, type TenantLoginResult, type TenantDashboardStats, type TenantItem, type TenantGeneralSettings, type UpdateTenantGeneralSettingsCommand, type TenantError } from '../domain';
4
+ export interface MockTenantAuthGatewayDeps {
5
+ readonly logger: Logger;
6
+ }
7
+ export declare class MockTenantAuthGateway implements TenantAuthGateway {
8
+ private readonly logger;
9
+ constructor(deps: MockTenantAuthGatewayDeps);
10
+ register(cmd: TenantRegisterCommand): Promise<Result<TenantRegisterResult, TenantError>>;
11
+ login(cmd: TenantLoginCommand): Promise<Result<TenantLoginResult, TenantError>>;
12
+ getDashboardStats(): Promise<Result<TenantDashboardStats, TenantError>>;
13
+ getTenantList(): Promise<Result<readonly TenantItem[], TenantError>>;
14
+ getTenantGeneralSettings(id: string): Promise<Result<TenantGeneralSettings, TenantError>>;
15
+ updateTenantGeneralSettings(cmd: UpdateTenantGeneralSettingsCommand): Promise<Result<TenantGeneralSettings, TenantError>>;
16
+ }
17
+ //# sourceMappingURL=mock-tenant-auth-gateway.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mock-tenant-auth-gateway.d.ts","sourceRoot":"","sources":["../../../../../../src/features/tenant/infrastructure/mock-tenant-auth-gateway.ts"],"names":[],"mappings":"AAAA,OAAO,EAAM,KAAK,MAAM,EAAE,MAAM,cAAc,CAAC;AAC/C,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AAC3C,OAAO,EACL,KAAK,iBAAiB,EACtB,KAAK,qBAAqB,EAC1B,KAAK,oBAAoB,EACzB,KAAK,kBAAkB,EACvB,KAAK,iBAAiB,EACtB,KAAK,oBAAoB,EACzB,KAAK,UAAU,EACf,KAAK,qBAAqB,EAC1B,KAAK,kCAAkC,EACvC,KAAK,WAAW,EACjB,MAAM,WAAW,CAAC;AAEnB,MAAM,WAAW,yBAAyB;IACxC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;CACzB;AA2JD,qBAAa,qBAAsB,YAAW,iBAAiB;IAC7D,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAS;gBAEb,IAAI,EAAE,yBAAyB;IAIrC,QAAQ,CACnB,GAAG,EAAE,qBAAqB,GACzB,OAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,WAAW,CAAC,CAAC;IAWxC,KAAK,CAChB,GAAG,EAAE,kBAAkB,GACtB,OAAO,CAAC,MAAM,CAAC,iBAAiB,EAAE,WAAW,CAAC,CAAC;IAarC,iBAAiB,IAAI,OAAO,CAAC,MAAM,CAAC,oBAAoB,EAAE,WAAW,CAAC,CAAC;IAuBvE,aAAa,IAAI,OAAO,CAAC,MAAM,CAAC,SAAS,UAAU,EAAE,EAAE,WAAW,CAAC,CAAC;IAMpE,wBAAwB,CACnC,EAAE,EAAE,MAAM,GACT,OAAO,CAAC,MAAM,CAAC,qBAAqB,EAAE,WAAW,CAAC,CAAC;IAqBzC,2BAA2B,CACtC,GAAG,EAAE,kCAAkC,GACtC,OAAO,CAAC,MAAM,CAAC,qBAAqB,EAAE,WAAW,CAAC,CAAC;CAsBvD"}
@@ -0,0 +1,8 @@
1
+ import type { ReactElement, ReactNode } from 'react';
2
+ import type { TenantModule } from '../tenant-module';
3
+ export interface TenantModuleProviderProps {
4
+ readonly module: TenantModule;
5
+ readonly children: ReactNode;
6
+ }
7
+ export declare const TenantModuleProvider: ({ module, children, }: TenantModuleProviderProps) => ReactElement;
8
+ //# sourceMappingURL=TenantModuleProvider.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TenantModuleProvider.d.ts","sourceRoot":"","sources":["../../../../../../src/features/tenant/presentation/TenantModuleProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACrD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAGrD,MAAM,WAAW,yBAAyB;IACxC,QAAQ,CAAC,MAAM,EAAE,YAAY,CAAC;IAC9B,QAAQ,CAAC,QAAQ,EAAE,SAAS,CAAC;CAC9B;AAED,eAAO,MAAM,oBAAoB,GAAI,uBAGlC,yBAAyB,KAAG,YAI9B,CAAC"}
@@ -0,0 +1,10 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { UseFormRegister, FieldErrors } from 'react-hook-form';
3
+ import type { RegisterFormValues } from './TenantRegisterForm';
4
+ interface RegisterFormFieldsProps {
5
+ readonly register: UseFormRegister<RegisterFormValues>;
6
+ readonly errors: FieldErrors<RegisterFormValues>;
7
+ }
8
+ export declare const RegisterFormFields: ({ register, errors, }: RegisterFormFieldsProps) => ReactElement;
9
+ export {};
10
+ //# sourceMappingURL=RegisterFormFields.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RegisterFormFields.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/tenant/presentation/components/RegisterFormFields.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAEpE,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAG/D,UAAU,uBAAuB;IAC/B,QAAQ,CAAC,QAAQ,EAAE,eAAe,CAAC,kBAAkB,CAAC,CAAC;IACvD,QAAQ,CAAC,MAAM,EAAE,WAAW,CAAC,kBAAkB,CAAC,CAAC;CAClD;AAUD,eAAO,MAAM,kBAAkB,GAAI,uBAGhC,uBAAuB,KAAG,YAiE5B,CAAC"}
@@ -0,0 +1,10 @@
1
+ import { type ReactElement, type ReactNode } from 'react';
2
+ export interface TenantAuthLayoutProps {
3
+ readonly title: string;
4
+ readonly subtitle: string;
5
+ readonly badgeText?: string;
6
+ readonly cardSize?: 'medium' | 'wide';
7
+ readonly children: ReactNode;
8
+ }
9
+ export declare const TenantAuthLayout: ({ title, subtitle, badgeText, cardSize, children, }: TenantAuthLayoutProps) => ReactElement;
10
+ //# sourceMappingURL=TenantAuthLayout.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TenantAuthLayout.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/tenant/presentation/components/TenantAuthLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,YAAY,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAM1D,MAAM,WAAW,qBAAqB;IACpC,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,SAAS,CAAC,EAAE,MAAM,CAAC;IAC5B,QAAQ,CAAC,QAAQ,CAAC,EAAE,QAAQ,GAAG,MAAM,CAAC;IACtC,QAAQ,CAAC,QAAQ,EAAE,SAAS,CAAC;CAC9B;AAED,eAAO,MAAM,gBAAgB,GAAI,qDAM9B,qBAAqB,KAAG,YAgD1B,CAAC"}
@@ -0,0 +1,7 @@
1
+ import { type ReactElement } from 'react';
2
+ export interface LoginFormValues {
3
+ readonly userName: string;
4
+ readonly password: string;
5
+ }
6
+ export declare const TenantLoginForm: () => ReactElement;
7
+ //# sourceMappingURL=TenantLoginForm.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TenantLoginForm.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/tenant/presentation/components/TenantLoginForm.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAY,KAAK,YAAY,EAAE,MAAM,OAAO,CAAC;AAWpD,MAAM,WAAW,eAAe;IAC9B,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;CAC3B;AAwCD,eAAO,MAAM,eAAe,QAAO,YA6DlC,CAAC"}
@@ -0,0 +1,12 @@
1
+ import { type ReactElement } from 'react';
2
+ export interface RegisterFormValues {
3
+ readonly userName: string;
4
+ readonly emailAddress: string;
5
+ readonly password: string;
6
+ readonly appName: string;
7
+ readonly firstName: string;
8
+ readonly lastName: string;
9
+ readonly phoneNumber: string;
10
+ }
11
+ export declare const TenantRegisterForm: () => ReactElement;
12
+ //# sourceMappingURL=TenantRegisterForm.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TenantRegisterForm.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/tenant/presentation/components/TenantRegisterForm.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAY,KAAK,YAAY,EAAE,MAAM,OAAO,CAAC;AAoBpD,MAAM,WAAW,kBAAkB;IACjC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;CAC9B;AAuDD,eAAO,MAAM,kBAAkB,QAAO,YA0CrC,CAAC"}
@@ -0,0 +1,7 @@
1
+ import type { ReactElement } from 'react';
2
+ import { type StackedChartPaths } from './growth-chart-math';
3
+ export interface GrowthChartSvgProps {
4
+ readonly chart: StackedChartPaths;
5
+ }
6
+ export declare const GrowthChartSvg: ({ chart }: GrowthChartSvgProps) => ReactElement;
7
+ //# sourceMappingURL=GrowthChartSvg.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GrowthChartSvg.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/dashboard/GrowthChartSvg.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAC1C,OAAO,EAKL,KAAK,iBAAiB,EACvB,MAAM,qBAAqB,CAAC;AAK7B,MAAM,WAAW,mBAAmB;IAClC,QAAQ,CAAC,KAAK,EAAE,iBAAiB,CAAC;CACnC;AAED,eAAO,MAAM,cAAc,GAAI,WAAW,mBAAmB,KAAG,YAkE/D,CAAC"}
@@ -0,0 +1,7 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { TenantKpiMetrics } from '../../../domain';
3
+ export interface TenantKpiCardsProps {
4
+ readonly kpis: TenantKpiMetrics;
5
+ }
6
+ export declare const TenantKpiCards: ({ kpis }: TenantKpiCardsProps) => ReactElement;
7
+ //# sourceMappingURL=TenantKpiCards.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TenantKpiCards.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/dashboard/TenantKpiCards.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAE1C,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AAGxD,MAAM,WAAW,mBAAmB;IAClC,QAAQ,CAAC,IAAI,EAAE,gBAAgB,CAAC;CACjC;AAED,eAAO,MAAM,cAAc,GAAI,UAAU,mBAAmB,KAAG,YAgE9D,CAAC"}
@@ -0,0 +1,8 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { UserDistributionItem } from '../../../domain';
3
+ export interface UserDistributionChartProps {
4
+ readonly distribution: readonly UserDistributionItem[];
5
+ readonly totalUsers: string;
6
+ }
7
+ export declare const UserDistributionChart: ({ distribution, totalUsers, }: UserDistributionChartProps) => ReactElement;
8
+ //# sourceMappingURL=UserDistributionChart.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UserDistributionChart.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/dashboard/UserDistributionChart.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;AAG5D,MAAM,WAAW,0BAA0B;IACzC,QAAQ,CAAC,YAAY,EAAE,SAAS,oBAAoB,EAAE,CAAC;IACvD,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;CAC7B;AAED,eAAO,MAAM,qBAAqB,GAAI,+BAGnC,0BAA0B,KAAG,YAmE/B,CAAC"}
@@ -0,0 +1,8 @@
1
+ import { type ReactElement } from 'react';
2
+ import type { UserGrowthDataPoint } from '../../../domain';
3
+ export interface UserGrowthChartProps {
4
+ readonly data30D: readonly UserGrowthDataPoint[];
5
+ readonly data90D: readonly UserGrowthDataPoint[];
6
+ }
7
+ export declare const UserGrowthChart: ({ data30D, data90D, }: UserGrowthChartProps) => ReactElement;
8
+ //# sourceMappingURL=UserGrowthChart.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UserGrowthChart.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/dashboard/UserGrowthChart.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAqB,KAAK,YAAY,EAAE,MAAM,OAAO,CAAC;AAE7D,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAC;AAK3D,MAAM,WAAW,oBAAoB;IACnC,QAAQ,CAAC,OAAO,EAAE,SAAS,mBAAmB,EAAE,CAAC;IACjD,QAAQ,CAAC,OAAO,EAAE,SAAS,mBAAmB,EAAE,CAAC;CAClD;AAED,eAAO,MAAM,eAAe,GAAI,uBAG7B,oBAAoB,KAAG,YA0CzB,CAAC"}
@@ -0,0 +1,37 @@
1
+ import type { UserGrowthDataPoint } from '../../../domain';
2
+ export declare const CHART_WIDTH = 640;
3
+ export declare const CHART_HEIGHT = 200;
4
+ export declare const PADDING_LEFT = 50;
5
+ export declare const PADDING_BOTTOM = 25;
6
+ export declare const PADDING_TOP = 15;
7
+ export declare const PADDING_RIGHT = 15;
8
+ export declare const MAX_Y = 6;
9
+ export declare const innerWidth: number;
10
+ export declare const innerHeight: number;
11
+ export declare const getPointX: (index: number, total: number) => number;
12
+ export declare const getPointY: (val: number) => number;
13
+ export declare const buildAreaPath: (upper: readonly {
14
+ x: number;
15
+ y: number;
16
+ }[], lower: readonly {
17
+ x: number;
18
+ y: number;
19
+ }[]) => string;
20
+ export declare const buildLinePath: (pts: readonly {
21
+ x: number;
22
+ y: number;
23
+ }[]) => string;
24
+ export interface StackedChartPaths {
25
+ readonly topArea: string;
26
+ readonly midArea: string;
27
+ readonly botArea: string;
28
+ readonly topLine: string;
29
+ readonly midLine: string;
30
+ readonly botLine: string;
31
+ readonly points: readonly {
32
+ x: number;
33
+ label: string;
34
+ }[];
35
+ }
36
+ export declare const computeStackedPaths: (data: readonly UserGrowthDataPoint[]) => StackedChartPaths;
37
+ //# sourceMappingURL=growth-chart-math.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"growth-chart-math.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/dashboard/growth-chart-math.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAC;AAE3D,eAAO,MAAM,WAAW,MAAM,CAAC;AAC/B,eAAO,MAAM,YAAY,MAAM,CAAC;AAChC,eAAO,MAAM,YAAY,KAAK,CAAC;AAC/B,eAAO,MAAM,cAAc,KAAK,CAAC;AACjC,eAAO,MAAM,WAAW,KAAK,CAAC;AAC9B,eAAO,MAAM,aAAa,KAAK,CAAC;AAChC,eAAO,MAAM,KAAK,IAAI,CAAC;AAEvB,eAAO,MAAM,UAAU,QAA6C,CAAC;AACrE,eAAO,MAAM,WAAW,QAA8C,CAAC;AAEvE,eAAO,MAAM,SAAS,GAAI,OAAO,MAAM,EAAE,OAAO,MAAM,KAAG,MAExD,CAAC;AAEF,eAAO,MAAM,SAAS,GAAI,KAAK,MAAM,KAAG,MAEvC,CAAC;AAEF,eAAO,MAAM,aAAa,GACxB,OAAO,SAAS;IAAE,CAAC,EAAE,MAAM,CAAC;IAAC,CAAC,EAAE,MAAM,CAAA;CAAE,EAAE,EAC1C,OAAO,SAAS;IAAE,CAAC,EAAE,MAAM,CAAC;IAAC,CAAC,EAAE,MAAM,CAAA;CAAE,EAAE,KACzC,MAcF,CAAC;AAEF,eAAO,MAAM,aAAa,GAAI,KAAK,SAAS;IAAE,CAAC,EAAE,MAAM,CAAC;IAAC,CAAC,EAAE,MAAM,CAAA;CAAE,EAAE,KAAG,MASxE,CAAC;AAEF,MAAM,WAAW,iBAAiB;IAChC,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,MAAM,EAAE,SAAS;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;CAC1D;AAED,eAAO,MAAM,mBAAmB,GAC9B,MAAM,SAAS,mBAAmB,EAAE,KACnC,iBAyBF,CAAC"}
@@ -0,0 +1,7 @@
1
+ import type { ReactElement } from 'react';
2
+ export interface ColorPickerFieldProps {
3
+ readonly accentColor: string;
4
+ readonly onSelectColor: (color: string) => void;
5
+ }
6
+ export declare const ColorPickerField: ({ accentColor, onSelectColor, }: ColorPickerFieldProps) => ReactElement;
7
+ //# sourceMappingURL=ColorPickerField.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ColorPickerField.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/manage/ColorPickerField.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAG1C,MAAM,WAAW,qBAAqB;IACpC,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,aAAa,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACjD;AAaD,eAAO,MAAM,gBAAgB,GAAI,iCAG9B,qBAAqB,KAAG,YAwB1B,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { type ReactElement } from 'react';
2
+ import type { TenantGeneralSettings, UpdateTenantGeneralSettingsCommand } from '../../../domain';
3
+ export interface GeneralSettingsTabProps {
4
+ readonly settings: TenantGeneralSettings;
5
+ readonly isSaving: boolean;
6
+ readonly onSave: (cmd: UpdateTenantGeneralSettingsCommand) => void;
7
+ }
8
+ export declare const GeneralSettingsTab: ({ settings, isSaving, onSave, }: GeneralSettingsTabProps) => ReactElement;
9
+ //# sourceMappingURL=GeneralSettingsTab.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GeneralSettingsTab.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/manage/GeneralSettingsTab.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAY,KAAK,YAAY,EAAE,MAAM,OAAO,CAAC;AAEpD,OAAO,KAAK,EACV,qBAAqB,EACrB,kCAAkC,EAGnC,MAAM,iBAAiB,CAAC;AAIzB,MAAM,WAAW,uBAAuB;IACtC,QAAQ,CAAC,QAAQ,EAAE,qBAAqB,CAAC;IACzC,QAAQ,CAAC,QAAQ,EAAE,OAAO,CAAC;IAC3B,QAAQ,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,kCAAkC,KAAK,IAAI,CAAC;CACpE;AAyKD,eAAO,MAAM,kBAAkB,GAAI,iCAIhC,uBAAuB,KAAG,YAmC5B,CAAC"}
@@ -0,0 +1,8 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { TenantGeneralSettings } from '../../../domain';
3
+ export interface TenantManageHeaderProps {
4
+ readonly settings: TenantGeneralSettings;
5
+ readonly onBack: () => void;
6
+ }
7
+ export declare const TenantManageHeader: ({ settings, onBack, }: TenantManageHeaderProps) => ReactElement;
8
+ //# sourceMappingURL=TenantManageHeader.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TenantManageHeader.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/manage/TenantManageHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAG1C,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,iBAAiB,CAAC;AAI7D,MAAM,WAAW,uBAAuB;IACtC,QAAQ,CAAC,QAAQ,EAAE,qBAAqB,CAAC;IACzC,QAAQ,CAAC,MAAM,EAAE,MAAM,IAAI,CAAC;CAC7B;AAED,eAAO,MAAM,kBAAkB,GAAI,uBAGhC,uBAAuB,KAAG,YAiD5B,CAAC"}
@@ -0,0 +1,8 @@
1
+ import type { ReactElement } from 'react';
2
+ export type TenantManageTabType = 'general' | 'users' | 'modules' | 'integrations' | 'danger';
3
+ export interface TenantManageTabsProps {
4
+ readonly activeTab: TenantManageTabType;
5
+ readonly onSelectTab: (tab: TenantManageTabType) => void;
6
+ }
7
+ export declare const TenantManageTabs: ({ activeTab, onSelectTab, }: TenantManageTabsProps) => ReactElement;
8
+ //# sourceMappingURL=TenantManageTabs.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TenantManageTabs.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/manage/TenantManageTabs.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAK1C,MAAM,MAAM,mBAAmB,GAC3B,SAAS,GACT,OAAO,GACP,SAAS,GACT,cAAc,GACd,QAAQ,CAAC;AAEb,MAAM,WAAW,qBAAqB;IACpC,QAAQ,CAAC,SAAS,EAAE,mBAAmB,CAAC;IACxC,QAAQ,CAAC,WAAW,EAAE,CAAC,GAAG,EAAE,mBAAmB,KAAK,IAAI,CAAC;CAC1D;AAED,eAAO,MAAM,gBAAgB,GAAI,6BAG9B,qBAAqB,KAAG,YA8B1B,CAAC"}
@@ -0,0 +1,4 @@
1
+ export * from './TenantManageHeader';
2
+ export * from './TenantManageTabs';
3
+ export * from './GeneralSettingsTab';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/manage/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC"}
@@ -0,0 +1,12 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { useForm } from 'react-hook-form';
3
+ import type { RegisterTenantFormValues } from './RegisterTenantModal';
4
+ export interface FieldsSharedProps {
5
+ readonly form: ReturnType<typeof useForm<RegisterTenantFormValues>>;
6
+ readonly selectedModules: readonly string[];
7
+ readonly accentColor: string;
8
+ readonly onToggleModule: (mod: string) => void;
9
+ readonly onSelectColor: (color: string) => void;
10
+ }
11
+ export declare const RegisterTenantFields: ({ form, selectedModules, accentColor, onToggleModule, onSelectColor, }: FieldsSharedProps) => ReactElement;
12
+ //# sourceMappingURL=RegisterTenantFields.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RegisterTenantFields.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/registry/RegisterTenantFields.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AAQtE,MAAM,WAAW,iBAAiB;IAChC,QAAQ,CAAC,IAAI,EAAE,UAAU,CAAC,OAAO,OAAO,CAAC,wBAAwB,CAAC,CAAC,CAAC;IACpE,QAAQ,CAAC,eAAe,EAAE,SAAS,MAAM,EAAE,CAAC;IAC5C,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,cAAc,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/C,QAAQ,CAAC,aAAa,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACjD;AAqJD,eAAO,MAAM,oBAAoB,GAAI,wEAMlC,iBAAiB,KAAG,YAetB,CAAC"}
@@ -0,0 +1,50 @@
1
+ import { type ReactElement } from 'react';
2
+ import type { TenantStatus, TenantTier } from '../../../domain';
3
+ /**
4
+ * The raw form field values that react-hook-form manages.
5
+ *
6
+ * NOTE (backend integration): When connecting to the real API
7
+ * (`POST /api/app/app-tenant/extended`), map these values to the request body:
8
+ * { name, adminEmailAddress, adminPassword, domain, tier,
9
+ * ownerName, accentColor, status, icon, logoUrl, modules }
10
+ *
11
+ * See TenentReadme.md §"Register New Tenant — Backend Integration" for steps.
12
+ */
13
+ export interface RegisterTenantFormValues {
14
+ readonly name: string;
15
+ readonly adminEmailAddress: string;
16
+ readonly adminPassword: string;
17
+ readonly domain: string;
18
+ readonly tier: TenantTier | '';
19
+ readonly ownerName: string;
20
+ readonly status: TenantStatus | '';
21
+ readonly icon: string;
22
+ readonly logoUrl: string;
23
+ readonly accentColor: string;
24
+ }
25
+ export interface RegisterTenantModalProps {
26
+ readonly open: boolean;
27
+ readonly onOpenChange: (open: boolean) => void;
28
+ /**
29
+ * Called with the validated form data when the user submits.
30
+ * Currently receives raw form values for optimistic UI update.
31
+ * Replace this handler body with a use-case call when backend is ready.
32
+ */
33
+ readonly onSubmit: (values: RegisterTenantFormValues, modules: readonly string[]) => void;
34
+ }
35
+ /**
36
+ * Modal to register a new tenant.
37
+ *
38
+ * ## Current behaviour (UI-only / mock)
39
+ * Calls `onSubmit` with raw form values — the parent page uses these for an
40
+ * optimistic list update with mock data.
41
+ *
42
+ * ## Backend integration (TODO — see TenentReadme.md §"Register New Tenant")
43
+ * 1. Add `CreateTenantCommand` to `domain/ports/tenant-auth-gateway.ts`.
44
+ * 2. Create `CreateTenantUseCase` in `application/`.
45
+ * 3. Implement the gateway method in `infrastructure/`.
46
+ * 4. Replace `onSubmit` prop call below with `await createTenantUseCase.execute(command)`.
47
+ * 5. Handle `Result` errors with a toast / inline `<Alert>`.
48
+ */
49
+ export declare const RegisterTenantModal: ({ open, onOpenChange, onSubmit, }: RegisterTenantModalProps) => ReactElement;
50
+ //# sourceMappingURL=RegisterTenantModal.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RegisterTenantModal.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/registry/RegisterTenantModal.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAY,KAAK,YAAY,EAAE,MAAM,OAAO,CAAC;AAMpD,OAAO,KAAK,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAQhE;;;;;;;;;GASG;AACH,MAAM,WAAW,wBAAwB;IACvC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,iBAAiB,EAAE,MAAM,CAAC;IACnC,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAC;IAC/B,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,IAAI,EAAE,UAAU,GAAG,EAAE,CAAC;IAC/B,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,MAAM,EAAE,YAAY,GAAG,EAAE,CAAC;IACnC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;CAC9B;AAED,MAAM,WAAW,wBAAwB;IACvC,QAAQ,CAAC,IAAI,EAAE,OAAO,CAAC;IACvB,QAAQ,CAAC,YAAY,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC;IAC/C;;;;OAIG;IACH,QAAQ,CAAC,QAAQ,EAAE,CACjB,MAAM,EAAE,wBAAwB,EAChC,OAAO,EAAE,SAAS,MAAM,EAAE,KACvB,IAAI,CAAC;CACX;AAwFD;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,mBAAmB,GAAI,mCAIjC,wBAAwB,KAAG,YAsD7B,CAAC"}
@@ -0,0 +1,9 @@
1
+ import type { ReactElement } from 'react';
2
+ export interface TableRowActionsProps {
3
+ readonly tenantId: string;
4
+ readonly onManage: (id: string) => void;
5
+ readonly onViewDetails: () => void;
6
+ readonly onDelete: (id: string) => void;
7
+ }
8
+ export declare const TableRowActions: ({ tenantId, onManage, onViewDetails, onDelete, }: TableRowActionsProps) => ReactElement;
9
+ //# sourceMappingURL=TableRowActions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TableRowActions.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/registry/TableRowActions.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAQ1C,MAAM,WAAW,oBAAoB;IACnC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,QAAQ,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IACxC,QAAQ,CAAC,aAAa,EAAE,MAAM,IAAI,CAAC;IACnC,QAAQ,CAAC,QAAQ,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;CACzC;AAED,eAAO,MAAM,eAAe,GAAI,kDAK7B,oBAAoB,KAAG,YAiCzB,CAAC"}
@@ -0,0 +1,10 @@
1
+ import type { ReactElement } from 'react';
2
+ export interface TenantCardActionsProps {
3
+ readonly tenantId: string;
4
+ readonly onManage: (id: string) => void;
5
+ readonly onViewDetails: () => void;
6
+ readonly onEdit: () => void;
7
+ readonly onDelete: (id: string) => void;
8
+ }
9
+ export declare const TenantCardActions: ({ tenantId, onManage, onViewDetails, onEdit, onDelete, }: TenantCardActionsProps) => ReactElement;
10
+ //# sourceMappingURL=TenantCardActions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TenantCardActions.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/registry/TenantCardActions.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAS1C,MAAM,WAAW,sBAAsB;IACrC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,QAAQ,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IACxC,QAAQ,CAAC,aAAa,EAAE,MAAM,IAAI,CAAC;IACnC,QAAQ,CAAC,MAAM,EAAE,MAAM,IAAI,CAAC;IAC5B,QAAQ,CAAC,QAAQ,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;CACzC;AAED,eAAO,MAAM,iBAAiB,GAAI,0DAM/B,sBAAsB,KAAG,YA4C3B,CAAC"}
@@ -0,0 +1,12 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { TenantItem } from '../../../domain';
3
+ export interface TenantCardGridProps {
4
+ readonly tenants: readonly TenantItem[];
5
+ readonly onManage: (id: string) => void;
6
+ readonly onViewDetails: (tenant: TenantItem) => void;
7
+ readonly onEdit: (tenant: TenantItem) => void;
8
+ readonly onDelete: (id: string) => void;
9
+ readonly onRegisterNew: () => void;
10
+ }
11
+ export declare const TenantCardGrid: ({ tenants, onManage, onViewDetails, onEdit, onDelete, onRegisterNew, }: TenantCardGridProps) => ReactElement;
12
+ //# sourceMappingURL=TenantCardGrid.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TenantCardGrid.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/registry/TenantCardGrid.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAIlD,MAAM,WAAW,mBAAmB;IAClC,QAAQ,CAAC,OAAO,EAAE,SAAS,UAAU,EAAE,CAAC;IACxC,QAAQ,CAAC,QAAQ,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IACxC,QAAQ,CAAC,aAAa,EAAE,CAAC,MAAM,EAAE,UAAU,KAAK,IAAI,CAAC;IACrD,QAAQ,CAAC,MAAM,EAAE,CAAC,MAAM,EAAE,UAAU,KAAK,IAAI,CAAC;IAC9C,QAAQ,CAAC,QAAQ,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IACxC,QAAQ,CAAC,aAAa,EAAE,MAAM,IAAI,CAAC;CACpC;AAED,eAAO,MAAM,cAAc,GAAI,wEAO5B,mBAAmB,KAAG,YAiCxB,CAAC"}
@@ -0,0 +1,6 @@
1
+ import type { ReactElement } from 'react';
2
+ export interface TenantCardModulesProps {
3
+ readonly features: readonly string[];
4
+ }
5
+ export declare const TenantCardModules: ({ features }: TenantCardModulesProps) => ReactElement;
6
+ //# sourceMappingURL=TenantCardModules.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TenantCardModules.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/registry/TenantCardModules.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAG1C,MAAM,WAAW,sBAAsB;IACrC,QAAQ,CAAC,QAAQ,EAAE,SAAS,MAAM,EAAE,CAAC;CACtC;AAED,eAAO,MAAM,iBAAiB,GAAI,cAAc,sBAAsB,KAAG,YAkBxE,CAAC"}
@@ -0,0 +1,11 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { TenantItem } from '../../../domain';
3
+ export interface TenantGridCardProps {
4
+ readonly tenant: TenantItem;
5
+ readonly onManage: (id: string) => void;
6
+ readonly onViewDetails: (tenant: TenantItem) => void;
7
+ readonly onEdit: (tenant: TenantItem) => void;
8
+ readonly onDelete: (id: string) => void;
9
+ }
10
+ export declare const TenantGridCard: ({ tenant, onManage, onViewDetails, onEdit, onDelete, }: TenantGridCardProps) => ReactElement;
11
+ //# sourceMappingURL=TenantGridCard.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TenantGridCard.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/tenant/presentation/components/registry/TenantGridCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAE1C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAMlD,MAAM,WAAW,mBAAmB;IAClC,QAAQ,CAAC,MAAM,EAAE,UAAU,CAAC;IAC5B,QAAQ,CAAC,QAAQ,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IACxC,QAAQ,CAAC,aAAa,EAAE,CAAC,MAAM,EAAE,UAAU,KAAK,IAAI,CAAC;IACrD,QAAQ,CAAC,MAAM,EAAE,CAAC,MAAM,EAAE,UAAU,KAAK,IAAI,CAAC;IAC9C,QAAQ,CAAC,QAAQ,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;CACzC;AAQD,eAAO,MAAM,cAAc,GAAI,wDAM5B,mBAAmB,KAAG,YAmExB,CAAC"}
@@ -0,0 +1,12 @@
1
+ import type { ReactElement } from 'react';
2
+ import type { TenantStatus } from '../../../domain';
3
+ export interface TenantQuickFilterCardsProps {
4
+ readonly total: number;
5
+ readonly active: number;
6
+ readonly maintenance: number;
7
+ readonly draft: number;
8
+ readonly selectedStatus: TenantStatus | 'ALL';
9
+ readonly onSelectStatus: (status: TenantStatus | 'ALL') => void;
10
+ }
11
+ export declare const TenantQuickFilterCards: ({ total, active, maintenance, draft, selectedStatus, onSelectStatus, }: TenantQuickFilterCardsProps) => ReactElement;
12
+ //# sourceMappingURL=TenantQuickFilterCards.d.ts.map