Update new functions
This commit is contained in:
@@ -47,7 +47,7 @@ const BasicDemo = () => {
|
||||
]
|
||||
});
|
||||
};
|
||||
$mount(BasicDemo, '#demo-basic');
|
||||
Mount(BasicDemo, '#demo-basic');
|
||||
```
|
||||
|
||||
### With Zebra Stripes
|
||||
@@ -78,7 +78,7 @@ const ZebraDemo = () => {
|
||||
zebra: true
|
||||
});
|
||||
};
|
||||
$mount(ZebraDemo, '#demo-zebra');
|
||||
Mount(ZebraDemo, '#demo-zebra');
|
||||
```
|
||||
|
||||
### With Custom Cell Rendering
|
||||
@@ -124,7 +124,7 @@ const CustomDemo = () => {
|
||||
zebra: true
|
||||
});
|
||||
};
|
||||
$mount(CustomDemo, '#demo-custom');
|
||||
Mount(CustomDemo, '#demo-custom');
|
||||
```
|
||||
|
||||
### With Footers
|
||||
@@ -172,7 +172,7 @@ const FooterDemo = () => {
|
||||
zebra: true
|
||||
});
|
||||
};
|
||||
$mount(FooterDemo, '#demo-footer');
|
||||
Mount(FooterDemo, '#demo-footer');
|
||||
```
|
||||
|
||||
### Empty State
|
||||
@@ -200,7 +200,7 @@ const EmptyDemo = () => {
|
||||
])
|
||||
});
|
||||
};
|
||||
$mount(EmptyDemo, '#demo-empty');
|
||||
Mount(EmptyDemo, '#demo-empty');
|
||||
```
|
||||
|
||||
### Reactive Data
|
||||
@@ -271,7 +271,7 @@ const ReactiveDemo = () => {
|
||||
})
|
||||
]);
|
||||
};
|
||||
$mount(ReactiveDemo, '#demo-reactive');
|
||||
Mount(ReactiveDemo, '#demo-reactive');
|
||||
```
|
||||
|
||||
### With Actions
|
||||
@@ -331,7 +331,7 @@ const ActionsDemo = () => {
|
||||
zebra: true
|
||||
});
|
||||
};
|
||||
$mount(ActionsDemo, '#demo-actions');
|
||||
Mount(ActionsDemo, '#demo-actions');
|
||||
```
|
||||
|
||||
### All Variants
|
||||
@@ -385,7 +385,7 @@ const VariantsDemo = () => {
|
||||
})
|
||||
]);
|
||||
};
|
||||
$mount(VariantsDemo, '#demo-variants');
|
||||
Mount(VariantsDemo, '#demo-variants');
|
||||
```
|
||||
|
||||
<script>
|
||||
@@ -412,7 +412,7 @@ $mount(VariantsDemo, '#demo-variants');
|
||||
]
|
||||
});
|
||||
};
|
||||
$mount(BasicDemo, basicTarget);
|
||||
Mount(BasicDemo, basicTarget);
|
||||
}
|
||||
|
||||
// 2. With Zebra Stripes
|
||||
@@ -436,7 +436,7 @@ $mount(VariantsDemo, '#demo-variants');
|
||||
zebra: true
|
||||
});
|
||||
};
|
||||
$mount(ZebraDemo, zebraTarget);
|
||||
Mount(ZebraDemo, zebraTarget);
|
||||
}
|
||||
|
||||
// 3. With Custom Cell Rendering
|
||||
@@ -475,7 +475,7 @@ $mount(VariantsDemo, '#demo-variants');
|
||||
zebra: true
|
||||
});
|
||||
};
|
||||
$mount(CustomDemo, customTarget);
|
||||
Mount(CustomDemo, customTarget);
|
||||
}
|
||||
|
||||
// 4. With Footers
|
||||
@@ -516,7 +516,7 @@ $mount(VariantsDemo, '#demo-variants');
|
||||
zebra: true
|
||||
});
|
||||
};
|
||||
$mount(FooterDemo, footerTarget);
|
||||
Mount(FooterDemo, footerTarget);
|
||||
}
|
||||
|
||||
// 5. Empty State
|
||||
@@ -537,7 +537,7 @@ $mount(VariantsDemo, '#demo-variants');
|
||||
])
|
||||
});
|
||||
};
|
||||
$mount(EmptyDemo, emptyTarget);
|
||||
Mount(EmptyDemo, emptyTarget);
|
||||
}
|
||||
|
||||
// 6. Reactive Data
|
||||
@@ -601,7 +601,7 @@ $mount(VariantsDemo, '#demo-variants');
|
||||
})
|
||||
]);
|
||||
};
|
||||
$mount(ReactiveDemo, reactiveTarget);
|
||||
Mount(ReactiveDemo, reactiveTarget);
|
||||
}
|
||||
|
||||
// 7. With Actions
|
||||
@@ -654,7 +654,7 @@ $mount(VariantsDemo, '#demo-variants');
|
||||
zebra: true
|
||||
});
|
||||
};
|
||||
$mount(ActionsDemo, actionsTarget);
|
||||
Mount(ActionsDemo, actionsTarget);
|
||||
}
|
||||
|
||||
// 8. All Variants
|
||||
@@ -701,7 +701,7 @@ $mount(VariantsDemo, '#demo-variants');
|
||||
})
|
||||
]);
|
||||
};
|
||||
$mount(VariantsDemo, variantsTarget);
|
||||
Mount(VariantsDemo, variantsTarget);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user