Skip to content

Commit 6c26a3a

Browse files
Ivan KitanovIvan Kitanov
authored andcommitted
Addressing comments
1 parent 3360770 commit 6c26a3a

8 files changed

Lines changed: 24 additions & 24 deletions

File tree

samples/inputs/textarea/form-integration/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "react-input-overview",
3-
"description": "This project provides example of Input Overview using Infragistics React components",
2+
"name": "react-textarea-form-integration",
3+
"description": "This project provides example of Text Area Form Integration using Infragistics React components",
44
"author": "Infragistics",
55
"homepage": ".",
66
"version": "1.4.0",
@@ -13,8 +13,8 @@
1313
},
1414
"dependencies": {
1515
"igniteui-dockmanager": "1.14.2",
16-
"igniteui-react": "18.6.0",
17-
"igniteui-react-core": "18.6.0",
16+
"igniteui-react": "18.6.1-alpha.0",
17+
"igniteui-react-core": "18.6.1-alpha.0",
1818
"react": "^18.2.0",
1919
"react-dom": "^18.2.0",
2020
"react-scripts": "^5.0.1",

samples/inputs/textarea/overview/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "react-input-overview",
3-
"description": "This project provides example of Input Overview using Infragistics React components",
2+
"name": "react-textarea-overview",
3+
"description": "This project provides example of Text Area Overview using Infragistics React components",
44
"author": "Infragistics",
55
"homepage": ".",
66
"version": "1.4.0",
@@ -13,8 +13,8 @@
1313
},
1414
"dependencies": {
1515
"igniteui-dockmanager": "1.14.2",
16-
"igniteui-react": "18.6.0",
17-
"igniteui-react-core": "18.6.0",
16+
"igniteui-react": "18.6.1-alpha.0",
17+
"igniteui-react-core": "18.6.1-alpha.0",
1818
"react": "^18.2.0",
1919
"react-dom": "^18.2.0",
2020
"react-scripts": "^5.0.1",

samples/inputs/textarea/overview/src/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import 'igniteui-webcomponents/themes/light/bootstrap.css';
66

77
IgrTextareaModule.register();
88

9-
export default class InputOverview extends React.Component<any, any> {
9+
export default class TextAreaOverview extends React.Component<any, any> {
1010

1111
constructor(props: any) {
1212
super(props);
@@ -23,4 +23,4 @@ export default class InputOverview extends React.Component<any, any> {
2323

2424
// rendering above class to the React DOM
2525
const root = ReactDOM.createRoot(document.getElementById('root'));
26-
root.render(<InputOverview/>);
26+
root.render(<TextAreaOverview/>);

samples/inputs/textarea/resize/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "react-input-overview",
3-
"description": "This project provides example of Input Overview using Infragistics React components",
2+
"name": "react-textarea-resize",
3+
"description": "This project provides example of Text Area Resize using Infragistics React components",
44
"author": "Infragistics",
55
"homepage": ".",
66
"version": "1.4.0",
@@ -13,8 +13,8 @@
1313
},
1414
"dependencies": {
1515
"igniteui-dockmanager": "1.14.2",
16-
"igniteui-react": "18.6.0",
17-
"igniteui-react-core": "18.6.0",
16+
"igniteui-react": "18.6.1-alpha.0",
17+
"igniteui-react-core": "18.6.1-alpha.0",
1818
"react": "^18.2.0",
1919
"react-dom": "^18.2.0",
2020
"react-scripts": "^5.0.1",

samples/inputs/textarea/resize/src/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import 'igniteui-webcomponents/themes/light/bootstrap.css';
66

77
IgrTextareaModule.register();
88

9-
export default class InputOverview extends React.Component<any, any> {
9+
export default class TextAreaResize extends React.Component<any, any> {
1010

1111
constructor(props: any) {
1212
super(props);
@@ -31,4 +31,4 @@ export default class InputOverview extends React.Component<any, any> {
3131

3232
// rendering above class to the React DOM
3333
const root = ReactDOM.createRoot(document.getElementById('root'));
34-
root.render(<InputOverview/>);
34+
root.render(<TextAreaResize/>);

samples/inputs/textarea/slots/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "react-input-overview",
3-
"description": "This project provides example of Input Overview using Infragistics React components",
2+
"name": "react-textarea-slots",
3+
"description": "This project provides example of Text Area Slots using Infragistics React components",
44
"author": "Infragistics",
55
"homepage": ".",
66
"version": "1.4.0",
@@ -13,8 +13,8 @@
1313
},
1414
"dependencies": {
1515
"igniteui-dockmanager": "1.14.2",
16-
"igniteui-react": "18.6.0",
17-
"igniteui-react-core": "18.6.0",
16+
"igniteui-react": "18.6.1-alpha.0",
17+
"igniteui-react-core": "18.6.1-alpha.0",
1818
"react": "^18.2.0",
1919
"react-dom": "^18.2.0",
2020
"react-scripts": "^5.0.1",

samples/inputs/textarea/slots/src/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import 'igniteui-webcomponents/themes/light/bootstrap.css';
77
IgrTextareaModule.register();
88
IgrIconModule.register();
99

10-
export default class TextAreaSlot extends React.Component<any, any> {
10+
export default class TextAreaSlots extends React.Component<any, any> {
1111

1212
constructor(props: any) {
1313
super(props);
@@ -41,4 +41,4 @@ export default class TextAreaSlot extends React.Component<any, any> {
4141

4242
// rendering above class to the React DOM
4343
const root = ReactDOM.createRoot(document.getElementById('root'));
44-
root.render(<TextAreaSlot/>);
44+
root.render(<TextAreaSlots/>);

samples/inputs/textarea/styling/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "react-input-overview",
3-
"description": "This project provides example of Input Overview using Infragistics React components",
2+
"name": "react-textarea-styling",
3+
"description": "This project provides example of Text Area Styling using Infragistics React components",
44
"author": "Infragistics",
55
"homepage": ".",
66
"version": "1.4.0",

0 commit comments

Comments
 (0)