@twinmatrix/ui-sdk 0.0.1

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 (169) hide show
  1. package/README.md +49 -0
  2. package/THEME_CUSTOMIZATION.md +221 -0
  3. package/lib/cjs/index.js +224 -0
  4. package/lib/esm/index.js +224 -0
  5. package/lib/types/index.d.ts +33 -0
  6. package/lib/types/index.d.ts.map +1 -0
  7. package/lib/types/internal/alerts/AlertItem.d.ts +9 -0
  8. package/lib/types/internal/alerts/AlertItem.d.ts.map +1 -0
  9. package/lib/types/internal/alerts/AlertsList.d.ts +12 -0
  10. package/lib/types/internal/alerts/AlertsList.d.ts.map +1 -0
  11. package/lib/types/internal/alerts/index.d.ts +5 -0
  12. package/lib/types/internal/alerts/index.d.ts.map +1 -0
  13. package/lib/types/internal/alerts/types.d.ts +11 -0
  14. package/lib/types/internal/alerts/types.d.ts.map +1 -0
  15. package/lib/types/internal/alerts/utils.d.ts +2 -0
  16. package/lib/types/internal/alerts/utils.d.ts.map +1 -0
  17. package/lib/types/internal/charts/Chart.d.ts +28 -0
  18. package/lib/types/internal/charts/Chart.d.ts.map +1 -0
  19. package/lib/types/internal/charts/WidgetContainer.d.ts +16 -0
  20. package/lib/types/internal/charts/WidgetContainer.d.ts.map +1 -0
  21. package/lib/types/internal/charts/index.d.ts +5 -0
  22. package/lib/types/internal/charts/index.d.ts.map +1 -0
  23. package/lib/types/internal/stores/themeStore.d.ts +13 -0
  24. package/lib/types/internal/stores/themeStore.d.ts.map +1 -0
  25. package/lib/types/internal/theme/index.d.ts +26 -0
  26. package/lib/types/internal/theme/index.d.ts.map +1 -0
  27. package/lib/types/internal/theme/theme.d.ts +113 -0
  28. package/lib/types/internal/theme/theme.d.ts.map +1 -0
  29. package/lib/types/internal/theme/useAppTheme.d.ts +2 -0
  30. package/lib/types/internal/theme/useAppTheme.d.ts.map +1 -0
  31. package/lib/types/internal/ui/BottomBar.d.ts +9 -0
  32. package/lib/types/internal/ui/BottomBar.d.ts.map +1 -0
  33. package/lib/types/internal/ui/Button.d.ts +17 -0
  34. package/lib/types/internal/ui/Button.d.ts.map +1 -0
  35. package/lib/types/internal/ui/Card.d.ts +52 -0
  36. package/lib/types/internal/ui/Card.d.ts.map +1 -0
  37. package/lib/types/internal/ui/Dropdown.d.ts +12 -0
  38. package/lib/types/internal/ui/Dropdown.d.ts.map +1 -0
  39. package/lib/types/internal/ui/Modal.d.ts +45 -0
  40. package/lib/types/internal/ui/Modal.d.ts.map +1 -0
  41. package/lib/types/internal/ui/Panel.d.ts +30 -0
  42. package/lib/types/internal/ui/Panel.d.ts.map +1 -0
  43. package/lib/types/internal/ui/RadioButton.d.ts +13 -0
  44. package/lib/types/internal/ui/RadioButton.d.ts.map +1 -0
  45. package/lib/types/internal/ui/SidePanel.d.ts +10 -0
  46. package/lib/types/internal/ui/SidePanel.d.ts.map +1 -0
  47. package/lib/types/internal/ui/ThemeEditor.d.ts +21 -0
  48. package/lib/types/internal/ui/ThemeEditor.d.ts.map +1 -0
  49. package/lib/types/internal/ui/TopBar.d.ts +64 -0
  50. package/lib/types/internal/ui/TopBar.d.ts.map +1 -0
  51. package/lib/types/internal/ui/bottombar/Item.d.ts +9 -0
  52. package/lib/types/internal/ui/bottombar/Item.d.ts.map +1 -0
  53. package/lib/types/internal/ui/bottombar/Root.d.ts +8 -0
  54. package/lib/types/internal/ui/bottombar/Root.d.ts.map +1 -0
  55. package/lib/types/internal/ui/bottombar/styles.d.ts +19 -0
  56. package/lib/types/internal/ui/bottombar/styles.d.ts.map +1 -0
  57. package/lib/types/internal/ui/dropdown/Group.d.ts +9 -0
  58. package/lib/types/internal/ui/dropdown/Group.d.ts.map +1 -0
  59. package/lib/types/internal/ui/dropdown/Item.d.ts +12 -0
  60. package/lib/types/internal/ui/dropdown/Item.d.ts.map +1 -0
  61. package/lib/types/internal/ui/dropdown/Menu.d.ts +12 -0
  62. package/lib/types/internal/ui/dropdown/Menu.d.ts.map +1 -0
  63. package/lib/types/internal/ui/dropdown/Root.d.ts +11 -0
  64. package/lib/types/internal/ui/dropdown/Root.d.ts.map +1 -0
  65. package/lib/types/internal/ui/dropdown/Trigger.d.ts +11 -0
  66. package/lib/types/internal/ui/dropdown/Trigger.d.ts.map +1 -0
  67. package/lib/types/internal/ui/dropdown/styles.d.ts +67 -0
  68. package/lib/types/internal/ui/dropdown/styles.d.ts.map +1 -0
  69. package/lib/types/internal/ui/sidepanel/Body.d.ts +15 -0
  70. package/lib/types/internal/ui/sidepanel/Body.d.ts.map +1 -0
  71. package/lib/types/internal/ui/sidepanel/DrawerPanel.d.ts +13 -0
  72. package/lib/types/internal/ui/sidepanel/DrawerPanel.d.ts.map +1 -0
  73. package/lib/types/internal/ui/sidepanel/Footer.d.ts +5 -0
  74. package/lib/types/internal/ui/sidepanel/Footer.d.ts.map +1 -0
  75. package/lib/types/internal/ui/sidepanel/Header.d.ts +10 -0
  76. package/lib/types/internal/ui/sidepanel/Header.d.ts.map +1 -0
  77. package/lib/types/internal/ui/sidepanel/SidePanel.d.ts +11 -0
  78. package/lib/types/internal/ui/sidepanel/SidePanel.d.ts.map +1 -0
  79. package/lib/types/internal/ui/topbar/Actions.d.ts +5 -0
  80. package/lib/types/internal/ui/topbar/Actions.d.ts.map +1 -0
  81. package/lib/types/internal/ui/topbar/Badge.d.ts +5 -0
  82. package/lib/types/internal/ui/topbar/Badge.d.ts.map +1 -0
  83. package/lib/types/internal/ui/topbar/Divider.d.ts +5 -0
  84. package/lib/types/internal/ui/topbar/Divider.d.ts.map +1 -0
  85. package/lib/types/internal/ui/topbar/IconButton.d.ts +10 -0
  86. package/lib/types/internal/ui/topbar/IconButton.d.ts.map +1 -0
  87. package/lib/types/internal/ui/topbar/LevelSelector.d.ts +6 -0
  88. package/lib/types/internal/ui/topbar/LevelSelector.d.ts.map +1 -0
  89. package/lib/types/internal/ui/topbar/LocationSelector.d.ts +9 -0
  90. package/lib/types/internal/ui/topbar/LocationSelector.d.ts.map +1 -0
  91. package/lib/types/internal/ui/topbar/Logo.d.ts +8 -0
  92. package/lib/types/internal/ui/topbar/Logo.d.ts.map +1 -0
  93. package/lib/types/internal/ui/topbar/Root.d.ts +12 -0
  94. package/lib/types/internal/ui/topbar/Root.d.ts.map +1 -0
  95. package/lib/types/internal/ui/topbar/Section.d.ts +11 -0
  96. package/lib/types/internal/ui/topbar/Section.d.ts.map +1 -0
  97. package/lib/types/internal/ui/topbar/SelectBase.d.ts +19 -0
  98. package/lib/types/internal/ui/topbar/SelectBase.d.ts.map +1 -0
  99. package/lib/types/internal/ui/topbar/Spacer.d.ts +3 -0
  100. package/lib/types/internal/ui/topbar/Spacer.d.ts.map +1 -0
  101. package/lib/types/internal/ui/topbar/Title.d.ts +5 -0
  102. package/lib/types/internal/ui/topbar/Title.d.ts.map +1 -0
  103. package/lib/types/internal/ui/topbar/ToggleGroup.d.ts +14 -0
  104. package/lib/types/internal/ui/topbar/ToggleGroup.d.ts.map +1 -0
  105. package/lib/types/internal/ui/topbar/addons/BackButton.d.ts +6 -0
  106. package/lib/types/internal/ui/topbar/addons/BackButton.d.ts.map +1 -0
  107. package/lib/types/internal/ui/topbar/addons/EventsBar.d.ts +17 -0
  108. package/lib/types/internal/ui/topbar/addons/EventsBar.d.ts.map +1 -0
  109. package/lib/types/internal/ui/topbar/addons/LevelSelect.d.ts +6 -0
  110. package/lib/types/internal/ui/topbar/addons/LevelSelect.d.ts.map +1 -0
  111. package/lib/types/internal/ui/topbar/addons/ListTypeToggle.d.ts +6 -0
  112. package/lib/types/internal/ui/topbar/addons/ListTypeToggle.d.ts.map +1 -0
  113. package/lib/types/internal/ui/topbar/addons/LocationSelect.d.ts +9 -0
  114. package/lib/types/internal/ui/topbar/addons/LocationSelect.d.ts.map +1 -0
  115. package/lib/types/internal/ui/topbar/addons/SidebarToggleButton.d.ts +6 -0
  116. package/lib/types/internal/ui/topbar/addons/SidebarToggleButton.d.ts.map +1 -0
  117. package/lib/types/internal/ui/topbar/addons/ThemeToggleButton.d.ts +5 -0
  118. package/lib/types/internal/ui/topbar/addons/ThemeToggleButton.d.ts.map +1 -0
  119. package/lib/types/internal/ui/topbar/addons/TimelineToggleButton.d.ts +6 -0
  120. package/lib/types/internal/ui/topbar/addons/TimelineToggleButton.d.ts.map +1 -0
  121. package/lib/types/internal/ui/topbar/styles.d.ts +148 -0
  122. package/lib/types/internal/ui/topbar/styles.d.ts.map +1 -0
  123. package/lib/types/internal/utils/colorShades.d.ts +12 -0
  124. package/lib/types/internal/utils/colorShades.d.ts.map +1 -0
  125. package/lib/types/internal/webrtc/WebRTCManager.d.ts +28 -0
  126. package/lib/types/internal/webrtc/WebRTCManager.d.ts.map +1 -0
  127. package/lib/types/internal/webrtc/WebRTCStreamPlayer.d.ts +8 -0
  128. package/lib/types/internal/webrtc/WebRTCStreamPlayer.d.ts.map +1 -0
  129. package/lib/types/layout/DashboardBottomRegion.d.ts +17 -0
  130. package/lib/types/layout/DashboardBottomRegion.d.ts.map +1 -0
  131. package/lib/types/layout/DashboardMain.d.ts +16 -0
  132. package/lib/types/layout/DashboardMain.d.ts.map +1 -0
  133. package/lib/types/layout/DashboardMobileDrawer.d.ts +38 -0
  134. package/lib/types/layout/DashboardMobileDrawer.d.ts.map +1 -0
  135. package/lib/types/layout/DashboardShell.d.ts +18 -0
  136. package/lib/types/layout/DashboardShell.d.ts.map +1 -0
  137. package/lib/types/layout/DashboardSidePanel.d.ts +30 -0
  138. package/lib/types/layout/DashboardSidePanel.d.ts.map +1 -0
  139. package/lib/types/layout/index.d.ts +21 -0
  140. package/lib/types/layout/index.d.ts.map +1 -0
  141. package/lib/types/types/generic.d.ts +73 -0
  142. package/lib/types/types/generic.d.ts.map +1 -0
  143. package/lib/types/types/index.d.ts +7 -0
  144. package/lib/types/types/index.d.ts.map +1 -0
  145. package/lib/types/ui/index.d.ts +21 -0
  146. package/lib/types/ui/index.d.ts.map +1 -0
  147. package/lib/types/widgets/AIAnalysisPanel.d.ts +33 -0
  148. package/lib/types/widgets/AIAnalysisPanel.d.ts.map +1 -0
  149. package/lib/types/widgets/AlertCameraChart.d.ts +18 -0
  150. package/lib/types/widgets/AlertCameraChart.d.ts.map +1 -0
  151. package/lib/types/widgets/AlertSeverityChart.d.ts +20 -0
  152. package/lib/types/widgets/AlertSeverityChart.d.ts.map +1 -0
  153. package/lib/types/widgets/AlertTimelineChart.d.ts +18 -0
  154. package/lib/types/widgets/AlertTimelineChart.d.ts.map +1 -0
  155. package/lib/types/widgets/AlertTriggerChart.d.ts +18 -0
  156. package/lib/types/widgets/AlertTriggerChart.d.ts.map +1 -0
  157. package/lib/types/widgets/AlertsPanel.d.ts +22 -0
  158. package/lib/types/widgets/AlertsPanel.d.ts.map +1 -0
  159. package/lib/types/widgets/CameraStreamWidget.d.ts +39 -0
  160. package/lib/types/widgets/CameraStreamWidget.d.ts.map +1 -0
  161. package/lib/types/widgets/ChatbotPanel.d.ts +16 -0
  162. package/lib/types/widgets/ChatbotPanel.d.ts.map +1 -0
  163. package/lib/types/widgets/RecentActivityFeed.d.ts +18 -0
  164. package/lib/types/widgets/RecentActivityFeed.d.ts.map +1 -0
  165. package/lib/types/widgets/TopCamerasList.d.ts +17 -0
  166. package/lib/types/widgets/TopCamerasList.d.ts.map +1 -0
  167. package/lib/types/widgets/index.d.ts +27 -0
  168. package/lib/types/widgets/index.d.ts.map +1 -0
  169. package/package.json +70 -0
@@ -0,0 +1,64 @@
1
+ /**
2
+ * TopBar aggregator: exports primitives and addons from ./topbar
3
+ * to preserve the existing import path.
4
+ */
5
+ export declare const TopBar: {
6
+ Root: import("react").FC<import("./topbar/Root").RootProps>;
7
+ Section: import("react").FC<import("./topbar/Section").SectionProps>;
8
+ Divider: import("react").FC<{
9
+ orientation?: "horizontal" | "vertical";
10
+ }>;
11
+ Logo: import("react").FC<import("./topbar/Logo").LogoProps>;
12
+ LevelSelector: import("react").FC<Omit<import("./topbar/SelectBase").SelectBaseProps, "options"> & {
13
+ levels: string[];
14
+ }>;
15
+ LocationSelector: import("react").FC<Omit<import("./topbar/SelectBase").SelectBaseProps, "options"> & {
16
+ locations: {
17
+ id: string;
18
+ name: string;
19
+ }[];
20
+ }>;
21
+ Actions: import("react").FC<{
22
+ children: React.ReactNode;
23
+ }>;
24
+ Title: import("react").FC<{
25
+ children: React.ReactNode;
26
+ }>;
27
+ IconButton: import("react").FC<import("./topbar/IconButton").IconButtonProps>;
28
+ Badge: import("react").FC<{
29
+ label: string;
30
+ }>;
31
+ SelectBase: import("react").FC<import("./topbar/SelectBase").SelectBaseProps>;
32
+ ToggleGroup: import("react").FC<import("./topbar/ToggleGroup").ToggleGroupProps>;
33
+ Spacer: import("react").FC<{}>;
34
+ LocationSelect: import("react").FC<Omit<import("./topbar/SelectBase").SelectBaseProps, "options"> & {
35
+ locations: {
36
+ id: string;
37
+ name: string;
38
+ }[];
39
+ }>;
40
+ LevelSelect: import("react").FC<Omit<import("./topbar/SelectBase").SelectBaseProps, "options"> & {
41
+ levels: string[];
42
+ }>;
43
+ ListTypeToggle: import("react").FC<{
44
+ value: string;
45
+ onChange: (value: string) => void;
46
+ }>;
47
+ EventsBar: import("react").FC<import("./topbar/addons/EventsBar").EventsBarProps>;
48
+ BackButton: import("react").FC<{
49
+ label?: string;
50
+ onClick: () => void;
51
+ }>;
52
+ SidebarToggleButton: import("react").FC<{
53
+ active?: boolean;
54
+ onClick: () => void;
55
+ }>;
56
+ ThemeToggleButton: import("react").FC<{
57
+ onClick: () => void;
58
+ }>;
59
+ TimelineToggleButton: import("react").FC<{
60
+ active?: boolean;
61
+ onClick: () => void;
62
+ }>;
63
+ };
64
+ //# sourceMappingURL=TopBar.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TopBar.d.ts","sourceRoot":"","sources":["../../../../src/internal/ui/TopBar.tsx"],"names":[],"mappings":"AAAA;;;GAGG;AAwBH,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsBlB,CAAC"}
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ export interface ItemProps {
3
+ id: string;
4
+ label: string;
5
+ icon: React.ReactNode;
6
+ onClick?: () => void;
7
+ }
8
+ export declare const Item: React.FC<ItemProps>;
9
+ //# sourceMappingURL=Item.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Item.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/bottombar/Item.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAGxC,MAAM,WAAW,SAAS;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,KAAK,CAAC,SAAS,CAAC;IACtB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,eAAO,MAAM,IAAI,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAwCpC,CAAC"}
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ export interface RootProps {
3
+ children: React.ReactNode;
4
+ className?: string;
5
+ variant?: 'light' | 'dark' | 'glass';
6
+ }
7
+ export declare const Root: React.FC<RootProps>;
8
+ //# sourceMappingURL=Root.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Root.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/bottombar/Root.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAIxC,MAAM,WAAW,SAAS;IACxB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC;CACtC;AAED,eAAO,MAAM,IAAI,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CA4DpC,CAAC"}
@@ -0,0 +1,19 @@
1
+ export declare const styles: {
2
+ rootLight: {
3
+ backgroundColor: string;
4
+ borderBottom: string;
5
+ color: string;
6
+ };
7
+ rootDark: {
8
+ background: string;
9
+ borderBottom: string;
10
+ color: string;
11
+ };
12
+ rootGlass: {
13
+ background: string;
14
+ backdropFilter: string;
15
+ borderBottom: string;
16
+ color: string;
17
+ };
18
+ };
19
+ //# sourceMappingURL=styles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/bottombar/styles.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;CAiBlB,CAAA"}
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ export interface GroupProps {
3
+ label: string;
4
+ children: React.ReactNode;
5
+ style?: React.CSSProperties;
6
+ className?: string;
7
+ }
8
+ export declare const Group: React.FC<GroupProps>;
9
+ //# sourceMappingURL=Group.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Group.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/dropdown/Group.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,WAAW,UAAU;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,KAAK,EAAE,KAAK,CAAC,EAAE,CAAC,UAAU,CAUtC,CAAC"}
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ export interface ItemProps {
3
+ value: string;
4
+ children: React.ReactNode;
5
+ disabled?: boolean;
6
+ isSelected?: boolean;
7
+ onClick?: () => void;
8
+ style?: React.CSSProperties;
9
+ className?: string;
10
+ }
11
+ export declare const Item: React.FC<ItemProps>;
12
+ //# sourceMappingURL=Item.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Item.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/dropdown/Item.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,WAAW,SAAS;IACxB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,IAAI,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAoBpC,CAAC"}
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ export interface MenuProps {
3
+ children: React.ReactNode;
4
+ isOpen?: boolean;
5
+ setIsOpen?: (open: boolean) => void;
6
+ value?: string;
7
+ onChange?: (value: string) => void;
8
+ style?: React.CSSProperties;
9
+ className?: string;
10
+ }
11
+ export declare const Menu: React.FC<MenuProps>;
12
+ //# sourceMappingURL=Menu.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Menu.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/dropdown/Menu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,WAAW,SAAS;IACxB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,SAAS,CAAC,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC;IACpC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,IAAI,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CA8BpC,CAAC"}
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ export interface RootProps {
3
+ value: string;
4
+ onChange: (value: string) => void;
5
+ children: React.ReactNode;
6
+ disabled?: boolean;
7
+ style?: React.CSSProperties;
8
+ className?: string;
9
+ }
10
+ export declare const Root: React.FC<RootProps>;
11
+ //# sourceMappingURL=Root.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Root.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/dropdown/Root.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAGxC,MAAM,WAAW,SAAS;IACxB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,IAAI,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CA6BpC,CAAC"}
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ export interface TriggerProps {
3
+ children: React.ReactNode;
4
+ isOpen?: boolean;
5
+ setIsOpen?: (open: boolean) => void;
6
+ disabled?: boolean;
7
+ style?: React.CSSProperties;
8
+ className?: string;
9
+ }
10
+ export declare const Trigger: React.FC<TriggerProps>;
11
+ //# sourceMappingURL=Trigger.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Trigger.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/dropdown/Trigger.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,WAAW,YAAY;IAC3B,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,SAAS,CAAC,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC;IACpC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAqB1C,CAAC"}
@@ -0,0 +1,67 @@
1
+ export declare const styles: {
2
+ root: {
3
+ position: "relative";
4
+ display: string;
5
+ };
6
+ trigger: {
7
+ padding: string;
8
+ border: string;
9
+ borderRadius: string;
10
+ backgroundColor: string;
11
+ cursor: string;
12
+ display: string;
13
+ alignItems: string;
14
+ gap: string;
15
+ fontSize: string;
16
+ minWidth: string;
17
+ justifyContent: string;
18
+ };
19
+ triggerDisabled: {
20
+ opacity: number;
21
+ cursor: string;
22
+ };
23
+ arrow: {
24
+ fontSize: string;
25
+ color: string;
26
+ };
27
+ menu: {
28
+ position: "absolute";
29
+ top: string;
30
+ left: number;
31
+ right: number;
32
+ backgroundColor: string;
33
+ border: string;
34
+ borderRadius: string;
35
+ boxShadow: string;
36
+ zIndex: number;
37
+ maxHeight: string;
38
+ overflowY: "auto";
39
+ };
40
+ item: {
41
+ padding: string;
42
+ cursor: string;
43
+ fontSize: string;
44
+ transition: string;
45
+ };
46
+ itemDisabled: {
47
+ opacity: number;
48
+ cursor: string;
49
+ };
50
+ itemSelected: {
51
+ backgroundColor: string;
52
+ color: string;
53
+ fontWeight: number;
54
+ };
55
+ group: {
56
+ borderBottom: string;
57
+ };
58
+ groupLabel: {
59
+ padding: string;
60
+ fontSize: string;
61
+ fontWeight: number;
62
+ color: string;
63
+ textTransform: "uppercase";
64
+ backgroundColor: string;
65
+ };
66
+ };
67
+ //# sourceMappingURL=styles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/dropdown/styles.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiElB,CAAC"}
@@ -0,0 +1,15 @@
1
+ import React from 'react';
2
+ export interface BodyProps {
3
+ children: React.ReactNode;
4
+ delay?: number;
5
+ side?: 'left' | 'right';
6
+ className?: string;
7
+ style?: React.CSSProperties;
8
+ useMotion?: boolean;
9
+ spacing?: boolean | {
10
+ gap?: number;
11
+ paddingBottom?: number;
12
+ };
13
+ }
14
+ export declare const SidePanelBody: React.FC<BodyProps>;
15
+ //# sourceMappingURL=Body.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Body.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/sidepanel/Body.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,MAAM,WAAW,SAAS;IACxB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACxB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,OAAO,CAAC,EAAE,OAAO,GAAG;QAAE,GAAG,CAAC,EAAE,MAAM,CAAC;QAAC,aAAa,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;CAC9D;AAED,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAgD7C,CAAC"}
@@ -0,0 +1,13 @@
1
+ import React from 'react';
2
+ export interface DrawerPanelProps {
3
+ side?: 'left' | 'right';
4
+ isOpen: boolean;
5
+ onClose: () => void;
6
+ children: React.ReactNode;
7
+ className?: string;
8
+ style?: React.CSSProperties;
9
+ width?: number;
10
+ overlayColor?: string;
11
+ }
12
+ export declare const DrawerPanel: React.FC<DrawerPanelProps>;
13
+ //# sourceMappingURL=DrawerPanel.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DrawerPanel.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/sidepanel/DrawerPanel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,MAAM,WAAW,gBAAgB;IAC/B,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACxB,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAoDlD,CAAC"}
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ export declare const SidePanelFooter: React.FC<{
3
+ children: React.ReactNode;
4
+ }>;
5
+ //# sourceMappingURL=Footer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Footer.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/sidepanel/Footer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,eAAO,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,CAAC;IAAE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,CAiBnE,CAAC"}
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ export interface HeaderProps {
3
+ title?: string;
4
+ actions?: React.ReactNode;
5
+ onClose?: () => void;
6
+ delay?: number;
7
+ side?: 'left' | 'right';
8
+ }
9
+ export declare const SidePanelHeader: React.FC<HeaderProps>;
10
+ //# sourceMappingURL=Header.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Header.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/sidepanel/Header.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,MAAM,WAAW,WAAW;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;CACzB;AAED,eAAO,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CAmCjD,CAAC"}
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ export interface SidePanelProps {
3
+ side?: 'left' | 'right';
4
+ width?: number;
5
+ isOpen: boolean;
6
+ children: React.ReactNode;
7
+ className?: string;
8
+ style?: React.CSSProperties;
9
+ }
10
+ export declare const SidePanel: React.FC<SidePanelProps>;
11
+ //# sourceMappingURL=SidePanel.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SidePanel.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/sidepanel/SidePanel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,WAAW,cAAc;IAC7B,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,OAAO,CAAC;IAChB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;CAC7B;AAED,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,cAAc,CAuC9C,CAAC"}
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ export declare const Actions: React.FC<{
3
+ children: React.ReactNode;
4
+ }>;
5
+ //# sourceMappingURL=Actions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Actions.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/topbar/Actions.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,eAAO,MAAM,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC;IAAE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,CAO3D,CAAC"}
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ export declare const Badge: React.FC<{
3
+ label: string;
4
+ }>;
5
+ //# sourceMappingURL=Badge.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Badge.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/topbar/Badge.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,eAAO,MAAM,KAAK,EAAE,KAAK,CAAC,EAAE,CAAC;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,CAI7C,CAAC"}
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ export declare const Divider: React.FC<{
3
+ orientation?: 'horizontal' | 'vertical';
4
+ }>;
5
+ //# sourceMappingURL=Divider.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Divider.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/topbar/Divider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,eAAO,MAAM,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC;IAAE,WAAW,CAAC,EAAE,YAAY,GAAG,UAAU,CAAA;CAAE,CAOzE,CAAC"}
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ interface IconButtonProps {
3
+ children: React.ReactNode;
4
+ active?: boolean;
5
+ onClick?: () => void;
6
+ title?: string;
7
+ }
8
+ export declare const IconButton: React.FC<IconButtonProps>;
9
+ export type { IconButtonProps };
10
+ //# sourceMappingURL=IconButton.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconButton.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/topbar/IconButton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,UAAU,eAAe;IACvB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CAyChD,CAAC;AAEF,YAAY,EAAE,eAAe,EAAE,CAAC"}
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ import { SelectBaseProps } from './SelectBase';
3
+ export declare const LevelSelector: React.FC<Omit<SelectBaseProps, 'options'> & {
4
+ levels: string[];
5
+ }>;
6
+ //# sourceMappingURL=LevelSelector.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LevelSelector.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/topbar/LevelSelector.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAE/C,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAClC,IAAI,CAAC,eAAe,EAAE,SAAS,CAAC,GAAG;IAAE,MAAM,EAAE,MAAM,EAAE,CAAA;CAAE,CAChB,CAAC"}
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import { SelectBaseProps } from './SelectBase';
3
+ export declare const LocationSelector: React.FC<Omit<SelectBaseProps, 'options'> & {
4
+ locations: {
5
+ id: string;
6
+ name: string;
7
+ }[];
8
+ }>;
9
+ //# sourceMappingURL=LocationSelector.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LocationSelector.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/topbar/LocationSelector.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAE/C,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CACrC,IAAI,CAAC,eAAe,EAAE,SAAS,CAAC,GAAG;IACjC,SAAS,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;CAC3C,CACyC,CAAC"}
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ export interface LogoProps {
3
+ src?: string;
4
+ alt?: string;
5
+ onClick?: () => void;
6
+ }
7
+ export declare const Logo: React.FC<LogoProps>;
8
+ //# sourceMappingURL=Logo.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Logo.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/topbar/Logo.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,WAAW,SAAS;IACxB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,eAAO,MAAM,IAAI,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAgBpC,CAAC"}
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ export interface RootProps {
3
+ children: React.ReactNode;
4
+ className?: string;
5
+ variant?: 'light' | 'dark' | 'glass';
6
+ height?: number | 'auto';
7
+ sticky?: boolean;
8
+ zIndex?: number;
9
+ style?: React.CSSProperties;
10
+ }
11
+ export declare const Root: React.FC<RootProps>;
12
+ //# sourceMappingURL=Root.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Root.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/topbar/Root.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,MAAM,WAAW,SAAS;IACxB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC;IACrC,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACzB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;CAC7B;AAED,eAAO,MAAM,IAAI,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CA+BpC,CAAC"}
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ export interface SectionProps {
3
+ children: React.ReactNode;
4
+ align?: 'left' | 'center' | 'right';
5
+ gap?: number;
6
+ wrap?: boolean;
7
+ grow?: boolean;
8
+ className?: string;
9
+ }
10
+ export declare const Section: React.FC<SectionProps>;
11
+ //# sourceMappingURL=Section.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Section.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/topbar/Section.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,MAAM,WAAW,YAAY;IAC3B,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,KAAK,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,CAAC;IACpC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CA8B1C,CAAC"}
@@ -0,0 +1,19 @@
1
+ import React from 'react';
2
+ interface SelectOption {
3
+ label: string;
4
+ value: string;
5
+ }
6
+ interface SelectBaseProps {
7
+ value: string;
8
+ onChange: (value: string) => void;
9
+ options: SelectOption[];
10
+ placeholder?: string;
11
+ label?: string;
12
+ disabled?: boolean;
13
+ selectorWidth?: number | string;
14
+ labelWidth?: number | string;
15
+ dense?: boolean;
16
+ }
17
+ export declare const SelectBase: React.FC<SelectBaseProps>;
18
+ export type { SelectOption, SelectBaseProps };
19
+ //# sourceMappingURL=SelectBase.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SelectBase.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/topbar/SelectBase.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,UAAU,YAAY;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACf;AAED,UAAU,eAAe;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAChC,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC7B,KAAK,CAAC,EAAE,OAAO,CAAC;CACjB;AAED,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CAiEhD,CAAC;AAEF,YAAY,EAAE,YAAY,EAAE,eAAe,EAAE,CAAC"}
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ export declare const Spacer: React.FC;
3
+ //# sourceMappingURL=Spacer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Spacer.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/topbar/Spacer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,EAAmD,CAAC"}
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ export declare const Title: React.FC<{
3
+ children: React.ReactNode;
4
+ }>;
5
+ //# sourceMappingURL=Title.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Title.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/topbar/Title.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,eAAO,MAAM,KAAK,EAAE,KAAK,CAAC,EAAE,CAAC;IAAE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,CASzD,CAAC"}
@@ -0,0 +1,14 @@
1
+ import React from 'react';
2
+ interface ToggleOption {
3
+ label: string;
4
+ value: string;
5
+ }
6
+ interface ToggleGroupProps {
7
+ value: string;
8
+ onChange: (value: string) => void;
9
+ options: ToggleOption[];
10
+ size?: 'sm' | 'md';
11
+ }
12
+ export declare const ToggleGroup: React.FC<ToggleGroupProps>;
13
+ export type { ToggleOption, ToggleGroupProps };
14
+ //# sourceMappingURL=ToggleGroup.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ToggleGroup.d.ts","sourceRoot":"","sources":["../../../../../src/internal/ui/topbar/ToggleGroup.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,UAAU,YAAY;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACf;AAED,UAAU,gBAAgB;IACxB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;CACpB;AAED,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAwClD,CAAC;AAEF,YAAY,EAAE,YAAY,EAAE,gBAAgB,EAAE,CAAC"}
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export declare const BackButton: React.FC<{
3
+ label?: string;
4
+ onClick: () => void;
5
+ }>;
6
+ //# sourceMappingURL=BackButton.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BackButton.d.ts","sourceRoot":"","sources":["../../../../../../src/internal/ui/topbar/addons/BackButton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,MAAM,IAAI,CAAA;CAAE,CAOxE,CAAC"}
@@ -0,0 +1,17 @@
1
+ import React from 'react';
2
+ export interface EventsBarProps {
3
+ /** Number of events to display */
4
+ eventCount?: number;
5
+ /** Optional click handler */
6
+ onClick?: () => void;
7
+ /** Optional className */
8
+ className?: string;
9
+ }
10
+ /**
11
+ * EventsBar - TopBar addon for displaying event count
12
+ *
13
+ * Self-contained component that accepts eventCount as prop.
14
+ * Consumers should provide event count from their own data sources.
15
+ */
16
+ export declare const EventsBar: React.FC<EventsBarProps>;
17
+ //# sourceMappingURL=EventsBar.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EventsBar.d.ts","sourceRoot":"","sources":["../../../../../../src/internal/ui/topbar/addons/EventsBar.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAyB1B,MAAM,WAAW,cAAc;IAC7B,kCAAkC;IAClC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,6BAA6B;IAC7B,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,yBAAyB;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;;;;GAKG;AACH,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,cAAc,CAiC9C,CAAC"}
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ import { SelectBaseProps } from '../SelectBase';
3
+ export declare const LevelSelect: React.FC<Omit<SelectBaseProps, 'options'> & {
4
+ levels: string[];
5
+ }>;
6
+ //# sourceMappingURL=LevelSelect.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LevelSelect.d.ts","sourceRoot":"","sources":["../../../../../../src/internal/ui/topbar/addons/LevelSelect.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AACvC,OAAO,EAAc,eAAe,EAAE,MAAM,eAAe,CAAC;AAE5D,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAChC,IAAI,CAAC,eAAe,EAAE,SAAS,CAAC,GAAG;IAAE,MAAM,EAAE,MAAM,EAAE,CAAA;CAAE,CAOxD,CAAC"}
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export declare const ListTypeToggle: React.FC<{
3
+ value: string;
4
+ onChange: (value: string) => void;
5
+ }>;
6
+ //# sourceMappingURL=ListTypeToggle.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ListTypeToggle.d.ts","sourceRoot":"","sources":["../../../../../../src/internal/ui/topbar/addons/ListTypeToggle.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC;IACpC,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACnC,CASA,CAAC"}
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import { SelectBaseProps } from '../SelectBase';
3
+ export declare const LocationSelect: React.FC<Omit<SelectBaseProps, 'options'> & {
4
+ locations: {
5
+ id: string;
6
+ name: string;
7
+ }[];
8
+ }>;
9
+ //# sourceMappingURL=LocationSelect.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LocationSelect.d.ts","sourceRoot":"","sources":["../../../../../../src/internal/ui/topbar/addons/LocationSelect.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AACvC,OAAO,EAAc,eAAe,EAAE,MAAM,eAAe,CAAC;AAE5D,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CACnC,IAAI,CAAC,eAAe,EAAE,SAAS,CAAC,GAAG;IACjC,SAAS,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;CAC3C,CAOF,CAAC"}