@cruglobal/godtools-shared 0.9.0-SNAPSHOT.1263 → 0.9.0-SNAPSHOT.1265
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.
|
@@ -893,8 +893,10 @@ export declare namespace org.cru.godtools.shared.tool.parser.model.tract {
|
|
|
893
893
|
get id(): string;
|
|
894
894
|
get title(): Nullable<org.cru.godtools.shared.tool.parser.model.Text>;
|
|
895
895
|
get _content(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.Content> */;
|
|
896
|
-
get
|
|
897
|
-
get
|
|
896
|
+
get _listeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
|
|
897
|
+
get _dismissListeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
|
|
898
|
+
get dismissListeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
899
|
+
get listeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
898
900
|
get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
899
901
|
readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Parent["__doNotUseOrImplementIt"];
|
|
900
902
|
}
|
|
@@ -10886,13 +10886,13 @@
|
|
|
10886
10886
|
// Inline function 'org.cru.godtools.shared.tool.parser.model.toEventIds' call
|
|
10887
10887
|
var tmp0_toEventIds = parser.p2z(get_XML_LISTENERS());
|
|
10888
10888
|
tmp$ret$0 = Companion_getInstance_18().i31(tmp0_toEventIds);
|
|
10889
|
-
tmp_0.
|
|
10889
|
+
tmp_0._listeners = toSet_0(tmp$ret$0);
|
|
10890
10890
|
var tmp_1 = $this;
|
|
10891
10891
|
var tmp$ret$1;
|
|
10892
10892
|
// Inline function 'org.cru.godtools.shared.tool.parser.model.toEventIds' call
|
|
10893
10893
|
var tmp1_toEventIds = parser.p2z(get_XML_DISMISS_LISTENERS());
|
|
10894
10894
|
tmp$ret$1 = Companion_getInstance_18().i31(tmp1_toEventIds);
|
|
10895
|
-
tmp_1.
|
|
10895
|
+
tmp_1._dismissListeners = toSet_0(tmp$ret$1);
|
|
10896
10896
|
var title = null;
|
|
10897
10897
|
var tmp_2 = $this;
|
|
10898
10898
|
var tmp$ret$9;
|
|
@@ -10996,11 +10996,11 @@
|
|
|
10996
10996
|
protoOf(Modal).w2y = function () {
|
|
10997
10997
|
return this.m3o_1;
|
|
10998
10998
|
};
|
|
10999
|
-
protoOf(Modal).
|
|
11000
|
-
return this.
|
|
10999
|
+
protoOf(Modal).k3g = function () {
|
|
11000
|
+
return this._listeners;
|
|
11001
11001
|
};
|
|
11002
|
-
protoOf(Modal).
|
|
11003
|
-
return this.
|
|
11002
|
+
protoOf(Modal).b3c = function () {
|
|
11003
|
+
return this._dismissListeners;
|
|
11004
11004
|
};
|
|
11005
11005
|
protoOf(Modal).d34 = function () {
|
|
11006
11006
|
return get_TRANSPARENT();
|
|
@@ -11020,6 +11020,20 @@
|
|
|
11020
11020
|
protoOf(Modal).b34 = function () {
|
|
11021
11021
|
return get_WHITE();
|
|
11022
11022
|
};
|
|
11023
|
+
protoOf(Modal).f3d = function () {
|
|
11024
|
+
var tmp$ret$0;
|
|
11025
|
+
// Inline function 'kotlin.collections.toTypedArray' call
|
|
11026
|
+
var tmp0_toTypedArray = this._dismissListeners;
|
|
11027
|
+
tmp$ret$0 = copyToArray(tmp0_toTypedArray);
|
|
11028
|
+
return tmp$ret$0;
|
|
11029
|
+
};
|
|
11030
|
+
protoOf(Modal).l3g = function () {
|
|
11031
|
+
var tmp$ret$0;
|
|
11032
|
+
// Inline function 'kotlin.collections.toTypedArray' call
|
|
11033
|
+
var tmp0_toTypedArray = this._listeners;
|
|
11034
|
+
tmp$ret$0 = copyToArray(tmp0_toTypedArray);
|
|
11035
|
+
return tmp$ret$0;
|
|
11036
|
+
};
|
|
11023
11037
|
function Modal() {
|
|
11024
11038
|
Companion_getInstance_58();
|
|
11025
11039
|
}
|
|
@@ -11027,6 +11041,8 @@
|
|
|
11027
11041
|
defineProp(protoOf(Modal), '_content', function () {
|
|
11028
11042
|
return this.w2y();
|
|
11029
11043
|
});
|
|
11044
|
+
defineProp(protoOf(Modal), 'dismissListeners', protoOf(Modal).f3d);
|
|
11045
|
+
defineProp(protoOf(Modal), 'listeners', protoOf(Modal).l3g);
|
|
11030
11046
|
defineProp(protoOf(Modal), 'content', function () {
|
|
11031
11047
|
return this.e2z();
|
|
11032
11048
|
});
|