Skip to content
Merged

Test #453

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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .cursor/commands/component-docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ For updates, focus on the specific areas that need improvement rather than rewri

When creating or updating docs, reference these well-documented components to understand the documentation style and patterns:

- **LineChart** (`apps/docs/docs/components/graphs/LineChart/`) - Comprehensive example with many composed examples
- **LineChart** (`apps/docs/docs/components/charts/LineChart/`) - Comprehensive example with many composed examples
- **Button** (`apps/docs/docs/components/buttons/Button/`) - Good basic component documentation
- **IconButton** (`apps/docs/docs/components/buttons/IconButton/`) - Simple component with clear examples
- **Sidebar** (`apps/docs/docs/components/navigation/Sidebar/`) - Complex component with multiple sub-components
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,8 @@ cds-biweekly-update.md
missing-files.json
barrel-files.md
base-props.json
component-peer-dependencies.md
component-peer-dependencies.json

# temp directory created when running podium scripts. this gets deleted after the script is done, but for the sake of your sanity, let's not track it
**/.podium/
Expand Down
2 changes: 1 addition & 1 deletion .percy.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module.exports = {
'Components/SparklineInteractive: Fallback Positive',
'Components/LottieStatusAnimation: Default',
'Components/Loaders/MaterialSpinner: Material Spinner Default',
'Components/Chart/LineChart: Transitions',
'Components/Chart/CartesianChart: Transitions',
],
include: [
// 'Core Components/SparklineInteractive:*',
Expand Down
6 changes: 5 additions & 1 deletion apps/docs/babel.config.cjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
const docusaurusPreset = require('@docusaurus/core/lib/babel/preset');

const isTestEnv = process.env.NODE_ENV === 'test';

module.exports = {
presets: [docusaurusPreset],
presets: isTestEnv
? [['@babel/preset-env', { modules: 'commonjs' }], '@babel/preset-typescript']
: [docusaurusPreset],
};
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,10 @@
"url": "/components/animation/Lottie"
}
],
"dependencies": []
"dependencies": [
{
"name": "lottie-react-native",
"version": "^6.7.0"
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
{
"label": "LineChart",
"url": "/components/graphs/LineChart/"
"url": "/components/charts/LineChart/"
}
],
"dependencies": []
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/docs/components/cards/DataCard/webMetadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
},
{
"label": "LineChart",
"url": "/components/graphs/LineChart/"
"url": "/components/charts/LineChart/"
}
],
"dependencies": []
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,10 @@
"url": "/components/cards/ContentCard/"
}
],
"dependencies": []
"dependencies": [
{
"name": "react-native-svg",
"version": "^14.1.0"
}
]
}
Loading
Loading