@cruglobal/godtools-shared 0.9.0-SNAPSHOT.1176 → 0.9.0-SNAPSHOT.1177

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.
@@ -125,6 +125,59 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
125
125
  get localName(): Nullable<string>;
126
126
  }
127
127
  }
128
+ export declare namespace org.cru.godtools.shared.tool.parser.model {
129
+ class Text /* extends org.cru.godtools.shared.tool.parser.model.Content */ {
130
+ private constructor();
131
+ get text(): Nullable<string>;
132
+ get textStyles(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.Text.Style> */;
133
+ get minimumLines(): number;
134
+ get startImage(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
135
+ get startImageSize(): number;
136
+ get endImage(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
137
+ get endImageSize(): number;
138
+ static createTestText(parent?: any/* org.cru.godtools.shared.tool.parser.model.Base */, text?: Nullable<string>, textScale?: number, textColor?: Nullable<string>, textAlign?: Nullable<org.cru.godtools.shared.tool.parser.model.Text.Align>, textStyles?: any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.Text.Style> */, startImage?: Nullable<string>, endImage?: Nullable<string>): org.cru.godtools.shared.tool.parser.model.Text;
139
+ }
140
+ namespace Text {
141
+ abstract class Align {
142
+ private constructor();
143
+ static get START(): org.cru.godtools.shared.tool.parser.model.Text.Align & {
144
+ get name(): "START";
145
+ get ordinal(): 0;
146
+ };
147
+ static get CENTER(): org.cru.godtools.shared.tool.parser.model.Text.Align & {
148
+ get name(): "CENTER";
149
+ get ordinal(): 1;
150
+ };
151
+ static get END(): org.cru.godtools.shared.tool.parser.model.Text.Align & {
152
+ get name(): "END";
153
+ get ordinal(): 2;
154
+ };
155
+ static values(): Array<org.cru.godtools.shared.tool.parser.model.Text.Align>;
156
+ static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Text.Align;
157
+ get name(): "START" | "CENTER" | "END";
158
+ get ordinal(): 0 | 1 | 2;
159
+ }
160
+ abstract class Style {
161
+ private constructor();
162
+ static get BOLD(): org.cru.godtools.shared.tool.parser.model.Text.Style & {
163
+ get name(): "BOLD";
164
+ get ordinal(): 0;
165
+ };
166
+ static get ITALIC(): org.cru.godtools.shared.tool.parser.model.Text.Style & {
167
+ get name(): "ITALIC";
168
+ get ordinal(): 1;
169
+ };
170
+ static get UNDERLINE(): org.cru.godtools.shared.tool.parser.model.Text.Style & {
171
+ get name(): "UNDERLINE";
172
+ get ordinal(): 2;
173
+ };
174
+ static values(): Array<org.cru.godtools.shared.tool.parser.model.Text.Style>;
175
+ static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Text.Style;
176
+ get name(): "BOLD" | "ITALIC" | "UNDERLINE";
177
+ get ordinal(): 0 | 1 | 2;
178
+ }
179
+ }
180
+ }
128
181
  export declare namespace org.cru.godtools.shared.tool.parser.model.page {
129
182
  abstract class Page /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */ /* implements org.cru.godtools.shared.tool.parser.model.Styles, org.cru.godtools.shared.tool.parser.model.HasAnalyticsEvents */ {
130
183
  get id(): string;
@@ -139,24 +192,24 @@ export declare namespace org.cru.godtools.shared.tool.parser.model.page {
139
192
  export declare namespace org.cru.godtools.shared.tool.parser.model.tract {
140
193
  class CallToAction /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */ {
141
194
  private constructor();
142
- get label(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.model.Text> */;
195
+ get label(): Nullable<org.cru.godtools.shared.tool.parser.model.Text>;
143
196
  get tip(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.model.tips.Tip> */;
144
- static createTestCallToAction(page?: org.cru.godtools.shared.tool.parser.model.tract.TractPage, label?: Nullable<(p0: org.cru.godtools.shared.tool.parser.model.tract.CallToAction) => any/* org.cru.godtools.shared.tool.parser.model.Text */>, controlColor?: Nullable<string>, tip?: Nullable<string>): org.cru.godtools.shared.tool.parser.model.tract.CallToAction;
197
+ static createTestCallToAction(page?: org.cru.godtools.shared.tool.parser.model.tract.TractPage, label?: Nullable<(p0: org.cru.godtools.shared.tool.parser.model.tract.CallToAction) => org.cru.godtools.shared.tool.parser.model.Text>, controlColor?: Nullable<string>, tip?: Nullable<string>): org.cru.godtools.shared.tool.parser.model.tract.CallToAction;
145
198
  }
146
199
  }
147
200
  export declare namespace org.cru.godtools.shared.tool.parser.model.tract {
148
201
  class Header /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */ /* implements org.cru.godtools.shared.tool.parser.model.Styles */ {
149
202
  private constructor();
150
- get number(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.model.Text> */;
151
- get title(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.model.Text> */;
203
+ get number(): Nullable<org.cru.godtools.shared.tool.parser.model.Text>;
204
+ get title(): Nullable<org.cru.godtools.shared.tool.parser.model.Text>;
152
205
  get tip(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.model.tips.Tip> */;
153
206
  }
154
207
  }
155
208
  export declare namespace org.cru.godtools.shared.tool.parser.model.tract {
156
209
  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 */ {
157
210
  private constructor();
158
- get heading(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.model.Text> */;
159
- static createTestHero(page?: org.cru.godtools.shared.tool.parser.model.tract.TractPage, analyticsEvents?: any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent> */, heading?: Nullable<(p0: any/* org.cru.godtools.shared.tool.parser.model.Base */) => Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.model.Text> */>): org.cru.godtools.shared.tool.parser.model.tract.Hero;
211
+ get heading(): Nullable<org.cru.godtools.shared.tool.parser.model.Text>;
212
+ static createTestHero(page?: org.cru.godtools.shared.tool.parser.model.tract.TractPage, analyticsEvents?: any/* kotlin.collections.List<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;
160
213
  }
161
214
  }
162
215
  export declare namespace org.cru.godtools.shared.tool.parser.model.tract {
@@ -164,7 +217,7 @@ export declare namespace org.cru.godtools.shared.tool.parser.model.tract {
164
217
  private constructor();
165
218
  get page(): org.cru.godtools.shared.tool.parser.model.tract.TractPage;
166
219
  get id(): string;
167
- get title(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.model.Text> */;
220
+ get title(): Nullable<org.cru.godtools.shared.tool.parser.model.Text>;
168
221
  get listeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
169
222
  get dismissListeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
170
223
  }
@@ -196,7 +249,7 @@ export declare namespace org.cru.godtools.shared.tool.parser.model.tract {
196
249
  get listeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
197
250
  get dismissListeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
198
251
  get backgroundImage(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
199
- get label(): Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.model.Text> */;
252
+ get label(): Nullable<org.cru.godtools.shared.tool.parser.model.Text>;
200
253
  get tips(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.tips.Tip> */;
201
254
  }
202
255
  }