Skip to content

Commit 6bb8323

Browse files
committed
chore: removing relations in docs/ files
1 parent 92871de commit 6bb8323

File tree

7 files changed

+0
-31
lines changed

7 files changed

+0
-31
lines changed

docs/API_DOCS.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,3 @@ export namespace ButtonProps {
3030
```
3131

3232
Then reference them in the interface: `variant?: ButtonProps.Variant`.
33-
34-
## Related
35-
36-
- For component props and interface conventions, see [COMPONENT_CONVENTIONS.md](COMPONENT_CONVENTIONS.md).

docs/COMPONENT_CONVENTIONS.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,3 @@ Centralize all translatable strings under a skippable property (e.g. `i18nString
5050
## Dependencies
5151

5252
Before adding any dependency: must support React 16.8+ and latest 3 major Chrome/Firefox/Edge, no global state, ESM preferred.
53-
54-
## Related
55-
56-
- For styling rules and design tokens, see [STYLING.md](STYLING.md).
57-
- For internal shared utilities, see [INTERNALS.md](INTERNALS.md).

docs/DEV_PAGES.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,3 @@ npm start # starts watcher + dev server at http://localhost:8080
1414
- Import components via `~components/<name>` (not relative paths to `src/`)
1515
- For visual regression content, either use `SimplePage` from `pages/app/templates` (handles heading, screenshot area, i18n, and layout) or wrap content in `ScreenshotArea` from `pages/utils/screenshot-area`.
1616
- Use `createPermutations` and `PermutationsView` from `pages/utils/` for permutation pages.
17-
18-
## Related
19-
20-
- For integration tests that use dev pages, see [TESTING.md](TESTING.md).

docs/INTERNALS.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
# Internal Utilities
22

33
Shared infrastructure lives in `src/internal/`. Always check there before introducing new utilities, hooks, or internal shared components.
4-
5-
## Related
6-
7-
- For component conventions that use internal utilities, see [COMPONENT_CONVENTIONS.md](COMPONENT_CONVENTIONS.md).

docs/STYLING.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,3 @@ For cases that need direction-aware logic beyond CSS logical properties:
2424

2525
- In SCSS, use the `with-direction` mixin in `src/internal/styles/direction.scss`
2626
- In TypeScript, `@cloudscape-design/component-toolkit/internal` provides direction detection and logical geometry helpers that replace physical DOM properties
27-
28-
## Related
29-
30-
- For linting rules (stylelint), see [CODE_STYLE.md](CODE_STYLE.md).

docs/TESTING.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,3 @@ NODE_OPTIONS=--experimental-vm-modules node_modules/.bin/jest -c jest.motion.con
3232
```
3333
TZ=UTC node_modules/.bin/jest -u -c jest.unit.config.js src/__tests__/snapshot-tests/
3434
```
35-
36-
## Related
37-
38-
- For writing tests, test utils, and test conventions, see [WRITING_TESTS.md](WRITING_TESTS.md).
39-
- For dev/test pages used by integration tests, see [DEV_PAGES.md](DEV_PAGES.md).

docs/WRITING_TESTS.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,3 @@ Snapshot tests guard generated artifacts (API definitions, test-util wrappers, d
2626
Location: `src/<component-name>/__integ__/`
2727

2828
Integration tests run in a real browser against dev pages (see [DEV_PAGES.md](DEV_PAGES.md)). Use `createWrapper` from `test-utils/selectors` (not `test-utils/dom` — selectors generate CSS selectors for browser tests, while dom wrappers operate on DOM nodes for unit tests).
29-
30-
## Related
31-
32-
- For test commands and configs, see [TESTING.md](TESTING.md).
33-
- For dev/test pages, see [DEV_PAGES.md](DEV_PAGES.md).

0 commit comments

Comments
 (0)