@cruglobal/godtools-shared 0.9.0-SNAPSHOT.1188 → 0.9.0-SNAPSHOT.1198
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.
|
@@ -131,6 +131,17 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
131
131
|
}
|
|
132
132
|
}
|
|
133
133
|
}
|
|
134
|
+
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
135
|
+
interface Clickable /* extends org.cru.godtools.shared.tool.parser.model.Base */ {
|
|
136
|
+
readonly isClickable: boolean;
|
|
137
|
+
readonly _events: any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.EventId> */;
|
|
138
|
+
readonly url: Nullable<string>;
|
|
139
|
+
readonly events: Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
140
|
+
readonly __doNotUseOrImplementIt: {
|
|
141
|
+
readonly "org.cru.godtools.shared.tool.parser.model.Clickable": unique symbol;
|
|
142
|
+
};
|
|
143
|
+
}
|
|
144
|
+
}
|
|
134
145
|
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
135
146
|
abstract class Content /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */ /* implements org.cru.godtools.shared.tool.parser.model.Visibility */ {
|
|
136
147
|
get tips(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.tips.Tip> */;
|
|
@@ -241,12 +252,17 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
241
252
|
}
|
|
242
253
|
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
243
254
|
/* @ts-ignore: extends class with private primary constructor */
|
|
244
|
-
class Image extends org.cru.godtools.shared.tool.parser.model.Content
|
|
255
|
+
class Image extends org.cru.godtools.shared.tool.parser.model.Content implements org.cru.godtools.shared.tool.parser.model.Clickable {
|
|
245
256
|
private constructor();
|
|
257
|
+
get _events(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.EventId> */;
|
|
258
|
+
get url(): Nullable<string>;
|
|
246
259
|
get resource(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
|
|
247
260
|
get gravity(): org.cru.godtools.shared.tool.parser.model.Gravity.Horizontal;
|
|
248
261
|
get width(): org.cru.godtools.shared.tool.parser.model.Dimension;
|
|
249
262
|
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): org.cru.godtools.shared.tool.parser.model.Image;
|
|
263
|
+
get isClickable(): boolean;
|
|
264
|
+
get events(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
265
|
+
readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Clickable["__doNotUseOrImplementIt"];
|
|
250
266
|
}
|
|
251
267
|
}
|
|
252
268
|
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
@@ -255,7 +271,7 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
255
271
|
get code(): Nullable<string>;
|
|
256
272
|
get locale(): Nullable<string>;
|
|
257
273
|
get type(): org.cru.godtools.shared.tool.parser.model.Manifest.Type;
|
|
258
|
-
get
|
|
274
|
+
get _dismissListeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
|
|
259
275
|
get backgroundImage(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
|
|
260
276
|
get title(): Nullable<string>;
|
|
261
277
|
get aemImports(): any/* kotlin.collections.List<string> */;
|
|
@@ -267,6 +283,7 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
267
283
|
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, multiselectOptionSelectedColor?: Nullable<string>, textColor?: string, textScale?: number, resources?: Nullable<(p0: org.cru.godtools.shared.tool.parser.model.Manifest) => any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.Resource> */>, shareables?: Nullable<(p0: org.cru.godtools.shared.tool.parser.model.Manifest) => any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.shareable.Shareable> */>, tips?: Nullable<(p0: org.cru.godtools.shared.tool.parser.model.Manifest) => any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.tips.Tip> */>, pages?: Nullable<(p0: org.cru.godtools.shared.tool.parser.model.Manifest) => any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.page.Page> */>): org.cru.godtools.shared.tool.parser.model.Manifest;
|
|
268
284
|
get hasTips(): boolean;
|
|
269
285
|
findPage(id: Nullable<string>): Nullable<org.cru.godtools.shared.tool.parser.model.page.Page>;
|
|
286
|
+
get dismissListeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
270
287
|
get pages(): Array<org.cru.godtools.shared.tool.parser.model.page.Page>;
|
|
271
288
|
}
|
|
272
289
|
namespace Manifest {
|
|
@@ -299,6 +316,17 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
299
316
|
}
|
|
300
317
|
}
|
|
301
318
|
}
|
|
319
|
+
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
320
|
+
/* @ts-ignore: extends class with private primary constructor */
|
|
321
|
+
class Paragraph extends org.cru.godtools.shared.tool.parser.model.Content implements org.cru.godtools.shared.tool.parser.model.Parent {
|
|
322
|
+
private constructor();
|
|
323
|
+
get _content(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.Content> */;
|
|
324
|
+
get tips(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.tips.Tip> */;
|
|
325
|
+
static createTestParagraph(parent?: any/* org.cru.godtools.shared.tool.parser.model.Base */, content?: (p0: org.cru.godtools.shared.tool.parser.model.Paragraph) => any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.Content> */): org.cru.godtools.shared.tool.parser.model.Paragraph;
|
|
326
|
+
get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
327
|
+
readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Parent["__doNotUseOrImplementIt"];
|
|
328
|
+
}
|
|
329
|
+
}
|
|
302
330
|
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
303
331
|
interface Parent /* extends org.cru.godtools.shared.tool.parser.model.Base */ {
|
|
304
332
|
readonly _content: any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.Content> */;
|
|
@@ -375,10 +403,12 @@ export declare namespace org.cru.godtools.shared.tool.parser.model.page {
|
|
|
375
403
|
get position(): number;
|
|
376
404
|
get parentPage(): Nullable<org.cru.godtools.shared.tool.parser.model.page.Page>;
|
|
377
405
|
get isHidden(): boolean;
|
|
378
|
-
get
|
|
379
|
-
get
|
|
406
|
+
get _listeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
|
|
407
|
+
get _dismissListeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
|
|
380
408
|
get backgroundImage(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
|
|
381
409
|
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent> */;
|
|
410
|
+
get dismissListeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
411
|
+
get listeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
382
412
|
getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
383
413
|
readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.HasAnalyticsEvents["__doNotUseOrImplementIt"];
|
|
384
414
|
}
|
|
@@ -449,13 +479,15 @@ export declare namespace org.cru.godtools.shared.tool.parser.model.tract {
|
|
|
449
479
|
get visiblePosition(): Nullable<number>;
|
|
450
480
|
get isLastVisibleCard(): boolean;
|
|
451
481
|
get isHidden(): boolean;
|
|
452
|
-
get
|
|
453
|
-
get
|
|
482
|
+
get _listeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
|
|
483
|
+
get _dismissListeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
|
|
454
484
|
get backgroundImage(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
|
|
455
485
|
get label(): Nullable<org.cru.godtools.shared.tool.parser.model.Text>;
|
|
456
486
|
get _content(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.Content> */;
|
|
457
487
|
get tips(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.tips.Tip> */;
|
|
458
488
|
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent> */;
|
|
489
|
+
get dismissListeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
490
|
+
get listeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
|
|
459
491
|
get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
460
492
|
getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
461
493
|
readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Parent["__doNotUseOrImplementIt"] & org.cru.godtools.shared.tool.parser.model.HasAnalyticsEvents["__doNotUseOrImplementIt"];
|