@26lights/orcha 0.35.18 → 0.36.2
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 +1 -1
- package/dist/orcha.es.js +3204 -3219
- package/dist/orcha.umd.js +2 -2
- package/dist/src/components/AoCardFeed.vue.d.ts +4 -4
- package/dist/src/components/AoCardProjectItemMilestone.vue.d.ts +1 -1
- package/dist/src/components/AoListKanban.vue.d.ts +5 -5
- package/dist/src/main.d.ts +0 -1
- package/package.json +2 -2
|
@@ -47,8 +47,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
47
47
|
isClosed: {
|
|
48
48
|
type: import("vue").PropType<boolean>;
|
|
49
49
|
};
|
|
50
|
-
|
|
51
|
-
type: import("vue").PropType<
|
|
50
|
+
tagType: {
|
|
51
|
+
type: import("vue").PropType<"project" | "milestone">;
|
|
52
52
|
};
|
|
53
53
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
54
54
|
removeAssignee: (assigneeId: string) => void;
|
|
@@ -101,8 +101,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
101
101
|
isClosed: {
|
|
102
102
|
type: import("vue").PropType<boolean>;
|
|
103
103
|
};
|
|
104
|
-
|
|
105
|
-
type: import("vue").PropType<
|
|
104
|
+
tagType: {
|
|
105
|
+
type: import("vue").PropType<"project" | "milestone">;
|
|
106
106
|
};
|
|
107
107
|
}>> & {
|
|
108
108
|
onRemoveAssignee?: ((assigneeId: string) => any) | undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Activity,
|
|
1
|
+
import { ActivityStatus, type Activity, UpdateMilestonePayload, type User } from '../types';
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
3
|
id: {
|
|
4
4
|
type: import("vue").PropType<string>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type
|
|
1
|
+
import { type Activity, type ActivityFeedStatus, type ActivityStatus, type ChangeFeedActivitiesPayload, type Id, type UpdateActivityPayload, User } from '../types';
|
|
2
2
|
declare const _default: <T extends ActivityFeedStatus>(__VLS_props: {
|
|
3
3
|
list: Activity[];
|
|
4
4
|
status: ActivityStatus;
|
|
@@ -10,7 +10,7 @@ declare const _default: <T extends ActivityFeedStatus>(__VLS_props: {
|
|
|
10
10
|
hasMore?: boolean | undefined;
|
|
11
11
|
noMoreLabel?: string | undefined;
|
|
12
12
|
isEditable: boolean | 'only-own';
|
|
13
|
-
|
|
13
|
+
tagType?: "project" | "milestone" | undefined;
|
|
14
14
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: Pick<{
|
|
15
15
|
props: {
|
|
16
16
|
list: Activity[];
|
|
@@ -23,7 +23,7 @@ declare const _default: <T extends ActivityFeedStatus>(__VLS_props: {
|
|
|
23
23
|
hasMore?: boolean | undefined;
|
|
24
24
|
noMoreLabel?: string | undefined;
|
|
25
25
|
isEditable: boolean | 'only-own';
|
|
26
|
-
|
|
26
|
+
tagType?: "project" | "milestone" | undefined;
|
|
27
27
|
};
|
|
28
28
|
expose(exposed: {}): void;
|
|
29
29
|
attrs: any;
|
|
@@ -57,7 +57,7 @@ declare const _default: <T extends ActivityFeedStatus>(__VLS_props: {
|
|
|
57
57
|
hasMore?: boolean | undefined;
|
|
58
58
|
noMoreLabel?: string | undefined;
|
|
59
59
|
isEditable: boolean | 'only-own';
|
|
60
|
-
|
|
60
|
+
tagType?: "project" | "milestone" | undefined;
|
|
61
61
|
};
|
|
62
62
|
expose(exposed: {}): void;
|
|
63
63
|
attrs: any;
|
|
@@ -94,7 +94,7 @@ declare const _default: <T extends ActivityFeedStatus>(__VLS_props: {
|
|
|
94
94
|
hasMore?: boolean | undefined;
|
|
95
95
|
noMoreLabel?: string | undefined;
|
|
96
96
|
isEditable: boolean | 'only-own';
|
|
97
|
-
|
|
97
|
+
tagType?: "project" | "milestone" | undefined;
|
|
98
98
|
};
|
|
99
99
|
expose(exposed: {}): void;
|
|
100
100
|
attrs: any;
|
package/dist/src/main.d.ts
CHANGED
|
@@ -8,6 +8,5 @@ export { default as AoField } from './components/AoField.vue';
|
|
|
8
8
|
export { default as AoInputField } from './components/AoInputField.vue';
|
|
9
9
|
export { default as AoCheckboxField } from './components/AoCheckboxField.vue';
|
|
10
10
|
export { default as AoMultiselect } from './components/AoMultiselect.vue';
|
|
11
|
-
export { default as AoAvatar } from './components/AoAvatar.vue';
|
|
12
11
|
export { default as AoCardFeed } from './components/AoCardFeed.vue';
|
|
13
12
|
export { default as AoProjectPhases } from './components/AoProjectPhases.vue';
|
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.36.2",
|
|
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.36.2",
|
|
31
31
|
"@floating-ui/dom": "^1.5.3",
|
|
32
32
|
"@vueform/multiselect": "^2.6.6",
|
|
33
33
|
"@vueuse/core": "^10.8.0",
|