@26lights/orcha 0.39.0 → 0.39.1
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.
|
@@ -19,6 +19,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
19
19
|
variant: {
|
|
20
20
|
type: import("vue").PropType<TagVariant>;
|
|
21
21
|
};
|
|
22
|
+
iconName: {
|
|
23
|
+
type: import("vue").PropType<string>;
|
|
24
|
+
};
|
|
22
25
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23
26
|
click: (event: Event) => void;
|
|
24
27
|
close: (event: Event) => void;
|
|
@@ -42,6 +45,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
42
45
|
variant: {
|
|
43
46
|
type: import("vue").PropType<TagVariant>;
|
|
44
47
|
};
|
|
48
|
+
iconName: {
|
|
49
|
+
type: import("vue").PropType<string>;
|
|
50
|
+
};
|
|
45
51
|
}>> & {
|
|
46
52
|
onClick?: ((event: Event) => any) | undefined;
|
|
47
53
|
onClose?: ((event: Event) => any) | undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Activity, type TemplateDetails, type TemplateItemType, type AddItemPayload, type UpdateItemPayload, type AddRulePayload, type RemoveRulePayload, type ActivityType, type AddFilesPayload, type RemoveFilePayload } from '../types';
|
|
1
|
+
import { type Activity, type TemplateDetails, type TemplateItemType, type AddItemPayload, type UpdateItemPayload, type AddRulePayload, type RemoveRulePayload, type ActivityType, type AddFilesPayload, type RemoveFilePayload, type RemoveItemPayload } from '../types';
|
|
2
2
|
import { User } from '../types';
|
|
3
3
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
4
4
|
templateId: {
|
|
@@ -26,7 +26,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
26
26
|
};
|
|
27
27
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
28
28
|
addItem: (payload: AddItemPayload) => void;
|
|
29
|
-
removeItem: (payload:
|
|
29
|
+
removeItem: (payload: RemoveItemPayload) => void;
|
|
30
30
|
updateItem: (payload: UpdateItemPayload<TemplateItemType>) => void;
|
|
31
31
|
addRule: (payload: AddRulePayload) => void;
|
|
32
32
|
removeRule: (payload: RemoveRulePayload) => void;
|
|
@@ -62,7 +62,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
62
62
|
onAddRule?: ((payload: AddRulePayload) => any) | undefined;
|
|
63
63
|
onRemoveRule?: ((payload: RemoveRulePayload) => any) | undefined;
|
|
64
64
|
onAddItem?: ((payload: AddItemPayload) => any) | undefined;
|
|
65
|
-
onRemoveItem?: ((payload:
|
|
65
|
+
onRemoveItem?: ((payload: RemoveItemPayload) => any) | undefined;
|
|
66
66
|
onUpdateItem?: ((payload: UpdateItemPayload<TemplateItemType>) => any) | undefined;
|
|
67
67
|
}, {}, {}>, {
|
|
68
68
|
activityDetailsBody(props: {
|
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.39.
|
|
7
|
+
"version": "0.39.1",
|
|
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.38.6",
|
|
31
31
|
"@floating-ui/dom": "^1.5.3",
|
|
32
32
|
"@vueform/multiselect": "^2.6.6",
|
|
33
33
|
"@vueuse/core": "^10.8.0",
|