@zohodesk/components
Version:
In this Package, we Provide Some Basic Components to Build Web App
72 lines • 2.54 kB
JavaScript
export const absolutePositionMapping = {
"bottomCenter": "bottomCenter",
"bottomRight": "bottomLeftToRight",
"bottomLeft": "bottomRightToLeft",
"topCenter": "topCenter",
"topRight": "topLeftToRight",
"topLeft": "topRightToLeft",
"rightCenter": "rightCenter",
"rightBottom": "rightTopToBottom",
"rightTop": "rightBottomToTop",
"leftCenter": "leftCenter",
"leftBottom": "leftTopToBottom",
"leftTop": "leftBottomToTop",
"bottomLeftToRight": "bottomLeftToRight",
"bottomRightToLeft": "bottomRightToLeft",
"topLeftToRight": "topLeftToRight",
"topRightToLeft": "topRightToLeft",
"rightTopToBottom": "rightTopToBottom",
"rightBottomToTop": "rightBottomToTop",
"leftTopToBottom": "leftTopToBottom"
};
export const rtlAbsolutePositionMapping = {
"bottomCenter": "bottomCenter",
"bottomRight": "bottomRightToLeft",
"bottomLeft": "bottomLeftToRight",
"topCenter": "topCenter",
"topRight": "topRightToLeft",
"topLeft": "topLeftToRight",
"rightCenter": "leftCenter",
"rightBottom": "leftTopToBottom",
"rightTop": "leftBottomToTop",
"leftCenter": "rightCenter",
"leftBottom": "rightTopToBottom",
"leftTop": "rightBottomToTop",
"bottomLeftToRight": "bottomLeftToRight",
"bottomRightToLeft": "bottomRightToLeft",
"topLeftToRight": "topLeftToRight",
"topRightToLeft": "topRightToLeft",
"rightTopToBottom": "rightTopToBottom",
"rightBottomToTop": "rightBottomToTop",
"leftTopToBottom": "leftTopToBottom"
};
export const rtlFixedPositionMapping = {
"bottomCenter": "bottomCenter",
"bottomLeftToRight": "bottomRightToLeft",
"bottomCenterToRight": "bottomCenterToLeft",
"bottomRightToLeft": "bottomLeftToRight",
"bottomCenterToLeft": "bottomCenterToRight",
"topCenter": "topCenter",
"topLeftToRight": "topRightToLeft",
"topCenterToRight": "topCenterToLeft",
"topRightToLeft": "topLeftToRight",
"topCenterToLeft": "topCenterToRight",
"rightTopToBottom": "leftTopToBottom",
"rightCenterToBottom": "leftCenterToBottom",
"rightCenter": "leftCenter",
"rightBottomToTop": "leftBottomToTop",
"rightCenterToTop": "leftCenterToTop",
"leftTopToBottom": "rightTopToBottom",
"leftCenterToBottom": "rightCenterToBottom",
"leftCenter": "rightCenter",
"leftBottomToTop": "rightBottomToTop",
"leftCenterToTop": "rightCenterToTop",
"bottomRight": "bottomLeft",
"bottomLeft": "bottomRight",
"topRight": "topLeft",
"topLeft": "topRight",
"rightBottom": "leftBottom",
"rightTop": "leftTop",
"leftBottom": "rightBottom",
"leftTop": "rightTop"
};