qt-ui-kit 1.0.36 → 1.0.39
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 +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -114,9 +114,9 @@ type Props$3 = {
|
|
|
114
114
|
declare function EmailBody({ subjectLine, to, date, from, CC, BCC, attachments, body, }: Props$3): react_jsx_runtime.JSX.Element;
|
|
115
115
|
|
|
116
116
|
type Props$2 = {
|
|
117
|
-
messages?:
|
|
117
|
+
messages?: ChatData[];
|
|
118
118
|
};
|
|
119
|
-
type
|
|
119
|
+
type ChatData = {
|
|
120
120
|
name?: string;
|
|
121
121
|
timeStamp?: string;
|
|
122
122
|
body?: string;
|
|
@@ -240,6 +240,6 @@ type Event = {
|
|
|
240
240
|
};
|
|
241
241
|
}[keyof EventDataMap];
|
|
242
242
|
|
|
243
|
-
declare const fakeMessages:
|
|
243
|
+
declare const fakeMessages: ChatData[];
|
|
244
244
|
|
|
245
|
-
export { type Attachment, BaseIconName, type CalendarData, ChatBody, ColorVariants, EmailBody, type EmailData, type Event, EventCard, type EventData, type EventGroup, EventState, type EventSummaryParts, EventType, type ExternalPerson, FilterBar, type FilterValues, type IconSize, IntegrationService, type MessageData, NavBar, PreviewCard, SearchBar, TicketBody, type TicketComment, type TicketData, UrgencyLevel, fakeMessages };
|
|
245
|
+
export { type Attachment, BaseIconName, type CalendarData, ChatBody, type ChatData, ColorVariants, EmailBody, type EmailData, type Event, EventCard, type EventData, type EventGroup, EventState, type EventSummaryParts, EventType, type ExternalPerson, FilterBar, type FilterValues, type IconSize, IntegrationService, type MessageData, NavBar, PreviewCard, SearchBar, TicketBody, type TicketComment, type TicketData, UrgencyLevel, fakeMessages };
|
package/dist/index.d.ts
CHANGED
|
@@ -114,9 +114,9 @@ type Props$3 = {
|
|
|
114
114
|
declare function EmailBody({ subjectLine, to, date, from, CC, BCC, attachments, body, }: Props$3): react_jsx_runtime.JSX.Element;
|
|
115
115
|
|
|
116
116
|
type Props$2 = {
|
|
117
|
-
messages?:
|
|
117
|
+
messages?: ChatData[];
|
|
118
118
|
};
|
|
119
|
-
type
|
|
119
|
+
type ChatData = {
|
|
120
120
|
name?: string;
|
|
121
121
|
timeStamp?: string;
|
|
122
122
|
body?: string;
|
|
@@ -240,6 +240,6 @@ type Event = {
|
|
|
240
240
|
};
|
|
241
241
|
}[keyof EventDataMap];
|
|
242
242
|
|
|
243
|
-
declare const fakeMessages:
|
|
243
|
+
declare const fakeMessages: ChatData[];
|
|
244
244
|
|
|
245
|
-
export { type Attachment, BaseIconName, type CalendarData, ChatBody, ColorVariants, EmailBody, type EmailData, type Event, EventCard, type EventData, type EventGroup, EventState, type EventSummaryParts, EventType, type ExternalPerson, FilterBar, type FilterValues, type IconSize, IntegrationService, type MessageData, NavBar, PreviewCard, SearchBar, TicketBody, type TicketComment, type TicketData, UrgencyLevel, fakeMessages };
|
|
245
|
+
export { type Attachment, BaseIconName, type CalendarData, ChatBody, type ChatData, ColorVariants, EmailBody, type EmailData, type Event, EventCard, type EventData, type EventGroup, EventState, type EventSummaryParts, EventType, type ExternalPerson, FilterBar, type FilterValues, type IconSize, IntegrationService, type MessageData, NavBar, PreviewCard, SearchBar, TicketBody, type TicketComment, type TicketData, UrgencyLevel, fakeMessages };
|