Skip to content

Commit 360597e

Browse files
committed
(#6140) Review changes
1 parent 97a788d commit 360597e

File tree

7 files changed

+5
-9
lines changed

7 files changed

+5
-9
lines changed

dev/src/components/samplePreviews/Breadcrumb.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { KolBreadcrumb } from '@public-ui/react';
33

44
const Breadcrumb = () => (
55
<KolBreadcrumb
6-
_label="Breadcrumb aus Text-Links"
6+
_label="Breadcrumb from text links"
77
_links={[
88
{ _label: 'Home', _href: '#/back-page' },
99
{ _label: 'Page', _href: '#/back-page' },
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22
import { KolInputNumber } from '@public-ui/react';
33

4-
const InputNumber = () => <KolInputNumber _required _touched _value={123} _hideLabel _label="Zahleneingabe" />;
4+
const InputNumber = () => <KolInputNumber _required _touched _value={123} _hideLabel _label="Number input" />;
55

66
export default InputNumber;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22
import { KolInputPassword } from '@public-ui/react';
33

4-
const InputPassword = () => <KolInputPassword _hideLabel _label="Passwort (Disabled)" _touched _value="XXXXXXXXXX" />;
4+
const InputPassword = () => <KolInputPassword _hideLabel _label="Password (Disabled)" _touched _value="XXXXXXXXXX" />;
55

66
export default InputPassword;

dev/src/components/samplePreviews/Pagination.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react';
22
import { KolPagination } from '@public-ui/react';
33

44
const Pagination = () => (
5-
<KolPagination _max={14} _page={14} _siblingCount={1} _boundaryCount={2} _label="Test Paginierung 2" _on={{}} />
5+
<KolPagination _max={14} _page={14} _siblingCount={1} _boundaryCount={2} _label="Pagination" _on={{}} />
66
);
77

88
export default Pagination;

dev/src/components/samplePreviews/Select.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ const OPTIONS: SelectOption<string>[] = [
1010
},
1111
];
1212

13-
const Select = () => <KolSelect _options={OPTIONS} _label="" _hideLabel />;
13+
const Select = () => <KolSelect _options={OPTIONS} _label="Select field" _hideLabel />;
1414

1515
export default Select;
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
// import { lazy } from 'react';
2-
31
export const COMPONENTS_15 = [];
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
// import { lazy } from 'react';
2-
31
export const COMPONENTS_16 = [];

0 commit comments

Comments
 (0)