mirror of
https://gh.wpcy.net/https://github.com/elementor/hello-theme.git
synced 2026-04-24 11:45:02 +08:00
35 lines
643 B
TypeScript
35 lines
643 B
TypeScript
export type TopBarSelector = {
|
|
attribute: string;
|
|
attributeValue: string;
|
|
}
|
|
|
|
export default {
|
|
elementorLogo: {
|
|
attribute: 'value',
|
|
attributeValue: 'selected',
|
|
},
|
|
elementsPanel: {
|
|
attribute: 'value',
|
|
attributeValue: 'Add Element',
|
|
},
|
|
documentSettings: {
|
|
attribute: 'value',
|
|
attributeValue: 'document-settings',
|
|
},
|
|
siteSettings: {
|
|
attribute: 'value',
|
|
attributeValue: 'Site Settings',
|
|
},
|
|
saveOptions: {
|
|
attribute: 'aria-label',
|
|
attributeValue: 'Save Options',
|
|
},
|
|
publish: {
|
|
attribute: 'text',
|
|
attributeValue: 'Publish',
|
|
},
|
|
checklistToggle: {
|
|
attribute: 'aria-label',
|
|
attributeValue: 'Checklist',
|
|
},
|
|
};
|