@26lights/orcha 0.38.9 → 0.38.10
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 +2 -2
- package/dist/orcha.css +1 -1
- package/dist/orcha.es.js +2936 -2892
- package/dist/orcha.umd.js +3 -3
- package/dist/src/components/AoCheckboxField.vue.d.ts +5 -5
- package/dist/src/components/AoInputField.vue.d.ts +14 -14
- package/dist/src/components/AoSaveTemplateModal.vue.d.ts +16 -0
- package/package.json +2 -2
|
@@ -9,12 +9,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
9
9
|
required: true;
|
|
10
10
|
default: boolean;
|
|
11
11
|
};
|
|
12
|
-
|
|
12
|
+
isDisabled: {
|
|
13
13
|
type: import("vue").PropType<boolean>;
|
|
14
14
|
required: true;
|
|
15
15
|
default: boolean;
|
|
16
16
|
};
|
|
17
|
-
|
|
17
|
+
isReadonly: {
|
|
18
18
|
type: import("vue").PropType<boolean>;
|
|
19
19
|
required: true;
|
|
20
20
|
default: boolean;
|
|
@@ -30,12 +30,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
30
30
|
required: true;
|
|
31
31
|
default: boolean;
|
|
32
32
|
};
|
|
33
|
-
|
|
33
|
+
isDisabled: {
|
|
34
34
|
type: import("vue").PropType<boolean>;
|
|
35
35
|
required: true;
|
|
36
36
|
default: boolean;
|
|
37
37
|
};
|
|
38
|
-
|
|
38
|
+
isReadonly: {
|
|
39
39
|
type: import("vue").PropType<boolean>;
|
|
40
40
|
required: true;
|
|
41
41
|
default: boolean;
|
|
@@ -45,7 +45,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
45
45
|
}, {
|
|
46
46
|
label: string;
|
|
47
47
|
modelValue: boolean;
|
|
48
|
-
isReadonly: boolean;
|
|
49
48
|
isDisabled: boolean;
|
|
49
|
+
isReadonly: boolean;
|
|
50
50
|
}, {}>;
|
|
51
51
|
export default _default;
|
|
@@ -12,20 +12,20 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
12
12
|
type: import("vue").PropType<string | number>;
|
|
13
13
|
default: string;
|
|
14
14
|
};
|
|
15
|
-
|
|
16
|
-
type: import("vue").PropType<boolean
|
|
15
|
+
modelModifiers: {
|
|
16
|
+
type: import("vue").PropType<Record<string, boolean>>;
|
|
17
17
|
required: true;
|
|
18
|
-
default:
|
|
18
|
+
default: () => {};
|
|
19
19
|
};
|
|
20
20
|
isDisabled: {
|
|
21
21
|
type: import("vue").PropType<boolean>;
|
|
22
22
|
required: true;
|
|
23
23
|
default: boolean;
|
|
24
24
|
};
|
|
25
|
-
|
|
26
|
-
type: import("vue").PropType<
|
|
25
|
+
isReadonly: {
|
|
26
|
+
type: import("vue").PropType<boolean>;
|
|
27
27
|
required: true;
|
|
28
|
-
default:
|
|
28
|
+
default: boolean;
|
|
29
29
|
};
|
|
30
30
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
31
|
label: {
|
|
@@ -41,20 +41,20 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
41
41
|
type: import("vue").PropType<string | number>;
|
|
42
42
|
default: string;
|
|
43
43
|
};
|
|
44
|
-
|
|
45
|
-
type: import("vue").PropType<boolean
|
|
44
|
+
modelModifiers: {
|
|
45
|
+
type: import("vue").PropType<Record<string, boolean>>;
|
|
46
46
|
required: true;
|
|
47
|
-
default:
|
|
47
|
+
default: () => {};
|
|
48
48
|
};
|
|
49
49
|
isDisabled: {
|
|
50
50
|
type: import("vue").PropType<boolean>;
|
|
51
51
|
required: true;
|
|
52
52
|
default: boolean;
|
|
53
53
|
};
|
|
54
|
-
|
|
55
|
-
type: import("vue").PropType<
|
|
54
|
+
isReadonly: {
|
|
55
|
+
type: import("vue").PropType<boolean>;
|
|
56
56
|
required: true;
|
|
57
|
-
default:
|
|
57
|
+
default: boolean;
|
|
58
58
|
};
|
|
59
59
|
}>> & {
|
|
60
60
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -62,8 +62,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
62
62
|
label: string;
|
|
63
63
|
type: string;
|
|
64
64
|
modelValue: string | number;
|
|
65
|
-
isReadonly: boolean;
|
|
66
|
-
isDisabled: boolean;
|
|
67
65
|
modelModifiers: Record<string, boolean>;
|
|
66
|
+
isDisabled: boolean;
|
|
67
|
+
isReadonly: boolean;
|
|
68
68
|
}, {}>;
|
|
69
69
|
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
projectId: {
|
|
3
|
+
type: import("vue").PropType<string>;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
save: (templateName: string, projectId: string) => void;
|
|
8
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
9
|
+
projectId: {
|
|
10
|
+
type: import("vue").PropType<string>;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
}>> & {
|
|
14
|
+
onSave?: ((templateName: string, projectId: string) => any) | undefined;
|
|
15
|
+
}, {}, {}>;
|
|
16
|
+
export default _default;
|
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.38.
|
|
7
|
+
"version": "0.38.10",
|
|
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.38.
|
|
30
|
+
"@26lights/orcha": "^0.38.10",
|
|
31
31
|
"@floating-ui/dom": "^1.5.3",
|
|
32
32
|
"@vueform/multiselect": "^2.6.6",
|
|
33
33
|
"@vueuse/core": "^10.8.0",
|