@cruglobal/godtools-shared 0.9.0-SNAPSHOT.1254 → 0.9.0-SNAPSHOT.1259

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.
@@ -494,6 +494,51 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
494
494
  }
495
495
  }
496
496
  }
497
+ export declare namespace org.cru.godtools.shared.tool.parser.model {
498
+ /* @ts-ignore: extends class with private primary constructor */
499
+ class Multiselect extends org.cru.godtools.shared.tool.parser.model.Content {
500
+ private constructor();
501
+ get columns(): number;
502
+ get _options(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.Multiselect.Option> */;
503
+ get tips(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.tips.Tip> */;
504
+ get options(): Array<org.cru.godtools.shared.tool.parser.model.Multiselect.Option>;
505
+ }
506
+ namespace Multiselect {
507
+ 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 {
508
+ private constructor();
509
+ get multiselect(): org.cru.godtools.shared.tool.parser.model.Multiselect;
510
+ get style(): org.cru.godtools.shared.tool.parser.model.Multiselect.Option.Style;
511
+ get backgroundColor(): string;
512
+ get selectedColor(): string;
513
+ get _content(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.Content> */;
514
+ _getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent> */;
515
+ isSelected(state: org.cru.godtools.shared.tool.state.State): boolean;
516
+ isSelectedFlow(state: org.cru.godtools.shared.tool.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
517
+ watchIsSelected(state: org.cru.godtools.shared.tool.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
518
+ toggleSelected(state: org.cru.godtools.shared.tool.state.State): boolean;
519
+ get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
520
+ getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
521
+ readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Parent["__doNotUseOrImplementIt"] & org.cru.godtools.shared.tool.parser.model.HasAnalyticsEvents["__doNotUseOrImplementIt"];
522
+ }
523
+ namespace Option {
524
+ abstract class Style {
525
+ private constructor();
526
+ static get CARD(): org.cru.godtools.shared.tool.parser.model.Multiselect.Option.Style & {
527
+ get name(): "CARD";
528
+ get ordinal(): 0;
529
+ };
530
+ static get FLAT(): org.cru.godtools.shared.tool.parser.model.Multiselect.Option.Style & {
531
+ get name(): "FLAT";
532
+ get ordinal(): 1;
533
+ };
534
+ static values(): Array<org.cru.godtools.shared.tool.parser.model.Multiselect.Option.Style>;
535
+ static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Multiselect.Option.Style;
536
+ get name(): "CARD" | "FLAT";
537
+ get ordinal(): 0 | 1;
538
+ }
539
+ }
540
+ }
541
+ }
497
542
  export declare namespace org.cru.godtools.shared.tool.parser.model {
498
543
  /* @ts-ignore: extends class with private primary constructor */
499
544
  class Paragraph extends org.cru.godtools.shared.tool.parser.model.Content implements org.cru.godtools.shared.tool.parser.model.Parent {
@@ -765,6 +810,12 @@ export declare namespace org.cru.godtools.shared.tool.parser.model.tract {
765
810
  }
766
811
  }
767
812
  }
813
+ export declare namespace org.cru.godtools.shared.tool.parser.util {
814
+ class FlowWatcher {
815
+ private constructor();
816
+ close(): void;
817
+ }
818
+ }
768
819
  export declare namespace org.cru.godtools.shared.tool.parser.xml {
769
820
  abstract class XmlPullParserFactory {
770
821
  constructor();