@cruglobal/godtools-shared 0.8.3-SNAPSHOT.1105 → 0.8.3-SNAPSHOT.1120

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.
Files changed (29) hide show
  1. package/88b0986a7186d029-atomicfu-js-ir.js +12 -12
  2. package/KustomExport-lib-coroutines.js +19 -0
  3. package/KustomExport-lib-coroutines.js.map +1 -0
  4. package/KustomExport-lib.js +30 -0
  5. package/KustomExport-lib.js.map +1 -0
  6. package/Napier-napier-js-ir.js +171 -5
  7. package/Napier-napier-js-ir.js.map +1 -1
  8. package/android-gto-support-gto-support-fluidsonic-locale.js +19 -5
  9. package/android-gto-support-gto-support-fluidsonic-locale.js.map +1 -1
  10. package/antlr-kotlin-antlr-kotlin-runtime-js-ir.js +9058 -5
  11. package/antlr-kotlin-antlr-kotlin-runtime-js-ir.js.map +1 -1
  12. package/colormath-root-colormath-js-ir.js +2177 -5
  13. package/colormath-root-colormath-js-ir.js.map +1 -1
  14. package/fluid-locale-js-ir.js +1293 -5
  15. package/fluid-locale-js-ir.js.map +1 -1
  16. package/kotlin-kotlin-stdlib-js-ir.js +6306 -1955
  17. package/kotlin-kotlin-stdlib-js-ir.js.map +1 -1
  18. package/kotlin-mpp-godtools-tool-parser-common.js +7 -0
  19. package/kotlin-mpp-godtools-tool-parser-common.js.map +1 -1
  20. package/kotlin-mpp-godtools-tool-parser-npm.d.ts +50 -0
  21. package/kotlin-mpp-godtools-tool-parser-parser-expressions.js +1260 -5
  22. package/kotlin-mpp-godtools-tool-parser-parser-expressions.js.map +1 -1
  23. package/kotlin-mpp-godtools-tool-parser-parser.js +9336 -121
  24. package/kotlin-mpp-godtools-tool-parser-parser.js.map +1 -1
  25. package/kotlin-mpp-godtools-tool-parser-state.js +239 -239
  26. package/kotlin-mpp-godtools-tool-parser-state.js.map +1 -1
  27. package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js +2520 -1950
  28. package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js.map +1 -1
  29. package/package.json +1 -1
@@ -9,6 +9,13 @@
9
9
  'use strict';
10
10
  //region block: pre-declaration
11
11
  //endregion
12
+ function toUriOrNull(_this__u8e3s4) {
13
+ return _this__u8e3s4;
14
+ }
15
+ //region block: exports
16
+ _.$_$ = _.$_$ || {};
17
+ _.$_$.a = toUriOrNull;
18
+ //endregion
12
19
  return _;
13
20
  }));
14
21
 
@@ -1 +1 @@
1
- {"version":3,"sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;"}
1
+ {"version":3,"sources":["../../../../../../../../module/common/src/jsMain/kotlin/org/cru/godtools/shared/common/model/Uri.js.kt"],"sourcesContent":[null],"names":["toUriOrNull","<this>"],"mappings":";;;;;;;;;;;sBAKOA,CAAIC,aAAJD,EAA4B;A,IAAI,OAAJ,a;EAAG,C;;;;;;;"}
@@ -12,6 +12,56 @@ export declare namespace org.cru.godtools.shared.tool.state {
12
12
  removeVarValue(key: string, value: string): void;
13
13
  }
14
14
  }
15
+ export declare class ManifestParser {
16
+ constructor(parserFactory: org.cru.godtools.shared.tool.parser.xml.XmlPullParserFactory, defaultConfig: org.cru.godtools.shared.tool.parser.ParserConfig);
17
+ get defaultConfig(): org.cru.godtools.shared.tool.parser.ParserConfig;
18
+ parseManifest(fileName: string, abortSignal: AbortSignal): Promise<org.cru.godtools.shared.tool.parser.ParserResult>;
19
+ parseManifestConfig(fileName: string, config: org.cru.godtools.shared.tool.parser.ParserConfig, abortSignal: AbortSignal): Promise<org.cru.godtools.shared.tool.parser.ParserResult>;
20
+ }
21
+ export declare namespace org.cru.godtools.shared.tool.parser {
22
+ abstract class ParserResult {
23
+ protected constructor();
24
+ }
25
+ namespace ParserResult {
26
+ class Data extends org.cru.godtools.shared.tool.parser.ParserResult {
27
+ constructor(manifest: any/* org.cru.godtools.shared.tool.parser.model.Manifest */);
28
+ get manifest(): any/* org.cru.godtools.shared.tool.parser.model.Manifest */;
29
+ }
30
+ class ParserError extends org.cru.godtools.shared.tool.parser.ParserResult {
31
+ private constructor();
32
+ get error(): Nullable<Error>;
33
+ }
34
+ namespace ParserError {
35
+ class Corrupted extends org.cru.godtools.shared.tool.parser.ParserResult.ParserError {
36
+ private constructor();
37
+ }
38
+ class NotFound extends org.cru.godtools.shared.tool.parser.ParserResult.ParserError {
39
+ private constructor();
40
+ }
41
+ }
42
+ }
43
+ }
44
+ export declare namespace org.cru.godtools.shared.tool.parser {
45
+ class ParserConfig {
46
+ private constructor();
47
+ static createParserConfig(): org.cru.godtools.shared.tool.parser.ParserConfig;
48
+ withAppVersion(deviceType?: any/* org.cru.godtools.shared.tool.parser.model.DeviceType */, version: Nullable<string>): org.cru.godtools.shared.tool.parser.ParserConfig;
49
+ withSupportedFeatures(features: any/* kotlin.collections.Set<string> */): org.cru.godtools.shared.tool.parser.ParserConfig;
50
+ withParseRelated(enabled: boolean): org.cru.godtools.shared.tool.parser.ParserConfig;
51
+ withParsePages(enabled: boolean): org.cru.godtools.shared.tool.parser.ParserConfig;
52
+ withParseTips(enabled: boolean): org.cru.godtools.shared.tool.parser.ParserConfig;
53
+ copy(deviceType?: any/* org.cru.godtools.shared.tool.parser.model.DeviceType */, appVersion?: Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.model.Version> */, supportedFeatures?: any/* kotlin.collections.Set<string> */, parsePages?: boolean, parseTips?: boolean, parserDispatcher?: any/* kotlinx.coroutines.CoroutineDispatcher */): org.cru.godtools.shared.tool.parser.ParserConfig;
54
+ toString(): string;
55
+ hashCode(): number;
56
+ equals(other: Nullable<any>): boolean;
57
+ static get Companion(): {
58
+ get FEATURE_ANIMATION(): string;
59
+ get FEATURE_CONTENT_CARD(): string;
60
+ get FEATURE_FLOW(): string;
61
+ get FEATURE_MULTISELECT(): string;
62
+ };
63
+ }
64
+ }
15
65
  export declare namespace org.cru.godtools.shared.tool.parser.xml {
16
66
  abstract class XmlPullParserFactory {
17
67
  constructor();