UNPKG

@wordpress/editor

Version:
25 lines (23 loc) 676 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.VISIBILITY_OPTIONS = void 0; var _i18n = require("@wordpress/i18n"); /** * WordPress dependencies */ const VISIBILITY_OPTIONS = exports.VISIBILITY_OPTIONS = [{ label: (0, _i18n.__)('Public'), value: 'public', description: (0, _i18n.__)('Visible to everyone.') }, { label: (0, _i18n.__)('Private'), value: 'private', description: (0, _i18n.__)('Only visible to site admins and editors.') }, { label: (0, _i18n.__)('Password protected'), value: 'password', description: (0, _i18n.__)('Only visible to those who know the password.') }]; //# sourceMappingURL=utils.js.map