Skip to content

Commit 6dfeb41

Browse files
azure-pipelines[bot]tfsbuildHUSSAR-mtrela
authored
Adding changes from build igniteui-xplat-examples-output+PRs_2024.9.2.1 (#639)
Co-authored-by: tfsbuild <tfsbuild@infragistics.com> Co-authored-by: HUSSAR-mtrela (Martin Trela) <HUSSAR-mtrela@users.noreply.github.com>
1 parent 734a88e commit 6dfeb41

6 files changed

Lines changed: 36 additions & 24 deletions

File tree

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
/* shared styles are loaded from: */
22
/* https://static.infragistics.com/xplatform/css/samples */
3+
.size-large {
4+
--ig-size: var(--ig-size-large);
5+
}

samples/grids/grid/cell-editing-sample/src/index.tsx

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -128,14 +128,15 @@ export default class Sample extends React.Component<any, any> {
128128
}
129129
index++;
130130
}
131-
return <><IgrSelect key={key} change={(x: any) => {
132-
setTimeout(() => {
133-
cell.editValue = x.value;
134-
});
135-
}}>
136-
{cellValues}
137-
</IgrSelect>
138-
</>;
131+
return (
132+
<IgrSelect className="size-large" key={key} change={(x: any) => {
133+
setTimeout(() => {
134+
cell.editValue = x.value;
135+
});
136+
}}>
137+
{cellValues}
138+
</IgrSelect>
139+
);
139140
}
140141

141142
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
/* shared styles are loaded from: */
22
/* https://static.infragistics.com/xplatform/css/samples */
3+
.size-large {
4+
--ig-size: var(--ig-size-large);
5+
}

samples/grids/hierarchical-grid/cell-editing-sample/src/index.tsx

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -142,14 +142,15 @@ export default class Sample extends React.Component<any, any> {
142142
}
143143
index++;
144144
}
145-
return <><IgrSelect key={key} change={(x: any) => {
146-
setTimeout(() => {
147-
cell.editValue = x.value;
148-
});
149-
}}>
150-
{cellValues}
151-
</IgrSelect>
152-
</>;
145+
return (
146+
<IgrSelect className="size-large" key={key} change={(x: any) => {
147+
setTimeout(() => {
148+
cell.editValue = x.value;
149+
});
150+
}}>
151+
{cellValues}
152+
</IgrSelect>
153+
);
153154
}
154155

155156
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
/* shared styles are loaded from: */
22
/* https://static.infragistics.com/xplatform/css/samples */
3+
.size-large {
4+
--ig-size: var(--ig-size-large);
5+
}

samples/grids/tree-grid/cell-editing-sample/src/index.tsx

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -130,14 +130,15 @@ export default class Sample extends React.Component<any, any> {
130130
}
131131
index++;
132132
}
133-
return <><IgrSelect key={key} change={(x: any) => {
134-
setTimeout(() => {
135-
cell.editValue = x.value;
136-
});
137-
}}>
138-
{cellValues}
139-
</IgrSelect>
140-
</>;
133+
return (
134+
<IgrSelect className="size-large" key={key} change={(x: any) => {
135+
setTimeout(() => {
136+
cell.editValue = x.value;
137+
});
138+
}}>
139+
{cellValues}
140+
</IgrSelect>
141+
);
141142
}
142143

143144
}

0 commit comments

Comments
 (0)