x-runtime-lib 0.8.170 → 0.8.171
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/types/kind.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export type SandboxKind = 'root' | 'ref' | 'multipleRef' | 'elementSlot' | 'multipleElementSlot' | 'customSlot' | 'multipleCustomSlot';
|
|
2
2
|
export type SlotKind = 'elementSlot' | 'multipleElementSlot' | 'customSlot' | 'multipleCustomSlot';
|
|
3
|
-
export type PropertyKind = 'elementProperty' | 'elementSlotProperty' | 'multipleElementSlotProperty' | 'refProperty' | 'multipleRefProperty' | 'customSlotProperty' | 'multipleCustomSlotProperty' | 'customProperty' | 'elementAdaptSlotProperty' | '
|
|
4
|
-
export type MethodKind = 'elementMethod' | 'elementSlotMethod' | 'multipeElementSlotMethod' | 'refMethod' | 'multipleRefMethod' | 'customSlotMethod' | 'multipleCustomSlotMethod' | 'customMethod' | 'elementAdaptSlotMethod' | '
|
|
5
|
-
export type EventKind = 'elementEvent' | 'elementPropertyChangeEvent' | 'elementSlotEvent' | 'elementSlotPropertyChangeEvent' | 'multipleElementSlotEvent' | 'multipleElementSlotPropertyChangeEvent' | 'refEvent' | 'refPropertyChangeEvent' | 'multipleRefEvent' | 'multipleRefPropertyChangeEvent' | 'customSlotEvent' | 'customSlotPropertyChangeEvent' | 'multipleCustomSlotEvent' | 'multipleCustomSlotPropertyChangeEvent' | 'customEvent' | 'customPropertyChangeEvent' | 'elementAdaptSlotEvent' | 'elementAdaptSlotPropertyChangeEvent' | '
|
|
3
|
+
export type PropertyKind = 'elementProperty' | 'elementSlotProperty' | 'multipleElementSlotProperty' | 'refProperty' | 'multipleRefProperty' | 'customSlotProperty' | 'multipleCustomSlotProperty' | 'customProperty' | 'elementAdaptSlotProperty' | 'customAdaptSlotProperty';
|
|
4
|
+
export type MethodKind = 'elementMethod' | 'elementSlotMethod' | 'multipeElementSlotMethod' | 'refMethod' | 'multipleRefMethod' | 'customSlotMethod' | 'multipleCustomSlotMethod' | 'customMethod' | 'elementAdaptSlotMethod' | 'customAdaptSlotMethod';
|
|
5
|
+
export type EventKind = 'elementEvent' | 'elementPropertyChangeEvent' | 'elementSlotEvent' | 'elementSlotPropertyChangeEvent' | 'multipleElementSlotEvent' | 'multipleElementSlotPropertyChangeEvent' | 'refEvent' | 'refPropertyChangeEvent' | 'multipleRefEvent' | 'multipleRefPropertyChangeEvent' | 'customSlotEvent' | 'customSlotPropertyChangeEvent' | 'multipleCustomSlotEvent' | 'multipleCustomSlotPropertyChangeEvent' | 'customEvent' | 'customPropertyChangeEvent' | 'elementAdaptSlotEvent' | 'elementAdaptSlotPropertyChangeEvent' | 'customAdaptSlotEvent' | 'customAdaptSlotPropertyChangeEvent' | 'stateChangeEvent';
|
|
@@ -11,13 +11,6 @@ export declare function unwrapPropertyKeyOfElementSlot(key: string): {
|
|
|
11
11
|
slotKey: string;
|
|
12
12
|
propertyKey: string;
|
|
13
13
|
};
|
|
14
|
-
export declare function makePropertyKeyOfMultipleElementSlot(elementKey: string, slotKey: string, propertyKey: string, instance: string): string;
|
|
15
|
-
export declare function unwrapPropertyKeyOfMultipleElementSlot(key: string): {
|
|
16
|
-
elementKey: string;
|
|
17
|
-
slotKey: string;
|
|
18
|
-
propertyKey: string;
|
|
19
|
-
instance: string;
|
|
20
|
-
};
|
|
21
14
|
export declare function makePropertyKeyOfCustomSlot(compId: string, slotId: string, propertyId: string): string;
|
|
22
15
|
export declare function unwrapPropertyKeyOfCustomSlot(key: string): {
|
|
23
16
|
compId: string;
|
|
@@ -36,13 +29,6 @@ export declare function unwrapMethodKeyOfElementSlot(key: string): {
|
|
|
36
29
|
slotKey: string;
|
|
37
30
|
methodKey: string;
|
|
38
31
|
};
|
|
39
|
-
export declare function makeMethodKeyOfMultipleElementSlot(elementKey: string, slotKey: string, methodKey: string, instance: string): string;
|
|
40
|
-
export declare function unwrapMethodKeyOfMultipleElementSlot(key: string): {
|
|
41
|
-
elementKey: string;
|
|
42
|
-
slotKey: string;
|
|
43
|
-
methodKey: string;
|
|
44
|
-
instance: string;
|
|
45
|
-
};
|
|
46
32
|
export declare function makeMethodKeyOfCustomSlot(compId: string, slotId: string, methodId: string): string;
|
|
47
33
|
export declare function unwrapMethodKeyOfCustomSlot(key: string): {
|
|
48
34
|
compId: string;
|
|
@@ -61,13 +47,6 @@ export declare function unwrapEventKeyOfElementSlot(key: string): {
|
|
|
61
47
|
slotKey: string;
|
|
62
48
|
eventKey: string;
|
|
63
49
|
};
|
|
64
|
-
export declare function makeEventKeyOfMultipleElementSlot(elementKey: string, slotKey: string, eventKey: string, instance: string): string;
|
|
65
|
-
export declare function unwrapEventKeyOfMultipleElementSlot(key: string): {
|
|
66
|
-
elementKey: string;
|
|
67
|
-
slotKey: string;
|
|
68
|
-
eventKey: string;
|
|
69
|
-
instance: string;
|
|
70
|
-
};
|
|
71
50
|
export declare function makeEventKeyOfCustomSlot(compId: string, slotId: string, eventId: string): string;
|
|
72
51
|
export declare function unwrapEventKeyOfCustomSlot(key: string): {
|
|
73
52
|
compId: string;
|