@wordpress/components
Version:
UI components for WordPress.
17 lines (16 loc) • 375 B
JavaScript
// packages/components/src/input-control/reducer/state.ts
var initialStateReducer = (state) => state;
var initialInputControlState = {
error: null,
initialValue: "",
isDirty: false,
isDragEnabled: false,
isDragging: false,
isPressEnterToChange: false,
value: ""
};
export {
initialInputControlState,
initialStateReducer
};
//# sourceMappingURL=state.js.map