import {__} from '@wordpress/i18n' import {KEY_BASE} from '../../../attributes' import type {TailwindFeatureConfig} from '../../TailwindFeature' const config: TailwindFeatureConfig = { id: 'order', label: __('Order', 'ska-blocks'), themeKeys: ['--order'], settings: { '1': '1', '2': '2', '3': '3', '4': '4', '5': '5', '6': '6', '7': '7', '8': '8', '9': '9', '10': '10', '11': '11', '12': '12', 'first': 'calc(-infinity)', 'last': 'calc(infinity)', 'none': '0', }, supports: { signed: true, bare: true, }, schema: [ { key: 'default', options: [ { key: KEY_BASE, className: 'order', }, ], }, ], } export default config