driftdetect-core 0.5.0 → 0.6.1
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.
- package/dist/boundaries/types.d.ts +1 -1
- package/dist/boundaries/types.d.ts.map +1 -1
- package/dist/call-graph/analysis/graph-builder.d.ts.map +1 -1
- package/dist/call-graph/analysis/graph-builder.js +1 -0
- package/dist/call-graph/analysis/graph-builder.js.map +1 -1
- package/dist/call-graph/extractors/go-data-access-extractor.d.ts +80 -0
- package/dist/call-graph/extractors/go-data-access-extractor.d.ts.map +1 -0
- package/dist/call-graph/extractors/go-data-access-extractor.js +457 -0
- package/dist/call-graph/extractors/go-data-access-extractor.js.map +1 -0
- package/dist/call-graph/extractors/go-extractor.d.ts +103 -0
- package/dist/call-graph/extractors/go-extractor.d.ts.map +1 -0
- package/dist/call-graph/extractors/go-extractor.js +509 -0
- package/dist/call-graph/extractors/go-extractor.js.map +1 -0
- package/dist/call-graph/extractors/go-hybrid-extractor.d.ts +97 -0
- package/dist/call-graph/extractors/go-hybrid-extractor.d.ts.map +1 -0
- package/dist/call-graph/extractors/go-hybrid-extractor.js +496 -0
- package/dist/call-graph/extractors/go-hybrid-extractor.js.map +1 -0
- package/dist/call-graph/extractors/regex/go-regex.d.ts +51 -0
- package/dist/call-graph/extractors/regex/go-regex.d.ts.map +1 -0
- package/dist/call-graph/extractors/regex/go-regex.js +435 -0
- package/dist/call-graph/extractors/regex/go-regex.js.map +1 -0
- package/dist/call-graph/extractors/regex/index.d.ts +1 -0
- package/dist/call-graph/extractors/regex/index.d.ts.map +1 -1
- package/dist/call-graph/extractors/regex/index.js +8 -0
- package/dist/call-graph/extractors/regex/index.js.map +1 -1
- package/dist/call-graph/index.d.ts +3 -0
- package/dist/call-graph/index.d.ts.map +1 -1
- package/dist/call-graph/index.js +5 -0
- package/dist/call-graph/index.js.map +1 -1
- package/dist/call-graph/types.d.ts +1 -1
- package/dist/call-graph/types.d.ts.map +1 -1
- package/dist/constraints/extraction/constraint-synthesizer.d.ts +72 -0
- package/dist/constraints/extraction/constraint-synthesizer.d.ts.map +1 -0
- package/dist/constraints/extraction/constraint-synthesizer.js +336 -0
- package/dist/constraints/extraction/constraint-synthesizer.js.map +1 -0
- package/dist/constraints/extraction/index.d.ts +10 -0
- package/dist/constraints/extraction/index.d.ts.map +1 -0
- package/dist/constraints/extraction/index.js +10 -0
- package/dist/constraints/extraction/index.js.map +1 -0
- package/dist/constraints/extraction/invariant-detector.d.ts +109 -0
- package/dist/constraints/extraction/invariant-detector.d.ts.map +1 -0
- package/dist/constraints/extraction/invariant-detector.js +979 -0
- package/dist/constraints/extraction/invariant-detector.js.map +1 -0
- package/dist/constraints/index.d.ts +15 -0
- package/dist/constraints/index.d.ts.map +1 -0
- package/dist/constraints/index.js +16 -0
- package/dist/constraints/index.js.map +1 -0
- package/dist/constraints/store/constraint-store.d.ts +110 -0
- package/dist/constraints/store/constraint-store.d.ts.map +1 -0
- package/dist/constraints/store/constraint-store.js +584 -0
- package/dist/constraints/store/constraint-store.js.map +1 -0
- package/dist/constraints/types.d.ts +605 -0
- package/dist/constraints/types.d.ts.map +1 -0
- package/dist/constraints/types.js +57 -0
- package/dist/constraints/types.js.map +1 -0
- package/dist/constraints/verification/constraint-verifier.d.ts +100 -0
- package/dist/constraints/verification/constraint-verifier.d.ts.map +1 -0
- package/dist/constraints/verification/constraint-verifier.js +638 -0
- package/dist/constraints/verification/constraint-verifier.js.map +1 -0
- package/dist/constraints/verification/index.d.ts +8 -0
- package/dist/constraints/verification/index.d.ts.map +1 -0
- package/dist/constraints/verification/index.js +8 -0
- package/dist/constraints/verification/index.js.map +1 -0
- package/dist/decisions/analyzer/decision-mining-analyzer.d.ts +121 -0
- package/dist/decisions/analyzer/decision-mining-analyzer.d.ts.map +1 -0
- package/dist/decisions/analyzer/decision-mining-analyzer.js +904 -0
- package/dist/decisions/analyzer/decision-mining-analyzer.js.map +1 -0
- package/dist/decisions/analyzer/index.d.ts +5 -0
- package/dist/decisions/analyzer/index.d.ts.map +1 -0
- package/dist/decisions/analyzer/index.js +5 -0
- package/dist/decisions/analyzer/index.js.map +1 -0
- package/dist/decisions/extractors/base-commit-extractor.d.ts +104 -0
- package/dist/decisions/extractors/base-commit-extractor.d.ts.map +1 -0
- package/dist/decisions/extractors/base-commit-extractor.js +305 -0
- package/dist/decisions/extractors/base-commit-extractor.js.map +1 -0
- package/dist/decisions/extractors/csharp-commit-extractor.d.ts +18 -0
- package/dist/decisions/extractors/csharp-commit-extractor.d.ts.map +1 -0
- package/dist/decisions/extractors/csharp-commit-extractor.js +281 -0
- package/dist/decisions/extractors/csharp-commit-extractor.js.map +1 -0
- package/dist/decisions/extractors/index.d.ts +31 -0
- package/dist/decisions/extractors/index.d.ts.map +1 -0
- package/dist/decisions/extractors/index.js +63 -0
- package/dist/decisions/extractors/index.js.map +1 -0
- package/dist/decisions/extractors/java-commit-extractor.d.ts +18 -0
- package/dist/decisions/extractors/java-commit-extractor.d.ts.map +1 -0
- package/dist/decisions/extractors/java-commit-extractor.js +248 -0
- package/dist/decisions/extractors/java-commit-extractor.js.map +1 -0
- package/dist/decisions/extractors/php-commit-extractor.d.ts +18 -0
- package/dist/decisions/extractors/php-commit-extractor.d.ts.map +1 -0
- package/dist/decisions/extractors/php-commit-extractor.js +280 -0
- package/dist/decisions/extractors/php-commit-extractor.js.map +1 -0
- package/dist/decisions/extractors/python-commit-extractor.d.ts +18 -0
- package/dist/decisions/extractors/python-commit-extractor.d.ts.map +1 -0
- package/dist/decisions/extractors/python-commit-extractor.js +248 -0
- package/dist/decisions/extractors/python-commit-extractor.js.map +1 -0
- package/dist/decisions/extractors/typescript-commit-extractor.d.ts +37 -0
- package/dist/decisions/extractors/typescript-commit-extractor.d.ts.map +1 -0
- package/dist/decisions/extractors/typescript-commit-extractor.js +229 -0
- package/dist/decisions/extractors/typescript-commit-extractor.js.map +1 -0
- package/dist/decisions/git/commit-parser.d.ts +58 -0
- package/dist/decisions/git/commit-parser.d.ts.map +1 -0
- package/dist/decisions/git/commit-parser.js +344 -0
- package/dist/decisions/git/commit-parser.js.map +1 -0
- package/dist/decisions/git/diff-analyzer.d.ts +30 -0
- package/dist/decisions/git/diff-analyzer.d.ts.map +1 -0
- package/dist/decisions/git/diff-analyzer.js +492 -0
- package/dist/decisions/git/diff-analyzer.js.map +1 -0
- package/dist/decisions/git/git-walker.d.ts +64 -0
- package/dist/decisions/git/git-walker.d.ts.map +1 -0
- package/dist/decisions/git/git-walker.js +441 -0
- package/dist/decisions/git/git-walker.js.map +1 -0
- package/dist/decisions/git/index.d.ts +11 -0
- package/dist/decisions/git/index.d.ts.map +1 -0
- package/dist/decisions/git/index.js +13 -0
- package/dist/decisions/git/index.js.map +1 -0
- package/dist/decisions/git/types.d.ts +223 -0
- package/dist/decisions/git/types.d.ts.map +1 -0
- package/dist/decisions/git/types.js +7 -0
- package/dist/decisions/git/types.js.map +1 -0
- package/dist/decisions/index.d.ts +27 -0
- package/dist/decisions/index.d.ts.map +1 -0
- package/dist/decisions/index.js +45 -0
- package/dist/decisions/index.js.map +1 -0
- package/dist/decisions/types.d.ts +530 -0
- package/dist/decisions/types.d.ts.map +1 -0
- package/dist/decisions/types.js +8 -0
- package/dist/decisions/types.js.map +1 -0
- package/dist/go/go-analyzer.d.ts +203 -0
- package/dist/go/go-analyzer.d.ts.map +1 -0
- package/dist/go/go-analyzer.js +509 -0
- package/dist/go/go-analyzer.js.map +1 -0
- package/dist/go/index.d.ts +7 -0
- package/dist/go/index.d.ts.map +1 -0
- package/dist/go/index.js +8 -0
- package/dist/go/index.js.map +1 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +56 -0
- package/dist/index.js.map +1 -1
- package/dist/parsers/tree-sitter/go-loader.d.ts +50 -0
- package/dist/parsers/tree-sitter/go-loader.d.ts.map +1 -0
- package/dist/parsers/tree-sitter/go-loader.js +161 -0
- package/dist/parsers/tree-sitter/go-loader.js.map +1 -0
- package/dist/parsers/tree-sitter/tree-sitter-go-parser.d.ts +250 -0
- package/dist/parsers/tree-sitter/tree-sitter-go-parser.d.ts.map +1 -0
- package/dist/parsers/tree-sitter/tree-sitter-go-parser.js +707 -0
- package/dist/parsers/tree-sitter/tree-sitter-go-parser.js.map +1 -0
- package/dist/parsers/types.d.ts +1 -1
- package/dist/parsers/types.d.ts.map +1 -1
- package/dist/simulation/approach-generator.d.ts +73 -0
- package/dist/simulation/approach-generator.d.ts.map +1 -0
- package/dist/simulation/approach-generator.js +371 -0
- package/dist/simulation/approach-generator.js.map +1 -0
- package/dist/simulation/index.d.ts +14 -0
- package/dist/simulation/index.d.ts.map +1 -0
- package/dist/simulation/index.js +19 -0
- package/dist/simulation/index.js.map +1 -0
- package/dist/simulation/language-strategies/csharp-strategies.d.ts +17 -0
- package/dist/simulation/language-strategies/csharp-strategies.d.ts.map +1 -0
- package/dist/simulation/language-strategies/csharp-strategies.js +118 -0
- package/dist/simulation/language-strategies/csharp-strategies.js.map +1 -0
- package/dist/simulation/language-strategies/index.d.ts +41 -0
- package/dist/simulation/language-strategies/index.d.ts.map +1 -0
- package/dist/simulation/language-strategies/index.js +92 -0
- package/dist/simulation/language-strategies/index.js.map +1 -0
- package/dist/simulation/language-strategies/java-strategies.d.ts +17 -0
- package/dist/simulation/language-strategies/java-strategies.d.ts.map +1 -0
- package/dist/simulation/language-strategies/java-strategies.js +119 -0
- package/dist/simulation/language-strategies/java-strategies.js.map +1 -0
- package/dist/simulation/language-strategies/php-strategies.d.ts +17 -0
- package/dist/simulation/language-strategies/php-strategies.d.ts.map +1 -0
- package/dist/simulation/language-strategies/php-strategies.js +129 -0
- package/dist/simulation/language-strategies/php-strategies.js.map +1 -0
- package/dist/simulation/language-strategies/python-strategies.d.ts +17 -0
- package/dist/simulation/language-strategies/python-strategies.d.ts.map +1 -0
- package/dist/simulation/language-strategies/python-strategies.js +208 -0
- package/dist/simulation/language-strategies/python-strategies.js.map +1 -0
- package/dist/simulation/language-strategies/types.d.ts +67 -0
- package/dist/simulation/language-strategies/types.d.ts.map +1 -0
- package/dist/simulation/language-strategies/types.js +23 -0
- package/dist/simulation/language-strategies/types.js.map +1 -0
- package/dist/simulation/language-strategies/typescript-strategies.d.ts +17 -0
- package/dist/simulation/language-strategies/typescript-strategies.d.ts.map +1 -0
- package/dist/simulation/language-strategies/typescript-strategies.js +251 -0
- package/dist/simulation/language-strategies/typescript-strategies.js.map +1 -0
- package/dist/simulation/scorers/friction-scorer.d.ts +45 -0
- package/dist/simulation/scorers/friction-scorer.d.ts.map +1 -0
- package/dist/simulation/scorers/friction-scorer.js +336 -0
- package/dist/simulation/scorers/friction-scorer.js.map +1 -0
- package/dist/simulation/scorers/impact-scorer.d.ts +56 -0
- package/dist/simulation/scorers/impact-scorer.d.ts.map +1 -0
- package/dist/simulation/scorers/impact-scorer.js +273 -0
- package/dist/simulation/scorers/impact-scorer.js.map +1 -0
- package/dist/simulation/scorers/index.d.ts +12 -0
- package/dist/simulation/scorers/index.d.ts.map +1 -0
- package/dist/simulation/scorers/index.js +12 -0
- package/dist/simulation/scorers/index.js.map +1 -0
- package/dist/simulation/scorers/pattern-alignment-scorer.d.ts +83 -0
- package/dist/simulation/scorers/pattern-alignment-scorer.d.ts.map +1 -0
- package/dist/simulation/scorers/pattern-alignment-scorer.js +367 -0
- package/dist/simulation/scorers/pattern-alignment-scorer.js.map +1 -0
- package/dist/simulation/scorers/security-scorer.d.ts +63 -0
- package/dist/simulation/scorers/security-scorer.d.ts.map +1 -0
- package/dist/simulation/scorers/security-scorer.js +346 -0
- package/dist/simulation/scorers/security-scorer.js.map +1 -0
- package/dist/simulation/simulation-engine.d.ts +89 -0
- package/dist/simulation/simulation-engine.d.ts.map +1 -0
- package/dist/simulation/simulation-engine.js +480 -0
- package/dist/simulation/simulation-engine.js.map +1 -0
- package/dist/simulation/types.d.ts +200 -0
- package/dist/simulation/types.d.ts.map +1 -0
- package/dist/simulation/types.js +23 -0
- package/dist/simulation/types.js.map +1 -0
- package/dist/speculative/approach-generator.d.ts +2 -0
- package/dist/speculative/approach-generator.d.ts.map +1 -0
- package/dist/speculative/approach-generator.js +2 -0
- package/dist/speculative/approach-generator.js.map +1 -0
- package/dist/speculative/templates/types.d.ts +133 -0
- package/dist/speculative/templates/types.d.ts.map +1 -0
- package/dist/speculative/templates/types.js +208 -0
- package/dist/speculative/templates/types.js.map +1 -0
- package/dist/speculative/types.d.ts +523 -0
- package/dist/speculative/types.d.ts.map +1 -0
- package/dist/speculative/types.js +71 -0
- package/dist/speculative/types.js.map +1 -0
- package/dist/test-topology/extractors/base-test-extractor.d.ts +1 -1
- package/dist/test-topology/extractors/base-test-extractor.d.ts.map +1 -1
- package/dist/test-topology/extractors/base-test-extractor.js.map +1 -1
- package/dist/test-topology/extractors/go-test-extractor.d.ts +33 -0
- package/dist/test-topology/extractors/go-test-extractor.d.ts.map +1 -0
- package/dist/test-topology/extractors/go-test-extractor.js +436 -0
- package/dist/test-topology/extractors/go-test-extractor.js.map +1 -0
- package/dist/test-topology/extractors/index.d.ts +1 -0
- package/dist/test-topology/extractors/index.d.ts.map +1 -1
- package/dist/test-topology/extractors/index.js +1 -0
- package/dist/test-topology/extractors/index.js.map +1 -1
- package/dist/test-topology/extractors/regex/go-test-regex.d.ts +62 -0
- package/dist/test-topology/extractors/regex/go-test-regex.d.ts.map +1 -0
- package/dist/test-topology/extractors/regex/go-test-regex.js +528 -0
- package/dist/test-topology/extractors/regex/go-test-regex.js.map +1 -0
- package/dist/test-topology/extractors/regex/index.d.ts +1 -0
- package/dist/test-topology/extractors/regex/index.d.ts.map +1 -1
- package/dist/test-topology/extractors/regex/index.js +4 -0
- package/dist/test-topology/extractors/regex/index.js.map +1 -1
- package/dist/test-topology/hybrid-test-topology-analyzer.d.ts.map +1 -1
- package/dist/test-topology/hybrid-test-topology-analyzer.js +1 -0
- package/dist/test-topology/hybrid-test-topology-analyzer.js.map +1 -1
- package/dist/test-topology/test-topology-analyzer.d.ts.map +1 -1
- package/dist/test-topology/test-topology-analyzer.js +1 -0
- package/dist/test-topology/test-topology-analyzer.js.map +1 -1
- package/dist/test-topology/types.d.ts +2 -2
- package/dist/test-topology/types.d.ts.map +1 -1
- package/dist/unified-provider/matching/database-sql-matcher.d.ts +42 -0
- package/dist/unified-provider/matching/database-sql-matcher.d.ts.map +1 -0
- package/dist/unified-provider/matching/database-sql-matcher.js +282 -0
- package/dist/unified-provider/matching/database-sql-matcher.js.map +1 -0
- package/dist/unified-provider/matching/gorm-matcher.d.ts +41 -0
- package/dist/unified-provider/matching/gorm-matcher.d.ts.map +1 -0
- package/dist/unified-provider/matching/gorm-matcher.js +222 -0
- package/dist/unified-provider/matching/gorm-matcher.js.map +1 -0
- package/dist/unified-provider/matching/index.d.ts +3 -0
- package/dist/unified-provider/matching/index.d.ts.map +1 -1
- package/dist/unified-provider/matching/index.js +4 -0
- package/dist/unified-provider/matching/index.js.map +1 -1
- package/dist/unified-provider/matching/matcher-registry.d.ts.map +1 -1
- package/dist/unified-provider/matching/matcher-registry.js +7 -0
- package/dist/unified-provider/matching/matcher-registry.js.map +1 -1
- package/dist/unified-provider/matching/sqlx-matcher.d.ts +40 -0
- package/dist/unified-provider/matching/sqlx-matcher.d.ts.map +1 -0
- package/dist/unified-provider/matching/sqlx-matcher.js +214 -0
- package/dist/unified-provider/matching/sqlx-matcher.js.map +1 -0
- package/dist/unified-provider/normalization/go-normalizer.d.ts +62 -0
- package/dist/unified-provider/normalization/go-normalizer.d.ts.map +1 -0
- package/dist/unified-provider/normalization/go-normalizer.js +608 -0
- package/dist/unified-provider/normalization/go-normalizer.js.map +1 -0
- package/dist/unified-provider/normalization/index.d.ts +1 -0
- package/dist/unified-provider/normalization/index.d.ts.map +1 -1
- package/dist/unified-provider/normalization/index.js +6 -1
- package/dist/unified-provider/normalization/index.js.map +1 -1
- package/dist/unified-provider/types.d.ts +1 -1
- package/dist/unified-provider/types.d.ts.map +1 -1
- package/dist/wpf/extractors/binding-error-detector.d.ts +75 -0
- package/dist/wpf/extractors/binding-error-detector.d.ts.map +1 -0
- package/dist/wpf/extractors/binding-error-detector.js +290 -0
- package/dist/wpf/extractors/binding-error-detector.js.map +1 -0
- package/dist/wpf/extractors/code-behind-linker.d.ts +70 -0
- package/dist/wpf/extractors/code-behind-linker.d.ts.map +1 -0
- package/dist/wpf/extractors/code-behind-linker.js +172 -0
- package/dist/wpf/extractors/code-behind-linker.js.map +1 -0
- package/dist/wpf/extractors/dependency-property-extractor.d.ts +61 -0
- package/dist/wpf/extractors/dependency-property-extractor.d.ts.map +1 -0
- package/dist/wpf/extractors/dependency-property-extractor.js +201 -0
- package/dist/wpf/extractors/dependency-property-extractor.js.map +1 -0
- package/dist/wpf/extractors/regex/viewmodel-regex.d.ts +82 -0
- package/dist/wpf/extractors/regex/viewmodel-regex.d.ts.map +1 -0
- package/dist/wpf/extractors/regex/viewmodel-regex.js +412 -0
- package/dist/wpf/extractors/regex/viewmodel-regex.js.map +1 -0
- package/dist/wpf/extractors/regex/xaml-regex.d.ts +77 -0
- package/dist/wpf/extractors/regex/xaml-regex.d.ts.map +1 -0
- package/dist/wpf/extractors/regex/xaml-regex.js +353 -0
- package/dist/wpf/extractors/regex/xaml-regex.js.map +1 -0
- package/dist/wpf/extractors/resource-dictionary-parser.d.ts +103 -0
- package/dist/wpf/extractors/resource-dictionary-parser.d.ts.map +1 -0
- package/dist/wpf/extractors/resource-dictionary-parser.js +296 -0
- package/dist/wpf/extractors/resource-dictionary-parser.js.map +1 -0
- package/dist/wpf/extractors/value-converter-extractor.d.ts +128 -0
- package/dist/wpf/extractors/value-converter-extractor.d.ts.map +1 -0
- package/dist/wpf/extractors/value-converter-extractor.js +312 -0
- package/dist/wpf/extractors/value-converter-extractor.js.map +1 -0
- package/dist/wpf/extractors/viewmodel-hybrid-extractor.d.ts +104 -0
- package/dist/wpf/extractors/viewmodel-hybrid-extractor.d.ts.map +1 -0
- package/dist/wpf/extractors/viewmodel-hybrid-extractor.js +513 -0
- package/dist/wpf/extractors/viewmodel-hybrid-extractor.js.map +1 -0
- package/dist/wpf/extractors/xaml-hybrid-extractor.d.ts +98 -0
- package/dist/wpf/extractors/xaml-hybrid-extractor.d.ts.map +1 -0
- package/dist/wpf/extractors/xaml-hybrid-extractor.js +444 -0
- package/dist/wpf/extractors/xaml-hybrid-extractor.js.map +1 -0
- package/dist/wpf/index.d.ts +25 -0
- package/dist/wpf/index.d.ts.map +1 -0
- package/dist/wpf/index.js +31 -0
- package/dist/wpf/index.js.map +1 -0
- package/dist/wpf/integration/wpf-callgraph-adapter.d.ts +82 -0
- package/dist/wpf/integration/wpf-callgraph-adapter.d.ts.map +1 -0
- package/dist/wpf/integration/wpf-callgraph-adapter.js +311 -0
- package/dist/wpf/integration/wpf-callgraph-adapter.js.map +1 -0
- package/dist/wpf/integration/wpf-data-flow-tracer.d.ts +129 -0
- package/dist/wpf/integration/wpf-data-flow-tracer.d.ts.map +1 -0
- package/dist/wpf/integration/wpf-data-flow-tracer.js +367 -0
- package/dist/wpf/integration/wpf-data-flow-tracer.js.map +1 -0
- package/dist/wpf/linkers/datacontext-resolver.d.ts +66 -0
- package/dist/wpf/linkers/datacontext-resolver.d.ts.map +1 -0
- package/dist/wpf/linkers/datacontext-resolver.js +240 -0
- package/dist/wpf/linkers/datacontext-resolver.js.map +1 -0
- package/dist/wpf/linkers/viewmodel-linker.d.ts +71 -0
- package/dist/wpf/linkers/viewmodel-linker.d.ts.map +1 -0
- package/dist/wpf/linkers/viewmodel-linker.js +268 -0
- package/dist/wpf/linkers/viewmodel-linker.js.map +1 -0
- package/dist/wpf/types.d.ts +451 -0
- package/dist/wpf/types.d.ts.map +1 -0
- package/dist/wpf/types.js +8 -0
- package/dist/wpf/types.js.map +1 -0
- package/dist/wpf/wpf-analyzer.d.ts +114 -0
- package/dist/wpf/wpf-analyzer.d.ts.map +1 -0
- package/dist/wpf/wpf-analyzer.js +332 -0
- package/dist/wpf/wpf-analyzer.js.map +1 -0
- package/dist/wrappers/integration/adapter.d.ts.map +1 -1
- package/dist/wrappers/integration/adapter.js +1 -0
- package/dist/wrappers/integration/adapter.js.map +1 -1
- package/package.json +29 -18
- package/LICENSE +0 -21
|
@@ -0,0 +1,296 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Resource Dictionary Parser
|
|
3
|
+
*
|
|
4
|
+
* Parses merged resource dictionaries and resolves resource references.
|
|
5
|
+
* Extracts styles, templates, converters, and other resources.
|
|
6
|
+
*/
|
|
7
|
+
import * as fs from 'node:fs/promises';
|
|
8
|
+
import * as path from 'node:path';
|
|
9
|
+
// ============================================================================
|
|
10
|
+
// Regex Patterns
|
|
11
|
+
// ============================================================================
|
|
12
|
+
const RESOURCE_PATTERNS = {
|
|
13
|
+
// ResourceDictionary.MergedDictionaries
|
|
14
|
+
mergedDictionary: /<ResourceDictionary\s+Source\s*=\s*["']([^"']+)["']/g,
|
|
15
|
+
// Style with x:Key
|
|
16
|
+
style: /<Style\s+(?:[^>]*?)x:Key\s*=\s*["']([^"']+)["'](?:[^>]*?)(?:TargetType\s*=\s*["']\{?x:Type\s+)?([^}"'\s]+)?/g,
|
|
17
|
+
// DataTemplate with x:Key
|
|
18
|
+
dataTemplate: /<DataTemplate\s+(?:[^>]*?)x:Key\s*=\s*["']([^"']+)["'](?:[^>]*?)(?:DataType\s*=\s*["']\{?x:Type\s+)?([^}"'\s]+)?/g,
|
|
19
|
+
// ControlTemplate with x:Key
|
|
20
|
+
controlTemplate: /<ControlTemplate\s+(?:[^>]*?)x:Key\s*=\s*["']([^"']+)["'](?:[^>]*?)(?:TargetType\s*=\s*["']\{?x:Type\s+)?([^}"'\s]+)?/g,
|
|
21
|
+
// Value converter (local:SomeConverter x:Key="...")
|
|
22
|
+
converter: /<(\w+:)?(\w+Converter)\s+x:Key\s*=\s*["']([^"']+)["']/g,
|
|
23
|
+
// Alternative converter pattern (x:Key first)
|
|
24
|
+
converterAlt: /x:Key\s*=\s*["']([^"']+)["'][^>]*?(?:xmlns:\w+\s*=\s*["'][^"']*["'][^>]*)?\/>/g,
|
|
25
|
+
// Brush resources
|
|
26
|
+
brush: /<(SolidColorBrush|LinearGradientBrush|RadialGradientBrush)\s+(?:[^>]*?)x:Key\s*=\s*["']([^"']+)["']/g,
|
|
27
|
+
// Generic resource with x:Key
|
|
28
|
+
genericResource: /<(\w+(?::\w+)?)\s+(?:[^>]*?)x:Key\s*=\s*["']([^"']+)["']/g,
|
|
29
|
+
// Namespace declarations
|
|
30
|
+
namespace: /xmlns:(\w+)\s*=\s*["']clr-namespace:([^;"']+)(?:;assembly=([^"']+))?["']/g,
|
|
31
|
+
// Converter usage in binding
|
|
32
|
+
converterUsage: /Converter\s*=\s*\{StaticResource\s+([^}]+)\}/g,
|
|
33
|
+
};
|
|
34
|
+
// ============================================================================
|
|
35
|
+
// Resource Dictionary Parser
|
|
36
|
+
// ============================================================================
|
|
37
|
+
export class ResourceDictionaryParser {
|
|
38
|
+
dictionaries = new Map();
|
|
39
|
+
converters = new Map();
|
|
40
|
+
namespaces = new Map(); // prefix -> namespace
|
|
41
|
+
/**
|
|
42
|
+
* Parse a resource dictionary file
|
|
43
|
+
*/
|
|
44
|
+
async parse(filePath, content) {
|
|
45
|
+
const resources = new Map();
|
|
46
|
+
const mergedDictionaries = [];
|
|
47
|
+
// Extract namespace declarations
|
|
48
|
+
this.extractNamespaces(content);
|
|
49
|
+
// Extract merged dictionaries
|
|
50
|
+
let match;
|
|
51
|
+
while ((match = RESOURCE_PATTERNS.mergedDictionary.exec(content)) !== null) {
|
|
52
|
+
const source = match[1] ?? '';
|
|
53
|
+
mergedDictionaries.push(source);
|
|
54
|
+
}
|
|
55
|
+
// Extract styles
|
|
56
|
+
RESOURCE_PATTERNS.style.lastIndex = 0;
|
|
57
|
+
while ((match = RESOURCE_PATTERNS.style.exec(content)) !== null) {
|
|
58
|
+
const key = match[1] ?? '';
|
|
59
|
+
const targetType = match[2];
|
|
60
|
+
resources.set(key, {
|
|
61
|
+
key,
|
|
62
|
+
type: 'Style',
|
|
63
|
+
targetType,
|
|
64
|
+
location: { file: filePath, line: this.getLineNumber(content, match.index) },
|
|
65
|
+
});
|
|
66
|
+
}
|
|
67
|
+
// Extract data templates
|
|
68
|
+
RESOURCE_PATTERNS.dataTemplate.lastIndex = 0;
|
|
69
|
+
while ((match = RESOURCE_PATTERNS.dataTemplate.exec(content)) !== null) {
|
|
70
|
+
const key = match[1] ?? '';
|
|
71
|
+
const targetType = match[2];
|
|
72
|
+
resources.set(key, {
|
|
73
|
+
key,
|
|
74
|
+
type: 'DataTemplate',
|
|
75
|
+
targetType,
|
|
76
|
+
location: { file: filePath, line: this.getLineNumber(content, match.index) },
|
|
77
|
+
});
|
|
78
|
+
}
|
|
79
|
+
// Extract control templates
|
|
80
|
+
RESOURCE_PATTERNS.controlTemplate.lastIndex = 0;
|
|
81
|
+
while ((match = RESOURCE_PATTERNS.controlTemplate.exec(content)) !== null) {
|
|
82
|
+
const key = match[1] ?? '';
|
|
83
|
+
const targetType = match[2];
|
|
84
|
+
resources.set(key, {
|
|
85
|
+
key,
|
|
86
|
+
type: 'ControlTemplate',
|
|
87
|
+
targetType,
|
|
88
|
+
location: { file: filePath, line: this.getLineNumber(content, match.index) },
|
|
89
|
+
});
|
|
90
|
+
}
|
|
91
|
+
// Extract converters
|
|
92
|
+
RESOURCE_PATTERNS.converter.lastIndex = 0;
|
|
93
|
+
while ((match = RESOURCE_PATTERNS.converter.exec(content)) !== null) {
|
|
94
|
+
const prefix = match[1]?.replace(':', '') ?? '';
|
|
95
|
+
const converterClass = match[2] ?? '';
|
|
96
|
+
const key = match[3] ?? '';
|
|
97
|
+
const namespace = this.namespaces.get(prefix) ?? '';
|
|
98
|
+
resources.set(key, {
|
|
99
|
+
key,
|
|
100
|
+
type: 'Converter',
|
|
101
|
+
converterType: converterClass,
|
|
102
|
+
location: { file: filePath, line: this.getLineNumber(content, match.index) },
|
|
103
|
+
});
|
|
104
|
+
// Track converter info
|
|
105
|
+
this.converters.set(key, {
|
|
106
|
+
resourceKey: key,
|
|
107
|
+
converterClass,
|
|
108
|
+
fullTypeName: namespace ? `${namespace}.${converterClass}` : converterClass,
|
|
109
|
+
definedIn: filePath,
|
|
110
|
+
usages: [],
|
|
111
|
+
location: { file: filePath, line: this.getLineNumber(content, match.index) },
|
|
112
|
+
});
|
|
113
|
+
}
|
|
114
|
+
// Extract brushes
|
|
115
|
+
RESOURCE_PATTERNS.brush.lastIndex = 0;
|
|
116
|
+
while ((match = RESOURCE_PATTERNS.brush.exec(content)) !== null) {
|
|
117
|
+
const key = match[2] ?? '';
|
|
118
|
+
resources.set(key, {
|
|
119
|
+
key,
|
|
120
|
+
type: 'Brush',
|
|
121
|
+
location: { file: filePath, line: this.getLineNumber(content, match.index) },
|
|
122
|
+
});
|
|
123
|
+
}
|
|
124
|
+
const dictionary = {
|
|
125
|
+
path: filePath,
|
|
126
|
+
mergedDictionaries,
|
|
127
|
+
resources,
|
|
128
|
+
};
|
|
129
|
+
this.dictionaries.set(filePath, dictionary);
|
|
130
|
+
return dictionary;
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* Parse all resource dictionaries in a directory
|
|
134
|
+
*/
|
|
135
|
+
async parseAll(rootDir) {
|
|
136
|
+
const xamlFiles = await this.findResourceDictionaries(rootDir);
|
|
137
|
+
for (const filePath of xamlFiles) {
|
|
138
|
+
const fullPath = path.join(rootDir, filePath);
|
|
139
|
+
try {
|
|
140
|
+
const content = await fs.readFile(fullPath, 'utf-8');
|
|
141
|
+
await this.parse(filePath, content);
|
|
142
|
+
}
|
|
143
|
+
catch {
|
|
144
|
+
// Skip files that can't be read
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
return this.dictionaries;
|
|
148
|
+
}
|
|
149
|
+
/**
|
|
150
|
+
* Find resource dictionary files
|
|
151
|
+
*/
|
|
152
|
+
async findResourceDictionaries(rootDir) {
|
|
153
|
+
const results = [];
|
|
154
|
+
const walk = async (dir, relativePath = '') => {
|
|
155
|
+
let entries;
|
|
156
|
+
try {
|
|
157
|
+
entries = await fs.readdir(dir, { withFileTypes: true });
|
|
158
|
+
}
|
|
159
|
+
catch {
|
|
160
|
+
return;
|
|
161
|
+
}
|
|
162
|
+
for (const entry of entries) {
|
|
163
|
+
const fullPath = path.join(dir, entry.name);
|
|
164
|
+
const relPath = relativePath ? `${relativePath}/${entry.name}` : entry.name;
|
|
165
|
+
if (entry.isDirectory()) {
|
|
166
|
+
if (!['node_modules', 'bin', 'obj', '.git'].includes(entry.name)) {
|
|
167
|
+
await walk(fullPath, relPath);
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
else if (entry.isFile() && entry.name.endsWith('.xaml')) {
|
|
171
|
+
// Check if it's a resource dictionary
|
|
172
|
+
const content = await fs.readFile(fullPath, 'utf-8');
|
|
173
|
+
if (content.includes('<ResourceDictionary') ||
|
|
174
|
+
content.includes('Resources>') ||
|
|
175
|
+
entry.name.includes('Dictionary') ||
|
|
176
|
+
entry.name.includes('Resources') ||
|
|
177
|
+
entry.name.includes('Styles')) {
|
|
178
|
+
results.push(relPath);
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
};
|
|
183
|
+
await walk(rootDir);
|
|
184
|
+
return results;
|
|
185
|
+
}
|
|
186
|
+
/**
|
|
187
|
+
* Extract namespace declarations
|
|
188
|
+
*/
|
|
189
|
+
extractNamespaces(content) {
|
|
190
|
+
let match;
|
|
191
|
+
RESOURCE_PATTERNS.namespace.lastIndex = 0;
|
|
192
|
+
while ((match = RESOURCE_PATTERNS.namespace.exec(content)) !== null) {
|
|
193
|
+
const prefix = match[1] ?? '';
|
|
194
|
+
const namespace = match[2] ?? '';
|
|
195
|
+
this.namespaces.set(prefix, namespace);
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* Resolve a resource by key
|
|
200
|
+
*/
|
|
201
|
+
resolve(key, startingDictionary) {
|
|
202
|
+
const searchPath = [];
|
|
203
|
+
// Search in specific dictionary first
|
|
204
|
+
if (startingDictionary) {
|
|
205
|
+
const dict = this.dictionaries.get(startingDictionary);
|
|
206
|
+
if (dict) {
|
|
207
|
+
searchPath.push(startingDictionary);
|
|
208
|
+
const resource = dict.resources.get(key);
|
|
209
|
+
if (resource) {
|
|
210
|
+
return { key, resource, searchPath, foundIn: startingDictionary };
|
|
211
|
+
}
|
|
212
|
+
// Search merged dictionaries
|
|
213
|
+
for (const merged of dict.mergedDictionaries) {
|
|
214
|
+
const result = this.resolve(key, merged);
|
|
215
|
+
searchPath.push(...result.searchPath);
|
|
216
|
+
if (result.resource) {
|
|
217
|
+
return { key, resource: result.resource, searchPath, foundIn: result.foundIn };
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
// Search all dictionaries
|
|
223
|
+
for (const [dictPath, dict] of this.dictionaries) {
|
|
224
|
+
if (!searchPath.includes(dictPath)) {
|
|
225
|
+
searchPath.push(dictPath);
|
|
226
|
+
const resource = dict.resources.get(key);
|
|
227
|
+
if (resource) {
|
|
228
|
+
return { key, resource, searchPath, foundIn: dictPath };
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
return { key, resource: null, searchPath };
|
|
233
|
+
}
|
|
234
|
+
/**
|
|
235
|
+
* Get all converters
|
|
236
|
+
*/
|
|
237
|
+
getConverters() {
|
|
238
|
+
return Array.from(this.converters.values());
|
|
239
|
+
}
|
|
240
|
+
/**
|
|
241
|
+
* Track converter usage
|
|
242
|
+
*/
|
|
243
|
+
trackConverterUsage(converterKey, xamlFile, property, line) {
|
|
244
|
+
const converter = this.converters.get(converterKey);
|
|
245
|
+
if (converter) {
|
|
246
|
+
converter.usages.push({ xamlFile, property, line });
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
/**
|
|
250
|
+
* Find converter usages in XAML content
|
|
251
|
+
*/
|
|
252
|
+
findConverterUsages(xamlFile, content) {
|
|
253
|
+
let match;
|
|
254
|
+
RESOURCE_PATTERNS.converterUsage.lastIndex = 0;
|
|
255
|
+
while ((match = RESOURCE_PATTERNS.converterUsage.exec(content)) !== null) {
|
|
256
|
+
const converterKey = match[1]?.trim() ?? '';
|
|
257
|
+
const line = this.getLineNumber(content, match.index);
|
|
258
|
+
this.trackConverterUsage(converterKey, xamlFile, 'Converter', line);
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
/**
|
|
262
|
+
* Get all resources of a specific type
|
|
263
|
+
*/
|
|
264
|
+
getResourcesByType(type) {
|
|
265
|
+
const results = [];
|
|
266
|
+
for (const dict of this.dictionaries.values()) {
|
|
267
|
+
for (const resource of dict.resources.values()) {
|
|
268
|
+
if (resource.type === type) {
|
|
269
|
+
results.push(resource);
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
return results;
|
|
274
|
+
}
|
|
275
|
+
/**
|
|
276
|
+
* Clear all parsed data
|
|
277
|
+
*/
|
|
278
|
+
clear() {
|
|
279
|
+
this.dictionaries.clear();
|
|
280
|
+
this.converters.clear();
|
|
281
|
+
this.namespaces.clear();
|
|
282
|
+
}
|
|
283
|
+
/**
|
|
284
|
+
* Get line number from character index
|
|
285
|
+
*/
|
|
286
|
+
getLineNumber(content, index) {
|
|
287
|
+
return content.slice(0, index).split('\n').length;
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
/**
|
|
291
|
+
* Factory function
|
|
292
|
+
*/
|
|
293
|
+
export function createResourceDictionaryParser() {
|
|
294
|
+
return new ResourceDictionaryParser();
|
|
295
|
+
}
|
|
296
|
+
//# sourceMappingURL=resource-dictionary-parser.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resource-dictionary-parser.js","sourceRoot":"","sources":["../../../src/wpf/extractors/resource-dictionary-parser.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Value Converter Extractor
|
|
3
|
+
*
|
|
4
|
+
* Extracts IValueConverter and IMultiValueConverter implementations from C# code.
|
|
5
|
+
* Tracks converter usage across XAML files.
|
|
6
|
+
*/
|
|
7
|
+
import type { SourceLocation } from '../types.js';
|
|
8
|
+
export interface ValueConverterInfo {
|
|
9
|
+
/** Class name */
|
|
10
|
+
className: string;
|
|
11
|
+
/** Full qualified name */
|
|
12
|
+
qualifiedName: string;
|
|
13
|
+
/** File path */
|
|
14
|
+
filePath: string;
|
|
15
|
+
/** Converter type */
|
|
16
|
+
converterType: 'IValueConverter' | 'IMultiValueConverter';
|
|
17
|
+
/** Resource keys (from XAML) */
|
|
18
|
+
resourceKeys: string[];
|
|
19
|
+
/** Convert method info */
|
|
20
|
+
convertMethod: ConverterMethodInfo | null;
|
|
21
|
+
/** ConvertBack method info */
|
|
22
|
+
convertBackMethod: ConverterMethodInfo | null;
|
|
23
|
+
/** Usages in XAML */
|
|
24
|
+
usages: ConverterUsage[];
|
|
25
|
+
/** Source location */
|
|
26
|
+
location: SourceLocation;
|
|
27
|
+
}
|
|
28
|
+
export interface ConverterMethodInfo {
|
|
29
|
+
/** Has implementation (not just throw) */
|
|
30
|
+
hasImplementation: boolean;
|
|
31
|
+
/** Return type */
|
|
32
|
+
returnType: string;
|
|
33
|
+
/** Parameter types */
|
|
34
|
+
parameterTypes: string[];
|
|
35
|
+
/** Line number */
|
|
36
|
+
line: number;
|
|
37
|
+
}
|
|
38
|
+
export interface ConverterUsage {
|
|
39
|
+
/** XAML file */
|
|
40
|
+
xamlFile: string;
|
|
41
|
+
/** Element type */
|
|
42
|
+
elementType: string;
|
|
43
|
+
/** Binding property */
|
|
44
|
+
property: string;
|
|
45
|
+
/** Resource key used */
|
|
46
|
+
resourceKey: string;
|
|
47
|
+
/** Line number */
|
|
48
|
+
line: number;
|
|
49
|
+
}
|
|
50
|
+
export interface ValueConverterExtractionResult {
|
|
51
|
+
/** Extracted converters */
|
|
52
|
+
converters: ValueConverterInfo[];
|
|
53
|
+
/** Total usages found */
|
|
54
|
+
totalUsages: number;
|
|
55
|
+
/** Extraction confidence */
|
|
56
|
+
confidence: number;
|
|
57
|
+
}
|
|
58
|
+
export declare const VALUE_CONVERTER_PATTERNS: {
|
|
59
|
+
valueConverter: RegExp;
|
|
60
|
+
multiValueConverter: RegExp;
|
|
61
|
+
namespace: RegExp;
|
|
62
|
+
convertMethod: RegExp;
|
|
63
|
+
convertBackMethod: RegExp;
|
|
64
|
+
multiConvertMethod: RegExp;
|
|
65
|
+
multiConvertBackMethod: RegExp;
|
|
66
|
+
throwNotImplemented: RegExp;
|
|
67
|
+
throwNotSupported: RegExp;
|
|
68
|
+
xamlConverterUsage: RegExp;
|
|
69
|
+
xamlConverterResource: RegExp;
|
|
70
|
+
markupExtensionConverter: RegExp;
|
|
71
|
+
};
|
|
72
|
+
export declare class ValueConverterExtractor {
|
|
73
|
+
private converters;
|
|
74
|
+
private resourceKeyToClass;
|
|
75
|
+
/**
|
|
76
|
+
* Extract converters from C# content
|
|
77
|
+
*/
|
|
78
|
+
extractFromCSharp(filePath: string, content: string): ValueConverterInfo[];
|
|
79
|
+
/**
|
|
80
|
+
* Extract converter resource definitions from XAML
|
|
81
|
+
*/
|
|
82
|
+
extractFromXaml(_filePath: string, content: string): void;
|
|
83
|
+
/**
|
|
84
|
+
* Find converter usages in XAML
|
|
85
|
+
*/
|
|
86
|
+
findUsages(xamlFile: string, content: string): ConverterUsage[];
|
|
87
|
+
/**
|
|
88
|
+
* Extract Convert method info
|
|
89
|
+
*/
|
|
90
|
+
private extractConvertMethod;
|
|
91
|
+
/**
|
|
92
|
+
* Extract ConvertBack method info
|
|
93
|
+
*/
|
|
94
|
+
private extractConvertBackMethod;
|
|
95
|
+
/**
|
|
96
|
+
* Find element context for a match
|
|
97
|
+
*/
|
|
98
|
+
private findElementContext;
|
|
99
|
+
/**
|
|
100
|
+
* Get all converters
|
|
101
|
+
*/
|
|
102
|
+
getConverters(): ValueConverterInfo[];
|
|
103
|
+
/**
|
|
104
|
+
* Get converter by class name or resource key
|
|
105
|
+
*/
|
|
106
|
+
getConverter(nameOrKey: string): ValueConverterInfo | null;
|
|
107
|
+
/**
|
|
108
|
+
* Analyze all converters in a project
|
|
109
|
+
*/
|
|
110
|
+
analyzeProject(rootDir: string): Promise<ValueConverterExtractionResult>;
|
|
111
|
+
/**
|
|
112
|
+
* Find files matching pattern
|
|
113
|
+
*/
|
|
114
|
+
private findFiles;
|
|
115
|
+
/**
|
|
116
|
+
* Clear all data
|
|
117
|
+
*/
|
|
118
|
+
clear(): void;
|
|
119
|
+
/**
|
|
120
|
+
* Get line number from character index
|
|
121
|
+
*/
|
|
122
|
+
private getLineNumber;
|
|
123
|
+
}
|
|
124
|
+
/**
|
|
125
|
+
* Factory function
|
|
126
|
+
*/
|
|
127
|
+
export declare function createValueConverterExtractor(): ValueConverterExtractor;
|
|
128
|
+
//# sourceMappingURL=value-converter-extractor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"value-converter-extractor.d.ts","sourceRoot":"","sources":["../../../src/wpf/extractors/value-converter-extractor.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAIH,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAMlD,MAAM,WAAW,kBAAkB;IACjC,iBAAiB;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,0BAA0B;IAC1B,aAAa,EAAE,MAAM,CAAC;IACtB,gBAAgB;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,qBAAqB;IACrB,aAAa,EAAE,iBAAiB,GAAG,sBAAsB,CAAC;IAC1D,gCAAgC;IAChC,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,0BAA0B;IAC1B,aAAa,EAAE,mBAAmB,GAAG,IAAI,CAAC;IAC1C,8BAA8B;IAC9B,iBAAiB,EAAE,mBAAmB,GAAG,IAAI,CAAC;IAC9C,qBAAqB;IACrB,MAAM,EAAE,cAAc,EAAE,CAAC;IACzB,sBAAsB;IACtB,QAAQ,EAAE,cAAc,CAAC;CAC1B;AAED,MAAM,WAAW,mBAAmB;IAClC,0CAA0C;IAC1C,iBAAiB,EAAE,OAAO,CAAC;IAC3B,kBAAkB;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,sBAAsB;IACtB,cAAc,EAAE,MAAM,EAAE,CAAC;IACzB,kBAAkB;IAClB,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,cAAc;IAC7B,gBAAgB;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,mBAAmB;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,uBAAuB;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,wBAAwB;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,kBAAkB;IAClB,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,8BAA8B;IAC7C,2BAA2B;IAC3B,UAAU,EAAE,kBAAkB,EAAE,CAAC;IACjC,yBAAyB;IACzB,WAAW,EAAE,MAAM,CAAC;IACpB,4BAA4B;IAC5B,UAAU,EAAE,MAAM,CAAC;CACpB;AAMD,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;CAoCpC,CAAC;AAMF,qBAAa,uBAAuB;IAClC,OAAO,CAAC,UAAU,CAA8C;IAChE,OAAO,CAAC,kBAAkB,CAAkC;IAE5D;;OAEG;IACH,iBAAiB,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,kBAAkB,EAAE;IAyD1E;;OAEG;IACH,eAAe,CAAC,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI;IAiBzD;;OAEG;IACH,UAAU,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,cAAc,EAAE;IAmC/D;;OAEG;IACH,OAAO,CAAC,oBAAoB;IAyB5B;;OAEG;IACH,OAAO,CAAC,wBAAwB;IAyBhC;;OAEG;IACH,OAAO,CAAC,kBAAkB;IAO1B;;OAEG;IACH,aAAa,IAAI,kBAAkB,EAAE;IAIrC;;OAEG;IACH,YAAY,CAAC,SAAS,EAAE,MAAM,GAAG,kBAAkB,GAAG,IAAI;IAe1D;;OAEG;IACG,cAAc,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,8BAA8B,CAAC;IAsC9E;;OAEG;YACW,SAAS;IA8BvB;;OAEG;IACH,KAAK,IAAI,IAAI;IAKb;;OAEG;IACH,OAAO,CAAC,aAAa;CAGtB;AAED;;GAEG;AACH,wBAAgB,6BAA6B,IAAI,uBAAuB,CAEvE"}
|