@docyrus/ui-pro-ai-assistant 0.3.4 → 0.3.6
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/styles.css
CHANGED
|
@@ -770,9 +770,6 @@
|
|
|
770
770
|
.ml-6 {
|
|
771
771
|
margin-left: calc(var(--spacing) * 6);
|
|
772
772
|
}
|
|
773
|
-
.ml-10 {
|
|
774
|
-
margin-left: calc(var(--spacing) * 10);
|
|
775
|
-
}
|
|
776
773
|
.ml-12 {
|
|
777
774
|
margin-left: calc(var(--spacing) * 12);
|
|
778
775
|
}
|
|
@@ -3191,6 +3188,9 @@
|
|
|
3191
3188
|
.pl-10 {
|
|
3192
3189
|
padding-left: calc(var(--spacing) * 10);
|
|
3193
3190
|
}
|
|
3191
|
+
.pl-12 {
|
|
3192
|
+
padding-left: calc(var(--spacing) * 12);
|
|
3193
|
+
}
|
|
3194
3194
|
.pl-\[5px\] {
|
|
3195
3195
|
padding-left: 5px;
|
|
3196
3196
|
}
|
|
@@ -26,6 +26,7 @@ interface AssistantProjectDetailViewProps {
|
|
|
26
26
|
isRecording: boolean;
|
|
27
27
|
recognition: SpeechRecognitionInstance | null;
|
|
28
28
|
onMicrophoneClick: () => void;
|
|
29
|
+
sidebarOffset?: boolean;
|
|
29
30
|
}
|
|
30
31
|
export declare const AssistantProjectDetailView: FC<AssistantProjectDetailViewProps>;
|
|
31
32
|
export {};
|
|
@@ -10,6 +10,7 @@ interface SessionsListViewProps {
|
|
|
10
10
|
onEditSession: (session: AssistantSession) => void;
|
|
11
11
|
onDeleteSession: (session: AssistantSession) => void;
|
|
12
12
|
t: (key: string, params?: Record<string, string>) => string;
|
|
13
|
+
sidebarOffset?: boolean;
|
|
13
14
|
}
|
|
14
15
|
export declare const SessionsListView: FC<SessionsListViewProps>;
|
|
15
16
|
export {};
|
package/package.json
CHANGED