Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
400 changes: 400 additions & 0 deletions portals/api-control-plane/.claude/skills/apicp-ui/SKILL.md

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions portals/api-control-plane/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/public/**
/node_modules/**
/coverage/**
# Pleae comment the reason if you are ignoring a file/directory here
6 changes: 6 additions & 0 deletions portals/api-control-plane/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
node_modules/
dist/
build/
coverage/
public/
# Pleae comment the reason if you are ignoring a file/directory here
13 changes: 13 additions & 0 deletions portals/api-control-plane/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"endOfLine": "lf"
}
13 changes: 13 additions & 0 deletions portals/api-control-plane/CLAUDE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Project Guidelines

## UI development

All UI work in this portal — pages, components, forms, listings, navigation, theming, Oxygen UI
component/theming API, and MUI→Oxygen migration — follows the `apicp-ui` skill
([.claude/skills/apicp-ui/SKILL.md](.claude/skills/apicp-ui/SKILL.md)). Invoke it with `/apicp-ui`,
or read it directly before touching anything under `src/`.

The full upstream Oxygen UI reference ships with the package at
`node_modules/@wso2/oxygen-ui/.ai/{components,patterns,theming,migration}.md`; the compiled types in
`node_modules/@wso2/oxygen-ui/dist/**/*.d.ts` are the ground truth when the docs and the package
disagree.
2 changes: 2 additions & 0 deletions portals/api-control-plane/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import globals from 'globals';
import formatjs from 'eslint-plugin-formatjs';
import reactHooks from 'eslint-plugin-react-hooks';
import tseslint from 'typescript-eslint';
import eslintConfigPrettier from "eslint-config-prettier";

export default [
js.configs.recommended,
Expand Down Expand Up @@ -242,4 +243,5 @@ export default [
'src/api/generated/**',
],
},
eslintConfigPrettier,
];
Loading
Loading