shared.js 405 B

12345678910111213141516171819202122232425
  1. "use strict";
  2. exports.__esModule = true;
  3. exports.switchProps = void 0;
  4. /**
  5. * Common Switch Props
  6. */
  7. var switchProps = {
  8. size: [Number, String],
  9. value: null,
  10. loading: Boolean,
  11. disabled: Boolean,
  12. activeColor: String,
  13. inactiveColor: String,
  14. activeValue: {
  15. type: null,
  16. default: true
  17. },
  18. inactiveValue: {
  19. type: null,
  20. default: false
  21. }
  22. };
  23. exports.switchProps = switchProps;