@cruglobal/godtools-shared 0.9.0-SNAPSHOT.1272 → 0.9.0-SNAPSHOT.1275

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.
@@ -331,6 +331,41 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
331
331
  };
332
332
  }
333
333
  }
334
+ export declare namespace org.cru.godtools.shared.tool.parser.model {
335
+ /* @ts-ignore: extends class with private primary constructor */
336
+ class Flow extends org.cru.godtools.shared.tool.parser.model.Content {
337
+ private constructor();
338
+ get _items(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.Flow.Item> */;
339
+ get items(): Array<org.cru.godtools.shared.tool.parser.model.Flow.Item>;
340
+ isInvisible(state: org.cru.godtools.shared.tool.state.State): boolean;
341
+ isInvisibleFlow(state: org.cru.godtools.shared.tool.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
342
+ isGone(state: org.cru.godtools.shared.tool.state.State): boolean;
343
+ isGoneFlow(state: org.cru.godtools.shared.tool.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
344
+ watchIsGone(state: org.cru.godtools.shared.tool.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
345
+ watchIsInvisible(state: org.cru.godtools.shared.tool.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
346
+ watchVisibility(state: org.cru.godtools.shared.tool.state.State, block: (p0: boolean, p1: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
347
+ }
348
+ namespace Flow {
349
+ 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 {
350
+ private constructor();
351
+ get flow(): org.cru.godtools.shared.tool.parser.model.Flow;
352
+ get invisibleIf(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.expressions.Expression> */;
353
+ get goneIf(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.expressions.Expression> */;
354
+ get _content(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.Content> */;
355
+ get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
356
+ isInvisible(state: org.cru.godtools.shared.tool.state.State): boolean;
357
+ isInvisibleFlow(state: org.cru.godtools.shared.tool.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
358
+ isGone(state: org.cru.godtools.shared.tool.state.State): boolean;
359
+ isGoneFlow(state: org.cru.godtools.shared.tool.state.State): any/* kotlinx.coroutines.flow.Flow<boolean> */;
360
+ watchIsGone(state: org.cru.godtools.shared.tool.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
361
+ watchIsInvisible(state: org.cru.godtools.shared.tool.state.State, block: (p0: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
362
+ watchVisibility(state: org.cru.godtools.shared.tool.state.State, block: (p0: boolean, p1: boolean) => void): org.cru.godtools.shared.tool.parser.util.FlowWatcher;
363
+ readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Parent["__doNotUseOrImplementIt"] & org.cru.godtools.shared.tool.parser.model.Visibility["__doNotUseOrImplementIt"];
364
+ static get Companion(): {
365
+ };
366
+ }
367
+ }
368
+ }
334
369
  export declare namespace org.cru.godtools.shared.tool.parser.model {
335
370
  /* @ts-ignore: extends class with private primary constructor */
336
371
  class Form extends org.cru.godtools.shared.tool.parser.model.Content implements org.cru.godtools.shared.tool.parser.model.Parent {