props.js 972 B

12345678910111213141516171819202122232425262728293031
  1. "use strict";
  2. var uni_modules_uviewPlus_libs_config_props = require("../../libs/config/props.js");
  3. var props = {
  4. props: {
  5. offsetTop: {
  6. type: [String, Number],
  7. default: () => uni_modules_uviewPlus_libs_config_props.defProps.sticky.offsetTop
  8. },
  9. customNavHeight: {
  10. type: [String, Number],
  11. default: () => uni_modules_uviewPlus_libs_config_props.defProps.sticky.customNavHeight
  12. },
  13. disabled: {
  14. type: Boolean,
  15. default: () => uni_modules_uviewPlus_libs_config_props.defProps.sticky.disabled
  16. },
  17. bgColor: {
  18. type: String,
  19. default: () => uni_modules_uviewPlus_libs_config_props.defProps.sticky.bgColor
  20. },
  21. zIndex: {
  22. type: [String, Number],
  23. default: () => uni_modules_uviewPlus_libs_config_props.defProps.sticky.zIndex
  24. },
  25. index: {
  26. type: [String, Number],
  27. default: () => uni_modules_uviewPlus_libs_config_props.defProps.sticky.index
  28. }
  29. }
  30. };
  31. exports.props = props;