@social-mail/social-mail-client 1.9.31 → 1.9.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/site-editor-app/SiteEditorApp.pack.js +16 -13
- package/dist/site-editor-app/SiteEditorApp.pack.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.min.js +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.min.js.map +1 -1
- package/dist/site-editor-app/pages/store/orders/StoreOrderListPage.d.ts.map +1 -1
- package/dist/site-editor-app/pages/store/orders/StoreOrderListPage.js +16 -13
- package/dist/site-editor-app/pages/store/orders/StoreOrderListPage.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/site-editor-app/pages/store/orders/StoreOrderListPage.tsx +8 -3
|
@@ -61964,19 +61964,22 @@ System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/web-con
|
|
|
61964
61964
|
search: this.search,
|
|
61965
61965
|
cancelToken
|
|
61966
61966
|
})), {
|
|
61967
|
-
itemRenderer: item => {
|
|
61968
|
-
|
|
61969
|
-
|
|
61970
|
-
|
|
61971
|
-
|
|
61972
|
-
|
|
61973
|
-
|
|
61974
|
-
|
|
61975
|
-
|
|
61976
|
-
|
|
61977
|
-
|
|
61978
|
-
|
|
61979
|
-
|
|
61967
|
+
itemRenderer: item => XNode.create("div", {
|
|
61968
|
+
"data-click-event": "open-order"
|
|
61969
|
+
}, XNode.create("label", {
|
|
61970
|
+
text: item.journalID
|
|
61971
|
+
}), XNode.create("label", {
|
|
61972
|
+
text: item.journalType
|
|
61973
|
+
}), XNode.create("label", {
|
|
61974
|
+
text: item.invoiceID
|
|
61975
|
+
}), XNode.create("label", {
|
|
61976
|
+
text: item.total
|
|
61977
|
+
}), item.invoiceID && XNode.create("a", {
|
|
61978
|
+
"data-click-event": "none",
|
|
61979
|
+
target: `journal-${item.journalID}`,
|
|
61980
|
+
href: `/store/journals/${item.journalID}`,
|
|
61981
|
+
text: "Print"
|
|
61982
|
+
}))
|
|
61980
61983
|
}))));
|
|
61981
61984
|
this.footerRenderer = () => XNode.create("div", {
|
|
61982
61985
|
"data-layout": "row"
|