@cruglobal/godtools-shared 1.2.0-PR799-SNAPSHOT.1778 → 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 +3305 -3300
- package/antlr-kotlin-antlr-kotlin-runtime.js.map +1 -1
- package/colormath-root-colormath.js +557 -557
- package/fluid-locale.js +133 -133
- package/kotlin-kotlin-stdlib.js +581 -693
- 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 +376 -0
- package/kotlin-mpp-godtools-tool-parser-module-parser-base.js.map +1 -0
- package/kotlin-mpp-godtools-tool-parser-module-parser-expressions.js +396 -396
- package/kotlin-mpp-godtools-tool-parser-module-parser-expressions.js.map +1 -1
- package/kotlin-mpp-godtools-tool-parser-module-parser.js +2854 -3121
- package/kotlin-mpp-godtools-tool-parser-module-parser.js.map +1 -1
- package/{kotlin-mpp-godtools-tool-parser-module-state.js → kotlin-mpp-godtools-tool-parser-module-renderer-state.js} +125 -125
- package/kotlin-mpp-godtools-tool-parser-module-renderer-state.js.map +1 -0
- package/kotlin-mpp-godtools-tool-parser-publishing-npm.d.ts +224 -225
- package/kotlin-mpp-godtools-tool-parser-publishing-npm.js +11 -7
- 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/android-gto-support-gto-support-fluidsonic-locale.js +0 -22
- package/android-gto-support-gto-support-fluidsonic-locale.js.map +0 -1
- package/kotlin-js.js +0 -147
- package/kotlin-js.js.map +0 -1
- package/kotlin-mpp-godtools-tool-parser-module-state.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,21 +27,87 @@ 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
|
-
|
|
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
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
93
|
+
class EventId {
|
|
94
|
+
constructor(namespace: Nullable<string> | undefined, name: string);
|
|
95
|
+
get namespace(): Nullable<string>;
|
|
96
|
+
get name(): string;
|
|
97
|
+
equals(other: Nullable<any>): boolean;
|
|
98
|
+
hashCode(): number;
|
|
99
|
+
toString(): string;
|
|
100
|
+
static get Companion(): {
|
|
101
|
+
get NAMESPACE_STATE(): string;
|
|
102
|
+
get FOLLOWUP(): org.cru.godtools.shared.tool.parser.model.EventId;
|
|
25
103
|
};
|
|
26
104
|
}
|
|
27
|
-
const KtMap: {
|
|
28
|
-
fromJsMap<K, V>(map: ReadonlyMap<K, V>): kotlin.collections.KtMap<K, V>;
|
|
29
|
-
};
|
|
30
105
|
}
|
|
31
|
-
export declare namespace org.cru.godtools.shared.
|
|
32
|
-
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 */ {
|
|
33
108
|
private constructor();
|
|
34
|
-
static createState(): org.cru.godtools.shared.
|
|
35
|
-
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> */;
|
|
36
111
|
}
|
|
37
112
|
}
|
|
38
113
|
export declare class ManifestParser {
|
|
@@ -93,13 +168,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
93
168
|
class Accordion extends org.cru.godtools.shared.tool.parser.model.Content {
|
|
94
169
|
private constructor();
|
|
95
170
|
get sections(): Array<org.cru.godtools.shared.tool.parser.model.Accordion.Section>;
|
|
96
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
97
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
98
|
-
isGone(state: org.cru.godtools.shared.
|
|
99
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
100
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
101
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
102
|
-
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;
|
|
103
178
|
}
|
|
104
179
|
namespace Accordion {
|
|
105
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 {
|
|
@@ -112,67 +187,6 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
112
187
|
}
|
|
113
188
|
}
|
|
114
189
|
}
|
|
115
|
-
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
116
|
-
class AnalyticsEvent /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */ {
|
|
117
|
-
private constructor();
|
|
118
|
-
get action(): string;
|
|
119
|
-
get delay(): number;
|
|
120
|
-
get systems(): kotlin.collections.KtSet<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System>;
|
|
121
|
-
get attributes(): kotlin.collections.KtMap<string, string>;
|
|
122
|
-
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;
|
|
123
|
-
isForSystem(system: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System): boolean;
|
|
124
|
-
shouldTrigger(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
125
|
-
recordTriggered(state: org.cru.godtools.shared.tool.state.State): void;
|
|
126
|
-
}
|
|
127
|
-
namespace AnalyticsEvent {
|
|
128
|
-
abstract class System {
|
|
129
|
-
private constructor();
|
|
130
|
-
static get FACEBOOK(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
|
|
131
|
-
get name(): "FACEBOOK";
|
|
132
|
-
get ordinal(): 0;
|
|
133
|
-
};
|
|
134
|
-
static get FIREBASE(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
|
|
135
|
-
get name(): "FIREBASE";
|
|
136
|
-
get ordinal(): 1;
|
|
137
|
-
};
|
|
138
|
-
static get USER(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
|
|
139
|
-
get name(): "USER";
|
|
140
|
-
get ordinal(): 2;
|
|
141
|
-
};
|
|
142
|
-
get name(): "FACEBOOK" | "FIREBASE" | "USER";
|
|
143
|
-
get ordinal(): 0 | 1 | 2;
|
|
144
|
-
static values(): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System>;
|
|
145
|
-
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System;
|
|
146
|
-
}
|
|
147
|
-
abstract class Trigger {
|
|
148
|
-
private constructor();
|
|
149
|
-
static get VISIBLE(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
150
|
-
get name(): "VISIBLE";
|
|
151
|
-
get ordinal(): 0;
|
|
152
|
-
};
|
|
153
|
-
static get HIDDEN(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
154
|
-
get name(): "HIDDEN";
|
|
155
|
-
get ordinal(): 1;
|
|
156
|
-
};
|
|
157
|
-
static get CLICKED(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
158
|
-
get name(): "CLICKED";
|
|
159
|
-
get ordinal(): 2;
|
|
160
|
-
};
|
|
161
|
-
static get DEFAULT(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
162
|
-
get name(): "DEFAULT";
|
|
163
|
-
get ordinal(): 3;
|
|
164
|
-
};
|
|
165
|
-
static get UNKNOWN(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
166
|
-
get name(): "UNKNOWN";
|
|
167
|
-
get ordinal(): 4;
|
|
168
|
-
};
|
|
169
|
-
get name(): "VISIBLE" | "HIDDEN" | "CLICKED" | "DEFAULT" | "UNKNOWN";
|
|
170
|
-
get ordinal(): 0 | 1 | 2 | 3 | 4;
|
|
171
|
-
static values(): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger>;
|
|
172
|
-
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger;
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
190
|
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
177
191
|
/* @ts-ignore: extends class with private primary constructor */
|
|
178
192
|
class Animation extends org.cru.godtools.shared.tool.parser.model.Content implements org.cru.godtools.shared.tool.parser.model.Clickable {
|
|
@@ -183,13 +197,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
183
197
|
get url(): Nullable<string>;
|
|
184
198
|
get playListeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
185
199
|
get stopListeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
186
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
187
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
188
|
-
isGone(state: org.cru.godtools.shared.
|
|
189
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
190
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
191
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
192
|
-
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;
|
|
193
207
|
get isClickable(): boolean;
|
|
194
208
|
get events(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
195
209
|
readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Content["__doNotUseOrImplementIt"] & org.cru.godtools.shared.tool.parser.model.Clickable["__doNotUseOrImplementIt"];
|
|
@@ -221,13 +235,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
221
235
|
get text(): org.cru.godtools.shared.tool.parser.model.Text;
|
|
222
236
|
get buttonColor(): string;
|
|
223
237
|
get backgroundColor(): string;
|
|
224
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
225
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
226
|
-
isGone(state: org.cru.godtools.shared.
|
|
227
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
228
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
229
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
230
|
-
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;
|
|
231
245
|
getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
232
246
|
get isClickable(): boolean;
|
|
233
247
|
get events(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
@@ -261,13 +275,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
261
275
|
private constructor();
|
|
262
276
|
get url(): Nullable<string>;
|
|
263
277
|
get backgroundColor(): string;
|
|
264
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
265
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
266
|
-
isGone(state: org.cru.godtools.shared.
|
|
267
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
268
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
269
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
270
|
-
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;
|
|
271
285
|
get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
272
286
|
get isClickable(): boolean;
|
|
273
287
|
get events(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
@@ -288,13 +302,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
288
302
|
abstract class Content /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */ implements org.cru.godtools.shared.tool.parser.model.Visibility {
|
|
289
303
|
get invisibleIf(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.expressions.Expression> */;
|
|
290
304
|
get goneIf(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.expressions.Expression> */;
|
|
291
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
292
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
293
|
-
isGone(state: org.cru.godtools.shared.
|
|
294
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
295
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
296
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
297
|
-
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;
|
|
298
312
|
readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Visibility["__doNotUseOrImplementIt"];
|
|
299
313
|
}
|
|
300
314
|
}
|
|
@@ -321,33 +335,19 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
321
335
|
}
|
|
322
336
|
}
|
|
323
337
|
}
|
|
324
|
-
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
325
|
-
class EventId {
|
|
326
|
-
constructor(namespace: Nullable<string> | undefined, name: string);
|
|
327
|
-
get namespace(): Nullable<string>;
|
|
328
|
-
get name(): string;
|
|
329
|
-
resolve(state: org.cru.godtools.shared.tool.state.State): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
330
|
-
equals(other: Nullable<any>): boolean;
|
|
331
|
-
hashCode(): number;
|
|
332
|
-
toString(): string;
|
|
333
|
-
static get Companion(): {
|
|
334
|
-
get FOLLOWUP(): org.cru.godtools.shared.tool.parser.model.EventId;
|
|
335
|
-
};
|
|
336
|
-
}
|
|
337
|
-
}
|
|
338
338
|
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
339
339
|
/* @ts-ignore: extends class with private primary constructor */
|
|
340
340
|
class Flow extends org.cru.godtools.shared.tool.parser.model.Content {
|
|
341
341
|
private constructor();
|
|
342
342
|
get rowGravity(): org.cru.godtools.shared.tool.parser.model.Gravity.Horizontal;
|
|
343
343
|
get items(): Array<org.cru.godtools.shared.tool.parser.model.Flow.Item>;
|
|
344
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
345
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
346
|
-
isGone(state: org.cru.godtools.shared.
|
|
347
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
348
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
349
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
350
|
-
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;
|
|
351
351
|
}
|
|
352
352
|
namespace Flow {
|
|
353
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 {
|
|
@@ -357,13 +357,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
357
357
|
get invisibleIf(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.expressions.Expression> */;
|
|
358
358
|
get goneIf(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.expressions.Expression> */;
|
|
359
359
|
get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
360
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
361
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
362
|
-
isGone(state: org.cru.godtools.shared.
|
|
363
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
364
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
365
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
366
|
-
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;
|
|
367
367
|
readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Parent["__doNotUseOrImplementIt"] & org.cru.godtools.shared.tool.parser.model.Visibility["__doNotUseOrImplementIt"];
|
|
368
368
|
static get Companion(): {
|
|
369
369
|
};
|
|
@@ -374,13 +374,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
374
374
|
/* @ts-ignore: extends class with private primary constructor */
|
|
375
375
|
class Form extends org.cru.godtools.shared.tool.parser.model.Content implements org.cru.godtools.shared.tool.parser.model.Parent {
|
|
376
376
|
private constructor();
|
|
377
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
378
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
379
|
-
isGone(state: org.cru.godtools.shared.
|
|
380
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
381
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
382
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
383
|
-
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;
|
|
384
384
|
get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
385
385
|
readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Content["__doNotUseOrImplementIt"] & org.cru.godtools.shared.tool.parser.model.Parent["__doNotUseOrImplementIt"];
|
|
386
386
|
}
|
|
@@ -470,13 +470,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
470
470
|
equals(other: Nullable<any>): boolean;
|
|
471
471
|
hashCode(): number;
|
|
472
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;
|
|
473
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
474
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
475
|
-
isGone(state: org.cru.godtools.shared.
|
|
476
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
477
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
478
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
479
|
-
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;
|
|
480
480
|
get isClickable(): boolean;
|
|
481
481
|
get events(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
482
482
|
readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Content["__doNotUseOrImplementIt"] & org.cru.godtools.shared.tool.parser.model.Clickable["__doNotUseOrImplementIt"];
|
|
@@ -493,13 +493,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
493
493
|
get label(): Nullable<org.cru.godtools.shared.tool.parser.model.Text>;
|
|
494
494
|
get placeholder(): Nullable<org.cru.godtools.shared.tool.parser.model.Text>;
|
|
495
495
|
validateValue(raw: Nullable<string>): Nullable<org.cru.godtools.shared.tool.parser.model.Input.Error>;
|
|
496
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
497
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
498
|
-
isGone(state: org.cru.godtools.shared.
|
|
499
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
500
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
501
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
502
|
-
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;
|
|
503
503
|
}
|
|
504
504
|
namespace Input {
|
|
505
505
|
abstract class Error {
|
|
@@ -540,13 +540,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
540
540
|
private constructor();
|
|
541
541
|
get url(): Nullable<string>;
|
|
542
542
|
get text(): org.cru.godtools.shared.tool.parser.model.Text;
|
|
543
|
-
isInvisible(state: org.cru.godtools.shared.
|
|
544
|
-
isInvisibleFlow(state: org.cru.godtools.shared.
|
|
545
|
-
isGone(state: org.cru.godtools.shared.
|
|
546
|
-
isGoneFlow(state: org.cru.godtools.shared.
|
|
547
|
-
watchIsGone(state: org.cru.godtools.shared.
|
|
548
|
-
watchIsInvisible(state: org.cru.godtools.shared.
|
|
549
|
-
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;
|
|
550
550
|
getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
551
551
|
get isClickable(): boolean;
|
|
552
552
|
get events(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
@@ -557,7 +557,6 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
557
557
|
class Manifest /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */ implements org.cru.godtools.shared.tool.parser.model.HasPages/*, org.cru.godtools.shared.tool.parser.model.Styles */ {
|
|
558
558
|
private constructor();
|
|
559
559
|
get code(): Nullable<string>;
|
|
560
|
-
get locale(): Nullable<string>;
|
|
561
560
|
get type(): org.cru.godtools.shared.tool.parser.model.Manifest.Type;
|
|
562
561
|
get backgroundImage(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
|
|
563
562
|
get title(): Nullable<string>;
|
|
@@ -565,7 +564,7 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
565
564
|
get categories(): kotlin.collections.KtList<any/* org.cru.godtools.shared.tool.parser.model.Category */>;
|
|
566
565
|
get shareables(): kotlin.collections.KtList<any/* org.cru.godtools.shared.tool.parser.model.shareable.Shareable */>;
|
|
567
566
|
get relatedFiles(): kotlin.collections.KtSet<string>;
|
|
568
|
-
static createTestManifest(config?: org.cru.godtools.shared.tool.parser.ParserConfig, type?: org.cru.godtools.shared.tool.parser.model.Manifest.Type, code?: Nullable<string>, locale?: Nullable<
|
|
567
|
+
static createTestManifest(config?: org.cru.godtools.shared.tool.parser.ParserConfig, type?: org.cru.godtools.shared.tool.parser.model.Manifest.Type, code?: Nullable<string>, locale?: Nullable<any>/* Nullable<io.fluidsonic.locale.Locale> */, primaryColor?: any/* com.github.ajalt.colormath.Color */, primaryTextColor?: any/* com.github.ajalt.colormath.Color */, navBarColor?: Nullable<any>/* Nullable<com.github.ajalt.colormath.Color> */, navBarControlColor?: Nullable<any>/* Nullable<com.github.ajalt.colormath.Color> */, backgroundColor?: any/* com.github.ajalt.colormath.Color */, cardBackgroundColor?: Nullable<any>/* Nullable<com.github.ajalt.colormath.Color> */, categoryLabelColor?: Nullable<any>/* Nullable<com.github.ajalt.colormath.Color> */, pageControlColor?: any/* com.github.ajalt.colormath.Color */, multiselectOptionBackgroundColor?: Nullable<any>/* Nullable<com.github.ajalt.colormath.Color> */, multiselectOptionSelectedColor?: Nullable<any>/* Nullable<com.github.ajalt.colormath.Color> */, textColor?: any/* com.github.ajalt.colormath.Color */, textScale?: number, resources?: Nullable<(p0: org.cru.godtools.shared.tool.parser.model.Manifest) => kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.Resource>>, shareables?: Nullable<(p0: org.cru.godtools.shared.tool.parser.model.Manifest) => kotlin.collections.KtList<any/* org.cru.godtools.shared.tool.parser.model.shareable.Shareable */>>, tips?: Nullable<(p0: org.cru.godtools.shared.tool.parser.model.Manifest) => kotlin.collections.KtList<any/* org.cru.godtools.shared.tool.parser.model.tips.Tip */>>, pages?: Nullable<(p0: org.cru.godtools.shared.tool.parser.model.Manifest) => kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.page.Page>>, pageXmlFiles?: kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.Manifest.XmlFile>): org.cru.godtools.shared.tool.parser.model.Manifest;
|
|
569
568
|
get hasTips(): boolean;
|
|
570
569
|
get dismissListeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
571
570
|
findPage(id: Nullable<string>): Nullable<org.cru.godtools.shared.tool.parser.model.page.Page>;
|
|
@@ -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 {
|