analytica-frontend-lib 1.2.17 → 1.2.19
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/AlertManager/index.d.mts +6 -2
- package/dist/AlertManager/index.d.ts +6 -2
- package/dist/AlertManager/index.js +66 -16
- package/dist/AlertManager/index.js.map +1 -1
- package/dist/AlertManager/index.mjs +66 -16
- package/dist/AlertManager/index.mjs.map +1 -1
- package/dist/AlertManagerView/index.d.mts +8 -3
- package/dist/AlertManagerView/index.d.ts +8 -3
- package/dist/AlertManagerView/index.js +4 -24
- package/dist/AlertManagerView/index.js.map +1 -1
- package/dist/AlertManagerView/index.mjs +4 -26
- package/dist/AlertManagerView/index.mjs.map +1 -1
- package/dist/DropdownMenu/index.d.mts +7 -1
- package/dist/DropdownMenu/index.d.ts +7 -1
- package/dist/DropdownMenu/index.js +51 -5
- package/dist/DropdownMenu/index.js.map +1 -1
- package/dist/DropdownMenu/index.mjs +50 -5
- package/dist/DropdownMenu/index.mjs.map +1 -1
- package/dist/NotificationCard/index.js +49 -5
- package/dist/NotificationCard/index.js.map +1 -1
- package/dist/NotificationCard/index.mjs +49 -5
- package/dist/NotificationCard/index.mjs.map +1 -1
- package/dist/Search/index.js +49 -5
- package/dist/Search/index.js.map +1 -1
- package/dist/Search/index.mjs +49 -5
- package/dist/Search/index.mjs.map +1 -1
- package/dist/index.d.mts +5 -5
- package/dist/index.d.ts +5 -5
- package/dist/index.js +394 -361
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +164 -132
- package/dist/index.mjs.map +1 -1
- package/dist/{types-DMycdI4U.d.mts → types-BXzeefgf.d.mts} +1 -1
- package/dist/{types-DMycdI4U.d.ts → types-BXzeefgf.d.ts} +1 -1
- package/package.json +1 -1
- package/dist/notification-TD7ZFRLL.png +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -12,8 +12,8 @@ import * as react from 'react';
|
|
|
12
12
|
import react__default, { ReactNode, HTMLAttributes, InputHTMLAttributes } from 'react';
|
|
13
13
|
import * as zustand from 'zustand';
|
|
14
14
|
import { StoreApi } from 'zustand';
|
|
15
|
-
import { C as CategoryConfig } from './types-
|
|
16
|
-
export { a as AlertData, A as AlertsConfig, b as CheckboxGroup, I as Item } from './types-
|
|
15
|
+
import { C as CategoryConfig } from './types-BXzeefgf.js';
|
|
16
|
+
export { a as AlertData, A as AlertsConfig, b as CheckboxGroup, I as Item } from './types-BXzeefgf.js';
|
|
17
17
|
export { AlertsManager } from './AlertManager/index.js';
|
|
18
18
|
export { AlertViewData, AlertsManagerView, RecipientStatus } from './AlertManagerView/index.js';
|
|
19
19
|
export { default as Radio, RadioGroup, RadioGroupItem } from './Radio/index.js';
|
|
@@ -37,7 +37,7 @@ export { B as BackendNotification, g as BackendNotificationsResponse, e as Notif
|
|
|
37
37
|
export { ThemeToggle } from './ThemeToggle/index.js';
|
|
38
38
|
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';
|
|
39
39
|
export { c as ThemeActions, T as ThemeMode, b as ThemeState, a as ThemeStore, u as useThemeStore } from './themeStore-P2X64zC-.js';
|
|
40
|
-
export { default as DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuSeparator, DropdownMenuTrigger, MenuLabel, ProfileMenuFooter, ProfileMenuHeader, ProfileMenuSection, ProfileMenuTrigger, ProfileToggleTheme } from './DropdownMenu/index.js';
|
|
40
|
+
export { default as DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuSeparator, DropdownMenuTrigger, MenuLabel, ProfileMenuFooter, ProfileMenuHeader, ProfileMenuInfo, ProfileMenuSection, ProfileMenuTrigger, ProfileToggleTheme } from './DropdownMenu/index.js';
|
|
41
41
|
export { SortDirection, default as Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, UseTableSortOptions, useTableSort } from './Table/index.js';
|
|
42
42
|
export { default as Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from './Select/index.js';
|
|
43
43
|
export { default as Menu, MenuContent, MenuItem, MenuOverflow } from './Menu/index.js';
|
|
@@ -207,7 +207,7 @@ interface RecipientCategory {
|
|
|
207
207
|
interface AlertFormData {
|
|
208
208
|
title: string;
|
|
209
209
|
message: string;
|
|
210
|
-
image: File | null;
|
|
210
|
+
image: File | string | null;
|
|
211
211
|
date: string;
|
|
212
212
|
time: string;
|
|
213
213
|
sendToday: boolean;
|
|
@@ -217,7 +217,7 @@ interface AlertFormData {
|
|
|
217
217
|
interface AlertFormStore extends AlertFormData {
|
|
218
218
|
setTitle: (title: string) => void;
|
|
219
219
|
setMessage: (message: string) => void;
|
|
220
|
-
setImage: (image: File | null) => void;
|
|
220
|
+
setImage: (image: File | string | null) => void;
|
|
221
221
|
setDate: (date: string) => void;
|
|
222
222
|
setTime: (time: string) => void;
|
|
223
223
|
setSendToday: (sendToday: boolean) => void;
|