@immense/vue-pom-generator 1.0.65 → 1.0.67

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 (53) hide show
  1. package/AGENTS.md +21 -0
  2. package/README.md +1 -0
  3. package/RELEASE_NOTES.md +84 -21
  4. package/class-generation/index.ts +23 -9
  5. package/dist/class-generation/index.d.ts.map +1 -1
  6. package/dist/compiler-metadata-utils.d.ts.map +1 -1
  7. package/dist/index.cjs +261 -82
  8. package/dist/index.cjs.map +1 -1
  9. package/dist/index.d.ts +1 -1
  10. package/dist/index.d.ts.map +1 -1
  11. package/dist/index.mjs +261 -82
  12. package/dist/index.mjs.map +1 -1
  13. package/dist/manifest-generator.d.ts +2 -0
  14. package/dist/manifest-generator.d.ts.map +1 -1
  15. package/dist/metadata-collector.d.ts +2 -0
  16. package/dist/metadata-collector.d.ts.map +1 -1
  17. package/dist/plugin/create-vue-pom-generator-plugins.d.ts.map +1 -1
  18. package/dist/plugin/internal/build-plugin.d.ts.map +1 -0
  19. package/dist/plugin/internal/dev-plugin.d.ts.map +1 -0
  20. package/dist/plugin/internal/virtual-modules.d.ts.map +1 -0
  21. package/dist/plugin/{support-plugins.d.ts → internal-plugins.d.ts} +14 -3
  22. package/dist/plugin/internal-plugins.d.ts.map +1 -0
  23. package/dist/plugin/runtime/annotator/client.d.ts +67 -0
  24. package/dist/plugin/runtime/annotator/client.d.ts.map +1 -0
  25. package/dist/plugin/runtime/annotator/format.d.ts +13 -0
  26. package/dist/plugin/runtime/annotator/format.d.ts.map +1 -0
  27. package/dist/plugin/runtime/annotator/plugin.d.ts +12 -0
  28. package/dist/plugin/runtime/annotator/plugin.d.ts.map +1 -0
  29. package/dist/plugin/runtime/annotator/styles.d.ts +3 -0
  30. package/dist/plugin/runtime/annotator/styles.d.ts.map +1 -0
  31. package/dist/plugin/runtime/annotator/vue-detector.d.ts +12 -0
  32. package/dist/plugin/runtime/annotator/vue-detector.d.ts.map +1 -0
  33. package/dist/plugin/types.d.ts +58 -3
  34. package/dist/plugin/types.d.ts.map +1 -1
  35. package/dist/plugin/vue-plugin.d.ts +4 -0
  36. package/dist/plugin/vue-plugin.d.ts.map +1 -1
  37. package/dist/transform.d.ts +4 -0
  38. package/dist/transform.d.ts.map +1 -1
  39. package/dist/utils.d.ts +19 -0
  40. package/dist/utils.d.ts.map +1 -1
  41. package/package.json +3 -1
  42. package/plugin/runtime/annotator/client.ts +1005 -0
  43. package/plugin/runtime/annotator/format.ts +76 -0
  44. package/plugin/runtime/annotator/plugin.ts +109 -0
  45. package/plugin/runtime/annotator/styles.ts +379 -0
  46. package/plugin/runtime/annotator/vue-detector.ts +216 -0
  47. package/dist/plugin/support/build-plugin.d.ts.map +0 -1
  48. package/dist/plugin/support/dev-plugin.d.ts.map +0 -1
  49. package/dist/plugin/support/virtual-modules.d.ts.map +0 -1
  50. package/dist/plugin/support-plugins.d.ts.map +0 -1
  51. /package/dist/plugin/{support → internal}/build-plugin.d.ts +0 -0
  52. /package/dist/plugin/{support → internal}/dev-plugin.d.ts +0 -0
  53. /package/dist/plugin/{support → internal}/virtual-modules.d.ts +0 -0
package/AGENTS.md CHANGED
@@ -28,6 +28,27 @@ Stop and ask for guidance instead of implementing a fallback. Explain:
28
28
  - which consumers/call sites are affected,
29
29
  - and what the clean breaking change would look like.
30
30
 
31
+ ## Local source wiring into a consumer app
32
+
33
+ When testing `vue-pom-generator` from a local checkout, do **not** import `../vue-pom-generator/index.ts` directly from the consumer's Vite config.
34
+ That pulls in this repo's source-level TypeScript types and its own `vite` dependency tree, which causes avoidable type/runtime mismatches.
35
+
36
+ Use this flow instead:
37
+
38
+ 1. Build this repo first:
39
+ - `cd /path/to/vue-pom-generator`
40
+ - `npm run build`
41
+ 2. In the consumer app's `package.json`, point the dependency at the local checkout:
42
+ - `"@immense/vue-pom-generator": "file:../../../vue-pom-generator"`
43
+ - adjust the relative path for that consumer repo
44
+ 3. Keep imports by package name:
45
+ - `import { defineVuePomGeneratorConfig, vuePomGenerator } from "@immense/vue-pom-generator";`
46
+ 4. Reinstall in the consumer:
47
+ - `npm install`
48
+ 5. If the consumer has type friction around `PluginOption[]`, prefer a local cast in the consumer helper rather than importing this repo's TS source directly.
49
+
50
+ Short version: **build here, use a `file:` dependency there, keep package-name imports.**
51
+
31
52
  ## Scope
32
53
 
33
54
  These rules apply to:
package/README.md CHANGED
@@ -625,6 +625,7 @@ Current caveats:
625
625
  - there are no generated `openXPage` helpers; tests call `goTo()` explicitly when available
626
626
  - override preference only affects fixture construction
627
627
  - component fixtures are skipped when their lower-camel-case name would collide with reserved Playwright fixture names such as `page`, `context`, `browser`, or `request`
628
+ - generic wrapper-only component fallbacks whose best standalone name is just their wrapper class are skipped so parent views/components keep the more meaningful handler-derived API
628
629
  - an override class still needs a `new (page)`-compatible constructor because that is what fixtures call
629
630
 
630
631
  By default the runtime uses a simple red fallback bubble. The example below uses the optional floating-ui renderer so the callout can auto-place around nearby UI and point back to the target with an arrow.
package/RELEASE_NOTES.md CHANGED
@@ -1,31 +1,94 @@
1
- ● ## v1.0.65
1
+ ● ## Highlights
2
2
 
3
- ### Highlights
3
+ - **Runtime annotator metadata** – New runtime metadata collection and annotation capabilities
4
+ for enhanced POM generation
5
+ - **Accessibility audit warnings** – Automatic detection and reporting of accessibility issues
6
+ in Vue components
7
+ - **Manifest and locator descriptions** – Human-readable descriptions for generated test
8
+ locators and manifests
9
+ - **Zero runtime dependencies** – All runtime dependencies eliminated for smaller bundle size
10
+ and fewer supply-chain risks
11
+ - **Build–serve parity** – Dev mode POM generation now matches build mode behavior with
12
+ comprehensive regression tests
4
13
 
5
- - Fixed parsing of guarded handler expressions (e.g., `@click="condition && handler"`)
6
- - Improved semantic name resolution for wrapped and conditional event handlers
7
- - Enhanced Vue compiler AST traversal to handle logical expressions (`&&` operators)
14
+ ## Changes
8
15
 
9
- ### Changes
16
+ **Features**
17
+ - Add runtime annotator metadata with Vue component detection (#27)
18
+ - Add accessibility audit metadata and warnings (#25)
19
+ - Add manifest and locator descriptions (#24)
20
+ - Add split Playwright POM output for improved discoverability (#12)
21
+ - Fail fast on unnameable wrapper handlers (#11)
10
22
 
11
- **Parser Improvements**
12
- - Added support for `LogicalExpression` nodes in handler attribute parsing
13
- - Introduced `unwrapSemanticHelperCall` to handle Vue compiler helpers (`_unref`,
14
- `_withModifiers`, etc.)
15
- - Refactored `resolveSemanticName` to recursively unwrap nested expressions and guarded calls
16
- - Handler names now correctly extracted from conditional expressions like `isValid &&
17
- submitForm`
23
+ **Fixes**
24
+ - Parse TypeScript template expressions + allow submit-button fallback (#20)
25
+ - Avoid reparsing generated test IDs (#21)
26
+ - Harden local app integration (#19)
27
+ - Restore router DOM globals after introspection (#18)
28
+ - Support awaited handler wrappers (#17)
29
+ - Resolve Nuxt app-root dev POM clobber (#15)
30
+ - Guard manual releases (#16)
31
+ - Fail fast on dev snapshot generation errors (#6)
32
+ - Dev-mode POM generation parity with build mode (#5)
33
+ - Fix keyed POM dedupe and C# navigation returns (#4)
18
34
 
19
- **Testing**
20
- - Added test coverage for guarded handler scenarios
21
- - Updated transform and utils test suites to validate new parsing logic
35
+ **Refactoring**
36
+ - Eliminate all runtime dependencies (#9)
37
+ - Rename `plugin/support` `plugin/internal` (internal restructuring)
22
38
 
23
- ### Pull Requests Included
39
+ **Dependencies**
40
+ - Relax Vite peer dependency range (#13)
24
41
 
25
- No pull request was created for this fix; it was committed directly to `main`.
42
+ **Developer Experience**
43
+ - Add PR release-notes preview comments (#1)
26
44
 
27
- ### Testing
45
+ ## Breaking Changes
28
46
 
29
- Validated with expanded unit test coverage in `tests/transform.test.ts` and
30
- `tests/utils-coverage.test.ts`.
47
+ - Internal plugin structure reorganized: `plugin/support-plugins.ts`
48
+ `plugin/internal-plugins.ts` and `plugin/support/*` → `plugin/internal/*`. This should not
49
+ affect public API users.
50
+
51
+ ## Pull Requests Included
52
+
53
+ - #27 feat: add runtime annotator metadata
54
+ (https://github.com/immense/vue-pom-generator/pull/27)
55
+ - #25 feat: add accessibility audit metadata and warnings
56
+ (https://github.com/immense/vue-pom-generator/pull/25)
57
+ - #24 feat: add manifest and locator descriptions
58
+ (https://github.com/immense/vue-pom-generator/pull/24)
59
+ - #21 fix: avoid reparsing generated test ids
60
+ (https://github.com/immense/vue-pom-generator/pull/21)
61
+ - #20 fix: parse TypeScript template expressions + allow submit-button fallback
62
+ (https://github.com/immense/vue-pom-generator/pull/20)
63
+ - #19 fix: harden local app integration (https://github.com/immense/vue-pom-generator/pull/19)
64
+ - #18 fix: restore router DOM globals after introspection
65
+ (https://github.com/immense/vue-pom-generator/pull/18)
66
+ - #17 fix: support awaited handler wrappers
67
+ (https://github.com/immense/vue-pom-generator/pull/17)
68
+ - #16 fix: guard manual releases (https://github.com/immense/vue-pom-generator/pull/16)
69
+ - #15 fix: resolve Nuxt app-root dev POM clobber
70
+ (https://github.com/immense/vue-pom-generator/pull/15)
71
+ - #13 Relax Vite peer dependency range (https://github.com/immense/vue-pom-generator/pull/13)
72
+ - #12 feat: add split Playwright POM output for discoverability
73
+ (https://github.com/immense/vue-pom-generator/pull/12)
74
+ - #11 feat: fail fast on unnameable wrapper handlers
75
+ (https://github.com/immense/vue-pom-generator/pull/11)
76
+ - #9 refactor(deps): eliminate all runtime dependencies
77
+ (https://github.com/immense/vue-pom-generator/pull/9)
78
+ - #8 chore: bump version to 1.0.43 (https://github.com/immense/vue-pom-generator/pull/8)
79
+ - #7 test: add build–serve parity regression tests
80
+ (https://github.com/immense/vue-pom-generator/pull/7)
81
+ - #6 fix: fail fast on dev snapshot generation errors
82
+ (https://github.com/immense/vue-pom-generator/pull/6)
83
+ - #5 fix: dev-mode POM generation parity with build mode
84
+ (https://github.com/immense/vue-pom-generator/pull/5)
85
+ - #4 Fix keyed POM dedupe and C# navigation returns
86
+ (https://github.com/immense/vue-pom-generator/pull/4)
87
+ - #1 Add PR release-notes preview comments (https://github.com/immense/vue-pom-generator/pull/1)
88
+
89
+ ## Testing
90
+
91
+ Comprehensive test coverage added including build–serve parity regression tests (#7), class
92
+ generation coverage tests, generated TypeScript compilation tests, and virtual test ID tests.
93
+ All new features and fixes include corresponding test coverage.
31
94
 
@@ -54,6 +54,7 @@ import {
54
54
  PomExtraClickMethodSpec,
55
55
  PomPrimarySpec,
56
56
  PomSelectorSpec,
57
+ shouldSuppressStandaloneWrapperFallbackSurface,
57
58
  toPascalCase,
58
59
  upperFirst,
59
60
  } from "../utils";
@@ -663,6 +664,11 @@ export async function generateFiles(
663
664
  layoutDirs,
664
665
  })
665
666
  : undefined);
667
+ const emittableComponentHierarchyMap = new Map(
668
+ Array.from(componentHierarchyMap.entries()).filter(([componentName, dependencies]) => {
669
+ return !shouldSuppressStandaloneWrapperFallbackSurface(componentName, dependencies);
670
+ }),
671
+ );
666
672
  const generatedFilePaths: string[] = [];
667
673
  const writeGeneratedFile = (file: GeneratedFileOutput) => {
668
674
  const resolvedFilePath = path.resolve(file.filePath);
@@ -672,7 +678,7 @@ export async function generateFiles(
672
678
 
673
679
  if (emitLanguages.includes("ts")) {
674
680
  const files = typescriptOutputStructure === "split"
675
- ? await generateSplitTypeScriptFiles(componentHierarchyMap, vueFilesPathMap, basePageClassPath, outDir, {
681
+ ? await generateSplitTypeScriptFiles(emittableComponentHierarchyMap, vueFilesPathMap, basePageClassPath, outDir, {
676
682
  customPomAttachments,
677
683
  projectRoot,
678
684
  customPomDir,
@@ -683,7 +689,7 @@ export async function generateFiles(
683
689
  routeMetaByComponent,
684
690
  vueRouterFluentChaining,
685
691
  })
686
- : await generateAggregatedFiles(componentHierarchyMap, vueFilesPathMap, basePageClassPath, outDir, {
692
+ : await generateAggregatedFiles(emittableComponentHierarchyMap, vueFilesPathMap, basePageClassPath, outDir, {
687
693
  customPomAttachments,
688
694
  projectRoot,
689
695
  customPomDir,
@@ -699,7 +705,7 @@ export async function generateFiles(
699
705
  writeGeneratedFile(file);
700
706
  }
701
707
 
702
- const fixtureRegistryFile = maybeGenerateFixtureRegistry(componentHierarchyMap, {
708
+ const fixtureRegistryFile = maybeGenerateFixtureRegistry(emittableComponentHierarchyMap, {
703
709
  generateFixtures,
704
710
  pomOutDir: outDir,
705
711
  projectRoot,
@@ -711,7 +717,7 @@ export async function generateFiles(
711
717
  }
712
718
 
713
719
  if (emitLanguages.includes("csharp")) {
714
- const csFiles = generateAggregatedCSharpFiles(componentHierarchyMap, outDir, {
720
+ const csFiles = generateAggregatedCSharpFiles(emittableComponentHierarchyMap, outDir, {
715
721
  projectRoot,
716
722
  testIdAttribute,
717
723
  csharp,
@@ -1636,7 +1642,12 @@ function prepareViewObjectModelClass(
1636
1642
  : childrenComponentSet;
1637
1643
  const componentRefsForInstances = new Set<string>();
1638
1644
  for (const ref of rawComponentRefsForInstances) {
1639
- componentRefsForInstances.add(resolveTrackedComponentRef(ref) ?? normalizeTrackedComponentRef(ref));
1645
+ const resolvedRef = resolveTrackedComponentRef(ref) ?? normalizeTrackedComponentRef(ref);
1646
+ const resolvedDependencies = componentHierarchyMap.get(resolvedRef);
1647
+ if (!resolvedDependencies?.dataTestIdSet.size) {
1648
+ continue;
1649
+ }
1650
+ componentRefsForInstances.add(resolvedRef);
1640
1651
  }
1641
1652
 
1642
1653
  const hasChildComponent = (needle: string) => {
@@ -1710,9 +1721,9 @@ function prepareViewObjectModelClass(
1710
1721
  members.push(...getComponentInstances(componentRefsForInstances, componentHierarchyMap, attachmentsForThisClass, widgetInstances));
1711
1722
  members.push(getConstructor(componentRefsForInstances, componentHierarchyMap, attachmentsForThisClass, widgetInstances, { testIdAttribute }));
1712
1723
  }
1713
- if (!isView && attachmentsForThisClass.length > 0) {
1714
- members.push(...getComponentInstances(new Set(), componentHierarchyMap, attachmentsForThisClass));
1715
- members.push(getConstructor(new Set(), componentHierarchyMap, attachmentsForThisClass, [], { testIdAttribute }));
1724
+ if (!isView && (componentRefsForInstances.size > 0 || attachmentsForThisClass.length > 0)) {
1725
+ members.push(...getComponentInstances(componentRefsForInstances, componentHierarchyMap, attachmentsForThisClass));
1726
+ members.push(getConstructor(componentRefsForInstances, componentHierarchyMap, attachmentsForThisClass, [], { testIdAttribute }));
1716
1727
  }
1717
1728
 
1718
1729
  members.push(
@@ -1771,7 +1782,10 @@ function generateViewObjectModelContent(
1771
1782
  const basePageImport = path.relative(fromAbs, toAbs).replace(/\\/g, "/");
1772
1783
  const basePageImportNoExt = stripExtension(basePageImport).replace(/\\/g, "/");
1773
1784
  const basePageImportSpecifier = basePageImportNoExt.startsWith(".") ? basePageImportNoExt : `./${basePageImportNoExt}`;
1774
- const needsPlaywrightPageImport = prepared.isView || prepared.attachmentsForThisClass.length > 0;
1785
+ const needsPlaywrightPageImport = prepared.isView
1786
+ || prepared.attachmentsForThisClass.length > 0
1787
+ || prepared.componentRefsForInstances.size > 0
1788
+ || prepared.widgetInstances.length > 0;
1775
1789
  const customPomImportSpecifiersByClass = options.customPomImportSpecifiersByClass ?? {};
1776
1790
 
1777
1791
  const customImports = Array.from(
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../class-generation/index.ts"],"names":[],"mappings":"AAUA,OAAO,EAAkC,oCAAoC,EAAE,MAAM,sBAAsB,CAAC;AAwC5G,OAAO,EACL,sBAAsB,EAOvB,MAAM,UAAU,CAAC;AAQlB,OAAO,EAAE,oCAAoC,EAAE,CAAC;AA2ChD,UAAU,SAAS;IACjB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAID,UAAU,mBAAmB;IAC3B,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE,MAAM,CAAC;IACrB,wBAAwB,EAAE,MAAM,EAAE,CAAC;IACnC,QAAQ,CAAC,EAAE,OAAO,GAAG,YAAY,GAAG,MAAM,GAAG,oBAAoB,CAAC;IAClE,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AASD,MAAM,MAAM,yBAAyB,GAAG,YAAY,GAAG,OAAO,CAAC;AAqW/D,MAAM,WAAW,oBAAoB;IACnC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;;;;;;;;;;;;;;OAeG;IACH,gBAAgB,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG;QAAE,MAAM,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAE1D;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,gFAAgF;IAChF,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAE9B;;;;;;;OAOG;IACH,sBAAsB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAEhD;;;;;OAKG;IACH,oCAAoC,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC;IAEzD;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,mBAAmB,EAAE,CAAC;IAE7C,yEAAyE;IACzE,eAAe,CAAC,EAAE,MAAM,CAAC;IAEzB,uDAAuD;IACvD,aAAa,CAAC,EAAE,KAAK,CAAC,IAAI,GAAG,QAAQ,CAAC,CAAC;IAEvC;;;;;OAKG;IACH,yBAAyB,CAAC,EAAE,yBAAyB,CAAC;IAEtD,6BAA6B;IAC7B,MAAM,CAAC,EAAE;QACP,SAAS,CAAC,EAAE,MAAM,CAAC;KACpB,CAAC;IAEF,6EAA6E;IAC7E,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAElC,2FAA2F;IAC3F,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB,mDAAmD;IACnD,UAAU,CAAC,EAAE,YAAY,GAAG,MAAM,CAAC;IAEnC,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;IACzB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IAEtB,oBAAoB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC;CAClD;AAsCD,wBAAsB,aAAa,CACjC,qBAAqB,EAAE,GAAG,CAAC,MAAM,EAAE,sBAAsB,CAAC,EAC1D,eAAe,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,EACpC,iBAAiB,EAAE,MAAM,EACzB,OAAO,GAAE,oBAAyB,iBAoGnC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../class-generation/index.ts"],"names":[],"mappings":"AAUA,OAAO,EAAkC,oCAAoC,EAAE,MAAM,sBAAsB,CAAC;AAwC5G,OAAO,EACL,sBAAsB,EAQvB,MAAM,UAAU,CAAC;AAQlB,OAAO,EAAE,oCAAoC,EAAE,CAAC;AA2ChD,UAAU,SAAS;IACjB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAID,UAAU,mBAAmB;IAC3B,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE,MAAM,CAAC;IACrB,wBAAwB,EAAE,MAAM,EAAE,CAAC;IACnC,QAAQ,CAAC,EAAE,OAAO,GAAG,YAAY,GAAG,MAAM,GAAG,oBAAoB,CAAC;IAClE,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AASD,MAAM,MAAM,yBAAyB,GAAG,YAAY,GAAG,OAAO,CAAC;AAqW/D,MAAM,WAAW,oBAAoB;IACnC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;;;;;;;;;;;;;;OAeG;IACH,gBAAgB,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG;QAAE,MAAM,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAE1D;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,gFAAgF;IAChF,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAE9B;;;;;;;OAOG;IACH,sBAAsB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAEhD;;;;;OAKG;IACH,oCAAoC,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC;IAEzD;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,mBAAmB,EAAE,CAAC;IAE7C,yEAAyE;IACzE,eAAe,CAAC,EAAE,MAAM,CAAC;IAEzB,uDAAuD;IACvD,aAAa,CAAC,EAAE,KAAK,CAAC,IAAI,GAAG,QAAQ,CAAC,CAAC;IAEvC;;;;;OAKG;IACH,yBAAyB,CAAC,EAAE,yBAAyB,CAAC;IAEtD,6BAA6B;IAC7B,MAAM,CAAC,EAAE;QACP,SAAS,CAAC,EAAE,MAAM,CAAC;KACpB,CAAC;IAEF,6EAA6E;IAC7E,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAElC,2FAA2F;IAC3F,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB,mDAAmD;IACnD,UAAU,CAAC,EAAE,YAAY,GAAG,MAAM,CAAC;IAEnC,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;IACzB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IAEtB,oBAAoB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC;CAClD;AAsCD,wBAAsB,aAAa,CACjC,qBAAqB,EAAE,GAAG,CAAC,MAAM,EAAE,sBAAsB,CAAC,EAC1D,eAAe,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,EACpC,iBAAiB,EAAE,MAAM,EACzB,OAAO,GAAE,oBAAyB,iBAyGnC"}
@@ -1 +1 @@
1
- {"version":3,"file":"compiler-metadata-utils.d.ts","sourceRoot":"","sources":["../compiler-metadata-utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,aAAa,EACb,aAAa,EACb,WAAW,EACX,oBAAoB,EAGrB,MAAM,oBAAoB,CAAC;AAG5B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAE5D,MAAM,MAAM,cAAc,GAAG,aAAa,GAAG,aAAa,GAAG,SAAS,CAAC;AAEvE,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,WAAW,EAAE,aAAa,GAAE,MAAsB,GAAG,cAAc,CAQ9G;AAED,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,cAAc,GAAG,MAAM,GAAG,IAAI,CAcrE;AAED,wBAAgB,iBAAiB,CAAC,YAAY,EAAE,MAAM,GAAG,oBAAoB,GAAG,SAAS,GAAG,MAAM,EAAE,GAAG,SAAS,CA+C/G;AAkCD,wBAAgB,wBAAwB,CAAC,IAAI,EAAE;IAC7C,OAAO,EAAE,WAAW,CAAC;IACrB,eAAe,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACrC,KAAK,EAAE,OAAO,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,oCAAoC,EAAE,OAAO,CAAC;IAC9C,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B,GAAG,eAAe,GAAG,IAAI,CA2DzB"}
1
+ {"version":3,"file":"compiler-metadata-utils.d.ts","sourceRoot":"","sources":["../compiler-metadata-utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,aAAa,EACb,aAAa,EACb,WAAW,EACX,oBAAoB,EAGrB,MAAM,oBAAoB,CAAC;AAG5B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAE5D,MAAM,MAAM,cAAc,GAAG,aAAa,GAAG,aAAa,GAAG,SAAS,CAAC;AAEvE,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,WAAW,EAAE,aAAa,GAAE,MAAsB,GAAG,cAAc,CAQ9G;AAED,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,cAAc,GAAG,MAAM,GAAG,IAAI,CAcrE;AAED,wBAAgB,iBAAiB,CAAC,YAAY,EAAE,MAAM,GAAG,oBAAoB,GAAG,SAAS,GAAG,MAAM,EAAE,GAAG,SAAS,CA+C/G;AAkCD,wBAAgB,wBAAwB,CAAC,IAAI,EAAE;IAC7C,OAAO,EAAE,WAAW,CAAC;IACrB,eAAe,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACrC,KAAK,EAAE,OAAO,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,oCAAoC,EAAE,OAAO,CAAC;IAC9C,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B,GAAG,eAAe,GAAG,IAAI,CA6DzB"}