defaults.d.ts 1.0 KB

1234567891011121314151617181920212223242526
  1. export declare const DEFAULT_DYNAMIC_LIST_ITEM_SIZE = 50;
  2. export declare const ITEM_RENDER_EVT = "itemRendered";
  3. export declare const SCROLL_EVT = "scroll";
  4. export declare const FORWARD = "forward";
  5. export declare const BACKWARD = "backward";
  6. export declare const AUTO_ALIGNMENT = "auto";
  7. export declare const SMART_ALIGNMENT = "smart";
  8. export declare const START_ALIGNMENT = "start";
  9. export declare const CENTERED_ALIGNMENT = "center";
  10. export declare const END_ALIGNMENT = "end";
  11. export declare const HORIZONTAL = "horizontal";
  12. export declare const VERTICAL = "vertical";
  13. export declare const LTR = "ltr";
  14. export declare const RTL = "rtl";
  15. export declare const RTL_OFFSET_NAG = "negative";
  16. export declare const RTL_OFFSET_POS_ASC = "positive-ascending";
  17. export declare const RTL_OFFSET_POS_DESC = "positive-descending";
  18. export declare const ScrollbarSizeKey: {
  19. horizontal: string;
  20. vertical: string;
  21. };
  22. export declare const ScrollbarDirKey: {
  23. horizontal: string;
  24. vertical: string;
  25. };
  26. export declare const SCROLLBAR_MIN_SIZE = 20;