@cruglobal/godtools-shared 1.1.0-SNAPSHOT.1567 → 1.1.0-SNAPSHOT.1570
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 +65 -66
- package/Kermit-kermit-core.js.map +1 -1
- package/Kermit-kermit.js +17 -18
- package/Kermit-kermit.js.map +1 -1
- package/KustomExport-lib-coroutines.js +3 -3
- package/KustomExport-lib.js +3 -3
- package/android-gto-support-gto-support-androidx-annotation.js +3 -3
- package/android-gto-support-gto-support-fluidsonic-locale.js +3 -3
- package/antlr-kotlin-antlr-kotlin-runtime.js +4229 -4369
- package/antlr-kotlin-antlr-kotlin-runtime.js.map +1 -1
- package/colormath-root-colormath.js +1360 -1191
- package/colormath-root-colormath.js.map +1 -1
- package/fluid-locale.js +239 -228
- package/fluid-locale.js.map +1 -1
- package/kotlin-js.js +44 -45
- package/kotlin-js.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +8906 -6847
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlin-kotlinx-atomicfu-runtime.js +3 -3
- package/kotlin-mpp-godtools-tool-parser-module-common.js +7 -7
- package/kotlin-mpp-godtools-tool-parser-module-common.js.map +1 -1
- package/kotlin-mpp-godtools-tool-parser-module-parser-expressions.js +532 -585
- package/kotlin-mpp-godtools-tool-parser-module-parser-expressions.js.map +1 -1
- package/kotlin-mpp-godtools-tool-parser-module-parser.js +3507 -4009
- package/kotlin-mpp-godtools-tool-parser-module-parser.js.map +1 -1
- package/kotlin-mpp-godtools-tool-parser-module-state.js +297 -271
- package/kotlin-mpp-godtools-tool-parser-module-state.js.map +1 -1
- package/kotlin-mpp-godtools-tool-parser-publishing-npm.d.ts +143 -94
- package/kotlin-mpp-godtools-tool-parser-publishing-npm.js +11 -7
- package/kotlin-mpp-godtools-tool-parser-publishing-npm.js.map +1 -1
- package/kotlin_org_jetbrains_kotlin_kotlin_dom_api_compat.js +3 -3
- package/kotlinx-atomicfu.js +80 -81
- package/kotlinx-atomicfu.js.map +1 -1
- package/kotlinx-coroutines-core.js +4023 -4049
- package/kotlinx-coroutines-core.js.map +1 -1
- package/package.json +1 -1
- package/seskar-core.js +3 -3
- package/seskar-react.js +3 -3
|
@@ -1,8 +1,56 @@
|
|
|
1
1
|
type Nullable<T> = T | null | undefined
|
|
2
|
+
export declare namespace kotlin.collections {
|
|
3
|
+
interface KtList<E> /* extends kotlin.collections.Collection<E> */ {
|
|
4
|
+
asJsReadonlyArrayView(): ReadonlyArray<E>;
|
|
5
|
+
readonly __doNotUseOrImplementIt: {
|
|
6
|
+
readonly "kotlin.collections.KtList": unique symbol;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
const KtList: {
|
|
10
|
+
fromJsArray<E>(array: ReadonlyArray<E>): kotlin.collections.KtList<E>;
|
|
11
|
+
};
|
|
12
|
+
interface KtMutableSet<E> extends kotlin.collections.KtSet<E>/*, kotlin.collections.MutableCollection<E> */ {
|
|
13
|
+
asJsSetView(): Set<E>;
|
|
14
|
+
readonly __doNotUseOrImplementIt: {
|
|
15
|
+
readonly "kotlin.collections.KtMutableSet": unique symbol;
|
|
16
|
+
} & kotlin.collections.KtSet<E>["__doNotUseOrImplementIt"];
|
|
17
|
+
}
|
|
18
|
+
const KtMutableSet: {
|
|
19
|
+
fromJsSet<E>(set: ReadonlySet<E>): kotlin.collections.KtMutableSet<E>;
|
|
20
|
+
};
|
|
21
|
+
interface KtMutableList<E> extends kotlin.collections.KtList<E>/*, kotlin.collections.MutableCollection<E> */ {
|
|
22
|
+
asJsArrayView(): Array<E>;
|
|
23
|
+
readonly __doNotUseOrImplementIt: {
|
|
24
|
+
readonly "kotlin.collections.KtMutableList": unique symbol;
|
|
25
|
+
} & kotlin.collections.KtList<E>["__doNotUseOrImplementIt"];
|
|
26
|
+
}
|
|
27
|
+
const KtMutableList: {
|
|
28
|
+
fromJsArray<E>(array: ReadonlyArray<E>): kotlin.collections.KtMutableList<E>;
|
|
29
|
+
};
|
|
30
|
+
interface KtSet<E> /* extends kotlin.collections.Collection<E> */ {
|
|
31
|
+
asJsReadonlySetView(): ReadonlySet<E>;
|
|
32
|
+
readonly __doNotUseOrImplementIt: {
|
|
33
|
+
readonly "kotlin.collections.KtSet": unique symbol;
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
const KtSet: {
|
|
37
|
+
fromJsSet<E>(set: ReadonlySet<E>): kotlin.collections.KtSet<E>;
|
|
38
|
+
};
|
|
39
|
+
interface KtMap<K, V> {
|
|
40
|
+
asJsReadonlyMapView(): ReadonlyMap<K, V>;
|
|
41
|
+
readonly __doNotUseOrImplementIt: {
|
|
42
|
+
readonly "kotlin.collections.KtMap": unique symbol;
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
const KtMap: {
|
|
46
|
+
fromJsMap<K, V>(map: ReadonlyMap<K, V>): kotlin.collections.KtMap<K, V>;
|
|
47
|
+
};
|
|
48
|
+
}
|
|
2
49
|
export declare namespace org.cru.godtools.shared.tool.state {
|
|
3
50
|
class State /* implements org.cru.godtools.shared.tool.state.internal.Parcelable */ {
|
|
4
51
|
private constructor();
|
|
5
52
|
static createState(): org.cru.godtools.shared.tool.state.State;
|
|
53
|
+
varsChangeFlow$default<T>(keys: Nullable<any>/* Nullable<kotlin.collections.Collection<string>> */ | undefined, block: (p0: org.cru.godtools.shared.tool.state.State) => T): any/* kotlinx.coroutines.flow.Flow<T> */;
|
|
6
54
|
}
|
|
7
55
|
}
|
|
8
56
|
export declare class ManifestParser {
|
|
@@ -21,7 +69,7 @@ export declare namespace org.cru.godtools.shared.tool.parser {
|
|
|
21
69
|
get manifest(): org.cru.godtools.shared.tool.parser.model.Manifest;
|
|
22
70
|
}
|
|
23
71
|
class ParserError extends org.cru.godtools.shared.tool.parser.ParserResult {
|
|
24
|
-
|
|
72
|
+
protected constructor(error?: Nullable<Error>);
|
|
25
73
|
get error(): Nullable<Error>;
|
|
26
74
|
}
|
|
27
75
|
namespace ParserError {
|
|
@@ -38,13 +86,14 @@ export declare namespace org.cru.godtools.shared.tool.parser {
|
|
|
38
86
|
class ParserConfig {
|
|
39
87
|
private constructor();
|
|
40
88
|
static createParserConfig(): org.cru.godtools.shared.tool.parser.ParserConfig;
|
|
89
|
+
withAppVersion$default(deviceType: any/* org.cru.godtools.shared.tool.parser.model.DeviceType */ | undefined, version: Nullable<string>): org.cru.godtools.shared.tool.parser.ParserConfig;
|
|
41
90
|
withSupportedFeatures(feature: Array<string>): org.cru.godtools.shared.tool.parser.ParserConfig;
|
|
42
91
|
withParseRelated(enabled: boolean): org.cru.godtools.shared.tool.parser.ParserConfig;
|
|
43
92
|
withParsePages(enabled: boolean): org.cru.godtools.shared.tool.parser.ParserConfig;
|
|
44
93
|
withParseTips(enabled: boolean): org.cru.godtools.shared.tool.parser.ParserConfig;
|
|
45
94
|
/** @deprecated Since v0.9.0, This setting is meant to workaround a knowgod.com image resource issue */
|
|
46
95
|
withLegacyWebImageResources(enabled: boolean): org.cru.godtools.shared.tool.parser.ParserConfig;
|
|
47
|
-
copy(deviceType?: any/* org.cru.godtools.shared.tool.parser.model.DeviceType */, appVersion?: Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.model.Version> */, supportedFeatures?:
|
|
96
|
+
copy(deviceType?: any/* org.cru.godtools.shared.tool.parser.model.DeviceType */, appVersion?: Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.model.Version> */, supportedFeatures?: kotlin.collections.KtSet<string>, parsePages?: boolean, parseTips?: boolean, legacyWebImageResources?: boolean, parserDispatcher?: any/* kotlinx.coroutines.CoroutineDispatcher */): org.cru.godtools.shared.tool.parser.ParserConfig;
|
|
48
97
|
toString(): string;
|
|
49
98
|
hashCode(): number;
|
|
50
99
|
equals(other: Nullable<any>): boolean;
|
|
@@ -60,8 +109,8 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
60
109
|
/* @ts-ignore: extends class with private primary constructor */
|
|
61
110
|
class Accordion extends org.cru.godtools.shared.tool.parser.model.Content {
|
|
62
111
|
private constructor();
|
|
63
|
-
get _sections():
|
|
64
|
-
get tips():
|
|
112
|
+
get _sections(): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.Accordion.Section>;
|
|
113
|
+
get tips(): kotlin.collections.KtList<any/* org.cru.godtools.shared.tool.parser.model.tips.Tip */>;
|
|
65
114
|
get sections(): Array<org.cru.godtools.shared.tool.parser.model.Accordion.Section>;
|
|
66
115
|
isInvisible(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
67
116
|
isInvisibleFlow(state: org.cru.godtools.shared.tool.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
@@ -76,8 +125,8 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
76
125
|
private constructor();
|
|
77
126
|
get id(): string;
|
|
78
127
|
get header(): Nullable<org.cru.godtools.shared.tool.parser.model.Text>;
|
|
79
|
-
get _content():
|
|
80
|
-
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger):
|
|
128
|
+
get _content(): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
129
|
+
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
81
130
|
get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
82
131
|
getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
83
132
|
readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Parent["__doNotUseOrImplementIt"] & org.cru.godtools.shared.tool.parser.model.HasAnalyticsEvents["__doNotUseOrImplementIt"];
|
|
@@ -89,9 +138,9 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
89
138
|
private constructor();
|
|
90
139
|
get action(): string;
|
|
91
140
|
get delay(): number;
|
|
92
|
-
get systems():
|
|
93
|
-
get attributes():
|
|
94
|
-
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?:
|
|
141
|
+
get systems(): kotlin.collections.KtSet<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System>;
|
|
142
|
+
get attributes(): kotlin.collections.KtMap<string, string>;
|
|
143
|
+
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;
|
|
95
144
|
isForSystem(system: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System): boolean;
|
|
96
145
|
shouldTrigger(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
97
146
|
recordTriggered(state: org.cru.godtools.shared.tool.state.State): void;
|
|
@@ -119,10 +168,10 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
119
168
|
get name(): "USER";
|
|
120
169
|
get ordinal(): 4;
|
|
121
170
|
};
|
|
122
|
-
static values(): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System>;
|
|
123
|
-
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System;
|
|
124
171
|
get name(): "APPSFLYER" | "FACEBOOK" | "FIREBASE" | "SNOWPLOW" | "USER";
|
|
125
172
|
get ordinal(): 0 | 1 | 2 | 3 | 4;
|
|
173
|
+
static values(): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System>;
|
|
174
|
+
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System;
|
|
126
175
|
}
|
|
127
176
|
abstract class Trigger {
|
|
128
177
|
private constructor();
|
|
@@ -146,10 +195,10 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
146
195
|
get name(): "UNKNOWN";
|
|
147
196
|
get ordinal(): 4;
|
|
148
197
|
};
|
|
149
|
-
static values(): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger>;
|
|
150
|
-
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger;
|
|
151
198
|
get name(): "VISIBLE" | "HIDDEN" | "CLICKED" | "DEFAULT" | "UNKNOWN";
|
|
152
199
|
get ordinal(): 0 | 1 | 2 | 3 | 4;
|
|
200
|
+
static values(): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger>;
|
|
201
|
+
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger;
|
|
153
202
|
}
|
|
154
203
|
}
|
|
155
204
|
}
|
|
@@ -160,9 +209,9 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
160
209
|
get resource(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
|
|
161
210
|
get loop(): boolean;
|
|
162
211
|
get autoPlay(): boolean;
|
|
163
|
-
get _playListeners():
|
|
164
|
-
get _stopListeners():
|
|
165
|
-
get _events():
|
|
212
|
+
get _playListeners(): kotlin.collections.KtSet<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
213
|
+
get _stopListeners(): kotlin.collections.KtSet<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
214
|
+
get _events(): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
166
215
|
get url(): Nullable<string>;
|
|
167
216
|
get playListeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
168
217
|
get stopListeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
@@ -194,7 +243,7 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
194
243
|
/* @ts-ignore: extends class with private primary constructor */
|
|
195
244
|
class Button extends org.cru.godtools.shared.tool.parser.model.Content implements org.cru.godtools.shared.tool.parser.model.HasAnalyticsEvents, org.cru.godtools.shared.tool.parser.model.Clickable {
|
|
196
245
|
private constructor();
|
|
197
|
-
get _events():
|
|
246
|
+
get _events(): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
198
247
|
get url(): Nullable<string>;
|
|
199
248
|
get style(): org.cru.godtools.shared.tool.parser.model.Button.Style;
|
|
200
249
|
get gravity(): org.cru.godtools.shared.tool.parser.model.Gravity.Horizontal;
|
|
@@ -205,7 +254,7 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
205
254
|
get iconGravity(): org.cru.godtools.shared.tool.parser.model.Gravity.Horizontal;
|
|
206
255
|
get iconSize(): number;
|
|
207
256
|
get text(): org.cru.godtools.shared.tool.parser.model.Text;
|
|
208
|
-
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger):
|
|
257
|
+
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
209
258
|
isInvisible(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
210
259
|
isInvisibleFlow(state: org.cru.godtools.shared.tool.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
211
260
|
isGone(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
@@ -233,10 +282,10 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
233
282
|
get name(): "UNKNOWN";
|
|
234
283
|
get ordinal(): 2;
|
|
235
284
|
};
|
|
236
|
-
static values(): Array<org.cru.godtools.shared.tool.parser.model.Button.Style>;
|
|
237
|
-
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Button.Style;
|
|
238
285
|
get name(): "CONTAINED" | "OUTLINED" | "UNKNOWN";
|
|
239
286
|
get ordinal(): 0 | 1 | 2;
|
|
287
|
+
static values(): Array<org.cru.godtools.shared.tool.parser.model.Button.Style>;
|
|
288
|
+
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Button.Style;
|
|
240
289
|
}
|
|
241
290
|
}
|
|
242
291
|
}
|
|
@@ -245,8 +294,8 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
245
294
|
class Card extends org.cru.godtools.shared.tool.parser.model.Content implements org.cru.godtools.shared.tool.parser.model.Parent, org.cru.godtools.shared.tool.parser.model.Clickable {
|
|
246
295
|
private constructor();
|
|
247
296
|
get backgroundColor(): string;
|
|
248
|
-
get _content():
|
|
249
|
-
get _events():
|
|
297
|
+
get _content(): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
298
|
+
get _events(): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
250
299
|
get url(): Nullable<string>;
|
|
251
300
|
isInvisible(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
252
301
|
isInvisibleFlow(state: org.cru.godtools.shared.tool.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
@@ -264,7 +313,7 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
264
313
|
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
265
314
|
interface Clickable /* extends org.cru.godtools.shared.tool.parser.model.Base */ {
|
|
266
315
|
readonly isClickable: boolean;
|
|
267
|
-
readonly _events:
|
|
316
|
+
readonly _events: kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
268
317
|
readonly url: Nullable<string>;
|
|
269
318
|
readonly events: Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
270
319
|
readonly __doNotUseOrImplementIt: {
|
|
@@ -276,7 +325,7 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
276
325
|
abstract class Content /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */ implements org.cru.godtools.shared.tool.parser.model.Visibility {
|
|
277
326
|
get invisibleIf(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.expressions.Expression> */;
|
|
278
327
|
get goneIf(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.expressions.Expression> */;
|
|
279
|
-
get tips():
|
|
328
|
+
get tips(): kotlin.collections.KtList<any/* org.cru.godtools.shared.tool.parser.model.tips.Tip */>;
|
|
280
329
|
isInvisible(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
281
330
|
isInvisibleFlow(state: org.cru.godtools.shared.tool.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
282
331
|
isGone(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
@@ -315,7 +364,7 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
315
364
|
private constructor();
|
|
316
365
|
get namespace(): Nullable<string>;
|
|
317
366
|
get name(): string;
|
|
318
|
-
resolve(state: org.cru.godtools.shared.tool.state.State):
|
|
367
|
+
resolve(state: org.cru.godtools.shared.tool.state.State): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
319
368
|
equals(other: Nullable<any>): boolean;
|
|
320
369
|
hashCode(): number;
|
|
321
370
|
toString(): string;
|
|
@@ -328,7 +377,7 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
328
377
|
/* @ts-ignore: extends class with private primary constructor */
|
|
329
378
|
class Flow extends org.cru.godtools.shared.tool.parser.model.Content {
|
|
330
379
|
private constructor();
|
|
331
|
-
get _items():
|
|
380
|
+
get _items(): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.Flow.Item>;
|
|
332
381
|
get items(): Array<org.cru.godtools.shared.tool.parser.model.Flow.Item>;
|
|
333
382
|
isInvisible(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
334
383
|
isInvisibleFlow(state: org.cru.godtools.shared.tool.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
@@ -344,7 +393,7 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
344
393
|
get flow(): org.cru.godtools.shared.tool.parser.model.Flow;
|
|
345
394
|
get invisibleIf(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.expressions.Expression> */;
|
|
346
395
|
get goneIf(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.expressions.Expression> */;
|
|
347
|
-
get _content():
|
|
396
|
+
get _content(): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
348
397
|
get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
349
398
|
isInvisible(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
350
399
|
isInvisibleFlow(state: org.cru.godtools.shared.tool.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
@@ -363,8 +412,8 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
363
412
|
/* @ts-ignore: extends class with private primary constructor */
|
|
364
413
|
class Form extends org.cru.godtools.shared.tool.parser.model.Content implements org.cru.godtools.shared.tool.parser.model.Parent {
|
|
365
414
|
private constructor();
|
|
366
|
-
get _content():
|
|
367
|
-
get tips():
|
|
415
|
+
get _content(): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
416
|
+
get tips(): kotlin.collections.KtList<any/* org.cru.godtools.shared.tool.parser.model.tips.Tip */>;
|
|
368
417
|
isInvisible(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
369
418
|
isInvisibleFlow(state: org.cru.godtools.shared.tool.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
370
419
|
isGone(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
@@ -407,10 +456,10 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
407
456
|
get name(): "END";
|
|
408
457
|
get ordinal(): 2;
|
|
409
458
|
};
|
|
410
|
-
static values(): Array<org.cru.godtools.shared.tool.parser.model.Gravity.Horizontal>;
|
|
411
|
-
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Gravity.Horizontal;
|
|
412
459
|
get name(): "START" | "CENTER" | "END";
|
|
413
460
|
get ordinal(): 0 | 1 | 2;
|
|
461
|
+
static values(): Array<org.cru.godtools.shared.tool.parser.model.Gravity.Horizontal>;
|
|
462
|
+
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Gravity.Horizontal;
|
|
414
463
|
}
|
|
415
464
|
abstract class Vertical {
|
|
416
465
|
private constructor();
|
|
@@ -426,16 +475,16 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
426
475
|
get name(): "BOTTOM";
|
|
427
476
|
get ordinal(): 2;
|
|
428
477
|
};
|
|
429
|
-
static values(): Array<org.cru.godtools.shared.tool.parser.model.Gravity.Vertical>;
|
|
430
|
-
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Gravity.Vertical;
|
|
431
478
|
get name(): "TOP" | "CENTER" | "BOTTOM";
|
|
432
479
|
get ordinal(): 0 | 1 | 2;
|
|
480
|
+
static values(): Array<org.cru.godtools.shared.tool.parser.model.Gravity.Vertical>;
|
|
481
|
+
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Gravity.Vertical;
|
|
433
482
|
}
|
|
434
483
|
}
|
|
435
484
|
}
|
|
436
485
|
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
437
486
|
interface HasAnalyticsEvents {
|
|
438
|
-
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger):
|
|
487
|
+
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
439
488
|
getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
440
489
|
readonly __doNotUseOrImplementIt: {
|
|
441
490
|
readonly "org.cru.godtools.shared.tool.parser.model.HasAnalyticsEvents": unique symbol;
|
|
@@ -446,14 +495,14 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
446
495
|
/* @ts-ignore: extends class with private primary constructor */
|
|
447
496
|
class Image extends org.cru.godtools.shared.tool.parser.model.Content implements org.cru.godtools.shared.tool.parser.model.Clickable {
|
|
448
497
|
private constructor();
|
|
449
|
-
get _events():
|
|
498
|
+
get _events(): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
450
499
|
get url(): Nullable<string>;
|
|
451
500
|
get resource(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
|
|
452
501
|
get gravity(): org.cru.godtools.shared.tool.parser.model.Gravity.Horizontal;
|
|
453
502
|
get width(): org.cru.godtools.shared.tool.parser.model.Dimension;
|
|
454
503
|
equals(other: Nullable<any>): boolean;
|
|
455
504
|
hashCode(): number;
|
|
456
|
-
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?:
|
|
505
|
+
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;
|
|
457
506
|
isInvisible(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
458
507
|
isInvisibleFlow(state: org.cru.godtools.shared.tool.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
459
508
|
isGone(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
@@ -511,10 +560,10 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
511
560
|
get name(): "HIDDEN";
|
|
512
561
|
get ordinal(): 3;
|
|
513
562
|
};
|
|
514
|
-
static values(): Array<org.cru.godtools.shared.tool.parser.model.Input.Type>;
|
|
515
|
-
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Input.Type;
|
|
516
563
|
get name(): "TEXT" | "EMAIL" | "PHONE" | "HIDDEN";
|
|
517
564
|
get ordinal(): 0 | 1 | 2 | 3;
|
|
565
|
+
static values(): Array<org.cru.godtools.shared.tool.parser.model.Input.Type>;
|
|
566
|
+
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Input.Type;
|
|
518
567
|
}
|
|
519
568
|
}
|
|
520
569
|
}
|
|
@@ -522,10 +571,10 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
522
571
|
/* @ts-ignore: extends class with private primary constructor */
|
|
523
572
|
class Link extends org.cru.godtools.shared.tool.parser.model.Content implements org.cru.godtools.shared.tool.parser.model.HasAnalyticsEvents, org.cru.godtools.shared.tool.parser.model.Clickable {
|
|
524
573
|
private constructor();
|
|
525
|
-
get _events():
|
|
574
|
+
get _events(): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
526
575
|
get url(): Nullable<string>;
|
|
527
576
|
get text(): org.cru.godtools.shared.tool.parser.model.Text;
|
|
528
|
-
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger):
|
|
577
|
+
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
529
578
|
isInvisible(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
530
579
|
isInvisibleFlow(state: org.cru.godtools.shared.tool.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
531
580
|
isGone(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
@@ -545,16 +594,16 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
545
594
|
get code(): Nullable<string>;
|
|
546
595
|
get locale(): Nullable<string>;
|
|
547
596
|
get type(): org.cru.godtools.shared.tool.parser.model.Manifest.Type;
|
|
548
|
-
get _dismissListeners():
|
|
597
|
+
get _dismissListeners(): kotlin.collections.KtSet<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
549
598
|
get backgroundImage(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
|
|
550
599
|
get title(): Nullable<string>;
|
|
551
|
-
get aemImports():
|
|
552
|
-
get categories():
|
|
553
|
-
get _pages():
|
|
554
|
-
set _pages(value:
|
|
555
|
-
get shareables():
|
|
556
|
-
get relatedFiles():
|
|
557
|
-
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<string>, primaryColor?: string, primaryTextColor?: string, navBarColor?: Nullable<string>, navBarControlColor?: Nullable<string>, backgroundColor?: string, cardBackgroundColor?: Nullable<string>, categoryLabelColor?: Nullable<string>, pageControlColor?: string, multiselectOptionBackgroundColor?: Nullable<string>, multiselectOptionSelectedColor?: Nullable<string>, textColor?: string, textScale?: number, resources?: Nullable<(p0: org.cru.godtools.shared.tool.parser.model.Manifest) =>
|
|
600
|
+
get aemImports(): kotlin.collections.KtList<string>;
|
|
601
|
+
get categories(): kotlin.collections.KtList<any/* org.cru.godtools.shared.tool.parser.model.Category */>;
|
|
602
|
+
get _pages(): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.page.Page>;
|
|
603
|
+
set _pages(value: kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.page.Page>);
|
|
604
|
+
get shareables(): kotlin.collections.KtList<any/* org.cru.godtools.shared.tool.parser.model.shareable.Shareable */>;
|
|
605
|
+
get relatedFiles(): kotlin.collections.KtSet<string>;
|
|
606
|
+
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<string>, primaryColor?: string, primaryTextColor?: string, navBarColor?: Nullable<string>, navBarControlColor?: Nullable<string>, backgroundColor?: string, cardBackgroundColor?: Nullable<string>, categoryLabelColor?: Nullable<string>, pageControlColor?: string, multiselectOptionBackgroundColor?: Nullable<string>, multiselectOptionSelectedColor?: Nullable<string>, textColor?: string, 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>>): org.cru.godtools.shared.tool.parser.model.Manifest;
|
|
558
607
|
get hasTips(): boolean;
|
|
559
608
|
findPage(id: Nullable<string>): Nullable<org.cru.godtools.shared.tool.parser.model.page.Page>;
|
|
560
609
|
get dismissListeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
@@ -583,10 +632,10 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
583
632
|
get name(): "UNKNOWN";
|
|
584
633
|
get ordinal(): 4;
|
|
585
634
|
};
|
|
586
|
-
static values(): Array<org.cru.godtools.shared.tool.parser.model.Manifest.Type>;
|
|
587
|
-
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Manifest.Type;
|
|
588
635
|
get name(): "ARTICLE" | "CYOA" | "LESSON" | "TRACT" | "UNKNOWN";
|
|
589
636
|
get ordinal(): 0 | 1 | 2 | 3 | 4;
|
|
637
|
+
static values(): Array<org.cru.godtools.shared.tool.parser.model.Manifest.Type>;
|
|
638
|
+
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Manifest.Type;
|
|
590
639
|
}
|
|
591
640
|
}
|
|
592
641
|
}
|
|
@@ -595,8 +644,8 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
595
644
|
class Multiselect extends org.cru.godtools.shared.tool.parser.model.Content {
|
|
596
645
|
private constructor();
|
|
597
646
|
get columns(): number;
|
|
598
|
-
get _options():
|
|
599
|
-
get tips():
|
|
647
|
+
get _options(): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.Multiselect.Option>;
|
|
648
|
+
get tips(): kotlin.collections.KtList<any/* org.cru.godtools.shared.tool.parser.model.tips.Tip */>;
|
|
600
649
|
get options(): Array<org.cru.godtools.shared.tool.parser.model.Multiselect.Option>;
|
|
601
650
|
isInvisible(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
602
651
|
isInvisibleFlow(state: org.cru.godtools.shared.tool.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
@@ -613,8 +662,8 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
613
662
|
get style(): org.cru.godtools.shared.tool.parser.model.Multiselect.Option.Style;
|
|
614
663
|
get backgroundColor(): string;
|
|
615
664
|
get selectedColor(): string;
|
|
616
|
-
get _content():
|
|
617
|
-
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger):
|
|
665
|
+
get _content(): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
666
|
+
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
618
667
|
isSelected(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
619
668
|
isSelectedFlow(state: org.cru.godtools.shared.tool.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
620
669
|
watchIsSelected(state: org.cru.godtools.shared.tool.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
|
|
@@ -634,10 +683,10 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
634
683
|
get name(): "FLAT";
|
|
635
684
|
get ordinal(): 1;
|
|
636
685
|
};
|
|
637
|
-
static values(): Array<org.cru.godtools.shared.tool.parser.model.Multiselect.Option.Style>;
|
|
638
|
-
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Multiselect.Option.Style;
|
|
639
686
|
get name(): "CARD" | "FLAT";
|
|
640
687
|
get ordinal(): 0 | 1;
|
|
688
|
+
static values(): Array<org.cru.godtools.shared.tool.parser.model.Multiselect.Option.Style>;
|
|
689
|
+
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Multiselect.Option.Style;
|
|
641
690
|
}
|
|
642
691
|
}
|
|
643
692
|
}
|
|
@@ -646,9 +695,9 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
646
695
|
/* @ts-ignore: extends class with private primary constructor */
|
|
647
696
|
class Paragraph extends org.cru.godtools.shared.tool.parser.model.Content implements org.cru.godtools.shared.tool.parser.model.Parent {
|
|
648
697
|
private constructor();
|
|
649
|
-
get _content():
|
|
650
|
-
get tips():
|
|
651
|
-
static createTestParagraph(parent?: any/* org.cru.godtools.shared.tool.parser.model.Base */, content?: (p0: org.cru.godtools.shared.tool.parser.model.Paragraph) =>
|
|
698
|
+
get _content(): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
699
|
+
get tips(): kotlin.collections.KtList<any/* org.cru.godtools.shared.tool.parser.model.tips.Tip */>;
|
|
700
|
+
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;
|
|
652
701
|
isInvisible(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
653
702
|
isInvisibleFlow(state: org.cru.godtools.shared.tool.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
654
703
|
isGone(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
@@ -662,7 +711,7 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
662
711
|
}
|
|
663
712
|
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
664
713
|
interface Parent /* extends org.cru.godtools.shared.tool.parser.model.Base */ {
|
|
665
|
-
readonly _content:
|
|
714
|
+
readonly _content: kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
666
715
|
readonly content: Array<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
667
716
|
readonly __doNotUseOrImplementIt: {
|
|
668
717
|
readonly "org.cru.godtools.shared.tool.parser.model.Parent": unique symbol;
|
|
@@ -704,10 +753,10 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
704
753
|
get name(): "FIXED";
|
|
705
754
|
get ordinal(): 1;
|
|
706
755
|
};
|
|
707
|
-
static values(): Array<org.cru.godtools.shared.tool.parser.model.Spacer.Mode>;
|
|
708
|
-
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Spacer.Mode;
|
|
709
756
|
get name(): "AUTO" | "FIXED";
|
|
710
757
|
get ordinal(): 0 | 1;
|
|
758
|
+
static values(): Array<org.cru.godtools.shared.tool.parser.model.Spacer.Mode>;
|
|
759
|
+
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Spacer.Mode;
|
|
711
760
|
}
|
|
712
761
|
}
|
|
713
762
|
}
|
|
@@ -715,8 +764,8 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
715
764
|
/* @ts-ignore: extends class with private primary constructor */
|
|
716
765
|
class Tabs extends org.cru.godtools.shared.tool.parser.model.Content {
|
|
717
766
|
private constructor();
|
|
718
|
-
get _tabs():
|
|
719
|
-
get tips():
|
|
767
|
+
get _tabs(): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.Tabs.Tab>;
|
|
768
|
+
get tips(): kotlin.collections.KtList<any/* org.cru.godtools.shared.tool.parser.model.tips.Tip */>;
|
|
720
769
|
get tabs(): Array<org.cru.godtools.shared.tool.parser.model.Tabs.Tab>;
|
|
721
770
|
isInvisible(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
722
771
|
isInvisibleFlow(state: org.cru.godtools.shared.tool.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
@@ -730,10 +779,10 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
730
779
|
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 {
|
|
731
780
|
private constructor();
|
|
732
781
|
get position(): number;
|
|
733
|
-
get _listeners():
|
|
782
|
+
get _listeners(): kotlin.collections.KtSet<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
734
783
|
get label(): Nullable<org.cru.godtools.shared.tool.parser.model.Text>;
|
|
735
|
-
get _content():
|
|
736
|
-
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger):
|
|
784
|
+
get _content(): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
785
|
+
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
737
786
|
get listeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
738
787
|
get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
739
788
|
getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
@@ -749,13 +798,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
749
798
|
get textAlign(): org.cru.godtools.shared.tool.parser.model.Text.Align;
|
|
750
799
|
get textColor(): string;
|
|
751
800
|
get textScale(): number;
|
|
752
|
-
get _textStyles():
|
|
801
|
+
get _textStyles(): kotlin.collections.KtSet<org.cru.godtools.shared.tool.parser.model.Text.Style>;
|
|
753
802
|
get minimumLines(): number;
|
|
754
803
|
get startImage(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
|
|
755
804
|
get startImageSize(): number;
|
|
756
805
|
get endImage(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
|
|
757
806
|
get endImageSize(): number;
|
|
758
|
-
static createTestText(parent?: any/* org.cru.godtools.shared.tool.parser.model.Base */, text?: string, textScale?: number, textColor?: Nullable<string>, textAlign?: Nullable<org.cru.godtools.shared.tool.parser.model.Text.Align>, textStyles?:
|
|
807
|
+
static createTestText(parent?: any/* org.cru.godtools.shared.tool.parser.model.Base */, text?: string, textScale?: number, textColor?: Nullable<string>, textAlign?: Nullable<org.cru.godtools.shared.tool.parser.model.Text.Align>, textStyles?: kotlin.collections.KtSet<org.cru.godtools.shared.tool.parser.model.Text.Style>, minimumLines?: number, startImage?: Nullable<string>, startImageSize?: number, endImage?: Nullable<string>, endImageSize?: number, invisibleIf?: Nullable<string>, goneIf?: Nullable<string>): org.cru.godtools.shared.tool.parser.model.Text;
|
|
759
808
|
equals(other: Nullable<any>): boolean;
|
|
760
809
|
hashCode(): number;
|
|
761
810
|
get textStyles(): Array<org.cru.godtools.shared.tool.parser.model.Text.Style>;
|
|
@@ -782,10 +831,10 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
782
831
|
get name(): "END";
|
|
783
832
|
get ordinal(): 2;
|
|
784
833
|
};
|
|
785
|
-
static values(): Array<org.cru.godtools.shared.tool.parser.model.Text.Align>;
|
|
786
|
-
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Text.Align;
|
|
787
834
|
get name(): "START" | "CENTER" | "END";
|
|
788
835
|
get ordinal(): 0 | 1 | 2;
|
|
836
|
+
static values(): Array<org.cru.godtools.shared.tool.parser.model.Text.Align>;
|
|
837
|
+
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Text.Align;
|
|
789
838
|
}
|
|
790
839
|
abstract class Style {
|
|
791
840
|
private constructor();
|
|
@@ -801,10 +850,10 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
801
850
|
get name(): "UNDERLINE";
|
|
802
851
|
get ordinal(): 2;
|
|
803
852
|
};
|
|
804
|
-
static values(): Array<org.cru.godtools.shared.tool.parser.model.Text.Style>;
|
|
805
|
-
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Text.Style;
|
|
806
853
|
get name(): "BOLD" | "ITALIC" | "UNDERLINE";
|
|
807
854
|
get ordinal(): 0 | 1 | 2;
|
|
855
|
+
static values(): Array<org.cru.godtools.shared.tool.parser.model.Text.Style>;
|
|
856
|
+
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Text.Style;
|
|
808
857
|
}
|
|
809
858
|
}
|
|
810
859
|
}
|
|
@@ -836,10 +885,10 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
836
885
|
get name(): "UNKNOWN";
|
|
837
886
|
get ordinal(): 1;
|
|
838
887
|
};
|
|
839
|
-
static values(): Array<org.cru.godtools.shared.tool.parser.model.Video.Provider>;
|
|
840
|
-
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Video.Provider;
|
|
841
888
|
get name(): "YOUTUBE" | "UNKNOWN";
|
|
842
889
|
get ordinal(): 0 | 1;
|
|
890
|
+
static values(): Array<org.cru.godtools.shared.tool.parser.model.Video.Provider>;
|
|
891
|
+
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Video.Provider;
|
|
843
892
|
}
|
|
844
893
|
}
|
|
845
894
|
}
|
|
@@ -867,10 +916,10 @@ export declare namespace org.cru.godtools.shared.tool.parser.model.page {
|
|
|
867
916
|
get nextPage(): Nullable<org.cru.godtools.shared.tool.parser.model.page.Page>;
|
|
868
917
|
get previousPage(): Nullable<org.cru.godtools.shared.tool.parser.model.page.Page>;
|
|
869
918
|
get isHidden(): boolean;
|
|
870
|
-
get _listeners():
|
|
871
|
-
get _dismissListeners():
|
|
919
|
+
get _listeners(): kotlin.collections.KtSet<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
920
|
+
get _dismissListeners(): kotlin.collections.KtSet<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
872
921
|
get backgroundImage(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
|
|
873
|
-
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger):
|
|
922
|
+
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
874
923
|
get dismissListeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
875
924
|
get listeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
876
925
|
getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
@@ -883,7 +932,7 @@ export declare namespace org.cru.godtools.shared.tool.parser.model.tips {
|
|
|
883
932
|
private constructor();
|
|
884
933
|
get id(): Nullable<string>;
|
|
885
934
|
get tip(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.model.tips.Tip> */;
|
|
886
|
-
get tips():
|
|
935
|
+
get tips(): kotlin.collections.KtList<any/* org.cru.godtools.shared.tool.parser.model.tips.Tip */>;
|
|
887
936
|
static createTestInlineTip(parent: any/* org.cru.godtools.shared.tool.parser.model.Base */, id?: Nullable<string>): org.cru.godtools.shared.tool.parser.model.tips.InlineTip;
|
|
888
937
|
isInvisible(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
889
938
|
isInvisibleFlow(state: org.cru.godtools.shared.tool.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
|
|
@@ -914,9 +963,9 @@ export declare namespace org.cru.godtools.shared.tool.parser.model.tract {
|
|
|
914
963
|
class Hero /* 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 {
|
|
915
964
|
private constructor();
|
|
916
965
|
get heading(): Nullable<org.cru.godtools.shared.tool.parser.model.Text>;
|
|
917
|
-
get _content():
|
|
918
|
-
static createTestHero(page?: org.cru.godtools.shared.tool.parser.model.tract.TractPage, analyticsEvents?:
|
|
919
|
-
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger):
|
|
966
|
+
get _content(): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
967
|
+
static createTestHero(page?: org.cru.godtools.shared.tool.parser.model.tract.TractPage, analyticsEvents?: kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>, heading?: Nullable<(p0: any/* org.cru.godtools.shared.tool.parser.model.Base */) => Nullable<org.cru.godtools.shared.tool.parser.model.Text>>): org.cru.godtools.shared.tool.parser.model.tract.Hero;
|
|
968
|
+
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
920
969
|
get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
921
970
|
getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
922
971
|
readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Parent["__doNotUseOrImplementIt"] & org.cru.godtools.shared.tool.parser.model.HasAnalyticsEvents["__doNotUseOrImplementIt"];
|
|
@@ -928,9 +977,9 @@ export declare namespace org.cru.godtools.shared.tool.parser.model.tract {
|
|
|
928
977
|
get page(): org.cru.godtools.shared.tool.parser.model.tract.TractPage;
|
|
929
978
|
get id(): string;
|
|
930
979
|
get title(): Nullable<org.cru.godtools.shared.tool.parser.model.Text>;
|
|
931
|
-
get _content():
|
|
932
|
-
get _listeners():
|
|
933
|
-
get _dismissListeners():
|
|
980
|
+
get _content(): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
981
|
+
get _listeners(): kotlin.collections.KtSet<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
982
|
+
get _dismissListeners(): kotlin.collections.KtSet<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
934
983
|
get dismissListeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
935
984
|
get listeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
936
985
|
get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
@@ -944,12 +993,12 @@ export declare namespace org.cru.godtools.shared.tool.parser.model.tract {
|
|
|
944
993
|
get isLastPage(): boolean;
|
|
945
994
|
get header(): Nullable<org.cru.godtools.shared.tool.parser.model.tract.Header>;
|
|
946
995
|
get hero(): Nullable<org.cru.godtools.shared.tool.parser.model.tract.Hero>;
|
|
947
|
-
get _modals():
|
|
996
|
+
get _modals(): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.tract.Modal>;
|
|
948
997
|
get callToAction(): org.cru.godtools.shared.tool.parser.model.tract.CallToAction;
|
|
949
|
-
static createTestTractPage(manifest?: org.cru.godtools.shared.tool.parser.model.Manifest, fileName?: Nullable<string>, backgroundColor?: string, backgroundImage?: Nullable<string>, primaryColor?: Nullable<string>, backgroundImageGravity?: org.cru.godtools.shared.tool.parser.model.Gravity, backgroundImageScaleType?: any/* org.cru.godtools.shared.tool.parser.model.ImageScaleType */, textColor?: Nullable<string>, textScale?: number, cardBackgroundColor?: Nullable<string>, cardTextColor?: Nullable<string>, cards?: Nullable<(p0: org.cru.godtools.shared.tool.parser.model.tract.TractPage) => Nullable<
|
|
998
|
+
static createTestTractPage(manifest?: org.cru.godtools.shared.tool.parser.model.Manifest, fileName?: Nullable<string>, backgroundColor?: string, backgroundImage?: Nullable<string>, primaryColor?: Nullable<string>, backgroundImageGravity?: org.cru.godtools.shared.tool.parser.model.Gravity, backgroundImageScaleType?: any/* org.cru.godtools.shared.tool.parser.model.ImageScaleType */, textColor?: Nullable<string>, textScale?: number, cardBackgroundColor?: Nullable<string>, cardTextColor?: Nullable<string>, cards?: Nullable<(p0: org.cru.godtools.shared.tool.parser.model.tract.TractPage) => Nullable<kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.tract.TractPage.Card>>>, callToAction?: Nullable<(p0: org.cru.godtools.shared.tool.parser.model.tract.TractPage) => Nullable<org.cru.godtools.shared.tool.parser.model.tract.CallToAction>>): org.cru.godtools.shared.tool.parser.model.tract.TractPage;
|
|
950
999
|
findModal(id: Nullable<string>): Nullable<org.cru.godtools.shared.tool.parser.model.tract.Modal>;
|
|
951
|
-
get _cards():
|
|
952
|
-
get visibleCards():
|
|
1000
|
+
get _cards(): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.tract.TractPage.Card>;
|
|
1001
|
+
get visibleCards(): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.tract.TractPage.Card>;
|
|
953
1002
|
get cardTextColor(): string;
|
|
954
1003
|
get cards(): Array<org.cru.godtools.shared.tool.parser.model.tract.TractPage.Card>;
|
|
955
1004
|
get modals(): Array<org.cru.godtools.shared.tool.parser.model.tract.Modal>;
|
|
@@ -964,13 +1013,13 @@ export declare namespace org.cru.godtools.shared.tool.parser.model.tract {
|
|
|
964
1013
|
get visiblePosition(): Nullable<number>;
|
|
965
1014
|
get isLastVisibleCard(): boolean;
|
|
966
1015
|
get isHidden(): boolean;
|
|
967
|
-
get _listeners():
|
|
968
|
-
get _dismissListeners():
|
|
1016
|
+
get _listeners(): kotlin.collections.KtSet<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
1017
|
+
get _dismissListeners(): kotlin.collections.KtSet<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
969
1018
|
get backgroundImage(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
|
|
970
1019
|
get label(): Nullable<org.cru.godtools.shared.tool.parser.model.Text>;
|
|
971
|
-
get _content():
|
|
972
|
-
get tips():
|
|
973
|
-
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger):
|
|
1020
|
+
get _content(): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
1021
|
+
get tips(): kotlin.collections.KtList<any/* org.cru.godtools.shared.tool.parser.model.tips.Tip */>;
|
|
1022
|
+
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
974
1023
|
get dismissListeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
975
1024
|
get listeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
976
1025
|
get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
|