qt-ui-kit 1.0.11 → 1.0.12
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 +8 -8
- package/dist/index.d.ts +8 -8
- 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
|
@@ -53,6 +53,13 @@ type EventData = {
|
|
|
53
53
|
eventBody?: ReactNode;
|
|
54
54
|
service?: IntegrationService;
|
|
55
55
|
};
|
|
56
|
+
type TicketComment = {
|
|
57
|
+
name?: string;
|
|
58
|
+
timestamp?: string;
|
|
59
|
+
text?: string;
|
|
60
|
+
picture?: string;
|
|
61
|
+
emojis?: string[];
|
|
62
|
+
};
|
|
56
63
|
|
|
57
64
|
type Props$5 = {
|
|
58
65
|
onRead?: () => void;
|
|
@@ -116,15 +123,8 @@ type Props = {
|
|
|
116
123
|
description?: string;
|
|
117
124
|
comments?: TicketComment[];
|
|
118
125
|
};
|
|
119
|
-
type TicketComment = {
|
|
120
|
-
name?: string;
|
|
121
|
-
timestamp?: string;
|
|
122
|
-
text?: string;
|
|
123
|
-
picture?: string;
|
|
124
|
-
emojis?: string[];
|
|
125
|
-
};
|
|
126
126
|
declare function TicketBody({ issueNumber, notification, project, task, dueDate, startDate, assignees, reporter, team, location, related, description, comments, }: Props): react_jsx_runtime.JSX.Element;
|
|
127
127
|
|
|
128
128
|
type IconSize = 16 | 20 | 24 | 36;
|
|
129
129
|
|
|
130
|
-
export { BaseIconName, ChatBody, ColorVariants, EmailBody, EventCard, type EventData, EventType, type IconSize, IntegrationService, NavBar, PreviewCard, TicketBody, UrgencyLevel };
|
|
130
|
+
export { BaseIconName, ChatBody, ColorVariants, EmailBody, EventCard, type EventData, EventType, type IconSize, IntegrationService, NavBar, PreviewCard, TicketBody, type TicketComment, UrgencyLevel };
|
package/dist/index.d.ts
CHANGED
|
@@ -53,6 +53,13 @@ type EventData = {
|
|
|
53
53
|
eventBody?: ReactNode;
|
|
54
54
|
service?: IntegrationService;
|
|
55
55
|
};
|
|
56
|
+
type TicketComment = {
|
|
57
|
+
name?: string;
|
|
58
|
+
timestamp?: string;
|
|
59
|
+
text?: string;
|
|
60
|
+
picture?: string;
|
|
61
|
+
emojis?: string[];
|
|
62
|
+
};
|
|
56
63
|
|
|
57
64
|
type Props$5 = {
|
|
58
65
|
onRead?: () => void;
|
|
@@ -116,15 +123,8 @@ type Props = {
|
|
|
116
123
|
description?: string;
|
|
117
124
|
comments?: TicketComment[];
|
|
118
125
|
};
|
|
119
|
-
type TicketComment = {
|
|
120
|
-
name?: string;
|
|
121
|
-
timestamp?: string;
|
|
122
|
-
text?: string;
|
|
123
|
-
picture?: string;
|
|
124
|
-
emojis?: string[];
|
|
125
|
-
};
|
|
126
126
|
declare function TicketBody({ issueNumber, notification, project, task, dueDate, startDate, assignees, reporter, team, location, related, description, comments, }: Props): react_jsx_runtime.JSX.Element;
|
|
127
127
|
|
|
128
128
|
type IconSize = 16 | 20 | 24 | 36;
|
|
129
129
|
|
|
130
|
-
export { BaseIconName, ChatBody, ColorVariants, EmailBody, EventCard, type EventData, EventType, type IconSize, IntegrationService, NavBar, PreviewCard, TicketBody, UrgencyLevel };
|
|
130
|
+
export { BaseIconName, ChatBody, ColorVariants, EmailBody, EventCard, type EventData, EventType, type IconSize, IntegrationService, NavBar, PreviewCard, TicketBody, type TicketComment, UrgencyLevel };
|