@26lights/orcha 0.34.5 → 0.34.6
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 +2164 -2163
- package/dist/orcha.umd.js +1 -1
- package/dist/src/components/AoCardProjectItemMilestone.vue.d.ts +5 -5
- package/dist/src/helpers.d.ts +2 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ActivityStatus, type Activity, UpdateMilestonePayload } from '../types';
|
|
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>;
|
|
@@ -23,8 +23,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
23
23
|
isSelected: {
|
|
24
24
|
type: import("vue").PropType<boolean>;
|
|
25
25
|
};
|
|
26
|
-
|
|
27
|
-
type: import("vue").PropType<
|
|
26
|
+
assignee: {
|
|
27
|
+
type: import("vue").PropType<User>;
|
|
28
28
|
};
|
|
29
29
|
important: {
|
|
30
30
|
type: import("vue").PropType<boolean>;
|
|
@@ -61,8 +61,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
61
61
|
isSelected: {
|
|
62
62
|
type: import("vue").PropType<boolean>;
|
|
63
63
|
};
|
|
64
|
-
|
|
65
|
-
type: import("vue").PropType<
|
|
64
|
+
assignee: {
|
|
65
|
+
type: import("vue").PropType<User>;
|
|
66
66
|
};
|
|
67
67
|
important: {
|
|
68
68
|
type: import("vue").PropType<boolean>;
|
package/dist/src/helpers.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Activity, type ActivityStatus, type Milestone, MilestoneStatus, Ordered, type Phase } from './types';
|
|
1
|
+
import { type Activity, type ActivityStatus, type Milestone, MilestoneStatus, Ordered, type Phase, User } from './types';
|
|
2
2
|
import { DraggableChangeEvent } from './types/utils';
|
|
3
3
|
export declare function sumPhaseActivitiesAmount(milestones: Milestone[]): number;
|
|
4
4
|
export declare function sumTemplateMilestonesAmount(phases: Phase[]): number;
|
|
@@ -12,3 +12,4 @@ export declare function isFullyDone(milestone: Milestone, closedStatus: Activity
|
|
|
12
12
|
export declare function milestoneWithStatus(milestone: Milestone, closedStatus: ActivityStatus): Milestone & {
|
|
13
13
|
status: MilestoneStatus;
|
|
14
14
|
};
|
|
15
|
+
export declare const getUserName: (user: User | undefined | null) => 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.34.
|
|
7
|
+
"version": "0.34.6",
|
|
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.34.
|
|
30
|
+
"@26lights/orcha": "^0.34.6",
|
|
31
31
|
"@floating-ui/dom": "^1.5.3",
|
|
32
32
|
"@vueform/multiselect": "^2.6.6",
|
|
33
33
|
"@vueuse/core": "^10.8.0",
|