Skip to content

Commit 760093d

Browse files
committed
chore: run prettier
1 parent e3fed10 commit 760093d

File tree

135 files changed

+218
-212
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+218
-212
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,20 +62,18 @@ jobs:
6262
${GITHUB_WORKSPACE}/node_modules/.bin/lerna version ${{ github.event.inputs.release_type }} \
6363
${{ (github.event.inputs.prerelease == 'true' && '--conventional-prerelease') || '--conventional-graduate' }} \
6464
--no-push \
65-
--no-git-tag-version
65+
--no-git-tag-version
6666
6767
- name: version - Snapshot
6868
if: ${{ github.event.inputs.snapshot == 'true' }}
6969
run: |
7070
git_hash=$(git rev-parse --short "${{ github.sha }}")
71-
71+
7272
${GITHUB_WORKSPACE}/node_modules/.bin/lerna version "0.0.0-${git_hash}" \
7373
--exact \
7474
--no-push \
7575
--no-git-tag-version \
7676
--allow-branch ${{ github.ref_name }}
77-
78-
7977
8078
build-and-release:
8179
needs: ['test', 'release-dryrun', 'check-charts-compat-peer-deps']
@@ -122,7 +120,7 @@ jobs:
122120
if: ${{ github.event.inputs.snapshot == 'true' }}
123121
run: |
124122
git_hash=$(git rev-parse --short "${{ github.sha }}")
125-
123+
126124
${GITHUB_WORKSPACE}/node_modules/.bin/lerna version "0.0.0-${git_hash}" \
127125
--exact \
128126
--no-push \

packages/ai/src/components/Button/index.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ interface ButtonAttributes {
6868
interface ButtonDomRef extends Required<ButtonAttributes>, Ui5DomRef {}
6969

7070
interface ButtonPropTypes
71-
extends ButtonAttributes,
72-
Omit<CommonProps, keyof ButtonAttributes | 'children' | 'onArrowButtonClick' | 'onClick'> {
71+
extends ButtonAttributes, Omit<CommonProps, keyof ButtonAttributes | 'children' | 'onArrowButtonClick' | 'onClick'> {
7372
/**
7473
* Defines the available states of the component.
7574
* **Note:** Although this slot accepts HTML Elements, it is strongly recommended that

packages/ai/src/components/Input/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,8 @@ interface InputAttributes {
168168
interface InputDomRef extends Required<InputAttributes>, Ui5DomRef {}
169169

170170
interface InputPropTypes
171-
extends InputAttributes,
171+
extends
172+
InputAttributes,
172173
Omit<
173174
CommonProps,
174175
| keyof InputAttributes

packages/ai/src/components/PromptInput/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ interface PromptInputAttributes {
100100
interface PromptInputDomRef extends Required<PromptInputAttributes>, Ui5DomRef {}
101101

102102
interface PromptInputPropTypes
103-
extends PromptInputAttributes,
103+
extends
104+
PromptInputAttributes,
104105
Omit<
105106
CommonProps,
106107
keyof PromptInputAttributes | 'children' | 'valueStateMessage' | 'onChange' | 'onInput' | 'onSubmit'

packages/ai/src/components/TextArea/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,8 @@ interface TextAreaAttributes {
160160
interface TextAreaDomRef extends Required<TextAreaAttributes>, Ui5DomRef {}
161161

162162
interface TextAreaPropTypes
163-
extends TextAreaAttributes,
163+
extends
164+
TextAreaAttributes,
164165
Omit<
165166
CommonProps,
166167
| keyof TextAreaAttributes
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
/**
22
* ⚠️ __INTERNAL__ use only! This interface is not part of the public API.
33
*/
4-
export interface Ui5CustomEvent<EventTarget = HTMLElement, Detail = never>
5-
extends Omit<CustomEvent<Detail>, 'target' | 'currentTarget'> {
4+
export interface Ui5CustomEvent<EventTarget = HTMLElement, Detail = never> extends Omit<
5+
CustomEvent<Detail>,
6+
'target' | 'currentTarget'
7+
> {
68
target: EventTarget;
79
currentTarget: EventTarget | null;
810
}

packages/charts/src/components/ColumnChartWithTrend/index.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,10 @@ interface DimensionConfig extends IChartDimension {
5151
interval?: YAxisProps['interval'];
5252
}
5353

54-
export interface ColumnChartWithTrendProps
55-
extends Omit<IChartBaseProps<Omit<ICartesianChartConfig, 'secondYAxis' | 'secondYAxisConfig'>>, 'syncId'> {
54+
export interface ColumnChartWithTrendProps extends Omit<
55+
IChartBaseProps<Omit<ICartesianChartConfig, 'secondYAxis' | 'secondYAxisConfig'>>,
56+
'syncId'
57+
> {
5658
/**
5759
* An array of config objects. Each object will define one dimension of the chart.
5860
*

packages/charts/src/components/RadialChart/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ interface RadialChartConfig {
1919
[rest: string]: any;
2020
}
2121
export interface RadialChartProps
22-
extends Omit<CommonProps, 'onClick' | 'children' | 'onLegendClick'>,
22+
extends
23+
Omit<CommonProps, 'onClick' | 'children' | 'onLegendClick'>,
2324
Pick<IChartBaseProps, 'loading' | 'loadingDelay'> {
2425
/**
2526
* The actual value which defines how much the ring is filled.

packages/compat/src/components/Table/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,8 @@ interface TableAttributes {
140140
interface TableDomRef extends Required<TableAttributes>, Ui5DomRef {}
141141

142142
interface TablePropTypes
143-
extends TableAttributes,
143+
extends
144+
TableAttributes,
144145
Omit<
145146
CommonProps,
146147
| keyof TableAttributes

packages/compat/src/components/TableColumn/index.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@ interface TableColumnAttributes {
5252
interface TableColumnDomRef extends Required<TableColumnAttributes>, Ui5DomRef {}
5353

5454
interface TableColumnPropTypes
55-
extends TableColumnAttributes,
56-
Omit<CommonProps, keyof TableColumnAttributes | 'children'> {
55+
extends TableColumnAttributes, Omit<CommonProps, keyof TableColumnAttributes | 'children'> {
5756
/**
5857
* Defines the content of the column header
5958
*

0 commit comments

Comments
 (0)