Skip to content

chore(deps): update all non-major dependencies (examples & templates) (main) (patch) #6261

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 26, 2024
Merged
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
112 changes: 56 additions & 56 deletions examples/nextjs-app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions examples/nextjs-app/package.json
Original file line number Diff line number Diff line change
@@ -13,11 +13,11 @@
"@ui5/webcomponents-fiori": "1.24.8",
"@ui5/webcomponents-react": "1.29.8",
"@types/node": "20.16.1",
"@types/react": "18.3.3",
"@types/react": "18.3.4",
"@types/react-dom": "18.3.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.5",
"next": "14.2.5",
"eslint-config-next": "14.2.6",
"next": "14.2.6",
"react": "18.3.1",
"react-dom": "18.3.1",
"typescript": "5.5.4"
112 changes: 56 additions & 56 deletions examples/nextjs-pages/package-lock.json
6 changes: 3 additions & 3 deletions examples/nextjs-pages/package.json
Original file line number Diff line number Diff line change
@@ -13,11 +13,11 @@
"@ui5/webcomponents-fiori": "1.24.8",
"@ui5/webcomponents-react": "1.29.8",
"@types/node": "20.16.1",
"@types/react": "18.3.3",
"@types/react": "18.3.4",
"@types/react-dom": "18.3.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.5",
"next": "14.2.5",
"eslint-config-next": "14.2.6",
"next": "14.2.6",
"react": "18.3.1",
"react-dom": "18.3.1",
"typescript": "5.5.4"
171 changes: 94 additions & 77 deletions examples/remix-ts/package-lock.json

Large diffs are not rendered by default.

189 changes: 124 additions & 65 deletions examples/vite-ts/package-lock.json
112 changes: 56 additions & 56 deletions templates/nextjs-app/package-lock.json
6 changes: 3 additions & 3 deletions templates/nextjs-app/package.json
Original file line number Diff line number Diff line change
@@ -13,11 +13,11 @@
"@ui5/webcomponents-fiori": "1.24.8",
"@ui5/webcomponents-react": "1.29.8",
"@types/node": "20.16.1",
"@types/react": "18.3.3",
"@types/react": "18.3.4",
"@types/react-dom": "18.3.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.5",
"next": "14.2.5",
"eslint-config-next": "14.2.6",
"next": "14.2.6",
"react": "18.3.1",
"react-dom": "18.3.1",
"typescript": "5.5.4"
112 changes: 56 additions & 56 deletions templates/nextjs-pages/package-lock.json
6 changes: 3 additions & 3 deletions templates/nextjs-pages/package.json
Original file line number Diff line number Diff line change
@@ -13,11 +13,11 @@
"@ui5/webcomponents-fiori": "1.24.8",
"@ui5/webcomponents-react": "1.29.8",
"@types/node": "20.16.1",
"@types/react": "18.3.3",
"@types/react": "18.3.4",
"@types/react-dom": "18.3.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.5",
"next": "14.2.5",
"eslint-config-next": "14.2.6",
"next": "14.2.6",
"react": "18.3.1",
"react-dom": "18.3.1",
"typescript": "5.5.4"
189 changes: 124 additions & 65 deletions templates/vite-ts/package-lock.json

Unchanged files with check annotations Beta

function ResizeTestComponent({ onChange }: { onChange: (event: { width: number; height: number }) => void }) {
useEffect(() => {
attachResizeHandler(onChange);
}, []);

Check warning on line 12 in packages/base/src/Device/index.cy.tsx

GitHub Actions / lint

React Hook useEffect has a missing dependency: 'onChange'. Either include it or remove the dependency array
const unregister = () => {
detachResizeHandler(onChange);
}) {
useEffect(() => {
attachOrientationChangeHandler(onChange);
}, []);

Check warning on line 32 in packages/base/src/Device/index.cy.tsx

GitHub Actions / lint

React Hook useEffect has a missing dependency: 'onChange'. Either include it or remove the dependency array
const unregister = () => {
detachOrientationChangeHandler(onChange);
* @param measure {IChartMeasure} Current measure object
* @param dataElement {object} Current data element
*/
highlightColor?: (value: number, measure: MeasureConfig, dataElement: Record<string, any>) => CSSProperties['color'];

Check warning on line 79 in packages/charts/src/components/BarChart/BarChart.tsx

GitHub Actions / lint

Unexpected any. Specify a different type
}
interface DimensionConfig extends IChartDimension {
? dataKeys.findIndex((key) => key === chartConfig.secondYAxis?.dataKey)
: 0;
const [componentRef, chartRef] = useSyncRef<any>(ref);

Check warning on line 189 in packages/charts/src/components/BarChart/BarChart.tsx

GitHub Actions / lint

Unexpected any. Specify a different type
const onItemLegendClick = useLegendItemClick(onLegendClick);
const labelFormatter = useLabelFormatter(primaryDimension);
speed={2}
backgroundColor={ThemingParameters.sapContent_ImagePlaceholderBackground}
foregroundColor={ThemingParameters.sapContent_ImagePlaceholderForegroundColor}
backgroundOpacity={ThemingParameters.sapContent_DisabledOpacity as any}

Check warning on line 15 in packages/charts/src/components/BarChart/Placeholder.tsx

GitHub Actions / lint

Unexpected any. Specify a different type
>
<rect x="20" y="10" width="1" height="135" />
<rect x="20" y="20" width="85" height="15" />
* @param measure {IChartMeasure} Current measure object
* @param dataElement {object} Current data element
*/
highlightColor?: (value: number, measure: MeasureConfig, dataElement: Record<string, any>) => CSSProperties['color'];

Check warning on line 69 in packages/charts/src/components/BulletChart/BulletChart.tsx

GitHub Actions / lint

Unexpected any. Specify a different type
}
interface DimensionConfig extends IChartDimension {
...rest
} = props;
const [componentRef, chartRef] = useSyncRef<any>(ref);

Check warning on line 149 in packages/charts/src/components/BulletChart/BulletChart.tsx

GitHub Actions / lint

Unexpected any. Specify a different type
const chartConfig: BulletChartProps['chartConfig'] = {
yAxisVisible: false,
);
} else {
onDataPointClick(
enrichEventWithDetails({} as any, {

Check warning on line 228 in packages/charts/src/components/BulletChart/BulletChart.tsx

GitHub Actions / lint

Unexpected any. Specify a different type
value: eventOrIndex.value,
dataKey: eventOrIndex.dataKey,
dataIndex: eventOrIndex.index,
{chartConfig.xAxisVisible &&
dimensions.map((dimension, index) => {
let AxisComponent;
const axisProps: any = {

Check warning on line 305 in packages/charts/src/components/BulletChart/BulletChart.tsx

GitHub Actions / lint

Unexpected any. Specify a different type
dataKey: dimension.accessor,
interval: dimension?.interval ?? (isBigDataSet ? 'preserveStart' : 0),
tickLine: index < 1,
/>
)}
{sortedMeasures?.map((element, index) => {
const chartElementProps: any = {

Check warning on line 443 in packages/charts/src/components/BulletChart/BulletChart.tsx

GitHub Actions / lint

Unexpected any. Specify a different type
isAnimationActive: !noAnimation
};
let labelPosition = 'top';