feat(ivy): bridge compile instructions to include sanitization helpers (#24938)
PR Close #24938
This commit is contained in:

committed by
Victor Berchet

parent
13f3157823
commit
169e9dd2c8
@ -48,12 +48,12 @@ export class LargeTableComponent {
|
||||
{
|
||||
if (rf2 & RenderFlags.Create) {
|
||||
E(0, 'td');
|
||||
s(c0);
|
||||
s(null, c0);
|
||||
{ T(1); }
|
||||
e();
|
||||
}
|
||||
if (rf2 & RenderFlags.Update) {
|
||||
sp(0, 0, cell.row % 2 ? '' : 'grey');
|
||||
sp(0, 0, null, cell.row % 2 ? '' : 'grey');
|
||||
t(1, b(cell.value));
|
||||
}
|
||||
}
|
||||
|
@ -41,7 +41,7 @@ export class TreeComponent {
|
||||
template: function(rf: RenderFlags, ctx: TreeComponent) {
|
||||
if (rf & RenderFlags.Create) {
|
||||
E(0, 'span');
|
||||
s(c0);
|
||||
s(null, c0);
|
||||
{ T(1); }
|
||||
e();
|
||||
C(2);
|
||||
@ -114,7 +114,7 @@ export function TreeTpl(rf: RenderFlags, ctx: TreeNode) {
|
||||
E(0, 'tree');
|
||||
{
|
||||
E(1, 'span');
|
||||
s(c1);
|
||||
s(null, c1);
|
||||
{ T(2); }
|
||||
e();
|
||||
C(3);
|
||||
|
Reference in New Issue
Block a user