36b3b7ddbe86b2cd72d5da79d40e7fb7c253abf7aa866553b232e35011cfa8a72a1965a7f4bf9770596e779316f1c9c30fde3dd95d4e92109a482807f1d192 588 B

123456789101112131415161718192021222324252627
  1. import { buildProps, definePropType } from '../../../../utils/vue/props/runtime.mjs';
  2. const disabledTimeListsProps = buildProps({
  3. disabledHours: {
  4. type: definePropType(Function)
  5. },
  6. disabledMinutes: {
  7. type: definePropType(Function)
  8. },
  9. disabledSeconds: {
  10. type: definePropType(Function)
  11. }
  12. });
  13. const timePanelSharedProps = buildProps({
  14. visible: Boolean,
  15. actualVisible: {
  16. type: Boolean,
  17. default: void 0
  18. },
  19. format: {
  20. type: String,
  21. default: ""
  22. }
  23. });
  24. export { disabledTimeListsProps, timePanelSharedProps };
  25. //# sourceMappingURL=shared.mjs.map