PluginProbe
MotoPress Hotel Booking for Divi / trunk
MotoPress Hotel Booking for Divi vtrunk
trunk 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.1.0 2.0.0
mphb-divi / divi-5 / visual-builder / src / modules / rooms / conversion-outline.js

conversion-outline.js in MotoPress Hotel Booking for Divi trunk, at divi-5/visual-builder/src/modules/rooms/conversion-outline.js

61 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 const conversionOutline = {
2 advanced: {
3 admin_label: 'module.meta.adminLabel',
4 animation: 'module.decoration.animation',
5 background: 'module.decoration.background',
6 disabled_on: 'module.decoration.disabledOn',
7 overflow: 'module.decoration.overflow',
8 position_fields: 'module.decoration.position',
9 scroll: 'module.decoration.scroll',
10 sticky: 'module.decoration.sticky',
11 transform: 'module.decoration.transform',
12 transition: 'module.decoration.transition',
13 z_index: 'module.decoration.zIndex',
14 margin_padding: 'module.decoration.spacing',
15 max_width: 'module.decoration.sizing',
16 height: 'module.decoration.sizing',
17 fonts: {
18 module: 'module.decoration.font',
19 },
20 filters: {
21 default: 'module.decoration.filters',
22 },
23 box_shadow: {
24 default: 'module.decoration.boxShadow',
25 },
26 borders: {
27 default: 'module.decoration.border',
28 },
29 display_conditions: 'module.decoration.conditions',
30 },
31 css: {
32 after: 'css.*.after',
33 before: 'css.*.before',
34 main_element: 'css.*.mainElement',
35 free_form: 'css.*.freeForm',
36 },
37 module: {
38 title: 'shortcode.advanced.title.desktop.value',
39 featured_image: 'shortcode.advanced.featured_image.desktop.value',
40 gallery: 'shortcode.advanced.gallery.desktop.value',
41 excerpt: 'shortcode.advanced.excerpt.desktop.value',
42 details: 'shortcode.advanced.details.desktop.value',
43 price: 'shortcode.advanced.price.desktop.value',
44 view_button: 'shortcode.advanced.view_button.desktop.value',
45 book_button: 'shortcode.advanced.book_button.desktop.value',
46 ids: 'shortcode.advanced.ids.desktop.value',
47 category: 'shortcode.advanced.category.desktop.value',
48 tags: 'shortcode.advanced.tags.desktop.value',
49 relation: 'shortcode.advanced.relation.desktop.value',
50 posts_per_page: 'shortcode.advanced.posts_per_page.desktop.value',
51 orderby: 'shortcode.advanced.orderby.desktop.value',
52 order: 'shortcode.advanced.order.desktop.value',
53 meta_key: 'shortcode.advanced.meta_key.desktop.value',
54 meta_value: 'shortcode.advanced.meta_value.desktop.value',
55 class: 'shortcode.advanced.class.desktop.value',
56 },
57 };
58
59 export default conversionOutline;
60 export { conversionOutline };
61