Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
d568622
feat(status-indicator): Use local one-theme class instead of global s…
at-susie Jun 5, 2026
d53399d
chore: Add one-theme styling and background color overrides
at-susie Jun 5, 2026
e539ff7
chore: Refine one-theme styling and display prop handling
at-susie Jun 7, 2026
457e404
Merge branch 'main' into feat/implement-small-icon
at-susie Jun 7, 2026
20b3a09
chore: Update icons and styling for one-theme
at-susie Jun 8, 2026
164d689
Merge remote-tracking branch 'origin/main' into feat/implement-small-…
at-susie Jun 8, 2026
1d45e76
chore: Add demos temporarily
at-susie Jun 8, 2026
de38d67
chore: Update demo pages
at-susie Jun 8, 2026
17cfa02
Merge remote-tracking branch 'origin/main' into feat/implement-small-…
at-susie Jun 8, 2026
7f827cc
chore: Add details demo pages
at-susie Jun 8, 2026
8b19f81
chore: Add Gen AI components
at-susie Jun 8, 2026
9d9917e
Merge remote-tracking branch 'origin/main' into feat/implement-small-…
at-susie Jun 9, 2026
2b7e3e8
chore: Update expandable section icon for one-theme
at-susie Jun 9, 2026
a5bac3d
chore: Update icon for tree-view and table expandable for one-theme
at-susie Jun 10, 2026
481e63f
chore: Update tree-item styling for one-theme
at-susie Jun 10, 2026
f26b512
chore: Update panel color and shadow tokens for oen-theme
at-susie Jun 10, 2026
8f84451
chore: Update color palette reference tokens
at-susie Jun 10, 2026
037ee18
chore: Update snapshots
at-susie Jun 10, 2026
d41527a
chore: Update wrappers test
at-susie Jun 10, 2026
a316034
chore: Update app-layout and color token references for one-theme
at-susie Jun 10, 2026
e72451a
Merge branch 'main' into feat/onet-layout-color
at-susie Jun 10, 2026
2308e94
Merge remote-tracking branch 'origin/main' into explore/integrate-demos
at-susie Jun 11, 2026
407979c
Merge branch 'feat/implement-small-icon' into explore/integrate-demos
at-susie Jun 11, 2026
952adcc
chore: Update app-layout background colors
at-susie Jun 11, 2026
4b2c806
Merge branch 'feat/onet-layout-color' into explore/integrate-demos
at-susie Jun 11, 2026
2c563b1
color updates one theme
Jun 11, 2026
b69c68d
body font color change
Jun 11, 2026
1af3e92
Merge branch 'onetheme-lidia' into onetheme-lidia-2
Jun 11, 2026
3be4860
refactor: make one-theme a standalone theme
mxschll Jun 11, 2026
7219a2a
chore: trim one-theme comments
mxschll Jun 11, 2026
0a7d6de
Merge remote-tracking branch 'origin/dev-v3-schomax-onetheme/dict' in…
Jun 11, 2026
ab584f0
chore: Add missing color and border tokens for UI components
Jun 12, 2026
9a99fe3
Merge remote-tracking branch 'origin/main' into onetheme-lidia-2
Jun 15, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
19 changes: 18 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,24 @@ export default tsEslint.config(
},
},
{
files: ['src/test-utils/dom/**/*.ts'],
// Demo pages are sourced from an external repo and follow different lint standards.
// Relax rules that conflict with that codebase.
files: ['pages/demos/**'],
rules: {
'@typescript-eslint/no-unused-vars': 'off',
'react/no-unescaped-entities': 'off',
'no-constant-binary-expression': 'off',
'no-warning-comments': 'off',
'header/header': 'off',
'unicorn/filename-case': 'off',
'@cloudscape-design/build-tools/react-server-components-directive': 'off',
'simple-import-sort/imports': 'off',
},
},
{
files: [
'src/test-utils/dom/**/*.ts',
],
rules: {
'@cloudscape-design/build-tools/ban-files': [
'error',
Expand Down
Loading
Loading