@26lights/orcha 0.30.0 → 0.31.0
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/locales/en/translation.json +2 -1
- package/dist/orcha.cjs.js +1 -1
- package/dist/orcha.css +1 -1
- package/dist/orcha.es.js +620 -607
- package/dist/orcha.umd.js +2 -2
- package/dist/src/views/AoFeed.vue.d.ts +10 -0
- package/package.json +2 -2
|
@@ -24,6 +24,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
24
24
|
type: import("vue").PropType<boolean>;
|
|
25
25
|
required: true;
|
|
26
26
|
};
|
|
27
|
+
showsOnlyImportant: {
|
|
28
|
+
type: import("vue").PropType<boolean>;
|
|
29
|
+
required: true;
|
|
30
|
+
};
|
|
27
31
|
userId: {
|
|
28
32
|
type: import("vue").PropType<string>;
|
|
29
33
|
required: true;
|
|
@@ -61,6 +65,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
61
65
|
"update:searchText": (value: string) => void;
|
|
62
66
|
"clear:searchText": (event: Event) => void;
|
|
63
67
|
"update:showsArchivedActivities": (value: boolean) => void;
|
|
68
|
+
"update:showsOnlyImportant": (value: boolean) => void;
|
|
64
69
|
addSubtask: (payload: AddSubtaskPayload) => void;
|
|
65
70
|
updateSubtask: (payload: UpdateSubtaskFieldPayload) => void;
|
|
66
71
|
deleteSubtask: (payload: {
|
|
@@ -95,6 +100,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
95
100
|
type: import("vue").PropType<boolean>;
|
|
96
101
|
required: true;
|
|
97
102
|
};
|
|
103
|
+
showsOnlyImportant: {
|
|
104
|
+
type: import("vue").PropType<boolean>;
|
|
105
|
+
required: true;
|
|
106
|
+
};
|
|
98
107
|
userId: {
|
|
99
108
|
type: import("vue").PropType<string>;
|
|
100
109
|
required: true;
|
|
@@ -142,6 +151,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
142
151
|
"onUpdate:searchText"?: ((value: string) => any) | undefined;
|
|
143
152
|
"onClear:searchText"?: ((event: Event) => any) | undefined;
|
|
144
153
|
"onUpdate:showsArchivedActivities"?: ((value: boolean) => any) | undefined;
|
|
154
|
+
"onUpdate:showsOnlyImportant"?: ((value: boolean) => any) | undefined;
|
|
145
155
|
}, {
|
|
146
156
|
isTaskCheckable: (task: Subtask) => boolean;
|
|
147
157
|
searchText: string;
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "CC-BY-NC-ND-4.0",
|
|
6
6
|
"author": "26lights <dev@26lights.com> (https://www.26lights.com)",
|
|
7
|
-
"version": "0.
|
|
7
|
+
"version": "0.31.0",
|
|
8
8
|
"workspaces": [
|
|
9
9
|
"packages/*"
|
|
10
10
|
],
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"vuedraggable": "~4.1.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@26lights/orcha": "^0.
|
|
30
|
+
"@26lights/orcha": "^0.31.0",
|
|
31
31
|
"@floating-ui/dom": "^1.5.3",
|
|
32
32
|
"@vueform/multiselect": "^2.6.2",
|
|
33
33
|
"@vueuse/core": "^10.2.1",
|