@feedmepos/mf-remy-panel 0.18.0-dev.11 → 0.18.0-dev.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/{HomeView-133255bb.js → HomeView-cc6fdb7a.js} +1 -1
- package/dist/{RemyButton-8ae5cd4b.js → RemyButton-5af87908.js} +1 -1
- package/dist/{app-387bbf2e.js → app-465f50e6.js} +5492 -5481
- package/dist/app.js +1 -1
- package/dist/components/memory/memoryCategories.d.ts +35 -0
- package/dist/style.css +1 -1
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/app.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import "vue";
|
|
2
|
-
import { C as o, A as p, c as m, i as n, d as u, r as C, u as l, b as A } from "./app-
|
|
2
|
+
import { C as o, A as p, c as m, i as n, d as u, r as C, u as l, b as A } from "./app-465f50e6.js";
|
|
3
3
|
import "pinia";
|
|
4
4
|
import "@feedmepos/mf-common";
|
|
5
5
|
import "vue-router";
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export declare const MEMORY_CATEGORY_META: {
|
|
2
|
+
readonly profile: {
|
|
3
|
+
readonly label: "Profile";
|
|
4
|
+
readonly color: "#3b82f6";
|
|
5
|
+
};
|
|
6
|
+
readonly preference: {
|
|
7
|
+
readonly label: "Preferences";
|
|
8
|
+
readonly color: "#10b981";
|
|
9
|
+
};
|
|
10
|
+
readonly workflow: {
|
|
11
|
+
readonly label: "Workflows";
|
|
12
|
+
readonly color: "#8b5cf6";
|
|
13
|
+
};
|
|
14
|
+
readonly goal: {
|
|
15
|
+
readonly label: "Goals";
|
|
16
|
+
readonly color: "#f97316";
|
|
17
|
+
};
|
|
18
|
+
readonly concern: {
|
|
19
|
+
readonly label: "Concerns";
|
|
20
|
+
readonly color: "#f59e0b";
|
|
21
|
+
};
|
|
22
|
+
readonly experience: {
|
|
23
|
+
readonly label: "Learned tool lessons";
|
|
24
|
+
readonly color: "#ec4899";
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
export type ManagedMemoryCategory = keyof typeof MEMORY_CATEGORY_META;
|
|
28
|
+
export declare const MANAGED_MEMORY_CATEGORIES: ("profile" | "concern" | "preference" | "workflow" | "goal" | "experience")[];
|
|
29
|
+
export declare function buildMemoryCategoryGroups<T extends {
|
|
30
|
+
category: string;
|
|
31
|
+
status: string;
|
|
32
|
+
}>(memories: T[], categoryFilter?: string): {
|
|
33
|
+
category: string;
|
|
34
|
+
items: T[];
|
|
35
|
+
}[];
|