@atlaskit/ads-mcp 1.4.0 → 1.5.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 (26) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/compass.yml +2 -2
  3. package/dist/cjs/tools/get-all-components/components.codegen.js +3 -3
  4. package/dist/cjs/tools/get-atlaskit-components/atlaskit-components.codegen.js +3 -3
  5. package/dist/cjs/tools/get-atlaskit-hooks/atlaskit-hooks.codegen.js +2 -2
  6. package/dist/cjs/tools/get-atlaskit-utilities/atlaskit-utilities.codegen.js +2 -2
  7. package/dist/cjs/tools/search-atlaskit-components/search-atlaskit-components-tool.js +2 -1
  8. package/dist/cjs/tools/search-components/search-components-tool.js +2 -1
  9. package/dist/es2019/tools/get-all-components/components.codegen.js +3 -3
  10. package/dist/es2019/tools/get-atlaskit-components/atlaskit-components.codegen.js +3 -3
  11. package/dist/es2019/tools/get-atlaskit-hooks/atlaskit-hooks.codegen.js +2 -2
  12. package/dist/es2019/tools/get-atlaskit-utilities/atlaskit-utilities.codegen.js +2 -2
  13. package/dist/es2019/tools/search-atlaskit-components/search-atlaskit-components-tool.js +2 -1
  14. package/dist/es2019/tools/search-components/search-components-tool.js +2 -1
  15. package/dist/esm/tools/get-all-components/components.codegen.js +3 -3
  16. package/dist/esm/tools/get-atlaskit-components/atlaskit-components.codegen.js +3 -3
  17. package/dist/esm/tools/get-atlaskit-hooks/atlaskit-hooks.codegen.js +2 -2
  18. package/dist/esm/tools/get-atlaskit-utilities/atlaskit-utilities.codegen.js +2 -2
  19. package/dist/esm/tools/search-atlaskit-components/search-atlaskit-components-tool.js +2 -1
  20. package/dist/esm/tools/search-components/search-components-tool.js +2 -1
  21. package/dist/types/tools/get-all-components/components.codegen.d.ts +2 -2
  22. package/dist/types/tools/get-all-components/types.d.ts +3 -0
  23. package/dist/types/tools/get-atlaskit-components/atlaskit-components.codegen.d.ts +2 -2
  24. package/dist/types/tools/get-atlaskit-hooks/atlaskit-hooks.codegen.d.ts +2 -2
  25. package/dist/types/tools/get-atlaskit-utilities/atlaskit-utilities.codegen.d.ts +2 -2
  26. package/package.json +4 -4
@@ -3,8 +3,8 @@
3
3
  *
4
4
  * Structured content hooks from design-system *.docs.tsx files
5
5
  *
6
- * @codegen <<SignedSource::fef352249d4955ee39f3c228cea0cbee>>
7
- * @codegenCommand yarn workspace @af/ads-ai-tooling codegen:atlaskit-hooks
6
+ * @codegen <<SignedSource::6dabb671a6717bc397909b3b1ab56c2a>>
7
+ * @codegenCommand yarn workspace @af/ads-ai-tooling codegen
8
8
  */
9
9
  /* eslint-disable @repo/internal/react/boolean-prop-naming-convention -- not our types */
10
10
 
@@ -3,8 +3,8 @@
3
3
  *
4
4
  * Structured content utilities from design-system *.docs.tsx files
5
5
  *
6
- * @codegen <<SignedSource::967196502e12df47cd3e9e9a05dcdaea>>
7
- * @codegenCommand yarn workspace @af/ads-ai-tooling codegen:atlaskit-utilities
6
+ * @codegen <<SignedSource::c05de6655ec62194b079f00b4d923914>>
7
+ * @codegenCommand yarn workspace @af/ads-ai-tooling codegen
8
8
  */
9
9
  /* eslint-disable @repo/internal/react/boolean-prop-naming-convention -- not our types */
10
10
 
@@ -11,7 +11,8 @@ var buildComponentResult = function buildComponentResult(result) {
11
11
  name: result.name,
12
12
  package: result.package,
13
13
  examples: result.examples,
14
- props: result.props
14
+ props: result.props,
15
+ designSource: result.designSource
15
16
  };
16
17
  };
17
18
  export var searchAtlaskitComponentsTool = /*#__PURE__*/function () {
@@ -12,7 +12,8 @@ var buildComponentResult = function buildComponentResult(result) {
12
12
  name: result.name,
13
13
  package: result.package,
14
14
  examples: result.examples,
15
- props: result.props
15
+ props: result.props,
16
+ designSource: result.designSource
16
17
  };
17
18
  };
18
19
  export var searchComponentsTool = /*#__PURE__*/function () {
@@ -3,8 +3,8 @@
3
3
  *
4
4
  * Structured content components from design-system *.docs.tsx files
5
5
  *
6
- * @codegen <<SignedSource::0b71a41f26600db341e2ed67e69a4c88>>
7
- * @codegenCommand yarn workspace @af/ads-ai-tooling codegen:ads-components
6
+ * @codegen <<SignedSource::d61d7d9de53c81d03bf6e68477d2c368>>
7
+ * @codegenCommand yarn workspace @af/ads-ai-tooling codegen
8
8
  */
9
9
  import type { ComponentMcpPayload } from './types';
10
10
  export declare const components: ComponentMcpPayload[];
@@ -15,6 +15,9 @@ export type ComponentMcpPayload = {
15
15
  usageGuidelines?: string[];
16
16
  contentGuidelines?: string[];
17
17
  accessibilityGuidelines?: string[];
18
+ designSource?: {
19
+ figmaUrl?: string;
20
+ };
18
21
  keywords: string[];
19
22
  package: string;
20
23
  examples: string[];
@@ -3,8 +3,8 @@
3
3
  *
4
4
  * Structured content components from *.docs.tsx files outside of design-system
5
5
  *
6
- * @codegen <<SignedSource::a1fadd09a34244bc1eb4df7d042370e3>>
7
- * @codegenCommand yarn workspace @af/ads-ai-tooling codegen:atlaskit-components
6
+ * @codegen <<SignedSource::9f47d0a15832f1dfdae6a3137d61a614>>
7
+ * @codegenCommand yarn workspace @af/ads-ai-tooling codegen
8
8
  */
9
9
  import type { ComponentMcpPayload } from '../get-all-components/types';
10
10
  export declare const atlaskitComponents: ComponentMcpPayload[];
@@ -3,8 +3,8 @@
3
3
  *
4
4
  * Structured content hooks from design-system *.docs.tsx files
5
5
  *
6
- * @codegen <<SignedSource::fef352249d4955ee39f3c228cea0cbee>>
7
- * @codegenCommand yarn workspace @af/ads-ai-tooling codegen:atlaskit-hooks
6
+ * @codegen <<SignedSource::6dabb671a6717bc397909b3b1ab56c2a>>
7
+ * @codegenCommand yarn workspace @af/ads-ai-tooling codegen
8
8
  */
9
9
  import type { HookMcpPayload } from './types';
10
10
  export declare const atlaskitHooks: HookMcpPayload[];
@@ -3,8 +3,8 @@
3
3
  *
4
4
  * Structured content utilities from design-system *.docs.tsx files
5
5
  *
6
- * @codegen <<SignedSource::967196502e12df47cd3e9e9a05dcdaea>>
7
- * @codegenCommand yarn workspace @af/ads-ai-tooling codegen:atlaskit-utilities
6
+ * @codegen <<SignedSource::c05de6655ec62194b079f00b4d923914>>
7
+ * @codegenCommand yarn workspace @af/ads-ai-tooling codegen
8
8
  */
9
9
  import type { UtilityMcpPayload } from './types';
10
10
  export declare const atlaskitUtilities: UtilityMcpPayload[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/ads-mcp",
3
- "version": "1.4.0",
3
+ "version": "1.5.1",
4
4
  "description": "The official Atlassian Design System MCP server to develop apps and user interfaces matching the Atlassian style.",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -21,10 +21,10 @@
21
21
  "types": "dist/types/index.d.ts",
22
22
  "atlaskit:src": "src/index.tsx",
23
23
  "dependencies": {
24
- "@atlaskit/icon": "^36.1.0",
25
- "@atlaskit/icon-lab": "^7.2.0",
24
+ "@atlaskit/icon": "^36.2.0",
25
+ "@atlaskit/icon-lab": "^7.3.0",
26
26
  "@atlaskit/platform-feature-flags": "^2.0.0",
27
- "@atlaskit/tokens": "^15.3.0",
27
+ "@atlaskit/tokens": "^15.4.0",
28
28
  "@axe-core/playwright": "^4.11.1",
29
29
  "@axe-core/puppeteer": "^4.11.1",
30
30
  "@babel/runtime": "^7.0.0",