Order Table
<zn-order-table> | ZnOrderTable
Short summary of the component’s intended use.
<zn-order-table data="{ "headers": ["Product", "SKU", "Quantity", "Unit Price", "Subtotal", "Total"], "items": [ { "caption": "Electronics", "summary": "Devices and accessories", "data": [], "sub": [ { "caption": "Wireless Headphones", "summary": "Noise-cancelling over-ear model", "data": ["ELC-1021", "Wireless Headphones", "1", "£120.00", "£120.00"] }, { "caption": "USB-C Charger", "summary": "Fast-charging 65W adapter", "data": ["ELC-3054", "USB-C Charger", "2", "£25.00", "£50.00"] }, { "caption": "Bluetooth Speaker", "summary": "Portable waterproof mini speaker", "data": ["ELC-4092", "Bluetooth Speaker", "1", "£55.00", "£55.00"] } ] }, { "caption": "Home & Kitchen", "summary": "Appliances and essentials", "data": [], "sub": [ { "caption": "Electric Kettle", "summary": "1.7L stainless steel kettle", "data": ["HMK-2210", "Electric Kettle", "1", "£35.00", "£35.00"] }, { "caption": "Coffee Grinder", "summary": "Adjustable ceramic burr grinder", "data": ["HMK-2278", "Coffee Grinder", "1", "£40.00", "£40.00"] }, { "caption": "Kitchen Scale", "summary": "Digital scale, 5kg capacity", "data": ["HMK-2321", "Kitchen Scale", "1", "£22.00", "£22.00"] } ] }, { "caption": "Office Supplies", "summary": "Daily work essentials", "data": [], "sub": [ { "caption": "A4 Notebook", "summary": "200 pages, ruled", "data": ["OFC-1003", "A4 Notebook", "3", "£4.00", "£12.00"] }, { "caption": "Ballpoint Pen Set", "summary": "Pack of 10 blue pens", "data": ["OFC-1045", "Ballpoint Pen Set", "1", "£6.00", "£6.00"] }, { "caption": "Desk Organizer", "summary": "Metal mesh, 5 compartments", "data": ["OFC-1089", "Desk Organizer", "1", "£18.00", "£18.00"] } ] } ], "tax": "£34.80", "discount": "£15.00", "total": "£368.80", "paid": "£250.00", "remaining": "£118.80" } "></zn-order-table>
Examples
FirstExample
TODO
SecondExample
TODO
Importing
If you’re using the autoloader or the traditional loader, you can ignore this section. Otherwise, feel free to use any of the following snippets to cherry pick this component.
To import this component from the CDN using a script tag:
<script type="module" src="https://cdn.jsdelivr.net/npm/@kubex/zinc@1.0.23/dist/components/order-table/order-table.js"></script>
To import this component from the CDN using a JavaScript import:
import 'https://cdn.jsdelivr.net/npm/@kubex/zinc@1.0.23/dist/components/order-table/order-table.js';
To import this component using a bundler:
import '@kubex/zinc/dist/components/order-table/order-table.js';
Slots
| Name | Description |
|---|---|
| (default) | The default slot. |
example
|
An example slot. |
Learn more about using slots.
Events
| Name | React Event | Description | Event Detail |
|---|---|---|---|
zn-event-name |
|
Emitted as an example. | - |
Learn more about events.
Custom Properties
| Name | Description | Default |
|---|---|---|
--example |
An example CSS custom property. |
Learn more about customizing CSS custom properties.
Parts
| Name | Description |
|---|---|
base |
The component’s base wrapper. |
Learn more about customizing CSS parts.
Dependencies
This component automatically imports the following dependencies.
<zn-example>