qt-ui-kit 1.0.14 → 1.0.16
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 +12 -2
- package/dist/index.d.ts +12 -2
- package/dist/index.js +428 -99
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +410 -83
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +9 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -66,8 +66,16 @@ type Props$5 = {
|
|
|
66
66
|
onSelected?: () => void;
|
|
67
67
|
service?: IntegrationService;
|
|
68
68
|
subjectLine?: string;
|
|
69
|
+
body?: string;
|
|
70
|
+
sender?: string;
|
|
71
|
+
source?: string;
|
|
72
|
+
metadata?: [string] | [string, string];
|
|
73
|
+
date?: Date;
|
|
74
|
+
onClickGoToSource?: (() => void) | undefined;
|
|
75
|
+
urgencyLevel?: UrgencyLevel;
|
|
76
|
+
alert?: boolean;
|
|
69
77
|
};
|
|
70
|
-
declare function PreviewCard({ onRead, onSelected, service, subjectLine, }: Props$5): react_jsx_runtime.JSX.Element;
|
|
78
|
+
declare function PreviewCard({ onRead, onSelected, service, subjectLine, body, sender, source, metadata, date, onClickGoToSource, urgencyLevel, alert, }: Props$5): react_jsx_runtime.JSX.Element;
|
|
71
79
|
|
|
72
80
|
type Props$4 = {};
|
|
73
81
|
declare function NavBar({}: Props$4): react_jsx_runtime.JSX.Element;
|
|
@@ -125,8 +133,10 @@ type Props = {
|
|
|
125
133
|
};
|
|
126
134
|
declare function TicketBody({ issueNumber, notification, project, task, dueDate, startDate, assignees, reporter, team, location, related, description, comments, }: Props): react_jsx_runtime.JSX.Element;
|
|
127
135
|
|
|
136
|
+
declare function SearchBar(): react_jsx_runtime.JSX.Element;
|
|
137
|
+
|
|
128
138
|
type IconSize = 16 | 20 | 24 | 36;
|
|
129
139
|
|
|
130
140
|
declare const fakeMessages: MessageData[];
|
|
131
141
|
|
|
132
|
-
export { BaseIconName, ChatBody, ColorVariants, EmailBody, EventCard, type EventData, EventType, type IconSize, IntegrationService, NavBar, PreviewCard, TicketBody, type TicketComment, UrgencyLevel, fakeMessages };
|
|
142
|
+
export { BaseIconName, ChatBody, ColorVariants, EmailBody, EventCard, type EventData, EventType, NavBar as FilterBar, type IconSize, IntegrationService, NavBar, PreviewCard, SearchBar, TicketBody, type TicketComment, UrgencyLevel, fakeMessages };
|
package/dist/index.d.ts
CHANGED
|
@@ -66,8 +66,16 @@ type Props$5 = {
|
|
|
66
66
|
onSelected?: () => void;
|
|
67
67
|
service?: IntegrationService;
|
|
68
68
|
subjectLine?: string;
|
|
69
|
+
body?: string;
|
|
70
|
+
sender?: string;
|
|
71
|
+
source?: string;
|
|
72
|
+
metadata?: [string] | [string, string];
|
|
73
|
+
date?: Date;
|
|
74
|
+
onClickGoToSource?: (() => void) | undefined;
|
|
75
|
+
urgencyLevel?: UrgencyLevel;
|
|
76
|
+
alert?: boolean;
|
|
69
77
|
};
|
|
70
|
-
declare function PreviewCard({ onRead, onSelected, service, subjectLine, }: Props$5): react_jsx_runtime.JSX.Element;
|
|
78
|
+
declare function PreviewCard({ onRead, onSelected, service, subjectLine, body, sender, source, metadata, date, onClickGoToSource, urgencyLevel, alert, }: Props$5): react_jsx_runtime.JSX.Element;
|
|
71
79
|
|
|
72
80
|
type Props$4 = {};
|
|
73
81
|
declare function NavBar({}: Props$4): react_jsx_runtime.JSX.Element;
|
|
@@ -125,8 +133,10 @@ type Props = {
|
|
|
125
133
|
};
|
|
126
134
|
declare function TicketBody({ issueNumber, notification, project, task, dueDate, startDate, assignees, reporter, team, location, related, description, comments, }: Props): react_jsx_runtime.JSX.Element;
|
|
127
135
|
|
|
136
|
+
declare function SearchBar(): react_jsx_runtime.JSX.Element;
|
|
137
|
+
|
|
128
138
|
type IconSize = 16 | 20 | 24 | 36;
|
|
129
139
|
|
|
130
140
|
declare const fakeMessages: MessageData[];
|
|
131
141
|
|
|
132
|
-
export { BaseIconName, ChatBody, ColorVariants, EmailBody, EventCard, type EventData, EventType, type IconSize, IntegrationService, NavBar, PreviewCard, TicketBody, type TicketComment, UrgencyLevel, fakeMessages };
|
|
142
|
+
export { BaseIconName, ChatBody, ColorVariants, EmailBody, EventCard, type EventData, EventType, NavBar as FilterBar, type IconSize, IntegrationService, NavBar, PreviewCard, SearchBar, TicketBody, type TicketComment, UrgencyLevel, fakeMessages };
|