Skip to content
Open
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion assets/build/block.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => '5c13835270f8b2070a23');
<?php return array('dependencies' => array('react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => 'c9d9670c4cec50c71cc5');
3,870 changes: 3,869 additions & 1 deletion assets/build/block.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions assets/build/block.js.map

Large diffs are not rendered by default.

149 changes: 149 additions & 0 deletions assets/build/blocks/DocNavigation/block.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,149 @@
{
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "wedocs/wedocs-doc-navigation",
"version": "1.0.0",
"title": "weDocs - Doc Navigation",
"icon": "arrow-left-alt2",
"category": "widgets",
"description": "Display previous and next document navigation links",
"supports": {
"html": false,
"spacing": {
"padding": true,
"margin": true
},
"border": {
"color": true,
"radius": true,
"style": true,
"width": true
},
"color": {
"background": true
}
},
"render": "file:./render.php",
"attributes": {
"seoLinks": {
"type": "string",
"default": "none"
},
"navPadding": {
"type": "object",
"default": {
"top": "12px",
"right": "16px",
"bottom": "12px",
"left": "16px"
}
},
"navMargin": {
"type": "object",
"default": {
"top": "0px",
"right": "0px",
"bottom": "0px",
"left": "0px"
}
},
"navBorderStyle": {
"type": "string",
"default": "none"
},
"navBorderRadius": {
"type": "string",
"default": "4px"
},
"navBorderWidth": {
"type": "string",
"default": "1px"
},
"navBorderColor": {
"type": "string",
"default": "#dddddd"
},
"navShadow": {
"type": "string",
"default": "none"
},
"customShadowHorizontal": {
"type": "number",
"default": 5
},
"customShadowVertical": {
"type": "number",
"default": 5
},
"customShadowBlur": {
"type": "number",
"default": 10
},
"customShadowSpread": {
"type": "number",
"default": 2
},
"customShadowColor": {
"type": "string",
"default": "#000000"
},
"customShadowOpacity": {
"type": "number",
"default": 10
},
"customShadowInset": {
"type": "boolean",
"default": false
},
"navigationTextColor": {
"type": "string",
"default": "#333333"
},
"navigationTextHoverColor": {
"type": "string",
"default": "#0073aa"
},
"navigationFontSize": {
"type": "string",
"default": "16px"
},
"navigationFontWeight": {
"type": "string",
"default": "400"
},
"navigationFontStyle": {
"type": "string",
"default": "normal"
},
"arrowSize": {
"type": "string",
"default": "16px"
},
"arrowColor": {
"type": "string",
"default": "#333333"
},
"arrowBackgroundColor": {
"type": "string",
"default": "transparent"
},
"arrowPadding": {
"type": "object",
"default": {
"top": "8px",
"right": "8px",
"bottom": "8px",
"left": "8px"
}
},
"arrowMargin": {
"type": "object",
"default": {
"top": "0px",
"right": "8px",
"bottom": "0px",
"left": "0px"
}
}
}
}
Loading