@26lights/orcha 0.37.36 → 0.37.37
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/orcha.cjs.js +2 -2
- package/dist/orcha.es.js +5712 -6407
- package/dist/orcha.umd.js +3 -3
- package/dist/src/components/AoActivityDetails.vue.d.ts +2 -0
- package/dist/src/views/AoFeed.vue.d.ts +2 -0
- package/package.json +3 -4
|
@@ -61,6 +61,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
61
61
|
addComment: (payload: AddCommentPayload) => void;
|
|
62
62
|
updateComment: (payload: UpdateCommentPayload) => void;
|
|
63
63
|
removeComment: (payload: RemoveCommentPayload) => void;
|
|
64
|
+
toast: (message: string, type: "success" | "error") => void;
|
|
64
65
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
65
66
|
activity: {
|
|
66
67
|
type: import("vue").PropType<Activity>;
|
|
@@ -123,6 +124,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
123
124
|
onUpdateSubtask?: ((payload: UpdateSubtaskFieldPayload) => any) | undefined;
|
|
124
125
|
onAddFiles?: ((payload: AddFilesPayload) => any) | undefined;
|
|
125
126
|
onAddComment?: ((payload: AddCommentPayload) => any) | undefined;
|
|
127
|
+
onToast?: ((message: string, type: "success" | "error") => any) | undefined;
|
|
126
128
|
}, {}, {}>, {
|
|
127
129
|
header(): any;
|
|
128
130
|
default(props: {
|
|
@@ -89,6 +89,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
89
89
|
addComment: (payload: AddCommentPayload) => void;
|
|
90
90
|
updateComment: (payload: UpdateCommentPayload) => void;
|
|
91
91
|
removeComment: (payload: RemoveCommentPayload) => void;
|
|
92
|
+
toast: (message: string, type: "success" | "error") => void;
|
|
92
93
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
93
94
|
filters: {
|
|
94
95
|
type: import("vue").PropType<FeedFilters>;
|
|
@@ -172,6 +173,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
172
173
|
onUpdateSubtask?: ((payload: UpdateSubtaskFieldPayload) => any) | undefined;
|
|
173
174
|
onAddFiles?: ((payload: AddFilesPayload) => any) | undefined;
|
|
174
175
|
onAddComment?: ((payload: AddCommentPayload) => any) | undefined;
|
|
176
|
+
onToast?: ((message: string, type: "success" | "error") => any) | undefined;
|
|
175
177
|
onAddActivity?: ((payload: AddActivityFeedPayload) => any) | undefined;
|
|
176
178
|
"onChange:activities"?: ((payload: ChangeFeedActivitiesPayload) => any) | undefined;
|
|
177
179
|
"onUpdate:filters"?: ((value: FeedFilters) => any) | undefined;
|
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.37.
|
|
7
|
+
"version": "0.37.37",
|
|
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.37.
|
|
30
|
+
"@26lights/orcha": "^0.37.37",
|
|
31
31
|
"@floating-ui/dom": "^1.5.3",
|
|
32
32
|
"@vueform/multiselect": "^2.6.6",
|
|
33
33
|
"@vueuse/core": "^10.8.0",
|
|
@@ -36,8 +36,7 @@
|
|
|
36
36
|
"i18next-http-backend": "^2.2.1",
|
|
37
37
|
"i18next-vue": "^2.2.1",
|
|
38
38
|
"lexorank": "^1.0.5",
|
|
39
|
-
"vue-color-kit": "^1.0.6"
|
|
40
|
-
"vue-toastification": "next"
|
|
39
|
+
"vue-color-kit": "^1.0.6"
|
|
41
40
|
},
|
|
42
41
|
"devDependencies": {
|
|
43
42
|
"@histoire/plugin-vue": "^0.17.1",
|