Kiarash Zarinmehr

Results 9 comments of Kiarash Zarinmehr

Hi Richard, thank you so much for publishing this for Framer X. It's recommended to discuss the features here and then on a pull request. The changes you want to...

I think the second option is way better. I need others opinion about this API 🤔 I gotta pin this issue.

Hi @alessandrojcm, I need more feedbacks to make a decision about the full customizability API 🤔 Arrows are placed into the calendar using `background-image`. Therefore, for now, you can override...

@alessandrojcm Yeah, I think this type of config might be good: ```js const getConfig = (defaultValues) => { textColor: defaultValues.defaultColor, // many other properties here... renderArrows: (position) => } ```...

@alessandrojcm This is a good approach but for rendering arrows. For the styles, I guess it's the developer's duty to provide appropriate styles when customizing arrows. For rendering arrows, I...

@alessandrojcm It's quite easy internally: ```js {renderArrows({ isLeftArrow: true })} {renderArrows({ isLeftArrow: false })} ``` As for the colors, I think because of their default color(black), it wouldn't be needed...

Hi, It's quite easy to achieve that. You can render a custom input using `renderInput` prop and use a button in that, and by attaching an event listener to the...