ng icon indicating copy to clipboard operation
ng copied to clipboard

Angular UI components library.

Results 18 ng issues
Sort by recently updated
recently updated
newest added

### What problem does this feature solve 1、DatetimeRange可以支持禁用天数,是否需要显示time。 2、time可以设置最小分钟为30。 3、多支持一些可选择的API。 ### What does the proposed API look like https://primeng.org/calendar#import

### What problem does this feature solve 1、https://opentiny.design/tiny-ng/components/datetimerange 原组件链接 2、在传入日期范围时间格式时,如: ** secondFormat: TiDatetimeFormat = { date: 'yyyy/MM/dd', time: 'HH:mm:ss' } ** 点击日期范围的组件,不输入时,提示文字是:YYYY/MM/DD,而不是参数中的'yyyy/MM/dd ### What does the proposed API look like...

### Version 1.0.0-beta.2 ### Angular Version 13.3.0 ### Link to minimal reproduction https://opentiny.design/tiny-ng/components/actionmenu ### Step to reproduce 1、按钮层数两层以上,即配置项含有children 2、按钮接近浏览器底部,可以通过F12模拟 3、两层按钮(含有children的按钮)在比较靠上的位置,鼠标悬浮在两层按钮上,显示出第二层按钮,此时二级按钮无论有多少个,弹出框都会与底部对齐,导致二层按钮较少时出现大片空白框。 ### What is expected _No response_ ### What is actually...

bug

### Version 1.0.1 ### Angular Version 15.2.9 ### Link to minimal reproduction https://opentiny.design/tiny-ng/components/message ### Step to reproduce 打开链接:https://opentiny.design/tiny-ng/components/message 点击示例中的消息弹框类型下的例子(随意一个),打开检查工具查看确定和取消按钮,发现文本前后有空格 ### What is expected _No response_ ### What is actually happening...

bug

# PR ## PR Checklist Please check if your PR fulfills the following requirements: - [x] The commit message follows our [Commit Message Guidelines](https://github.com/opentiny/ng/blob/main/CONTRIBUTING.md) - [ ] Tests for the...

### Version 1.0.0-beta.2 ### Angular Version 13.3.11 ### Link to minimal reproduction https://opentiny.design/tiny-ng/components/table#table-head-filter-datetime ### Step to reproduce 展开时间选择组件就能看到 ### What is expected _No response_ ### What is actually happening _No...

bug

### Version latest ### Angular Version latest ### Link to minimal reproduction https://opentiny.design/tiny-ng/components/pagination ### Step to reproduce 分页组件当前页和总数两个输入属性类型为双向绑定的,这点让人很疑惑: 1、分页组件内部currentPage、totalNumber被修改时会直接污染输入属性 2、业界众多分页组件,大部分都是单向绑定的 ### What is expected _No response_ ### What is actually...

bug

# PR ## PR Checklist Please check if your PR fulfills the following requirements: - [ ] The commit message follows our [Commit Message Guidelines](https://github.com/opentiny/ng/blob/main/CONTRIBUTING.md) - [ ] Tests for...

### Version 1.0.1 ### Angular Version 15.2.0 ### Link to minimal reproduction https://www.npmjs.com/package/@opentiny/ng/v/1.0.0?activeTab=code 中的package.json ### Step to reproduce # 安装pnpm `npm install -g pnpm` # 创建一个项目 `ng new opentiny-test --routing=true...

bug

### What problem does this feature solve 场景一,通过指令,为表单控件设置默认的提示信息 ```typescript import {Directive, Optional} from '@angular/core'; import {TiSelectComponent, TiTextComponent, TiValidationDirective} from "@opentiny/ng"; @Directive({ selector: 'ti-select[formControlName],input[tiText][formControlName]', standalone: true, host: { "[style.width.px]": "240" },...