Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Carousel Arrows Customization #9

Merged
merged 11 commits into from
Feb 1, 2025
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,15 @@ npm run lint:js
npm run lint:css
```

## Important Notes

### Experimental Features
This plugin uses experimental features from WordPress core:
- `__experimentalColorGradientSettingsDropdown`
- `__experimentalUseMultipleOriginColorsAndGradients`

These features might change or be removed in future WordPress versions, which could require updates to maintain compatibility.

## Requirements

- WordPress 6.1+
Expand Down
16 changes: 16 additions & 0 deletions build/carousel/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,22 @@
"slidePadding": {
"type": "boolean",
"default": true
},
"arrowColor": {
"type": "string",
"default": "#000000"
},
"arrowBackground": {
"type": "string",
"default": "#ffffff"
},
"arrowHoverColor": {
"type": "string",
"default": "#000000"
},
"arrowHoverBackground": {
"type": "string",
"default": "#ffffff"
}
},
"supports": {
Expand Down
2 changes: 1 addition & 1 deletion build/carousel/index-rtl.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/carousel/index.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('react-jsx-runtime', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-data', 'wp-element', 'wp-i18n'), 'version' => '98cb5c2e1b6decff981b');
<?php return array('dependencies' => array('react-jsx-runtime', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-i18n'), 'version' => '4baa289c236596b8fecd');
Loading