@26lights/orcha 0.23.1 → 0.24.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/orcha.cjs.js +1 -1
- package/dist/orcha.es.js +2740 -2765
- package/dist/orcha.umd.js +1 -1
- package/dist/src/main.d.ts +1 -0
- package/dist/src/views/AoProjectOverviewActivityDetails.vue.d.ts +3 -1
- package/package.json +2 -1
package/dist/src/main.d.ts
CHANGED
|
@@ -7,3 +7,4 @@ export * from './types';
|
|
|
7
7
|
export { default as AoField } from './components/AoField.vue';
|
|
8
8
|
export { default as AoInputField } from './components/AoInputField.vue';
|
|
9
9
|
export { default as AoMultiselect } from './components/AoMultiselect.vue';
|
|
10
|
+
export { default as AoCardFeed } from './components/AoCardFeed.vue';
|
|
@@ -116,7 +116,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
116
116
|
onAddFiles?: ((payload: AddFilesPayload) => any) | undefined;
|
|
117
117
|
onAddComment?: ((payload: AddCommentPayload) => any) | undefined;
|
|
118
118
|
}, {}, {}>, {
|
|
119
|
-
default?(_: {
|
|
119
|
+
default?(_: {
|
|
120
|
+
activity: Activity;
|
|
121
|
+
}): any;
|
|
120
122
|
}>;
|
|
121
123
|
export default _default;
|
|
122
124
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
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.24.0",
|
|
8
8
|
"workspaces": [
|
|
9
9
|
"packages/*"
|
|
10
10
|
],
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"vuedraggable": "~4.1.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
+
"@26lights/orcha": "^0.24.0",
|
|
30
31
|
"@floating-ui/dom": "^1.5.3",
|
|
31
32
|
"@vueform/multiselect": "^2.6.2",
|
|
32
33
|
"@vueuse/core": "^10.2.1",
|