@floegence/floe-webapp-core 0.35.52 → 0.35.53

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.
@@ -53,6 +53,8 @@ export declare function useNotesOverlayModel(options: UseNotesOverlayModelOption
53
53
  activeItems: import("solid-js").Accessor<Readonly<{
54
54
  note_id: string;
55
55
  topic_id: string;
56
+ title: string;
57
+ headline?: string;
56
58
  body: string;
57
59
  preview_text: string;
58
60
  character_count: number;
@@ -171,6 +173,8 @@ export declare function useNotesOverlayModel(options: UseNotesOverlayModelOption
171
173
  note: import("solid-js").Accessor<Readonly<{
172
174
  note_id: string;
173
175
  topic_id: string;
176
+ title: string;
177
+ headline?: string;
174
178
  body: string;
175
179
  preview_text: string;
176
180
  character_count: number;
@@ -183,8 +187,10 @@ export declare function useNotesOverlayModel(options: UseNotesOverlayModelOption
183
187
  created_at_unix_ms: number;
184
188
  updated_at_unix_ms: number;
185
189
  }> | undefined>;
190
+ draftTitle: import("solid-js").Accessor<string>;
186
191
  draftBody: import("solid-js").Accessor<string>;
187
192
  draftColor: import("solid-js").Accessor<"azure" | "coral" | "graphite" | "sage" | "amber" | "rose">;
193
+ setDraftTitle: import("solid-js").Setter<string>;
188
194
  setDraftBody: import("solid-js").Setter<string>;
189
195
  setDraftColor: import("solid-js").Setter<"azure" | "coral" | "graphite" | "sage" | "amber" | "rose">;
190
196
  close: () => void;