UNPKG

integralui-web-tabstrip

Version:

IntegralUI Web Lite - TabStrip is a native Web Component that consists of multiple panels with tabs that share the same space.

15 lines (12 loc) 5.31 kB
/* filename: integralui.enums.js version : 20.2.0 Copyright © 2020 Lidor Systems. All rights reserved. This file is part of the "IntegralUI Web Lite" Library. The contents of this file are subject to the IntegralUI Web Lite License, and may not be used except in compliance with the License. A copy of the License should have been installed in the product's root installation directory or it can be found at http://www.lidorsystems.com/products/web/lite/license-agreement.aspx. This SOFTWARE is provided "AS IS", WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. Any infringement will be prosecuted under applicable laws. */ const IntegralUIAnchorStyle={None:0,Top:1,Right:2,Bottom:4,Left:8};Object.freeze(IntegralUIAnchorStyle);const IntegralUIAnimationType={None:"None",Fade:"Fade",Slide:"Slide"};Object.freeze(IntegralUIAnimationType);const IntegralUICheckState={Unchecked:"Unchecked",Indeterminate:"Indeterminate",Checked:"Checked"};Object.freeze(IntegralUICheckState);const IntegralUIColorFormat={HEX:"HEX",HSL:"HSL",RGB:"RGB"};Object.freeze(IntegralUIColorFormat);const IntegralUIContentVisibility={None:"None",Hover:"Hover",Select:"Select",Both:"Both"};Object.freeze(IntegralUIContentVisibility);const IntegralUIDateFormat={Short:"Short",Long:"Long",Custom:"Custom"};Object.freeze(IntegralUIDateFormat);const IntegralUIDirection={None:0,Above:1,Right:2,Below:4,Left:8};Object.freeze(IntegralUIDirection);const IntegralUIDragDropDisplayMode={Popup:"Popup",Handle:"Handle"};Object.freeze(IntegralUIDragDropDisplayMode);const IntegralUIEditorType={None:"None",Button:"Button",CheckBox:"CheckBox",Color:"Color",Date:"Date",DropList:"DropList",Image:"Image",Label:"Label",ListScroller:"ListScroller",Numeric:"Numeric",Progress:"Progress",Rating:"Rating",Slider:"Slider",TextBox:"TextBox"};Object.freeze(IntegralUIEditorType);const IntegralUINumericDisplayMode={InBound:"InBound",LeftRight:"LeftRight",UpDown:"UpDown"};Object.freeze(IntegralUINumericDisplayMode);const IntegralUIItemDisplayMode={Partial:"Partial",Full:"Full"};Object.freeze(IntegralUIItemDisplayMode);const IntegralUIObjectState={Normal:0,Hovered:1,Selected:2,Focused:4,Disabled:8};Object.freeze(IntegralUIObjectState);const IntegralUIOrientation={Horizontal:"Horizontal",Vertical:"Vertical"};Object.freeze(IntegralUIOrientation);const IntegralUIIncrementMode={Free:"Free",Partial:"Partial",Full:"Full"};Object.freeze(IntegralUIIncrementMode);const IntegralUIMoveDirection={After:"After",At:"At",Before:"Before",Down:"Down",First:"First",Left:"Left",Last:"Last",Right:"Right",Up:"Up"};Object.freeze(IntegralUIMoveDirection);const IntegralUIPlacement={Top:"Top",Right:"Right",Bottom:"Bottom",Left:"Left"};Object.freeze(IntegralUIPlacement);const IntegralUIScrollMode={Horizontal:"Horizontal",Vertical:"Vertical"};Object.freeze(IntegralUIScrollMode);const IntegralUISelectionMode={None:"None",One:"One",MultiSimple:"MultiSimple",MultiExtended:"MultiExtended"};Object.freeze(IntegralUISelectionMode);const IntegralUISortOrder={None:"None",Ascending:"Ascending",Descending:"Descending"};Object.freeze(IntegralUISortOrder);const IntegralUISpeedMode={VerySlow:"VerySlow",Slow:"Slow",Normal:"Normal",Fast:"Fast",VeryFast:"VeryFast"};Object.freeze(IntegralUISpeedMode);const IntegralUITabDisplayMode={AutoSized:"AutoSized",Compressed:"Compressed",Justified:"Justified"};Object.freeze(IntegralUITabDisplayMode);const IntegralUITabScrollMode={None:"None",InBound:"InBound",OutBound:"OutBound"};Object.freeze(IntegralUITabScrollMode);const IntegralUITabStripPlacement={Top:"Top",Right:"Right",Middle:"Middle",Bottom:"Bottom",Left:"Left"};Object.freeze(IntegralUITabStripPlacement);const IntegralUITheme={None:"None",Midnight:"Midnight",Office:"Office"};Object.freeze(IntegralUITheme);const IntegralUIToolItemType={Button:"Button",CheckBox:"CheckBox",Date:"Date",DropList:"DropList",Image:"Image",Label:"Label",ListScroller:"ListScroller",Numeric:"Numeric",Progress:"Progress",Rating:"Rating",Separator:"Separator",Slider:"Slider",TextBox:"TextBox"};Object.freeze(IntegralUIToolItemType);const IntegralUIVisibility={None:"None",Hover:"Hover",Click:"Click",Always:"Always"};Object.freeze(IntegralUIVisibility);const IntegralUIWeekDays={Monday:"Monday",Tuesday:"Tuesday",Wednesday:"Wednesday",Thursday:"Thursday",Friday:"Friday",Saturday:"Saturday",Sunday:"Sunday"};Object.freeze(IntegralUIWeekDays);export default IntegralUIObjectState;export{IntegralUIAnchorStyle,IntegralUIAnimationType,IntegralUICheckState,IntegralUIColorFormat,IntegralUIContentVisibility,IntegralUIDateFormat,IntegralUIDirection,IntegralUIDragDropDisplayMode,IntegralUIEditorType,IntegralUIIncrementMode,IntegralUIItemDisplayMode,IntegralUIMoveDirection,IntegralUINumericDisplayMode,IntegralUIObjectState,IntegralUIOrientation,IntegralUIPlacement,IntegralUIScrollMode,IntegralUISelectionMode,IntegralUISortOrder,IntegralUISpeedMode,IntegralUITabDisplayMode,IntegralUITabScrollMode,IntegralUITabStripPlacement,IntegralUITheme,IntegralUIToolItemType,IntegralUIVisibility,IntegralUIWeekDays};