如何通过集成pickadate和pickatime禁用pickadate

I have two input form, pickadate and pickatime. I want to disable time and date with two input form

$("#tanggal").pickadate({
                min: true
            })

$("#jam").pickatime({
                min: [7,0],
                max: [15,0],
                interval: 60,
                disable: [
                    new Date(2019,5,22,9)
                ]
            }) 

How do i integrate these two input fields? I hope you're understand my problem.

Any suggestions?