angular12
Here are 272 public repositories matching this topic...
-
Updated
May 20, 2022 - TypeScript
I gave a path to the image on imageSrc attribute but does not seem to work. Is this possible with 2.1.4?
Unit Testing
This is an amazing piece of work – no doubt. That being said where are the unit tests. No one is going to take this lib seriously without unit tests. Do what you need to do but this library should be the goto solution for angular development with complex and/or dynamic forms. The only reason it isn't is because of the lack of unit tests. Realistically I can't trust this library when it lacks basi
Hi.
Thank you for creating a wonderful component.
I wanted to suggest two improvements with the UI of the component.
-On selecting a predefined range that exists within the same month (like yesterday, today, 20th-24th of the same month etc.), both the calendar tables show the same month. It would be better if a check could be made in this regard and the selected dates be shown in only one t
-
Updated
Apr 3, 2022 - TypeScript
-
Updated
May 16, 2022 - TypeScript
-
Updated
Apr 23, 2022 - JavaScript
-
Updated
May 19, 2022 - HTML
-
Updated
Mar 31, 2022 - JavaScript
-
Updated
Apr 28, 2022 - TypeScript
-
Updated
Apr 21, 2022 - JavaScript
-
Updated
Mar 13, 2022 - TypeScript
-
Updated
Jul 21, 2021 - TypeScript
-
Updated
Mar 31, 2022 - JavaScript
-
Updated
Apr 27, 2022 - TypeScript
-
Updated
Aug 8, 2021 - TypeScript
-
Updated
Apr 21, 2022 - TypeScript
-
Updated
Dec 17, 2021 - TypeScript
-
Updated
May 10, 2022 - TypeScript
-
Updated
May 13, 2022 - TypeScript
-
Updated
Mar 31, 2022 - JavaScript
-
Updated
May 16, 2022 - TypeScript
-
Updated
Aug 13, 2021 - TypeScript
-
Updated
May 3, 2022 - JavaScript
-
Updated
Mar 31, 2022 - JavaScript
Improve this page
Add a description, image, and links to the angular12 topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the angular12 topic, visit your repo's landing page and select "manage topics."
在官网上, "通过设置isOpen控制下拉"的例子中,如果打开下拉菜单,再点击空白处,需要点两次按钮才能再次打开下拉菜单.
希望可以给一个点一次就能打开下拉菜单的例子
可以通过
onToggle(event) {
if (this.isOpen != event) {
this.isOpen = event;
}
}
来暂时解决这个问题