add-to-css
3 years ago
build-css
6 years ago
check-block-version
4 years ago
compatible-render
2 years ago
filter-attributes
2 years ago
flexbox-alignment
6 years ago
get-attribute
1 year ago
get-background-image
4 years ago
get-background-image-url
4 years ago
get-content-attribute
2 years ago
get-device-type
3 years ago
get-dynamic-image
4 years ago
get-icon
1 year ago
get-image-sizes
4 years ago
get-media-url
4 years ago
get-responsive-placeholder
2 years ago
get-unique-block-names
2 years ago
has-numeric-value
4 years ago
hex-to-rgba
2 years ago
is-flex-item
2 years ago
is-numeric
2 years ago
sanitize-svg
5 years ago
shorthand-css
2 years ago
should-rebuild-css
4 years ago
sizingValue
3 years ago
value-with-unit
2 years ago
was-block-just-inserted
4 years ago
convertInlineStyleStringToObject.js
1 year ago
convertLegacyHtmlAttributes.js
1 year ago
get-editor-blocks.js
2 years ago
getBlockClasses.js
1 year ago
getInnerBlocks.js
1 year ago
index.js
1 year ago
legacyStyleUtils.js
1 year ago
loop-utils.js
1 year ago
more-design-options.js
1 year ago
noStyleAttributes.js
1 year ago
object-is-empty.js
4 years ago
sanitizeHtmlAttribute.js
1 year ago
selectorShortcuts.js
1 year ago
noStyleAttributes.js
78 lines
| 1 | import { applyFilters } from '@wordpress/hooks'; |
| 2 | |
| 3 | export const noStyleAttributes = applyFilters( |
| 4 | 'generateblocks.utils.noStyleAttributes', |
| 5 | [ |
| 6 | 'accordionItemOpen', |
| 7 | 'accordionMultipleOpen', |
| 8 | 'alt', |
| 9 | 'anchor', |
| 10 | 'ariaLabel', |
| 11 | 'blockLabel', |
| 12 | 'blockVersion', |
| 13 | 'buttonType', |
| 14 | 'className', |
| 15 | 'columns', |
| 16 | 'content', |
| 17 | 'cssClasses', |
| 18 | 'customIcon', |
| 19 | 'dateReplacePublished', |
| 20 | 'dateType', |
| 21 | 'defaultOpenedTab', |
| 22 | 'dynamicContentType', |
| 23 | 'dynamicLinkType', |
| 24 | 'dynamicSource', |
| 25 | 'element', |
| 26 | 'elementId', |
| 27 | 'globalClasses', |
| 28 | 'globalStyleId', |
| 29 | 'globalStyleLabel', |
| 30 | 'gridId', |
| 31 | 'hasIcon', |
| 32 | 'hasUrl', |
| 33 | 'hiddenLinkAriaLabel', |
| 34 | 'href', |
| 35 | 'htmlAttributes', |
| 36 | 'icon', |
| 37 | 'iconLocation', |
| 38 | 'isDynamic', |
| 39 | 'isDynamic', |
| 40 | 'isGlobalStyle', |
| 41 | 'isGrid', |
| 42 | 'isPagination', |
| 43 | 'isQueryLoop', |
| 44 | 'isQueryLoopItem', |
| 45 | 'linkMetaFieldName', |
| 46 | 'linkType', |
| 47 | 'lock', |
| 48 | 'marginSyncUnits', |
| 49 | 'mediaId', |
| 50 | 'mediaUrl', |
| 51 | 'metaFieldName', |
| 52 | 'multipleCommentsText', |
| 53 | 'noCommentsText', |
| 54 | 'openInNewWindow', |
| 55 | 'paddingSyncUnits', |
| 56 | 'postId', |
| 57 | 'postType', |
| 58 | 'query', |
| 59 | 'relNoFollow', |
| 60 | 'relSponsored', |
| 61 | 'singleCommentsText', |
| 62 | 'sizeSlug', |
| 63 | 'tabItemOpen', |
| 64 | 'tagName', |
| 65 | 'target', |
| 66 | 'termSeparator', |
| 67 | 'termTaxonomy', |
| 68 | 'text', |
| 69 | 'title', |
| 70 | 'uniqueId', |
| 71 | 'url', |
| 72 | 'useDynamicData', |
| 73 | 'useGlobalStyle', |
| 74 | 'useInnerContainer', |
| 75 | 'variantRole', |
| 76 | ], |
| 77 | ); |
| 78 |