@kopexa/sight 17.5.0 → 17.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +35 -0
- package/dist/index.mjs +36 -0
- package/dist/index.ts.backup.d.mts +2 -1
- package/dist/index.ts.backup.d.ts +2 -1
- package/dist/index.ts.backup.js +35 -0
- package/dist/index.ts.backup.mjs +36 -0
- package/package.json +59 -58
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { Accordion, AccordionContent, AccordionContentProps, AccordionItem, AccordionItemProps, AccordionRoot, AccordionRootProps, AccordionTrigger, AccordionTriggerProps } from '@kopexa/accordion';
|
|
2
2
|
export { AlertDialog, ConfirmDialogProvider, useConfirm } from '@kopexa/alert-dialog';
|
|
3
|
+
export { Conversation, ConversationContent, ConversationContentProps, ConversationEmptyState, ConversationEmptyStateProps, ConversationProps, ConversationScrollButton, ConversationScrollButtonProps, Message, MessageAction, MessageActionProps, MessageActions, MessageActionsProps, MessageBranch, MessageBranchContent, MessageBranchContentProps, MessageBranchNext, MessageBranchNextProps, MessageBranchPage, MessageBranchPageProps, MessageBranchPrevious, MessageBranchPreviousProps, MessageBranchProps, MessageBranchSelector, MessageBranchSelectorProps, MessageContent, MessageContentProps, MessageProps, MessageResponse, MessageResponseProps, MessageRole, MessageToolbar, MessageToolbarProps, PromptInput, PromptInputProps } from '@kopexa/assistant';
|
|
3
4
|
export { AuditInfo, AuditInfoProps, auditInfoMessages } from '@kopexa/audit-info';
|
|
4
5
|
export { Autocomplete, AutocompleteProps } from '@kopexa/autocomplete';
|
|
5
6
|
export * from '@kopexa/avatar';
|
|
@@ -19,7 +20,7 @@ export * from '@kopexa/dialog';
|
|
|
19
20
|
export * from '@kopexa/drawer';
|
|
20
21
|
export * from '@kopexa/dropdown-menu';
|
|
21
22
|
export { AvatarUpload, AvatarUploadProps } from '@kopexa/file-upload';
|
|
22
|
-
export { Filter, FilterActive, FilterActiveProps, FilterContextValue, FilterFieldConfig, FilterFieldType, FilterGroup, FilterGroupProps, FilterItem, FilterItemProps, FilterMenu, FilterMenuProps, FilterMenuSeparator, FilterOperator, FilterOption, FilterProps, FilterTrigger, FilterTriggerProps, FilterValue, FilterValueEditor, filterMessages, useFilterContext } from '@kopexa/filter';
|
|
23
|
+
export { Filter, FilterActive, FilterActiveProps, FilterContextValue, FilterEditorRenderProps, FilterFieldConfig, FilterFieldType, FilterGroup, FilterGroupProps, FilterItem, FilterItemProps, FilterMenu, FilterMenuProps, FilterMenuSeparator, FilterOperator, FilterOption, FilterProps, FilterTrigger, FilterTriggerProps, FilterValue, FilterValueEditor, FilterValueRenderProps, filterMessages, useFilterContext } from '@kopexa/filter';
|
|
23
24
|
export * from '@kopexa/heading';
|
|
24
25
|
export * from '@kopexa/hover-card';
|
|
25
26
|
export { Cropper, CropperProps, ImageCrop, ImageCropApply, ImageCropApplyProps, ImageCropContent, ImageCropContentProps, ImageCropProps, ImageCropReset, ImageCropResetProps } from '@kopexa/image-crop';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { Accordion, AccordionContent, AccordionContentProps, AccordionItem, AccordionItemProps, AccordionRoot, AccordionRootProps, AccordionTrigger, AccordionTriggerProps } from '@kopexa/accordion';
|
|
2
2
|
export { AlertDialog, ConfirmDialogProvider, useConfirm } from '@kopexa/alert-dialog';
|
|
3
|
+
export { Conversation, ConversationContent, ConversationContentProps, ConversationEmptyState, ConversationEmptyStateProps, ConversationProps, ConversationScrollButton, ConversationScrollButtonProps, Message, MessageAction, MessageActionProps, MessageActions, MessageActionsProps, MessageBranch, MessageBranchContent, MessageBranchContentProps, MessageBranchNext, MessageBranchNextProps, MessageBranchPage, MessageBranchPageProps, MessageBranchPrevious, MessageBranchPreviousProps, MessageBranchProps, MessageBranchSelector, MessageBranchSelectorProps, MessageContent, MessageContentProps, MessageProps, MessageResponse, MessageResponseProps, MessageRole, MessageToolbar, MessageToolbarProps, PromptInput, PromptInputProps } from '@kopexa/assistant';
|
|
3
4
|
export { AuditInfo, AuditInfoProps, auditInfoMessages } from '@kopexa/audit-info';
|
|
4
5
|
export { Autocomplete, AutocompleteProps } from '@kopexa/autocomplete';
|
|
5
6
|
export * from '@kopexa/avatar';
|
|
@@ -19,7 +20,7 @@ export * from '@kopexa/dialog';
|
|
|
19
20
|
export * from '@kopexa/drawer';
|
|
20
21
|
export * from '@kopexa/dropdown-menu';
|
|
21
22
|
export { AvatarUpload, AvatarUploadProps } from '@kopexa/file-upload';
|
|
22
|
-
export { Filter, FilterActive, FilterActiveProps, FilterContextValue, FilterFieldConfig, FilterFieldType, FilterGroup, FilterGroupProps, FilterItem, FilterItemProps, FilterMenu, FilterMenuProps, FilterMenuSeparator, FilterOperator, FilterOption, FilterProps, FilterTrigger, FilterTriggerProps, FilterValue, FilterValueEditor, filterMessages, useFilterContext } from '@kopexa/filter';
|
|
23
|
+
export { Filter, FilterActive, FilterActiveProps, FilterContextValue, FilterEditorRenderProps, FilterFieldConfig, FilterFieldType, FilterGroup, FilterGroupProps, FilterItem, FilterItemProps, FilterMenu, FilterMenuProps, FilterMenuSeparator, FilterOperator, FilterOption, FilterProps, FilterTrigger, FilterTriggerProps, FilterValue, FilterValueEditor, FilterValueRenderProps, filterMessages, useFilterContext } from '@kopexa/filter';
|
|
23
24
|
export * from '@kopexa/heading';
|
|
24
25
|
export * from '@kopexa/hover-card';
|
|
25
26
|
export { Cropper, CropperProps, ImageCrop, ImageCropApply, ImageCropApplyProps, ImageCropContent, ImageCropContentProps, ImageCropProps, ImageCropReset, ImageCropResetProps } from '@kopexa/image-crop';
|
package/dist/index.js
CHANGED
|
@@ -50,6 +50,10 @@ __export(index_exports, {
|
|
|
50
50
|
Chip: () => import_chip.Chip,
|
|
51
51
|
Combobox: () => import_combobox.Combobox,
|
|
52
52
|
ConfirmDialogProvider: () => import_alert_dialog.ConfirmDialogProvider,
|
|
53
|
+
Conversation: () => import_assistant.Conversation,
|
|
54
|
+
ConversationContent: () => import_assistant.ConversationContent,
|
|
55
|
+
ConversationEmptyState: () => import_assistant.ConversationEmptyState,
|
|
56
|
+
ConversationScrollButton: () => import_assistant.ConversationScrollButton,
|
|
53
57
|
Cropper: () => import_image_crop.Cropper,
|
|
54
58
|
DataGrid: () => import_data_grid.DataGrid,
|
|
55
59
|
Filter: () => import_filter.Filter,
|
|
@@ -67,6 +71,19 @@ __export(index_exports, {
|
|
|
67
71
|
IntegrationCard: () => import_integration_card.IntegrationCard,
|
|
68
72
|
Label: () => import_label.Label,
|
|
69
73
|
LoadingPage: () => import_loading.LoadingPage,
|
|
74
|
+
Message: () => import_assistant.Message,
|
|
75
|
+
MessageAction: () => import_assistant.MessageAction,
|
|
76
|
+
MessageActions: () => import_assistant.MessageActions,
|
|
77
|
+
MessageBranch: () => import_assistant.MessageBranch,
|
|
78
|
+
MessageBranchContent: () => import_assistant.MessageBranchContent,
|
|
79
|
+
MessageBranchNext: () => import_assistant.MessageBranchNext,
|
|
80
|
+
MessageBranchPage: () => import_assistant.MessageBranchPage,
|
|
81
|
+
MessageBranchPrevious: () => import_assistant.MessageBranchPrevious,
|
|
82
|
+
MessageBranchSelector: () => import_assistant.MessageBranchSelector,
|
|
83
|
+
MessageContent: () => import_assistant.MessageContent,
|
|
84
|
+
MessageResponse: () => import_assistant.MessageResponse,
|
|
85
|
+
MessageToolbar: () => import_assistant.MessageToolbar,
|
|
86
|
+
PromptInput: () => import_assistant.PromptInput,
|
|
70
87
|
RelatedControlChip: () => import_chip.RelatedControlChip,
|
|
71
88
|
ScrollArea: () => import_scroll_area.ScrollArea,
|
|
72
89
|
ScrollBar: () => import_scroll_area.ScrollBar,
|
|
@@ -96,6 +113,7 @@ __export(index_exports, {
|
|
|
96
113
|
module.exports = __toCommonJS(index_exports);
|
|
97
114
|
var import_accordion = require("@kopexa/accordion");
|
|
98
115
|
var import_alert_dialog = require("@kopexa/alert-dialog");
|
|
116
|
+
var import_assistant = require("@kopexa/assistant");
|
|
99
117
|
var import_audit_info = require("@kopexa/audit-info");
|
|
100
118
|
var import_autocomplete = require("@kopexa/autocomplete");
|
|
101
119
|
__reExport(index_exports, require("@kopexa/avatar"), module.exports);
|
|
@@ -179,6 +197,10 @@ __reExport(index_exports, require("@kopexa/tooltip"), module.exports);
|
|
|
179
197
|
Chip,
|
|
180
198
|
Combobox,
|
|
181
199
|
ConfirmDialogProvider,
|
|
200
|
+
Conversation,
|
|
201
|
+
ConversationContent,
|
|
202
|
+
ConversationEmptyState,
|
|
203
|
+
ConversationScrollButton,
|
|
182
204
|
Cropper,
|
|
183
205
|
DataGrid,
|
|
184
206
|
Filter,
|
|
@@ -196,6 +218,19 @@ __reExport(index_exports, require("@kopexa/tooltip"), module.exports);
|
|
|
196
218
|
IntegrationCard,
|
|
197
219
|
Label,
|
|
198
220
|
LoadingPage,
|
|
221
|
+
Message,
|
|
222
|
+
MessageAction,
|
|
223
|
+
MessageActions,
|
|
224
|
+
MessageBranch,
|
|
225
|
+
MessageBranchContent,
|
|
226
|
+
MessageBranchNext,
|
|
227
|
+
MessageBranchPage,
|
|
228
|
+
MessageBranchPrevious,
|
|
229
|
+
MessageBranchSelector,
|
|
230
|
+
MessageContent,
|
|
231
|
+
MessageResponse,
|
|
232
|
+
MessageToolbar,
|
|
233
|
+
PromptInput,
|
|
199
234
|
RelatedControlChip,
|
|
200
235
|
ScrollArea,
|
|
201
236
|
ScrollBar,
|
package/dist/index.mjs
CHANGED
|
@@ -13,6 +13,25 @@ import {
|
|
|
13
13
|
ConfirmDialogProvider,
|
|
14
14
|
useConfirm
|
|
15
15
|
} from "@kopexa/alert-dialog";
|
|
16
|
+
import {
|
|
17
|
+
Conversation,
|
|
18
|
+
ConversationContent,
|
|
19
|
+
ConversationEmptyState,
|
|
20
|
+
ConversationScrollButton,
|
|
21
|
+
Message,
|
|
22
|
+
MessageAction,
|
|
23
|
+
MessageActions,
|
|
24
|
+
MessageBranch,
|
|
25
|
+
MessageBranchContent,
|
|
26
|
+
MessageBranchNext,
|
|
27
|
+
MessageBranchPage,
|
|
28
|
+
MessageBranchPrevious,
|
|
29
|
+
MessageBranchSelector,
|
|
30
|
+
MessageContent,
|
|
31
|
+
MessageResponse,
|
|
32
|
+
MessageToolbar,
|
|
33
|
+
PromptInput
|
|
34
|
+
} from "@kopexa/assistant";
|
|
16
35
|
import { AuditInfo, auditInfoMessages } from "@kopexa/audit-info";
|
|
17
36
|
import { Autocomplete } from "@kopexa/autocomplete";
|
|
18
37
|
export * from "@kopexa/avatar";
|
|
@@ -151,6 +170,10 @@ export {
|
|
|
151
170
|
Chip,
|
|
152
171
|
Combobox,
|
|
153
172
|
ConfirmDialogProvider,
|
|
173
|
+
Conversation,
|
|
174
|
+
ConversationContent,
|
|
175
|
+
ConversationEmptyState,
|
|
176
|
+
ConversationScrollButton,
|
|
154
177
|
Cropper,
|
|
155
178
|
DataGrid,
|
|
156
179
|
Filter,
|
|
@@ -168,6 +191,19 @@ export {
|
|
|
168
191
|
IntegrationCard,
|
|
169
192
|
Label,
|
|
170
193
|
LoadingPage,
|
|
194
|
+
Message,
|
|
195
|
+
MessageAction,
|
|
196
|
+
MessageActions,
|
|
197
|
+
MessageBranch,
|
|
198
|
+
MessageBranchContent,
|
|
199
|
+
MessageBranchNext,
|
|
200
|
+
MessageBranchPage,
|
|
201
|
+
MessageBranchPrevious,
|
|
202
|
+
MessageBranchSelector,
|
|
203
|
+
MessageContent,
|
|
204
|
+
MessageResponse,
|
|
205
|
+
MessageToolbar,
|
|
206
|
+
PromptInput,
|
|
171
207
|
RelatedControlChip,
|
|
172
208
|
ScrollArea,
|
|
173
209
|
ScrollBar,
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { Accordion, AccordionContent, AccordionContentProps, AccordionItem, AccordionItemProps, AccordionRoot, AccordionRootProps, AccordionTrigger, AccordionTriggerProps } from '@kopexa/accordion';
|
|
2
2
|
export { AlertDialog, ConfirmDialogProvider, useConfirm } from '@kopexa/alert-dialog';
|
|
3
|
+
export { Conversation, ConversationContent, ConversationContentProps, ConversationEmptyState, ConversationEmptyStateProps, ConversationProps, ConversationScrollButton, ConversationScrollButtonProps, Message, MessageAction, MessageActionProps, MessageActions, MessageActionsProps, MessageBranch, MessageBranchContent, MessageBranchContentProps, MessageBranchNext, MessageBranchNextProps, MessageBranchPage, MessageBranchPageProps, MessageBranchPrevious, MessageBranchPreviousProps, MessageBranchProps, MessageBranchSelector, MessageBranchSelectorProps, MessageContent, MessageContentProps, MessageProps, MessageResponse, MessageResponseProps, MessageRole, MessageToolbar, MessageToolbarProps, PromptInput, PromptInputProps } from '@kopexa/assistant';
|
|
3
4
|
export { AuditInfo, AuditInfoProps, auditInfoMessages } from '@kopexa/audit-info';
|
|
4
5
|
export { Autocomplete, AutocompleteProps } from '@kopexa/autocomplete';
|
|
5
6
|
export * from '@kopexa/avatar';
|
|
@@ -19,7 +20,7 @@ export * from '@kopexa/dialog';
|
|
|
19
20
|
export * from '@kopexa/drawer';
|
|
20
21
|
export * from '@kopexa/dropdown-menu';
|
|
21
22
|
export { AvatarUpload, AvatarUploadProps } from '@kopexa/file-upload';
|
|
22
|
-
export { Filter, FilterActive, FilterActiveProps, FilterContextValue, FilterFieldConfig, FilterFieldType, FilterGroup, FilterGroupProps, FilterItem, FilterItemProps, FilterMenu, FilterMenuProps, FilterMenuSeparator, FilterOperator, FilterOption, FilterProps, FilterTrigger, FilterTriggerProps, FilterValue, FilterValueEditor, filterMessages, useFilterContext } from '@kopexa/filter';
|
|
23
|
+
export { Filter, FilterActive, FilterActiveProps, FilterContextValue, FilterEditorRenderProps, FilterFieldConfig, FilterFieldType, FilterGroup, FilterGroupProps, FilterItem, FilterItemProps, FilterMenu, FilterMenuProps, FilterMenuSeparator, FilterOperator, FilterOption, FilterProps, FilterTrigger, FilterTriggerProps, FilterValue, FilterValueEditor, FilterValueRenderProps, filterMessages, useFilterContext } from '@kopexa/filter';
|
|
23
24
|
export * from '@kopexa/heading';
|
|
24
25
|
export * from '@kopexa/hover-card';
|
|
25
26
|
export { Cropper, CropperProps, ImageCrop, ImageCropApply, ImageCropApplyProps, ImageCropContent, ImageCropContentProps, ImageCropProps, ImageCropReset, ImageCropResetProps } from '@kopexa/image-crop';
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { Accordion, AccordionContent, AccordionContentProps, AccordionItem, AccordionItemProps, AccordionRoot, AccordionRootProps, AccordionTrigger, AccordionTriggerProps } from '@kopexa/accordion';
|
|
2
2
|
export { AlertDialog, ConfirmDialogProvider, useConfirm } from '@kopexa/alert-dialog';
|
|
3
|
+
export { Conversation, ConversationContent, ConversationContentProps, ConversationEmptyState, ConversationEmptyStateProps, ConversationProps, ConversationScrollButton, ConversationScrollButtonProps, Message, MessageAction, MessageActionProps, MessageActions, MessageActionsProps, MessageBranch, MessageBranchContent, MessageBranchContentProps, MessageBranchNext, MessageBranchNextProps, MessageBranchPage, MessageBranchPageProps, MessageBranchPrevious, MessageBranchPreviousProps, MessageBranchProps, MessageBranchSelector, MessageBranchSelectorProps, MessageContent, MessageContentProps, MessageProps, MessageResponse, MessageResponseProps, MessageRole, MessageToolbar, MessageToolbarProps, PromptInput, PromptInputProps } from '@kopexa/assistant';
|
|
3
4
|
export { AuditInfo, AuditInfoProps, auditInfoMessages } from '@kopexa/audit-info';
|
|
4
5
|
export { Autocomplete, AutocompleteProps } from '@kopexa/autocomplete';
|
|
5
6
|
export * from '@kopexa/avatar';
|
|
@@ -19,7 +20,7 @@ export * from '@kopexa/dialog';
|
|
|
19
20
|
export * from '@kopexa/drawer';
|
|
20
21
|
export * from '@kopexa/dropdown-menu';
|
|
21
22
|
export { AvatarUpload, AvatarUploadProps } from '@kopexa/file-upload';
|
|
22
|
-
export { Filter, FilterActive, FilterActiveProps, FilterContextValue, FilterFieldConfig, FilterFieldType, FilterGroup, FilterGroupProps, FilterItem, FilterItemProps, FilterMenu, FilterMenuProps, FilterMenuSeparator, FilterOperator, FilterOption, FilterProps, FilterTrigger, FilterTriggerProps, FilterValue, FilterValueEditor, filterMessages, useFilterContext } from '@kopexa/filter';
|
|
23
|
+
export { Filter, FilterActive, FilterActiveProps, FilterContextValue, FilterEditorRenderProps, FilterFieldConfig, FilterFieldType, FilterGroup, FilterGroupProps, FilterItem, FilterItemProps, FilterMenu, FilterMenuProps, FilterMenuSeparator, FilterOperator, FilterOption, FilterProps, FilterTrigger, FilterTriggerProps, FilterValue, FilterValueEditor, FilterValueRenderProps, filterMessages, useFilterContext } from '@kopexa/filter';
|
|
23
24
|
export * from '@kopexa/heading';
|
|
24
25
|
export * from '@kopexa/hover-card';
|
|
25
26
|
export { Cropper, CropperProps, ImageCrop, ImageCropApply, ImageCropApplyProps, ImageCropContent, ImageCropContentProps, ImageCropProps, ImageCropReset, ImageCropResetProps } from '@kopexa/image-crop';
|
package/dist/index.ts.backup.js
CHANGED
|
@@ -51,6 +51,10 @@ __export(index_ts_backup_exports, {
|
|
|
51
51
|
Chip: () => import_chip.Chip,
|
|
52
52
|
Combobox: () => import_combobox.Combobox,
|
|
53
53
|
ConfirmDialogProvider: () => import_alert_dialog.ConfirmDialogProvider,
|
|
54
|
+
Conversation: () => import_assistant.Conversation,
|
|
55
|
+
ConversationContent: () => import_assistant.ConversationContent,
|
|
56
|
+
ConversationEmptyState: () => import_assistant.ConversationEmptyState,
|
|
57
|
+
ConversationScrollButton: () => import_assistant.ConversationScrollButton,
|
|
54
58
|
Cropper: () => import_image_crop.Cropper,
|
|
55
59
|
DataGrid: () => import_data_grid.DataGrid,
|
|
56
60
|
Filter: () => import_filter.Filter,
|
|
@@ -68,6 +72,19 @@ __export(index_ts_backup_exports, {
|
|
|
68
72
|
IntegrationCard: () => import_integration_card.IntegrationCard,
|
|
69
73
|
Label: () => import_label.Label,
|
|
70
74
|
LoadingPage: () => import_loading.LoadingPage,
|
|
75
|
+
Message: () => import_assistant.Message,
|
|
76
|
+
MessageAction: () => import_assistant.MessageAction,
|
|
77
|
+
MessageActions: () => import_assistant.MessageActions,
|
|
78
|
+
MessageBranch: () => import_assistant.MessageBranch,
|
|
79
|
+
MessageBranchContent: () => import_assistant.MessageBranchContent,
|
|
80
|
+
MessageBranchNext: () => import_assistant.MessageBranchNext,
|
|
81
|
+
MessageBranchPage: () => import_assistant.MessageBranchPage,
|
|
82
|
+
MessageBranchPrevious: () => import_assistant.MessageBranchPrevious,
|
|
83
|
+
MessageBranchSelector: () => import_assistant.MessageBranchSelector,
|
|
84
|
+
MessageContent: () => import_assistant.MessageContent,
|
|
85
|
+
MessageResponse: () => import_assistant.MessageResponse,
|
|
86
|
+
MessageToolbar: () => import_assistant.MessageToolbar,
|
|
87
|
+
PromptInput: () => import_assistant.PromptInput,
|
|
71
88
|
RelatedControlChip: () => import_chip.RelatedControlChip,
|
|
72
89
|
ScrollArea: () => import_scroll_area.ScrollArea,
|
|
73
90
|
ScrollBar: () => import_scroll_area.ScrollBar,
|
|
@@ -97,6 +114,7 @@ __export(index_ts_backup_exports, {
|
|
|
97
114
|
module.exports = __toCommonJS(index_ts_backup_exports);
|
|
98
115
|
var import_accordion = require("@kopexa/accordion");
|
|
99
116
|
var import_alert_dialog = require("@kopexa/alert-dialog");
|
|
117
|
+
var import_assistant = require("@kopexa/assistant");
|
|
100
118
|
var import_audit_info = require("@kopexa/audit-info");
|
|
101
119
|
var import_autocomplete = require("@kopexa/autocomplete");
|
|
102
120
|
__reExport(index_ts_backup_exports, require("@kopexa/avatar"), module.exports);
|
|
@@ -180,6 +198,10 @@ __reExport(index_ts_backup_exports, require("@kopexa/tooltip"), module.exports);
|
|
|
180
198
|
Chip,
|
|
181
199
|
Combobox,
|
|
182
200
|
ConfirmDialogProvider,
|
|
201
|
+
Conversation,
|
|
202
|
+
ConversationContent,
|
|
203
|
+
ConversationEmptyState,
|
|
204
|
+
ConversationScrollButton,
|
|
183
205
|
Cropper,
|
|
184
206
|
DataGrid,
|
|
185
207
|
Filter,
|
|
@@ -197,6 +219,19 @@ __reExport(index_ts_backup_exports, require("@kopexa/tooltip"), module.exports);
|
|
|
197
219
|
IntegrationCard,
|
|
198
220
|
Label,
|
|
199
221
|
LoadingPage,
|
|
222
|
+
Message,
|
|
223
|
+
MessageAction,
|
|
224
|
+
MessageActions,
|
|
225
|
+
MessageBranch,
|
|
226
|
+
MessageBranchContent,
|
|
227
|
+
MessageBranchNext,
|
|
228
|
+
MessageBranchPage,
|
|
229
|
+
MessageBranchPrevious,
|
|
230
|
+
MessageBranchSelector,
|
|
231
|
+
MessageContent,
|
|
232
|
+
MessageResponse,
|
|
233
|
+
MessageToolbar,
|
|
234
|
+
PromptInput,
|
|
200
235
|
RelatedControlChip,
|
|
201
236
|
ScrollArea,
|
|
202
237
|
ScrollBar,
|
package/dist/index.ts.backup.mjs
CHANGED
|
@@ -14,6 +14,25 @@ import {
|
|
|
14
14
|
ConfirmDialogProvider,
|
|
15
15
|
useConfirm
|
|
16
16
|
} from "@kopexa/alert-dialog";
|
|
17
|
+
import {
|
|
18
|
+
Conversation,
|
|
19
|
+
ConversationContent,
|
|
20
|
+
ConversationEmptyState,
|
|
21
|
+
ConversationScrollButton,
|
|
22
|
+
Message,
|
|
23
|
+
MessageAction,
|
|
24
|
+
MessageActions,
|
|
25
|
+
MessageBranch,
|
|
26
|
+
MessageBranchContent,
|
|
27
|
+
MessageBranchNext,
|
|
28
|
+
MessageBranchPage,
|
|
29
|
+
MessageBranchPrevious,
|
|
30
|
+
MessageBranchSelector,
|
|
31
|
+
MessageContent,
|
|
32
|
+
MessageResponse,
|
|
33
|
+
MessageToolbar,
|
|
34
|
+
PromptInput
|
|
35
|
+
} from "@kopexa/assistant";
|
|
17
36
|
import { AuditInfo, auditInfoMessages } from "@kopexa/audit-info";
|
|
18
37
|
import { Autocomplete } from "@kopexa/autocomplete";
|
|
19
38
|
export * from "@kopexa/avatar";
|
|
@@ -152,6 +171,10 @@ export {
|
|
|
152
171
|
Chip,
|
|
153
172
|
Combobox,
|
|
154
173
|
ConfirmDialogProvider,
|
|
174
|
+
Conversation,
|
|
175
|
+
ConversationContent,
|
|
176
|
+
ConversationEmptyState,
|
|
177
|
+
ConversationScrollButton,
|
|
155
178
|
Cropper,
|
|
156
179
|
DataGrid,
|
|
157
180
|
Filter,
|
|
@@ -169,6 +192,19 @@ export {
|
|
|
169
192
|
IntegrationCard,
|
|
170
193
|
Label,
|
|
171
194
|
LoadingPage,
|
|
195
|
+
Message,
|
|
196
|
+
MessageAction,
|
|
197
|
+
MessageActions,
|
|
198
|
+
MessageBranch,
|
|
199
|
+
MessageBranchContent,
|
|
200
|
+
MessageBranchNext,
|
|
201
|
+
MessageBranchPage,
|
|
202
|
+
MessageBranchPrevious,
|
|
203
|
+
MessageBranchSelector,
|
|
204
|
+
MessageContent,
|
|
205
|
+
MessageResponse,
|
|
206
|
+
MessageToolbar,
|
|
207
|
+
PromptInput,
|
|
172
208
|
RelatedControlChip,
|
|
173
209
|
ScrollArea,
|
|
174
210
|
ScrollBar,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kopexa/sight",
|
|
3
|
-
"version": "17.
|
|
3
|
+
"version": "17.6.0",
|
|
4
4
|
"description": "Kopexas react UI Library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"sight"
|
|
@@ -28,66 +28,67 @@
|
|
|
28
28
|
"react": ">=19.0.0-rc.0",
|
|
29
29
|
"react-dom": ">=19.0.0-rc.0",
|
|
30
30
|
"motion": ">=12.23.6",
|
|
31
|
-
"@kopexa/theme": "17.
|
|
31
|
+
"@kopexa/theme": "17.16.0"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@kopexa/shared-utils": "17.0.
|
|
35
|
-
"@kopexa/react-utils": "17.0.
|
|
36
|
-
"@kopexa/button": "17.0.
|
|
37
|
-
"@kopexa/
|
|
38
|
-
"@kopexa/
|
|
39
|
-
"@kopexa/
|
|
40
|
-
"@kopexa/
|
|
41
|
-
"@kopexa/
|
|
42
|
-
"@kopexa/
|
|
43
|
-
"@kopexa/stat": "1.0.
|
|
44
|
-
"@kopexa/
|
|
45
|
-
"@kopexa/
|
|
46
|
-
"@kopexa/
|
|
47
|
-
"@kopexa/
|
|
48
|
-
"@kopexa/
|
|
49
|
-
"@kopexa/
|
|
50
|
-
"@kopexa/
|
|
51
|
-
"@kopexa/
|
|
52
|
-
"@kopexa/
|
|
53
|
-
"@kopexa/
|
|
54
|
-
"@kopexa/
|
|
55
|
-
"@kopexa/checkbox": "17.0.
|
|
56
|
-
"@kopexa/
|
|
57
|
-
"@kopexa/
|
|
58
|
-
"@kopexa/heading": "17.0.
|
|
59
|
-
"@kopexa/
|
|
60
|
-
"@kopexa/tab-nav": "17.0.
|
|
61
|
-
"@kopexa/sidebar": "17.1.
|
|
62
|
-
"@kopexa/
|
|
63
|
-
"@kopexa/
|
|
64
|
-
"@kopexa/
|
|
65
|
-
"@kopexa/
|
|
66
|
-
"@kopexa/
|
|
67
|
-
"@kopexa/
|
|
68
|
-
"@kopexa/
|
|
69
|
-
"@kopexa/
|
|
70
|
-
"@kopexa/
|
|
71
|
-
"@kopexa/accordion": "17.2.
|
|
72
|
-
"@kopexa/
|
|
73
|
-
"@kopexa/
|
|
74
|
-
"@kopexa/mapped-controls": "17.0.
|
|
75
|
-
"@kopexa/
|
|
76
|
-
"@kopexa/
|
|
77
|
-
"@kopexa/
|
|
78
|
-
"@kopexa/
|
|
79
|
-
"@kopexa/label": "17.0.
|
|
80
|
-
"@kopexa/
|
|
81
|
-
"@kopexa/
|
|
82
|
-
"@kopexa/
|
|
83
|
-
"@kopexa/
|
|
84
|
-
"@kopexa/
|
|
85
|
-
"@kopexa/
|
|
86
|
-
"@kopexa/filter": "0.0.
|
|
87
|
-
"@kopexa/image-crop": "17.1.
|
|
34
|
+
"@kopexa/shared-utils": "17.0.29",
|
|
35
|
+
"@kopexa/react-utils": "17.0.29",
|
|
36
|
+
"@kopexa/button": "17.0.29",
|
|
37
|
+
"@kopexa/assistant": "0.0.1",
|
|
38
|
+
"@kopexa/dialog": "17.1.1",
|
|
39
|
+
"@kopexa/popover": "17.1.1",
|
|
40
|
+
"@kopexa/drawer": "17.1.1",
|
|
41
|
+
"@kopexa/command": "17.0.29",
|
|
42
|
+
"@kopexa/tooltip": "17.1.1",
|
|
43
|
+
"@kopexa/stat": "1.0.12",
|
|
44
|
+
"@kopexa/spinner": "17.0.29",
|
|
45
|
+
"@kopexa/page-layout": "17.0.29",
|
|
46
|
+
"@kopexa/dropdown-menu": "17.0.29",
|
|
47
|
+
"@kopexa/calendar": "17.0.29",
|
|
48
|
+
"@kopexa/input": "17.0.29",
|
|
49
|
+
"@kopexa/chip": "17.1.26",
|
|
50
|
+
"@kopexa/alert-dialog": "17.1.1",
|
|
51
|
+
"@kopexa/card": "17.2.13",
|
|
52
|
+
"@kopexa/avatar": "17.0.29",
|
|
53
|
+
"@kopexa/table": "17.0.29",
|
|
54
|
+
"@kopexa/code": "17.0.29",
|
|
55
|
+
"@kopexa/checkbox": "17.0.29",
|
|
56
|
+
"@kopexa/data-table": "17.0.29",
|
|
57
|
+
"@kopexa/page-header": "17.0.29",
|
|
58
|
+
"@kopexa/heading": "17.0.29",
|
|
59
|
+
"@kopexa/skeleton": "17.0.29",
|
|
60
|
+
"@kopexa/tab-nav": "17.0.29",
|
|
61
|
+
"@kopexa/sidebar": "17.1.13",
|
|
62
|
+
"@kopexa/risk-indicator": "17.0.29",
|
|
63
|
+
"@kopexa/separator": "17.0.29",
|
|
64
|
+
"@kopexa/tabs": "17.0.29",
|
|
65
|
+
"@kopexa/risk-badge": "17.0.29",
|
|
66
|
+
"@kopexa/split-page-layout": "17.0.29",
|
|
67
|
+
"@kopexa/preview-card": "17.1.23",
|
|
68
|
+
"@kopexa/section-row": "17.1.23",
|
|
69
|
+
"@kopexa/resizable": "17.0.29",
|
|
70
|
+
"@kopexa/hover-card": "17.0.29",
|
|
71
|
+
"@kopexa/accordion": "17.2.1",
|
|
72
|
+
"@kopexa/infotip": "17.1.19",
|
|
73
|
+
"@kopexa/callout": "17.0.29",
|
|
74
|
+
"@kopexa/mapped-controls": "17.0.29",
|
|
75
|
+
"@kopexa/integration-card": "17.0.29",
|
|
76
|
+
"@kopexa/data-grid": "17.1.23",
|
|
77
|
+
"@kopexa/blankstate": "17.0.29",
|
|
78
|
+
"@kopexa/select": "17.1.1",
|
|
79
|
+
"@kopexa/label": "17.0.29",
|
|
80
|
+
"@kopexa/autocomplete": "17.1.1",
|
|
81
|
+
"@kopexa/textarea": "17.0.29",
|
|
82
|
+
"@kopexa/scroll-area": "17.1.1",
|
|
83
|
+
"@kopexa/file-upload": "17.0.29",
|
|
84
|
+
"@kopexa/switch": "17.1.1",
|
|
85
|
+
"@kopexa/toolbar": "17.1.1",
|
|
86
|
+
"@kopexa/filter": "0.0.19",
|
|
87
|
+
"@kopexa/image-crop": "17.1.1",
|
|
88
|
+
"@kopexa/combobox": "17.2.1",
|
|
89
|
+
"@kopexa/loading": "17.0.29",
|
|
88
90
|
"@kopexa/audit-info": "0.0.0",
|
|
89
|
-
"@kopexa/
|
|
90
|
-
"@kopexa/navigation": "0.0.2"
|
|
91
|
+
"@kopexa/navigation": "0.0.3"
|
|
91
92
|
},
|
|
92
93
|
"clean-package": "../../../clean-package.config.json",
|
|
93
94
|
"module": "dist/index.mjs",
|