@cruglobal/godtools-shared 1.2.0-PR810-SNAPSHOT.1769 → 1.2.0-PR822-SNAPSHOT.1787
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/Kermit-kermit-core.js +40 -40
- package/Kermit-kermit.js +5 -5
- package/antlr-kotlin-antlr-kotlin-runtime.js +3237 -3232
- package/antlr-kotlin-antlr-kotlin-runtime.js.map +1 -1
- package/colormath-root-colormath.js +513 -513
- package/fluid-locale.js +133 -133
- package/kotlin-kotlin-stdlib.js +548 -660
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlin-mpp-godtools-tool-parser-module-common.js +2 -2
- package/kotlin-mpp-godtools-tool-parser-module-parser-base.js +288 -645
- package/kotlin-mpp-godtools-tool-parser-module-parser-base.js.map +1 -1
- package/kotlin-mpp-godtools-tool-parser-module-parser-expressions.js +385 -385
- package/kotlin-mpp-godtools-tool-parser-module-parser-expressions.js.map +1 -1
- package/kotlin-mpp-godtools-tool-parser-module-parser.js +2691 -2907
- package/kotlin-mpp-godtools-tool-parser-module-parser.js.map +1 -1
- package/kotlin-mpp-godtools-tool-parser-module-renderer-state.js +636 -0
- package/kotlin-mpp-godtools-tool-parser-module-renderer-state.js.map +1 -0
- package/kotlin-mpp-godtools-tool-parser-publishing-npm.d.ts +210 -211
- package/kotlin-mpp-godtools-tool-parser-publishing-npm.js +8 -4
- package/kotlin-mpp-godtools-tool-parser-publishing-npm.js.map +1 -1
- package/kotlinx-atomicfu.js +14 -14
- package/kotlinx-coroutines-core.js +2166 -2166
- package/kotlinx-coroutines-core.js.map +1 -1
- package/package.json +1 -1
- package/kotlin-js.js +0 -147
- package/kotlin-js.js.map +0 -1
- package/seskar-core.js +0 -15
- package/seskar-core.js.map +0 -1
- package/seskar-react.js +0 -15
- package/seskar-react.js.map +0 -1
|
@@ -9,6 +9,15 @@ export declare namespace kotlin.collections {
|
|
|
9
9
|
const KtList: {
|
|
10
10
|
fromJsArray<E>(array: ReadonlyArray<E>): kotlin.collections.KtList<E>;
|
|
11
11
|
};
|
|
12
|
+
interface KtMap<K, V> {
|
|
13
|
+
asJsReadonlyMapView(): ReadonlyMap<K, V>;
|
|
14
|
+
readonly __doNotUseOrImplementIt: {
|
|
15
|
+
readonly "kotlin.collections.KtMap": unique symbol;
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
const KtMap: {
|
|
19
|
+
fromJsMap<K, V>(map: ReadonlyMap<K, V>): kotlin.collections.KtMap<K, V>;
|
|
20
|
+
};
|
|
12
21
|
interface KtSet<E> /* extends kotlin.collections.Collection<E> */ {
|
|
13
22
|
asJsReadonlySetView(): ReadonlySet<E>;
|
|
14
23
|
readonly __doNotUseOrImplementIt: {
|
|
@@ -18,22 +27,73 @@ export declare namespace kotlin.collections {
|
|
|
18
27
|
const KtSet: {
|
|
19
28
|
fromJsSet<E>(set: ReadonlySet<E>): kotlin.collections.KtSet<E>;
|
|
20
29
|
};
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
30
|
+
}
|
|
31
|
+
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
32
|
+
class AnalyticsEvent {
|
|
33
|
+
constructor(action?: string, attributes?: kotlin.collections.KtMap<string, string>, trigger?: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger, delay?: number, systems?: kotlin.collections.KtSet<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System>, id?: string, limit?: Nullable<number>);
|
|
34
|
+
get action(): string;
|
|
35
|
+
get attributes(): kotlin.collections.KtMap<string, string>;
|
|
36
|
+
get delay(): number;
|
|
37
|
+
isForSystem(system: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System): boolean;
|
|
38
|
+
copy(action?: string, attributes?: kotlin.collections.KtMap<string, string>, trigger?: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger, delay?: number, systems?: kotlin.collections.KtSet<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System>, id?: string, limit?: Nullable<number>): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent;
|
|
39
|
+
toString(): string;
|
|
40
|
+
hashCode(): number;
|
|
41
|
+
equals(other: Nullable<any>): boolean;
|
|
42
|
+
}
|
|
43
|
+
namespace AnalyticsEvent {
|
|
44
|
+
abstract class System {
|
|
45
|
+
private constructor();
|
|
46
|
+
static get FACEBOOK(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
|
|
47
|
+
get name(): "FACEBOOK";
|
|
48
|
+
get ordinal(): 0;
|
|
49
|
+
};
|
|
50
|
+
static get FIREBASE(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
|
|
51
|
+
get name(): "FIREBASE";
|
|
52
|
+
get ordinal(): 1;
|
|
53
|
+
};
|
|
54
|
+
static get USER(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
|
|
55
|
+
get name(): "USER";
|
|
56
|
+
get ordinal(): 2;
|
|
57
|
+
};
|
|
58
|
+
get name(): "FACEBOOK" | "FIREBASE" | "USER";
|
|
59
|
+
get ordinal(): 0 | 1 | 2;
|
|
60
|
+
static values(): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System>;
|
|
61
|
+
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System;
|
|
62
|
+
}
|
|
63
|
+
abstract class Trigger {
|
|
64
|
+
private constructor();
|
|
65
|
+
static get VISIBLE(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
66
|
+
get name(): "VISIBLE";
|
|
67
|
+
get ordinal(): 0;
|
|
68
|
+
};
|
|
69
|
+
static get HIDDEN(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
70
|
+
get name(): "HIDDEN";
|
|
71
|
+
get ordinal(): 1;
|
|
72
|
+
};
|
|
73
|
+
static get CLICKED(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
74
|
+
get name(): "CLICKED";
|
|
75
|
+
get ordinal(): 2;
|
|
76
|
+
};
|
|
77
|
+
static get DEFAULT(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
78
|
+
get name(): "DEFAULT";
|
|
79
|
+
get ordinal(): 3;
|
|
80
|
+
};
|
|
81
|
+
static get UNKNOWN(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
82
|
+
get name(): "UNKNOWN";
|
|
83
|
+
get ordinal(): 4;
|
|
84
|
+
};
|
|
85
|
+
get name(): "VISIBLE" | "HIDDEN" | "CLICKED" | "DEFAULT" | "UNKNOWN";
|
|
86
|
+
get ordinal(): 0 | 1 | 2 | 3 | 4;
|
|
87
|
+
static values(): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger>;
|
|
88
|
+
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger;
|
|
89
|
+
}
|
|
26
90
|
}
|
|
27
|
-
const KtMap: {
|
|
28
|
-
fromJsMap<K, V>(map: ReadonlyMap<K, V>): kotlin.collections.KtMap<K, V>;
|
|
29
|
-
};
|
|
30
91
|
}
|
|
31
92
|
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
32
93
|
class EventId {
|
|
33
94
|
constructor(namespace: Nullable<string> | undefined, name: string);
|
|
34
95
|
get namespace(): Nullable<string>;
|
|
35
96
|
get name(): string;
|
|
36
|
-
resolve(state: org.cru.godtools.shared.tool.state.State): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
37
97
|
equals(other: Nullable<any>): boolean;
|
|
38
98
|
hashCode(): number;
|
|
39
99
|
toString(): string;
|
|
@@ -43,11 +103,11 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
43
103
|
};
|
|
44
104
|
}
|
|
45
105
|
}
|
|
46
|
-
export declare namespace org.cru.godtools.shared.
|
|
47
|
-
class State /* implements org.cru.godtools.shared.
|
|
106
|
+
export declare namespace org.cru.godtools.shared.renderer.state {
|
|
107
|
+
class State /* implements org.cru.godtools.shared.renderer.state.internal.Parcelable */ {
|
|
48
108
|
private constructor();
|
|
49
|
-
static createState(): org.cru.godtools.shared.
|
|
50
|
-
varsChangeFlow$default<T>(keys: Nullable<any>/* Nullable<kotlin.collections.Collection<string>> */ | undefined, block: (p0: org.cru.godtools.shared.
|
|
109
|
+
static createState(): org.cru.godtools.shared.renderer.state.State;
|
|
110
|
+
varsChangeFlow$default<T>(keys: Nullable<any>/* Nullable<kotlin.collections.Collection<string>> */ | undefined, block: (p0: org.cru.godtools.shared.renderer.state.State) => T): any/* kotlinx.coroutines.flow.Flow<T> */;
|
|
51
111
|
}
|
|
52
112
|
}
|
|
53
113
|
export declare class ManifestParser {
|
|
@@ -108,13 +168,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
108
168
|
class Accordion extends org.cru.godtools.shared.tool.parser.model.Content {
|
|
109
169
|
private constructor();
|
|
110
170
|
get sections(): Array<org.cru.godtools.shared.tool.parser.model.Accordion.Section>;
|
|
111
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
112
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
113
|
-
isGone(state: org.cru.godtools.shared.
|
|
114
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
115
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
116
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
117
|
-
watchVisibility(state: org.cru.godtools.shared.
|
|
171
|
+
isInvisible(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
172
|
+
isInvisibleFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
173
|
+
isGone(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
174
|
+
isGoneFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
175
|
+
watchIsGone(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
176
|
+
watchIsInvisible(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
177
|
+
watchVisibility(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean, p1: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
118
178
|
}
|
|
119
179
|
namespace Accordion {
|
|
120
180
|
class Section /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */ implements org.cru.godtools.shared.tool.parser.model.Parent, org.cru.godtools.shared.tool.parser.model.HasAnalyticsEvents {
|
|
@@ -127,67 +187,6 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
127
187
|
}
|
|
128
188
|
}
|
|
129
189
|
}
|
|
130
|
-
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
131
|
-
class AnalyticsEvent /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */ {
|
|
132
|
-
private constructor();
|
|
133
|
-
get action(): string;
|
|
134
|
-
get delay(): number;
|
|
135
|
-
get systems(): kotlin.collections.KtSet<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System>;
|
|
136
|
-
get attributes(): kotlin.collections.KtMap<string, string>;
|
|
137
|
-
static createTestAnalyticsEvent(parent?: any/* org.cru.godtools.shared.tool.parser.model.Base */, id?: Nullable<string>, action?: string, trigger?: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger, delay?: number, systems?: kotlin.collections.KtSet<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System>, limit?: Nullable<number>, attributes?: kotlin.collections.KtMap<string, string>): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent;
|
|
138
|
-
isForSystem(system: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System): boolean;
|
|
139
|
-
shouldTrigger(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
140
|
-
recordTriggered(state: org.cru.godtools.shared.tool.state.State): void;
|
|
141
|
-
}
|
|
142
|
-
namespace AnalyticsEvent {
|
|
143
|
-
abstract class System {
|
|
144
|
-
private constructor();
|
|
145
|
-
static get FACEBOOK(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
|
|
146
|
-
get name(): "FACEBOOK";
|
|
147
|
-
get ordinal(): 0;
|
|
148
|
-
};
|
|
149
|
-
static get FIREBASE(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
|
|
150
|
-
get name(): "FIREBASE";
|
|
151
|
-
get ordinal(): 1;
|
|
152
|
-
};
|
|
153
|
-
static get USER(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
|
|
154
|
-
get name(): "USER";
|
|
155
|
-
get ordinal(): 2;
|
|
156
|
-
};
|
|
157
|
-
get name(): "FACEBOOK" | "FIREBASE" | "USER";
|
|
158
|
-
get ordinal(): 0 | 1 | 2;
|
|
159
|
-
static values(): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System>;
|
|
160
|
-
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System;
|
|
161
|
-
}
|
|
162
|
-
abstract class Trigger {
|
|
163
|
-
private constructor();
|
|
164
|
-
static get VISIBLE(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
165
|
-
get name(): "VISIBLE";
|
|
166
|
-
get ordinal(): 0;
|
|
167
|
-
};
|
|
168
|
-
static get HIDDEN(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
169
|
-
get name(): "HIDDEN";
|
|
170
|
-
get ordinal(): 1;
|
|
171
|
-
};
|
|
172
|
-
static get CLICKED(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
173
|
-
get name(): "CLICKED";
|
|
174
|
-
get ordinal(): 2;
|
|
175
|
-
};
|
|
176
|
-
static get DEFAULT(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
177
|
-
get name(): "DEFAULT";
|
|
178
|
-
get ordinal(): 3;
|
|
179
|
-
};
|
|
180
|
-
static get UNKNOWN(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
181
|
-
get name(): "UNKNOWN";
|
|
182
|
-
get ordinal(): 4;
|
|
183
|
-
};
|
|
184
|
-
get name(): "VISIBLE" | "HIDDEN" | "CLICKED" | "DEFAULT" | "UNKNOWN";
|
|
185
|
-
get ordinal(): 0 | 1 | 2 | 3 | 4;
|
|
186
|
-
static values(): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger>;
|
|
187
|
-
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger;
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
190
|
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
192
191
|
/* @ts-ignore: extends class with private primary constructor */
|
|
193
192
|
class Animation extends org.cru.godtools.shared.tool.parser.model.Content implements org.cru.godtools.shared.tool.parser.model.Clickable {
|
|
@@ -198,13 +197,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
198
197
|
get url(): Nullable<string>;
|
|
199
198
|
get playListeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
200
199
|
get stopListeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
201
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
202
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
203
|
-
isGone(state: org.cru.godtools.shared.
|
|
204
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
205
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
206
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
207
|
-
watchVisibility(state: org.cru.godtools.shared.
|
|
200
|
+
isInvisible(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
201
|
+
isInvisibleFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
202
|
+
isGone(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
203
|
+
isGoneFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
204
|
+
watchIsGone(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
205
|
+
watchIsInvisible(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
206
|
+
watchVisibility(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean, p1: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
208
207
|
get isClickable(): boolean;
|
|
209
208
|
get events(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
210
209
|
readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Content["__doNotUseOrImplementIt"] & org.cru.godtools.shared.tool.parser.model.Clickable["__doNotUseOrImplementIt"];
|
|
@@ -236,13 +235,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
236
235
|
get text(): org.cru.godtools.shared.tool.parser.model.Text;
|
|
237
236
|
get buttonColor(): string;
|
|
238
237
|
get backgroundColor(): string;
|
|
239
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
240
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
241
|
-
isGone(state: org.cru.godtools.shared.
|
|
242
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
243
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
244
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
245
|
-
watchVisibility(state: org.cru.godtools.shared.
|
|
238
|
+
isInvisible(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
239
|
+
isInvisibleFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
240
|
+
isGone(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
241
|
+
isGoneFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
242
|
+
watchIsGone(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
243
|
+
watchIsInvisible(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
244
|
+
watchVisibility(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean, p1: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
246
245
|
getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
247
246
|
get isClickable(): boolean;
|
|
248
247
|
get events(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
@@ -276,13 +275,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
276
275
|
private constructor();
|
|
277
276
|
get url(): Nullable<string>;
|
|
278
277
|
get backgroundColor(): string;
|
|
279
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
280
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
281
|
-
isGone(state: org.cru.godtools.shared.
|
|
282
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
283
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
284
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
285
|
-
watchVisibility(state: org.cru.godtools.shared.
|
|
278
|
+
isInvisible(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
279
|
+
isInvisibleFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
280
|
+
isGone(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
281
|
+
isGoneFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
282
|
+
watchIsGone(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
283
|
+
watchIsInvisible(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
284
|
+
watchVisibility(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean, p1: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
286
285
|
get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
287
286
|
get isClickable(): boolean;
|
|
288
287
|
get events(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
@@ -303,13 +302,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
303
302
|
abstract class Content /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */ implements org.cru.godtools.shared.tool.parser.model.Visibility {
|
|
304
303
|
get invisibleIf(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.expressions.Expression> */;
|
|
305
304
|
get goneIf(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.expressions.Expression> */;
|
|
306
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
307
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
308
|
-
isGone(state: org.cru.godtools.shared.
|
|
309
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
310
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
311
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
312
|
-
watchVisibility(state: org.cru.godtools.shared.
|
|
305
|
+
isInvisible(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
306
|
+
isInvisibleFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
307
|
+
isGone(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
308
|
+
isGoneFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
309
|
+
watchIsGone(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
310
|
+
watchIsInvisible(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
311
|
+
watchVisibility(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean, p1: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
313
312
|
readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Visibility["__doNotUseOrImplementIt"];
|
|
314
313
|
}
|
|
315
314
|
}
|
|
@@ -342,13 +341,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
342
341
|
private constructor();
|
|
343
342
|
get rowGravity(): org.cru.godtools.shared.tool.parser.model.Gravity.Horizontal;
|
|
344
343
|
get items(): Array<org.cru.godtools.shared.tool.parser.model.Flow.Item>;
|
|
345
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
346
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
347
|
-
isGone(state: org.cru.godtools.shared.
|
|
348
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
349
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
350
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
351
|
-
watchVisibility(state: org.cru.godtools.shared.
|
|
344
|
+
isInvisible(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
345
|
+
isInvisibleFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
346
|
+
isGone(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
347
|
+
isGoneFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
348
|
+
watchIsGone(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
349
|
+
watchIsInvisible(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
350
|
+
watchVisibility(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean, p1: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
352
351
|
}
|
|
353
352
|
namespace Flow {
|
|
354
353
|
class Item /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */ implements org.cru.godtools.shared.tool.parser.model.Parent, org.cru.godtools.shared.tool.parser.model.Visibility {
|
|
@@ -358,13 +357,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
358
357
|
get invisibleIf(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.expressions.Expression> */;
|
|
359
358
|
get goneIf(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.expressions.Expression> */;
|
|
360
359
|
get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
361
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
362
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
363
|
-
isGone(state: org.cru.godtools.shared.
|
|
364
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
365
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
366
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
367
|
-
watchVisibility(state: org.cru.godtools.shared.
|
|
360
|
+
isInvisible(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
361
|
+
isInvisibleFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
362
|
+
isGone(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
363
|
+
isGoneFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
364
|
+
watchIsGone(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
365
|
+
watchIsInvisible(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
366
|
+
watchVisibility(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean, p1: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
368
367
|
readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Parent["__doNotUseOrImplementIt"] & org.cru.godtools.shared.tool.parser.model.Visibility["__doNotUseOrImplementIt"];
|
|
369
368
|
static get Companion(): {
|
|
370
369
|
};
|
|
@@ -375,13 +374,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
375
374
|
/* @ts-ignore: extends class with private primary constructor */
|
|
376
375
|
class Form extends org.cru.godtools.shared.tool.parser.model.Content implements org.cru.godtools.shared.tool.parser.model.Parent {
|
|
377
376
|
private constructor();
|
|
378
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
379
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
380
|
-
isGone(state: org.cru.godtools.shared.
|
|
381
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
382
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
383
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
384
|
-
watchVisibility(state: org.cru.godtools.shared.
|
|
377
|
+
isInvisible(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
378
|
+
isInvisibleFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
379
|
+
isGone(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
380
|
+
isGoneFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
381
|
+
watchIsGone(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
382
|
+
watchIsInvisible(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
383
|
+
watchVisibility(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean, p1: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
385
384
|
get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
386
385
|
readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Content["__doNotUseOrImplementIt"] & org.cru.godtools.shared.tool.parser.model.Parent["__doNotUseOrImplementIt"];
|
|
387
386
|
}
|
|
@@ -471,13 +470,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
471
470
|
equals(other: Nullable<any>): boolean;
|
|
472
471
|
hashCode(): number;
|
|
473
472
|
static createTestImage(parent?: any/* org.cru.godtools.shared.tool.parser.model.Base */, resource?: Nullable<string>, gravity?: org.cru.godtools.shared.tool.parser.model.Gravity.Horizontal, width?: org.cru.godtools.shared.tool.parser.model.Dimension, events?: kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.EventId>, url?: Nullable<string>, invisibleIf?: Nullable<string>, goneIf?: Nullable<string>): org.cru.godtools.shared.tool.parser.model.Image;
|
|
474
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
475
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
476
|
-
isGone(state: org.cru.godtools.shared.
|
|
477
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
478
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
479
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
480
|
-
watchVisibility(state: org.cru.godtools.shared.
|
|
473
|
+
isInvisible(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
474
|
+
isInvisibleFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
475
|
+
isGone(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
476
|
+
isGoneFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
477
|
+
watchIsGone(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
478
|
+
watchIsInvisible(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
479
|
+
watchVisibility(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean, p1: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
481
480
|
get isClickable(): boolean;
|
|
482
481
|
get events(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
483
482
|
readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Content["__doNotUseOrImplementIt"] & org.cru.godtools.shared.tool.parser.model.Clickable["__doNotUseOrImplementIt"];
|
|
@@ -494,13 +493,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
494
493
|
get label(): Nullable<org.cru.godtools.shared.tool.parser.model.Text>;
|
|
495
494
|
get placeholder(): Nullable<org.cru.godtools.shared.tool.parser.model.Text>;
|
|
496
495
|
validateValue(raw: Nullable<string>): Nullable<org.cru.godtools.shared.tool.parser.model.Input.Error>;
|
|
497
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
498
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
499
|
-
isGone(state: org.cru.godtools.shared.
|
|
500
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
501
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
502
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
503
|
-
watchVisibility(state: org.cru.godtools.shared.
|
|
496
|
+
isInvisible(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
497
|
+
isInvisibleFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
498
|
+
isGone(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
499
|
+
isGoneFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
500
|
+
watchIsGone(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
501
|
+
watchIsInvisible(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
502
|
+
watchVisibility(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean, p1: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
504
503
|
}
|
|
505
504
|
namespace Input {
|
|
506
505
|
abstract class Error {
|
|
@@ -541,13 +540,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
541
540
|
private constructor();
|
|
542
541
|
get url(): Nullable<string>;
|
|
543
542
|
get text(): org.cru.godtools.shared.tool.parser.model.Text;
|
|
544
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
545
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
546
|
-
isGone(state: org.cru.godtools.shared.
|
|
547
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
548
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
549
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
550
|
-
watchVisibility(state: org.cru.godtools.shared.
|
|
543
|
+
isInvisible(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
544
|
+
isInvisibleFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
545
|
+
isGone(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
546
|
+
isGoneFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
547
|
+
watchIsGone(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
548
|
+
watchIsInvisible(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
549
|
+
watchVisibility(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean, p1: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
551
550
|
getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
552
551
|
get isClickable(): boolean;
|
|
553
552
|
get events(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
@@ -615,23 +614,23 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
615
614
|
private constructor();
|
|
616
615
|
get columns(): number;
|
|
617
616
|
get options(): Array<org.cru.godtools.shared.tool.parser.model.Multiselect.Option>;
|
|
618
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
619
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
620
|
-
isGone(state: org.cru.godtools.shared.
|
|
621
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
622
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
623
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
624
|
-
watchVisibility(state: org.cru.godtools.shared.
|
|
617
|
+
isInvisible(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
618
|
+
isInvisibleFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
619
|
+
isGone(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
620
|
+
isGoneFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
621
|
+
watchIsGone(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
622
|
+
watchIsInvisible(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
623
|
+
watchVisibility(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean, p1: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
625
624
|
}
|
|
626
625
|
namespace Multiselect {
|
|
627
626
|
class Option /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */ implements org.cru.godtools.shared.tool.parser.model.Parent, org.cru.godtools.shared.tool.parser.model.HasAnalyticsEvents {
|
|
628
627
|
private constructor();
|
|
629
628
|
get multiselect(): org.cru.godtools.shared.tool.parser.model.Multiselect;
|
|
630
629
|
get style(): org.cru.godtools.shared.tool.parser.model.Multiselect.Option.Style;
|
|
631
|
-
isSelected(state: org.cru.godtools.shared.
|
|
632
|
-
isSelectedFlow(state: org.cru.godtools.shared.
|
|
633
|
-
watchIsSelected(state: org.cru.godtools.shared.
|
|
634
|
-
toggleSelected(state: org.cru.godtools.shared.
|
|
630
|
+
isSelected(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
631
|
+
isSelectedFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
632
|
+
watchIsSelected(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
633
|
+
toggleSelected(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
635
634
|
get backgroundColor(): string;
|
|
636
635
|
get selectedColor(): string;
|
|
637
636
|
get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
@@ -662,13 +661,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
662
661
|
class Paragraph extends org.cru.godtools.shared.tool.parser.model.Content implements org.cru.godtools.shared.tool.parser.model.Parent {
|
|
663
662
|
private constructor();
|
|
664
663
|
static createTestParagraph(parent?: any/* org.cru.godtools.shared.tool.parser.model.Base */, content?: (p0: org.cru.godtools.shared.tool.parser.model.Paragraph) => kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.Content>): org.cru.godtools.shared.tool.parser.model.Paragraph;
|
|
665
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
666
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
667
|
-
isGone(state: org.cru.godtools.shared.
|
|
668
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
669
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
670
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
671
|
-
watchVisibility(state: org.cru.godtools.shared.
|
|
664
|
+
isInvisible(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
665
|
+
isInvisibleFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
666
|
+
isGone(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
667
|
+
isGoneFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
668
|
+
watchIsGone(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
669
|
+
watchIsInvisible(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
670
|
+
watchVisibility(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean, p1: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
672
671
|
get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
673
672
|
readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Content["__doNotUseOrImplementIt"] & org.cru.godtools.shared.tool.parser.model.Parent["__doNotUseOrImplementIt"];
|
|
674
673
|
}
|
|
@@ -697,13 +696,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
697
696
|
get mode(): org.cru.godtools.shared.tool.parser.model.Spacer.Mode;
|
|
698
697
|
get height(): number;
|
|
699
698
|
static createTestSpacer(parent?: any/* org.cru.godtools.shared.tool.parser.model.Base */, mode?: org.cru.godtools.shared.tool.parser.model.Spacer.Mode, height?: number): org.cru.godtools.shared.tool.parser.model.Spacer;
|
|
700
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
701
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
702
|
-
isGone(state: org.cru.godtools.shared.
|
|
703
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
704
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
705
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
706
|
-
watchVisibility(state: org.cru.godtools.shared.
|
|
699
|
+
isInvisible(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
700
|
+
isInvisibleFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
701
|
+
isGone(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
702
|
+
isGoneFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
703
|
+
watchIsGone(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
704
|
+
watchIsInvisible(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
705
|
+
watchVisibility(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean, p1: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
707
706
|
}
|
|
708
707
|
namespace Spacer {
|
|
709
708
|
abstract class Mode {
|
|
@@ -728,13 +727,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
728
727
|
class Tabs extends org.cru.godtools.shared.tool.parser.model.Content {
|
|
729
728
|
private constructor();
|
|
730
729
|
get tabs(): Array<org.cru.godtools.shared.tool.parser.model.Tabs.Tab>;
|
|
731
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
732
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
733
|
-
isGone(state: org.cru.godtools.shared.
|
|
734
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
735
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
736
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
737
|
-
watchVisibility(state: org.cru.godtools.shared.
|
|
730
|
+
isInvisible(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
731
|
+
isInvisibleFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
732
|
+
isGone(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
733
|
+
isGoneFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
734
|
+
watchIsGone(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
735
|
+
watchIsInvisible(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
736
|
+
watchVisibility(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean, p1: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
738
737
|
}
|
|
739
738
|
namespace Tabs {
|
|
740
739
|
class Tab /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */ implements org.cru.godtools.shared.tool.parser.model.Parent, org.cru.godtools.shared.tool.parser.model.HasAnalyticsEvents {
|
|
@@ -767,13 +766,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
767
766
|
hashCode(): number;
|
|
768
767
|
get textColor(): string;
|
|
769
768
|
get textStyles(): Array<org.cru.godtools.shared.tool.parser.model.Text.Style>;
|
|
770
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
771
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
772
|
-
isGone(state: org.cru.godtools.shared.
|
|
773
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
774
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
775
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
776
|
-
watchVisibility(state: org.cru.godtools.shared.
|
|
769
|
+
isInvisible(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
770
|
+
isInvisibleFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
771
|
+
isGone(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
772
|
+
isGoneFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
773
|
+
watchIsGone(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
774
|
+
watchIsInvisible(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
775
|
+
watchVisibility(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean, p1: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
777
776
|
}
|
|
778
777
|
namespace Text {
|
|
779
778
|
abstract class Align {
|
|
@@ -825,13 +824,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
825
824
|
get aspectRatio(): org.cru.godtools.shared.tool.parser.model.AspectRatio;
|
|
826
825
|
get gravity(): org.cru.godtools.shared.tool.parser.model.Gravity.Horizontal;
|
|
827
826
|
get width(): org.cru.godtools.shared.tool.parser.model.Dimension;
|
|
828
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
829
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
830
|
-
isGone(state: org.cru.godtools.shared.
|
|
831
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
832
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
833
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
834
|
-
watchVisibility(state: org.cru.godtools.shared.
|
|
827
|
+
isInvisible(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
828
|
+
isInvisibleFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
829
|
+
isGone(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
830
|
+
isGoneFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
831
|
+
watchIsGone(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
832
|
+
watchIsInvisible(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
833
|
+
watchVisibility(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean, p1: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
835
834
|
}
|
|
836
835
|
namespace Video {
|
|
837
836
|
abstract class Provider {
|
|
@@ -855,13 +854,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
855
854
|
interface Visibility {
|
|
856
855
|
readonly invisibleIf: Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.expressions.Expression> */;
|
|
857
856
|
readonly goneIf: Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.expressions.Expression> */;
|
|
858
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
859
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
860
|
-
isGone(state: org.cru.godtools.shared.
|
|
861
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
862
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
863
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
864
|
-
watchVisibility(state: org.cru.godtools.shared.
|
|
857
|
+
isInvisible(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
858
|
+
isInvisibleFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
859
|
+
isGone(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
860
|
+
isGoneFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
861
|
+
watchIsGone(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
862
|
+
watchIsInvisible(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
863
|
+
watchVisibility(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean, p1: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
865
864
|
readonly __doNotUseOrImplementIt: {
|
|
866
865
|
readonly "org.cru.godtools.shared.tool.parser.model.Visibility": unique symbol;
|
|
867
866
|
};
|
|
@@ -938,13 +937,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model.tips {
|
|
|
938
937
|
get id(): Nullable<string>;
|
|
939
938
|
get tip(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.model.tips.Tip> */;
|
|
940
939
|
static createTestInlineTip(parent: any/* org.cru.godtools.shared.tool.parser.model.Base */, id?: Nullable<string>): org.cru.godtools.shared.tool.parser.model.tips.InlineTip;
|
|
941
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
942
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
943
|
-
isGone(state: org.cru.godtools.shared.
|
|
944
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
945
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
946
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
947
|
-
watchVisibility(state: org.cru.godtools.shared.
|
|
940
|
+
isInvisible(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
941
|
+
isInvisibleFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
942
|
+
isGone(state: org.cru.godtools.shared.renderer.state.State): boolean;
|
|
943
|
+
isGoneFlow(state: org.cru.godtools.shared.renderer.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
944
|
+
watchIsGone(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
945
|
+
watchIsInvisible(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
946
|
+
watchVisibility(state: org.cru.godtools.shared.renderer.state.State, block: (p0: boolean, p1: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
948
947
|
}
|
|
949
948
|
}
|
|
950
949
|
export declare namespace org.cru.godtools.shared.tool.parser.model.tract {
|