@26lights/orcha 0.42.141 → 0.42.143

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.
@@ -0,0 +1,54 @@
1
+ import type { Sprint, Id } from '../types';
2
+ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ sprints: {
4
+ type: import("vue").PropType<Sprint[]>;
5
+ required: true;
6
+ };
7
+ isEditable: {
8
+ type: import("vue").PropType<boolean>;
9
+ };
10
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
11
+ updateSprint: (payload: {
12
+ id: Id;
13
+ name?: string;
14
+ startDate?: string;
15
+ endDate?: string;
16
+ color?: string;
17
+ }) => void;
18
+ archiveSprint: (payload: {
19
+ id: Id;
20
+ }) => void;
21
+ createSprint: (payload: {
22
+ name: string;
23
+ startDate: string;
24
+ endDate: string;
25
+ color?: string;
26
+ }) => void;
27
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
28
+ sprints: {
29
+ type: import("vue").PropType<Sprint[]>;
30
+ required: true;
31
+ };
32
+ isEditable: {
33
+ type: import("vue").PropType<boolean>;
34
+ };
35
+ }>> & Readonly<{
36
+ onCreateSprint?: ((payload: {
37
+ name: string;
38
+ startDate: string;
39
+ endDate: string;
40
+ color?: string;
41
+ }) => any) | undefined;
42
+ onUpdateSprint?: ((payload: {
43
+ id: Id;
44
+ name?: string;
45
+ startDate?: string;
46
+ endDate?: string;
47
+ color?: string;
48
+ }) => any) | undefined;
49
+ onArchiveSprint?: ((payload: {
50
+ id: Id;
51
+ }) => any) | undefined;
52
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
53
+ declare const _default: typeof __VLS_publicComponent;
54
+ export default _default;
@@ -13,3 +13,4 @@ export { default as AoColorPicker } from './components/AoColorPicker.vue';
13
13
  export { default as AoTabBar } from './components/AoTabBar.vue';
14
14
  export { default as AoCardFeed } from './components/AoCardFeed.vue';
15
15
  export { default as AoProjectPhases } from './components/AoProjectPhases.vue';
16
+ export { default as AoSprintList } from './components/AoSprintList.vue';
@@ -140,6 +140,8 @@ export interface Sprint extends Entity {
140
140
  projectId: string;
141
141
  startDate: string;
142
142
  endDate: string;
143
+ color?: string;
144
+ active: boolean;
143
145
  }
144
146
  export interface SprintPlanningUser {
145
147
  userId: 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.42.141",
7
+ "version": "0.42.143",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],