PluginProbe
Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO / 1.3.10
Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO v1.3.10
1.4.18 1.4.17 1.4.16 1.4.15 1.4.14 1.4.13 1.4.12 1.4.11 1.4.10 1.4.9 1.4.8 1.4.7 1.4.6 1.4.5 1.4.4 1.4.3 1.4.2 1.4.1 1.4.0 1.3.54 1.3.53 1.3.52 1.3.51 1.3.50 1.3.49 All 181 releases
disco / backend / views / components / Main / utilities / bulk-bundle-table.js

bulk-bundle-table.js in Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO 1.3.10, at backend/views/components/Main/utilities/bulk-bundle-table.js

40 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 // Bulk imports
2 import bulkTable1 from '../../../asset/img/badge-images/table/bulk/table1.svg';
3 import bulkTable2 from '../../../asset/img/badge-images/table/bulk/table2.svg';
4 import bulkTable3 from '../../../asset/img/badge-images/table/bulk/table3.svg';
5 import bulkTable4 from '../../../asset/img/badge-images/table/bulk/table4.svg';
6 import bulkTable5 from '../../../asset/img/badge-images/table/bulk/table5.svg';
7
8 // Bundle imports
9 import bundleTable1 from '../../../asset/img/badge-images/table/bundle/table1.svg';
10 import bundleTable2 from '../../../asset/img/badge-images/table/bundle/table2.svg';
11 import bundleTable3 from '../../../asset/img/badge-images/table/bundle/table3.svg';
12 import bundleTable4 from '../../../asset/img/badge-images/table/bundle/table4.svg';
13 import bundleTable5 from '../../../asset/img/badge-images/table/bundle/table5.svg';
14
15 // Export bulk table images
16 export const BulkTable = {
17 table1: bulkTable1,
18 table2: bulkTable2,
19 table3: bulkTable3,
20 table4: bulkTable4,
21 table5: bulkTable5,
22 };
23
24 // Export bundle table images
25 export const BundleTable = {
26 table1: bundleTable1,
27 table2: bundleTable2,
28 table3: bundleTable3,
29 table4: bundleTable4,
30 table5: bundleTable5,
31 };
32
33 // Export both together if needed
34 const bulkBundleTable = {
35 bulk: BulkTable,
36 bundle: BundleTable,
37 };
38
39 export default bulkBundleTable;
40