Skip to content

Commit 0233392

Browse files
authored
fix: adopt ui5wc v.2.9.0 (#212)
* fix: adopt ui5wc v.2.9.0 * docs: 2.9.0 new docs
1 parent 48ac2a9 commit 0233392

14 files changed

+846
-570
lines changed

apps/documentation/src/api-json.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
import { Meta, StoryObj, moduleMetadata } from '@storybook/angular';
2+
import { Ui5WebcomponentsModule } from '@ui5/webcomponents-ngx';
3+
import { SearchItemGroupComponent } from '@ui5/webcomponents-ngx/fiori/search-item-group';
4+
import { extractArgTypes, extractDescription } from '../../arg-type-tools';
5+
6+
const description = `
7+
8+
###Module Import
9+
10+
<code>import { SearchItemGroupComponent } from "@ui5/webcomponents-ngx/fiori/search-item-group";</code>`;
11+
export default {
12+
title: 'UI5 Web Components / Fiori / Search / SearchItemGroup',
13+
component: SearchItemGroupComponent,
14+
decorators: [
15+
moduleMetadata({
16+
imports: [Ui5WebcomponentsModule],
17+
}),
18+
],
19+
parameters: {
20+
docs: {
21+
extractArgTypes,
22+
description: {
23+
component: extractDescription( 'SearchItemGroupComponent', SearchItemGroupComponent, description),
24+
},
25+
},
26+
},
27+
} as Meta;
28+
29+
30+
export const SearchItemGroup: StoryObj<SearchItemGroupComponent> = {
31+
render: (args) => ({
32+
props: args,
33+
template: `
34+
`,
35+
}),
36+
};
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
import { Meta, StoryObj, moduleMetadata } from '@storybook/angular';
2+
import { Ui5WebcomponentsModule } from '@ui5/webcomponents-ngx';
3+
import { SearchItemComponent } from '@ui5/webcomponents-ngx/fiori/search-item';
4+
import { extractArgTypes, extractDescription } from '../../arg-type-tools';
5+
6+
const description = `
7+
8+
###Module Import
9+
10+
<code>import { SearchItemComponent } from "@ui5/webcomponents-ngx/fiori/search-item";</code>`;
11+
export default {
12+
title: 'UI5 Web Components / Fiori / Search / SearchItem',
13+
component: SearchItemComponent,
14+
decorators: [
15+
moduleMetadata({
16+
imports: [Ui5WebcomponentsModule],
17+
}),
18+
],
19+
parameters: {
20+
docs: {
21+
extractArgTypes,
22+
description: {
23+
component: extractDescription( 'SearchItemComponent', SearchItemComponent, description),
24+
},
25+
},
26+
},
27+
} as Meta;
28+
29+
30+
export const SearchItem: StoryObj<SearchItemComponent> = {
31+
render: (args) => ({
32+
props: args,
33+
template: `
34+
`,
35+
}),
36+
};
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
import { Meta, StoryObj, moduleMetadata } from '@storybook/angular';
2+
import { Ui5WebcomponentsModule } from '@ui5/webcomponents-ngx';
3+
import { SearchMessageAreaComponent } from '@ui5/webcomponents-ngx/fiori/search-message-area';
4+
import { extractArgTypes, extractDescription } from '../../arg-type-tools';
5+
6+
const description = `
7+
8+
###Module Import
9+
10+
<code>import { SearchMessageAreaComponent } from "@ui5/webcomponents-ngx/fiori/search-message-area";</code>`;
11+
export default {
12+
title: 'UI5 Web Components / Fiori / Search / SearchMessageArea',
13+
component: SearchMessageAreaComponent,
14+
decorators: [
15+
moduleMetadata({
16+
imports: [Ui5WebcomponentsModule],
17+
}),
18+
],
19+
parameters: {
20+
docs: {
21+
extractArgTypes,
22+
description: {
23+
component: extractDescription( 'SearchMessageAreaComponent', SearchMessageAreaComponent, description),
24+
},
25+
},
26+
},
27+
} as Meta;
28+
29+
30+
export const SearchMessageArea: StoryObj<SearchMessageAreaComponent> = {
31+
render: (args) => ({
32+
props: args,
33+
template: `
34+
`,
35+
}),
36+
};
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
import { Meta, StoryObj, moduleMetadata } from '@storybook/angular';
2+
import { Ui5WebcomponentsModule } from '@ui5/webcomponents-ngx';
3+
import { SearchScopeComponent } from '@ui5/webcomponents-ngx/fiori/search-scope';
4+
import { extractArgTypes, extractDescription } from '../../arg-type-tools';
5+
6+
const description = `
7+
8+
###Module Import
9+
10+
<code>import { SearchScopeComponent } from "@ui5/webcomponents-ngx/fiori/search-scope";</code>`;
11+
export default {
12+
title: 'UI5 Web Components / Fiori / Search / SearchScope',
13+
component: SearchScopeComponent,
14+
decorators: [
15+
moduleMetadata({
16+
imports: [Ui5WebcomponentsModule],
17+
}),
18+
],
19+
parameters: {
20+
docs: {
21+
extractArgTypes,
22+
description: {
23+
component: extractDescription( 'SearchScopeComponent', SearchScopeComponent, description),
24+
},
25+
},
26+
},
27+
} as Meta;
28+
29+
30+
export const SearchScope: StoryObj<SearchScopeComponent> = {
31+
render: (args) => ({
32+
props: args,
33+
template: `
34+
`,
35+
}),
36+
};
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
import { Meta, StoryObj, moduleMetadata } from '@storybook/angular';
2+
import { Ui5WebcomponentsModule } from '@ui5/webcomponents-ngx';
3+
import { SearchComponent } from '@ui5/webcomponents-ngx/fiori/search';
4+
import { extractArgTypes, extractDescription } from '../../arg-type-tools';
5+
6+
const description = `
7+
8+
###Module Import
9+
10+
<code>import { SearchComponent } from "@ui5/webcomponents-ngx/fiori/search";</code>`;
11+
export default {
12+
title: 'UI5 Web Components / Fiori / Search',
13+
component: SearchComponent,
14+
decorators: [
15+
moduleMetadata({
16+
imports: [Ui5WebcomponentsModule],
17+
}),
18+
],
19+
parameters: {
20+
docs: {
21+
extractArgTypes,
22+
description: {
23+
component: extractDescription( 'SearchComponent', SearchComponent, description),
24+
},
25+
},
26+
},
27+
} as Meta;
28+
29+
30+
export const Search: StoryObj<SearchComponent> = {
31+
render: (args) => ({
32+
props: args,
33+
template: `
34+
`,
35+
}),
36+
};
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
import { Meta, StoryObj, moduleMetadata } from '@storybook/angular';
2+
import { Ui5WebcomponentsModule } from '@ui5/webcomponents-ngx';
3+
import { UserSettingsItemComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-item';
4+
import { extractArgTypes, extractDescription } from '../../arg-type-tools';
5+
6+
const description = `
7+
8+
###Module Import
9+
10+
<code>import { UserSettingsItemComponent } from "@ui5/webcomponents-ngx/fiori/user-settings-item";</code>`;
11+
export default {
12+
title: 'UI5 Web Components / Fiori / UserSettingsDialog / UserSettingsItem',
13+
component: UserSettingsItemComponent,
14+
decorators: [
15+
moduleMetadata({
16+
imports: [Ui5WebcomponentsModule],
17+
}),
18+
],
19+
parameters: {
20+
docs: {
21+
extractArgTypes,
22+
description: {
23+
component: extractDescription( 'UserSettingsItemComponent', UserSettingsItemComponent, description),
24+
},
25+
},
26+
},
27+
} as Meta;
28+
29+
30+
export const UserSettingsItem: StoryObj<UserSettingsItemComponent> = {
31+
render: (args) => ({
32+
props: args,
33+
template: `
34+
`,
35+
}),
36+
};
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
import { Meta, StoryObj, moduleMetadata } from '@storybook/angular';
2+
import { Ui5WebcomponentsModule } from '@ui5/webcomponents-ngx';
3+
import { UserSettingsViewComponent } from '@ui5/webcomponents-ngx/fiori/user-settings-view';
4+
import { extractArgTypes, extractDescription } from '../../arg-type-tools';
5+
6+
const description = `
7+
8+
###Module Import
9+
10+
<code>import { UserSettingsViewComponent } from "@ui5/webcomponents-ngx/fiori/user-settings-item";</code>`;
11+
export default {
12+
title: 'UI5 Web Components / Fiori / UserSettingsDialog / UserSettingsView',
13+
component: UserSettingsViewComponent,
14+
decorators: [
15+
moduleMetadata({
16+
imports: [Ui5WebcomponentsModule],
17+
}),
18+
],
19+
parameters: {
20+
docs: {
21+
extractArgTypes,
22+
description: {
23+
component: extractDescription( 'UserSettingsViewComponent', UserSettingsViewComponent, description),
24+
},
25+
},
26+
},
27+
} as Meta;
28+
29+
30+
export const UserSettinsView: StoryObj<UserSettingsViewComponent> = {
31+
render: (args) => ({
32+
props: args,
33+
template: `
34+
`,
35+
}),
36+
};

libs/transformer/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
"author": "SAP SE (https://www.sap.com)",
66
"license": "Apache-2.0",
77
"peerDependencies": {
8-
"@ui5/webcomponents": "2.8.0",
9-
"@ui5/webcomponents-ai": "2.8.0",
10-
"@ui5/webcomponents-base": "2.8.0",
11-
"@ui5/webcomponents-fiori": "2.8.0",
12-
"@ui5/webcomponents-icons": "2.8.0",
13-
"@ui5/webcomponents-icons-business-suite": "2.8.0",
14-
"@ui5/webcomponents-icons-tnt": "2.8.0"
8+
"@ui5/webcomponents": "2.9.0",
9+
"@ui5/webcomponents-ai": "2.9.0",
10+
"@ui5/webcomponents-base": "2.9.0",
11+
"@ui5/webcomponents-fiori": "2.9.0",
12+
"@ui5/webcomponents-icons": "2.9.0",
13+
"@ui5/webcomponents-icons-business-suite": "2.9.0",
14+
"@ui5/webcomponents-icons-tnt": "2.9.0"
1515
}
1616
}

0 commit comments

Comments
 (0)