@atlaskit/ads-mcp 0.20.4 → 0.21.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.
Files changed (80) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/a11y-fixes/package.json +14 -0
  3. package/a11y-guidelines/package.json +14 -0
  4. package/dist/cjs/entry-points/a11y-fixes.js +12 -0
  5. package/dist/cjs/entry-points/a11y-guidelines.js +12 -0
  6. package/dist/cjs/entry-points/i18n-conversion-guide.js +12 -0
  7. package/dist/cjs/entry-points/migration-registry.js +12 -0
  8. package/dist/cjs/helpers/analytics.js +1 -0
  9. package/dist/cjs/index.js +23 -23
  10. package/dist/cjs/tools/analyze-a11y/analyze-a11y-tool.js +10 -10
  11. package/dist/cjs/tools/analyze-a11y/analyze-localhost-a11y-tool.js +28 -28
  12. package/dist/cjs/tools/get-a11y-guidelines/get-a11y-guidelines-tool.js +4 -4
  13. package/dist/cjs/tools/get-all-components/components.codegen.js +3 -3
  14. package/dist/cjs/tools/get-all-components/get-all-components-tool.js +1 -1
  15. package/dist/cjs/tools/get-all-icons/get-all-icons-tool.js +1 -1
  16. package/dist/cjs/tools/get-all-tokens/get-all-tokens-tool.js +1 -1
  17. package/dist/cjs/tools/get-atlaskit-components/atlaskit-components.codegen.js +633 -629
  18. package/dist/cjs/tools/get-atlaskit-components/get-atlaskit-components-tool.js +2 -2
  19. package/dist/cjs/tools/get-guidelines/get-guidelines-tool.js +4 -4
  20. package/dist/cjs/tools/get-lint-rules/get-lint-rules-tool.js +6 -6
  21. package/dist/cjs/tools/i18n-conversion/i18n-conversion-tool.js +1 -1
  22. package/dist/cjs/tools/migration-guides/migration-guides-tool.js +4 -4
  23. package/dist/cjs/tools/plan/plan-tool.js +6 -6
  24. package/dist/cjs/tools/search-atlaskit-components/search-atlaskit-components-tool.js +6 -6
  25. package/dist/cjs/tools/search-components/search-components-tool.js +6 -6
  26. package/dist/cjs/tools/search-icons/search-icons-tool.js +6 -6
  27. package/dist/cjs/tools/search-tokens/search-tokens-tool.js +6 -6
  28. package/dist/cjs/tools/suggest-a11y-fixes/suggest-a11y-fixes-tool.js +4 -4
  29. package/dist/es2019/entry-points/a11y-fixes.js +1 -0
  30. package/dist/es2019/entry-points/a11y-guidelines.js +1 -0
  31. package/dist/es2019/entry-points/i18n-conversion-guide.js +1 -0
  32. package/dist/es2019/entry-points/migration-registry.js +1 -0
  33. package/dist/es2019/helpers/analytics.js +1 -0
  34. package/dist/es2019/tools/get-all-components/components.codegen.js +3 -3
  35. package/dist/es2019/tools/get-atlaskit-components/atlaskit-components.codegen.js +633 -629
  36. package/dist/esm/entry-points/a11y-fixes.js +1 -0
  37. package/dist/esm/entry-points/a11y-guidelines.js +1 -0
  38. package/dist/esm/entry-points/i18n-conversion-guide.js +1 -0
  39. package/dist/esm/entry-points/migration-registry.js +1 -0
  40. package/dist/esm/helpers/analytics.js +1 -0
  41. package/dist/esm/index.js +23 -23
  42. package/dist/esm/tools/analyze-a11y/analyze-a11y-tool.js +10 -10
  43. package/dist/esm/tools/analyze-a11y/analyze-localhost-a11y-tool.js +28 -28
  44. package/dist/esm/tools/get-a11y-guidelines/get-a11y-guidelines-tool.js +4 -4
  45. package/dist/esm/tools/get-all-components/components.codegen.js +3 -3
  46. package/dist/esm/tools/get-all-components/get-all-components-tool.js +1 -1
  47. package/dist/esm/tools/get-all-icons/get-all-icons-tool.js +1 -1
  48. package/dist/esm/tools/get-all-tokens/get-all-tokens-tool.js +1 -1
  49. package/dist/esm/tools/get-atlaskit-components/atlaskit-components.codegen.js +633 -629
  50. package/dist/esm/tools/get-atlaskit-components/get-atlaskit-components-tool.js +2 -2
  51. package/dist/esm/tools/get-guidelines/get-guidelines-tool.js +4 -4
  52. package/dist/esm/tools/get-lint-rules/get-lint-rules-tool.js +6 -6
  53. package/dist/esm/tools/i18n-conversion/i18n-conversion-tool.js +1 -1
  54. package/dist/esm/tools/migration-guides/migration-guides-tool.js +4 -4
  55. package/dist/esm/tools/plan/plan-tool.js +6 -6
  56. package/dist/esm/tools/search-atlaskit-components/search-atlaskit-components-tool.js +6 -6
  57. package/dist/esm/tools/search-components/search-components-tool.js +6 -6
  58. package/dist/esm/tools/search-icons/search-icons-tool.js +6 -6
  59. package/dist/esm/tools/search-tokens/search-tokens-tool.js +6 -6
  60. package/dist/esm/tools/suggest-a11y-fixes/suggest-a11y-fixes-tool.js +4 -4
  61. package/dist/types/entry-points/a11y-fixes.d.ts +1 -0
  62. package/dist/types/entry-points/a11y-guidelines.d.ts +1 -0
  63. package/dist/types/entry-points/i18n-conversion-guide.d.ts +1 -0
  64. package/dist/types/entry-points/migration-registry.d.ts +1 -0
  65. package/dist/types/tools/get-all-components/components.codegen.d.ts +2 -2
  66. package/dist/types/tools/get-atlaskit-components/atlaskit-components.codegen.d.ts +2 -2
  67. package/dist/types-ts4.5/entry-points/a11y-fixes.d.ts +1 -0
  68. package/dist/types-ts4.5/entry-points/a11y-guidelines.d.ts +1 -0
  69. package/dist/types-ts4.5/entry-points/i18n-conversion-guide.d.ts +1 -0
  70. package/dist/types-ts4.5/entry-points/migration-registry.d.ts +1 -0
  71. package/dist/types-ts4.5/tools/get-all-components/components.codegen.d.ts +2 -2
  72. package/dist/types-ts4.5/tools/get-atlaskit-components/atlaskit-components.codegen.d.ts +2 -2
  73. package/i18n-conversion-guide/package.json +14 -0
  74. package/migration-registry/package.json +14 -0
  75. package/package.json +4 -4
  76. package/dist/cjs/tools/migration-guides/registry.js +0 -38
  77. package/dist/es2019/tools/migration-guides/registry.js +0 -25
  78. package/dist/esm/tools/migration-guides/registry.js +0 -27
  79. package/dist/types/tools/migration-guides/registry.d.ts +0 -18
  80. package/dist/types-ts4.5/tools/migration-guides/registry.d.ts +0 -18
@@ -1,18 +0,0 @@
1
- /**
2
- * Migration registry - central place to register all available migrations
3
- *
4
- * To add a new migration:
5
- * 1. Create a new file in ./migrations/ with your MigrationGuide(s)
6
- * 2. Import and add to the registry below
7
- * 3. The tool will automatically include it in the available options
8
- */
9
- /**
10
- * Get all available migration IDs for use in the tool schema
11
- */
12
- export declare const getAvailableMigrationIds: () => string[];
13
- /**
14
- * Get a formatted list of available migrations with descriptions
15
- * Useful for tool descriptions and help text
16
- */
17
- export declare const getAvailableMigrationsDescription: () => string[];
18
- export { migrationRegistry } from './migration-registry';
@@ -1,18 +0,0 @@
1
- /**
2
- * Migration registry - central place to register all available migrations
3
- *
4
- * To add a new migration:
5
- * 1. Create a new file in ./migrations/ with your MigrationGuide(s)
6
- * 2. Import and add to the registry below
7
- * 3. The tool will automatically include it in the available options
8
- */
9
- /**
10
- * Get all available migration IDs for use in the tool schema
11
- */
12
- export declare const getAvailableMigrationIds: () => string[];
13
- /**
14
- * Get a formatted list of available migrations with descriptions
15
- * Useful for tool descriptions and help text
16
- */
17
- export declare const getAvailableMigrationsDescription: () => string[];
18
- export { migrationRegistry } from './migration-registry';