@wordpress/components
Version:
UI components for WordPress.
26 lines (23 loc) • 563 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.initialStateReducer = exports.initialInputControlState = void 0;
/**
* External dependencies
*/
/**
* Internal dependencies
*/
const initialStateReducer = state => state;
exports.initialStateReducer = initialStateReducer;
const initialInputControlState = exports.initialInputControlState = {
error: null,
initialValue: '',
isDirty: false,
isDragEnabled: false,
isDragging: false,
isPressEnterToChange: false,
value: ''
};
//# sourceMappingURL=state.js.map