analytica-frontend-lib 1.1.62 → 1.1.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -0
- package/dist/utils/index.d.mts +5 -0
- package/dist/utils/index.d.ts +5 -0
- package/dist/utils/index.js +35 -0
- package/dist/utils/index.js.map +1 -0
- package/dist/utils/index.mjs +10 -0
- package/dist/utils/index.mjs.map +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -34,6 +34,7 @@ export { default as IconRender } from './IconRender/index.mjs';
|
|
|
34
34
|
export { d as SubjectData, e as SubjectEnum, I as SubjectIconProps, S as SubjectInfo, b as getSubjectColorClass, a as getSubjectIcon, g as getSubjectInfo, c as getSubjectName } from './SubjectInfo-Dvt0OodP.mjs';
|
|
35
35
|
export { DeviceType, getDeviceType, useMobile } from './hooks/useMobile/index.mjs';
|
|
36
36
|
export { ThemeMode, useTheme } from './hooks/useTheme/index.mjs';
|
|
37
|
+
export { cn } from './utils/index.mjs';
|
|
37
38
|
export { default as DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuSeparator, DropdownMenuTrigger, MenuLabel, ProfileMenuFooter, ProfileMenuHeader, ProfileMenuSection, ProfileMenuTrigger, ProfileToggleTheme } from './DropdownMenu/index.mjs';
|
|
38
39
|
export { default as Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from './Select/index.mjs';
|
|
39
40
|
export { default as Menu, MenuContent, MenuItem, MenuOverflow } from './Menu/index.mjs';
|
|
@@ -53,6 +54,7 @@ import { N as NotificationApiClient, a as Notification, F as FetchNotificationsP
|
|
|
53
54
|
export { B as BackendNotification, g as BackendNotificationsResponse, e as NotificationCard, f as NotificationItem, h as NotificationsResponse } from './NotificationCard-4GgB0Nsf.mjs';
|
|
54
55
|
export { ThemeToggle } from './ThemeToggle/index.mjs';
|
|
55
56
|
import 'react/jsx-runtime';
|
|
57
|
+
import 'clsx';
|
|
56
58
|
|
|
57
59
|
/**
|
|
58
60
|
* CheckboxList size variants
|
package/dist/index.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ export { default as IconRender } from './IconRender/index.js';
|
|
|
34
34
|
export { d as SubjectData, e as SubjectEnum, I as SubjectIconProps, S as SubjectInfo, b as getSubjectColorClass, a as getSubjectIcon, g as getSubjectInfo, c as getSubjectName } from './SubjectInfo-Dvt0OodP.js';
|
|
35
35
|
export { DeviceType, getDeviceType, useMobile } from './hooks/useMobile/index.js';
|
|
36
36
|
export { ThemeMode, useTheme } from './hooks/useTheme/index.js';
|
|
37
|
+
export { cn } from './utils/index.js';
|
|
37
38
|
export { default as DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuSeparator, DropdownMenuTrigger, MenuLabel, ProfileMenuFooter, ProfileMenuHeader, ProfileMenuSection, ProfileMenuTrigger, ProfileToggleTheme } from './DropdownMenu/index.js';
|
|
38
39
|
export { default as Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from './Select/index.js';
|
|
39
40
|
export { default as Menu, MenuContent, MenuItem, MenuOverflow } from './Menu/index.js';
|
|
@@ -53,6 +54,7 @@ import { N as NotificationApiClient, a as Notification, F as FetchNotificationsP
|
|
|
53
54
|
export { B as BackendNotification, g as BackendNotificationsResponse, e as NotificationCard, f as NotificationItem, h as NotificationsResponse } from './NotificationCard-4GgB0Nsf.js';
|
|
54
55
|
export { ThemeToggle } from './ThemeToggle/index.js';
|
|
55
56
|
import 'react/jsx-runtime';
|
|
57
|
+
import 'clsx';
|
|
56
58
|
|
|
57
59
|
/**
|
|
58
60
|
* CheckboxList size variants
|
package/dist/index.js
CHANGED
|
@@ -136,6 +136,7 @@ __export(src_exports, {
|
|
|
136
136
|
Toaster: () => Toaster_default,
|
|
137
137
|
VideoPlayer: () => VideoPlayer_default,
|
|
138
138
|
Whiteboard: () => Whiteboard_default,
|
|
139
|
+
cn: () => cn,
|
|
139
140
|
createNotificationStore: () => createNotificationStore,
|
|
140
141
|
createNotificationsHook: () => createNotificationsHook,
|
|
141
142
|
createUseNotificationStore: () => createUseNotificationStore,
|
|
@@ -11879,6 +11880,7 @@ var createNotificationsHook = (apiClient) => {
|
|
|
11879
11880
|
Toaster,
|
|
11880
11881
|
VideoPlayer,
|
|
11881
11882
|
Whiteboard,
|
|
11883
|
+
cn,
|
|
11882
11884
|
createNotificationStore,
|
|
11883
11885
|
createNotificationsHook,
|
|
11884
11886
|
createUseNotificationStore,
|