Kasun Peiris
Kasun Peiris
I'm trying to integrate this with a StencilJs component. I have the below code. ``` componentDidLoad() { AColorPicker.from('.kp-color-generator__form__color-chip', { color: this.defaultColorHex, palette: 'PALETTE_MATERIAL_CHROME' }).on('change', (picker) => { this.defaultColorHex = picker.color;...
Added `@db.Text` to prisma schema Account model's `refresh_token`, `access_token`, and `id_token` to support NextAuth's Google provider callback's account creation. Without `@db.Text`, platform skips the creation of a record in the...