@ng-nest/ui 20.3.4 → 20.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/affix/affix.component.html +3 -0
- package/affix/affix.component.scss +10 -0
- package/affix/affix.component.spec.ts +80 -0
- package/affix/affix.component.ts +11 -0
- package/affix/affix.module.ts +8 -0
- package/affix/affix.property.ts +43 -0
- package/affix/docs/readme.en_US.md +20 -0
- package/affix/docs/readme.zh_CN.md +20 -0
- package/affix/examples/en_US/default/default/default.component.html +10 -0
- package/affix/examples/en_US/default/default/default.component.scss +17 -0
- package/affix/examples/en_US/default/default/default.component.ts +11 -0
- package/affix/examples/en_US/default/default/readme.md +6 -0
- package/affix/examples/en_US/default/readme.md +4 -0
- package/affix/examples/en_US/default/scope/readme.md +6 -0
- package/affix/examples/en_US/default/scope/scope.component.html +21 -0
- package/affix/examples/en_US/default/scope/scope.component.scss +17 -0
- package/affix/examples/en_US/default/scope/scope.component.ts +11 -0
- package/affix/examples/index.ts +2 -0
- package/affix/examples/zh_CN/default/default/default.component.html +10 -0
- package/affix/examples/zh_CN/default/default/default.component.scss +17 -0
- package/affix/examples/zh_CN/default/default/default.component.ts +11 -0
- package/affix/examples/zh_CN/default/default/readme.md +6 -0
- package/affix/examples/zh_CN/default/readme.md +4 -0
- package/affix/examples/zh_CN/default/scope/readme.md +6 -0
- package/affix/examples/zh_CN/default/scope/scope.component.html +21 -0
- package/affix/examples/zh_CN/default/scope/scope.component.scss +17 -0
- package/affix/examples/zh_CN/default/scope/scope.component.ts +11 -0
- package/affix/index.ts +1 -0
- package/affix/ng-package.json +5 -0
- package/affix/public-api.ts +3 -0
- package/affix/style/mixin.scss +11 -0
- package/affix/style/param.scss +4 -0
- package/alert/alert.component.html +71 -0
- package/alert/alert.component.scss +14 -0
- package/alert/alert.component.spec.ts +310 -0
- package/alert/alert.component.ts +89 -0
- package/alert/alert.module.ts +8 -0
- package/alert/alert.property.ts +415 -0
- package/alert/docs/readme.en_US.md +20 -0
- package/alert/docs/readme.zh_CN.md +20 -0
- package/alert/examples/en_US/default/custom/custom.component.html +15 -0
- package/alert/examples/en_US/default/custom/custom.component.scss +5 -0
- package/alert/examples/en_US/default/custom/custom.component.ts +18 -0
- package/alert/examples/en_US/default/custom/readme.md +9 -0
- package/alert/examples/en_US/default/default/default.component.html +6 -0
- package/alert/examples/en_US/default/default/default.component.scss +5 -0
- package/alert/examples/en_US/default/default/default.component.ts +10 -0
- package/alert/examples/en_US/default/default/readme.md +6 -0
- package/alert/examples/en_US/default/description/description.component.html +7 -0
- package/alert/examples/en_US/default/description/description.component.scss +5 -0
- package/alert/examples/en_US/default/description/description.component.ts +12 -0
- package/alert/examples/en_US/default/description/readme.md +6 -0
- package/alert/examples/en_US/default/effect/effect.component.html +6 -0
- package/alert/examples/en_US/default/effect/effect.component.scss +5 -0
- package/alert/examples/en_US/default/effect/effect.component.ts +10 -0
- package/alert/examples/en_US/default/effect/readme.md +6 -0
- package/alert/examples/en_US/default/icon/icon.component.html +6 -0
- package/alert/examples/en_US/default/icon/icon.component.scss +5 -0
- package/alert/examples/en_US/default/icon/icon.component.ts +10 -0
- package/alert/examples/en_US/default/icon/readme.md +6 -0
- package/alert/examples/en_US/default/readme.md +4 -0
- package/alert/examples/en_US/default/variant/readme.md +6 -0
- package/alert/examples/en_US/default/variant/variant.component.html +21 -0
- package/alert/examples/en_US/default/variant/variant.component.scss +5 -0
- package/alert/examples/en_US/default/variant/variant.component.ts +10 -0
- package/alert/examples/index.ts +6 -0
- package/alert/examples/zh_CN/default/custom/custom.component.html +15 -0
- package/alert/examples/zh_CN/default/custom/custom.component.scss +5 -0
- package/alert/examples/zh_CN/default/custom/custom.component.ts +18 -0
- package/alert/examples/zh_CN/default/custom/readme.md +9 -0
- package/alert/examples/zh_CN/default/default/default.component.html +6 -0
- package/alert/examples/zh_CN/default/default/default.component.scss +5 -0
- package/alert/examples/zh_CN/default/default/default.component.ts +10 -0
- package/alert/examples/zh_CN/default/default/readme.md +6 -0
- package/alert/examples/zh_CN/default/description/description.component.html +7 -0
- package/alert/examples/zh_CN/default/description/description.component.scss +5 -0
- package/alert/examples/zh_CN/default/description/description.component.ts +14 -0
- package/alert/examples/zh_CN/default/description/readme.md +6 -0
- package/alert/examples/zh_CN/default/effect/effect.component.html +6 -0
- package/alert/examples/zh_CN/default/effect/effect.component.scss +5 -0
- package/alert/examples/zh_CN/default/effect/effect.component.ts +10 -0
- package/alert/examples/zh_CN/default/effect/readme.md +6 -0
- package/alert/examples/zh_CN/default/icon/icon.component.html +6 -0
- package/alert/examples/zh_CN/default/icon/icon.component.scss +5 -0
- package/alert/examples/zh_CN/default/icon/icon.component.ts +10 -0
- package/alert/examples/zh_CN/default/icon/readme.md +6 -0
- package/alert/examples/zh_CN/default/readme.md +4 -0
- package/alert/examples/zh_CN/default/variant/readme.md +6 -0
- package/alert/examples/zh_CN/default/variant/variant.component.html +21 -0
- package/alert/examples/zh_CN/default/variant/variant.component.scss +5 -0
- package/alert/examples/zh_CN/default/variant/variant.component.ts +10 -0
- package/alert/index.ts +1 -0
- package/alert/ng-package.json +5 -0
- package/alert/public-api.ts +3 -0
- package/alert/style/mixin.scss +112 -0
- package/alert/style/param.scss +7 -0
- package/anchor/anchor-inner.component.ts +10 -0
- package/anchor/anchor.component.html +22 -0
- package/anchor/anchor.component.scss +10 -0
- package/anchor/anchor.component.spec.ts +255 -0
- package/anchor/anchor.component.ts +195 -0
- package/anchor/anchor.module.ts +9 -0
- package/anchor/anchor.property.ts +137 -0
- package/anchor/docs/readme.en_US.md +20 -0
- package/anchor/docs/readme.zh_CN.md +20 -0
- package/anchor/examples/en_US/default/default/default.component.html +146 -0
- package/anchor/examples/en_US/default/default/default.component.scss +7 -0
- package/anchor/examples/en_US/default/default/default.component.ts +10 -0
- package/anchor/examples/en_US/default/default/readme.md +6 -0
- package/anchor/examples/en_US/default/loading/loading.component.html +6 -0
- package/anchor/examples/en_US/default/loading/loading.component.scss +7 -0
- package/anchor/examples/en_US/default/loading/loading.component.ts +128 -0
- package/anchor/examples/en_US/default/loading/readme.md +6 -0
- package/anchor/examples/en_US/default/readme.md +4 -0
- package/anchor/examples/index.ts +2 -0
- package/anchor/examples/zh_CN/default/default/default.component.html +146 -0
- package/anchor/examples/zh_CN/default/default/default.component.scss +7 -0
- package/anchor/examples/zh_CN/default/default/default.component.ts +10 -0
- package/anchor/examples/zh_CN/default/default/readme.md +6 -0
- package/anchor/examples/zh_CN/default/loading/loading.component.html +6 -0
- package/anchor/examples/zh_CN/default/loading/loading.component.scss +7 -0
- package/anchor/examples/zh_CN/default/loading/loading.component.ts +128 -0
- package/anchor/examples/zh_CN/default/loading/readme.md +6 -0
- package/anchor/examples/zh_CN/default/readme.md +4 -0
- package/anchor/index.ts +1 -0
- package/anchor/ng-package.json +5 -0
- package/anchor/public-api.ts +4 -0
- package/anchor/style/mixin.scss +38 -0
- package/anchor/style/param.scss +4 -0
- package/api/api.component.html +1 -0
- package/api/api.component.spec.ts +36 -0
- package/api/api.component.ts +13 -0
- package/api/api.module.ts +8 -0
- package/api/api.property.ts +6 -0
- package/api/docs/readme.en_US.md +8 -0
- package/api/docs/readme.zh_CN.md +8 -0
- package/api/index.ts +1 -0
- package/api/ng-package.json +5 -0
- package/api/public-api.ts +3 -0
- package/api/style/index.scss +10 -0
- package/api/style/mixin.scss +119 -0
- package/api/style/param.scss +4 -0
- package/attachments/attachments.component.html +32 -0
- package/attachments/attachments.component.scss +15 -0
- package/attachments/attachments.component.ts +20 -0
- package/attachments/attachments.module.ts +9 -0
- package/attachments/attachments.property.ts +191 -0
- package/attachments/docs/readme.en_US.md +20 -0
- package/attachments/docs/readme.zh_CN.md +20 -0
- package/attachments/examples/en_US/default/default/default.component.html +27 -0
- package/attachments/examples/en_US/default/default/default.component.scss +7 -0
- package/attachments/examples/en_US/default/default/default.component.ts +26 -0
- package/attachments/examples/en_US/default/default/readme.md +6 -0
- package/attachments/examples/en_US/default/drop/drop.component.html +25 -0
- package/attachments/examples/en_US/default/drop/drop.component.scss +20 -0
- package/attachments/examples/en_US/default/drop/drop.component.ts +29 -0
- package/attachments/examples/en_US/default/drop/readme.md +6 -0
- package/attachments/examples/en_US/default/file-card/file-card.component.html +24 -0
- package/attachments/examples/en_US/default/file-card/file-card.component.scss +7 -0
- package/attachments/examples/en_US/default/file-card/file-card.component.ts +54 -0
- package/attachments/examples/en_US/default/file-card/readme.md +6 -0
- package/attachments/examples/en_US/readme.md +4 -0
- package/attachments/examples/index.ts +3 -0
- package/attachments/examples/zh_CN/default/default/default.component.html +27 -0
- package/attachments/examples/zh_CN/default/default/default.component.scss +7 -0
- package/attachments/examples/zh_CN/default/default/default.component.ts +26 -0
- package/attachments/examples/zh_CN/default/default/readme.md +6 -0
- package/attachments/examples/zh_CN/default/drop/drop.component.html +25 -0
- package/attachments/examples/zh_CN/default/drop/drop.component.scss +20 -0
- package/attachments/examples/zh_CN/default/drop/drop.component.ts +29 -0
- package/attachments/examples/zh_CN/default/drop/readme.md +6 -0
- package/attachments/examples/zh_CN/default/file-card/file-card.component.html +24 -0
- package/attachments/examples/zh_CN/default/file-card/file-card.component.scss +7 -0
- package/attachments/examples/zh_CN/default/file-card/file-card.component.ts +54 -0
- package/attachments/examples/zh_CN/default/file-card/readme.md +6 -0
- package/attachments/examples/zh_CN/readme.md +4 -0
- package/attachments/file-card.component.html +34 -0
- package/attachments/file-card.component.scss +15 -0
- package/attachments/file-card.component.ts +103 -0
- package/attachments/index.ts +1 -0
- package/attachments/ng-package.json +5 -0
- package/attachments/public-api.ts +4 -0
- package/attachments/style/mixin.scss +113 -0
- package/attachments/style/param.scss +5 -0
- package/auto-complete/auto-complete-portal.component.html +25 -0
- package/auto-complete/auto-complete-portal.component.scss +12 -0
- package/auto-complete/auto-complete-portal.component.ts +112 -0
- package/auto-complete/auto-complete.component.html +42 -0
- package/auto-complete/auto-complete.component.scss +19 -0
- package/auto-complete/auto-complete.component.spec.ts +567 -0
- package/auto-complete/auto-complete.component.ts +386 -0
- package/auto-complete/auto-complete.module.ts +8 -0
- package/auto-complete/auto-complete.property.ts +433 -0
- package/auto-complete/docs/readme.en_US.md +20 -0
- package/auto-complete/docs/readme.zh_CN.md +20 -0
- package/auto-complete/examples/en_US/default/bordered/bordered.component.html +23 -0
- package/auto-complete/examples/en_US/default/bordered/bordered.component.scss +11 -0
- package/auto-complete/examples/en_US/default/bordered/bordered.component.ts +13 -0
- package/auto-complete/examples/en_US/default/bordered/readme.md +6 -0
- package/auto-complete/examples/en_US/default/custom/custom.component.html +9 -0
- package/auto-complete/examples/en_US/default/custom/custom.component.scss +8 -0
- package/auto-complete/examples/en_US/default/custom/custom.component.ts +24 -0
- package/auto-complete/examples/en_US/default/custom/readme.md +6 -0
- package/auto-complete/examples/en_US/default/default/default.component.html +24 -0
- package/auto-complete/examples/en_US/default/default/default.component.scss +8 -0
- package/auto-complete/examples/en_US/default/default/default.component.ts +49 -0
- package/auto-complete/examples/en_US/default/default/readme.md +6 -0
- package/auto-complete/examples/en_US/default/disabled/disabled.component.html +10 -0
- package/auto-complete/examples/en_US/default/disabled/disabled.component.scss +8 -0
- package/auto-complete/examples/en_US/default/disabled/disabled.component.ts +22 -0
- package/auto-complete/examples/en_US/default/disabled/readme.md +6 -0
- package/auto-complete/examples/en_US/default/float-label/float-label.component.html +63 -0
- package/auto-complete/examples/en_US/default/float-label/float-label.component.scss +16 -0
- package/auto-complete/examples/en_US/default/float-label/float-label.component.ts +26 -0
- package/auto-complete/examples/en_US/default/float-label/readme.md +6 -0
- package/auto-complete/examples/en_US/default/label/label.component.html +20 -0
- package/auto-complete/examples/en_US/default/label/label.component.scss +8 -0
- package/auto-complete/examples/en_US/default/label/label.component.ts +22 -0
- package/auto-complete/examples/en_US/default/label/readme.md +7 -0
- package/auto-complete/examples/en_US/default/portal-temp/portal-temp.component.html +40 -0
- package/auto-complete/examples/en_US/default/portal-temp/portal-temp.component.scss +20 -0
- package/auto-complete/examples/en_US/default/portal-temp/portal-temp.component.ts +31 -0
- package/auto-complete/examples/en_US/default/portal-temp/readme.md +7 -0
- package/auto-complete/examples/en_US/default/readme.md +4 -0
- package/auto-complete/examples/en_US/default/required/readme.md +6 -0
- package/auto-complete/examples/en_US/default/required/required.component.html +10 -0
- package/auto-complete/examples/en_US/default/required/required.component.scss +8 -0
- package/auto-complete/examples/en_US/default/required/required.component.ts +22 -0
- package/auto-complete/examples/en_US/default/size/readme.md +6 -0
- package/auto-complete/examples/en_US/default/size/size.component.html +21 -0
- package/auto-complete/examples/en_US/default/size/size.component.scss +9 -0
- package/auto-complete/examples/en_US/default/size/size.component.ts +18 -0
- package/auto-complete/examples/en_US/default/variant/readme.md +6 -0
- package/auto-complete/examples/en_US/default/variant/variant.component.html +12 -0
- package/auto-complete/examples/en_US/default/variant/variant.component.scss +5 -0
- package/auto-complete/examples/en_US/default/variant/variant.component.ts +12 -0
- package/auto-complete/examples/index.ts +10 -0
- package/auto-complete/examples/zh_CN/default/bordered/bordered.component.html +23 -0
- package/auto-complete/examples/zh_CN/default/bordered/bordered.component.scss +11 -0
- package/auto-complete/examples/zh_CN/default/bordered/bordered.component.ts +13 -0
- package/auto-complete/examples/zh_CN/default/bordered/readme.md +6 -0
- package/auto-complete/examples/zh_CN/default/custom/custom.component.html +9 -0
- package/auto-complete/examples/zh_CN/default/custom/custom.component.scss +8 -0
- package/auto-complete/examples/zh_CN/default/custom/custom.component.ts +24 -0
- package/auto-complete/examples/zh_CN/default/custom/readme.md +6 -0
- package/auto-complete/examples/zh_CN/default/default/default.component.html +30 -0
- package/auto-complete/examples/zh_CN/default/default/default.component.scss +8 -0
- package/auto-complete/examples/zh_CN/default/default/default.component.ts +49 -0
- package/auto-complete/examples/zh_CN/default/default/readme.md +6 -0
- package/auto-complete/examples/zh_CN/default/disabled/disabled.component.html +10 -0
- package/auto-complete/examples/zh_CN/default/disabled/disabled.component.scss +8 -0
- package/auto-complete/examples/zh_CN/default/disabled/disabled.component.ts +22 -0
- package/auto-complete/examples/zh_CN/default/disabled/readme.md +6 -0
- package/auto-complete/examples/zh_CN/default/float-label/float-label.component.html +63 -0
- package/auto-complete/examples/zh_CN/default/float-label/float-label.component.scss +16 -0
- package/auto-complete/examples/zh_CN/default/float-label/float-label.component.ts +26 -0
- package/auto-complete/examples/zh_CN/default/float-label/readme.md +6 -0
- package/auto-complete/examples/zh_CN/default/label/label.component.html +20 -0
- package/auto-complete/examples/zh_CN/default/label/label.component.scss +8 -0
- package/auto-complete/examples/zh_CN/default/label/label.component.ts +22 -0
- package/auto-complete/examples/zh_CN/default/label/readme.md +7 -0
- package/auto-complete/examples/zh_CN/default/portal-temp/portal-temp.component.html +40 -0
- package/auto-complete/examples/zh_CN/default/portal-temp/portal-temp.component.scss +20 -0
- package/auto-complete/examples/zh_CN/default/portal-temp/portal-temp.component.ts +31 -0
- package/auto-complete/examples/zh_CN/default/portal-temp/readme.md +7 -0
- package/auto-complete/examples/zh_CN/default/readme.md +4 -0
- package/auto-complete/examples/zh_CN/default/required/readme.md +6 -0
- package/auto-complete/examples/zh_CN/default/required/required.component.html +10 -0
- package/auto-complete/examples/zh_CN/default/required/required.component.scss +8 -0
- package/auto-complete/examples/zh_CN/default/required/required.component.ts +22 -0
- package/auto-complete/examples/zh_CN/default/size/readme.md +6 -0
- package/auto-complete/examples/zh_CN/default/size/size.component.html +21 -0
- package/auto-complete/examples/zh_CN/default/size/size.component.scss +9 -0
- package/auto-complete/examples/zh_CN/default/size/size.component.ts +18 -0
- package/auto-complete/examples/zh_CN/default/variant/readme.md +6 -0
- package/auto-complete/examples/zh_CN/default/variant/variant.component.html +12 -0
- package/auto-complete/examples/zh_CN/default/variant/variant.component.scss +5 -0
- package/auto-complete/examples/zh_CN/default/variant/variant.component.ts +12 -0
- package/auto-complete/index.ts +1 -0
- package/auto-complete/ng-package.json +5 -0
- package/auto-complete/public-api.ts +4 -0
- package/auto-complete/style/mixin.scss +30 -0
- package/auto-complete/style/param.scss +39 -0
- package/avatar/avatar-group.component.html +1 -0
- package/avatar/avatar-group.component.scss +14 -0
- package/avatar/avatar-group.component.ts +13 -0
- package/avatar/avatar.component.html +24 -0
- package/avatar/avatar.component.scss +14 -0
- package/avatar/avatar.component.spec.ts +183 -0
- package/avatar/avatar.component.ts +131 -0
- package/avatar/avatar.module.ts +9 -0
- package/avatar/avatar.property.ts +222 -0
- package/avatar/docs/readme.en_US.md +20 -0
- package/avatar/docs/readme.zh_CN.md +20 -0
- package/avatar/examples/en_US/default/badge/badge.component.html +8 -0
- package/avatar/examples/en_US/default/badge/badge.component.scss +13 -0
- package/avatar/examples/en_US/default/badge/badge.component.ts +13 -0
- package/avatar/examples/en_US/default/badge/readme.md +6 -0
- package/avatar/examples/en_US/default/default/default.component.html +14 -0
- package/avatar/examples/en_US/default/default/default.component.scss +12 -0
- package/avatar/examples/en_US/default/default/default.component.ts +12 -0
- package/avatar/examples/en_US/default/default/readme.md +7 -0
- package/avatar/examples/en_US/default/display/display.component.html +5 -0
- package/avatar/examples/en_US/default/display/display.component.scss +12 -0
- package/avatar/examples/en_US/default/display/display.component.ts +14 -0
- package/avatar/examples/en_US/default/display/readme.md +6 -0
- package/avatar/examples/en_US/default/fallback/fallback.component.html +3 -0
- package/avatar/examples/en_US/default/fallback/fallback.component.scss +12 -0
- package/avatar/examples/en_US/default/fallback/fallback.component.ts +10 -0
- package/avatar/examples/en_US/default/fallback/readme.md +6 -0
- package/avatar/examples/en_US/default/fit/fit.component.html +7 -0
- package/avatar/examples/en_US/default/fit/fit.component.scss +12 -0
- package/avatar/examples/en_US/default/fit/fit.component.ts +12 -0
- package/avatar/examples/en_US/default/fit/readme.md +6 -0
- package/avatar/examples/en_US/default/group/group.component.html +8 -0
- package/avatar/examples/en_US/default/group/group.component.scss +9 -0
- package/avatar/examples/en_US/default/group/group.component.ts +12 -0
- package/avatar/examples/en_US/default/group/readme.md +6 -0
- package/avatar/examples/en_US/default/label/label.component.html +5 -0
- package/avatar/examples/en_US/default/label/label.component.scss +12 -0
- package/avatar/examples/en_US/default/label/label.component.ts +23 -0
- package/avatar/examples/en_US/default/label/readme.md +6 -0
- package/avatar/examples/en_US/default/readme.md +4 -0
- package/avatar/examples/en_US/default/response/readme.md +6 -0
- package/avatar/examples/en_US/default/response/response.component.html +3 -0
- package/avatar/examples/en_US/default/response/response.component.scss +12 -0
- package/avatar/examples/en_US/default/response/response.component.ts +12 -0
- package/avatar/examples/index.ts +8 -0
- package/avatar/examples/zh_CN/default/badge/badge.component.html +8 -0
- package/avatar/examples/zh_CN/default/badge/badge.component.scss +13 -0
- package/avatar/examples/zh_CN/default/badge/badge.component.ts +13 -0
- package/avatar/examples/zh_CN/default/badge/readme.md +6 -0
- package/avatar/examples/zh_CN/default/default/default.component.html +14 -0
- package/avatar/examples/zh_CN/default/default/default.component.scss +12 -0
- package/avatar/examples/zh_CN/default/default/default.component.ts +12 -0
- package/avatar/examples/zh_CN/default/default/readme.md +7 -0
- package/avatar/examples/zh_CN/default/display/display.component.html +5 -0
- package/avatar/examples/zh_CN/default/display/display.component.scss +12 -0
- package/avatar/examples/zh_CN/default/display/display.component.ts +14 -0
- package/avatar/examples/zh_CN/default/display/readme.md +6 -0
- package/avatar/examples/zh_CN/default/fallback/fallback.component.html +3 -0
- package/avatar/examples/zh_CN/default/fallback/fallback.component.scss +12 -0
- package/avatar/examples/zh_CN/default/fallback/fallback.component.ts +10 -0
- package/avatar/examples/zh_CN/default/fallback/readme.md +6 -0
- package/avatar/examples/zh_CN/default/fit/fit.component.html +7 -0
- package/avatar/examples/zh_CN/default/fit/fit.component.scss +12 -0
- package/avatar/examples/zh_CN/default/fit/fit.component.ts +12 -0
- package/avatar/examples/zh_CN/default/fit/readme.md +6 -0
- package/avatar/examples/zh_CN/default/group/group.component.html +8 -0
- package/avatar/examples/zh_CN/default/group/group.component.scss +9 -0
- package/avatar/examples/zh_CN/default/group/group.component.ts +12 -0
- package/avatar/examples/zh_CN/default/group/readme.md +6 -0
- package/avatar/examples/zh_CN/default/label/label.component.html +5 -0
- package/avatar/examples/zh_CN/default/label/label.component.scss +12 -0
- package/avatar/examples/zh_CN/default/label/label.component.ts +23 -0
- package/avatar/examples/zh_CN/default/label/readme.md +6 -0
- package/avatar/examples/zh_CN/default/readme.md +4 -0
- package/avatar/examples/zh_CN/default/response/readme.md +6 -0
- package/avatar/examples/zh_CN/default/response/response.component.html +3 -0
- package/avatar/examples/zh_CN/default/response/response.component.scss +12 -0
- package/avatar/examples/zh_CN/default/response/response.component.ts +12 -0
- package/avatar/index.ts +1 -0
- package/avatar/ng-package.json +5 -0
- package/avatar/public-api.ts +4 -0
- package/avatar/style/mixin.scss +62 -0
- package/avatar/style/param.scss +12 -0
- package/back-top/back-top.component.html +10 -0
- package/back-top/back-top.component.scss +10 -0
- package/back-top/back-top.component.spec.ts +201 -0
- package/back-top/back-top.component.ts +127 -0
- package/back-top/back-top.module.ts +7 -0
- package/back-top/back-top.property.ts +43 -0
- package/back-top/docs/readme.en_US.md +20 -0
- package/back-top/docs/readme.zh_CN.md +20 -0
- package/back-top/examples/en_US/default/custom/custom.component.html +5 -0
- package/back-top/examples/en_US/default/custom/custom.component.scss +16 -0
- package/back-top/examples/en_US/default/custom/custom.component.ts +10 -0
- package/back-top/examples/en_US/default/custom/readme.md +6 -0
- package/back-top/examples/en_US/default/default/default.component.html +2 -0
- package/back-top/examples/en_US/default/default/default.component.ts +9 -0
- package/back-top/examples/en_US/default/default/readme.md +6 -0
- package/back-top/examples/en_US/default/readme.md +4 -0
- package/back-top/examples/en_US/default/target/readme.md +6 -0
- package/back-top/examples/en_US/default/target/target.component.html +8 -0
- package/back-top/examples/en_US/default/target/target.component.scss +17 -0
- package/back-top/examples/en_US/default/target/target.component.ts +13 -0
- package/back-top/examples/index.ts +3 -0
- package/back-top/examples/zh_CN/default/custom/custom.component.html +5 -0
- package/back-top/examples/zh_CN/default/custom/custom.component.scss +16 -0
- package/back-top/examples/zh_CN/default/custom/custom.component.ts +10 -0
- package/back-top/examples/zh_CN/default/custom/readme.md +6 -0
- package/back-top/examples/zh_CN/default/default/default.component.html +2 -0
- package/back-top/examples/zh_CN/default/default/default.component.ts +17 -0
- package/back-top/examples/zh_CN/default/default/readme.md +6 -0
- package/back-top/examples/zh_CN/default/readme.md +4 -0
- package/back-top/examples/zh_CN/default/target/readme.md +6 -0
- package/back-top/examples/zh_CN/default/target/target.component.html +8 -0
- package/back-top/examples/zh_CN/default/target/target.component.scss +17 -0
- package/back-top/examples/zh_CN/default/target/target.component.ts +13 -0
- package/back-top/index.ts +1 -0
- package/back-top/ng-package.json +5 -0
- package/back-top/public-api.ts +3 -0
- package/back-top/style/mixin.scss +20 -0
- package/back-top/style/param.scss +4 -0
- package/badge/badge.component.html +42 -0
- package/badge/badge.component.scss +15 -0
- package/badge/badge.component.spec.ts +138 -0
- package/badge/badge.component.ts +63 -0
- package/badge/badge.module.ts +8 -0
- package/badge/badge.property.ts +132 -0
- package/badge/docs/readme.en_US.md +20 -0
- package/badge/docs/readme.zh_CN.md +20 -0
- package/badge/examples/en_US/default/animation/animation.component.html +14 -0
- package/badge/examples/en_US/default/animation/animation.component.scss +8 -0
- package/badge/examples/en_US/default/animation/animation.component.ts +19 -0
- package/badge/examples/en_US/default/animation/readme.md +4 -0
- package/badge/examples/en_US/default/color/color.component.html +20 -0
- package/badge/examples/en_US/default/color/color.component.scss +12 -0
- package/badge/examples/en_US/default/color/color.component.ts +11 -0
- package/badge/examples/en_US/default/color/readme.md +6 -0
- package/badge/examples/en_US/default/custom/custom.component.html +8 -0
- package/badge/examples/en_US/default/custom/custom.component.scss +12 -0
- package/badge/examples/en_US/default/custom/custom.component.ts +11 -0
- package/badge/examples/en_US/default/custom/readme.md +7 -0
- package/badge/examples/en_US/default/default/default.component.html +8 -0
- package/badge/examples/en_US/default/default/default.component.scss +12 -0
- package/badge/examples/en_US/default/default/default.component.ts +11 -0
- package/badge/examples/en_US/default/default/readme.md +7 -0
- package/badge/examples/en_US/default/dot/dot.component.html +8 -0
- package/badge/examples/en_US/default/dot/dot.component.scss +12 -0
- package/badge/examples/en_US/default/dot/dot.component.ts +12 -0
- package/badge/examples/en_US/default/dot/readme.md +7 -0
- package/badge/examples/en_US/default/max/max.component.html +8 -0
- package/badge/examples/en_US/default/max/max.component.scss +12 -0
- package/badge/examples/en_US/default/max/max.component.ts +11 -0
- package/badge/examples/en_US/default/max/readme.md +6 -0
- package/badge/examples/en_US/default/offset/offset.component.html +8 -0
- package/badge/examples/en_US/default/offset/offset.component.scss +12 -0
- package/badge/examples/en_US/default/offset/offset.component.ts +11 -0
- package/badge/examples/en_US/default/offset/readme.md +6 -0
- package/badge/examples/en_US/default/readme.md +4 -0
- package/badge/examples/en_US/default/standalone/readme.md +6 -0
- package/badge/examples/en_US/default/standalone/standalone.component.html +6 -0
- package/badge/examples/en_US/default/standalone/standalone.component.scss +12 -0
- package/badge/examples/en_US/default/standalone/standalone.component.ts +10 -0
- package/badge/examples/index.ts +8 -0
- package/badge/examples/zh_CN/default/animation/animation.component.html +14 -0
- package/badge/examples/zh_CN/default/animation/animation.component.scss +8 -0
- package/badge/examples/zh_CN/default/animation/animation.component.ts +19 -0
- package/badge/examples/zh_CN/default/animation/readme.md +4 -0
- package/badge/examples/zh_CN/default/color/color.component.html +20 -0
- package/badge/examples/zh_CN/default/color/color.component.scss +12 -0
- package/badge/examples/zh_CN/default/color/color.component.ts +11 -0
- package/badge/examples/zh_CN/default/color/readme.md +6 -0
- package/badge/examples/zh_CN/default/custom/custom.component.html +8 -0
- package/badge/examples/zh_CN/default/custom/custom.component.scss +12 -0
- package/badge/examples/zh_CN/default/custom/custom.component.ts +11 -0
- package/badge/examples/zh_CN/default/custom/readme.md +7 -0
- package/badge/examples/zh_CN/default/default/default.component.html +8 -0
- package/badge/examples/zh_CN/default/default/default.component.scss +12 -0
- package/badge/examples/zh_CN/default/default/default.component.ts +11 -0
- package/badge/examples/zh_CN/default/default/readme.md +7 -0
- package/badge/examples/zh_CN/default/dot/dot.component.html +8 -0
- package/badge/examples/zh_CN/default/dot/dot.component.scss +12 -0
- package/badge/examples/zh_CN/default/dot/dot.component.ts +12 -0
- package/badge/examples/zh_CN/default/dot/readme.md +7 -0
- package/badge/examples/zh_CN/default/max/max.component.html +8 -0
- package/badge/examples/zh_CN/default/max/max.component.scss +12 -0
- package/badge/examples/zh_CN/default/max/max.component.ts +11 -0
- package/badge/examples/zh_CN/default/max/readme.md +6 -0
- package/badge/examples/zh_CN/default/offset/offset.component.html +8 -0
- package/badge/examples/zh_CN/default/offset/offset.component.scss +12 -0
- package/badge/examples/zh_CN/default/offset/offset.component.ts +11 -0
- package/badge/examples/zh_CN/default/offset/readme.md +6 -0
- package/badge/examples/zh_CN/default/readme.md +4 -0
- package/badge/examples/zh_CN/default/standalone/readme.md +6 -0
- package/badge/examples/zh_CN/default/standalone/standalone.component.html +6 -0
- package/badge/examples/zh_CN/default/standalone/standalone.component.scss +12 -0
- package/badge/examples/zh_CN/default/standalone/standalone.component.ts +10 -0
- package/badge/index.ts +1 -0
- package/badge/ng-package.json +5 -0
- package/badge/public-api.ts +3 -0
- package/badge/style/mixin.scss +130 -0
- package/badge/style/param.scss +10 -0
- package/base-form/base-form.component.spec.ts +172 -0
- package/base-form/base-form.component.ts +110 -0
- package/base-form/base-form.module.ts +7 -0
- package/base-form/base-form.property.ts +191 -0
- package/base-form/docs/readme.en_US.md +4 -0
- package/base-form/docs/readme.zh_CN.md +4 -0
- package/base-form/index.ts +1 -0
- package/base-form/ng-package.json +5 -0
- package/base-form/public-api.ts +3 -0
- package/bubble/bubble.component.html +70 -0
- package/bubble/bubble.component.scss +9 -0
- package/bubble/bubble.component.ts +240 -0
- package/bubble/bubble.module.ts +9 -0
- package/bubble/bubble.property.ts +164 -0
- package/bubble/bubbles.component.html +1 -0
- package/bubble/bubbles.component.scss +9 -0
- package/bubble/bubbles.component.ts +153 -0
- package/bubble/bubbles.token.ts +8 -0
- package/bubble/docs/readme.en_US.md +20 -0
- package/bubble/docs/readme.zh_CN.md +20 -0
- package/bubble/examples/en_US/default/avatar/avatar.component.html +17 -0
- package/bubble/examples/en_US/default/avatar/avatar.component.scss +10 -0
- package/bubble/examples/en_US/default/avatar/avatar.component.ts +10 -0
- package/bubble/examples/en_US/default/avatar/readme.md +6 -0
- package/bubble/examples/en_US/default/default/default.component.html +1 -0
- package/bubble/examples/en_US/default/default/default.component.scss +2 -0
- package/bubble/examples/en_US/default/default/default.component.ts +10 -0
- package/bubble/examples/en_US/default/default/readme.md +6 -0
- package/bubble/examples/en_US/default/header/header.component.html +15 -0
- package/bubble/examples/en_US/default/header/header.component.scss +2 -0
- package/bubble/examples/en_US/default/header/header.component.ts +11 -0
- package/bubble/examples/en_US/default/header/readme.md +6 -0
- package/bubble/examples/en_US/default/list/list.component.html +26 -0
- package/bubble/examples/en_US/default/list/list.component.scss +7 -0
- package/bubble/examples/en_US/default/list/list.component.ts +67 -0
- package/bubble/examples/en_US/default/list/readme.md +6 -0
- package/bubble/examples/en_US/default/loading/loading.component.html +3 -0
- package/bubble/examples/en_US/default/loading/loading.component.scss +2 -0
- package/bubble/examples/en_US/default/loading/loading.component.ts +14 -0
- package/bubble/examples/en_US/default/loading/readme.md +6 -0
- package/bubble/examples/en_US/default/renderer/readme.md +6 -0
- package/bubble/examples/en_US/default/renderer/renderer.component.html +4 -0
- package/bubble/examples/en_US/default/renderer/renderer.component.scss +2 -0
- package/bubble/examples/en_US/default/renderer/renderer.component.ts +35 -0
- package/bubble/examples/en_US/default/template/readme.md +6 -0
- package/bubble/examples/en_US/default/template/template.component.html +31 -0
- package/bubble/examples/en_US/default/template/template.component.scss +15 -0
- package/bubble/examples/en_US/default/template/template.component.ts +14 -0
- package/bubble/examples/en_US/default/typing/readme.md +6 -0
- package/bubble/examples/en_US/default/typing/typing.component.html +4 -0
- package/bubble/examples/en_US/default/typing/typing.component.scss +2 -0
- package/bubble/examples/en_US/default/typing/typing.component.ts +20 -0
- package/bubble/examples/en_US/default/variant/readme.md +6 -0
- package/bubble/examples/en_US/default/variant/variant.component.html +6 -0
- package/bubble/examples/en_US/default/variant/variant.component.scss +10 -0
- package/bubble/examples/en_US/default/variant/variant.component.ts +10 -0
- package/bubble/examples/en_US/readme.md +4 -0
- package/bubble/examples/index.ts +9 -0
- package/bubble/examples/zh_CN/default/avatar/avatar.component.html +19 -0
- package/bubble/examples/zh_CN/default/avatar/avatar.component.scss +10 -0
- package/bubble/examples/zh_CN/default/avatar/avatar.component.ts +10 -0
- package/bubble/examples/zh_CN/default/avatar/readme.md +6 -0
- package/bubble/examples/zh_CN/default/default/default.component.html +1 -0
- package/bubble/examples/zh_CN/default/default/default.component.scss +2 -0
- package/bubble/examples/zh_CN/default/default/default.component.ts +10 -0
- package/bubble/examples/zh_CN/default/default/readme.md +6 -0
- package/bubble/examples/zh_CN/default/header/header.component.html +15 -0
- package/bubble/examples/zh_CN/default/header/header.component.scss +2 -0
- package/bubble/examples/zh_CN/default/header/header.component.ts +11 -0
- package/bubble/examples/zh_CN/default/header/readme.md +6 -0
- package/bubble/examples/zh_CN/default/list/list.component.html +26 -0
- package/bubble/examples/zh_CN/default/list/list.component.scss +7 -0
- package/bubble/examples/zh_CN/default/list/list.component.ts +67 -0
- package/bubble/examples/zh_CN/default/list/readme.md +6 -0
- package/bubble/examples/zh_CN/default/loading/loading.component.html +3 -0
- package/bubble/examples/zh_CN/default/loading/loading.component.scss +2 -0
- package/bubble/examples/zh_CN/default/loading/loading.component.ts +14 -0
- package/bubble/examples/zh_CN/default/loading/readme.md +6 -0
- package/bubble/examples/zh_CN/default/renderer/readme.md +6 -0
- package/bubble/examples/zh_CN/default/renderer/renderer.component.html +4 -0
- package/bubble/examples/zh_CN/default/renderer/renderer.component.scss +2 -0
- package/bubble/examples/zh_CN/default/renderer/renderer.component.ts +35 -0
- package/bubble/examples/zh_CN/default/template/readme.md +6 -0
- package/bubble/examples/zh_CN/default/template/template.component.html +31 -0
- package/bubble/examples/zh_CN/default/template/template.component.scss +15 -0
- package/bubble/examples/zh_CN/default/template/template.component.ts +14 -0
- package/bubble/examples/zh_CN/default/typing/readme.md +6 -0
- package/bubble/examples/zh_CN/default/typing/typing.component.html +10 -0
- package/bubble/examples/zh_CN/default/typing/typing.component.scss +2 -0
- package/bubble/examples/zh_CN/default/typing/typing.component.ts +32 -0
- package/bubble/examples/zh_CN/default/variant/readme.md +6 -0
- package/bubble/examples/zh_CN/default/variant/variant.component.html +6 -0
- package/bubble/examples/zh_CN/default/variant/variant.component.scss +10 -0
- package/bubble/examples/zh_CN/default/variant/variant.component.ts +10 -0
- package/bubble/examples/zh_CN/readme.md +4 -0
- package/bubble/index.ts +1 -0
- package/bubble/ng-package.json +5 -0
- package/bubble/public-api.ts +3 -0
- package/bubble/style/mixin.scss +159 -0
- package/bubble/style/param.scss +5 -0
- package/button/button.component.html +36 -0
- package/button/button.component.scss +195 -0
- package/button/button.component.spec.ts +232 -0
- package/button/button.component.ts +85 -0
- package/button/button.module.ts +9 -0
- package/button/button.property.ts +336 -0
- package/button/buttons.component.scss +14 -0
- package/button/buttons.component.ts +31 -0
- package/button/docs/readme.en_US.md +21 -0
- package/button/docs/readme.zh_CN.md +21 -0
- package/button/examples/en_US/default/default/default.component.html +96 -0
- package/button/examples/en_US/default/default/default.component.scss +8 -0
- package/button/examples/en_US/default/default/default.component.ts +10 -0
- package/button/examples/en_US/default/default/readme.md +8 -0
- package/button/examples/en_US/default/disabled/disabled.component.html +96 -0
- package/button/examples/en_US/default/disabled/disabled.component.scss +8 -0
- package/button/examples/en_US/default/disabled/disabled.component.ts +10 -0
- package/button/examples/en_US/default/disabled/readme.md +8 -0
- package/button/examples/en_US/default/group/group.component.html +129 -0
- package/button/examples/en_US/default/group/group.component.scss +12 -0
- package/button/examples/en_US/default/group/group.component.ts +10 -0
- package/button/examples/en_US/default/group/readme.md +10 -0
- package/button/examples/en_US/default/loading/loading.component.html +3 -0
- package/button/examples/en_US/default/loading/loading.component.scss +8 -0
- package/button/examples/en_US/default/loading/loading.component.ts +20 -0
- package/button/examples/en_US/default/loading/readme.md +8 -0
- package/button/examples/en_US/default/readme.md +4 -0
- package/button/examples/en_US/default/size/readme.md +8 -0
- package/button/examples/en_US/default/size/size.component.html +28 -0
- package/button/examples/en_US/default/size/size.component.scss +8 -0
- package/button/examples/en_US/default/size/size.component.ts +10 -0
- package/button/examples/en_US/default/text/readme.md +6 -0
- package/button/examples/en_US/default/text/text.component.html +4 -0
- package/button/examples/en_US/default/text/text.component.scss +8 -0
- package/button/examples/en_US/default/text/text.component.ts +10 -0
- package/button/examples/index.ts +6 -0
- package/button/examples/zh_CN/default/default/default.component.html +96 -0
- package/button/examples/zh_CN/default/default/default.component.scss +8 -0
- package/button/examples/zh_CN/default/default/default.component.ts +10 -0
- package/button/examples/zh_CN/default/default/readme.md +8 -0
- package/button/examples/zh_CN/default/disabled/disabled.component.html +96 -0
- package/button/examples/zh_CN/default/disabled/disabled.component.scss +8 -0
- package/button/examples/zh_CN/default/disabled/disabled.component.ts +10 -0
- package/button/examples/zh_CN/default/disabled/readme.md +8 -0
- package/button/examples/zh_CN/default/group/group.component.html +267 -0
- package/button/examples/zh_CN/default/group/group.component.scss +12 -0
- package/button/examples/zh_CN/default/group/group.component.ts +10 -0
- package/button/examples/zh_CN/default/group/readme.md +10 -0
- package/button/examples/zh_CN/default/loading/loading.component.html +3 -0
- package/button/examples/zh_CN/default/loading/loading.component.scss +8 -0
- package/button/examples/zh_CN/default/loading/loading.component.ts +20 -0
- package/button/examples/zh_CN/default/loading/readme.md +8 -0
- package/button/examples/zh_CN/default/readme.md +4 -0
- package/button/examples/zh_CN/default/size/readme.md +8 -0
- package/button/examples/zh_CN/default/size/size.component.html +28 -0
- package/button/examples/zh_CN/default/size/size.component.scss +8 -0
- package/button/examples/zh_CN/default/size/size.component.ts +10 -0
- package/button/examples/zh_CN/default/text/readme.md +6 -0
- package/button/examples/zh_CN/default/text/text.component.html +4 -0
- package/button/examples/zh_CN/default/text/text.component.scss +8 -0
- package/button/examples/zh_CN/default/text/text.component.ts +10 -0
- package/button/index.ts +1 -0
- package/button/ng-package.json +5 -0
- package/button/public-api.ts +4 -0
- package/button/style/mixin.scss +371 -0
- package/button/style/param.scss +192 -0
- package/calendar/calendar.component.html +94 -0
- package/calendar/calendar.component.scss +14 -0
- package/calendar/calendar.component.spec.ts +184 -0
- package/calendar/calendar.component.ts +170 -0
- package/calendar/calendar.module.ts +8 -0
- package/calendar/calendar.property.ts +187 -0
- package/calendar/docs/readme.en_US.md +20 -0
- package/calendar/docs/readme.zh_CN.md +20 -0
- package/calendar/examples/en_US/default/card/card.component.html +8 -0
- package/calendar/examples/en_US/default/card/card.component.scss +5 -0
- package/calendar/examples/en_US/default/card/card.component.ts +20 -0
- package/calendar/examples/en_US/default/card/readme.md +6 -0
- package/calendar/examples/en_US/default/default/default.component.html +3 -0
- package/calendar/examples/en_US/default/default/default.component.scss +5 -0
- package/calendar/examples/en_US/default/default/default.component.ts +35 -0
- package/calendar/examples/en_US/default/default/readme.md +6 -0
- package/calendar/examples/en_US/default/header/header.component.html +5 -0
- package/calendar/examples/en_US/default/header/header.component.scss +5 -0
- package/calendar/examples/en_US/default/header/header.component.ts +35 -0
- package/calendar/examples/en_US/default/header/readme.md +6 -0
- package/calendar/examples/en_US/default/readme.md +4 -0
- package/calendar/examples/index.ts +3 -0
- package/calendar/examples/zh_CN/default/card/card.component.html +8 -0
- package/calendar/examples/zh_CN/default/card/card.component.scss +5 -0
- package/calendar/examples/zh_CN/default/card/card.component.ts +20 -0
- package/calendar/examples/zh_CN/default/card/readme.md +6 -0
- package/calendar/examples/zh_CN/default/default/default.component.html +3 -0
- package/calendar/examples/zh_CN/default/default/default.component.scss +5 -0
- package/calendar/examples/zh_CN/default/default/default.component.ts +35 -0
- package/calendar/examples/zh_CN/default/default/readme.md +6 -0
- package/calendar/examples/zh_CN/default/header/header.component.html +5 -0
- package/calendar/examples/zh_CN/default/header/header.component.scss +5 -0
- package/calendar/examples/zh_CN/default/header/header.component.ts +35 -0
- package/calendar/examples/zh_CN/default/header/readme.md +6 -0
- package/calendar/examples/zh_CN/default/readme.md +4 -0
- package/calendar/index.ts +1 -0
- package/calendar/ng-package.json +5 -0
- package/calendar/public-api.ts +3 -0
- package/calendar/style/mixin.scss +182 -0
- package/calendar/style/param.scss +6 -0
- package/card/card.component.html +10 -0
- package/card/card.component.scss +14 -0
- package/card/card.component.spec.ts +95 -0
- package/card/card.component.ts +20 -0
- package/card/card.module.ts +8 -0
- package/card/card.property.ts +93 -0
- package/card/docs/readme.en_US.md +20 -0
- package/card/docs/readme.zh_CN.md +20 -0
- package/card/examples/en_US/default/default/default.component.html +9 -0
- package/card/examples/en_US/default/default/default.component.ts +11 -0
- package/card/examples/en_US/default/default/readme.md +6 -0
- package/card/examples/en_US/default/header/header.component.html +13 -0
- package/card/examples/en_US/default/header/header.component.ts +12 -0
- package/card/examples/en_US/default/header/readme.md +6 -0
- package/card/examples/en_US/default/img/img.component.html +12 -0
- package/card/examples/en_US/default/img/img.component.scss +27 -0
- package/card/examples/en_US/default/img/img.component.ts +11 -0
- package/card/examples/en_US/default/img/readme.md +6 -0
- package/card/examples/en_US/default/readme.md +4 -0
- package/card/examples/en_US/default/shadow/readme.md +7 -0
- package/card/examples/en_US/default/shadow/shadow.component.html +19 -0
- package/card/examples/en_US/default/shadow/shadow.component.ts +10 -0
- package/card/examples/en_US/default/variant/readme.md +6 -0
- package/card/examples/en_US/default/variant/variant.component.html +36 -0
- package/card/examples/en_US/default/variant/variant.component.scss +7 -0
- package/card/examples/en_US/default/variant/variant.component.ts +12 -0
- package/card/examples/index.ts +5 -0
- package/card/examples/zh_CN/default/default/default.component.html +9 -0
- package/card/examples/zh_CN/default/default/default.component.ts +11 -0
- package/card/examples/zh_CN/default/default/readme.md +6 -0
- package/card/examples/zh_CN/default/header/header.component.html +13 -0
- package/card/examples/zh_CN/default/header/header.component.ts +12 -0
- package/card/examples/zh_CN/default/header/readme.md +6 -0
- package/card/examples/zh_CN/default/img/img.component.html +12 -0
- package/card/examples/zh_CN/default/img/img.component.scss +27 -0
- package/card/examples/zh_CN/default/img/img.component.ts +11 -0
- package/card/examples/zh_CN/default/img/readme.md +6 -0
- package/card/examples/zh_CN/default/readme.md +4 -0
- package/card/examples/zh_CN/default/shadow/readme.md +7 -0
- package/card/examples/zh_CN/default/shadow/shadow.component.html +19 -0
- package/card/examples/zh_CN/default/shadow/shadow.component.ts +10 -0
- package/card/examples/zh_CN/default/variant/readme.md +6 -0
- package/card/examples/zh_CN/default/variant/variant.component.html +36 -0
- package/card/examples/zh_CN/default/variant/variant.component.scss +7 -0
- package/card/examples/zh_CN/default/variant/variant.component.ts +12 -0
- package/card/index.ts +1 -0
- package/card/ng-package.json +5 -0
- package/card/public-api.ts +3 -0
- package/card/style/mixin.scss +47 -0
- package/card/style/param.scss +6 -0
- package/carousel/carousel-panel.component.html +6 -0
- package/carousel/carousel-panel.component.scss +10 -0
- package/carousel/carousel-panel.component.ts +146 -0
- package/carousel/carousel.component.html +41 -0
- package/carousel/carousel.component.scss +10 -0
- package/carousel/carousel.component.spec.ts +287 -0
- package/carousel/carousel.component.ts +120 -0
- package/carousel/carousel.module.ts +9 -0
- package/carousel/carousel.property.ts +261 -0
- package/carousel/docs/readme.en_US.md +20 -0
- package/carousel/docs/readme.zh_CN.md +20 -0
- package/carousel/examples/en_US/default/arrow/arrow.component.html +18 -0
- package/carousel/examples/en_US/default/arrow/arrow.component.scss +17 -0
- package/carousel/examples/en_US/default/arrow/arrow.component.ts +12 -0
- package/carousel/examples/en_US/default/arrow/readme.md +7 -0
- package/carousel/examples/en_US/default/card/card.component.html +9 -0
- package/carousel/examples/en_US/default/card/card.component.scss +14 -0
- package/carousel/examples/en_US/default/card/card.component.ts +12 -0
- package/carousel/examples/en_US/default/card/readme.md +7 -0
- package/carousel/examples/en_US/default/default/default.component.html +22 -0
- package/carousel/examples/en_US/default/default/default.component.scss +14 -0
- package/carousel/examples/en_US/default/default/default.component.ts +13 -0
- package/carousel/examples/en_US/default/default/readme.md +7 -0
- package/carousel/examples/en_US/default/direction/direction.component.html +9 -0
- package/carousel/examples/en_US/default/direction/direction.component.scss +14 -0
- package/carousel/examples/en_US/default/direction/direction.component.ts +12 -0
- package/carousel/examples/en_US/default/direction/readme.md +6 -0
- package/carousel/examples/en_US/default/readme.md +4 -0
- package/carousel/examples/index.ts +4 -0
- package/carousel/examples/zh_CN/default/arrow/arrow.component.html +18 -0
- package/carousel/examples/zh_CN/default/arrow/arrow.component.scss +17 -0
- package/carousel/examples/zh_CN/default/arrow/arrow.component.ts +12 -0
- package/carousel/examples/zh_CN/default/arrow/readme.md +7 -0
- package/carousel/examples/zh_CN/default/card/card.component.html +9 -0
- package/carousel/examples/zh_CN/default/card/card.component.scss +14 -0
- package/carousel/examples/zh_CN/default/card/card.component.ts +12 -0
- package/carousel/examples/zh_CN/default/card/readme.md +7 -0
- package/carousel/examples/zh_CN/default/default/default.component.html +22 -0
- package/carousel/examples/zh_CN/default/default/default.component.scss +19 -0
- package/carousel/examples/zh_CN/default/default/default.component.ts +12 -0
- package/carousel/examples/zh_CN/default/default/readme.md +7 -0
- package/carousel/examples/zh_CN/default/direction/direction.component.html +9 -0
- package/carousel/examples/zh_CN/default/direction/direction.component.scss +14 -0
- package/carousel/examples/zh_CN/default/direction/direction.component.ts +12 -0
- package/carousel/examples/zh_CN/default/direction/readme.md +6 -0
- package/carousel/examples/zh_CN/default/readme.md +4 -0
- package/carousel/index.ts +1 -0
- package/carousel/ng-package.json +5 -0
- package/carousel/public-api.ts +4 -0
- package/carousel/style/mixin.scss +236 -0
- package/carousel/style/param.scss +5 -0
- package/cascade/cascade-portal.component.html +21 -0
- package/cascade/cascade-portal.component.scss +9 -0
- package/cascade/cascade-portal.component.ts +159 -0
- package/cascade/cascade.component.html +44 -0
- package/cascade/cascade.component.scss +15 -0
- package/cascade/cascade.component.spec.ts +583 -0
- package/cascade/cascade.component.ts +285 -0
- package/cascade/cascade.module.ts +8 -0
- package/cascade/cascade.property.ts +404 -0
- package/cascade/docs/readme.en_US.md +20 -0
- package/cascade/docs/readme.zh_CN.md +20 -0
- package/cascade/examples/en_US/default/bordered/bordered.component.html +23 -0
- package/cascade/examples/en_US/default/bordered/bordered.component.scss +11 -0
- package/cascade/examples/en_US/default/bordered/bordered.component.ts +50 -0
- package/cascade/examples/en_US/default/bordered/readme.md +6 -0
- package/cascade/examples/en_US/default/default/default.component.html +15 -0
- package/cascade/examples/en_US/default/default/default.component.scss +8 -0
- package/cascade/examples/en_US/default/default/default.component.ts +54 -0
- package/cascade/examples/en_US/default/default/readme.md +7 -0
- package/cascade/examples/en_US/default/disabled/disabled.component.html +10 -0
- package/cascade/examples/en_US/default/disabled/disabled.component.scss +8 -0
- package/cascade/examples/en_US/default/disabled/disabled.component.ts +52 -0
- package/cascade/examples/en_US/default/disabled/readme.md +6 -0
- package/cascade/examples/en_US/default/float-label/float-label.component.html +63 -0
- package/cascade/examples/en_US/default/float-label/float-label.component.scss +16 -0
- package/cascade/examples/en_US/default/float-label/float-label.component.ts +63 -0
- package/cascade/examples/en_US/default/float-label/readme.md +6 -0
- package/cascade/examples/en_US/default/hover/hover.component.html +8 -0
- package/cascade/examples/en_US/default/hover/hover.component.scss +8 -0
- package/cascade/examples/en_US/default/hover/hover.component.ts +53 -0
- package/cascade/examples/en_US/default/hover/readme.md +7 -0
- package/cascade/examples/en_US/default/label/label.component.html +20 -0
- package/cascade/examples/en_US/default/label/label.component.scss +8 -0
- package/cascade/examples/en_US/default/label/label.component.ts +52 -0
- package/cascade/examples/en_US/default/label/readme.md +7 -0
- package/cascade/examples/en_US/default/readme.md +4 -0
- package/cascade/examples/en_US/default/required/readme.md +6 -0
- package/cascade/examples/en_US/default/required/required.component.html +10 -0
- package/cascade/examples/en_US/default/required/required.component.scss +8 -0
- package/cascade/examples/en_US/default/required/required.component.ts +52 -0
- package/cascade/examples/en_US/default/size/readme.md +6 -0
- package/cascade/examples/en_US/default/size/size.component.html +21 -0
- package/cascade/examples/en_US/default/size/size.component.scss +9 -0
- package/cascade/examples/en_US/default/size/size.component.ts +55 -0
- package/cascade/examples/index.ts +9 -0
- package/cascade/examples/zh_CN/default/bordered/bordered.component.html +17 -0
- package/cascade/examples/zh_CN/default/bordered/bordered.component.scss +11 -0
- package/cascade/examples/zh_CN/default/bordered/bordered.component.ts +50 -0
- package/cascade/examples/zh_CN/default/bordered/readme.md +6 -0
- package/cascade/examples/zh_CN/default/default/default.component.html +15 -0
- package/cascade/examples/zh_CN/default/default/default.component.scss +8 -0
- package/cascade/examples/zh_CN/default/default/default.component.ts +54 -0
- package/cascade/examples/zh_CN/default/default/readme.md +7 -0
- package/cascade/examples/zh_CN/default/disabled/disabled.component.html +10 -0
- package/cascade/examples/zh_CN/default/disabled/disabled.component.scss +8 -0
- package/cascade/examples/zh_CN/default/disabled/disabled.component.ts +52 -0
- package/cascade/examples/zh_CN/default/disabled/readme.md +6 -0
- package/cascade/examples/zh_CN/default/float-label/float-label.component.html +63 -0
- package/cascade/examples/zh_CN/default/float-label/float-label.component.scss +16 -0
- package/cascade/examples/zh_CN/default/float-label/float-label.component.ts +63 -0
- package/cascade/examples/zh_CN/default/float-label/readme.md +6 -0
- package/cascade/examples/zh_CN/default/hover/hover.component.html +8 -0
- package/cascade/examples/zh_CN/default/hover/hover.component.scss +8 -0
- package/cascade/examples/zh_CN/default/hover/hover.component.ts +53 -0
- package/cascade/examples/zh_CN/default/hover/readme.md +7 -0
- package/cascade/examples/zh_CN/default/label/label.component.html +20 -0
- package/cascade/examples/zh_CN/default/label/label.component.scss +8 -0
- package/cascade/examples/zh_CN/default/label/label.component.ts +52 -0
- package/cascade/examples/zh_CN/default/label/readme.md +7 -0
- package/cascade/examples/zh_CN/default/readme.md +4 -0
- package/cascade/examples/zh_CN/default/required/readme.md +6 -0
- package/cascade/examples/zh_CN/default/required/required.component.html +10 -0
- package/cascade/examples/zh_CN/default/required/required.component.scss +8 -0
- package/cascade/examples/zh_CN/default/required/required.component.ts +52 -0
- package/cascade/examples/zh_CN/default/size/readme.md +6 -0
- package/cascade/examples/zh_CN/default/size/size.component.html +21 -0
- package/cascade/examples/zh_CN/default/size/size.component.scss +9 -0
- package/cascade/examples/zh_CN/default/size/size.component.ts +55 -0
- package/cascade/examples/zh_CN/default/variant/readme.md +6 -0
- package/cascade/examples/zh_CN/default/variant/variant.component.html +12 -0
- package/cascade/examples/zh_CN/default/variant/variant.component.scss +5 -0
- package/cascade/examples/zh_CN/default/variant/variant.component.ts +12 -0
- package/cascade/index.ts +1 -0
- package/cascade/ng-package.json +5 -0
- package/cascade/public-api.ts +4 -0
- package/cascade/style/mixin.scss +38 -0
- package/cascade/style/param.scss +39 -0
- package/checkbox/checkbox.component.html +111 -0
- package/checkbox/checkbox.component.scss +14 -0
- package/checkbox/checkbox.component.spec.ts +265 -0
- package/checkbox/checkbox.component.ts +117 -0
- package/checkbox/checkbox.module.ts +8 -0
- package/checkbox/checkbox.property.ts +282 -0
- package/checkbox/docs/readme.en_US.md +20 -0
- package/checkbox/docs/readme.zh_CN.md +20 -0
- package/checkbox/examples/en_US/default/async/async.component.html +9 -0
- package/checkbox/examples/en_US/default/async/async.component.scss +5 -0
- package/checkbox/examples/en_US/default/async/async.component.ts +32 -0
- package/checkbox/examples/en_US/default/async/readme.md +6 -0
- package/checkbox/examples/en_US/default/button/button.component.html +15 -0
- package/checkbox/examples/en_US/default/button/button.component.scss +5 -0
- package/checkbox/examples/en_US/default/button/button.component.ts +15 -0
- package/checkbox/examples/en_US/default/button/readme.md +6 -0
- package/checkbox/examples/en_US/default/check-all/check-all.component.html +12 -0
- package/checkbox/examples/en_US/default/check-all/check-all.component.scss +5 -0
- package/checkbox/examples/en_US/default/check-all/check-all.component.ts +25 -0
- package/checkbox/examples/en_US/default/check-all/readme.md +6 -0
- package/checkbox/examples/en_US/default/default/default.component.html +6 -0
- package/checkbox/examples/en_US/default/default/default.component.scss +5 -0
- package/checkbox/examples/en_US/default/default/default.component.ts +14 -0
- package/checkbox/examples/en_US/default/default/readme.md +9 -0
- package/checkbox/examples/en_US/default/disabled/disabled.component.html +9 -0
- package/checkbox/examples/en_US/default/disabled/disabled.component.scss +5 -0
- package/checkbox/examples/en_US/default/disabled/disabled.component.ts +15 -0
- package/checkbox/examples/en_US/default/disabled/readme.md +9 -0
- package/checkbox/examples/en_US/default/icon/icon.component.html +15 -0
- package/checkbox/examples/en_US/default/icon/icon.component.scss +5 -0
- package/checkbox/examples/en_US/default/icon/icon.component.ts +25 -0
- package/checkbox/examples/en_US/default/icon/readme.md +6 -0
- package/checkbox/examples/en_US/default/perpost/perpost.component.html +110 -0
- package/checkbox/examples/en_US/default/perpost/perpost.component.scss +5 -0
- package/checkbox/examples/en_US/default/perpost/perpost.component.ts +70 -0
- package/checkbox/examples/en_US/default/perpost/readme.md +6 -0
- package/checkbox/examples/en_US/default/readme.md +4 -0
- package/checkbox/examples/en_US/default/single/readme.md +6 -0
- package/checkbox/examples/en_US/default/single/single.component.html +1 -0
- package/checkbox/examples/en_US/default/single/single.component.ts +17 -0
- package/checkbox/examples/en_US/default/tag/readme.md +7 -0
- package/checkbox/examples/en_US/default/tag/tag.component.html +121 -0
- package/checkbox/examples/en_US/default/tag/tag.component.scss +10 -0
- package/checkbox/examples/en_US/default/tag/tag.component.ts +58 -0
- package/checkbox/examples/en_US/default/vertical/readme.md +6 -0
- package/checkbox/examples/en_US/default/vertical/vertical.component.html +6 -0
- package/checkbox/examples/en_US/default/vertical/vertical.component.scss +5 -0
- package/checkbox/examples/en_US/default/vertical/vertical.component.ts +13 -0
- package/checkbox/examples/index.ts +10 -0
- package/checkbox/examples/zh_CN/default/async/async.component.html +9 -0
- package/checkbox/examples/zh_CN/default/async/async.component.scss +5 -0
- package/checkbox/examples/zh_CN/default/async/async.component.ts +31 -0
- package/checkbox/examples/zh_CN/default/async/readme.md +6 -0
- package/checkbox/examples/zh_CN/default/button/button.component.html +15 -0
- package/checkbox/examples/zh_CN/default/button/button.component.scss +5 -0
- package/checkbox/examples/zh_CN/default/button/button.component.ts +15 -0
- package/checkbox/examples/zh_CN/default/button/readme.md +6 -0
- package/checkbox/examples/zh_CN/default/check-all/check-all.component.html +12 -0
- package/checkbox/examples/zh_CN/default/check-all/check-all.component.scss +5 -0
- package/checkbox/examples/zh_CN/default/check-all/check-all.component.ts +25 -0
- package/checkbox/examples/zh_CN/default/check-all/readme.md +6 -0
- package/checkbox/examples/zh_CN/default/default/default.component.html +6 -0
- package/checkbox/examples/zh_CN/default/default/default.component.scss +5 -0
- package/checkbox/examples/zh_CN/default/default/default.component.ts +14 -0
- package/checkbox/examples/zh_CN/default/default/readme.md +9 -0
- package/checkbox/examples/zh_CN/default/disabled/disabled.component.html +9 -0
- package/checkbox/examples/zh_CN/default/disabled/disabled.component.scss +5 -0
- package/checkbox/examples/zh_CN/default/disabled/disabled.component.ts +15 -0
- package/checkbox/examples/zh_CN/default/disabled/readme.md +9 -0
- package/checkbox/examples/zh_CN/default/icon/icon.component.html +15 -0
- package/checkbox/examples/zh_CN/default/icon/icon.component.scss +5 -0
- package/checkbox/examples/zh_CN/default/icon/icon.component.ts +25 -0
- package/checkbox/examples/zh_CN/default/icon/readme.md +6 -0
- package/checkbox/examples/zh_CN/default/perpost/perpost.component.html +110 -0
- package/checkbox/examples/zh_CN/default/perpost/perpost.component.scss +5 -0
- package/checkbox/examples/zh_CN/default/perpost/perpost.component.ts +70 -0
- package/checkbox/examples/zh_CN/default/perpost/readme.md +6 -0
- package/checkbox/examples/zh_CN/default/readme.md +4 -0
- package/checkbox/examples/zh_CN/default/single/readme.md +6 -0
- package/checkbox/examples/zh_CN/default/single/single.component.html +1 -0
- package/checkbox/examples/zh_CN/default/single/single.component.ts +17 -0
- package/checkbox/examples/zh_CN/default/tag/readme.md +7 -0
- package/checkbox/examples/zh_CN/default/tag/tag.component.html +121 -0
- package/checkbox/examples/zh_CN/default/tag/tag.component.scss +10 -0
- package/checkbox/examples/zh_CN/default/tag/tag.component.ts +58 -0
- package/checkbox/examples/zh_CN/default/vertical/readme.md +6 -0
- package/checkbox/examples/zh_CN/default/vertical/vertical.component.html +6 -0
- package/checkbox/examples/zh_CN/default/vertical/vertical.component.scss +5 -0
- package/checkbox/examples/zh_CN/default/vertical/vertical.component.ts +13 -0
- package/checkbox/index.ts +1 -0
- package/checkbox/ng-package.json +5 -0
- package/checkbox/public-api.ts +3 -0
- package/checkbox/style/mixin.scss +345 -0
- package/checkbox/style/param.scss +11 -0
- package/collapse/collapse-panel.component.html +21 -0
- package/collapse/collapse-panel.component.scss +10 -0
- package/collapse/collapse-panel.component.ts +42 -0
- package/collapse/collapse.component.html +3 -0
- package/collapse/collapse.component.scss +10 -0
- package/collapse/collapse.component.spec.ts +185 -0
- package/collapse/collapse.component.ts +36 -0
- package/collapse/collapse.module.ts +9 -0
- package/collapse/collapse.property.ts +168 -0
- package/collapse/docs/readme.en_US.md +20 -0
- package/collapse/docs/readme.zh_CN.md +20 -0
- package/collapse/examples/en_US/default/accordion/accordion.component.html +19 -0
- package/collapse/examples/en_US/default/accordion/accordion.component.ts +9 -0
- package/collapse/examples/en_US/default/accordion/readme.md +7 -0
- package/collapse/examples/en_US/default/arrow/arrow.component.html +19 -0
- package/collapse/examples/en_US/default/arrow/arrow.component.ts +9 -0
- package/collapse/examples/en_US/default/arrow/readme.md +6 -0
- package/collapse/examples/en_US/default/border/border.component.html +19 -0
- package/collapse/examples/en_US/default/border/border.component.ts +9 -0
- package/collapse/examples/en_US/default/border/readme.md +6 -0
- package/collapse/examples/en_US/default/custom/custom.component.html +21 -0
- package/collapse/examples/en_US/default/custom/custom.component.ts +10 -0
- package/collapse/examples/en_US/default/custom/readme.md +6 -0
- package/collapse/examples/en_US/default/default/default.component.html +19 -0
- package/collapse/examples/en_US/default/default/default.component.ts +9 -0
- package/collapse/examples/en_US/default/default/readme.md +6 -0
- package/collapse/examples/en_US/default/disabled/disabled.component.html +32 -0
- package/collapse/examples/en_US/default/disabled/disabled.component.ts +9 -0
- package/collapse/examples/en_US/default/disabled/readme.md +6 -0
- package/collapse/examples/en_US/default/ghost/ghost.component.html +19 -0
- package/collapse/examples/en_US/default/ghost/ghost.component.ts +9 -0
- package/collapse/examples/en_US/default/ghost/readme.md +6 -0
- package/collapse/examples/en_US/default/icon/icon.component.html +23 -0
- package/collapse/examples/en_US/default/icon/icon.component.ts +10 -0
- package/collapse/examples/en_US/default/icon/readme.md +6 -0
- package/collapse/examples/en_US/default/readme.md +4 -0
- package/collapse/examples/index.ts +8 -0
- package/collapse/examples/zh_CN/default/accordion/accordion.component.html +19 -0
- package/collapse/examples/zh_CN/default/accordion/accordion.component.ts +9 -0
- package/collapse/examples/zh_CN/default/accordion/readme.md +7 -0
- package/collapse/examples/zh_CN/default/arrow/arrow.component.html +19 -0
- package/collapse/examples/zh_CN/default/arrow/arrow.component.ts +9 -0
- package/collapse/examples/zh_CN/default/arrow/readme.md +6 -0
- package/collapse/examples/zh_CN/default/border/border.component.html +19 -0
- package/collapse/examples/zh_CN/default/border/border.component.ts +9 -0
- package/collapse/examples/zh_CN/default/border/readme.md +6 -0
- package/collapse/examples/zh_CN/default/custom/custom.component.html +21 -0
- package/collapse/examples/zh_CN/default/custom/custom.component.ts +10 -0
- package/collapse/examples/zh_CN/default/custom/readme.md +6 -0
- package/collapse/examples/zh_CN/default/default/default.component.html +19 -0
- package/collapse/examples/zh_CN/default/default/default.component.ts +9 -0
- package/collapse/examples/zh_CN/default/default/readme.md +6 -0
- package/collapse/examples/zh_CN/default/disabled/disabled.component.html +19 -0
- package/collapse/examples/zh_CN/default/disabled/disabled.component.ts +9 -0
- package/collapse/examples/zh_CN/default/disabled/readme.md +6 -0
- package/collapse/examples/zh_CN/default/ghost/ghost.component.html +19 -0
- package/collapse/examples/zh_CN/default/ghost/ghost.component.ts +9 -0
- package/collapse/examples/zh_CN/default/ghost/readme.md +6 -0
- package/collapse/examples/zh_CN/default/icon/icon.component.html +23 -0
- package/collapse/examples/zh_CN/default/icon/icon.component.ts +10 -0
- package/collapse/examples/zh_CN/default/icon/readme.md +6 -0
- package/collapse/examples/zh_CN/default/readme.md +4 -0
- package/collapse/index.ts +1 -0
- package/collapse/ng-package.json +5 -0
- package/collapse/public-api.ts +4 -0
- package/collapse/style/mixin.scss +127 -0
- package/collapse/style/param.scss +5 -0
- package/color/color.component.html +11 -0
- package/color/color.component.spec.ts +89 -0
- package/color/color.component.ts +31 -0
- package/color/color.module.ts +8 -0
- package/color/color.property.ts +63 -0
- package/color/docs/readme.en_US.md +20 -0
- package/color/docs/readme.zh_CN.md +20 -0
- package/color/examples/en_US/default/assist/assist.component.html +12 -0
- package/color/examples/en_US/default/assist/assist.component.scss +5 -0
- package/color/examples/en_US/default/assist/assist.component.ts +10 -0
- package/color/examples/en_US/default/assist/readme.md +6 -0
- package/color/examples/en_US/default/default/default.component.html +6 -0
- package/color/examples/en_US/default/default/default.component.scss +8 -0
- package/color/examples/en_US/default/default/default.component.ts +10 -0
- package/color/examples/en_US/default/default/readme.md +8 -0
- package/color/examples/en_US/default/neutral/neutral.component.html +26 -0
- package/color/examples/en_US/default/neutral/neutral.component.scss +17 -0
- package/color/examples/en_US/default/neutral/neutral.component.ts +10 -0
- package/color/examples/en_US/default/neutral/readme.md +6 -0
- package/color/examples/en_US/default/readme.md +4 -0
- package/color/examples/index.ts +3 -0
- package/color/examples/zh_CN/default/assist/assist.component.html +12 -0
- package/color/examples/zh_CN/default/assist/assist.component.scss +5 -0
- package/color/examples/zh_CN/default/assist/assist.component.ts +10 -0
- package/color/examples/zh_CN/default/assist/readme.md +6 -0
- package/color/examples/zh_CN/default/default/default.component.html +6 -0
- package/color/examples/zh_CN/default/default/default.component.scss +8 -0
- package/color/examples/zh_CN/default/default/default.component.ts +10 -0
- package/color/examples/zh_CN/default/default/readme.md +8 -0
- package/color/examples/zh_CN/default/neutral/neutral.component.html +26 -0
- package/color/examples/zh_CN/default/neutral/neutral.component.scss +18 -0
- package/color/examples/zh_CN/default/neutral/neutral.component.ts +10 -0
- package/color/examples/zh_CN/default/neutral/readme.md +6 -0
- package/color/examples/zh_CN/default/readme.md +4 -0
- package/color/index.ts +1 -0
- package/color/ng-package.json +5 -0
- package/color/public-api.ts +3 -0
- package/color/style/index.scss +10 -0
- package/color/style/mixin.scss +39 -0
- package/color/style/param.scss +4 -0
- package/color-picker/color-map.data.ts +150 -0
- package/color-picker/color-picker-portal.component.html +83 -0
- package/color-picker/color-picker-portal.component.scss +9 -0
- package/color-picker/color-picker-portal.component.ts +455 -0
- package/color-picker/color-picker.component.html +55 -0
- package/color-picker/color-picker.component.scss +15 -0
- package/color-picker/color-picker.component.spec.ts +544 -0
- package/color-picker/color-picker.component.ts +255 -0
- package/color-picker/color-picker.directive.ts +17 -0
- package/color-picker/color-picker.module.ts +9 -0
- package/color-picker/color-picker.property.ts +322 -0
- package/color-picker/docs/readme.en_US.md +20 -0
- package/color-picker/docs/readme.zh_CN.md +20 -0
- package/color-picker/examples/en_US/default/bordered/bordered.component.html +15 -0
- package/color-picker/examples/en_US/default/bordered/bordered.component.scss +5 -0
- package/color-picker/examples/en_US/default/bordered/bordered.component.ts +10 -0
- package/color-picker/examples/en_US/default/bordered/readme.md +6 -0
- package/color-picker/examples/en_US/default/default/default.component.html +12 -0
- package/color-picker/examples/en_US/default/default/default.component.scss +5 -0
- package/color-picker/examples/en_US/default/default/default.component.ts +16 -0
- package/color-picker/examples/en_US/default/default/readme.md +6 -0
- package/color-picker/examples/en_US/default/disabled/disabled.component.html +6 -0
- package/color-picker/examples/en_US/default/disabled/disabled.component.scss +5 -0
- package/color-picker/examples/en_US/default/disabled/disabled.component.ts +13 -0
- package/color-picker/examples/en_US/default/disabled/readme.md +6 -0
- package/color-picker/examples/en_US/default/float-label/float-label.component.html +63 -0
- package/color-picker/examples/en_US/default/float-label/float-label.component.scss +16 -0
- package/color-picker/examples/en_US/default/float-label/float-label.component.ts +10 -0
- package/color-picker/examples/en_US/default/float-label/readme.md +6 -0
- package/color-picker/examples/en_US/default/label/label.component.html +12 -0
- package/color-picker/examples/en_US/default/label/label.component.scss +5 -0
- package/color-picker/examples/en_US/default/label/label.component.ts +13 -0
- package/color-picker/examples/en_US/default/label/readme.md +7 -0
- package/color-picker/examples/en_US/default/panel/panel.component.html +9 -0
- package/color-picker/examples/en_US/default/panel/panel.component.scss +29 -0
- package/color-picker/examples/en_US/default/panel/panel.component.ts +10 -0
- package/color-picker/examples/en_US/default/panel/readme.md +7 -0
- package/color-picker/examples/en_US/default/readme.md +4 -0
- package/color-picker/examples/en_US/default/required/readme.md +6 -0
- package/color-picker/examples/en_US/default/required/required.component.html +6 -0
- package/color-picker/examples/en_US/default/required/required.component.scss +5 -0
- package/color-picker/examples/en_US/default/required/required.component.ts +13 -0
- package/color-picker/examples/en_US/default/size/readme.md +6 -0
- package/color-picker/examples/en_US/default/size/size.component.html +19 -0
- package/color-picker/examples/en_US/default/size/size.component.scss +5 -0
- package/color-picker/examples/en_US/default/size/size.component.ts +16 -0
- package/color-picker/examples/en_US/default/variant/readme.md +6 -0
- package/color-picker/examples/en_US/default/variant/variant.component.html +12 -0
- package/color-picker/examples/en_US/default/variant/variant.component.scss +5 -0
- package/color-picker/examples/en_US/default/variant/variant.component.ts +10 -0
- package/color-picker/examples/index.ts +9 -0
- package/color-picker/examples/zh_CN/default/bordered/bordered.component.html +15 -0
- package/color-picker/examples/zh_CN/default/bordered/bordered.component.scss +5 -0
- package/color-picker/examples/zh_CN/default/bordered/bordered.component.ts +10 -0
- package/color-picker/examples/zh_CN/default/bordered/readme.md +6 -0
- package/color-picker/examples/zh_CN/default/default/default.component.html +12 -0
- package/color-picker/examples/zh_CN/default/default/default.component.scss +5 -0
- package/color-picker/examples/zh_CN/default/default/default.component.ts +16 -0
- package/color-picker/examples/zh_CN/default/default/readme.md +6 -0
- package/color-picker/examples/zh_CN/default/disabled/disabled.component.html +6 -0
- package/color-picker/examples/zh_CN/default/disabled/disabled.component.scss +5 -0
- package/color-picker/examples/zh_CN/default/disabled/disabled.component.ts +13 -0
- package/color-picker/examples/zh_CN/default/disabled/readme.md +6 -0
- package/color-picker/examples/zh_CN/default/float-label/float-label.component.html +63 -0
- package/color-picker/examples/zh_CN/default/float-label/float-label.component.scss +16 -0
- package/color-picker/examples/zh_CN/default/float-label/float-label.component.ts +10 -0
- package/color-picker/examples/zh_CN/default/float-label/readme.md +6 -0
- package/color-picker/examples/zh_CN/default/label/label.component.html +12 -0
- package/color-picker/examples/zh_CN/default/label/label.component.scss +5 -0
- package/color-picker/examples/zh_CN/default/label/label.component.ts +13 -0
- package/color-picker/examples/zh_CN/default/label/readme.md +7 -0
- package/color-picker/examples/zh_CN/default/panel/panel.component.html +9 -0
- package/color-picker/examples/zh_CN/default/panel/panel.component.scss +29 -0
- package/color-picker/examples/zh_CN/default/panel/panel.component.ts +16 -0
- package/color-picker/examples/zh_CN/default/panel/readme.md +7 -0
- package/color-picker/examples/zh_CN/default/readme.md +4 -0
- package/color-picker/examples/zh_CN/default/required/readme.md +6 -0
- package/color-picker/examples/zh_CN/default/required/required.component.html +6 -0
- package/color-picker/examples/zh_CN/default/required/required.component.scss +5 -0
- package/color-picker/examples/zh_CN/default/required/required.component.ts +13 -0
- package/color-picker/examples/zh_CN/default/size/readme.md +6 -0
- package/color-picker/examples/zh_CN/default/size/size.component.html +19 -0
- package/color-picker/examples/zh_CN/default/size/size.component.scss +5 -0
- package/color-picker/examples/zh_CN/default/size/size.component.ts +16 -0
- package/color-picker/examples/zh_CN/default/variant/readme.md +6 -0
- package/color-picker/examples/zh_CN/default/variant/variant.component.html +12 -0
- package/color-picker/examples/zh_CN/default/variant/variant.component.scss +5 -0
- package/color-picker/examples/zh_CN/default/variant/variant.component.ts +10 -0
- package/color-picker/index.ts +1 -0
- package/color-picker/ng-package.json +5 -0
- package/color-picker/public-api.ts +5 -0
- package/color-picker/style/mixin.scss +200 -0
- package/color-picker/style/param.scss +41 -0
- package/comment/comment-reply.component.html +13 -0
- package/comment/comment-reply.component.scss +10 -0
- package/comment/comment-reply.component.ts +22 -0
- package/comment/comment.component.html +92 -0
- package/comment/comment.component.scss +10 -0
- package/comment/comment.component.spec.ts +241 -0
- package/comment/comment.component.ts +59 -0
- package/comment/comment.module.ts +9 -0
- package/comment/comment.property.ts +129 -0
- package/comment/docs/readme.en_US.md +20 -0
- package/comment/docs/readme.zh_CN.md +20 -0
- package/comment/examples/en_US/default/default/default.component.html +6 -0
- package/comment/examples/en_US/default/default/default.component.ts +130 -0
- package/comment/examples/en_US/default/default/readme.md +6 -0
- package/comment/examples/en_US/default/readme.md +4 -0
- package/comment/examples/index.ts +1 -0
- package/comment/examples/zh_CN/default/default/default.component.html +6 -0
- package/comment/examples/zh_CN/default/default/default.component.ts +132 -0
- package/comment/examples/zh_CN/default/default/readme.md +6 -0
- package/comment/examples/zh_CN/default/readme.md +4 -0
- package/comment/index.ts +1 -0
- package/comment/ng-package.json +5 -0
- package/comment/public-api.ts +4 -0
- package/comment/style/mixin.scss +125 -0
- package/comment/style/param.scss +5 -0
- package/container/aside.component.scss +10 -0
- package/container/aside.component.ts +16 -0
- package/container/container.component.scss +10 -0
- package/container/container.component.spec.ts +125 -0
- package/container/container.component.ts +27 -0
- package/container/container.module.ts +12 -0
- package/container/container.property.ts +91 -0
- package/container/docs/readme.en_US.md +26 -0
- package/container/docs/readme.zh_CN.md +26 -0
- package/container/examples/en_US/default/default/default.component.html +45 -0
- package/container/examples/en_US/default/default/default.component.scss +26 -0
- package/container/examples/en_US/default/default/default.component.ts +16 -0
- package/container/examples/en_US/default/default/readme.md +10 -0
- package/container/examples/en_US/default/readme.md +4 -0
- package/container/examples/index.ts +1 -0
- package/container/examples/zh_CN/default/default/default.component.html +45 -0
- package/container/examples/zh_CN/default/default/default.component.scss +26 -0
- package/container/examples/zh_CN/default/default/default.component.ts +16 -0
- package/container/examples/zh_CN/default/default/readme.md +10 -0
- package/container/examples/zh_CN/default/readme.md +4 -0
- package/container/footer.component.scss +10 -0
- package/container/footer.component.ts +27 -0
- package/container/header.component.scss +10 -0
- package/container/header.component.ts +27 -0
- package/container/index.ts +1 -0
- package/container/main.component.scss +10 -0
- package/container/main.component.ts +13 -0
- package/container/ng-package.json +5 -0
- package/container/public-api.ts +7 -0
- package/container/style/mixin.scss +48 -0
- package/container/style/param.scss +8 -0
- package/contextmenu/contextmenu-portal.component.html +17 -0
- package/contextmenu/contextmenu-portal.component.scss +13 -0
- package/contextmenu/contextmenu-portal.component.ts +211 -0
- package/contextmenu/contextmenu.component.html +3 -0
- package/contextmenu/contextmenu.component.scss +10 -0
- package/contextmenu/contextmenu.component.ts +223 -0
- package/contextmenu/contextmenu.module.ts +8 -0
- package/contextmenu/contextmenu.property.ts +93 -0
- package/contextmenu/docs/en_US.md +20 -0
- package/contextmenu/docs/zh_CN.md +20 -0
- package/contextmenu/examples/en_US/default/default/default.component.html +9 -0
- package/contextmenu/examples/en_US/default/default/default.component.ts +20 -0
- package/contextmenu/examples/en_US/default/default/readme.md +4 -0
- package/contextmenu/examples/en_US/default/disabled/disabled.component.html +23 -0
- package/contextmenu/examples/en_US/default/disabled/disabled.component.ts +22 -0
- package/contextmenu/examples/en_US/default/disabled/readme.md +4 -0
- package/contextmenu/examples/en_US/default/portal/portal.component.html +32 -0
- package/contextmenu/examples/en_US/default/portal/portal.component.ts +27 -0
- package/contextmenu/examples/en_US/default/portal/readme.md +4 -0
- package/contextmenu/examples/en_US/default/size/readme.md +4 -0
- package/contextmenu/examples/en_US/default/size/size.component.html +32 -0
- package/contextmenu/examples/en_US/default/size/size.component.ts +24 -0
- package/contextmenu/examples/en_US/default/tree/readme.md +4 -0
- package/contextmenu/examples/en_US/default/tree/tree.component.html +11 -0
- package/contextmenu/examples/en_US/default/tree/tree.component.ts +51 -0
- package/contextmenu/examples/index.ts +5 -0
- package/contextmenu/examples/zh_CN/default/default/default.component.html +9 -0
- package/contextmenu/examples/zh_CN/default/default/default.component.ts +26 -0
- package/contextmenu/examples/zh_CN/default/default/readme.md +4 -0
- package/contextmenu/examples/zh_CN/default/disabled/disabled.component.html +23 -0
- package/contextmenu/examples/zh_CN/default/disabled/disabled.component.ts +19 -0
- package/contextmenu/examples/zh_CN/default/disabled/readme.md +4 -0
- package/contextmenu/examples/zh_CN/default/portal/portal.component.html +32 -0
- package/contextmenu/examples/zh_CN/default/portal/portal.component.ts +23 -0
- package/contextmenu/examples/zh_CN/default/portal/readme.md +4 -0
- package/contextmenu/examples/zh_CN/default/size/readme.md +4 -0
- package/contextmenu/examples/zh_CN/default/size/size.component.html +32 -0
- package/contextmenu/examples/zh_CN/default/size/size.component.ts +24 -0
- package/contextmenu/examples/zh_CN/default/tree/readme.md +4 -0
- package/contextmenu/examples/zh_CN/default/tree/tree.component.html +11 -0
- package/contextmenu/examples/zh_CN/default/tree/tree.component.ts +53 -0
- package/contextmenu/index.ts +1 -0
- package/contextmenu/ng-package.json +5 -0
- package/contextmenu/public-api.ts +3 -0
- package/contextmenu/style/mixin.scss +24 -0
- package/contextmenu/style/param.scss +5 -0
- package/core/components/index.ts +1 -0
- package/core/components/inner-html.component.ts +15 -0
- package/core/components/public-api.ts +1 -0
- package/core/config/config.service.ts +63 -0
- package/core/config/config.spec.ts +51 -0
- package/core/config/config.ts +878 -0
- package/core/config/index.ts +1 -0
- package/core/config/public-api.ts +2 -0
- package/core/functions/chunk.ts +25 -0
- package/core/functions/clone-deep.ts +27 -0
- package/core/functions/convert.ts +278 -0
- package/core/functions/csspx.ts +14 -0
- package/core/functions/cssrem.ts +13 -0
- package/core/functions/date.ts +242 -0
- package/core/functions/drop.ts +17 -0
- package/core/functions/file-size.ts +38 -0
- package/core/functions/flex.ts +32 -0
- package/core/functions/group-by.ts +22 -0
- package/core/functions/guid.ts +10 -0
- package/core/functions/has-in.ts +7 -0
- package/core/functions/index.ts +1 -0
- package/core/functions/order-by.ts +51 -0
- package/core/functions/parent-path.ts +27 -0
- package/core/functions/property.ts +18 -0
- package/core/functions/public-api.ts +17 -0
- package/core/functions/remove.ts +17 -0
- package/core/functions/resize.ts +42 -0
- package/core/index.ts +1 -0
- package/core/interfaces/data.type.ts +279 -0
- package/core/interfaces/identify.type.ts +85 -0
- package/core/interfaces/index.ts +1 -0
- package/core/interfaces/layout.type.ts +205 -0
- package/core/interfaces/public-api.ts +4 -0
- package/core/interfaces/result-list.type.ts +121 -0
- package/core/ng-package.json +5 -0
- package/core/public-api.ts +7 -0
- package/core/readme.md +25 -0
- package/core/services/http.service.ts +62 -0
- package/core/services/index.ts +1 -0
- package/core/services/preloading-strategy.service.ts +17 -0
- package/core/services/public-api.ts +5 -0
- package/core/services/repository.service.ts +53 -0
- package/core/services/reuse-strategy.service.ts +66 -0
- package/core/services/storage.service.ts +69 -0
- package/core/theme/index.ts +1 -0
- package/core/theme/public-api.ts +2 -0
- package/core/theme/theme.service.ts +320 -0
- package/core/theme/theme.spec.ts +97 -0
- package/core/theme/theme.ts +165 -0
- package/core/util/animation.ts +30 -0
- package/core/util/camel-to-kebab.ts +15 -0
- package/core/util/check.ts +15 -0
- package/core/util/computed-style.ts +20 -0
- package/core/util/host.ts +12 -0
- package/core/util/html.ts +10 -0
- package/core/util/index.ts +1 -0
- package/core/util/kebab-to-camel.ts +15 -0
- package/core/util/log.ts +15 -0
- package/core/util/option.ts +13 -0
- package/core/util/public-api.ts +10 -0
- package/core/util/sleep.ts +7 -0
- package/coversations/coversations.component.html +15 -0
- package/coversations/coversations.component.scss +9 -0
- package/coversations/coversations.component.ts +20 -0
- package/coversations/coversations.module.ts +8 -0
- package/coversations/coversations.property.ts +72 -0
- package/coversations/docs/readme.en_US.md +20 -0
- package/coversations/docs/readme.zh_CN.md +20 -0
- package/coversations/examples/en_US/default/default/default.component.html +3 -0
- package/coversations/examples/en_US/default/default/default.component.scss +11 -0
- package/coversations/examples/en_US/default/default/default.component.ts +23 -0
- package/coversations/examples/en_US/default/default/readme.md +6 -0
- package/coversations/examples/en_US/default/group/group.component.html +12 -0
- package/coversations/examples/en_US/default/group/group.component.scss +22 -0
- package/coversations/examples/en_US/default/group/group.component.ts +30 -0
- package/coversations/examples/en_US/default/group/readme.md +6 -0
- package/coversations/examples/en_US/default/load-more/load-more.component.html +3 -0
- package/coversations/examples/en_US/default/load-more/load-more.component.scss +13 -0
- package/coversations/examples/en_US/default/load-more/load-more.component.ts +22 -0
- package/coversations/examples/en_US/default/load-more/readme.md +8 -0
- package/coversations/examples/en_US/default/model/model.component.html +5 -0
- package/coversations/examples/en_US/default/model/model.component.scss +11 -0
- package/coversations/examples/en_US/default/model/model.component.ts +33 -0
- package/coversations/examples/en_US/default/model/readme.md +6 -0
- package/coversations/examples/en_US/default/template/readme.md +6 -0
- package/coversations/examples/en_US/default/template/template.component.html +21 -0
- package/coversations/examples/en_US/default/template/template.component.scss +29 -0
- package/coversations/examples/en_US/default/template/template.component.ts +29 -0
- package/coversations/examples/en_US/readme.md +4 -0
- package/coversations/examples/index.ts +5 -0
- package/coversations/examples/zh_CN/default/default/default.component.html +3 -0
- package/coversations/examples/zh_CN/default/default/default.component.scss +11 -0
- package/coversations/examples/zh_CN/default/default/default.component.ts +23 -0
- package/coversations/examples/zh_CN/default/default/readme.md +6 -0
- package/coversations/examples/zh_CN/default/group/group.component.html +12 -0
- package/coversations/examples/zh_CN/default/group/group.component.scss +22 -0
- package/coversations/examples/zh_CN/default/group/group.component.ts +30 -0
- package/coversations/examples/zh_CN/default/group/readme.md +6 -0
- package/coversations/examples/zh_CN/default/load-more/load-more.component.html +3 -0
- package/coversations/examples/zh_CN/default/load-more/load-more.component.scss +13 -0
- package/coversations/examples/zh_CN/default/load-more/load-more.component.ts +22 -0
- package/coversations/examples/zh_CN/default/load-more/readme.md +8 -0
- package/coversations/examples/zh_CN/default/model/model.component.html +5 -0
- package/coversations/examples/zh_CN/default/model/model.component.scss +11 -0
- package/coversations/examples/zh_CN/default/model/model.component.ts +33 -0
- package/coversations/examples/zh_CN/default/model/readme.md +6 -0
- package/coversations/examples/zh_CN/default/template/readme.md +6 -0
- package/coversations/examples/zh_CN/default/template/template.component.html +21 -0
- package/coversations/examples/zh_CN/default/template/template.component.scss +29 -0
- package/coversations/examples/zh_CN/default/template/template.component.ts +29 -0
- package/coversations/examples/zh_CN/readme.md +4 -0
- package/coversations/index.ts +1 -0
- package/coversations/ng-package.json +5 -0
- package/coversations/public-api.ts +3 -0
- package/coversations/style/mixin.scss +9 -0
- package/coversations/style/param.scss +4 -0
- package/crumb/crumb.component.html +22 -0
- package/crumb/crumb.component.spec.ts +99 -0
- package/crumb/crumb.component.ts +26 -0
- package/crumb/crumb.module.ts +8 -0
- package/crumb/crumb.property.ts +76 -0
- package/crumb/docs/readme.en_US.md +20 -0
- package/crumb/docs/readme.zh_CN.md +20 -0
- package/crumb/examples/en_US/default/custom/custom.component.html +4 -0
- package/crumb/examples/en_US/default/custom/custom.component.ts +12 -0
- package/crumb/examples/en_US/default/custom/readme.md +6 -0
- package/crumb/examples/en_US/default/default/default.component.html +1 -0
- package/crumb/examples/en_US/default/default/default.component.ts +11 -0
- package/crumb/examples/en_US/default/default/readme.md +6 -0
- package/crumb/examples/en_US/default/icon/icon.component.html +1 -0
- package/crumb/examples/en_US/default/icon/icon.component.ts +11 -0
- package/crumb/examples/en_US/default/icon/readme.md +6 -0
- package/crumb/examples/en_US/default/readme.md +4 -0
- package/crumb/examples/en_US/default/separator/readme.md +6 -0
- package/crumb/examples/en_US/default/separator/separator.component.html +5 -0
- package/crumb/examples/en_US/default/separator/separator.component.ts +12 -0
- package/crumb/examples/index.ts +4 -0
- package/crumb/examples/zh_CN/default/custom/custom.component.html +4 -0
- package/crumb/examples/zh_CN/default/custom/custom.component.ts +12 -0
- package/crumb/examples/zh_CN/default/custom/readme.md +6 -0
- package/crumb/examples/zh_CN/default/default/default.component.html +1 -0
- package/crumb/examples/zh_CN/default/default/default.component.ts +11 -0
- package/crumb/examples/zh_CN/default/default/readme.md +6 -0
- package/crumb/examples/zh_CN/default/icon/icon.component.html +1 -0
- package/crumb/examples/zh_CN/default/icon/icon.component.ts +11 -0
- package/crumb/examples/zh_CN/default/icon/readme.md +6 -0
- package/crumb/examples/zh_CN/default/readme.md +4 -0
- package/crumb/examples/zh_CN/default/separator/readme.md +6 -0
- package/crumb/examples/zh_CN/default/separator/separator.component.html +5 -0
- package/crumb/examples/zh_CN/default/separator/separator.component.ts +12 -0
- package/crumb/index.ts +1 -0
- package/crumb/ng-package.json +5 -0
- package/crumb/public-api.ts +3 -0
- package/crumb/style/index.scss +10 -0
- package/crumb/style/mixin.scss +30 -0
- package/crumb/style/param.scss +4 -0
- package/date-picker/date-picker-portal.component.html +143 -0
- package/date-picker/date-picker-portal.component.scss +9 -0
- package/date-picker/date-picker-portal.component.ts +234 -0
- package/date-picker/date-picker.component.html +46 -0
- package/date-picker/date-picker.component.scss +15 -0
- package/date-picker/date-picker.component.spec.ts +476 -0
- package/date-picker/date-picker.component.ts +365 -0
- package/date-picker/date-picker.module.ts +9 -0
- package/date-picker/date-picker.property.ts +1339 -0
- package/date-picker/date-quarter.pipe.ts +12 -0
- package/date-picker/date-range-portal.component.html +282 -0
- package/date-picker/date-range-portal.component.scss +9 -0
- package/date-picker/date-range-portal.component.ts +394 -0
- package/date-picker/date-range.component.html +92 -0
- package/date-picker/date-range.component.scss +24 -0
- package/date-picker/date-range.component.spec.ts +295 -0
- package/date-picker/date-range.component.ts +492 -0
- package/date-picker/docs/readme.en_US.md +20 -0
- package/date-picker/docs/readme.zh_CN.md +20 -0
- package/date-picker/examples/en_US/default/bordered/bordered.component.html +20 -0
- package/date-picker/examples/en_US/default/bordered/bordered.component.scss +5 -0
- package/date-picker/examples/en_US/default/bordered/bordered.component.ts +10 -0
- package/date-picker/examples/en_US/default/bordered/readme.md +6 -0
- package/date-picker/examples/en_US/default/default/default.component.html +6 -0
- package/date-picker/examples/en_US/default/default/default.component.scss +5 -0
- package/date-picker/examples/en_US/default/default/default.component.ts +14 -0
- package/date-picker/examples/en_US/default/default/readme.md +6 -0
- package/date-picker/examples/en_US/default/disabled/disabled.component.html +6 -0
- package/date-picker/examples/en_US/default/disabled/disabled.component.scss +5 -0
- package/date-picker/examples/en_US/default/disabled/disabled.component.ts +13 -0
- package/date-picker/examples/en_US/default/disabled/readme.md +6 -0
- package/date-picker/examples/en_US/default/disabled-date/disabled-date.component.html +24 -0
- package/date-picker/examples/en_US/default/disabled-date/disabled-date.component.scss +5 -0
- package/date-picker/examples/en_US/default/disabled-date/disabled-date.component.ts +52 -0
- package/date-picker/examples/en_US/default/disabled-date/readme.md +6 -0
- package/date-picker/examples/en_US/default/float-label/float-label.component.html +120 -0
- package/date-picker/examples/en_US/default/float-label/float-label.component.scss +16 -0
- package/date-picker/examples/en_US/default/float-label/float-label.component.ts +10 -0
- package/date-picker/examples/en_US/default/float-label/readme.md +6 -0
- package/date-picker/examples/en_US/default/footer/footer.component.html +52 -0
- package/date-picker/examples/en_US/default/footer/footer.component.scss +5 -0
- package/date-picker/examples/en_US/default/footer/footer.component.ts +21 -0
- package/date-picker/examples/en_US/default/footer/readme.md +6 -0
- package/date-picker/examples/en_US/default/label/label.component.html +12 -0
- package/date-picker/examples/en_US/default/label/label.component.scss +5 -0
- package/date-picker/examples/en_US/default/label/label.component.ts +13 -0
- package/date-picker/examples/en_US/default/label/readme.md +7 -0
- package/date-picker/examples/en_US/default/range/range.component.html +62 -0
- package/date-picker/examples/en_US/default/range/range.component.scss +5 -0
- package/date-picker/examples/en_US/default/range/range.component.ts +26 -0
- package/date-picker/examples/en_US/default/range/readme.md +6 -0
- package/date-picker/examples/en_US/default/readme.md +4 -0
- package/date-picker/examples/en_US/default/required/readme.md +6 -0
- package/date-picker/examples/en_US/default/required/required.component.html +6 -0
- package/date-picker/examples/en_US/default/required/required.component.scss +5 -0
- package/date-picker/examples/en_US/default/required/required.component.ts +13 -0
- package/date-picker/examples/en_US/default/size/readme.md +6 -0
- package/date-picker/examples/en_US/default/size/size.component.html +19 -0
- package/date-picker/examples/en_US/default/size/size.component.scss +5 -0
- package/date-picker/examples/en_US/default/size/size.component.ts +16 -0
- package/date-picker/examples/en_US/default/time/readme.md +6 -0
- package/date-picker/examples/en_US/default/time/time.component.html +9 -0
- package/date-picker/examples/en_US/default/time/time.component.scss +5 -0
- package/date-picker/examples/en_US/default/time/time.component.ts +15 -0
- package/date-picker/examples/en_US/default/today/readme.md +6 -0
- package/date-picker/examples/en_US/default/today/today.component.html +34 -0
- package/date-picker/examples/en_US/default/today/today.component.scss +5 -0
- package/date-picker/examples/en_US/default/today/today.component.ts +51 -0
- package/date-picker/examples/en_US/default/variant/readme.md +6 -0
- package/date-picker/examples/en_US/default/variant/variant.component.html +25 -0
- package/date-picker/examples/en_US/default/variant/variant.component.scss +5 -0
- package/date-picker/examples/en_US/default/variant/variant.component.ts +10 -0
- package/date-picker/examples/en_US/default/year-month/readme.md +6 -0
- package/date-picker/examples/en_US/default/year-month/year-month.component.html +12 -0
- package/date-picker/examples/en_US/default/year-month/year-month.component.scss +5 -0
- package/date-picker/examples/en_US/default/year-month/year-month.component.ts +20 -0
- package/date-picker/examples/index.ts +14 -0
- package/date-picker/examples/zh_CN/default/bordered/bordered.component.html +15 -0
- package/date-picker/examples/zh_CN/default/bordered/bordered.component.scss +5 -0
- package/date-picker/examples/zh_CN/default/bordered/bordered.component.ts +10 -0
- package/date-picker/examples/zh_CN/default/bordered/readme.md +6 -0
- package/date-picker/examples/zh_CN/default/default/default.component.html +6 -0
- package/date-picker/examples/zh_CN/default/default/default.component.scss +5 -0
- package/date-picker/examples/zh_CN/default/default/default.component.ts +14 -0
- package/date-picker/examples/zh_CN/default/default/readme.md +6 -0
- package/date-picker/examples/zh_CN/default/disabled/disabled.component.html +6 -0
- package/date-picker/examples/zh_CN/default/disabled/disabled.component.scss +5 -0
- package/date-picker/examples/zh_CN/default/disabled/disabled.component.ts +13 -0
- package/date-picker/examples/zh_CN/default/disabled/readme.md +6 -0
- package/date-picker/examples/zh_CN/default/disabled-date/disabled-date.component.html +24 -0
- package/date-picker/examples/zh_CN/default/disabled-date/disabled-date.component.scss +5 -0
- package/date-picker/examples/zh_CN/default/disabled-date/disabled-date.component.ts +52 -0
- package/date-picker/examples/zh_CN/default/disabled-date/readme.md +6 -0
- package/date-picker/examples/zh_CN/default/float-label/float-label.component.html +120 -0
- package/date-picker/examples/zh_CN/default/float-label/float-label.component.scss +16 -0
- package/date-picker/examples/zh_CN/default/float-label/float-label.component.ts +10 -0
- package/date-picker/examples/zh_CN/default/float-label/readme.md +6 -0
- package/date-picker/examples/zh_CN/default/footer/footer.component.html +52 -0
- package/date-picker/examples/zh_CN/default/footer/footer.component.scss +5 -0
- package/date-picker/examples/zh_CN/default/footer/footer.component.ts +21 -0
- package/date-picker/examples/zh_CN/default/footer/readme.md +6 -0
- package/date-picker/examples/zh_CN/default/label/label.component.html +12 -0
- package/date-picker/examples/zh_CN/default/label/label.component.scss +5 -0
- package/date-picker/examples/zh_CN/default/label/label.component.ts +13 -0
- package/date-picker/examples/zh_CN/default/label/readme.md +7 -0
- package/date-picker/examples/zh_CN/default/range/range.component.html +57 -0
- package/date-picker/examples/zh_CN/default/range/range.component.scss +5 -0
- package/date-picker/examples/zh_CN/default/range/range.component.ts +26 -0
- package/date-picker/examples/zh_CN/default/range/readme.md +6 -0
- package/date-picker/examples/zh_CN/default/readme.md +4 -0
- package/date-picker/examples/zh_CN/default/required/readme.md +6 -0
- package/date-picker/examples/zh_CN/default/required/required.component.html +6 -0
- package/date-picker/examples/zh_CN/default/required/required.component.scss +5 -0
- package/date-picker/examples/zh_CN/default/required/required.component.ts +13 -0
- package/date-picker/examples/zh_CN/default/size/readme.md +6 -0
- package/date-picker/examples/zh_CN/default/size/size.component.html +19 -0
- package/date-picker/examples/zh_CN/default/size/size.component.scss +5 -0
- package/date-picker/examples/zh_CN/default/size/size.component.ts +16 -0
- package/date-picker/examples/zh_CN/default/time/readme.md +6 -0
- package/date-picker/examples/zh_CN/default/time/time.component.html +9 -0
- package/date-picker/examples/zh_CN/default/time/time.component.scss +5 -0
- package/date-picker/examples/zh_CN/default/time/time.component.ts +15 -0
- package/date-picker/examples/zh_CN/default/today/readme.md +6 -0
- package/date-picker/examples/zh_CN/default/today/today.component.html +34 -0
- package/date-picker/examples/zh_CN/default/today/today.component.scss +5 -0
- package/date-picker/examples/zh_CN/default/today/today.component.ts +51 -0
- package/date-picker/examples/zh_CN/default/variant/readme.md +6 -0
- package/date-picker/examples/zh_CN/default/variant/variant.component.html +25 -0
- package/date-picker/examples/zh_CN/default/variant/variant.component.scss +5 -0
- package/date-picker/examples/zh_CN/default/variant/variant.component.ts +10 -0
- package/date-picker/examples/zh_CN/default/year-month/readme.md +6 -0
- package/date-picker/examples/zh_CN/default/year-month/year-month.component.html +12 -0
- package/date-picker/examples/zh_CN/default/year-month/year-month.component.scss +5 -0
- package/date-picker/examples/zh_CN/default/year-month/year-month.component.ts +20 -0
- package/date-picker/index.ts +1 -0
- package/date-picker/ng-package.json +5 -0
- package/date-picker/picker-date.component.html +90 -0
- package/date-picker/picker-date.component.scss +10 -0
- package/date-picker/picker-date.component.ts +366 -0
- package/date-picker/picker-month.component.html +57 -0
- package/date-picker/picker-month.component.scss +10 -0
- package/date-picker/picker-month.component.ts +252 -0
- package/date-picker/picker-quarter.component.html +57 -0
- package/date-picker/picker-quarter.component.scss +10 -0
- package/date-picker/picker-quarter.component.ts +257 -0
- package/date-picker/picker-year.component.html +58 -0
- package/date-picker/picker-year.component.scss +10 -0
- package/date-picker/picker-year.component.ts +251 -0
- package/date-picker/public-api.ts +11 -0
- package/date-picker/style/mixin.scss +1183 -0
- package/date-picker/style/param.scss +54 -0
- package/description/description-item.component.ts +17 -0
- package/description/description.component.html +26 -0
- package/description/description.component.spec.ts +180 -0
- package/description/description.component.ts +44 -0
- package/description/description.module.ts +9 -0
- package/description/description.property.ts +207 -0
- package/description/docs/readme.en_US.md +20 -0
- package/description/docs/readme.zh_CN.md +20 -0
- package/description/examples/en_US/default/border/border.component.html +13 -0
- package/description/examples/en_US/default/border/border.component.ts +9 -0
- package/description/examples/en_US/default/border/readme.md +6 -0
- package/description/examples/en_US/default/default/default.component.html +13 -0
- package/description/examples/en_US/default/default/default.component.ts +9 -0
- package/description/examples/en_US/default/default/readme.md +6 -0
- package/description/examples/en_US/default/readme.md +4 -0
- package/description/examples/en_US/default/size/readme.md +6 -0
- package/description/examples/en_US/default/size/size.component.html +27 -0
- package/description/examples/en_US/default/size/size.component.ts +23 -0
- package/description/examples/en_US/default/split/readme.md +8 -0
- package/description/examples/en_US/default/split/split.component.html +23 -0
- package/description/examples/en_US/default/split/split.component.ts +9 -0
- package/description/examples/en_US/default/vertical/readme.md +4 -0
- package/description/examples/en_US/default/vertical/vertical.component.html +23 -0
- package/description/examples/en_US/default/vertical/vertical.component.ts +9 -0
- package/description/examples/index.ts +5 -0
- package/description/examples/zh_CN/default/border/border.component.html +13 -0
- package/description/examples/zh_CN/default/border/border.component.ts +9 -0
- package/description/examples/zh_CN/default/border/readme.md +6 -0
- package/description/examples/zh_CN/default/default/default.component.html +12 -0
- package/description/examples/zh_CN/default/default/default.component.ts +9 -0
- package/description/examples/zh_CN/default/default/readme.md +6 -0
- package/description/examples/zh_CN/default/readme.md +4 -0
- package/description/examples/zh_CN/default/size/readme.md +6 -0
- package/description/examples/zh_CN/default/size/size.component.html +26 -0
- package/description/examples/zh_CN/default/size/size.component.ts +23 -0
- package/description/examples/zh_CN/default/split/readme.md +8 -0
- package/description/examples/zh_CN/default/split/split.component.html +23 -0
- package/description/examples/zh_CN/default/split/split.component.ts +9 -0
- package/description/examples/zh_CN/default/vertical/readme.md +4 -0
- package/description/examples/zh_CN/default/vertical/vertical.component.html +23 -0
- package/description/examples/zh_CN/default/vertical/vertical.component.ts +9 -0
- package/description/index.ts +1 -0
- package/description/ng-package.json +5 -0
- package/description/public-api.ts +4 -0
- package/description/style/index.scss +10 -0
- package/description/style/mixin.scss +59 -0
- package/description/style/param.scss +4 -0
- package/dialog/dialog-container.component.html +1 -0
- package/dialog/dialog-container.component.scss +10 -0
- package/dialog/dialog-container.component.ts +19 -0
- package/dialog/dialog-portal.component.html +16 -0
- package/dialog/dialog-portal.component.scss +15 -0
- package/dialog/dialog-portal.component.ts +93 -0
- package/dialog/dialog-portal.directives.ts +60 -0
- package/dialog/dialog-ref.token.ts +10 -0
- package/dialog/dialog-ref.ts +130 -0
- package/dialog/dialog.component.html +83 -0
- package/dialog/dialog.component.scss +10 -0
- package/dialog/dialog.component.spec.ts +447 -0
- package/dialog/dialog.component.ts +295 -0
- package/dialog/dialog.module.ts +35 -0
- package/dialog/dialog.property.ts +423 -0
- package/dialog/dialog.service.ts +142 -0
- package/dialog/docs/readme.en_US.md +20 -0
- package/dialog/docs/readme.zh_CN.md +20 -0
- package/dialog/examples/en_US/default/container/container.component.html +31 -0
- package/dialog/examples/en_US/default/container/container.component.scss +33 -0
- package/dialog/examples/en_US/default/container/container.component.ts +43 -0
- package/dialog/examples/en_US/default/container/readme.md +6 -0
- package/dialog/examples/en_US/default/custom/custom.component.html +49 -0
- package/dialog/examples/en_US/default/custom/custom.component.scss +22 -0
- package/dialog/examples/en_US/default/custom/custom.component.ts +97 -0
- package/dialog/examples/en_US/default/custom/readme.md +6 -0
- package/dialog/examples/en_US/default/default/default.component.html +21 -0
- package/dialog/examples/en_US/default/default/default.component.scss +24 -0
- package/dialog/examples/en_US/default/default/default.component.ts +37 -0
- package/dialog/examples/en_US/default/default/readme.md +6 -0
- package/dialog/examples/en_US/default/draggable/draggable.component.html +7 -0
- package/dialog/examples/en_US/default/draggable/draggable.component.scss +8 -0
- package/dialog/examples/en_US/default/draggable/draggable.component.ts +17 -0
- package/dialog/examples/en_US/default/draggable/readme.md +6 -0
- package/dialog/examples/en_US/default/readme.md +4 -0
- package/dialog/examples/en_US/default/service/readme.md +7 -0
- package/dialog/examples/en_US/default/service/service-dialog.component.html +9 -0
- package/dialog/examples/en_US/default/service/service-dialog.component.ts +34 -0
- package/dialog/examples/en_US/default/service/service.component.html +20 -0
- package/dialog/examples/en_US/default/service/service.component.scss +31 -0
- package/dialog/examples/en_US/default/service/service.component.ts +33 -0
- package/dialog/examples/index.ts +5 -0
- package/dialog/examples/zh_CN/default/container/container.component.html +33 -0
- package/dialog/examples/zh_CN/default/container/container.component.scss +35 -0
- package/dialog/examples/zh_CN/default/container/container.component.ts +43 -0
- package/dialog/examples/zh_CN/default/container/readme.md +6 -0
- package/dialog/examples/zh_CN/default/custom/custom.component.html +49 -0
- package/dialog/examples/zh_CN/default/custom/custom.component.scss +22 -0
- package/dialog/examples/zh_CN/default/custom/custom.component.ts +97 -0
- package/dialog/examples/zh_CN/default/custom/readme.md +6 -0
- package/dialog/examples/zh_CN/default/default/default.component.html +31 -0
- package/dialog/examples/zh_CN/default/default/default.component.scss +23 -0
- package/dialog/examples/zh_CN/default/default/default.component.ts +42 -0
- package/dialog/examples/zh_CN/default/default/readme.md +6 -0
- package/dialog/examples/zh_CN/default/draggable/draggable.component.html +7 -0
- package/dialog/examples/zh_CN/default/draggable/draggable.component.scss +8 -0
- package/dialog/examples/zh_CN/default/draggable/draggable.component.ts +17 -0
- package/dialog/examples/zh_CN/default/draggable/readme.md +6 -0
- package/dialog/examples/zh_CN/default/readme.md +4 -0
- package/dialog/examples/zh_CN/default/service/readme.md +7 -0
- package/dialog/examples/zh_CN/default/service/service-dialog.component.html +9 -0
- package/dialog/examples/zh_CN/default/service/service-dialog.component.ts +34 -0
- package/dialog/examples/zh_CN/default/service/service.component.html +20 -0
- package/dialog/examples/zh_CN/default/service/service.component.scss +30 -0
- package/dialog/examples/zh_CN/default/service/service.component.ts +33 -0
- package/dialog/index.ts +1 -0
- package/dialog/ng-package.json +5 -0
- package/dialog/public-api.ts +8 -0
- package/dialog/style/mixin.scss +212 -0
- package/dialog/style/param.scss +6 -0
- package/divider/divider.component.html +12 -0
- package/divider/divider.component.scss +10 -0
- package/divider/divider.component.ts +28 -0
- package/divider/divider.module.ts +8 -0
- package/divider/divider.property.ts +89 -0
- package/divider/docs/readme.en_US.md +20 -0
- package/divider/docs/readme.zh_CN.md +20 -0
- package/divider/examples/en_US/default/default/default.component.html +7 -0
- package/divider/examples/en_US/default/default/default.component.scss +3 -0
- package/divider/examples/en_US/default/default/default.component.ts +10 -0
- package/divider/examples/en_US/default/default/readme.md +3 -0
- package/divider/examples/en_US/default/direction/direction.component.html +11 -0
- package/divider/examples/en_US/default/direction/direction.component.scss +3 -0
- package/divider/examples/en_US/default/direction/direction.component.ts +10 -0
- package/divider/examples/en_US/default/direction/readme.md +3 -0
- package/divider/examples/en_US/default/position/position.component.html +13 -0
- package/divider/examples/en_US/default/position/position.component.scss +3 -0
- package/divider/examples/en_US/default/position/position.component.ts +10 -0
- package/divider/examples/en_US/default/position/readme.md +3 -0
- package/divider/examples/en_US/default/size/readme.md +3 -0
- package/divider/examples/en_US/default/size/size.component.html +20 -0
- package/divider/examples/en_US/default/size/size.component.scss +3 -0
- package/divider/examples/en_US/default/size/size.component.ts +10 -0
- package/divider/examples/en_US/default/variant/readme.md +3 -0
- package/divider/examples/en_US/default/variant/variant.component.html +26 -0
- package/divider/examples/en_US/default/variant/variant.component.scss +3 -0
- package/divider/examples/en_US/default/variant/variant.component.ts +10 -0
- package/divider/examples/index.ts +5 -0
- package/divider/examples/zh_CN/default/default/default.component.html +7 -0
- package/divider/examples/zh_CN/default/default/default.component.scss +3 -0
- package/divider/examples/zh_CN/default/default/default.component.ts +10 -0
- package/divider/examples/zh_CN/default/default/readme.md +3 -0
- package/divider/examples/zh_CN/default/direction/direction.component.html +11 -0
- package/divider/examples/zh_CN/default/direction/direction.component.scss +3 -0
- package/divider/examples/zh_CN/default/direction/direction.component.ts +10 -0
- package/divider/examples/zh_CN/default/direction/readme.md +3 -0
- package/divider/examples/zh_CN/default/position/position.component.html +13 -0
- package/divider/examples/zh_CN/default/position/position.component.scss +3 -0
- package/divider/examples/zh_CN/default/position/position.component.ts +10 -0
- package/divider/examples/zh_CN/default/position/readme.md +3 -0
- package/divider/examples/zh_CN/default/size/readme.md +3 -0
- package/divider/examples/zh_CN/default/size/size.component.html +20 -0
- package/divider/examples/zh_CN/default/size/size.component.scss +3 -0
- package/divider/examples/zh_CN/default/size/size.component.ts +10 -0
- package/divider/examples/zh_CN/default/variant/readme.md +3 -0
- package/divider/examples/zh_CN/default/variant/variant.component.html +26 -0
- package/divider/examples/zh_CN/default/variant/variant.component.scss +3 -0
- package/divider/examples/zh_CN/default/variant/variant.component.ts +10 -0
- package/divider/examples/zh_CN/readme.md +10 -0
- package/divider/index.ts +1 -0
- package/divider/ng-package.json +6 -0
- package/divider/public-api.ts +3 -0
- package/divider/style/mixin.scss +151 -0
- package/divider/style/param.scss +8 -0
- package/doc/doc.component.html +1 -0
- package/doc/doc.component.spec.ts +597 -0
- package/doc/doc.component.ts +13 -0
- package/doc/doc.module.ts +8 -0
- package/doc/doc.property.ts +6 -0
- package/doc/docs/readme.en_US.md +8 -0
- package/doc/docs/readme.zh_CN.md +8 -0
- package/doc/index.ts +1 -0
- package/doc/ng-package.json +5 -0
- package/doc/public-api.ts +3 -0
- package/doc/style/index.scss +10 -0
- package/doc/style/mixin.scss +182 -0
- package/doc/style/param.scss +39 -0
- package/drag/docs/readme.en_US.md +4 -0
- package/drag/docs/readme.zh_CN.md +4 -0
- package/drag/drag.directive.spec.ts +102 -0
- package/drag/drag.directive.ts +53 -0
- package/drag/drag.module.ts +8 -0
- package/drag/drag.property.ts +28 -0
- package/drag/index.ts +1 -0
- package/drag/ng-package.json +5 -0
- package/drag/public-api.ts +3 -0
- package/drawer/docs/readme.en_US.md +20 -0
- package/drawer/docs/readme.zh_CN.md +20 -0
- package/drawer/drawer-container.component.html +1 -0
- package/drawer/drawer-container.component.scss +10 -0
- package/drawer/drawer-container.component.ts +19 -0
- package/drawer/drawer-portal.component.html +1 -0
- package/drawer/drawer-portal.component.scss +10 -0
- package/drawer/drawer-portal.component.ts +31 -0
- package/drawer/drawer-portal.directives.ts +26 -0
- package/drawer/drawer-ref.ts +14 -0
- package/drawer/drawer.component.html +43 -0
- package/drawer/drawer.component.scss +10 -0
- package/drawer/drawer.component.spec.ts +159 -0
- package/drawer/drawer.component.ts +111 -0
- package/drawer/drawer.module.ts +22 -0
- package/drawer/drawer.property.ts +149 -0
- package/drawer/drawer.service.ts +66 -0
- package/drawer/examples/en_US/default/container/container.component.html +9 -0
- package/drawer/examples/en_US/default/container/container.component.scss +14 -0
- package/drawer/examples/en_US/default/container/container.component.ts +31 -0
- package/drawer/examples/en_US/default/container/readme.md +6 -0
- package/drawer/examples/en_US/default/custom/custom.component.html +53 -0
- package/drawer/examples/en_US/default/custom/custom.component.scss +26 -0
- package/drawer/examples/en_US/default/custom/custom.component.ts +51 -0
- package/drawer/examples/en_US/default/custom/readme.md +6 -0
- package/drawer/examples/en_US/default/default/default.component.html +7 -0
- package/drawer/examples/en_US/default/default/default.component.scss +9 -0
- package/drawer/examples/en_US/default/default/default.component.ts +31 -0
- package/drawer/examples/en_US/default/default/readme.md +6 -0
- package/drawer/examples/en_US/default/multiple/multiple.component.html +15 -0
- package/drawer/examples/en_US/default/multiple/multiple.component.scss +9 -0
- package/drawer/examples/en_US/default/multiple/multiple.component.ts +39 -0
- package/drawer/examples/en_US/default/multiple/readme.md +6 -0
- package/drawer/examples/en_US/default/readme.md +4 -0
- package/drawer/examples/en_US/default/service/readme.md +7 -0
- package/drawer/examples/en_US/default/service/service-drawer.component.html +6 -0
- package/drawer/examples/en_US/default/service/service-drawer.component.ts +23 -0
- package/drawer/examples/en_US/default/service/service.component.html +3 -0
- package/drawer/examples/en_US/default/service/service.component.scss +9 -0
- package/drawer/examples/en_US/default/service/service.component.ts +21 -0
- package/drawer/examples/en_US/default/title/readme.md +6 -0
- package/drawer/examples/en_US/default/title/title.component.html +6 -0
- package/drawer/examples/en_US/default/title/title.component.scss +2 -0
- package/drawer/examples/en_US/default/title/title.component.ts +21 -0
- package/drawer/examples/index.ts +6 -0
- package/drawer/examples/zh_CN/default/container/container.component.html +9 -0
- package/drawer/examples/zh_CN/default/container/container.component.scss +14 -0
- package/drawer/examples/zh_CN/default/container/container.component.ts +31 -0
- package/drawer/examples/zh_CN/default/container/readme.md +6 -0
- package/drawer/examples/zh_CN/default/custom/custom.component.html +53 -0
- package/drawer/examples/zh_CN/default/custom/custom.component.scss +26 -0
- package/drawer/examples/zh_CN/default/custom/custom.component.ts +51 -0
- package/drawer/examples/zh_CN/default/custom/readme.md +6 -0
- package/drawer/examples/zh_CN/default/default/default.component.html +7 -0
- package/drawer/examples/zh_CN/default/default/default.component.scss +9 -0
- package/drawer/examples/zh_CN/default/default/default.component.ts +31 -0
- package/drawer/examples/zh_CN/default/default/readme.md +6 -0
- package/drawer/examples/zh_CN/default/multiple/multiple.component.html +15 -0
- package/drawer/examples/zh_CN/default/multiple/multiple.component.scss +9 -0
- package/drawer/examples/zh_CN/default/multiple/multiple.component.ts +39 -0
- package/drawer/examples/zh_CN/default/multiple/readme.md +6 -0
- package/drawer/examples/zh_CN/default/readme.md +4 -0
- package/drawer/examples/zh_CN/default/service/readme.md +7 -0
- package/drawer/examples/zh_CN/default/service/service-drawer.component.html +6 -0
- package/drawer/examples/zh_CN/default/service/service-drawer.component.ts +23 -0
- package/drawer/examples/zh_CN/default/service/service.component.html +3 -0
- package/drawer/examples/zh_CN/default/service/service.component.scss +9 -0
- package/drawer/examples/zh_CN/default/service/service.component.ts +21 -0
- package/drawer/examples/zh_CN/default/title/readme.md +6 -0
- package/drawer/examples/zh_CN/default/title/title.component.html +6 -0
- package/drawer/examples/zh_CN/default/title/title.component.scss +2 -0
- package/drawer/examples/zh_CN/default/title/title.component.ts +21 -0
- package/drawer/index.ts +1 -0
- package/drawer/ng-package.json +5 -0
- package/drawer/public-api.ts +9 -0
- package/drawer/style/mixin.scss +113 -0
- package/drawer/style/param.scss +6 -0
- package/dropdown/docs/readme.en_US.md +20 -0
- package/dropdown/docs/readme.zh_CN.md +20 -0
- package/dropdown/dropdown-portal.component.html +22 -0
- package/dropdown/dropdown-portal.component.scss +17 -0
- package/dropdown/dropdown-portal.component.ts +295 -0
- package/dropdown/dropdown.component.html +12 -0
- package/dropdown/dropdown.component.scss +10 -0
- package/dropdown/dropdown.component.spec.ts +245 -0
- package/dropdown/dropdown.component.ts +260 -0
- package/dropdown/dropdown.module.ts +7 -0
- package/dropdown/dropdown.property.ts +129 -0
- package/dropdown/examples/en_US/default/default/default.component.html +3 -0
- package/dropdown/examples/en_US/default/default/default.component.ts +12 -0
- package/dropdown/examples/en_US/default/default/readme.md +6 -0
- package/dropdown/examples/en_US/default/multistage/multistage.component.html +3 -0
- package/dropdown/examples/en_US/default/multistage/multistage.component.ts +34 -0
- package/dropdown/examples/en_US/default/multistage/readme.md +6 -0
- package/dropdown/examples/en_US/default/prop/prop.component.html +3 -0
- package/dropdown/examples/en_US/default/prop/prop.component.ts +18 -0
- package/dropdown/examples/en_US/default/prop/readme.md +6 -0
- package/dropdown/examples/en_US/default/readme.md +4 -0
- package/dropdown/examples/en_US/default/trigger/readme.md +6 -0
- package/dropdown/examples/en_US/default/trigger/trigger.component.html +17 -0
- package/dropdown/examples/en_US/default/trigger/trigger.component.scss +5 -0
- package/dropdown/examples/en_US/default/trigger/trigger.component.ts +19 -0
- package/dropdown/examples/index.ts +4 -0
- package/dropdown/examples/zh_CN/default/default/default.component.html +3 -0
- package/dropdown/examples/zh_CN/default/default/default.component.ts +12 -0
- package/dropdown/examples/zh_CN/default/default/readme.md +6 -0
- package/dropdown/examples/zh_CN/default/multistage/multistage.component.html +3 -0
- package/dropdown/examples/zh_CN/default/multistage/multistage.component.ts +34 -0
- package/dropdown/examples/zh_CN/default/multistage/readme.md +6 -0
- package/dropdown/examples/zh_CN/default/prop/prop.component.html +3 -0
- package/dropdown/examples/zh_CN/default/prop/prop.component.ts +18 -0
- package/dropdown/examples/zh_CN/default/prop/readme.md +6 -0
- package/dropdown/examples/zh_CN/default/readme.md +4 -0
- package/dropdown/examples/zh_CN/default/trigger/readme.md +6 -0
- package/dropdown/examples/zh_CN/default/trigger/trigger.component.html +17 -0
- package/dropdown/examples/zh_CN/default/trigger/trigger.component.scss +5 -0
- package/dropdown/examples/zh_CN/default/trigger/trigger.component.ts +19 -0
- package/dropdown/index.ts +1 -0
- package/dropdown/ng-package.json +5 -0
- package/dropdown/public-api.ts +4 -0
- package/dropdown/style/mixin.scss +37 -0
- package/dropdown/style/param.scss +5 -0
- package/empty/docs/readme.en_US.md +20 -0
- package/empty/docs/readme.zh_CN.md +20 -0
- package/empty/empty.component.html +16 -0
- package/empty/empty.component.scss +10 -0
- package/empty/empty.component.spec.ts +83 -0
- package/empty/empty.component.ts +15 -0
- package/empty/empty.module.ts +8 -0
- package/empty/empty.property.ts +46 -0
- package/empty/examples/en_US/default/custom/custom.component.html +19 -0
- package/empty/examples/en_US/default/custom/custom.component.scss +5 -0
- package/empty/examples/en_US/default/custom/custom.component.ts +12 -0
- package/empty/examples/en_US/default/custom/readme.md +6 -0
- package/empty/examples/en_US/default/default/default.component.html +1 -0
- package/empty/examples/en_US/default/default/default.component.ts +9 -0
- package/empty/examples/en_US/default/default/readme.md +6 -0
- package/empty/examples/en_US/default/readme.md +4 -0
- package/empty/examples/index.ts +2 -0
- package/empty/examples/zh_CN/default/custom/custom.component.html +19 -0
- package/empty/examples/zh_CN/default/custom/custom.component.scss +5 -0
- package/empty/examples/zh_CN/default/custom/custom.component.ts +12 -0
- package/empty/examples/zh_CN/default/custom/readme.md +6 -0
- package/empty/examples/zh_CN/default/default/default.component.html +1 -0
- package/empty/examples/zh_CN/default/default/default.component.ts +9 -0
- package/empty/examples/zh_CN/default/default/readme.md +6 -0
- package/empty/examples/zh_CN/default/readme.md +4 -0
- package/empty/index.ts +1 -0
- package/empty/ng-package.json +5 -0
- package/empty/public-api.ts +3 -0
- package/empty/style/mixin.scss +22 -0
- package/empty/style/param.scss +4 -0
- package/examples/docs/readme.en_US.md +13 -0
- package/examples/docs/readme.zh_CN.md +13 -0
- package/examples/examples.component.html +1 -0
- package/examples/examples.component.spec.ts +252 -0
- package/examples/examples.component.ts +13 -0
- package/examples/examples.module.ts +8 -0
- package/examples/examples.property.ts +6 -0
- package/examples/index.ts +1 -0
- package/examples/ng-package.json +5 -0
- package/examples/public-api.ts +3 -0
- package/examples/style/index.scss +10 -0
- package/examples/style/mixin.scss +112 -0
- package/examples/style/param.scss +4 -0
- package/find/docs/readme.en_US.md +20 -0
- package/find/docs/readme.zh_CN.md +20 -0
- package/find/examples/en_US/default/bordered/bordered.component.html +15 -0
- package/find/examples/en_US/default/bordered/bordered.component.scss +5 -0
- package/find/examples/en_US/default/bordered/bordered.component.ts +16 -0
- package/find/examples/en_US/default/bordered/readme.md +6 -0
- package/find/examples/en_US/default/default/default.component.html +17 -0
- package/find/examples/en_US/default/default/default.component.scss +5 -0
- package/find/examples/en_US/default/default/default.component.ts +27 -0
- package/find/examples/en_US/default/default/default.service.ts +124 -0
- package/find/examples/en_US/default/default/readme.md +10 -0
- package/find/examples/en_US/default/disabled/disabled.component.html +6 -0
- package/find/examples/en_US/default/disabled/disabled.component.scss +5 -0
- package/find/examples/en_US/default/disabled/disabled.component.ts +13 -0
- package/find/examples/en_US/default/disabled/readme.md +6 -0
- package/find/examples/en_US/default/label/label.component.html +12 -0
- package/find/examples/en_US/default/label/label.component.scss +5 -0
- package/find/examples/en_US/default/label/label.component.ts +14 -0
- package/find/examples/en_US/default/label/readme.md +7 -0
- package/find/examples/en_US/default/readme.md +4 -0
- package/find/examples/en_US/default/size/readme.md +6 -0
- package/find/examples/en_US/default/size/size.component.html +16 -0
- package/find/examples/en_US/default/size/size.component.scss +5 -0
- package/find/examples/en_US/default/size/size.component.ts +20 -0
- package/find/examples/en_US/default/tree/readme.md +6 -0
- package/find/examples/en_US/default/tree/tree.component.html +15 -0
- package/find/examples/en_US/default/tree/tree.component.scss +5 -0
- package/find/examples/en_US/default/tree/tree.component.ts +18 -0
- package/find/examples/en_US/default/tree/tree.service.ts +27 -0
- package/find/examples/en_US/default/tree-table/readme.md +5 -0
- package/find/examples/en_US/default/tree-table/tree-table.component.html +28 -0
- package/find/examples/en_US/default/tree-table/tree-table.component.scss +5 -0
- package/find/examples/en_US/default/tree-table/tree-table.component.ts +31 -0
- package/find/examples/en_US/default/tree-table/tree-table.service.ts +124 -0
- package/find/examples/en_US/default/tree-table/tree.service.ts +27 -0
- package/find/examples/index.ts +7 -0
- package/find/examples/zh_CN/default/bordered/bordered.component.html +15 -0
- package/find/examples/zh_CN/default/bordered/bordered.component.scss +5 -0
- package/find/examples/zh_CN/default/bordered/bordered.component.ts +16 -0
- package/find/examples/zh_CN/default/bordered/readme.md +6 -0
- package/find/examples/zh_CN/default/default/default.component.html +12 -0
- package/find/examples/zh_CN/default/default/default.component.scss +5 -0
- package/find/examples/zh_CN/default/default/default.component.ts +27 -0
- package/find/examples/zh_CN/default/default/default.service.ts +124 -0
- package/find/examples/zh_CN/default/default/readme.md +10 -0
- package/find/examples/zh_CN/default/disabled/disabled.component.html +6 -0
- package/find/examples/zh_CN/default/disabled/disabled.component.scss +5 -0
- package/find/examples/zh_CN/default/disabled/disabled.component.ts +13 -0
- package/find/examples/zh_CN/default/disabled/readme.md +6 -0
- package/find/examples/zh_CN/default/label/label.component.html +12 -0
- package/find/examples/zh_CN/default/label/label.component.scss +5 -0
- package/find/examples/zh_CN/default/label/label.component.ts +14 -0
- package/find/examples/zh_CN/default/label/readme.md +7 -0
- package/find/examples/zh_CN/default/readme.md +4 -0
- package/find/examples/zh_CN/default/size/readme.md +6 -0
- package/find/examples/zh_CN/default/size/size.component.html +16 -0
- package/find/examples/zh_CN/default/size/size.component.scss +5 -0
- package/find/examples/zh_CN/default/size/size.component.ts +20 -0
- package/find/examples/zh_CN/default/tree/readme.md +6 -0
- package/find/examples/zh_CN/default/tree/tree.component.html +11 -0
- package/find/examples/zh_CN/default/tree/tree.component.scss +5 -0
- package/find/examples/zh_CN/default/tree/tree.component.ts +18 -0
- package/find/examples/zh_CN/default/tree/tree.service.ts +27 -0
- package/find/examples/zh_CN/default/tree-table/readme.md +5 -0
- package/find/examples/zh_CN/default/tree-table/tree-table.component.html +28 -0
- package/find/examples/zh_CN/default/tree-table/tree-table.component.scss +5 -0
- package/find/examples/zh_CN/default/tree-table/tree-table.component.ts +31 -0
- package/find/examples/zh_CN/default/tree-table/tree-table.service.ts +124 -0
- package/find/examples/zh_CN/default/tree-table/tree.service.ts +27 -0
- package/find/find.component.html +148 -0
- package/find/find.component.scss +32 -0
- package/find/find.component.spec.ts +775 -0
- package/find/find.component.ts +361 -0
- package/find/find.module.ts +8 -0
- package/find/find.property.ts +526 -0
- package/find/index.ts +1 -0
- package/find/ng-package.json +5 -0
- package/find/public-api.ts +3 -0
- package/find/style/mixin.scss +166 -0
- package/find/style/param.scss +42 -0
- package/form/control.component.html +3 -0
- package/form/control.component.scss +10 -0
- package/form/control.component.ts +257 -0
- package/form/docs/readme.en_US.md +20 -0
- package/form/docs/readme.zh_CN.md +20 -0
- package/form/examples/en_US/default/default/default.component.html +1 -0
- package/form/examples/en_US/default/default/default.component.ts +813 -0
- package/form/examples/en_US/default/default/default.service.ts +129 -0
- package/form/examples/en_US/default/default/readme.md +6 -0
- package/form/examples/en_US/default/default/tree.service.ts +27 -0
- package/form/examples/en_US/default/form-vaild/form-vaild.component.html +13 -0
- package/form/examples/en_US/default/form-vaild/form-vaild.component.ts +59 -0
- package/form/examples/en_US/default/form-vaild/readme.md +8 -0
- package/form/examples/en_US/default/label-row/label-row.component.html +9 -0
- package/form/examples/en_US/default/label-row/label-row.component.ts +102 -0
- package/form/examples/en_US/default/label-row/readme.md +5 -0
- package/form/examples/en_US/default/readme.md +4 -0
- package/form/examples/en_US/default/title/readme.md +4 -0
- package/form/examples/en_US/default/title/title.component.html +1 -0
- package/form/examples/en_US/default/title/title.component.ts +69 -0
- package/form/examples/index.ts +4 -0
- package/form/examples/zh_CN/default/default/default.component.html +1 -0
- package/form/examples/zh_CN/default/default/default.component.ts +805 -0
- package/form/examples/zh_CN/default/default/default.service.ts +129 -0
- package/form/examples/zh_CN/default/default/readme.md +6 -0
- package/form/examples/zh_CN/default/default/tree.service.ts +27 -0
- package/form/examples/zh_CN/default/form-vaild/form-vaild.component.html +13 -0
- package/form/examples/zh_CN/default/form-vaild/form-vaild.component.ts +73 -0
- package/form/examples/zh_CN/default/form-vaild/readme.md +8 -0
- package/form/examples/zh_CN/default/label-row/label-row.component.html +10 -0
- package/form/examples/zh_CN/default/label-row/label-row.component.ts +113 -0
- package/form/examples/zh_CN/default/label-row/readme.md +5 -0
- package/form/examples/zh_CN/default/readme.md +4 -0
- package/form/examples/zh_CN/default/title/readme.md +4 -0
- package/form/examples/zh_CN/default/title/title.component.html +1 -0
- package/form/examples/zh_CN/default/title/title.component.ts +69 -0
- package/form/form.component.html +53 -0
- package/form/form.component.scss +10 -0
- package/form/form.component.spec.ts +171 -0
- package/form/form.component.ts +139 -0
- package/form/form.module.ts +9 -0
- package/form/form.property.ts +546 -0
- package/form/form.token.ts +14 -0
- package/form/index.ts +1 -0
- package/form/ng-package.json +5 -0
- package/form/public-api.ts +4 -0
- package/form/style/mixin.scss +55 -0
- package/form/style/param.scss +5 -0
- package/highlight/docs/readme.en_US.md +22 -0
- package/highlight/docs/readme.zh_CN.md +22 -0
- package/highlight/examples/en_US/default/copy/copy.component.html +1 -0
- package/highlight/examples/en_US/default/copy/copy.component.ts +24 -0
- package/highlight/examples/en_US/default/copy/readme.md +6 -0
- package/highlight/examples/en_US/default/html/html.component.html +1 -0
- package/highlight/examples/en_US/default/html/html.component.ts +24 -0
- package/highlight/examples/en_US/default/html/readme.md +6 -0
- package/highlight/examples/en_US/default/readme.md +4 -0
- package/highlight/examples/en_US/default/scss/readme.md +6 -0
- package/highlight/examples/en_US/default/scss/scss.component.html +1 -0
- package/highlight/examples/en_US/default/scss/scss.component.ts +29 -0
- package/highlight/examples/en_US/default/typescript/readme.md +6 -0
- package/highlight/examples/en_US/default/typescript/typescript.component.html +1 -0
- package/highlight/examples/en_US/default/typescript/typescript.component.ts +20 -0
- package/highlight/examples/index.ts +4 -0
- package/highlight/examples/zh_CN/default/copy/copy.component.html +1 -0
- package/highlight/examples/zh_CN/default/copy/copy.component.ts +24 -0
- package/highlight/examples/zh_CN/default/copy/readme.md +6 -0
- package/highlight/examples/zh_CN/default/html/html.component.html +1 -0
- package/highlight/examples/zh_CN/default/html/html.component.ts +24 -0
- package/highlight/examples/zh_CN/default/html/readme.md +6 -0
- package/highlight/examples/zh_CN/default/readme.md +4 -0
- package/highlight/examples/zh_CN/default/scss/readme.md +6 -0
- package/highlight/examples/zh_CN/default/scss/scss.component.html +1 -0
- package/highlight/examples/zh_CN/default/scss/scss.component.ts +29 -0
- package/highlight/examples/zh_CN/default/typescript/readme.md +6 -0
- package/highlight/examples/zh_CN/default/typescript/typescript.component.html +1 -0
- package/highlight/examples/zh_CN/default/typescript/typescript.component.ts +20 -0
- package/highlight/highlight.component.html +8 -0
- package/highlight/highlight.component.spec.ts +113 -0
- package/highlight/highlight.component.ts +99 -0
- package/highlight/highlight.module.ts +8 -0
- package/highlight/highlight.property.ts +72 -0
- package/highlight/highlight.service.ts +9 -0
- package/highlight/index.ts +1 -0
- package/highlight/ng-package.json +5 -0
- package/highlight/public-api.ts +4 -0
- package/highlight/style/index.scss +9 -0
- package/highlight/style/mixin.scss +78 -0
- package/highlight/style/param.scss +3 -0
- package/i18n/i18n.directive.ts +24 -0
- package/i18n/i18n.module.ts +9 -0
- package/i18n/i18n.pipe.spec.ts +87 -0
- package/i18n/i18n.pipe.ts +30 -0
- package/i18n/i18n.property.ts +271 -0
- package/i18n/i18n.service.ts +61 -0
- package/i18n/index.ts +1 -0
- package/i18n/languages/ar_EG.ts +168 -0
- package/i18n/languages/bg_BG.ts +171 -0
- package/i18n/languages/ca_ES.ts +171 -0
- package/i18n/languages/cs_CZ.ts +171 -0
- package/i18n/languages/da_DK.ts +171 -0
- package/i18n/languages/de_DE.ts +171 -0
- package/i18n/languages/el_GR.ts +171 -0
- package/i18n/languages/en_GB.ts +180 -0
- package/i18n/languages/en_US.ts +180 -0
- package/i18n/languages/es_ES.ts +171 -0
- package/i18n/languages/et_EE.ts +171 -0
- package/i18n/languages/fa_IR.ts +171 -0
- package/i18n/languages/fi_FI.ts +171 -0
- package/i18n/languages/fr_BE.ts +171 -0
- package/i18n/languages/fr_FR.ts +171 -0
- package/i18n/languages/he_IL.ts +168 -0
- package/i18n/languages/hi_IN.ts +171 -0
- package/i18n/languages/hr_HR.ts +171 -0
- package/i18n/languages/hu_HU.ts +171 -0
- package/i18n/languages/hy_AM.ts +171 -0
- package/i18n/languages/id_ID.ts +171 -0
- package/i18n/languages/is_IS.ts +171 -0
- package/i18n/languages/it_IT.ts +171 -0
- package/i18n/languages/ja_JP.ts +171 -0
- package/i18n/languages/ka_GE.ts +171 -0
- package/i18n/languages/kn_IN.ts +171 -0
- package/i18n/languages/ko_KR.ts +179 -0
- package/i18n/languages/ku_IQ.ts +155 -0
- package/i18n/languages/lv_LV.ts +179 -0
- package/i18n/languages/mn_MN.ts +179 -0
- package/i18n/languages/ms_MY.ts +179 -0
- package/i18n/languages/nb_NO.ts +179 -0
- package/i18n/languages/ne_NP.ts +179 -0
- package/i18n/languages/nl_BE.ts +179 -0
- package/i18n/languages/nl_NL.ts +179 -0
- package/i18n/languages/pl_PL.ts +179 -0
- package/i18n/languages/pt_BR.ts +179 -0
- package/i18n/languages/pt_PT.ts +179 -0
- package/i18n/languages/ro_RO.ts +179 -0
- package/i18n/languages/ru_RU.ts +179 -0
- package/i18n/languages/sk_SK.ts +170 -0
- package/i18n/languages/sl_SI.ts +171 -0
- package/i18n/languages/sr_RS.ts +171 -0
- package/i18n/languages/sv_SE.ts +171 -0
- package/i18n/languages/ta_IN.ts +179 -0
- package/i18n/languages/th_TH.ts +179 -0
- package/i18n/languages/tr_TR.ts +179 -0
- package/i18n/languages/uk_UA.ts +179 -0
- package/i18n/languages/vi_VN.ts +179 -0
- package/i18n/languages/zh_CN.ts +179 -0
- package/i18n/languages/zh_TW.ts +179 -0
- package/i18n/ng-package.json +5 -0
- package/i18n/public-api.ts +57 -0
- package/icon/docs/readme.en_US.md +20 -0
- package/icon/docs/readme.zh_CN.md +25 -0
- package/icon/examples/en_US/default/ant-design/ant-design.component.html +4768 -0
- package/icon/examples/en_US/default/ant-design/ant-design.component.scss +51 -0
- package/icon/examples/en_US/default/ant-design/ant-design.component.ts +761 -0
- package/icon/examples/en_US/default/ant-design/readme.md +12 -0
- package/icon/examples/en_US/default/custom/custom.component.html +7 -0
- package/icon/examples/en_US/default/custom/custom.component.scss +3 -0
- package/icon/examples/en_US/default/custom/custom.component.ts +16 -0
- package/icon/examples/en_US/default/custom/readme.md +21 -0
- package/icon/examples/en_US/default/eva/eva.component.html +7234 -0
- package/icon/examples/en_US/default/eva/eva.component.scss +51 -0
- package/icon/examples/en_US/default/eva/eva.component.ts +522 -0
- package/icon/examples/en_US/default/eva/readme.md +11 -0
- package/icon/examples/en_US/default/feather/feather.component.html +3917 -0
- package/icon/examples/en_US/default/feather/feather.component.scss +51 -0
- package/icon/examples/en_US/default/feather/feather.component.ts +311 -0
- package/icon/examples/en_US/default/feather/readme.md +8 -0
- package/icon/examples/en_US/default/font-awesome/font-awesome.component.html +7609 -0
- package/icon/examples/en_US/default/font-awesome/font-awesome.component.scss +51 -0
- package/icon/examples/en_US/default/font-awesome/font-awesome.component.ts +1560 -0
- package/icon/examples/en_US/default/font-awesome/readme.md +10 -0
- package/icon/examples/en_US/default/material-design/material-design.component.html +15435 -0
- package/icon/examples/en_US/default/material-design/material-design.component.scss +51 -0
- package/icon/examples/en_US/default/material-design/material-design.component.ts +2676 -0
- package/icon/examples/en_US/default/material-design/readme.md +11 -0
- package/icon/examples/en_US/default/readme.md +4 -0
- package/icon/examples/index.ts +6 -0
- package/icon/examples/zh_CN/default/ant-design/ant-design.component.html +4767 -0
- package/icon/examples/zh_CN/default/ant-design/ant-design.component.scss +51 -0
- package/icon/examples/zh_CN/default/ant-design/ant-design.component.ts +761 -0
- package/icon/examples/zh_CN/default/ant-design/readme.md +12 -0
- package/icon/examples/zh_CN/default/custom/custom.component.html +7 -0
- package/icon/examples/zh_CN/default/custom/custom.component.scss +3 -0
- package/icon/examples/zh_CN/default/custom/custom.component.ts +16 -0
- package/icon/examples/zh_CN/default/custom/readme.md +21 -0
- package/icon/examples/zh_CN/default/eva/eva.component.html +7234 -0
- package/icon/examples/zh_CN/default/eva/eva.component.scss +51 -0
- package/icon/examples/zh_CN/default/eva/eva.component.ts +522 -0
- package/icon/examples/zh_CN/default/eva/readme.md +11 -0
- package/icon/examples/zh_CN/default/feather/feather.component.html +3917 -0
- package/icon/examples/zh_CN/default/feather/feather.component.scss +51 -0
- package/icon/examples/zh_CN/default/feather/feather.component.ts +311 -0
- package/icon/examples/zh_CN/default/feather/readme.md +8 -0
- package/icon/examples/zh_CN/default/font-awesome/font-awesome.component.html +7596 -0
- package/icon/examples/zh_CN/default/font-awesome/font-awesome.component.scss +51 -0
- package/icon/examples/zh_CN/default/font-awesome/font-awesome.component.ts +1560 -0
- package/icon/examples/zh_CN/default/font-awesome/readme.md +10 -0
- package/icon/examples/zh_CN/default/material-design/material-design.component.html +15435 -0
- package/icon/examples/zh_CN/default/material-design/material-design.component.scss +51 -0
- package/icon/examples/zh_CN/default/material-design/material-design.component.ts +2676 -0
- package/icon/examples/zh_CN/default/material-design/readme.md +11 -0
- package/icon/examples/zh_CN/default/readme.md +4 -0
- package/icon/icon.component.html +1 -0
- package/icon/icon.component.spec.ts +87 -0
- package/icon/icon.component.ts +185 -0
- package/icon/icon.module.ts +8 -0
- package/icon/icon.property.ts +64 -0
- package/icon/icon.service.ts +100 -0
- package/icon/index.ts +1 -0
- package/icon/ng-package.json +5 -0
- package/icon/public-api.ts +4 -0
- package/icon/style/index.scss +16 -0
- package/icon/style/mixin.scss +22 -0
- package/icon/style/param.scss +4 -0
- package/image/docs/readme.en_US.md +20 -0
- package/image/docs/readme.zh_CN.md +20 -0
- package/image/examples/en_US/default/custom/custom.component.html +15 -0
- package/image/examples/en_US/default/custom/custom.component.scss +7 -0
- package/image/examples/en_US/default/custom/custom.component.ts +27 -0
- package/image/examples/en_US/default/custom/readme.md +6 -0
- package/image/examples/en_US/default/default/default.component.html +5 -0
- package/image/examples/en_US/default/default/default.component.ts +9 -0
- package/image/examples/en_US/default/default/readme.md +6 -0
- package/image/examples/en_US/default/fallback/fallback.component.html +6 -0
- package/image/examples/en_US/default/fallback/fallback.component.ts +9 -0
- package/image/examples/en_US/default/fallback/readme.md +6 -0
- package/image/examples/en_US/default/group/group.component.html +12 -0
- package/image/examples/en_US/default/group/group.component.ts +9 -0
- package/image/examples/en_US/default/group/readme.md +6 -0
- package/image/examples/en_US/default/placeholder/placeholder.component.html +7 -0
- package/image/examples/en_US/default/placeholder/placeholder.component.ts +16 -0
- package/image/examples/en_US/default/placeholder/readme.md +6 -0
- package/image/examples/en_US/default/readme.md +4 -0
- package/image/examples/index.ts +5 -0
- package/image/examples/zh_CN/default/custom/custom.component.html +15 -0
- package/image/examples/zh_CN/default/custom/custom.component.scss +7 -0
- package/image/examples/zh_CN/default/custom/custom.component.ts +27 -0
- package/image/examples/zh_CN/default/custom/readme.md +6 -0
- package/image/examples/zh_CN/default/default/default.component.html +5 -0
- package/image/examples/zh_CN/default/default/default.component.ts +9 -0
- package/image/examples/zh_CN/default/default/readme.md +6 -0
- package/image/examples/zh_CN/default/fallback/fallback.component.html +6 -0
- package/image/examples/zh_CN/default/fallback/fallback.component.ts +9 -0
- package/image/examples/zh_CN/default/fallback/readme.md +6 -0
- package/image/examples/zh_CN/default/group/group.component.html +12 -0
- package/image/examples/zh_CN/default/group/group.component.ts +9 -0
- package/image/examples/zh_CN/default/group/readme.md +6 -0
- package/image/examples/zh_CN/default/placeholder/placeholder.component.html +7 -0
- package/image/examples/zh_CN/default/placeholder/placeholder.component.ts +16 -0
- package/image/examples/zh_CN/default/placeholder/readme.md +6 -0
- package/image/examples/zh_CN/default/readme.md +4 -0
- package/image/image-group.component.html +1 -0
- package/image/image-group.component.scss +10 -0
- package/image/image-group.component.ts +34 -0
- package/image/image-group.token.ts +10 -0
- package/image/image-preview.component.html +54 -0
- package/image/image-preview.component.scss +23 -0
- package/image/image-preview.component.ts +194 -0
- package/image/image.component.html +37 -0
- package/image/image.component.scss +14 -0
- package/image/image.component.spec.ts +155 -0
- package/image/image.component.ts +92 -0
- package/image/image.module.ts +10 -0
- package/image/image.property.ts +223 -0
- package/image/index.ts +1 -0
- package/image/ng-package.json +5 -0
- package/image/public-api.ts +5 -0
- package/image/style/mixin.scss +140 -0
- package/image/style/param.scss +6 -0
- package/index.ts +129 -0
- package/inner/docs/readme.en_US.md +12 -0
- package/inner/docs/readme.zh_CN.md +12 -0
- package/inner/index.ts +1 -0
- package/inner/inner.component.html +1 -0
- package/inner/inner.component.spec.ts +42 -0
- package/inner/inner.component.ts +16 -0
- package/inner/inner.module.ts +8 -0
- package/inner/inner.property.ts +22 -0
- package/inner/ng-package.json +5 -0
- package/inner/public-api.ts +3 -0
- package/inner/style/index.scss +10 -0
- package/inner/style/mixin.scss +12 -0
- package/inner/style/param.scss +4 -0
- package/input/docs/readme.en_US.md +20 -0
- package/input/docs/readme.zh_CN.md +25 -0
- package/input/examples/en_US/default/auto-width/auto-width.component.html +3 -0
- package/input/examples/en_US/default/auto-width/auto-width.component.scss +5 -0
- package/input/examples/en_US/default/auto-width/auto-width.component.ts +11 -0
- package/input/examples/en_US/default/auto-width/readme.md +9 -0
- package/input/examples/en_US/default/bordered/bordered.component.html +27 -0
- package/input/examples/en_US/default/bordered/bordered.component.scss +5 -0
- package/input/examples/en_US/default/bordered/bordered.component.ts +10 -0
- package/input/examples/en_US/default/bordered/readme.md +6 -0
- package/input/examples/en_US/default/clear/clear.component.html +12 -0
- package/input/examples/en_US/default/clear/clear.component.scss +5 -0
- package/input/examples/en_US/default/clear/clear.component.ts +13 -0
- package/input/examples/en_US/default/clear/readme.md +6 -0
- package/input/examples/en_US/default/default/default.component.html +6 -0
- package/input/examples/en_US/default/default/default.component.scss +5 -0
- package/input/examples/en_US/default/default/default.component.ts +10 -0
- package/input/examples/en_US/default/default/readme.md +6 -0
- package/input/examples/en_US/default/disabled/disabled.component.html +12 -0
- package/input/examples/en_US/default/disabled/disabled.component.scss +5 -0
- package/input/examples/en_US/default/disabled/disabled.component.ts +14 -0
- package/input/examples/en_US/default/disabled/readme.md +6 -0
- package/input/examples/en_US/default/float-label/float-label.component.html +66 -0
- package/input/examples/en_US/default/float-label/float-label.component.scss +16 -0
- package/input/examples/en_US/default/float-label/float-label.component.ts +10 -0
- package/input/examples/en_US/default/float-label/readme.md +6 -0
- package/input/examples/en_US/default/focus/focus.component.html +10 -0
- package/input/examples/en_US/default/focus/focus.component.scss +5 -0
- package/input/examples/en_US/default/focus/focus.component.ts +14 -0
- package/input/examples/en_US/default/focus/readme.md +6 -0
- package/input/examples/en_US/default/group/group.component.html +50 -0
- package/input/examples/en_US/default/group/group.component.scss +8 -0
- package/input/examples/en_US/default/group/group.component.ts +68 -0
- package/input/examples/en_US/default/group/readme.md +6 -0
- package/input/examples/en_US/default/icon/icon.component.html +6 -0
- package/input/examples/en_US/default/icon/icon.component.scss +5 -0
- package/input/examples/en_US/default/icon/icon.component.ts +10 -0
- package/input/examples/en_US/default/icon/readme.md +7 -0
- package/input/examples/en_US/default/label/label.component.html +12 -0
- package/input/examples/en_US/default/label/label.component.scss +5 -0
- package/input/examples/en_US/default/label/label.component.ts +10 -0
- package/input/examples/en_US/default/label/readme.md +7 -0
- package/input/examples/en_US/default/length/length.component.html +15 -0
- package/input/examples/en_US/default/length/length.component.scss +5 -0
- package/input/examples/en_US/default/length/length.component.ts +13 -0
- package/input/examples/en_US/default/length/readme.md +6 -0
- package/input/examples/en_US/default/perpost/perpost.component.html +138 -0
- package/input/examples/en_US/default/perpost/perpost.component.scss +8 -0
- package/input/examples/en_US/default/perpost/perpost.component.ts +65 -0
- package/input/examples/en_US/default/perpost/readme.md +6 -0
- package/input/examples/en_US/default/readme.md +4 -0
- package/input/examples/en_US/default/required/readme.md +6 -0
- package/input/examples/en_US/default/required/required.component.html +9 -0
- package/input/examples/en_US/default/required/required.component.scss +5 -0
- package/input/examples/en_US/default/required/required.component.ts +13 -0
- package/input/examples/en_US/default/size/readme.md +6 -0
- package/input/examples/en_US/default/size/size.component.html +16 -0
- package/input/examples/en_US/default/size/size.component.scss +5 -0
- package/input/examples/en_US/default/size/size.component.ts +16 -0
- package/input/examples/en_US/default/variant/readme.md +6 -0
- package/input/examples/en_US/default/variant/variant.component.html +12 -0
- package/input/examples/en_US/default/variant/variant.component.scss +5 -0
- package/input/examples/en_US/default/variant/variant.component.ts +10 -0
- package/input/examples/index.ts +15 -0
- package/input/examples/zh_CN/default/auto-width/auto-width.component.html +3 -0
- package/input/examples/zh_CN/default/auto-width/auto-width.component.scss +5 -0
- package/input/examples/zh_CN/default/auto-width/auto-width.component.ts +11 -0
- package/input/examples/zh_CN/default/auto-width/readme.md +9 -0
- package/input/examples/zh_CN/default/bordered/bordered.component.html +15 -0
- package/input/examples/zh_CN/default/bordered/bordered.component.scss +5 -0
- package/input/examples/zh_CN/default/bordered/bordered.component.ts +10 -0
- package/input/examples/zh_CN/default/bordered/readme.md +6 -0
- package/input/examples/zh_CN/default/clear/clear.component.html +12 -0
- package/input/examples/zh_CN/default/clear/clear.component.scss +5 -0
- package/input/examples/zh_CN/default/clear/clear.component.ts +13 -0
- package/input/examples/zh_CN/default/clear/readme.md +6 -0
- package/input/examples/zh_CN/default/default/default.component.html +6 -0
- package/input/examples/zh_CN/default/default/default.component.scss +5 -0
- package/input/examples/zh_CN/default/default/default.component.ts +10 -0
- package/input/examples/zh_CN/default/default/readme.md +6 -0
- package/input/examples/zh_CN/default/disabled/disabled.component.html +12 -0
- package/input/examples/zh_CN/default/disabled/disabled.component.scss +5 -0
- package/input/examples/zh_CN/default/disabled/disabled.component.ts +14 -0
- package/input/examples/zh_CN/default/disabled/readme.md +6 -0
- package/input/examples/zh_CN/default/float-label/float-label.component.html +66 -0
- package/input/examples/zh_CN/default/float-label/float-label.component.scss +16 -0
- package/input/examples/zh_CN/default/float-label/float-label.component.ts +10 -0
- package/input/examples/zh_CN/default/float-label/readme.md +6 -0
- package/input/examples/zh_CN/default/focus/focus.component.html +10 -0
- package/input/examples/zh_CN/default/focus/focus.component.scss +5 -0
- package/input/examples/zh_CN/default/focus/focus.component.ts +14 -0
- package/input/examples/zh_CN/default/focus/readme.md +6 -0
- package/input/examples/zh_CN/default/group/group.component.html +50 -0
- package/input/examples/zh_CN/default/group/group.component.scss +8 -0
- package/input/examples/zh_CN/default/group/group.component.ts +68 -0
- package/input/examples/zh_CN/default/group/readme.md +6 -0
- package/input/examples/zh_CN/default/icon/icon.component.html +6 -0
- package/input/examples/zh_CN/default/icon/icon.component.scss +5 -0
- package/input/examples/zh_CN/default/icon/icon.component.ts +10 -0
- package/input/examples/zh_CN/default/icon/readme.md +7 -0
- package/input/examples/zh_CN/default/label/label.component.html +12 -0
- package/input/examples/zh_CN/default/label/label.component.scss +5 -0
- package/input/examples/zh_CN/default/label/label.component.ts +10 -0
- package/input/examples/zh_CN/default/label/readme.md +7 -0
- package/input/examples/zh_CN/default/length/length.component.html +15 -0
- package/input/examples/zh_CN/default/length/length.component.scss +5 -0
- package/input/examples/zh_CN/default/length/length.component.ts +13 -0
- package/input/examples/zh_CN/default/length/readme.md +6 -0
- package/input/examples/zh_CN/default/perpost/perpost.component.html +137 -0
- package/input/examples/zh_CN/default/perpost/perpost.component.scss +8 -0
- package/input/examples/zh_CN/default/perpost/perpost.component.ts +65 -0
- package/input/examples/zh_CN/default/perpost/readme.md +6 -0
- package/input/examples/zh_CN/default/readme.md +4 -0
- package/input/examples/zh_CN/default/required/readme.md +6 -0
- package/input/examples/zh_CN/default/required/required.component.html +9 -0
- package/input/examples/zh_CN/default/required/required.component.scss +5 -0
- package/input/examples/zh_CN/default/required/required.component.ts +13 -0
- package/input/examples/zh_CN/default/size/readme.md +6 -0
- package/input/examples/zh_CN/default/size/size.component.html +16 -0
- package/input/examples/zh_CN/default/size/size.component.scss +5 -0
- package/input/examples/zh_CN/default/size/size.component.ts +16 -0
- package/input/examples/zh_CN/default/variant/readme.md +6 -0
- package/input/examples/zh_CN/default/variant/variant.component.html +12 -0
- package/input/examples/zh_CN/default/variant/variant.component.scss +5 -0
- package/input/examples/zh_CN/default/variant/variant.component.ts +10 -0
- package/input/index.ts +1 -0
- package/input/input-group.component.html +3 -0
- package/input/input-group.component.scss +13 -0
- package/input/input-group.component.ts +13 -0
- package/input/input.component.html +126 -0
- package/input/input.component.scss +18 -0
- package/input/input.component.spec.ts +519 -0
- package/input/input.component.ts +328 -0
- package/input/input.module.ts +8 -0
- package/input/input.property.ts +579 -0
- package/input/ng-package.json +5 -0
- package/input/public-api.ts +4 -0
- package/input/style/mixin.scss +615 -0
- package/input/style/param.scss +44 -0
- package/input-number/docs/readme.en_US.md +20 -0
- package/input-number/docs/readme.zh_CN.md +20 -0
- package/input-number/examples/en_US/default/bordered/bordered.component.html +15 -0
- package/input-number/examples/en_US/default/bordered/bordered.component.scss +5 -0
- package/input-number/examples/en_US/default/bordered/bordered.component.ts +10 -0
- package/input-number/examples/en_US/default/bordered/readme.md +6 -0
- package/input-number/examples/en_US/default/default/default.component.html +1 -0
- package/input-number/examples/en_US/default/default/default.component.ts +9 -0
- package/input-number/examples/en_US/default/default/readme.md +6 -0
- package/input-number/examples/en_US/default/disabled/disabled.component.html +6 -0
- package/input-number/examples/en_US/default/disabled/disabled.component.scss +5 -0
- package/input-number/examples/en_US/default/disabled/disabled.component.ts +13 -0
- package/input-number/examples/en_US/default/disabled/readme.md +6 -0
- package/input-number/examples/en_US/default/format/format.component.html +14 -0
- package/input-number/examples/en_US/default/format/format.component.scss +5 -0
- package/input-number/examples/en_US/default/format/format.component.ts +22 -0
- package/input-number/examples/en_US/default/format/readme.md +6 -0
- package/input-number/examples/en_US/default/hidden-button/hidden-button.component.html +3 -0
- package/input-number/examples/en_US/default/hidden-button/hidden-button.component.scss +5 -0
- package/input-number/examples/en_US/default/hidden-button/hidden-button.component.ts +10 -0
- package/input-number/examples/en_US/default/hidden-button/readme.md +6 -0
- package/input-number/examples/en_US/default/label/label.component.html +12 -0
- package/input-number/examples/en_US/default/label/label.component.scss +5 -0
- package/input-number/examples/en_US/default/label/label.component.ts +10 -0
- package/input-number/examples/en_US/default/label/readme.md +7 -0
- package/input-number/examples/en_US/default/limit/limit.component.html +9 -0
- package/input-number/examples/en_US/default/limit/limit.component.scss +5 -0
- package/input-number/examples/en_US/default/limit/limit.component.ts +10 -0
- package/input-number/examples/en_US/default/limit/readme.md +6 -0
- package/input-number/examples/en_US/default/precision/precision.component.html +1 -0
- package/input-number/examples/en_US/default/precision/precision.component.ts +9 -0
- package/input-number/examples/en_US/default/precision/readme.md +7 -0
- package/input-number/examples/en_US/default/readme.md +4 -0
- package/input-number/examples/en_US/default/required/readme.md +6 -0
- package/input-number/examples/en_US/default/required/required.component.html +9 -0
- package/input-number/examples/en_US/default/required/required.component.scss +5 -0
- package/input-number/examples/en_US/default/required/required.component.ts +13 -0
- package/input-number/examples/en_US/default/size/readme.md +6 -0
- package/input-number/examples/en_US/default/size/size.component.html +19 -0
- package/input-number/examples/en_US/default/size/size.component.scss +5 -0
- package/input-number/examples/en_US/default/size/size.component.ts +16 -0
- package/input-number/examples/en_US/default/variant/readme.md +6 -0
- package/input-number/examples/en_US/default/variant/variant.component.html +12 -0
- package/input-number/examples/en_US/default/variant/variant.component.scss +5 -0
- package/input-number/examples/en_US/default/variant/variant.component.ts +10 -0
- package/input-number/examples/index.ts +11 -0
- package/input-number/examples/zh_CN/default/bordered/bordered.component.html +15 -0
- package/input-number/examples/zh_CN/default/bordered/bordered.component.scss +5 -0
- package/input-number/examples/zh_CN/default/bordered/bordered.component.ts +10 -0
- package/input-number/examples/zh_CN/default/bordered/readme.md +6 -0
- package/input-number/examples/zh_CN/default/default/default.component.html +1 -0
- package/input-number/examples/zh_CN/default/default/default.component.ts +9 -0
- package/input-number/examples/zh_CN/default/default/readme.md +6 -0
- package/input-number/examples/zh_CN/default/disabled/disabled.component.html +6 -0
- package/input-number/examples/zh_CN/default/disabled/disabled.component.scss +5 -0
- package/input-number/examples/zh_CN/default/disabled/disabled.component.ts +13 -0
- package/input-number/examples/zh_CN/default/disabled/readme.md +6 -0
- package/input-number/examples/zh_CN/default/format/format.component.html +14 -0
- package/input-number/examples/zh_CN/default/format/format.component.scss +5 -0
- package/input-number/examples/zh_CN/default/format/format.component.ts +22 -0
- package/input-number/examples/zh_CN/default/format/readme.md +6 -0
- package/input-number/examples/zh_CN/default/hidden-button/hidden-button.component.html +3 -0
- package/input-number/examples/zh_CN/default/hidden-button/hidden-button.component.scss +5 -0
- package/input-number/examples/zh_CN/default/hidden-button/hidden-button.component.ts +10 -0
- package/input-number/examples/zh_CN/default/hidden-button/readme.md +6 -0
- package/input-number/examples/zh_CN/default/label/label.component.html +12 -0
- package/input-number/examples/zh_CN/default/label/label.component.scss +5 -0
- package/input-number/examples/zh_CN/default/label/label.component.ts +10 -0
- package/input-number/examples/zh_CN/default/label/readme.md +7 -0
- package/input-number/examples/zh_CN/default/limit/limit.component.html +9 -0
- package/input-number/examples/zh_CN/default/limit/limit.component.scss +5 -0
- package/input-number/examples/zh_CN/default/limit/limit.component.ts +10 -0
- package/input-number/examples/zh_CN/default/limit/readme.md +6 -0
- package/input-number/examples/zh_CN/default/precision/precision.component.html +1 -0
- package/input-number/examples/zh_CN/default/precision/precision.component.ts +9 -0
- package/input-number/examples/zh_CN/default/precision/readme.md +7 -0
- package/input-number/examples/zh_CN/default/readme.md +4 -0
- package/input-number/examples/zh_CN/default/required/readme.md +6 -0
- package/input-number/examples/zh_CN/default/required/required.component.html +9 -0
- package/input-number/examples/zh_CN/default/required/required.component.scss +5 -0
- package/input-number/examples/zh_CN/default/required/required.component.ts +13 -0
- package/input-number/examples/zh_CN/default/size/readme.md +6 -0
- package/input-number/examples/zh_CN/default/size/size.component.html +19 -0
- package/input-number/examples/zh_CN/default/size/size.component.scss +5 -0
- package/input-number/examples/zh_CN/default/size/size.component.ts +16 -0
- package/input-number/examples/zh_CN/default/variant/readme.md +6 -0
- package/input-number/examples/zh_CN/default/variant/variant.component.html +12 -0
- package/input-number/examples/zh_CN/default/variant/variant.component.scss +5 -0
- package/input-number/examples/zh_CN/default/variant/variant.component.ts +10 -0
- package/input-number/index.ts +1 -0
- package/input-number/input-number.component.html +74 -0
- package/input-number/input-number.component.spec.ts +304 -0
- package/input-number/input-number.component.ts +161 -0
- package/input-number/input-number.module.ts +8 -0
- package/input-number/input-number.property.ts +292 -0
- package/input-number/ng-package.json +5 -0
- package/input-number/public-api.ts +3 -0
- package/input-number/style/index.scss +15 -0
- package/input-number/style/mixin.scss +23 -0
- package/input-number/style/param.scss +37 -0
- package/karma.conf.js +56 -0
- package/keyword/docs/readme.en_US.md +9 -0
- package/keyword/docs/readme.zh_CN.md +9 -0
- package/keyword/index.ts +1 -0
- package/keyword/keyword.directive.spec.ts +101 -0
- package/keyword/keyword.directive.ts +49 -0
- package/keyword/keyword.module.ts +8 -0
- package/keyword/keyword.property.ts +44 -0
- package/keyword/ng-package.json +5 -0
- package/keyword/public-api.ts +3 -0
- package/layout/col.component.scss +9 -0
- package/layout/col.component.ts +45 -0
- package/layout/docs/readme.en_US.md +20 -0
- package/layout/docs/readme.zh_CN.md +25 -0
- package/layout/examples/en_US/default/blend/blend.component.html +15 -0
- package/layout/examples/en_US/default/blend/blend.component.scss +19 -0
- package/layout/examples/en_US/default/blend/blend.component.ts +10 -0
- package/layout/examples/en_US/default/blend/readme.md +6 -0
- package/layout/examples/en_US/default/default/default.component.html +15 -0
- package/layout/examples/en_US/default/default/default.component.scss +22 -0
- package/layout/examples/en_US/default/default/default.component.ts +10 -0
- package/layout/examples/en_US/default/default/readme.md +10 -0
- package/layout/examples/en_US/default/flex/flex.component.html +25 -0
- package/layout/examples/en_US/default/flex/flex.component.scss +24 -0
- package/layout/examples/en_US/default/flex/flex.component.ts +10 -0
- package/layout/examples/en_US/default/flex/readme.md +10 -0
- package/layout/examples/en_US/default/hidden/hidden.component.html +35 -0
- package/layout/examples/en_US/default/hidden/hidden.component.scss +24 -0
- package/layout/examples/en_US/default/hidden/hidden.component.ts +10 -0
- package/layout/examples/en_US/default/hidden/readme.md +20 -0
- package/layout/examples/en_US/default/layout/layout.component.html +14 -0
- package/layout/examples/en_US/default/layout/layout.component.scss +24 -0
- package/layout/examples/en_US/default/layout/layout.component.ts +10 -0
- package/layout/examples/en_US/default/layout/readme.md +6 -0
- package/layout/examples/en_US/default/offset/offset.component.html +11 -0
- package/layout/examples/en_US/default/offset/offset.component.scss +19 -0
- package/layout/examples/en_US/default/offset/offset.component.ts +10 -0
- package/layout/examples/en_US/default/offset/readme.md +8 -0
- package/layout/examples/en_US/default/readme.md +4 -0
- package/layout/examples/en_US/default/space/readme.md +9 -0
- package/layout/examples/en_US/default/space/space.component.html +15 -0
- package/layout/examples/en_US/default/space/space.component.scss +19 -0
- package/layout/examples/en_US/default/space/space.component.ts +10 -0
- package/layout/examples/index.ts +7 -0
- package/layout/examples/zh_CN/default/blend/blend.component.html +15 -0
- package/layout/examples/zh_CN/default/blend/blend.component.scss +19 -0
- package/layout/examples/zh_CN/default/blend/blend.component.ts +10 -0
- package/layout/examples/zh_CN/default/blend/readme.md +6 -0
- package/layout/examples/zh_CN/default/default/default.component.html +15 -0
- package/layout/examples/zh_CN/default/default/default.component.scss +22 -0
- package/layout/examples/zh_CN/default/default/default.component.ts +10 -0
- package/layout/examples/zh_CN/default/default/readme.md +10 -0
- package/layout/examples/zh_CN/default/flex/flex.component.html +25 -0
- package/layout/examples/zh_CN/default/flex/flex.component.scss +24 -0
- package/layout/examples/zh_CN/default/flex/flex.component.ts +10 -0
- package/layout/examples/zh_CN/default/flex/readme.md +10 -0
- package/layout/examples/zh_CN/default/hidden/hidden.component.html +35 -0
- package/layout/examples/zh_CN/default/hidden/hidden.component.scss +24 -0
- package/layout/examples/zh_CN/default/hidden/hidden.component.ts +10 -0
- package/layout/examples/zh_CN/default/hidden/readme.md +20 -0
- package/layout/examples/zh_CN/default/layout/layout.component.html +14 -0
- package/layout/examples/zh_CN/default/layout/layout.component.scss +24 -0
- package/layout/examples/zh_CN/default/layout/layout.component.ts +10 -0
- package/layout/examples/zh_CN/default/layout/readme.md +6 -0
- package/layout/examples/zh_CN/default/offset/offset.component.html +11 -0
- package/layout/examples/zh_CN/default/offset/offset.component.scss +19 -0
- package/layout/examples/zh_CN/default/offset/offset.component.ts +10 -0
- package/layout/examples/zh_CN/default/offset/readme.md +8 -0
- package/layout/examples/zh_CN/default/readme.md +4 -0
- package/layout/examples/zh_CN/default/space/readme.md +9 -0
- package/layout/examples/zh_CN/default/space/space.component.html +15 -0
- package/layout/examples/zh_CN/default/space/space.component.scss +19 -0
- package/layout/examples/zh_CN/default/space/space.component.ts +10 -0
- package/layout/index.ts +1 -0
- package/layout/layout.component.spec.ts +191 -0
- package/layout/layout.module.ts +9 -0
- package/layout/layout.property.ts +137 -0
- package/layout/ng-package.json +5 -0
- package/layout/public-api.ts +4 -0
- package/layout/row.component.scss +9 -0
- package/layout/row.component.ts +37 -0
- package/layout/style/mixin.scss +58 -0
- package/layout/style/param.scss +5 -0
- package/link/docs/readme.en_US.md +20 -0
- package/link/docs/readme.zh_CN.md +20 -0
- package/link/examples/en_US/default/default/default.component.html +6 -0
- package/link/examples/en_US/default/default/default.component.scss +5 -0
- package/link/examples/en_US/default/default/default.component.ts +10 -0
- package/link/examples/en_US/default/default/readme.md +6 -0
- package/link/examples/en_US/default/disabled/disabled.component.html +6 -0
- package/link/examples/en_US/default/disabled/disabled.component.scss +5 -0
- package/link/examples/en_US/default/disabled/disabled.component.ts +10 -0
- package/link/examples/en_US/default/disabled/readme.md +8 -0
- package/link/examples/en_US/default/icon/icon.component.html +2 -0
- package/link/examples/en_US/default/icon/icon.component.scss +7 -0
- package/link/examples/en_US/default/icon/icon.component.ts +10 -0
- package/link/examples/en_US/default/icon/readme.md +6 -0
- package/link/examples/en_US/default/readme.md +4 -0
- package/link/examples/en_US/default/underline/readme.md +6 -0
- package/link/examples/en_US/default/underline/underline.component.html +2 -0
- package/link/examples/en_US/default/underline/underline.component.scss +5 -0
- package/link/examples/en_US/default/underline/underline.component.ts +10 -0
- package/link/examples/index.ts +4 -0
- package/link/examples/zh_CN/default/default/default.component.html +6 -0
- package/link/examples/zh_CN/default/default/default.component.scss +5 -0
- package/link/examples/zh_CN/default/default/default.component.ts +10 -0
- package/link/examples/zh_CN/default/default/readme.md +6 -0
- package/link/examples/zh_CN/default/disabled/disabled.component.html +6 -0
- package/link/examples/zh_CN/default/disabled/disabled.component.scss +5 -0
- package/link/examples/zh_CN/default/disabled/disabled.component.ts +10 -0
- package/link/examples/zh_CN/default/disabled/readme.md +8 -0
- package/link/examples/zh_CN/default/icon/icon.component.html +2 -0
- package/link/examples/zh_CN/default/icon/icon.component.scss +7 -0
- package/link/examples/zh_CN/default/icon/icon.component.ts +10 -0
- package/link/examples/zh_CN/default/icon/readme.md +6 -0
- package/link/examples/zh_CN/default/readme.md +4 -0
- package/link/examples/zh_CN/default/underline/readme.md +6 -0
- package/link/examples/zh_CN/default/underline/underline.component.html +2 -0
- package/link/examples/zh_CN/default/underline/underline.component.scss +5 -0
- package/link/examples/zh_CN/default/underline/underline.component.ts +10 -0
- package/link/index.ts +1 -0
- package/link/link.component.html +16 -0
- package/link/link.component.scss +13 -0
- package/link/link.component.spec.ts +112 -0
- package/link/link.component.ts +42 -0
- package/link/link.module.ts +8 -0
- package/link/link.property.ts +108 -0
- package/link/ng-package.json +5 -0
- package/link/public-api.ts +3 -0
- package/link/style/mixin.scss +78 -0
- package/link/style/param.scss +4 -0
- package/list/docs/readme.en_US.md +20 -0
- package/list/docs/readme.zh_CN.md +20 -0
- package/list/examples/en_US/default/default/default.component.html +31 -0
- package/list/examples/en_US/default/default/default.component.scss +5 -0
- package/list/examples/en_US/default/default/default.component.ts +31 -0
- package/list/examples/en_US/default/default/readme.md +7 -0
- package/list/examples/en_US/default/group/group.component.html +13 -0
- package/list/examples/en_US/default/group/group.component.scss +13 -0
- package/list/examples/en_US/default/group/group.component.ts +34 -0
- package/list/examples/en_US/default/group/readme.md +6 -0
- package/list/examples/en_US/default/load-more/load-more.component.html +3 -0
- package/list/examples/en_US/default/load-more/load-more.component.scss +7 -0
- package/list/examples/en_US/default/load-more/load-more.component.ts +22 -0
- package/list/examples/en_US/default/load-more/readme.md +8 -0
- package/list/examples/en_US/default/readme.md +4 -0
- package/list/examples/en_US/default/scroll/readme.md +8 -0
- package/list/examples/en_US/default/scroll/scroll.component.html +10 -0
- package/list/examples/en_US/default/scroll/scroll.component.scss +8 -0
- package/list/examples/en_US/default/scroll/scroll.component.ts +20 -0
- package/list/examples/en_US/default/size/readme.md +6 -0
- package/list/examples/en_US/default/size/size.component.html +4 -0
- package/list/examples/en_US/default/size/size.component.scss +7 -0
- package/list/examples/en_US/default/size/size.component.ts +17 -0
- package/list/examples/index.ts +5 -0
- package/list/examples/zh_CN/default/default/default.component.html +31 -0
- package/list/examples/zh_CN/default/default/default.component.scss +5 -0
- package/list/examples/zh_CN/default/default/default.component.ts +31 -0
- package/list/examples/zh_CN/default/default/readme.md +7 -0
- package/list/examples/zh_CN/default/group/group.component.html +13 -0
- package/list/examples/zh_CN/default/group/group.component.scss +13 -0
- package/list/examples/zh_CN/default/group/group.component.ts +34 -0
- package/list/examples/zh_CN/default/group/readme.md +6 -0
- package/list/examples/zh_CN/default/load-more/load-more.component.html +3 -0
- package/list/examples/zh_CN/default/load-more/load-more.component.scss +7 -0
- package/list/examples/zh_CN/default/load-more/load-more.component.ts +22 -0
- package/list/examples/zh_CN/default/load-more/readme.md +8 -0
- package/list/examples/zh_CN/default/readme.md +4 -0
- package/list/examples/zh_CN/default/scroll/readme.md +8 -0
- package/list/examples/zh_CN/default/scroll/scroll.component.html +10 -0
- package/list/examples/zh_CN/default/scroll/scroll.component.scss +8 -0
- package/list/examples/zh_CN/default/scroll/scroll.component.ts +20 -0
- package/list/examples/zh_CN/default/size/readme.md +6 -0
- package/list/examples/zh_CN/default/size/size.component.html +4 -0
- package/list/examples/zh_CN/default/size/size.component.scss +7 -0
- package/list/examples/zh_CN/default/size/size.component.ts +17 -0
- package/list/index.ts +1 -0
- package/list/list-drop-group.directive.ts +35 -0
- package/list/list-option.component.html +35 -0
- package/list/list-option.component.scss +16 -0
- package/list/list-option.component.ts +61 -0
- package/list/list.component.html +120 -0
- package/list/list.component.scss +17 -0
- package/list/list.component.spec.ts +433 -0
- package/list/list.component.ts +479 -0
- package/list/list.module.ts +10 -0
- package/list/list.property.ts +401 -0
- package/list/ng-package.json +5 -0
- package/list/public-api.ts +5 -0
- package/list/style/mixin.scss +205 -0
- package/list/style/param.scss +38 -0
- package/loading/docs/readme.en_US.md +20 -0
- package/loading/docs/readme.zh_CN.md +20 -0
- package/loading/examples/en_US/default/custom/custom.component.html +151 -0
- package/loading/examples/en_US/default/custom/custom.component.scss +18 -0
- package/loading/examples/en_US/default/custom/custom.component.ts +10 -0
- package/loading/examples/en_US/default/custom/readme.md +6 -0
- package/loading/examples/en_US/default/default/default.component.html +44 -0
- package/loading/examples/en_US/default/default/default.component.scss +18 -0
- package/loading/examples/en_US/default/default/default.component.ts +11 -0
- package/loading/examples/en_US/default/default/readme.md +6 -0
- package/loading/examples/en_US/default/full-screen/full-screen.component.html +3 -0
- package/loading/examples/en_US/default/full-screen/full-screen.component.ts +22 -0
- package/loading/examples/en_US/default/full-screen/readme.md +6 -0
- package/loading/examples/en_US/default/readme.md +4 -0
- package/loading/examples/en_US/default/type/readme.md +6 -0
- package/loading/examples/en_US/default/type/type.component.html +44 -0
- package/loading/examples/en_US/default/type/type.component.scss +6 -0
- package/loading/examples/en_US/default/type/type.component.ts +10 -0
- package/loading/examples/index.ts +4 -0
- package/loading/examples/zh_CN/default/custom/custom.component.html +151 -0
- package/loading/examples/zh_CN/default/custom/custom.component.scss +18 -0
- package/loading/examples/zh_CN/default/custom/custom.component.ts +10 -0
- package/loading/examples/zh_CN/default/custom/readme.md +6 -0
- package/loading/examples/zh_CN/default/default/default.component.html +44 -0
- package/loading/examples/zh_CN/default/default/default.component.scss +18 -0
- package/loading/examples/zh_CN/default/default/default.component.ts +11 -0
- package/loading/examples/zh_CN/default/default/readme.md +6 -0
- package/loading/examples/zh_CN/default/full-screen/full-screen.component.html +3 -0
- package/loading/examples/zh_CN/default/full-screen/full-screen.component.ts +22 -0
- package/loading/examples/zh_CN/default/full-screen/readme.md +6 -0
- package/loading/examples/zh_CN/default/readme.md +4 -0
- package/loading/examples/zh_CN/default/type/readme.md +6 -0
- package/loading/examples/zh_CN/default/type/type.component.html +44 -0
- package/loading/examples/zh_CN/default/type/type.component.scss +6 -0
- package/loading/examples/zh_CN/default/type/type.component.ts +10 -0
- package/loading/index.ts +1 -0
- package/loading/loading.component.html +409 -0
- package/loading/loading.component.scss +14 -0
- package/loading/loading.component.spec.ts +141 -0
- package/loading/loading.component.ts +94 -0
- package/loading/loading.module.ts +8 -0
- package/loading/loading.property.ts +84 -0
- package/loading/ng-package.json +5 -0
- package/loading/public-api.ts +3 -0
- package/loading/style/mixin.scss +110 -0
- package/loading/style/param.scss +4 -0
- package/menu/docs/readme.en_US.md +20 -0
- package/menu/docs/readme.zh_CN.md +20 -0
- package/menu/examples/en_US/default/default/default.component.html +1 -0
- package/menu/examples/en_US/default/default/default.component.ts +11 -0
- package/menu/examples/en_US/default/default/readme.md +6 -0
- package/menu/examples/en_US/default/icon/icon.component.html +1 -0
- package/menu/examples/en_US/default/icon/icon.component.ts +16 -0
- package/menu/examples/en_US/default/icon/readme.md +6 -0
- package/menu/examples/en_US/default/layout/layout.component.html +1 -0
- package/menu/examples/en_US/default/layout/layout.component.ts +25 -0
- package/menu/examples/en_US/default/layout/readme.md +6 -0
- package/menu/examples/en_US/default/leaf/leaf.component.html +1 -0
- package/menu/examples/en_US/default/leaf/leaf.component.ts +25 -0
- package/menu/examples/en_US/default/leaf/readme.md +6 -0
- package/menu/examples/en_US/default/readme.md +4 -0
- package/menu/examples/en_US/default/size/readme.md +6 -0
- package/menu/examples/en_US/default/size/size.component.html +10 -0
- package/menu/examples/en_US/default/size/size.component.scss +5 -0
- package/menu/examples/en_US/default/size/size.component.ts +26 -0
- package/menu/examples/index.ts +5 -0
- package/menu/examples/zh_CN/default/default/default.component.html +1 -0
- package/menu/examples/zh_CN/default/default/default.component.ts +11 -0
- package/menu/examples/zh_CN/default/default/readme.md +6 -0
- package/menu/examples/zh_CN/default/icon/icon.component.html +1 -0
- package/menu/examples/zh_CN/default/icon/icon.component.ts +16 -0
- package/menu/examples/zh_CN/default/icon/readme.md +6 -0
- package/menu/examples/zh_CN/default/layout/layout.component.html +1 -0
- package/menu/examples/zh_CN/default/layout/layout.component.ts +25 -0
- package/menu/examples/zh_CN/default/layout/readme.md +6 -0
- package/menu/examples/zh_CN/default/leaf/leaf.component.html +1 -0
- package/menu/examples/zh_CN/default/leaf/leaf.component.ts +25 -0
- package/menu/examples/zh_CN/default/leaf/readme.md +6 -0
- package/menu/examples/zh_CN/default/readme.md +4 -0
- package/menu/examples/zh_CN/default/size/readme.md +6 -0
- package/menu/examples/zh_CN/default/size/size.component.html +10 -0
- package/menu/examples/zh_CN/default/size/size.component.scss +5 -0
- package/menu/examples/zh_CN/default/size/size.component.ts +26 -0
- package/menu/index.ts +1 -0
- package/menu/menu-node.component.html +22 -0
- package/menu/menu-node.component.ts +45 -0
- package/menu/menu.component.html +95 -0
- package/menu/menu.component.scss +14 -0
- package/menu/menu.component.spec.ts +255 -0
- package/menu/menu.component.ts +202 -0
- package/menu/menu.module.ts +9 -0
- package/menu/menu.property.ts +150 -0
- package/menu/menu.token.ts +16 -0
- package/menu/ng-package.json +5 -0
- package/menu/public-api.ts +4 -0
- package/menu/style/mixin.scss +165 -0
- package/menu/style/param.scss +4 -0
- package/message/docs/readme.en_US.md +20 -0
- package/message/docs/readme.zh_CN.md +20 -0
- package/message/examples/en_US/default/close/close.component.html +8 -0
- package/message/examples/en_US/default/close/close.component.scss +8 -0
- package/message/examples/en_US/default/close/close.component.ts +13 -0
- package/message/examples/en_US/default/close/readme.md +6 -0
- package/message/examples/en_US/default/default/default.component.html +17 -0
- package/message/examples/en_US/default/default/default.component.scss +23 -0
- package/message/examples/en_US/default/default/default.component.ts +17 -0
- package/message/examples/en_US/default/default/readme.md +6 -0
- package/message/examples/en_US/default/loading/loading.component.html +4 -0
- package/message/examples/en_US/default/loading/loading.component.ts +25 -0
- package/message/examples/en_US/default/loading/readme.md +6 -0
- package/message/examples/en_US/default/readme.md +4 -0
- package/message/examples/en_US/default/single/readme.md +6 -0
- package/message/examples/en_US/default/single/single.component.html +17 -0
- package/message/examples/en_US/default/single/single.component.scss +23 -0
- package/message/examples/en_US/default/single/single.component.ts +19 -0
- package/message/examples/en_US/default/type/readme.md +6 -0
- package/message/examples/en_US/default/type/type.component.html +18 -0
- package/message/examples/en_US/default/type/type.component.scss +8 -0
- package/message/examples/en_US/default/type/type.component.ts +13 -0
- package/message/examples/index.ts +5 -0
- package/message/examples/zh_CN/default/close/close.component.html +8 -0
- package/message/examples/zh_CN/default/close/close.component.scss +8 -0
- package/message/examples/zh_CN/default/close/close.component.ts +13 -0
- package/message/examples/zh_CN/default/close/readme.md +6 -0
- package/message/examples/zh_CN/default/default/default.component.html +17 -0
- package/message/examples/zh_CN/default/default/default.component.scss +23 -0
- package/message/examples/zh_CN/default/default/default.component.ts +17 -0
- package/message/examples/zh_CN/default/default/readme.md +6 -0
- package/message/examples/zh_CN/default/loading/loading.component.html +4 -0
- package/message/examples/zh_CN/default/loading/loading.component.ts +25 -0
- package/message/examples/zh_CN/default/loading/readme.md +6 -0
- package/message/examples/zh_CN/default/readme.md +4 -0
- package/message/examples/zh_CN/default/single/readme.md +6 -0
- package/message/examples/zh_CN/default/single/single.component.html +17 -0
- package/message/examples/zh_CN/default/single/single.component.scss +23 -0
- package/message/examples/zh_CN/default/single/single.component.ts +19 -0
- package/message/examples/zh_CN/default/type/readme.md +6 -0
- package/message/examples/zh_CN/default/type/type.component.html +18 -0
- package/message/examples/zh_CN/default/type/type.component.scss +8 -0
- package/message/examples/zh_CN/default/type/type.component.ts +13 -0
- package/message/index.ts +1 -0
- package/message/message-ref.ts +14 -0
- package/message/message.component.html +25 -0
- package/message/message.component.scss +16 -0
- package/message/message.component.spec.ts +256 -0
- package/message/message.component.ts +42 -0
- package/message/message.module.ts +7 -0
- package/message/message.property.ts +156 -0
- package/message/message.service.ts +171 -0
- package/message/ng-package.json +5 -0
- package/message/public-api.ts +5 -0
- package/message/readme.md +20 -0
- package/message/style/mixin.scss +13 -0
- package/message/style/param.scss +4 -0
- package/message-box/docs/readme.en_US.md +20 -0
- package/message-box/docs/readme.zh_CN.md +20 -0
- package/message-box/examples/en_US/default/confirm/confirm.component.html +3 -0
- package/message-box/examples/en_US/default/confirm/confirm.component.ts +30 -0
- package/message-box/examples/en_US/default/confirm/readme.md +6 -0
- package/message-box/examples/en_US/default/custom/custom.component.html +27 -0
- package/message-box/examples/en_US/default/custom/custom.component.scss +12 -0
- package/message-box/examples/en_US/default/custom/custom.component.ts +26 -0
- package/message-box/examples/en_US/default/custom/readme.md +6 -0
- package/message-box/examples/en_US/default/default/default.component.html +17 -0
- package/message-box/examples/en_US/default/default/default.component.scss +23 -0
- package/message-box/examples/en_US/default/default/default.component.ts +23 -0
- package/message-box/examples/en_US/default/default/readme.md +6 -0
- package/message-box/examples/en_US/default/prompt/prompt.component.html +4 -0
- package/message-box/examples/en_US/default/prompt/prompt.component.ts +57 -0
- package/message-box/examples/en_US/default/prompt/readme.md +6 -0
- package/message-box/examples/en_US/default/readme.md +4 -0
- package/message-box/examples/index.ts +5 -0
- package/message-box/examples/zh_CN/default/confirm/confirm.component.html +3 -0
- package/message-box/examples/zh_CN/default/confirm/confirm.component.ts +30 -0
- package/message-box/examples/zh_CN/default/confirm/readme.md +6 -0
- package/message-box/examples/zh_CN/default/custom/custom.component.html +27 -0
- package/message-box/examples/zh_CN/default/custom/custom.component.scss +12 -0
- package/message-box/examples/zh_CN/default/custom/custom.component.ts +26 -0
- package/message-box/examples/zh_CN/default/custom/readme.md +6 -0
- package/message-box/examples/zh_CN/default/default/default.component.html +17 -0
- package/message-box/examples/zh_CN/default/default/default.component.scss +23 -0
- package/message-box/examples/zh_CN/default/default/default.component.ts +23 -0
- package/message-box/examples/zh_CN/default/default/readme.md +6 -0
- package/message-box/examples/zh_CN/default/prompt/prompt.component.html +4 -0
- package/message-box/examples/zh_CN/default/prompt/prompt.component.ts +61 -0
- package/message-box/examples/zh_CN/default/prompt/readme.md +6 -0
- package/message-box/examples/zh_CN/default/readme.md +4 -0
- package/message-box/examples/zh_CN/default/textarea/readme.md +6 -0
- package/message-box/examples/zh_CN/default/textarea/textarea.component.html +4 -0
- package/message-box/examples/zh_CN/default/textarea/textarea.component.ts +64 -0
- package/message-box/index.ts +1 -0
- package/message-box/message-box.component.html +62 -0
- package/message-box/message-box.component.scss +16 -0
- package/message-box/message-box.component.spec.ts +216 -0
- package/message-box/message-box.component.ts +150 -0
- package/message-box/message-box.module.ts +7 -0
- package/message-box/message-box.property.ts +201 -0
- package/message-box/message-box.service.ts +95 -0
- package/message-box/ng-package.json +5 -0
- package/message-box/public-api.ts +4 -0
- package/message-box/style/mixin.scss +29 -0
- package/message-box/style/param.scss +4 -0
- package/ng-package.json +10 -0
- package/notification/docs/readme.en_US.md +20 -0
- package/notification/docs/readme.zh_CN.md +20 -0
- package/notification/examples/en_US/default/default/default.component.html +6 -0
- package/notification/examples/en_US/default/default/default.component.scss +24 -0
- package/notification/examples/en_US/default/default/default.component.ts +21 -0
- package/notification/examples/en_US/default/default/readme.md +6 -0
- package/notification/examples/en_US/default/readme.md +4 -0
- package/notification/examples/en_US/default/type/readme.md +7 -0
- package/notification/examples/en_US/default/type/type.component.html +46 -0
- package/notification/examples/en_US/default/type/type.component.scss +8 -0
- package/notification/examples/en_US/default/type/type.component.ts +14 -0
- package/notification/examples/index.ts +2 -0
- package/notification/examples/zh_CN/default/default/default.component.html +6 -0
- package/notification/examples/zh_CN/default/default/default.component.scss +24 -0
- package/notification/examples/zh_CN/default/default/default.component.ts +22 -0
- package/notification/examples/zh_CN/default/default/readme.md +6 -0
- package/notification/examples/zh_CN/default/readme.md +4 -0
- package/notification/examples/zh_CN/default/type/readme.md +7 -0
- package/notification/examples/zh_CN/default/type/type.component.html +40 -0
- package/notification/examples/zh_CN/default/type/type.component.scss +8 -0
- package/notification/examples/zh_CN/default/type/type.component.ts +16 -0
- package/notification/index.ts +1 -0
- package/notification/ng-package.json +5 -0
- package/notification/notification.component.html +25 -0
- package/notification/notification.component.scss +16 -0
- package/notification/notification.component.spec.ts +168 -0
- package/notification/notification.component.ts +50 -0
- package/notification/notification.module.ts +7 -0
- package/notification/notification.property.ts +115 -0
- package/notification/notification.service.ts +114 -0
- package/notification/public-api.ts +4 -0
- package/notification/style/mixin.scss +18 -0
- package/notification/style/param.scss +4 -0
- package/outlet/docs/readme.en_US.md +20 -0
- package/outlet/docs/readme.zh_CN.md +20 -0
- package/outlet/examples/en_US/default/default/default.component.html +14 -0
- package/outlet/examples/en_US/default/default/default.component.scss +5 -0
- package/outlet/examples/en_US/default/default/default.component.ts +12 -0
- package/outlet/examples/en_US/default/default/readme.md +6 -0
- package/outlet/examples/en_US/default/readme.md +4 -0
- package/outlet/examples/index.ts +1 -0
- package/outlet/examples/zh_CN/default/default/default.component.html +14 -0
- package/outlet/examples/zh_CN/default/default/default.component.scss +5 -0
- package/outlet/examples/zh_CN/default/default/default.component.ts +12 -0
- package/outlet/examples/zh_CN/default/default/readme.md +6 -0
- package/outlet/examples/zh_CN/default/readme.md +4 -0
- package/outlet/index.ts +1 -0
- package/outlet/ng-package.json +5 -0
- package/outlet/outlet.directive.spec.ts +61 -0
- package/outlet/outlet.directive.ts +75 -0
- package/outlet/outlet.module.ts +8 -0
- package/outlet/outlet.property.ts +6 -0
- package/outlet/public-api.ts +3 -0
- package/outlet/style/mixin.scss +9 -0
- package/outlet/style/param.scss +4 -0
- package/package.json +26 -438
- package/page-header/docs/readme.en_US.md +20 -0
- package/page-header/docs/readme.zh_CN.md +20 -0
- package/page-header/examples/en_US/default/default/default.component.html +1 -0
- package/page-header/examples/en_US/default/default/default.component.ts +9 -0
- package/page-header/examples/en_US/default/default/readme.md +6 -0
- package/page-header/examples/en_US/default/readme.md +4 -0
- package/page-header/examples/index.ts +1 -0
- package/page-header/examples/zh_CN/default/default/default.component.html +1 -0
- package/page-header/examples/zh_CN/default/default/default.component.ts +9 -0
- package/page-header/examples/zh_CN/default/default/readme.md +6 -0
- package/page-header/examples/zh_CN/default/readme.md +4 -0
- package/page-header/index.ts +1 -0
- package/page-header/ng-package.json +5 -0
- package/page-header/page-header.component.html +12 -0
- package/page-header/page-header.component.scss +10 -0
- package/page-header/page-header.component.spec.ts +97 -0
- package/page-header/page-header.component.ts +23 -0
- package/page-header/page-header.module.ts +8 -0
- package/page-header/page-header.property.ts +42 -0
- package/page-header/public-api.ts +3 -0
- package/page-header/style/mixin.scss +30 -0
- package/page-header/style/param.scss +4 -0
- package/pagination/docs/readme.en_US.md +20 -0
- package/pagination/docs/readme.zh_CN.md +20 -0
- package/pagination/examples/en_US/default/default/default.component.html +45 -0
- package/pagination/examples/en_US/default/default/default.component.ts +23 -0
- package/pagination/examples/en_US/default/default/readme.md +6 -0
- package/pagination/examples/en_US/default/readme.md +4 -0
- package/pagination/examples/en_US/default/style/readme.md +10 -0
- package/pagination/examples/en_US/default/style/style.component.html +112 -0
- package/pagination/examples/en_US/default/style/style.component.ts +23 -0
- package/pagination/examples/index.ts +2 -0
- package/pagination/examples/zh_CN/default/default/default.component.html +46 -0
- package/pagination/examples/zh_CN/default/default/default.component.ts +23 -0
- package/pagination/examples/zh_CN/default/default/readme.md +6 -0
- package/pagination/examples/zh_CN/default/readme.md +4 -0
- package/pagination/examples/zh_CN/default/style/readme.md +10 -0
- package/pagination/examples/zh_CN/default/style/style.component.html +112 -0
- package/pagination/examples/zh_CN/default/style/style.component.ts +23 -0
- package/pagination/index.ts +1 -0
- package/pagination/ng-package.json +5 -0
- package/pagination/pagination.component.html +183 -0
- package/pagination/pagination.component.spec.ts +319 -0
- package/pagination/pagination.component.ts +225 -0
- package/pagination/pagination.module.ts +8 -0
- package/pagination/pagination.property.ts +169 -0
- package/pagination/public-api.ts +3 -0
- package/pagination/style/index.scss +10 -0
- package/pagination/style/mixin.scss +55 -0
- package/pagination/style/param.scss +12 -0
- package/pattern/docs/readme.en_US.md +12 -0
- package/pattern/docs/readme.zh_CN.md +12 -0
- package/pattern/index.ts +1 -0
- package/pattern/ng-package.json +5 -0
- package/pattern/pattern.component.html +1 -0
- package/pattern/pattern.component.spec.ts +35 -0
- package/pattern/pattern.component.ts +13 -0
- package/pattern/pattern.module.ts +8 -0
- package/pattern/pattern.property.ts +6 -0
- package/pattern/public-api.ts +3 -0
- package/pattern/style/index.scss +10 -0
- package/pattern/style/mixin.scss +23 -0
- package/pattern/style/param.scss +11 -0
- package/popconfirm/docs/readme.en_US.md +20 -0
- package/popconfirm/docs/readme.zh_CN.md +20 -0
- package/popconfirm/examples/en_US/default/async-close/async-close.component.html +5 -0
- package/popconfirm/examples/en_US/default/async-close/async-close.component.ts +22 -0
- package/popconfirm/examples/en_US/default/async-close/readme.md +6 -0
- package/popconfirm/examples/en_US/default/condition/condition.component.html +7 -0
- package/popconfirm/examples/en_US/default/condition/condition.component.ts +22 -0
- package/popconfirm/examples/en_US/default/condition/readme.md +6 -0
- package/popconfirm/examples/en_US/default/default/default.component.html +5 -0
- package/popconfirm/examples/en_US/default/default/default.component.ts +17 -0
- package/popconfirm/examples/en_US/default/default/readme.md +6 -0
- package/popconfirm/examples/en_US/default/readme.md +4 -0
- package/popconfirm/examples/index.ts +3 -0
- package/popconfirm/examples/zh_CN/default/async-close/async-close.component.html +5 -0
- package/popconfirm/examples/zh_CN/default/async-close/async-close.component.ts +22 -0
- package/popconfirm/examples/zh_CN/default/async-close/readme.md +6 -0
- package/popconfirm/examples/zh_CN/default/condition/condition.component.html +7 -0
- package/popconfirm/examples/zh_CN/default/condition/condition.component.ts +22 -0
- package/popconfirm/examples/zh_CN/default/condition/readme.md +6 -0
- package/popconfirm/examples/zh_CN/default/default/default.component.html +5 -0
- package/popconfirm/examples/zh_CN/default/default/default.component.ts +17 -0
- package/popconfirm/examples/zh_CN/default/default/readme.md +6 -0
- package/popconfirm/examples/zh_CN/default/readme.md +4 -0
- package/popconfirm/index.ts +1 -0
- package/popconfirm/ng-package.json +5 -0
- package/popconfirm/popconfirm.component.html +38 -0
- package/popconfirm/popconfirm.component.scss +27 -0
- package/popconfirm/popconfirm.component.spec.ts +241 -0
- package/popconfirm/popconfirm.component.ts +71 -0
- package/popconfirm/popconfirm.module.ts +8 -0
- package/popconfirm/popconfirm.property.ts +95 -0
- package/popconfirm/public-api.ts +3 -0
- package/popconfirm/style/mixin.scss +10 -0
- package/popconfirm/style/param.scss +4 -0
- package/popover/docs/readme.en_US.md +20 -0
- package/popover/docs/readme.zh_CN.md +20 -0
- package/popover/examples/en_US/default/default/default.component.html +23 -0
- package/popover/examples/en_US/default/default/default.component.scss +32 -0
- package/popover/examples/en_US/default/default/default.component.ts +11 -0
- package/popover/examples/en_US/default/default/readme.md +6 -0
- package/popover/examples/en_US/default/readme.md +4 -0
- package/popover/examples/index.ts +1 -0
- package/popover/examples/zh_CN/default/default/default.component.html +22 -0
- package/popover/examples/zh_CN/default/default/default.component.scss +32 -0
- package/popover/examples/zh_CN/default/default/default.component.ts +20 -0
- package/popover/examples/zh_CN/default/default/readme.md +6 -0
- package/popover/examples/zh_CN/default/readme.md +4 -0
- package/popover/index.ts +1 -0
- package/popover/ng-package.json +5 -0
- package/popover/popover-portal.component.html +31 -0
- package/popover/popover-portal.component.scss +14 -0
- package/popover/popover-portal.component.ts +57 -0
- package/popover/popover.directive.spec.ts +252 -0
- package/popover/popover.directive.ts +180 -0
- package/popover/popover.module.ts +8 -0
- package/popover/popover.property.ts +103 -0
- package/popover/public-api.ts +4 -0
- package/popover/style/mixin.scss +95 -0
- package/popover/style/param.scss +10 -0
- package/portal/docs/readme.en_US.md +8 -0
- package/portal/docs/readme.zh_CN.md +8 -0
- package/portal/index.ts +1 -0
- package/portal/ng-package.json +5 -0
- package/portal/portal.component.spec.ts +63 -0
- package/portal/portal.module.ts +8 -0
- package/portal/portal.property.ts +88 -0
- package/portal/portal.service.ts +209 -0
- package/portal/public-api.ts +3 -0
- package/portal/style/index.scss +11 -0
- package/portal/style/mixin.scss +8 -0
- package/portal/style/param.scss +3 -0
- package/progress/docs/readme.en_US.md +20 -0
- package/progress/docs/readme.zh_CN.md +20 -0
- package/progress/examples/en_US/default/circle/circle.component.html +9 -0
- package/progress/examples/en_US/default/circle/circle.component.scss +2 -0
- package/progress/examples/en_US/default/circle/circle.component.ts +10 -0
- package/progress/examples/en_US/default/circle/readme.md +6 -0
- package/progress/examples/en_US/default/color/color.component.html +29 -0
- package/progress/examples/en_US/default/color/color.component.scss +5 -0
- package/progress/examples/en_US/default/color/color.component.ts +40 -0
- package/progress/examples/en_US/default/color/readme.md +6 -0
- package/progress/examples/en_US/default/dashboard/dashboard.component.html +9 -0
- package/progress/examples/en_US/default/dashboard/dashboard.component.scss +2 -0
- package/progress/examples/en_US/default/dashboard/dashboard.component.ts +10 -0
- package/progress/examples/en_US/default/dashboard/readme.md +6 -0
- package/progress/examples/en_US/default/default/default.component.html +8 -0
- package/progress/examples/en_US/default/default/default.component.scss +5 -0
- package/progress/examples/en_US/default/default/default.component.ts +10 -0
- package/progress/examples/en_US/default/default/readme.md +6 -0
- package/progress/examples/en_US/default/format/format.component.html +4 -0
- package/progress/examples/en_US/default/format/format.component.scss +5 -0
- package/progress/examples/en_US/default/format/format.component.ts +14 -0
- package/progress/examples/en_US/default/format/readme.md +6 -0
- package/progress/examples/en_US/default/gradient/gradient.component.html +5 -0
- package/progress/examples/en_US/default/gradient/gradient.component.scss +5 -0
- package/progress/examples/en_US/default/gradient/gradient.component.ts +10 -0
- package/progress/examples/en_US/default/gradient/readme.md +6 -0
- package/progress/examples/en_US/default/inside/inside.component.html +7 -0
- package/progress/examples/en_US/default/inside/inside.component.scss +5 -0
- package/progress/examples/en_US/default/inside/inside.component.ts +10 -0
- package/progress/examples/en_US/default/inside/readme.md +6 -0
- package/progress/examples/en_US/default/readme.md +4 -0
- package/progress/examples/en_US/default/steps/readme.md +6 -0
- package/progress/examples/en_US/default/steps/steps.component.html +8 -0
- package/progress/examples/en_US/default/steps/steps.component.scss +5 -0
- package/progress/examples/en_US/default/steps/steps.component.ts +10 -0
- package/progress/examples/en_US/default/subsection/readme.md +6 -0
- package/progress/examples/en_US/default/subsection/subsection.component.html +7 -0
- package/progress/examples/en_US/default/subsection/subsection.component.scss +5 -0
- package/progress/examples/en_US/default/subsection/subsection.component.ts +24 -0
- package/progress/examples/index.ts +9 -0
- package/progress/examples/zh_CN/default/circle/circle.component.html +21 -0
- package/progress/examples/zh_CN/default/circle/circle.component.scss +2 -0
- package/progress/examples/zh_CN/default/circle/circle.component.ts +11 -0
- package/progress/examples/zh_CN/default/circle/readme.md +6 -0
- package/progress/examples/zh_CN/default/color/color.component.html +29 -0
- package/progress/examples/zh_CN/default/color/color.component.scss +5 -0
- package/progress/examples/zh_CN/default/color/color.component.ts +40 -0
- package/progress/examples/zh_CN/default/color/readme.md +7 -0
- package/progress/examples/zh_CN/default/dashboard/dashboard.component.html +9 -0
- package/progress/examples/zh_CN/default/dashboard/dashboard.component.scss +2 -0
- package/progress/examples/zh_CN/default/dashboard/dashboard.component.ts +10 -0
- package/progress/examples/zh_CN/default/dashboard/readme.md +6 -0
- package/progress/examples/zh_CN/default/default/default.component.html +8 -0
- package/progress/examples/zh_CN/default/default/default.component.scss +5 -0
- package/progress/examples/zh_CN/default/default/default.component.ts +10 -0
- package/progress/examples/zh_CN/default/default/readme.md +6 -0
- package/progress/examples/zh_CN/default/format/format.component.html +4 -0
- package/progress/examples/zh_CN/default/format/format.component.scss +5 -0
- package/progress/examples/zh_CN/default/format/format.component.ts +14 -0
- package/progress/examples/zh_CN/default/format/readme.md +6 -0
- package/progress/examples/zh_CN/default/gradient/gradient.component.html +5 -0
- package/progress/examples/zh_CN/default/gradient/gradient.component.scss +5 -0
- package/progress/examples/zh_CN/default/gradient/gradient.component.ts +10 -0
- package/progress/examples/zh_CN/default/gradient/readme.md +6 -0
- package/progress/examples/zh_CN/default/inside/inside.component.html +7 -0
- package/progress/examples/zh_CN/default/inside/inside.component.scss +5 -0
- package/progress/examples/zh_CN/default/inside/inside.component.ts +10 -0
- package/progress/examples/zh_CN/default/inside/readme.md +6 -0
- package/progress/examples/zh_CN/default/readme.md +4 -0
- package/progress/examples/zh_CN/default/steps/readme.md +6 -0
- package/progress/examples/zh_CN/default/steps/steps.component.html +8 -0
- package/progress/examples/zh_CN/default/steps/steps.component.scss +5 -0
- package/progress/examples/zh_CN/default/steps/steps.component.ts +10 -0
- package/progress/examples/zh_CN/default/subsection/readme.md +6 -0
- package/progress/examples/zh_CN/default/subsection/subsection.component.html +7 -0
- package/progress/examples/zh_CN/default/subsection/subsection.component.scss +5 -0
- package/progress/examples/zh_CN/default/subsection/subsection.component.ts +24 -0
- package/progress/index.ts +1 -0
- package/progress/ng-package.json +5 -0
- package/progress/progress.component.html +138 -0
- package/progress/progress.component.scss +14 -0
- package/progress/progress.component.spec.ts +238 -0
- package/progress/progress.component.ts +226 -0
- package/progress/progress.module.ts +8 -0
- package/progress/progress.property.ts +153 -0
- package/progress/public-api.ts +3 -0
- package/progress/style/mixin.scss +165 -0
- package/progress/style/param.scss +4 -0
- package/prompts/docs/readme.en_US.md +20 -0
- package/prompts/docs/readme.zh_CN.md +20 -0
- package/prompts/examples/en_US/default/default/default.component.html +3 -0
- package/prompts/examples/en_US/default/default/default.component.scss +7 -0
- package/prompts/examples/en_US/default/default/default.component.ts +37 -0
- package/prompts/examples/en_US/default/default/readme.md +6 -0
- package/prompts/examples/en_US/default/disabled/disabled.component.html +3 -0
- package/prompts/examples/en_US/default/disabled/disabled.component.scss +7 -0
- package/prompts/examples/en_US/default/disabled/disabled.component.ts +38 -0
- package/prompts/examples/en_US/default/disabled/readme.md +6 -0
- package/prompts/examples/en_US/default/style/readme.md +6 -0
- package/prompts/examples/en_US/default/style/style.component.html +3 -0
- package/prompts/examples/en_US/default/style/style.component.scss +7 -0
- package/prompts/examples/en_US/default/style/style.component.ts +41 -0
- package/prompts/examples/en_US/default/vertical/readme.md +6 -0
- package/prompts/examples/en_US/default/vertical/vertical.component.html +3 -0
- package/prompts/examples/en_US/default/vertical/vertical.component.scss +7 -0
- package/prompts/examples/en_US/default/vertical/vertical.component.ts +37 -0
- package/prompts/examples/en_US/default/wrap/readme.md +6 -0
- package/prompts/examples/en_US/default/wrap/wrap.component.html +3 -0
- package/prompts/examples/en_US/default/wrap/wrap.component.scss +7 -0
- package/prompts/examples/en_US/default/wrap/wrap.component.ts +33 -0
- package/prompts/examples/en_US/readme.md +4 -0
- package/prompts/examples/index.ts +5 -0
- package/prompts/examples/zh_CN/default/default/default.component.html +3 -0
- package/prompts/examples/zh_CN/default/default/default.component.scss +7 -0
- package/prompts/examples/zh_CN/default/default/default.component.ts +37 -0
- package/prompts/examples/zh_CN/default/default/readme.md +6 -0
- package/prompts/examples/zh_CN/default/disabled/disabled.component.html +3 -0
- package/prompts/examples/zh_CN/default/disabled/disabled.component.scss +7 -0
- package/prompts/examples/zh_CN/default/disabled/disabled.component.ts +38 -0
- package/prompts/examples/zh_CN/default/disabled/readme.md +6 -0
- package/prompts/examples/zh_CN/default/style/readme.md +6 -0
- package/prompts/examples/zh_CN/default/style/style.component.html +3 -0
- package/prompts/examples/zh_CN/default/style/style.component.scss +7 -0
- package/prompts/examples/zh_CN/default/style/style.component.ts +41 -0
- package/prompts/examples/zh_CN/default/vertical/readme.md +6 -0
- package/prompts/examples/zh_CN/default/vertical/vertical.component.html +3 -0
- package/prompts/examples/zh_CN/default/vertical/vertical.component.scss +7 -0
- package/prompts/examples/zh_CN/default/vertical/vertical.component.ts +37 -0
- package/prompts/examples/zh_CN/default/wrap/readme.md +6 -0
- package/prompts/examples/zh_CN/default/wrap/wrap.component.html +3 -0
- package/prompts/examples/zh_CN/default/wrap/wrap.component.scss +7 -0
- package/prompts/examples/zh_CN/default/wrap/wrap.component.ts +33 -0
- package/prompts/examples/zh_CN/readme.md +4 -0
- package/prompts/index.ts +1 -0
- package/prompts/ng-package.json +5 -0
- package/prompts/prompts.component.html +31 -0
- package/prompts/prompts.component.scss +9 -0
- package/prompts/prompts.component.ts +40 -0
- package/prompts/prompts.module.ts +8 -0
- package/prompts/prompts.property.ts +79 -0
- package/prompts/public-api.ts +3 -0
- package/prompts/style/mixin.scss +75 -0
- package/prompts/style/param.scss +4 -0
- package/radio/docs/readme.en_US.md +20 -0
- package/radio/docs/readme.zh_CN.md +20 -0
- package/radio/examples/en_US/default/async/async.component.html +9 -0
- package/radio/examples/en_US/default/async/async.component.scss +5 -0
- package/radio/examples/en_US/default/async/async.component.ts +31 -0
- package/radio/examples/en_US/default/async/readme.md +6 -0
- package/radio/examples/en_US/default/button/button.component.html +15 -0
- package/radio/examples/en_US/default/button/button.component.scss +5 -0
- package/radio/examples/en_US/default/button/button.component.ts +15 -0
- package/radio/examples/en_US/default/button/readme.md +6 -0
- package/radio/examples/en_US/default/default/default.component.html +6 -0
- package/radio/examples/en_US/default/default/default.component.scss +5 -0
- package/radio/examples/en_US/default/default/default.component.ts +14 -0
- package/radio/examples/en_US/default/default/readme.md +9 -0
- package/radio/examples/en_US/default/disabled/disabled.component.html +9 -0
- package/radio/examples/en_US/default/disabled/disabled.component.scss +5 -0
- package/radio/examples/en_US/default/disabled/disabled.component.ts +15 -0
- package/radio/examples/en_US/default/disabled/readme.md +9 -0
- package/radio/examples/en_US/default/icon/icon.component.html +15 -0
- package/radio/examples/en_US/default/icon/icon.component.scss +5 -0
- package/radio/examples/en_US/default/icon/icon.component.ts +25 -0
- package/radio/examples/en_US/default/icon/readme.md +6 -0
- package/radio/examples/en_US/default/perpost/perpost.component.html +111 -0
- package/radio/examples/en_US/default/perpost/perpost.component.scss +5 -0
- package/radio/examples/en_US/default/perpost/perpost.component.ts +70 -0
- package/radio/examples/en_US/default/perpost/readme.md +6 -0
- package/radio/examples/en_US/default/readme.md +4 -0
- package/radio/examples/en_US/default/tag/readme.md +8 -0
- package/radio/examples/en_US/default/tag/tag.component.html +124 -0
- package/radio/examples/en_US/default/tag/tag.component.scss +10 -0
- package/radio/examples/en_US/default/tag/tag.component.ts +45 -0
- package/radio/examples/en_US/default/vertical/readme.md +6 -0
- package/radio/examples/en_US/default/vertical/vertical.component.html +6 -0
- package/radio/examples/en_US/default/vertical/vertical.component.scss +5 -0
- package/radio/examples/en_US/default/vertical/vertical.component.ts +12 -0
- package/radio/examples/index.ts +8 -0
- package/radio/examples/zh_CN/default/async/async.component.html +9 -0
- package/radio/examples/zh_CN/default/async/async.component.scss +5 -0
- package/radio/examples/zh_CN/default/async/async.component.ts +31 -0
- package/radio/examples/zh_CN/default/async/readme.md +6 -0
- package/radio/examples/zh_CN/default/button/button.component.html +15 -0
- package/radio/examples/zh_CN/default/button/button.component.scss +5 -0
- package/radio/examples/zh_CN/default/button/button.component.ts +15 -0
- package/radio/examples/zh_CN/default/button/readme.md +6 -0
- package/radio/examples/zh_CN/default/default/default.component.html +6 -0
- package/radio/examples/zh_CN/default/default/default.component.scss +5 -0
- package/radio/examples/zh_CN/default/default/default.component.ts +14 -0
- package/radio/examples/zh_CN/default/default/readme.md +9 -0
- package/radio/examples/zh_CN/default/disabled/disabled.component.html +9 -0
- package/radio/examples/zh_CN/default/disabled/disabled.component.scss +5 -0
- package/radio/examples/zh_CN/default/disabled/disabled.component.ts +15 -0
- package/radio/examples/zh_CN/default/disabled/readme.md +9 -0
- package/radio/examples/zh_CN/default/icon/icon.component.html +15 -0
- package/radio/examples/zh_CN/default/icon/icon.component.scss +5 -0
- package/radio/examples/zh_CN/default/icon/icon.component.ts +25 -0
- package/radio/examples/zh_CN/default/icon/readme.md +6 -0
- package/radio/examples/zh_CN/default/perpost/perpost.component.html +110 -0
- package/radio/examples/zh_CN/default/perpost/perpost.component.scss +5 -0
- package/radio/examples/zh_CN/default/perpost/perpost.component.ts +70 -0
- package/radio/examples/zh_CN/default/perpost/readme.md +6 -0
- package/radio/examples/zh_CN/default/readme.md +4 -0
- package/radio/examples/zh_CN/default/tag/readme.md +8 -0
- package/radio/examples/zh_CN/default/tag/tag.component.html +124 -0
- package/radio/examples/zh_CN/default/tag/tag.component.scss +10 -0
- package/radio/examples/zh_CN/default/tag/tag.component.ts +45 -0
- package/radio/examples/zh_CN/default/vertical/readme.md +6 -0
- package/radio/examples/zh_CN/default/vertical/vertical.component.html +6 -0
- package/radio/examples/zh_CN/default/vertical/vertical.component.scss +5 -0
- package/radio/examples/zh_CN/default/vertical/vertical.component.ts +12 -0
- package/radio/index.ts +1 -0
- package/radio/ng-package.json +5 -0
- package/radio/public-api.ts +3 -0
- package/radio/radio.component.html +106 -0
- package/radio/radio.component.scss +10 -0
- package/radio/radio.component.spec.ts +246 -0
- package/radio/radio.component.ts +88 -0
- package/radio/radio.module.ts +8 -0
- package/radio/radio.property.ts +247 -0
- package/radio/style/mixin.scss +301 -0
- package/radio/style/param.scss +11 -0
- package/rate/docs/readme.en_US.md +20 -0
- package/rate/docs/readme.zh_CN.md +20 -0
- package/rate/examples/en_US/default/color/color.component.html +26 -0
- package/rate/examples/en_US/default/color/color.component.scss +5 -0
- package/rate/examples/en_US/default/color/color.component.ts +34 -0
- package/rate/examples/en_US/default/color/readme.md +6 -0
- package/rate/examples/en_US/default/custom/custom.component.html +12 -0
- package/rate/examples/en_US/default/custom/custom.component.scss +5 -0
- package/rate/examples/en_US/default/custom/custom.component.ts +14 -0
- package/rate/examples/en_US/default/custom/readme.md +6 -0
- package/rate/examples/en_US/default/default/default.component.html +6 -0
- package/rate/examples/en_US/default/default/default.component.scss +5 -0
- package/rate/examples/en_US/default/default/default.component.ts +13 -0
- package/rate/examples/en_US/default/default/readme.md +6 -0
- package/rate/examples/en_US/default/disabled/disabled.component.html +6 -0
- package/rate/examples/en_US/default/disabled/disabled.component.scss +5 -0
- package/rate/examples/en_US/default/disabled/disabled.component.ts +13 -0
- package/rate/examples/en_US/default/disabled/readme.md +8 -0
- package/rate/examples/en_US/default/half/half.component.html +6 -0
- package/rate/examples/en_US/default/half/half.component.scss +5 -0
- package/rate/examples/en_US/default/half/half.component.ts +13 -0
- package/rate/examples/en_US/default/half/readme.md +6 -0
- package/rate/examples/en_US/default/readme.md +4 -0
- package/rate/examples/index.ts +5 -0
- package/rate/examples/zh_CN/default/color/color.component.html +26 -0
- package/rate/examples/zh_CN/default/color/color.component.scss +5 -0
- package/rate/examples/zh_CN/default/color/color.component.ts +34 -0
- package/rate/examples/zh_CN/default/color/readme.md +6 -0
- package/rate/examples/zh_CN/default/custom/custom.component.html +12 -0
- package/rate/examples/zh_CN/default/custom/custom.component.scss +5 -0
- package/rate/examples/zh_CN/default/custom/custom.component.ts +14 -0
- package/rate/examples/zh_CN/default/custom/readme.md +6 -0
- package/rate/examples/zh_CN/default/default/default.component.html +6 -0
- package/rate/examples/zh_CN/default/default/default.component.scss +5 -0
- package/rate/examples/zh_CN/default/default/default.component.ts +13 -0
- package/rate/examples/zh_CN/default/default/readme.md +6 -0
- package/rate/examples/zh_CN/default/disabled/disabled.component.html +6 -0
- package/rate/examples/zh_CN/default/disabled/disabled.component.scss +5 -0
- package/rate/examples/zh_CN/default/disabled/disabled.component.ts +13 -0
- package/rate/examples/zh_CN/default/disabled/readme.md +8 -0
- package/rate/examples/zh_CN/default/half/half.component.html +6 -0
- package/rate/examples/zh_CN/default/half/half.component.scss +5 -0
- package/rate/examples/zh_CN/default/half/half.component.ts +13 -0
- package/rate/examples/zh_CN/default/half/readme.md +6 -0
- package/rate/examples/zh_CN/default/readme.md +4 -0
- package/rate/index.ts +1 -0
- package/rate/ng-package.json +5 -0
- package/rate/public-api.ts +3 -0
- package/rate/rate.component.html +51 -0
- package/rate/rate.component.scss +10 -0
- package/rate/rate.component.spec.ts +160 -0
- package/rate/rate.component.ts +108 -0
- package/rate/rate.module.ts +8 -0
- package/rate/rate.property.ts +151 -0
- package/rate/style/mixin.scss +112 -0
- package/rate/style/param.scss +6 -0
- package/resizable/docs/readme.en_US.md +21 -0
- package/resizable/docs/readme.zh_CN.md +21 -0
- package/resizable/index.ts +1 -0
- package/resizable/ng-package.json +5 -0
- package/resizable/public-api.ts +3 -0
- package/resizable/resizable.directive.spec.ts +156 -0
- package/resizable/resizable.directive.ts +293 -0
- package/resizable/resizable.module.ts +8 -0
- package/resizable/resizable.property.ts +100 -0
- package/result/docs/readme.en_US.md +20 -0
- package/result/docs/readme.zh_CN.md +20 -0
- package/result/examples/en_US/default/error/error.component.html +9 -0
- package/result/examples/en_US/default/error/error.component.ts +10 -0
- package/result/examples/en_US/default/error/readme.md +4 -0
- package/result/examples/en_US/default/icon/icon.component.html +5 -0
- package/result/examples/en_US/default/icon/icon.component.ts +10 -0
- package/result/examples/en_US/default/icon/readme.md +4 -0
- package/result/examples/en_US/default/img/img.component.html +11 -0
- package/result/examples/en_US/default/img/img.component.ts +10 -0
- package/result/examples/en_US/default/img/readme.md +4 -0
- package/result/examples/en_US/default/info/info.component.html +5 -0
- package/result/examples/en_US/default/info/info.component.ts +10 -0
- package/result/examples/en_US/default/info/readme.md +4 -0
- package/result/examples/en_US/default/readme.md +4 -0
- package/result/examples/en_US/default/result403/readme.md +4 -0
- package/result/examples/en_US/default/result403/result403.component.html +5 -0
- package/result/examples/en_US/default/result403/result403.component.ts +10 -0
- package/result/examples/en_US/default/result404/readme.md +4 -0
- package/result/examples/en_US/default/result404/result404.component.html +5 -0
- package/result/examples/en_US/default/result404/result404.component.ts +10 -0
- package/result/examples/en_US/default/result500/readme.md +4 -0
- package/result/examples/en_US/default/result500/result500.component.html +5 -0
- package/result/examples/en_US/default/result500/result500.component.ts +10 -0
- package/result/examples/en_US/default/success/readme.md +4 -0
- package/result/examples/en_US/default/success/success.component.html +12 -0
- package/result/examples/en_US/default/success/success.component.ts +10 -0
- package/result/examples/en_US/default/warning/readme.md +4 -0
- package/result/examples/en_US/default/warning/warning.component.html +5 -0
- package/result/examples/en_US/default/warning/warning.component.ts +10 -0
- package/result/examples/index.ts +9 -0
- package/result/examples/zh_CN/default/error/error.component.html +5 -0
- package/result/examples/zh_CN/default/error/error.component.ts +10 -0
- package/result/examples/zh_CN/default/error/readme.md +4 -0
- package/result/examples/zh_CN/default/icon/icon.component.html +5 -0
- package/result/examples/zh_CN/default/icon/icon.component.ts +10 -0
- package/result/examples/zh_CN/default/icon/readme.md +4 -0
- package/result/examples/zh_CN/default/img/img.component.html +11 -0
- package/result/examples/zh_CN/default/img/img.component.ts +10 -0
- package/result/examples/zh_CN/default/img/readme.md +4 -0
- package/result/examples/zh_CN/default/info/info.component.html +5 -0
- package/result/examples/zh_CN/default/info/info.component.ts +10 -0
- package/result/examples/zh_CN/default/info/readme.md +4 -0
- package/result/examples/zh_CN/default/readme.md +4 -0
- package/result/examples/zh_CN/default/result403/readme.md +4 -0
- package/result/examples/zh_CN/default/result403/result403.component.html +5 -0
- package/result/examples/zh_CN/default/result403/result403.component.ts +10 -0
- package/result/examples/zh_CN/default/result404/readme.md +4 -0
- package/result/examples/zh_CN/default/result404/result404.component.html +5 -0
- package/result/examples/zh_CN/default/result404/result404.component.ts +10 -0
- package/result/examples/zh_CN/default/result500/readme.md +4 -0
- package/result/examples/zh_CN/default/result500/result500.component.html +5 -0
- package/result/examples/zh_CN/default/result500/result500.component.ts +10 -0
- package/result/examples/zh_CN/default/success/readme.md +4 -0
- package/result/examples/zh_CN/default/success/success.component.html +12 -0
- package/result/examples/zh_CN/default/success/success.component.ts +10 -0
- package/result/examples/zh_CN/default/warning/readme.md +4 -0
- package/result/examples/zh_CN/default/warning/warning.component.html +5 -0
- package/result/examples/zh_CN/default/warning/warning.component.ts +10 -0
- package/result/index.ts +1 -0
- package/result/ng-package.json +5 -0
- package/result/public-api.ts +3 -0
- package/result/result.component.html +43 -0
- package/result/result.component.scss +10 -0
- package/result/result.component.spec.ts +78 -0
- package/result/result.component.ts +24 -0
- package/result/result.module.ts +8 -0
- package/result/result.property.ts +44 -0
- package/result/style/mixin.scss +42 -0
- package/result/style/param.scss +4 -0
- package/ripple/docs/readme.en_US.md +9 -0
- package/ripple/docs/readme.zh_CN.md +9 -0
- package/ripple/index.ts +1 -0
- package/ripple/ng-package.json +5 -0
- package/ripple/public-api.ts +3 -0
- package/ripple/ripple.directive.spec.ts +95 -0
- package/ripple/ripple.directive.ts +108 -0
- package/ripple/ripple.module.ts +8 -0
- package/ripple/ripple.property.ts +39 -0
- package/scrollable/docs/readme.en_US.md +9 -0
- package/scrollable/docs/readme.zh_CN.md +9 -0
- package/scrollable/examples/en_US/default/default/default.component.html +39 -0
- package/scrollable/examples/en_US/default/default/default.component.scss +10 -0
- package/scrollable/examples/en_US/default/default/default.component.ts +13 -0
- package/scrollable/examples/en_US/default/default/readme.md +6 -0
- package/scrollable/examples/en_US/readme.md +4 -0
- package/scrollable/examples/index.ts +1 -0
- package/scrollable/examples/zh_CN/default/default/default.component.html +39 -0
- package/scrollable/examples/zh_CN/default/default/default.component.scss +10 -0
- package/scrollable/examples/zh_CN/default/default/default.component.ts +10 -0
- package/scrollable/examples/zh_CN/default/default/readme.md +6 -0
- package/scrollable/examples/zh_CN/readme.md +4 -0
- package/scrollable/index.ts +1 -0
- package/scrollable/ng-package.json +5 -0
- package/scrollable/public-api.ts +2 -0
- package/scrollable/scrollable.component.html +13 -0
- package/scrollable/scrollable.component.scss +9 -0
- package/scrollable/scrollable.component.ts +325 -0
- package/scrollable/scrollable.module.ts +8 -0
- package/scrollable/style/mixin.scss +74 -0
- package/scrollable/style/param.scss +4 -0
- package/select/docs/readme.en_US.md +20 -0
- package/select/docs/readme.zh_CN.md +20 -0
- package/select/examples/en_US/default/async/async.component.html +1 -0
- package/select/examples/en_US/default/async/async.component.scss +2 -0
- package/select/examples/en_US/default/async/async.component.ts +24 -0
- package/select/examples/en_US/default/async/readme.md +7 -0
- package/select/examples/en_US/default/auto-width/auto-width.component.html +3 -0
- package/select/examples/en_US/default/auto-width/auto-width.component.scss +5 -0
- package/select/examples/en_US/default/auto-width/auto-width.component.ts +14 -0
- package/select/examples/en_US/default/auto-width/readme.md +10 -0
- package/select/examples/en_US/default/bordered/bordered.component.html +15 -0
- package/select/examples/en_US/default/bordered/bordered.component.scss +5 -0
- package/select/examples/en_US/default/bordered/bordered.component.ts +12 -0
- package/select/examples/en_US/default/bordered/readme.md +6 -0
- package/select/examples/en_US/default/custom/custom.component.html +24 -0
- package/select/examples/en_US/default/custom/custom.component.scss +18 -0
- package/select/examples/en_US/default/custom/custom.component.ts +16 -0
- package/select/examples/en_US/default/custom/readme.md +6 -0
- package/select/examples/en_US/default/default/default.component.html +6 -0
- package/select/examples/en_US/default/default/default.component.scss +5 -0
- package/select/examples/en_US/default/default/default.component.ts +16 -0
- package/select/examples/en_US/default/default/readme.md +6 -0
- package/select/examples/en_US/default/disabled/disabled.component.html +6 -0
- package/select/examples/en_US/default/disabled/disabled.component.scss +5 -0
- package/select/examples/en_US/default/disabled/disabled.component.ts +14 -0
- package/select/examples/en_US/default/disabled/readme.md +6 -0
- package/select/examples/en_US/default/float-label/float-label.component.html +63 -0
- package/select/examples/en_US/default/float-label/float-label.component.scss +16 -0
- package/select/examples/en_US/default/float-label/float-label.component.ts +26 -0
- package/select/examples/en_US/default/float-label/readme.md +6 -0
- package/select/examples/en_US/default/input/input.component.html +23 -0
- package/select/examples/en_US/default/input/input.component.scss +5 -0
- package/select/examples/en_US/default/input/input.component.ts +21 -0
- package/select/examples/en_US/default/input/readme.md +6 -0
- package/select/examples/en_US/default/label/label.component.html +12 -0
- package/select/examples/en_US/default/label/label.component.scss +5 -0
- package/select/examples/en_US/default/label/label.component.ts +14 -0
- package/select/examples/en_US/default/label/readme.md +7 -0
- package/select/examples/en_US/default/multiple/multiple.component.html +20 -0
- package/select/examples/en_US/default/multiple/multiple.component.scss +8 -0
- package/select/examples/en_US/default/multiple/multiple.component.ts +27 -0
- package/select/examples/en_US/default/multiple/readme.md +6 -0
- package/select/examples/en_US/default/portal-temp/portal-temp.component.html +40 -0
- package/select/examples/en_US/default/portal-temp/portal-temp.component.scss +20 -0
- package/select/examples/en_US/default/portal-temp/portal-temp.component.ts +31 -0
- package/select/examples/en_US/default/portal-temp/readme.md +7 -0
- package/select/examples/en_US/default/readme.md +4 -0
- package/select/examples/en_US/default/required/readme.md +6 -0
- package/select/examples/en_US/default/required/required.component.html +6 -0
- package/select/examples/en_US/default/required/required.component.scss +5 -0
- package/select/examples/en_US/default/required/required.component.ts +14 -0
- package/select/examples/en_US/default/search/readme.md +6 -0
- package/select/examples/en_US/default/search/search.component.html +66 -0
- package/select/examples/en_US/default/search/search.component.scss +8 -0
- package/select/examples/en_US/default/search/search.component.ts +64 -0
- package/select/examples/en_US/default/size/readme.md +6 -0
- package/select/examples/en_US/default/size/size.component.html +19 -0
- package/select/examples/en_US/default/size/size.component.scss +5 -0
- package/select/examples/en_US/default/size/size.component.ts +17 -0
- package/select/examples/en_US/default/variant/readme.md +6 -0
- package/select/examples/en_US/default/variant/variant.component.html +12 -0
- package/select/examples/en_US/default/variant/variant.component.scss +5 -0
- package/select/examples/en_US/default/variant/variant.component.ts +12 -0
- package/select/examples/index.ts +15 -0
- package/select/examples/zh_CN/default/async/async.component.html +1 -0
- package/select/examples/zh_CN/default/async/async.component.scss +2 -0
- package/select/examples/zh_CN/default/async/async.component.ts +24 -0
- package/select/examples/zh_CN/default/async/readme.md +7 -0
- package/select/examples/zh_CN/default/auto-width/auto-width.component.html +6 -0
- package/select/examples/zh_CN/default/auto-width/auto-width.component.scss +5 -0
- package/select/examples/zh_CN/default/auto-width/auto-width.component.ts +38 -0
- package/select/examples/zh_CN/default/auto-width/readme.md +10 -0
- package/select/examples/zh_CN/default/bordered/bordered.component.html +15 -0
- package/select/examples/zh_CN/default/bordered/bordered.component.scss +5 -0
- package/select/examples/zh_CN/default/bordered/bordered.component.ts +12 -0
- package/select/examples/zh_CN/default/bordered/readme.md +6 -0
- package/select/examples/zh_CN/default/custom/custom.component.html +24 -0
- package/select/examples/zh_CN/default/custom/custom.component.scss +18 -0
- package/select/examples/zh_CN/default/custom/custom.component.ts +16 -0
- package/select/examples/zh_CN/default/custom/readme.md +6 -0
- package/select/examples/zh_CN/default/default/default.component.html +6 -0
- package/select/examples/zh_CN/default/default/default.component.scss +5 -0
- package/select/examples/zh_CN/default/default/default.component.ts +16 -0
- package/select/examples/zh_CN/default/default/readme.md +6 -0
- package/select/examples/zh_CN/default/disabled/disabled.component.html +6 -0
- package/select/examples/zh_CN/default/disabled/disabled.component.scss +5 -0
- package/select/examples/zh_CN/default/disabled/disabled.component.ts +14 -0
- package/select/examples/zh_CN/default/disabled/readme.md +6 -0
- package/select/examples/zh_CN/default/float-label/float-label.component.html +63 -0
- package/select/examples/zh_CN/default/float-label/float-label.component.scss +16 -0
- package/select/examples/zh_CN/default/float-label/float-label.component.ts +26 -0
- package/select/examples/zh_CN/default/float-label/readme.md +6 -0
- package/select/examples/zh_CN/default/input/input.component.html +23 -0
- package/select/examples/zh_CN/default/input/input.component.scss +5 -0
- package/select/examples/zh_CN/default/input/input.component.ts +21 -0
- package/select/examples/zh_CN/default/input/readme.md +6 -0
- package/select/examples/zh_CN/default/label/label.component.html +12 -0
- package/select/examples/zh_CN/default/label/label.component.scss +5 -0
- package/select/examples/zh_CN/default/label/label.component.ts +14 -0
- package/select/examples/zh_CN/default/label/readme.md +7 -0
- package/select/examples/zh_CN/default/multiple/multiple.component.html +20 -0
- package/select/examples/zh_CN/default/multiple/multiple.component.scss +8 -0
- package/select/examples/zh_CN/default/multiple/multiple.component.ts +27 -0
- package/select/examples/zh_CN/default/multiple/readme.md +6 -0
- package/select/examples/zh_CN/default/portal-temp/portal-temp.component.html +40 -0
- package/select/examples/zh_CN/default/portal-temp/portal-temp.component.scss +20 -0
- package/select/examples/zh_CN/default/portal-temp/portal-temp.component.ts +31 -0
- package/select/examples/zh_CN/default/portal-temp/readme.md +7 -0
- package/select/examples/zh_CN/default/readme.md +4 -0
- package/select/examples/zh_CN/default/required/readme.md +6 -0
- package/select/examples/zh_CN/default/required/required.component.html +6 -0
- package/select/examples/zh_CN/default/required/required.component.scss +5 -0
- package/select/examples/zh_CN/default/required/required.component.ts +14 -0
- package/select/examples/zh_CN/default/search/readme.md +6 -0
- package/select/examples/zh_CN/default/search/search.component.html +64 -0
- package/select/examples/zh_CN/default/search/search.component.scss +8 -0
- package/select/examples/zh_CN/default/search/search.component.ts +64 -0
- package/select/examples/zh_CN/default/size/readme.md +6 -0
- package/select/examples/zh_CN/default/size/size.component.html +19 -0
- package/select/examples/zh_CN/default/size/size.component.scss +5 -0
- package/select/examples/zh_CN/default/size/size.component.ts +17 -0
- package/select/examples/zh_CN/default/variant/readme.md +6 -0
- package/select/examples/zh_CN/default/variant/variant.component.html +12 -0
- package/select/examples/zh_CN/default/variant/variant.component.scss +5 -0
- package/select/examples/zh_CN/default/variant/variant.component.ts +12 -0
- package/select/index.ts +1 -0
- package/select/ng-package.json +5 -0
- package/select/public-api.ts +4 -0
- package/select/select-portal.component.html +38 -0
- package/select/select-portal.component.scss +12 -0
- package/select/select-portal.component.ts +140 -0
- package/select/select.component.html +104 -0
- package/select/select.component.scss +19 -0
- package/select/select.component.spec.ts +556 -0
- package/select/select.component.ts +808 -0
- package/select/select.module.ts +8 -0
- package/select/select.property.ts +531 -0
- package/select/style/mixin.scss +139 -0
- package/select/style/param.scss +39 -0
- package/sender/docs/readme.en_US.md +20 -0
- package/sender/docs/readme.zh_CN.md +20 -0
- package/sender/examples/en_US/default/actions/actions.component.html +12 -0
- package/sender/examples/en_US/default/actions/actions.component.scss +10 -0
- package/sender/examples/en_US/default/actions/actions.component.ts +26 -0
- package/sender/examples/en_US/default/actions/readme.md +6 -0
- package/sender/examples/en_US/default/default/default.component.html +9 -0
- package/sender/examples/en_US/default/default/default.component.scss +5 -0
- package/sender/examples/en_US/default/default/default.component.ts +26 -0
- package/sender/examples/en_US/default/default/readme.md +6 -0
- package/sender/examples/en_US/default/header/header.component.html +56 -0
- package/sender/examples/en_US/default/header/header.component.scss +33 -0
- package/sender/examples/en_US/default/header/header.component.ts +34 -0
- package/sender/examples/en_US/default/header/readme.md +6 -0
- package/sender/examples/en_US/default/submit-type/readme.md +9 -0
- package/sender/examples/en_US/default/submit-type/submit-type.component.html +17 -0
- package/sender/examples/en_US/default/submit-type/submit-type.component.scss +5 -0
- package/sender/examples/en_US/default/submit-type/submit-type.component.ts +21 -0
- package/sender/examples/en_US/readme.md +4 -0
- package/sender/examples/index.ts +4 -0
- package/sender/examples/zh_CN/default/actions/actions.component.html +16 -0
- package/sender/examples/zh_CN/default/actions/actions.component.scss +10 -0
- package/sender/examples/zh_CN/default/actions/actions.component.ts +26 -0
- package/sender/examples/zh_CN/default/actions/readme.md +6 -0
- package/sender/examples/zh_CN/default/default/default.component.html +9 -0
- package/sender/examples/zh_CN/default/default/default.component.scss +5 -0
- package/sender/examples/zh_CN/default/default/default.component.ts +26 -0
- package/sender/examples/zh_CN/default/default/readme.md +6 -0
- package/sender/examples/zh_CN/default/header/header.component.html +56 -0
- package/sender/examples/zh_CN/default/header/header.component.scss +33 -0
- package/sender/examples/zh_CN/default/header/header.component.ts +34 -0
- package/sender/examples/zh_CN/default/header/readme.md +6 -0
- package/sender/examples/zh_CN/default/submit-type/readme.md +9 -0
- package/sender/examples/zh_CN/default/submit-type/submit-type.component.html +17 -0
- package/sender/examples/zh_CN/default/submit-type/submit-type.component.scss +5 -0
- package/sender/examples/zh_CN/default/submit-type/submit-type.component.ts +21 -0
- package/sender/examples/zh_CN/readme.md +4 -0
- package/sender/index.ts +1 -0
- package/sender/ng-package.json +5 -0
- package/sender/public-api.ts +3 -0
- package/sender/sender.component.html +75 -0
- package/sender/sender.component.scss +9 -0
- package/sender/sender.component.ts +79 -0
- package/sender/sender.module.ts +9 -0
- package/sender/sender.property.ts +195 -0
- package/sender/stop.component.html +24 -0
- package/sender/stop.component.scss +9 -0
- package/sender/stop.component.ts +11 -0
- package/sender/style/mixin.scss +82 -0
- package/sender/style/param.scss +5 -0
- package/skeleton/docs/readme.en_US.md +20 -0
- package/skeleton/docs/readme.zh_CN.md +20 -0
- package/skeleton/examples/en_US/default/active/active.component.html +1 -0
- package/skeleton/examples/en_US/default/active/active.component.ts +9 -0
- package/skeleton/examples/en_US/default/active/readme.md +6 -0
- package/skeleton/examples/en_US/default/complex/complex.component.html +1 -0
- package/skeleton/examples/en_US/default/complex/complex.component.ts +39 -0
- package/skeleton/examples/en_US/default/complex/readme.md +6 -0
- package/skeleton/examples/en_US/default/default/default.component.html +1 -0
- package/skeleton/examples/en_US/default/default/default.component.ts +9 -0
- package/skeleton/examples/en_US/default/default/readme.md +6 -0
- package/skeleton/examples/en_US/default/list/list.component.html +47 -0
- package/skeleton/examples/en_US/default/list/list.component.scss +20 -0
- package/skeleton/examples/en_US/default/list/list.component.ts +57 -0
- package/skeleton/examples/en_US/default/list/readme.md +6 -0
- package/skeleton/examples/en_US/default/loading/loading.component.html +12 -0
- package/skeleton/examples/en_US/default/loading/loading.component.scss +8 -0
- package/skeleton/examples/en_US/default/loading/loading.component.ts +14 -0
- package/skeleton/examples/en_US/default/loading/readme.md +6 -0
- package/skeleton/examples/en_US/default/readme.md +4 -0
- package/skeleton/examples/en_US/default/table/readme.md +6 -0
- package/skeleton/examples/en_US/default/table/table.component.html +1 -0
- package/skeleton/examples/en_US/default/table/table.component.ts +43 -0
- package/skeleton/examples/index.ts +6 -0
- package/skeleton/examples/zh_CN/default/active/active.component.html +1 -0
- package/skeleton/examples/zh_CN/default/active/active.component.ts +9 -0
- package/skeleton/examples/zh_CN/default/active/readme.md +6 -0
- package/skeleton/examples/zh_CN/default/complex/complex.component.html +1 -0
- package/skeleton/examples/zh_CN/default/complex/complex.component.ts +39 -0
- package/skeleton/examples/zh_CN/default/complex/readme.md +6 -0
- package/skeleton/examples/zh_CN/default/default/default.component.html +1 -0
- package/skeleton/examples/zh_CN/default/default/default.component.ts +9 -0
- package/skeleton/examples/zh_CN/default/default/readme.md +6 -0
- package/skeleton/examples/zh_CN/default/list/list.component.html +46 -0
- package/skeleton/examples/zh_CN/default/list/list.component.scss +20 -0
- package/skeleton/examples/zh_CN/default/list/list.component.ts +57 -0
- package/skeleton/examples/zh_CN/default/list/readme.md +6 -0
- package/skeleton/examples/zh_CN/default/loading/loading.component.html +11 -0
- package/skeleton/examples/zh_CN/default/loading/loading.component.scss +8 -0
- package/skeleton/examples/zh_CN/default/loading/loading.component.ts +14 -0
- package/skeleton/examples/zh_CN/default/loading/readme.md +6 -0
- package/skeleton/examples/zh_CN/default/readme.md +4 -0
- package/skeleton/examples/zh_CN/default/table/readme.md +6 -0
- package/skeleton/examples/zh_CN/default/table/table.component.html +1 -0
- package/skeleton/examples/zh_CN/default/table/table.component.ts +43 -0
- package/skeleton/index.ts +1 -0
- package/skeleton/ng-package.json +5 -0
- package/skeleton/public-api.ts +3 -0
- package/skeleton/skeleton.component.html +36 -0
- package/skeleton/skeleton.component.scss +10 -0
- package/skeleton/skeleton.component.spec.ts +79 -0
- package/skeleton/skeleton.component.ts +23 -0
- package/skeleton/skeleton.module.ts +8 -0
- package/skeleton/skeleton.property.ts +124 -0
- package/skeleton/style/mixin.scss +96 -0
- package/skeleton/style/param.scss +4 -0
- package/slider/docs/readme.en_US.md +20 -0
- package/slider/docs/readme.zh_CN.md +20 -0
- package/slider/examples/en_US/default/activated/activated.component.html +1 -0
- package/slider/examples/en_US/default/activated/activated.component.ts +20 -0
- package/slider/examples/en_US/default/activated/readme.md +6 -0
- package/slider/examples/en_US/default/custom/custom.component.html +10 -0
- package/slider/examples/en_US/default/custom/custom.component.scss +7 -0
- package/slider/examples/en_US/default/custom/custom.component.ts +22 -0
- package/slider/examples/en_US/default/custom/readme.md +6 -0
- package/slider/examples/en_US/default/default/default.component.html +3 -0
- package/slider/examples/en_US/default/default/default.component.ts +20 -0
- package/slider/examples/en_US/default/default/readme.md +6 -0
- package/slider/examples/en_US/default/expand/expand.component.html +3 -0
- package/slider/examples/en_US/default/expand/expand.component.ts +20 -0
- package/slider/examples/en_US/default/expand/readme.md +7 -0
- package/slider/examples/en_US/default/readme.md +4 -0
- package/slider/examples/en_US/default/scroll/readme.md +6 -0
- package/slider/examples/en_US/default/scroll/scroll.component.html +7 -0
- package/slider/examples/en_US/default/scroll/scroll.component.ts +20 -0
- package/slider/examples/en_US/default/size/readme.md +6 -0
- package/slider/examples/en_US/default/size/size.component.html +5 -0
- package/slider/examples/en_US/default/size/size.component.scss +5 -0
- package/slider/examples/en_US/default/size/size.component.ts +21 -0
- package/slider/examples/index.ts +6 -0
- package/slider/examples/zh_CN/default/activated/activated.component.html +1 -0
- package/slider/examples/zh_CN/default/activated/activated.component.ts +11 -0
- package/slider/examples/zh_CN/default/activated/readme.md +6 -0
- package/slider/examples/zh_CN/default/custom/custom.component.html +10 -0
- package/slider/examples/zh_CN/default/custom/custom.component.scss +7 -0
- package/slider/examples/zh_CN/default/custom/custom.component.ts +22 -0
- package/slider/examples/zh_CN/default/custom/readme.md +6 -0
- package/slider/examples/zh_CN/default/default/default.component.html +3 -0
- package/slider/examples/zh_CN/default/default/default.component.ts +11 -0
- package/slider/examples/zh_CN/default/default/readme.md +6 -0
- package/slider/examples/zh_CN/default/expand/expand.component.html +3 -0
- package/slider/examples/zh_CN/default/expand/expand.component.ts +11 -0
- package/slider/examples/zh_CN/default/expand/readme.md +7 -0
- package/slider/examples/zh_CN/default/readme.md +4 -0
- package/slider/examples/zh_CN/default/scroll/readme.md +6 -0
- package/slider/examples/zh_CN/default/scroll/scroll.component.html +7 -0
- package/slider/examples/zh_CN/default/scroll/scroll.component.ts +11 -0
- package/slider/examples/zh_CN/default/size/readme.md +6 -0
- package/slider/examples/zh_CN/default/size/size.component.html +5 -0
- package/slider/examples/zh_CN/default/size/size.component.scss +5 -0
- package/slider/examples/zh_CN/default/size/size.component.ts +12 -0
- package/slider/index.ts +1 -0
- package/slider/ng-package.json +5 -0
- package/slider/public-api.ts +3 -0
- package/slider/slider.component.html +51 -0
- package/slider/slider.component.scss +10 -0
- package/slider/slider.component.spec.ts +229 -0
- package/slider/slider.component.ts +240 -0
- package/slider/slider.module.ts +9 -0
- package/slider/slider.property.ts +133 -0
- package/slider/style/mixin.scss +134 -0
- package/slider/style/param.scss +4 -0
- package/slider-select/docs/readme.en_US.md +20 -0
- package/slider-select/docs/readme.zh_CN.md +20 -0
- package/slider-select/examples/en_US/default/custom-value/custom-value.component.html +8 -0
- package/slider-select/examples/en_US/default/custom-value/custom-value.component.scss +5 -0
- package/slider-select/examples/en_US/default/custom-value/custom-value.component.ts +15 -0
- package/slider-select/examples/en_US/default/custom-value/readme.md +6 -0
- package/slider-select/examples/en_US/default/default/default.component.html +6 -0
- package/slider-select/examples/en_US/default/default/default.component.scss +5 -0
- package/slider-select/examples/en_US/default/default/default.component.ts +14 -0
- package/slider-select/examples/en_US/default/default/readme.md +6 -0
- package/slider-select/examples/en_US/default/disabled/disabled.component.html +6 -0
- package/slider-select/examples/en_US/default/disabled/disabled.component.scss +5 -0
- package/slider-select/examples/en_US/default/disabled/disabled.component.ts +13 -0
- package/slider-select/examples/en_US/default/disabled/readme.md +6 -0
- package/slider-select/examples/en_US/default/icon/icon.component.html +9 -0
- package/slider-select/examples/en_US/default/icon/icon.component.scss +5 -0
- package/slider-select/examples/en_US/default/icon/icon.component.ts +14 -0
- package/slider-select/examples/en_US/default/icon/readme.md +6 -0
- package/slider-select/examples/en_US/default/label/label.component.html +12 -0
- package/slider-select/examples/en_US/default/label/label.component.scss +5 -0
- package/slider-select/examples/en_US/default/label/label.component.ts +13 -0
- package/slider-select/examples/en_US/default/label/readme.md +7 -0
- package/slider-select/examples/en_US/default/limit/limit.component.html +9 -0
- package/slider-select/examples/en_US/default/limit/limit.component.scss +5 -0
- package/slider-select/examples/en_US/default/limit/limit.component.ts +15 -0
- package/slider-select/examples/en_US/default/limit/readme.md +6 -0
- package/slider-select/examples/en_US/default/marks/marks.component.html +12 -0
- package/slider-select/examples/en_US/default/marks/marks.component.scss +5 -0
- package/slider-select/examples/en_US/default/marks/marks.component.ts +38 -0
- package/slider-select/examples/en_US/default/marks/readme.md +6 -0
- package/slider-select/examples/en_US/default/precision/precision.component.html +6 -0
- package/slider-select/examples/en_US/default/precision/precision.component.scss +5 -0
- package/slider-select/examples/en_US/default/precision/precision.component.ts +14 -0
- package/slider-select/examples/en_US/default/precision/readme.md +7 -0
- package/slider-select/examples/en_US/default/range/range.component.html +10 -0
- package/slider-select/examples/en_US/default/range/range.component.scss +5 -0
- package/slider-select/examples/en_US/default/range/range.component.ts +14 -0
- package/slider-select/examples/en_US/default/range/readme.md +6 -0
- package/slider-select/examples/en_US/default/readme.md +4 -0
- package/slider-select/examples/en_US/default/reverse/readme.md +6 -0
- package/slider-select/examples/en_US/default/reverse/reverse.component.html +6 -0
- package/slider-select/examples/en_US/default/reverse/reverse.component.scss +5 -0
- package/slider-select/examples/en_US/default/reverse/reverse.component.ts +13 -0
- package/slider-select/examples/en_US/default/vertical/readme.md +6 -0
- package/slider-select/examples/en_US/default/vertical/vertical.component.html +6 -0
- package/slider-select/examples/en_US/default/vertical/vertical.component.scss +5 -0
- package/slider-select/examples/en_US/default/vertical/vertical.component.ts +13 -0
- package/slider-select/examples/index.ts +11 -0
- package/slider-select/examples/zh_CN/default/custom-value/custom-value.component.html +8 -0
- package/slider-select/examples/zh_CN/default/custom-value/custom-value.component.scss +5 -0
- package/slider-select/examples/zh_CN/default/custom-value/custom-value.component.ts +15 -0
- package/slider-select/examples/zh_CN/default/custom-value/readme.md +6 -0
- package/slider-select/examples/zh_CN/default/default/default.component.html +6 -0
- package/slider-select/examples/zh_CN/default/default/default.component.scss +5 -0
- package/slider-select/examples/zh_CN/default/default/default.component.ts +14 -0
- package/slider-select/examples/zh_CN/default/default/readme.md +6 -0
- package/slider-select/examples/zh_CN/default/disabled/disabled.component.html +6 -0
- package/slider-select/examples/zh_CN/default/disabled/disabled.component.scss +5 -0
- package/slider-select/examples/zh_CN/default/disabled/disabled.component.ts +13 -0
- package/slider-select/examples/zh_CN/default/disabled/readme.md +6 -0
- package/slider-select/examples/zh_CN/default/icon/icon.component.html +9 -0
- package/slider-select/examples/zh_CN/default/icon/icon.component.scss +5 -0
- package/slider-select/examples/zh_CN/default/icon/icon.component.ts +14 -0
- package/slider-select/examples/zh_CN/default/icon/readme.md +6 -0
- package/slider-select/examples/zh_CN/default/label/label.component.html +12 -0
- package/slider-select/examples/zh_CN/default/label/label.component.scss +5 -0
- package/slider-select/examples/zh_CN/default/label/label.component.ts +13 -0
- package/slider-select/examples/zh_CN/default/label/readme.md +7 -0
- package/slider-select/examples/zh_CN/default/limit/limit.component.html +9 -0
- package/slider-select/examples/zh_CN/default/limit/limit.component.scss +5 -0
- package/slider-select/examples/zh_CN/default/limit/limit.component.ts +15 -0
- package/slider-select/examples/zh_CN/default/limit/readme.md +6 -0
- package/slider-select/examples/zh_CN/default/marks/marks.component.html +12 -0
- package/slider-select/examples/zh_CN/default/marks/marks.component.scss +5 -0
- package/slider-select/examples/zh_CN/default/marks/marks.component.ts +38 -0
- package/slider-select/examples/zh_CN/default/marks/readme.md +6 -0
- package/slider-select/examples/zh_CN/default/precision/precision.component.html +6 -0
- package/slider-select/examples/zh_CN/default/precision/precision.component.scss +5 -0
- package/slider-select/examples/zh_CN/default/precision/precision.component.ts +14 -0
- package/slider-select/examples/zh_CN/default/precision/readme.md +7 -0
- package/slider-select/examples/zh_CN/default/range/range.component.html +10 -0
- package/slider-select/examples/zh_CN/default/range/range.component.scss +5 -0
- package/slider-select/examples/zh_CN/default/range/range.component.ts +14 -0
- package/slider-select/examples/zh_CN/default/range/readme.md +6 -0
- package/slider-select/examples/zh_CN/default/readme.md +4 -0
- package/slider-select/examples/zh_CN/default/reverse/readme.md +6 -0
- package/slider-select/examples/zh_CN/default/reverse/reverse.component.html +6 -0
- package/slider-select/examples/zh_CN/default/reverse/reverse.component.scss +5 -0
- package/slider-select/examples/zh_CN/default/reverse/reverse.component.ts +13 -0
- package/slider-select/examples/zh_CN/default/vertical/readme.md +6 -0
- package/slider-select/examples/zh_CN/default/vertical/vertical.component.html +6 -0
- package/slider-select/examples/zh_CN/default/vertical/vertical.component.scss +5 -0
- package/slider-select/examples/zh_CN/default/vertical/vertical.component.ts +13 -0
- package/slider-select/index.ts +1 -0
- package/slider-select/ng-package.json +5 -0
- package/slider-select/public-api.ts +3 -0
- package/slider-select/slider-select.component.html +114 -0
- package/slider-select/slider-select.component.scss +15 -0
- package/slider-select/slider-select.component.spec.ts +294 -0
- package/slider-select/slider-select.component.ts +380 -0
- package/slider-select/slider-select.module.ts +8 -0
- package/slider-select/slider-select.property.ts +273 -0
- package/slider-select/style/mixin.scss +318 -0
- package/slider-select/style/param.scss +43 -0
- package/splitter/docs/readme.en_US.md +22 -0
- package/splitter/docs/readme.zh_CN.md +22 -0
- package/splitter/examples/en_US/default/default/default.component.html +26 -0
- package/splitter/examples/en_US/default/default/default.component.scss +13 -0
- package/splitter/examples/en_US/default/default/default.component.ts +10 -0
- package/splitter/examples/en_US/default/default/readme.md +11 -0
- package/splitter/examples/en_US/default/fixed-size/fixed-size.component.html +27 -0
- package/splitter/examples/en_US/default/fixed-size/fixed-size.component.scss +22 -0
- package/splitter/examples/en_US/default/fixed-size/fixed-size.component.ts +10 -0
- package/splitter/examples/en_US/default/fixed-size/readme.md +11 -0
- package/splitter/examples/en_US/default/layout/layout.component.html +16 -0
- package/splitter/examples/en_US/default/layout/layout.component.scss +21 -0
- package/splitter/examples/en_US/default/layout/layout.component.ts +10 -0
- package/splitter/examples/en_US/default/layout/readme.md +11 -0
- package/splitter/examples/index.ts +3 -0
- package/splitter/examples/zh_CN/default/default/default.component.html +26 -0
- package/splitter/examples/zh_CN/default/default/default.component.scss +13 -0
- package/splitter/examples/zh_CN/default/default/default.component.ts +10 -0
- package/splitter/examples/zh_CN/default/default/readme.md +11 -0
- package/splitter/examples/zh_CN/default/fixed-size/fixed-size.component.html +27 -0
- package/splitter/examples/zh_CN/default/fixed-size/fixed-size.component.scss +22 -0
- package/splitter/examples/zh_CN/default/fixed-size/fixed-size.component.ts +10 -0
- package/splitter/examples/zh_CN/default/fixed-size/readme.md +11 -0
- package/splitter/examples/zh_CN/default/layout/layout.component.html +30 -0
- package/splitter/examples/zh_CN/default/layout/layout.component.scss +21 -0
- package/splitter/examples/zh_CN/default/layout/layout.component.ts +10 -0
- package/splitter/examples/zh_CN/default/layout/readme.md +11 -0
- package/splitter/index.ts +1 -0
- package/splitter/ng-package.json +5 -0
- package/splitter/public-api.ts +5 -0
- package/splitter/splitter-bar.component.scss +8 -0
- package/splitter/splitter-bar.component.ts +66 -0
- package/splitter/splitter-panel.component.scss +14 -0
- package/splitter/splitter-panel.component.ts +60 -0
- package/splitter/splitter.component.html +3 -0
- package/splitter/splitter.component.scss +9 -0
- package/splitter/splitter.component.spec.ts +33 -0
- package/splitter/splitter.component.ts +266 -0
- package/splitter/splitter.module.ts +10 -0
- package/splitter/splitter.property.ts +52 -0
- package/splitter/style/mixin.scss +82 -0
- package/splitter/style/param.scss +7 -0
- package/statistic/countdown.component.html +9 -0
- package/statistic/countdown.component.scss +3 -0
- package/statistic/countdown.component.spec.ts +121 -0
- package/statistic/countdown.component.ts +87 -0
- package/statistic/docs/readme.en_US.md +20 -0
- package/statistic/docs/readme.zh_CN.md +20 -0
- package/statistic/examples/en_US/default/default/default.component.html +10 -0
- package/statistic/examples/en_US/default/default/default.component.scss +5 -0
- package/statistic/examples/en_US/default/default/default.component.ts +12 -0
- package/statistic/examples/en_US/default/default/readme.md +6 -0
- package/statistic/examples/en_US/default/down/down.component.html +15 -0
- package/statistic/examples/en_US/default/down/down.component.scss +5 -0
- package/statistic/examples/en_US/default/down/down.component.ts +14 -0
- package/statistic/examples/en_US/default/down/readme.md +6 -0
- package/statistic/examples/en_US/default/prefix/prefix.component.html +26 -0
- package/statistic/examples/en_US/default/prefix/prefix.component.scss +5 -0
- package/statistic/examples/en_US/default/prefix/prefix.component.ts +13 -0
- package/statistic/examples/en_US/default/prefix/readme.md +7 -0
- package/statistic/examples/en_US/default/readme.md +4 -0
- package/statistic/examples/index.ts +3 -0
- package/statistic/examples/zh_CN/default/default/default.component.html +10 -0
- package/statistic/examples/zh_CN/default/default/default.component.scss +5 -0
- package/statistic/examples/zh_CN/default/default/default.component.ts +12 -0
- package/statistic/examples/zh_CN/default/default/readme.md +6 -0
- package/statistic/examples/zh_CN/default/down/down.component.html +15 -0
- package/statistic/examples/zh_CN/default/down/down.component.scss +5 -0
- package/statistic/examples/zh_CN/default/down/down.component.ts +14 -0
- package/statistic/examples/zh_CN/default/down/readme.md +6 -0
- package/statistic/examples/zh_CN/default/prefix/prefix.component.html +26 -0
- package/statistic/examples/zh_CN/default/prefix/prefix.component.scss +5 -0
- package/statistic/examples/zh_CN/default/prefix/prefix.component.ts +13 -0
- package/statistic/examples/zh_CN/default/prefix/readme.md +7 -0
- package/statistic/examples/zh_CN/default/readme.md +4 -0
- package/statistic/index.ts +1 -0
- package/statistic/ng-package.json +5 -0
- package/statistic/public-api.ts +4 -0
- package/statistic/statistic.component.html +29 -0
- package/statistic/statistic.component.scss +10 -0
- package/statistic/statistic.component.spec.ts +99 -0
- package/statistic/statistic.component.ts +30 -0
- package/statistic/statistic.module.ts +9 -0
- package/statistic/statistic.property.ts +93 -0
- package/statistic/style/mixin.scss +24 -0
- package/statistic/style/param.scss +4 -0
- package/steps/docs/readme.en_US.md +20 -0
- package/steps/docs/readme.zh_CN.md +20 -0
- package/steps/examples/en_US/default/custom/custom.component.html +24 -0
- package/steps/examples/en_US/default/custom/custom.component.scss +44 -0
- package/steps/examples/en_US/default/custom/custom.component.ts +13 -0
- package/steps/examples/en_US/default/custom/readme.md +6 -0
- package/steps/examples/en_US/default/default/default.component.html +2 -0
- package/steps/examples/en_US/default/default/default.component.ts +17 -0
- package/steps/examples/en_US/default/default/readme.md +6 -0
- package/steps/examples/en_US/default/description/description.component.html +1 -0
- package/steps/examples/en_US/default/description/description.component.ts +15 -0
- package/steps/examples/en_US/default/description/readme.md +6 -0
- package/steps/examples/en_US/default/icon/icon.component.html +1 -0
- package/steps/examples/en_US/default/icon/icon.component.ts +16 -0
- package/steps/examples/en_US/default/icon/readme.md +6 -0
- package/steps/examples/en_US/default/index/index.component.html +1 -0
- package/steps/examples/en_US/default/index/index.component.ts +15 -0
- package/steps/examples/en_US/default/index/readme.md +6 -0
- package/steps/examples/en_US/default/layout/layout.component.html +1 -0
- package/steps/examples/en_US/default/layout/layout.component.ts +15 -0
- package/steps/examples/en_US/default/layout/readme.md +6 -0
- package/steps/examples/en_US/default/node-status/node-status.component.html +1 -0
- package/steps/examples/en_US/default/node-status/node-status.component.ts +18 -0
- package/steps/examples/en_US/default/node-status/readme.md +6 -0
- package/steps/examples/en_US/default/readme.md +4 -0
- package/steps/examples/en_US/default/status/readme.md +6 -0
- package/steps/examples/en_US/default/status/status.component.html +1 -0
- package/steps/examples/en_US/default/status/status.component.ts +15 -0
- package/steps/examples/en_US/default/tabs/readme.md +6 -0
- package/steps/examples/en_US/default/tabs/tabs.component.html +23 -0
- package/steps/examples/en_US/default/tabs/tabs.component.scss +13 -0
- package/steps/examples/en_US/default/tabs/tabs.component.ts +25 -0
- package/steps/examples/index.ts +9 -0
- package/steps/examples/zh_CN/default/custom/custom.component.html +24 -0
- package/steps/examples/zh_CN/default/custom/custom.component.scss +44 -0
- package/steps/examples/zh_CN/default/custom/custom.component.ts +13 -0
- package/steps/examples/zh_CN/default/custom/readme.md +6 -0
- package/steps/examples/zh_CN/default/default/default.component.html +2 -0
- package/steps/examples/zh_CN/default/default/default.component.ts +17 -0
- package/steps/examples/zh_CN/default/default/readme.md +6 -0
- package/steps/examples/zh_CN/default/description/description.component.html +1 -0
- package/steps/examples/zh_CN/default/description/description.component.ts +15 -0
- package/steps/examples/zh_CN/default/description/readme.md +6 -0
- package/steps/examples/zh_CN/default/icon/icon.component.html +1 -0
- package/steps/examples/zh_CN/default/icon/icon.component.ts +16 -0
- package/steps/examples/zh_CN/default/icon/readme.md +6 -0
- package/steps/examples/zh_CN/default/index/index.component.html +1 -0
- package/steps/examples/zh_CN/default/index/index.component.ts +15 -0
- package/steps/examples/zh_CN/default/index/readme.md +6 -0
- package/steps/examples/zh_CN/default/layout/layout.component.html +1 -0
- package/steps/examples/zh_CN/default/layout/layout.component.ts +15 -0
- package/steps/examples/zh_CN/default/layout/readme.md +6 -0
- package/steps/examples/zh_CN/default/node-status/node-status.component.html +1 -0
- package/steps/examples/zh_CN/default/node-status/node-status.component.ts +19 -0
- package/steps/examples/zh_CN/default/node-status/readme.md +6 -0
- package/steps/examples/zh_CN/default/readme.md +4 -0
- package/steps/examples/zh_CN/default/status/readme.md +6 -0
- package/steps/examples/zh_CN/default/status/status.component.html +1 -0
- package/steps/examples/zh_CN/default/status/status.component.ts +15 -0
- package/steps/examples/zh_CN/default/tabs/readme.md +6 -0
- package/steps/examples/zh_CN/default/tabs/tabs.component.html +23 -0
- package/steps/examples/zh_CN/default/tabs/tabs.component.scss +13 -0
- package/steps/examples/zh_CN/default/tabs/tabs.component.ts +25 -0
- package/steps/index.ts +1 -0
- package/steps/ng-package.json +5 -0
- package/steps/public-api.ts +3 -0
- package/steps/steps.component.html +48 -0
- package/steps/steps.component.scss +10 -0
- package/steps/steps.component.spec.ts +135 -0
- package/steps/steps.component.ts +47 -0
- package/steps/steps.module.ts +8 -0
- package/steps/steps.property.ts +98 -0
- package/steps/style/mixin.scss +126 -0
- package/steps/style/param.scss +4 -0
- package/suggestion/docs/readme.en_US.md +20 -0
- package/suggestion/docs/readme.zh_CN.md +20 -0
- package/suggestion/examples/en_US/default/default/default.component.html +5 -0
- package/suggestion/examples/en_US/default/default/default.component.scss +7 -0
- package/suggestion/examples/en_US/default/default/default.component.ts +38 -0
- package/suggestion/examples/en_US/default/default/readme.md +6 -0
- package/suggestion/examples/en_US/readme.md +4 -0
- package/suggestion/examples/index.ts +1 -0
- package/suggestion/examples/zh_CN/default/default/default.component.html +5 -0
- package/suggestion/examples/zh_CN/default/default/default.component.scss +7 -0
- package/suggestion/examples/zh_CN/default/default/default.component.ts +38 -0
- package/suggestion/examples/zh_CN/default/default/readme.md +6 -0
- package/suggestion/examples/zh_CN/readme.md +4 -0
- package/suggestion/index.ts +1 -0
- package/suggestion/ng-package.json +5 -0
- package/suggestion/public-api.ts +3 -0
- package/suggestion/style/mixin.scss +13 -0
- package/suggestion/style/param.scss +4 -0
- package/suggestion/suggestion.component.html +18 -0
- package/suggestion/suggestion.component.scss +9 -0
- package/suggestion/suggestion.component.ts +13 -0
- package/suggestion/suggestion.module.ts +8 -0
- package/suggestion/suggestion.property.ts +89 -0
- package/switch/docs/readme.en_US.md +20 -0
- package/switch/docs/readme.zh_CN.md +20 -0
- package/switch/examples/en_US/default/default/default.component.html +6 -0
- package/switch/examples/en_US/default/default/default.component.scss +5 -0
- package/switch/examples/en_US/default/default/default.component.ts +13 -0
- package/switch/examples/en_US/default/default/readme.md +6 -0
- package/switch/examples/en_US/default/disabled/disabled.component.html +6 -0
- package/switch/examples/en_US/default/disabled/disabled.component.scss +5 -0
- package/switch/examples/en_US/default/disabled/disabled.component.ts +13 -0
- package/switch/examples/en_US/default/disabled/readme.md +6 -0
- package/switch/examples/en_US/default/label/label.component.html +12 -0
- package/switch/examples/en_US/default/label/label.component.scss +5 -0
- package/switch/examples/en_US/default/label/label.component.ts +13 -0
- package/switch/examples/en_US/default/label/readme.md +7 -0
- package/switch/examples/en_US/default/loading/loading.component.html +9 -0
- package/switch/examples/en_US/default/loading/loading.component.scss +5 -0
- package/switch/examples/en_US/default/loading/loading.component.ts +27 -0
- package/switch/examples/en_US/default/loading/readme.md +7 -0
- package/switch/examples/en_US/default/readme.md +4 -0
- package/switch/examples/en_US/default/size/readme.md +6 -0
- package/switch/examples/en_US/default/size/size.component.html +12 -0
- package/switch/examples/en_US/default/size/size.component.scss +5 -0
- package/switch/examples/en_US/default/size/size.component.ts +16 -0
- package/switch/examples/en_US/default/text/readme.md +7 -0
- package/switch/examples/en_US/default/text/text.component.html +25 -0
- package/switch/examples/en_US/default/text/text.component.scss +5 -0
- package/switch/examples/en_US/default/text/text.component.ts +12 -0
- package/switch/examples/index.ts +6 -0
- package/switch/examples/zh_CN/default/default/default.component.html +6 -0
- package/switch/examples/zh_CN/default/default/default.component.scss +5 -0
- package/switch/examples/zh_CN/default/default/default.component.ts +13 -0
- package/switch/examples/zh_CN/default/default/readme.md +6 -0
- package/switch/examples/zh_CN/default/disabled/disabled.component.html +6 -0
- package/switch/examples/zh_CN/default/disabled/disabled.component.scss +5 -0
- package/switch/examples/zh_CN/default/disabled/disabled.component.ts +13 -0
- package/switch/examples/zh_CN/default/disabled/readme.md +6 -0
- package/switch/examples/zh_CN/default/label/label.component.html +12 -0
- package/switch/examples/zh_CN/default/label/label.component.scss +5 -0
- package/switch/examples/zh_CN/default/label/label.component.ts +13 -0
- package/switch/examples/zh_CN/default/label/readme.md +7 -0
- package/switch/examples/zh_CN/default/loading/loading.component.html +9 -0
- package/switch/examples/zh_CN/default/loading/loading.component.scss +5 -0
- package/switch/examples/zh_CN/default/loading/loading.component.ts +26 -0
- package/switch/examples/zh_CN/default/loading/readme.md +7 -0
- package/switch/examples/zh_CN/default/readme.md +4 -0
- package/switch/examples/zh_CN/default/size/readme.md +6 -0
- package/switch/examples/zh_CN/default/size/size.component.html +12 -0
- package/switch/examples/zh_CN/default/size/size.component.scss +5 -0
- package/switch/examples/zh_CN/default/size/size.component.ts +16 -0
- package/switch/examples/zh_CN/default/text/readme.md +7 -0
- package/switch/examples/zh_CN/default/text/text.component.html +25 -0
- package/switch/examples/zh_CN/default/text/text.component.scss +5 -0
- package/switch/examples/zh_CN/default/text/text.component.ts +12 -0
- package/switch/index.ts +1 -0
- package/switch/ng-package.json +5 -0
- package/switch/public-api.ts +3 -0
- package/switch/style/mixin.scss +172 -0
- package/switch/style/param.scss +42 -0
- package/switch/switch.component.html +36 -0
- package/switch/switch.component.scss +10 -0
- package/switch/switch.component.spec.ts +189 -0
- package/switch/switch.component.ts +36 -0
- package/switch/switch.module.ts +8 -0
- package/switch/switch.property.ts +155 -0
- package/table/checkbox-drag-select.directive.ts +100 -0
- package/table/checkbox-drag-select.service.ts +11 -0
- package/table/docs/readme.en_US.md +20 -0
- package/table/docs/readme.zh_CN.md +20 -0
- package/table/examples/en_US/default/adaption/adaption.component.html +17 -0
- package/table/examples/en_US/default/adaption/adaption.component.ts +53 -0
- package/table/examples/en_US/default/adaption/adaption.service.ts +87 -0
- package/table/examples/en_US/default/adaption/readme.md +6 -0
- package/table/examples/en_US/default/array-data/array-data.component.html +14 -0
- package/table/examples/en_US/default/array-data/array-data.component.ts +60 -0
- package/table/examples/en_US/default/array-data/readme.md +6 -0
- package/table/examples/en_US/default/bordered/bordered.component.html +2 -0
- package/table/examples/en_US/default/bordered/bordered.component.ts +28 -0
- package/table/examples/en_US/default/bordered/bordered.service.ts +87 -0
- package/table/examples/en_US/default/bordered/readme.md +6 -0
- package/table/examples/en_US/default/checkbox/checkbox.component.html +9 -0
- package/table/examples/en_US/default/checkbox/checkbox.component.ts +60 -0
- package/table/examples/en_US/default/checkbox/checkbox.service.ts +87 -0
- package/table/examples/en_US/default/checkbox/readme.md +7 -0
- package/table/examples/en_US/default/config/config.component.html +1 -0
- package/table/examples/en_US/default/config/config.component.ts +52 -0
- package/table/examples/en_US/default/config/config.service.ts +77 -0
- package/table/examples/en_US/default/config/readme.md +6 -0
- package/table/examples/en_US/default/custom/custom.component.html +26 -0
- package/table/examples/en_US/default/custom/custom.component.scss +22 -0
- package/table/examples/en_US/default/custom/custom.component.ts +23 -0
- package/table/examples/en_US/default/custom/custom.service.ts +77 -0
- package/table/examples/en_US/default/custom/readme.md +10 -0
- package/table/examples/en_US/default/default/default.component.html +1 -0
- package/table/examples/en_US/default/default/default.component.ts +27 -0
- package/table/examples/en_US/default/default/default.service.ts +77 -0
- package/table/examples/en_US/default/default/readme.md +7 -0
- package/table/examples/en_US/default/drag-column/drag-column.component.html +9 -0
- package/table/examples/en_US/default/drag-column/drag-column.component.ts +39 -0
- package/table/examples/en_US/default/drag-column/drag-column.service.ts +77 -0
- package/table/examples/en_US/default/drag-column/readme.md +7 -0
- package/table/examples/en_US/default/drag-width/drag-width.component.html +14 -0
- package/table/examples/en_US/default/drag-width/drag-width.component.ts +55 -0
- package/table/examples/en_US/default/drag-width/drag-width.service.ts +87 -0
- package/table/examples/en_US/default/drag-width/readme.md +6 -0
- package/table/examples/en_US/default/edit/edit.component.html +34 -0
- package/table/examples/en_US/default/edit/edit.component.ts +55 -0
- package/table/examples/en_US/default/edit/readme.md +7 -0
- package/table/examples/en_US/default/expand/expand.component.html +13 -0
- package/table/examples/en_US/default/expand/expand.component.scss +15 -0
- package/table/examples/en_US/default/expand/expand.component.ts +46 -0
- package/table/examples/en_US/default/expand/readme.md +8 -0
- package/table/examples/en_US/default/fix/fix.component.html +19 -0
- package/table/examples/en_US/default/fix/fix.component.ts +38 -0
- package/table/examples/en_US/default/fix/fix.service.ts +87 -0
- package/table/examples/en_US/default/fix/readme.md +7 -0
- package/table/examples/en_US/default/head/head.component.html +1 -0
- package/table/examples/en_US/default/head/head.component.ts +27 -0
- package/table/examples/en_US/default/head/head.service.ts +87 -0
- package/table/examples/en_US/default/head/readme.md +6 -0
- package/table/examples/en_US/default/head-template/head-template.component.html +3 -0
- package/table/examples/en_US/default/head-template/head-template.component.ts +27 -0
- package/table/examples/en_US/default/head-template/head-template.service.ts +87 -0
- package/table/examples/en_US/default/head-template/readme.md +6 -0
- package/table/examples/en_US/default/header/header.component.html +10 -0
- package/table/examples/en_US/default/header/header.component.ts +29 -0
- package/table/examples/en_US/default/header/header.service.ts +77 -0
- package/table/examples/en_US/default/header/readme.md +6 -0
- package/table/examples/en_US/default/innerHTML/innerHTML.component.html +1 -0
- package/table/examples/en_US/default/innerHTML/innerHTML.component.ts +27 -0
- package/table/examples/en_US/default/innerHTML/innerHTML.service.ts +87 -0
- package/table/examples/en_US/default/innerHTML/readme.md +7 -0
- package/table/examples/en_US/default/readme.md +4 -0
- package/table/examples/en_US/default/row-size/readme.md +6 -0
- package/table/examples/en_US/default/row-size/row-size.component.html +13 -0
- package/table/examples/en_US/default/row-size/row-size.component.ts +27 -0
- package/table/examples/en_US/default/row-size/row-size.service.ts +77 -0
- package/table/examples/en_US/default/rowclass/readme.md +6 -0
- package/table/examples/en_US/default/rowclass/rowclass.component.html +1 -0
- package/table/examples/en_US/default/rowclass/rowclass.component.scss +16 -0
- package/table/examples/en_US/default/rowclass/rowclass.component.ts +38 -0
- package/table/examples/en_US/default/rowclass/rowclass.service.ts +77 -0
- package/table/examples/en_US/default/scroll/readme.md +7 -0
- package/table/examples/en_US/default/scroll/scroll.component.html +2 -0
- package/table/examples/en_US/default/scroll/scroll.component.ts +28 -0
- package/table/examples/en_US/default/scroll/scroll.service.ts +77 -0
- package/table/examples/en_US/default/search/readme.md +6 -0
- package/table/examples/en_US/default/search/search.component.html +42 -0
- package/table/examples/en_US/default/search/search.component.ts +52 -0
- package/table/examples/en_US/default/search/search.service.ts +90 -0
- package/table/examples/index.ts +20 -0
- package/table/examples/zh_CN/default/adaption/adaption.component.html +17 -0
- package/table/examples/zh_CN/default/adaption/adaption.component.ts +53 -0
- package/table/examples/zh_CN/default/adaption/adaption.service.ts +87 -0
- package/table/examples/zh_CN/default/adaption/readme.md +6 -0
- package/table/examples/zh_CN/default/array-data/array-data.component.html +14 -0
- package/table/examples/zh_CN/default/array-data/array-data.component.ts +60 -0
- package/table/examples/zh_CN/default/array-data/readme.md +6 -0
- package/table/examples/zh_CN/default/bordered/bordered.component.html +2 -0
- package/table/examples/zh_CN/default/bordered/bordered.component.ts +26 -0
- package/table/examples/zh_CN/default/bordered/bordered.service.ts +77 -0
- package/table/examples/zh_CN/default/bordered/readme.md +6 -0
- package/table/examples/zh_CN/default/checkbox/checkbox.component.html +9 -0
- package/table/examples/zh_CN/default/checkbox/checkbox.component.ts +60 -0
- package/table/examples/zh_CN/default/checkbox/checkbox.service.ts +87 -0
- package/table/examples/zh_CN/default/checkbox/readme.md +8 -0
- package/table/examples/zh_CN/default/config/config.component.html +1 -0
- package/table/examples/zh_CN/default/config/config.component.ts +52 -0
- package/table/examples/zh_CN/default/config/config.service.ts +77 -0
- package/table/examples/zh_CN/default/config/readme.md +6 -0
- package/table/examples/zh_CN/default/custom/custom.component.html +26 -0
- package/table/examples/zh_CN/default/custom/custom.component.scss +22 -0
- package/table/examples/zh_CN/default/custom/custom.component.ts +23 -0
- package/table/examples/zh_CN/default/custom/custom.service.ts +77 -0
- package/table/examples/zh_CN/default/custom/readme.md +10 -0
- package/table/examples/zh_CN/default/default/default.component.html +1 -0
- package/table/examples/zh_CN/default/default/default.component.ts +27 -0
- package/table/examples/zh_CN/default/default/default.service.ts +77 -0
- package/table/examples/zh_CN/default/default/readme.md +7 -0
- package/table/examples/zh_CN/default/drag-column/drag-column.component.html +9 -0
- package/table/examples/zh_CN/default/drag-column/drag-column.component.ts +39 -0
- package/table/examples/zh_CN/default/drag-column/drag-column.service.ts +77 -0
- package/table/examples/zh_CN/default/drag-column/readme.md +7 -0
- package/table/examples/zh_CN/default/drag-width/drag-width.component.html +14 -0
- package/table/examples/zh_CN/default/drag-width/drag-width.component.ts +55 -0
- package/table/examples/zh_CN/default/drag-width/drag-width.service.ts +77 -0
- package/table/examples/zh_CN/default/drag-width/readme.md +6 -0
- package/table/examples/zh_CN/default/edit/edit.component.html +34 -0
- package/table/examples/zh_CN/default/edit/edit.component.ts +51 -0
- package/table/examples/zh_CN/default/edit/readme.md +7 -0
- package/table/examples/zh_CN/default/expand/expand.component.html +15 -0
- package/table/examples/zh_CN/default/expand/expand.component.scss +15 -0
- package/table/examples/zh_CN/default/expand/expand.component.ts +50 -0
- package/table/examples/zh_CN/default/expand/readme.md +8 -0
- package/table/examples/zh_CN/default/fix/fix.component.html +19 -0
- package/table/examples/zh_CN/default/fix/fix.component.ts +38 -0
- package/table/examples/zh_CN/default/fix/fix.service.ts +77 -0
- package/table/examples/zh_CN/default/fix/readme.md +7 -0
- package/table/examples/zh_CN/default/head/head.component.html +1 -0
- package/table/examples/zh_CN/default/head/head.component.ts +27 -0
- package/table/examples/zh_CN/default/head/head.service.ts +77 -0
- package/table/examples/zh_CN/default/head/readme.md +6 -0
- package/table/examples/zh_CN/default/head-template/head-template.component.html +3 -0
- package/table/examples/zh_CN/default/head-template/head-template.component.ts +27 -0
- package/table/examples/zh_CN/default/head-template/head-template.service.ts +87 -0
- package/table/examples/zh_CN/default/head-template/readme.md +6 -0
- package/table/examples/zh_CN/default/header/header.component.html +10 -0
- package/table/examples/zh_CN/default/header/header.component.ts +29 -0
- package/table/examples/zh_CN/default/header/header.service.ts +77 -0
- package/table/examples/zh_CN/default/header/readme.md +6 -0
- package/table/examples/zh_CN/default/innerHTML/innerHTML.component.html +1 -0
- package/table/examples/zh_CN/default/innerHTML/innerHTML.component.ts +27 -0
- package/table/examples/zh_CN/default/innerHTML/innerHTML.service.ts +87 -0
- package/table/examples/zh_CN/default/innerHTML/readme.md +7 -0
- package/table/examples/zh_CN/default/readme.md +4 -0
- package/table/examples/zh_CN/default/row-size/readme.md +6 -0
- package/table/examples/zh_CN/default/row-size/row-size.component.html +13 -0
- package/table/examples/zh_CN/default/row-size/row-size.component.ts +27 -0
- package/table/examples/zh_CN/default/row-size/row-size.service.ts +77 -0
- package/table/examples/zh_CN/default/rowclass/readme.md +6 -0
- package/table/examples/zh_CN/default/rowclass/rowclass.component.html +1 -0
- package/table/examples/zh_CN/default/rowclass/rowclass.component.scss +16 -0
- package/table/examples/zh_CN/default/rowclass/rowclass.component.ts +38 -0
- package/table/examples/zh_CN/default/rowclass/rowclass.service.ts +77 -0
- package/table/examples/zh_CN/default/scroll/readme.md +7 -0
- package/table/examples/zh_CN/default/scroll/scroll.component.html +10 -0
- package/table/examples/zh_CN/default/scroll/scroll.component.ts +28 -0
- package/table/examples/zh_CN/default/scroll/scroll.service.ts +77 -0
- package/table/examples/zh_CN/default/search/readme.md +6 -0
- package/table/examples/zh_CN/default/search/search.component.html +42 -0
- package/table/examples/zh_CN/default/search/search.component.ts +54 -0
- package/table/examples/zh_CN/default/search/search.service.ts +90 -0
- package/table/index.ts +1 -0
- package/table/ng-package.json +5 -0
- package/table/public-api.ts +6 -0
- package/table/style/mixin.scss +414 -0
- package/table/style/param.scss +7 -0
- package/table/table-body.component.html +137 -0
- package/table/table-body.component.ts +301 -0
- package/table/table-foot.component.html +3 -0
- package/table/table-foot.component.ts +38 -0
- package/table/table-head.component.html +144 -0
- package/table/table-head.component.ts +185 -0
- package/table/table.component.html +143 -0
- package/table/table.component.scss +55 -0
- package/table/table.component.spec.ts +1121 -0
- package/table/table.component.ts +435 -0
- package/table/table.module.ts +11 -0
- package/table/table.property.ts +940 -0
- package/table/table.token.ts +69 -0
- package/table-view/cell.ts +192 -0
- package/table-view/docs/readme.en_US.md +13 -0
- package/table-view/docs/readme.zh_CN.md +13 -0
- package/table-view/examples/index.ts +1 -0
- package/table-view/examples/zh_CN/default/default/default.component.html +27 -0
- package/table-view/examples/zh_CN/default/default/default.component.scss +6 -0
- package/table-view/examples/zh_CN/default/default/default.component.ts +45 -0
- package/table-view/examples/zh_CN/default/default/readme.md +6 -0
- package/table-view/examples/zh_CN/readme.md +4 -0
- package/table-view/index.ts +1 -0
- package/table-view/ng-package.json +5 -0
- package/table-view/public-api.ts +6 -0
- package/table-view/row.ts +164 -0
- package/table-view/style/mixin.scss +90 -0
- package/table-view/style/param.scss +4 -0
- package/table-view/table-view.component.html +28 -0
- package/table-view/table-view.component.scss +9 -0
- package/table-view/table-view.component.ts +91 -0
- package/table-view/table-view.module.ts +55 -0
- package/table-view/table-view.property.ts +36 -0
- package/table-view/table-view.service.ts +16 -0
- package/table-view/table-view.token.ts +20 -0
- package/table-view/text-column.ts +21 -0
- package/tabs/docs/readme.en_US.md +20 -0
- package/tabs/docs/readme.zh_CN.md +24 -0
- package/tabs/examples/en_US/default/action/action.component.html +20 -0
- package/tabs/examples/en_US/default/action/action.component.scss +10 -0
- package/tabs/examples/en_US/default/action/action.component.ts +52 -0
- package/tabs/examples/en_US/default/action/readme.md +6 -0
- package/tabs/examples/en_US/default/card/card.component.html +7 -0
- package/tabs/examples/en_US/default/card/card.component.ts +11 -0
- package/tabs/examples/en_US/default/card/readme.md +6 -0
- package/tabs/examples/en_US/default/custom/custom.component.html +22 -0
- package/tabs/examples/en_US/default/custom/custom.component.scss +8 -0
- package/tabs/examples/en_US/default/custom/custom.component.ts +11 -0
- package/tabs/examples/en_US/default/custom/readme.md +6 -0
- package/tabs/examples/en_US/default/default/default.component.html +7 -0
- package/tabs/examples/en_US/default/default/default.component.ts +11 -0
- package/tabs/examples/en_US/default/default/readme.md +6 -0
- package/tabs/examples/en_US/default/expand/expand.component.html +7 -0
- package/tabs/examples/en_US/default/expand/expand.component.ts +25 -0
- package/tabs/examples/en_US/default/expand/readme.md +6 -0
- package/tabs/examples/en_US/default/layout/layout.component.html +33 -0
- package/tabs/examples/en_US/default/layout/layout.component.scss +8 -0
- package/tabs/examples/en_US/default/layout/layout.component.ts +19 -0
- package/tabs/examples/en_US/default/layout/readme.md +6 -0
- package/tabs/examples/en_US/default/readme.md +4 -0
- package/tabs/examples/en_US/default/router/readme.md +12 -0
- package/tabs/examples/en_US/default/router/router.component.html +8 -0
- package/tabs/examples/en_US/default/router/router.component.ts +12 -0
- package/tabs/examples/en_US/default/tag/readme.md +6 -0
- package/tabs/examples/en_US/default/tag/tag.component.html +7 -0
- package/tabs/examples/en_US/default/tag/tag.component.ts +11 -0
- package/tabs/examples/index.ts +8 -0
- package/tabs/examples/zh_CN/default/action/action.component.html +20 -0
- package/tabs/examples/zh_CN/default/action/action.component.scss +10 -0
- package/tabs/examples/zh_CN/default/action/action.component.ts +52 -0
- package/tabs/examples/zh_CN/default/action/readme.md +6 -0
- package/tabs/examples/zh_CN/default/card/card.component.html +7 -0
- package/tabs/examples/zh_CN/default/card/card.component.ts +11 -0
- package/tabs/examples/zh_CN/default/card/readme.md +6 -0
- package/tabs/examples/zh_CN/default/custom/custom.component.html +22 -0
- package/tabs/examples/zh_CN/default/custom/custom.component.scss +8 -0
- package/tabs/examples/zh_CN/default/custom/custom.component.ts +11 -0
- package/tabs/examples/zh_CN/default/custom/readme.md +6 -0
- package/tabs/examples/zh_CN/default/default/default.component.html +7 -0
- package/tabs/examples/zh_CN/default/default/default.component.ts +11 -0
- package/tabs/examples/zh_CN/default/default/readme.md +6 -0
- package/tabs/examples/zh_CN/default/expand/expand.component.html +7 -0
- package/tabs/examples/zh_CN/default/expand/expand.component.ts +25 -0
- package/tabs/examples/zh_CN/default/expand/readme.md +6 -0
- package/tabs/examples/zh_CN/default/layout/layout.component.html +33 -0
- package/tabs/examples/zh_CN/default/layout/layout.component.scss +8 -0
- package/tabs/examples/zh_CN/default/layout/layout.component.ts +19 -0
- package/tabs/examples/zh_CN/default/layout/readme.md +6 -0
- package/tabs/examples/zh_CN/default/readme.md +4 -0
- package/tabs/examples/zh_CN/default/router/readme.md +12 -0
- package/tabs/examples/zh_CN/default/router/router.component.html +8 -0
- package/tabs/examples/zh_CN/default/router/router.component.ts +12 -0
- package/tabs/examples/zh_CN/default/tag/readme.md +6 -0
- package/tabs/examples/zh_CN/default/tag/tag.component.html +7 -0
- package/tabs/examples/zh_CN/default/tag/tag.component.ts +11 -0
- package/tabs/index.ts +1 -0
- package/tabs/ng-package.json +5 -0
- package/tabs/public-api.ts +6 -0
- package/tabs/style/index.scss +10 -0
- package/tabs/style/mixin.scss +381 -0
- package/tabs/style/param.scss +6 -0
- package/tabs/tab-content.component.html +3 -0
- package/tabs/tab-content.component.ts +18 -0
- package/tabs/tab-link.directive.ts +22 -0
- package/tabs/tab.component.html +6 -0
- package/tabs/tab.component.ts +22 -0
- package/tabs/tabs.component.html +42 -0
- package/tabs/tabs.component.spec.ts +256 -0
- package/tabs/tabs.component.ts +181 -0
- package/tabs/tabs.module.ts +10 -0
- package/tabs/tabs.property.ts +182 -0
- package/tag/docs/readme.en_US.md +20 -0
- package/tag/docs/readme.zh_CN.md +20 -0
- package/tag/examples/en_US/default/bordered/bordered.component.html +14 -0
- package/tag/examples/en_US/default/bordered/bordered.component.scss +8 -0
- package/tag/examples/en_US/default/bordered/bordered.component.ts +10 -0
- package/tag/examples/en_US/default/bordered/readme.md +6 -0
- package/tag/examples/en_US/default/checked/checked.component.html +18 -0
- package/tag/examples/en_US/default/checked/checked.component.scss +8 -0
- package/tag/examples/en_US/default/checked/checked.component.ts +14 -0
- package/tag/examples/en_US/default/checked/readme.md +6 -0
- package/tag/examples/en_US/default/close/close.component.html +21 -0
- package/tag/examples/en_US/default/close/close.component.scss +8 -0
- package/tag/examples/en_US/default/close/close.component.ts +18 -0
- package/tag/examples/en_US/default/close/readme.md +6 -0
- package/tag/examples/en_US/default/color/color.component.html +4 -0
- package/tag/examples/en_US/default/color/color.component.scss +8 -0
- package/tag/examples/en_US/default/color/color.component.ts +10 -0
- package/tag/examples/en_US/default/color/readme.md +6 -0
- package/tag/examples/en_US/default/default/default.component.html +16 -0
- package/tag/examples/en_US/default/default/default.component.scss +8 -0
- package/tag/examples/en_US/default/default/default.component.ts +10 -0
- package/tag/examples/en_US/default/default/readme.md +6 -0
- package/tag/examples/en_US/default/readme.md +4 -0
- package/tag/examples/en_US/default/size/readme.md +6 -0
- package/tag/examples/en_US/default/size/size.component.html +14 -0
- package/tag/examples/en_US/default/size/size.component.scss +8 -0
- package/tag/examples/en_US/default/size/size.component.ts +10 -0
- package/tag/examples/index.ts +6 -0
- package/tag/examples/zh_CN/default/bordered/bordered.component.html +14 -0
- package/tag/examples/zh_CN/default/bordered/bordered.component.scss +8 -0
- package/tag/examples/zh_CN/default/bordered/bordered.component.ts +10 -0
- package/tag/examples/zh_CN/default/bordered/readme.md +6 -0
- package/tag/examples/zh_CN/default/checked/checked.component.html +18 -0
- package/tag/examples/zh_CN/default/checked/checked.component.scss +8 -0
- package/tag/examples/zh_CN/default/checked/checked.component.ts +14 -0
- package/tag/examples/zh_CN/default/checked/readme.md +6 -0
- package/tag/examples/zh_CN/default/close/close.component.html +21 -0
- package/tag/examples/zh_CN/default/close/close.component.scss +8 -0
- package/tag/examples/zh_CN/default/close/close.component.ts +18 -0
- package/tag/examples/zh_CN/default/close/readme.md +6 -0
- package/tag/examples/zh_CN/default/color/color.component.html +4 -0
- package/tag/examples/zh_CN/default/color/color.component.scss +8 -0
- package/tag/examples/zh_CN/default/color/color.component.ts +10 -0
- package/tag/examples/zh_CN/default/color/readme.md +6 -0
- package/tag/examples/zh_CN/default/default/default.component.html +16 -0
- package/tag/examples/zh_CN/default/default/default.component.scss +8 -0
- package/tag/examples/zh_CN/default/default/default.component.ts +10 -0
- package/tag/examples/zh_CN/default/default/readme.md +6 -0
- package/tag/examples/zh_CN/default/readme.md +4 -0
- package/tag/examples/zh_CN/default/size/readme.md +6 -0
- package/tag/examples/zh_CN/default/size/size.component.html +14 -0
- package/tag/examples/zh_CN/default/size/size.component.scss +8 -0
- package/tag/examples/zh_CN/default/size/size.component.ts +10 -0
- package/tag/index.ts +1 -0
- package/tag/ng-package.json +5 -0
- package/tag/public-api.ts +3 -0
- package/tag/style/mixin.scss +273 -0
- package/tag/style/param.scss +4 -0
- package/tag/tag.component.html +16 -0
- package/tag/tag.component.scss +14 -0
- package/tag/tag.component.spec.ts +157 -0
- package/tag/tag.component.ts +61 -0
- package/tag/tag.module.ts +8 -0
- package/tag/tag.property.ts +73 -0
- package/text-retract/docs/readme.en_US.md +20 -0
- package/text-retract/docs/readme.zh_CN.md +20 -0
- package/text-retract/examples/en_US/default/default/default.component.html +3 -0
- package/text-retract/examples/en_US/default/default/default.component.scss +5 -0
- package/text-retract/examples/en_US/default/default/default.component.ts +17 -0
- package/text-retract/examples/en_US/default/default/readme.md +6 -0
- package/text-retract/examples/en_US/default/readme.md +4 -0
- package/text-retract/examples/index.ts +1 -0
- package/text-retract/examples/zh_CN/default/default/default.component.html +3 -0
- package/text-retract/examples/zh_CN/default/default/default.component.scss +5 -0
- package/text-retract/examples/zh_CN/default/default/default.component.ts +20 -0
- package/text-retract/examples/zh_CN/default/default/readme.md +6 -0
- package/text-retract/examples/zh_CN/default/readme.md +4 -0
- package/text-retract/index.ts +1 -0
- package/text-retract/ng-package.json +5 -0
- package/text-retract/public-api.ts +3 -0
- package/text-retract/style/mixin.scss +11 -0
- package/text-retract/style/param.scss +4 -0
- package/text-retract/text-retract.component.html +10 -0
- package/text-retract/text-retract.component.scss +10 -0
- package/text-retract/text-retract.component.spec.ts +74 -0
- package/text-retract/text-retract.component.ts +39 -0
- package/text-retract/text-retract.module.ts +8 -0
- package/text-retract/text-retract.property.ts +28 -0
- package/textarea/docs/readme.en_US.md +20 -0
- package/textarea/docs/readme.zh_CN.md +20 -0
- package/textarea/examples/en_US/default/clear/clear.component.html +12 -0
- package/textarea/examples/en_US/default/clear/clear.component.scss +5 -0
- package/textarea/examples/en_US/default/clear/clear.component.ts +13 -0
- package/textarea/examples/en_US/default/clear/readme.md +6 -0
- package/textarea/examples/en_US/default/default/default.component.html +6 -0
- package/textarea/examples/en_US/default/default/default.component.scss +5 -0
- package/textarea/examples/en_US/default/default/default.component.ts +10 -0
- package/textarea/examples/en_US/default/default/readme.md +6 -0
- package/textarea/examples/en_US/default/disabled/disabled.component.html +12 -0
- package/textarea/examples/en_US/default/disabled/disabled.component.scss +5 -0
- package/textarea/examples/en_US/default/disabled/disabled.component.ts +14 -0
- package/textarea/examples/en_US/default/disabled/readme.md +6 -0
- package/textarea/examples/en_US/default/float-label/float-label.component.html +31 -0
- package/textarea/examples/en_US/default/float-label/float-label.component.scss +16 -0
- package/textarea/examples/en_US/default/float-label/float-label.component.ts +10 -0
- package/textarea/examples/en_US/default/float-label/readme.md +6 -0
- package/textarea/examples/en_US/default/icon/icon.component.html +6 -0
- package/textarea/examples/en_US/default/icon/icon.component.scss +5 -0
- package/textarea/examples/en_US/default/icon/icon.component.ts +10 -0
- package/textarea/examples/en_US/default/icon/readme.md +7 -0
- package/textarea/examples/en_US/default/label/label.component.html +12 -0
- package/textarea/examples/en_US/default/label/label.component.scss +5 -0
- package/textarea/examples/en_US/default/label/label.component.ts +10 -0
- package/textarea/examples/en_US/default/label/readme.md +7 -0
- package/textarea/examples/en_US/default/length/length.component.html +15 -0
- package/textarea/examples/en_US/default/length/length.component.scss +5 -0
- package/textarea/examples/en_US/default/length/length.component.ts +13 -0
- package/textarea/examples/en_US/default/length/readme.md +6 -0
- package/textarea/examples/en_US/default/readme.md +4 -0
- package/textarea/examples/en_US/default/required/readme.md +6 -0
- package/textarea/examples/en_US/default/required/required.component.html +9 -0
- package/textarea/examples/en_US/default/required/required.component.scss +5 -0
- package/textarea/examples/en_US/default/required/required.component.ts +13 -0
- package/textarea/examples/en_US/default/variant/readme.md +6 -0
- package/textarea/examples/en_US/default/variant/variant.component.html +12 -0
- package/textarea/examples/en_US/default/variant/variant.component.scss +5 -0
- package/textarea/examples/en_US/default/variant/variant.component.ts +10 -0
- package/textarea/examples/index.ts +9 -0
- package/textarea/examples/zh_CN/default/clear/clear.component.html +12 -0
- package/textarea/examples/zh_CN/default/clear/clear.component.scss +5 -0
- package/textarea/examples/zh_CN/default/clear/clear.component.ts +13 -0
- package/textarea/examples/zh_CN/default/clear/readme.md +6 -0
- package/textarea/examples/zh_CN/default/default/default.component.html +6 -0
- package/textarea/examples/zh_CN/default/default/default.component.scss +5 -0
- package/textarea/examples/zh_CN/default/default/default.component.ts +10 -0
- package/textarea/examples/zh_CN/default/default/readme.md +6 -0
- package/textarea/examples/zh_CN/default/disabled/disabled.component.html +12 -0
- package/textarea/examples/zh_CN/default/disabled/disabled.component.scss +5 -0
- package/textarea/examples/zh_CN/default/disabled/disabled.component.ts +14 -0
- package/textarea/examples/zh_CN/default/disabled/readme.md +6 -0
- package/textarea/examples/zh_CN/default/float-label/float-label.component.html +31 -0
- package/textarea/examples/zh_CN/default/float-label/float-label.component.scss +16 -0
- package/textarea/examples/zh_CN/default/float-label/float-label.component.ts +10 -0
- package/textarea/examples/zh_CN/default/float-label/readme.md +6 -0
- package/textarea/examples/zh_CN/default/icon/icon.component.html +6 -0
- package/textarea/examples/zh_CN/default/icon/icon.component.scss +5 -0
- package/textarea/examples/zh_CN/default/icon/icon.component.ts +10 -0
- package/textarea/examples/zh_CN/default/icon/readme.md +7 -0
- package/textarea/examples/zh_CN/default/label/label.component.html +12 -0
- package/textarea/examples/zh_CN/default/label/label.component.scss +5 -0
- package/textarea/examples/zh_CN/default/label/label.component.ts +10 -0
- package/textarea/examples/zh_CN/default/label/readme.md +7 -0
- package/textarea/examples/zh_CN/default/length/length.component.html +15 -0
- package/textarea/examples/zh_CN/default/length/length.component.scss +5 -0
- package/textarea/examples/zh_CN/default/length/length.component.ts +13 -0
- package/textarea/examples/zh_CN/default/length/readme.md +6 -0
- package/textarea/examples/zh_CN/default/readme.md +4 -0
- package/textarea/examples/zh_CN/default/required/readme.md +6 -0
- package/textarea/examples/zh_CN/default/required/required.component.html +9 -0
- package/textarea/examples/zh_CN/default/required/required.component.scss +5 -0
- package/textarea/examples/zh_CN/default/required/required.component.ts +13 -0
- package/textarea/examples/zh_CN/default/variant/readme.md +6 -0
- package/textarea/examples/zh_CN/default/variant/variant.component.html +12 -0
- package/textarea/examples/zh_CN/default/variant/variant.component.scss +5 -0
- package/textarea/examples/zh_CN/default/variant/variant.component.ts +10 -0
- package/textarea/index.ts +1 -0
- package/textarea/ng-package.json +5 -0
- package/textarea/public-api.ts +3 -0
- package/textarea/style/index.scss +14 -0
- package/textarea/style/mixin.scss +314 -0
- package/textarea/style/param.scss +43 -0
- package/textarea/textarea.component.html +72 -0
- package/textarea/textarea.component.spec.ts +250 -0
- package/textarea/textarea.component.ts +94 -0
- package/textarea/textarea.module.ts +8 -0
- package/textarea/textarea.property.ts +315 -0
- package/theme/docs/readme.en_US.md +21 -0
- package/theme/docs/readme.zh_CN.md +21 -0
- package/theme/examples/en_US/default/default/default.component.html +17 -0
- package/theme/examples/en_US/default/default/default.component.scss +10 -0
- package/theme/examples/en_US/default/default/default.component.ts +15 -0
- package/theme/examples/en_US/default/default/readme.md +8 -0
- package/theme/examples/en_US/default/readme.md +4 -0
- package/theme/examples/index.ts +1 -0
- package/theme/examples/zh_CN/default/default/default.component.html +17 -0
- package/theme/examples/zh_CN/default/default/default.component.scss +10 -0
- package/theme/examples/zh_CN/default/default/default.component.ts +15 -0
- package/theme/examples/zh_CN/default/default/readme.md +8 -0
- package/theme/examples/zh_CN/default/readme.md +4 -0
- package/theme/index.ts +1 -0
- package/theme/ng-package.json +5 -0
- package/theme/public-api.ts +3 -0
- package/theme/style/index.scss +10 -0
- package/theme/style/mixin.scss +26 -0
- package/theme/style/param.scss +4 -0
- package/theme/theme.component.html +18 -0
- package/theme/theme.component.spec.ts +322 -0
- package/theme/theme.component.ts +218 -0
- package/theme/theme.module.ts +8 -0
- package/theme/theme.property.ts +56 -0
- package/thought-chain/docs/readme.en_US.md +20 -0
- package/thought-chain/docs/readme.zh_CN.md +20 -0
- package/thought-chain/examples/en_US/default/collapsible/collapsible.component.html +8 -0
- package/thought-chain/examples/en_US/default/collapsible/collapsible.component.scss +7 -0
- package/thought-chain/examples/en_US/default/collapsible/collapsible.component.ts +58 -0
- package/thought-chain/examples/en_US/default/collapsible/readme.md +6 -0
- package/thought-chain/examples/en_US/default/content/content.component.html +8 -0
- package/thought-chain/examples/en_US/default/content/content.component.scss +7 -0
- package/thought-chain/examples/en_US/default/content/content.component.ts +58 -0
- package/thought-chain/examples/en_US/default/content/readme.md +6 -0
- package/thought-chain/examples/en_US/default/default/default.component.html +5 -0
- package/thought-chain/examples/en_US/default/default/default.component.scss +7 -0
- package/thought-chain/examples/en_US/default/default/default.component.ts +19 -0
- package/thought-chain/examples/en_US/default/default/readme.md +6 -0
- package/thought-chain/examples/en_US/default/extra/extra.component.html +18 -0
- package/thought-chain/examples/en_US/default/extra/extra.component.scss +7 -0
- package/thought-chain/examples/en_US/default/extra/extra.component.ts +25 -0
- package/thought-chain/examples/en_US/default/extra/readme.md +6 -0
- package/thought-chain/examples/en_US/default/next/next.component.html +8 -0
- package/thought-chain/examples/en_US/default/next/next.component.scss +7 -0
- package/thought-chain/examples/en_US/default/next/next.component.ts +74 -0
- package/thought-chain/examples/en_US/default/next/readme.md +6 -0
- package/thought-chain/examples/en_US/default/size/readme.md +6 -0
- package/thought-chain/examples/en_US/default/size/size.component.html +8 -0
- package/thought-chain/examples/en_US/default/size/size.component.scss +7 -0
- package/thought-chain/examples/en_US/default/size/size.component.ts +24 -0
- package/thought-chain/examples/en_US/readme.md +4 -0
- package/thought-chain/examples/index.ts +6 -0
- package/thought-chain/examples/zh_CN/default/collapsible/collapsible.component.html +8 -0
- package/thought-chain/examples/zh_CN/default/collapsible/collapsible.component.scss +7 -0
- package/thought-chain/examples/zh_CN/default/collapsible/collapsible.component.ts +58 -0
- package/thought-chain/examples/zh_CN/default/collapsible/readme.md +6 -0
- package/thought-chain/examples/zh_CN/default/content/content.component.html +8 -0
- package/thought-chain/examples/zh_CN/default/content/content.component.scss +7 -0
- package/thought-chain/examples/zh_CN/default/content/content.component.ts +58 -0
- package/thought-chain/examples/zh_CN/default/content/readme.md +6 -0
- package/thought-chain/examples/zh_CN/default/default/default.component.html +5 -0
- package/thought-chain/examples/zh_CN/default/default/default.component.scss +7 -0
- package/thought-chain/examples/zh_CN/default/default/default.component.ts +19 -0
- package/thought-chain/examples/zh_CN/default/default/readme.md +6 -0
- package/thought-chain/examples/zh_CN/default/extra/extra.component.html +18 -0
- package/thought-chain/examples/zh_CN/default/extra/extra.component.scss +7 -0
- package/thought-chain/examples/zh_CN/default/extra/extra.component.ts +25 -0
- package/thought-chain/examples/zh_CN/default/extra/readme.md +6 -0
- package/thought-chain/examples/zh_CN/default/next/next.component.html +8 -0
- package/thought-chain/examples/zh_CN/default/next/next.component.scss +7 -0
- package/thought-chain/examples/zh_CN/default/next/next.component.ts +74 -0
- package/thought-chain/examples/zh_CN/default/next/readme.md +6 -0
- package/thought-chain/examples/zh_CN/default/size/readme.md +6 -0
- package/thought-chain/examples/zh_CN/default/size/size.component.html +8 -0
- package/thought-chain/examples/zh_CN/default/size/size.component.scss +7 -0
- package/thought-chain/examples/zh_CN/default/size/size.component.ts +24 -0
- package/thought-chain/examples/zh_CN/readme.md +4 -0
- package/thought-chain/index.ts +1 -0
- package/thought-chain/ng-package.json +5 -0
- package/thought-chain/public-api.ts +3 -0
- package/thought-chain/style/mixin.scss +81 -0
- package/thought-chain/style/param.scss +4 -0
- package/thought-chain/thought-chain.component.html +65 -0
- package/thought-chain/thought-chain.component.scss +9 -0
- package/thought-chain/thought-chain.component.ts +32 -0
- package/thought-chain/thought-chain.module.ts +8 -0
- package/thought-chain/thought-chain.property.ts +87 -0
- package/time-ago/docs/readme.en_US.md +20 -0
- package/time-ago/docs/readme.zh_CN.md +20 -0
- package/time-ago/examples/en_US/default/default/default.component.html +9 -0
- package/time-ago/examples/en_US/default/default/default.component.scss +5 -0
- package/time-ago/examples/en_US/default/default/default.component.ts +21 -0
- package/time-ago/examples/en_US/default/default/readme.md +4 -0
- package/time-ago/examples/en_US/default/readme.md +4 -0
- package/time-ago/examples/index.ts +1 -0
- package/time-ago/examples/zh_CN/default/default/default.component.html +9 -0
- package/time-ago/examples/zh_CN/default/default/default.component.scss +5 -0
- package/time-ago/examples/zh_CN/default/default/default.component.ts +21 -0
- package/time-ago/examples/zh_CN/default/default/readme.md +4 -0
- package/time-ago/examples/zh_CN/default/readme.md +4 -0
- package/time-ago/index.ts +1 -0
- package/time-ago/ng-package.json +5 -0
- package/time-ago/public-api.ts +3 -0
- package/time-ago/style/mixin.scss +9 -0
- package/time-ago/style/param.scss +4 -0
- package/time-ago/time-ago.module.ts +8 -0
- package/time-ago/time-ago.pipe.spec.ts +76 -0
- package/time-ago/time-ago.pipe.ts +58 -0
- package/time-ago/time-ago.property.ts +6 -0
- package/time-picker/docs/readme.en_US.md +20 -0
- package/time-picker/docs/readme.zh_CN.md +20 -0
- package/time-picker/examples/en_US/default/bordered/bordered.component.html +21 -0
- package/time-picker/examples/en_US/default/bordered/bordered.component.scss +5 -0
- package/time-picker/examples/en_US/default/bordered/bordered.component.ts +13 -0
- package/time-picker/examples/en_US/default/bordered/readme.md +6 -0
- package/time-picker/examples/en_US/default/default/default.component.html +6 -0
- package/time-picker/examples/en_US/default/default/default.component.scss +5 -0
- package/time-picker/examples/en_US/default/default/default.component.ts +14 -0
- package/time-picker/examples/en_US/default/default/readme.md +7 -0
- package/time-picker/examples/en_US/default/disabled/disabled.component.html +6 -0
- package/time-picker/examples/en_US/default/disabled/disabled.component.scss +5 -0
- package/time-picker/examples/en_US/default/disabled/disabled.component.ts +13 -0
- package/time-picker/examples/en_US/default/disabled/readme.md +6 -0
- package/time-picker/examples/en_US/default/float-label/float-label.component.html +63 -0
- package/time-picker/examples/en_US/default/float-label/float-label.component.scss +16 -0
- package/time-picker/examples/en_US/default/float-label/float-label.component.ts +10 -0
- package/time-picker/examples/en_US/default/float-label/readme.md +6 -0
- package/time-picker/examples/en_US/default/hour-minute/hour-minute.component.html +6 -0
- package/time-picker/examples/en_US/default/hour-minute/hour-minute.component.scss +5 -0
- package/time-picker/examples/en_US/default/hour-minute/hour-minute.component.ts +14 -0
- package/time-picker/examples/en_US/default/hour-minute/readme.md +6 -0
- package/time-picker/examples/en_US/default/label/label.component.html +12 -0
- package/time-picker/examples/en_US/default/label/label.component.scss +5 -0
- package/time-picker/examples/en_US/default/label/label.component.ts +13 -0
- package/time-picker/examples/en_US/default/label/readme.md +7 -0
- package/time-picker/examples/en_US/default/preset/preset.component.html +6 -0
- package/time-picker/examples/en_US/default/preset/preset.component.ts +33 -0
- package/time-picker/examples/en_US/default/preset/readme.md +6 -0
- package/time-picker/examples/en_US/default/readme.md +4 -0
- package/time-picker/examples/en_US/default/required/readme.md +6 -0
- package/time-picker/examples/en_US/default/required/required.component.html +6 -0
- package/time-picker/examples/en_US/default/required/required.component.scss +5 -0
- package/time-picker/examples/en_US/default/required/required.component.ts +13 -0
- package/time-picker/examples/en_US/default/size/readme.md +6 -0
- package/time-picker/examples/en_US/default/size/size.component.html +16 -0
- package/time-picker/examples/en_US/default/size/size.component.scss +5 -0
- package/time-picker/examples/en_US/default/size/size.component.ts +17 -0
- package/time-picker/examples/en_US/default/step/readme.md +6 -0
- package/time-picker/examples/en_US/default/step/step.component.html +7 -0
- package/time-picker/examples/en_US/default/step/step.component.ts +16 -0
- package/time-picker/examples/en_US/default/use12hours/readme.md +6 -0
- package/time-picker/examples/en_US/default/use12hours/use12hours.component.html +6 -0
- package/time-picker/examples/en_US/default/use12hours/use12hours.component.scss +5 -0
- package/time-picker/examples/en_US/default/use12hours/use12hours.component.ts +14 -0
- package/time-picker/examples/en_US/default/variant/readme.md +6 -0
- package/time-picker/examples/en_US/default/variant/variant.component.html +12 -0
- package/time-picker/examples/en_US/default/variant/variant.component.scss +5 -0
- package/time-picker/examples/en_US/default/variant/variant.component.ts +10 -0
- package/time-picker/examples/index.ts +12 -0
- package/time-picker/examples/zh_CN/default/bordered/bordered.component.html +21 -0
- package/time-picker/examples/zh_CN/default/bordered/bordered.component.scss +5 -0
- package/time-picker/examples/zh_CN/default/bordered/bordered.component.ts +13 -0
- package/time-picker/examples/zh_CN/default/bordered/readme.md +6 -0
- package/time-picker/examples/zh_CN/default/default/default.component.html +6 -0
- package/time-picker/examples/zh_CN/default/default/default.component.scss +5 -0
- package/time-picker/examples/zh_CN/default/default/default.component.ts +14 -0
- package/time-picker/examples/zh_CN/default/default/readme.md +7 -0
- package/time-picker/examples/zh_CN/default/disabled/disabled.component.html +6 -0
- package/time-picker/examples/zh_CN/default/disabled/disabled.component.scss +5 -0
- package/time-picker/examples/zh_CN/default/disabled/disabled.component.ts +13 -0
- package/time-picker/examples/zh_CN/default/disabled/readme.md +6 -0
- package/time-picker/examples/zh_CN/default/float-label/float-label.component.html +63 -0
- package/time-picker/examples/zh_CN/default/float-label/float-label.component.scss +16 -0
- package/time-picker/examples/zh_CN/default/float-label/float-label.component.ts +10 -0
- package/time-picker/examples/zh_CN/default/float-label/readme.md +6 -0
- package/time-picker/examples/zh_CN/default/hour-minute/hour-minute.component.html +6 -0
- package/time-picker/examples/zh_CN/default/hour-minute/hour-minute.component.scss +5 -0
- package/time-picker/examples/zh_CN/default/hour-minute/hour-minute.component.ts +14 -0
- package/time-picker/examples/zh_CN/default/hour-minute/readme.md +6 -0
- package/time-picker/examples/zh_CN/default/label/label.component.html +12 -0
- package/time-picker/examples/zh_CN/default/label/label.component.scss +5 -0
- package/time-picker/examples/zh_CN/default/label/label.component.ts +13 -0
- package/time-picker/examples/zh_CN/default/label/readme.md +7 -0
- package/time-picker/examples/zh_CN/default/preset/preset.component.html +6 -0
- package/time-picker/examples/zh_CN/default/preset/preset.component.ts +33 -0
- package/time-picker/examples/zh_CN/default/preset/readme.md +6 -0
- package/time-picker/examples/zh_CN/default/readme.md +4 -0
- package/time-picker/examples/zh_CN/default/required/readme.md +6 -0
- package/time-picker/examples/zh_CN/default/required/required.component.html +6 -0
- package/time-picker/examples/zh_CN/default/required/required.component.scss +5 -0
- package/time-picker/examples/zh_CN/default/required/required.component.ts +13 -0
- package/time-picker/examples/zh_CN/default/size/readme.md +6 -0
- package/time-picker/examples/zh_CN/default/size/size.component.html +16 -0
- package/time-picker/examples/zh_CN/default/size/size.component.scss +5 -0
- package/time-picker/examples/zh_CN/default/size/size.component.ts +17 -0
- package/time-picker/examples/zh_CN/default/step/readme.md +6 -0
- package/time-picker/examples/zh_CN/default/step/step.component.html +7 -0
- package/time-picker/examples/zh_CN/default/step/step.component.ts +16 -0
- package/time-picker/examples/zh_CN/default/use12hours/readme.md +6 -0
- package/time-picker/examples/zh_CN/default/use12hours/use12hours.component.html +6 -0
- package/time-picker/examples/zh_CN/default/use12hours/use12hours.component.scss +5 -0
- package/time-picker/examples/zh_CN/default/use12hours/use12hours.component.ts +14 -0
- package/time-picker/examples/zh_CN/default/variant/readme.md +6 -0
- package/time-picker/examples/zh_CN/default/variant/variant.component.html +12 -0
- package/time-picker/examples/zh_CN/default/variant/variant.component.scss +5 -0
- package/time-picker/examples/zh_CN/default/variant/variant.component.ts +10 -0
- package/time-picker/index.ts +1 -0
- package/time-picker/ng-package.json +5 -0
- package/time-picker/public-api.ts +5 -0
- package/time-picker/style/mixin.scss +91 -0
- package/time-picker/style/param.scss +41 -0
- package/time-picker/time-picker-frame.component.html +20 -0
- package/time-picker/time-picker-frame.component.scss +10 -0
- package/time-picker/time-picker-frame.component.ts +339 -0
- package/time-picker/time-picker-portal.component.html +23 -0
- package/time-picker/time-picker-portal.component.scss +9 -0
- package/time-picker/time-picker-portal.component.ts +88 -0
- package/time-picker/time-picker.component.html +42 -0
- package/time-picker/time-picker.component.scss +15 -0
- package/time-picker/time-picker.component.spec.ts +454 -0
- package/time-picker/time-picker.component.ts +324 -0
- package/time-picker/time-picker.module.ts +9 -0
- package/time-picker/time-picker.property.ts +460 -0
- package/time-range/docs/readme.en_US.md +20 -0
- package/time-range/docs/readme.zh_CN.md +20 -0
- package/time-range/examples/en_US/default/default/default.component.html +5 -0
- package/time-range/examples/en_US/default/default/default.component.scss +5 -0
- package/time-range/examples/en_US/default/default/default.component.ts +12 -0
- package/time-range/examples/en_US/default/default/readme.md +6 -0
- package/time-range/examples/en_US/default/readme.md +4 -0
- package/time-range/examples/index.ts +1 -0
- package/time-range/examples/zh_CN/default/default/default.component.html +5 -0
- package/time-range/examples/zh_CN/default/default/default.component.scss +5 -0
- package/time-range/examples/zh_CN/default/default/default.component.ts +12 -0
- package/time-range/examples/zh_CN/default/default/readme.md +6 -0
- package/time-range/examples/zh_CN/default/readme.md +4 -0
- package/time-range/index.ts +1 -0
- package/time-range/ng-package.json +5 -0
- package/time-range/public-api.ts +3 -0
- package/time-range/style/mixin.scss +9 -0
- package/time-range/style/param.scss +4 -0
- package/time-range/time-range.module.ts +8 -0
- package/time-range/time-range.pipe.spec.ts +43 -0
- package/time-range/time-range.pipe.ts +42 -0
- package/time-range/time-range.property.ts +6 -0
- package/timeline/docs/readme.en_US.md +20 -0
- package/timeline/docs/readme.zh_CN.md +20 -0
- package/timeline/examples/en_US/default/color/color.component.html +1 -0
- package/timeline/examples/en_US/default/color/color.component.ts +49 -0
- package/timeline/examples/en_US/default/color/readme.md +6 -0
- package/timeline/examples/en_US/default/custom/custom.component.html +12 -0
- package/timeline/examples/en_US/default/custom/custom.component.scss +13 -0
- package/timeline/examples/en_US/default/custom/custom.component.ts +42 -0
- package/timeline/examples/en_US/default/custom/readme.md +6 -0
- package/timeline/examples/en_US/default/default/default.component.html +3 -0
- package/timeline/examples/en_US/default/default/default.component.ts +39 -0
- package/timeline/examples/en_US/default/default/readme.md +6 -0
- package/timeline/examples/en_US/default/icon/icon.component.html +3 -0
- package/timeline/examples/en_US/default/icon/icon.component.ts +50 -0
- package/timeline/examples/en_US/default/icon/readme.md +6 -0
- package/timeline/examples/en_US/default/loading/loading.component.html +3 -0
- package/timeline/examples/en_US/default/loading/loading.component.ts +38 -0
- package/timeline/examples/en_US/default/loading/readme.md +6 -0
- package/timeline/examples/en_US/default/mode/mode.component.html +14 -0
- package/timeline/examples/en_US/default/mode/mode.component.ts +44 -0
- package/timeline/examples/en_US/default/mode/readme.md +6 -0
- package/timeline/examples/en_US/default/readme.md +4 -0
- package/timeline/examples/en_US/default/size/readme.md +6 -0
- package/timeline/examples/en_US/default/size/size.component.html +1 -0
- package/timeline/examples/en_US/default/size/size.component.ts +53 -0
- package/timeline/examples/en_US/default/type/readme.md +6 -0
- package/timeline/examples/en_US/default/type/type.component.html +3 -0
- package/timeline/examples/en_US/default/type/type.component.ts +45 -0
- package/timeline/examples/index.ts +8 -0
- package/timeline/examples/zh_CN/default/color/color.component.html +1 -0
- package/timeline/examples/zh_CN/default/color/color.component.ts +49 -0
- package/timeline/examples/zh_CN/default/color/readme.md +6 -0
- package/timeline/examples/zh_CN/default/custom/custom.component.html +12 -0
- package/timeline/examples/zh_CN/default/custom/custom.component.scss +13 -0
- package/timeline/examples/zh_CN/default/custom/custom.component.ts +42 -0
- package/timeline/examples/zh_CN/default/custom/readme.md +6 -0
- package/timeline/examples/zh_CN/default/default/default.component.html +3 -0
- package/timeline/examples/zh_CN/default/default/default.component.ts +39 -0
- package/timeline/examples/zh_CN/default/default/readme.md +6 -0
- package/timeline/examples/zh_CN/default/icon/icon.component.html +3 -0
- package/timeline/examples/zh_CN/default/icon/icon.component.ts +50 -0
- package/timeline/examples/zh_CN/default/icon/readme.md +6 -0
- package/timeline/examples/zh_CN/default/loading/loading.component.html +3 -0
- package/timeline/examples/zh_CN/default/loading/loading.component.ts +38 -0
- package/timeline/examples/zh_CN/default/loading/readme.md +6 -0
- package/timeline/examples/zh_CN/default/mode/mode.component.html +14 -0
- package/timeline/examples/zh_CN/default/mode/mode.component.ts +44 -0
- package/timeline/examples/zh_CN/default/mode/readme.md +6 -0
- package/timeline/examples/zh_CN/default/readme.md +4 -0
- package/timeline/examples/zh_CN/default/size/readme.md +6 -0
- package/timeline/examples/zh_CN/default/size/size.component.html +3 -0
- package/timeline/examples/zh_CN/default/size/size.component.ts +53 -0
- package/timeline/examples/zh_CN/default/type/readme.md +6 -0
- package/timeline/examples/zh_CN/default/type/type.component.html +3 -0
- package/timeline/examples/zh_CN/default/type/type.component.ts +45 -0
- package/timeline/index.ts +1 -0
- package/timeline/ng-package.json +5 -0
- package/timeline/public-api.ts +3 -0
- package/timeline/style/mixin.scss +205 -0
- package/timeline/style/param.scss +7 -0
- package/timeline/timeline.component.html +42 -0
- package/timeline/timeline.component.scss +10 -0
- package/timeline/timeline.component.spec.ts +91 -0
- package/timeline/timeline.component.ts +44 -0
- package/timeline/timeline.module.ts +8 -0
- package/timeline/timeline.property.ts +107 -0
- package/tooltip/docs/readme.en_US.md +20 -0
- package/tooltip/docs/readme.zh_CN.md +20 -0
- package/tooltip/examples/en_US/default/default/default.component.html +23 -0
- package/tooltip/examples/en_US/default/default/default.component.scss +29 -0
- package/tooltip/examples/en_US/default/default/default.component.ts +11 -0
- package/tooltip/examples/en_US/default/default/readme.md +6 -0
- package/tooltip/examples/en_US/default/readme.md +4 -0
- package/tooltip/examples/index.ts +1 -0
- package/tooltip/examples/zh_CN/default/default/default.component.html +22 -0
- package/tooltip/examples/zh_CN/default/default/default.component.scss +29 -0
- package/tooltip/examples/zh_CN/default/default/default.component.ts +11 -0
- package/tooltip/examples/zh_CN/default/default/readme.md +6 -0
- package/tooltip/examples/zh_CN/default/readme.md +4 -0
- package/tooltip/index.ts +1 -0
- package/tooltip/ng-package.json +5 -0
- package/tooltip/public-api.ts +4 -0
- package/tooltip/style/mixin.scss +114 -0
- package/tooltip/style/param.scss +10 -0
- package/tooltip/tooltip-portal.component.html +5 -0
- package/tooltip/tooltip-portal.component.scss +10 -0
- package/tooltip/tooltip-portal.component.ts +62 -0
- package/tooltip/tooltip.directive.spec.ts +201 -0
- package/tooltip/tooltip.directive.ts +166 -0
- package/tooltip/tooltip.module.ts +8 -0
- package/tooltip/tooltip.property.ts +80 -0
- package/transfer/docs/readme.en_US.md +18 -0
- package/transfer/docs/readme.zh_CN.md +18 -0
- package/transfer/examples/en_US/default/custom/custom.component.html +19 -0
- package/transfer/examples/en_US/default/custom/custom.component.scss +12 -0
- package/transfer/examples/en_US/default/custom/custom.component.ts +22 -0
- package/transfer/examples/en_US/default/custom/readme.md +6 -0
- package/transfer/examples/en_US/default/default/default.component.html +1 -0
- package/transfer/examples/en_US/default/default/default.component.ts +17 -0
- package/transfer/examples/en_US/default/default/readme.md +6 -0
- package/transfer/examples/en_US/default/drag/drag.component.html +1 -0
- package/transfer/examples/en_US/default/drag/drag.component.ts +17 -0
- package/transfer/examples/en_US/default/drag/readme.md +6 -0
- package/transfer/examples/en_US/default/footer/footer.component.html +7 -0
- package/transfer/examples/en_US/default/footer/footer.component.ts +18 -0
- package/transfer/examples/en_US/default/footer/readme.md +6 -0
- package/transfer/examples/en_US/default/inverse/inverse.component.html +1 -0
- package/transfer/examples/en_US/default/inverse/inverse.component.ts +17 -0
- package/transfer/examples/en_US/default/inverse/readme.md +7 -0
- package/transfer/examples/en_US/default/readme.md +4 -0
- package/transfer/examples/en_US/default/search/readme.md +7 -0
- package/transfer/examples/en_US/default/search/search.component.html +51 -0
- package/transfer/examples/en_US/default/search/search.component.ts +77 -0
- package/transfer/examples/en_US/default/search/search.service.ts +75 -0
- package/transfer/examples/en_US/default/table/readme.md +6 -0
- package/transfer/examples/en_US/default/table/table.component.html +10 -0
- package/transfer/examples/en_US/default/table/table.component.ts +26 -0
- package/transfer/examples/en_US/default/table/table.service.ts +75 -0
- package/transfer/examples/en_US/default/tree/readme.md +6 -0
- package/transfer/examples/en_US/default/tree/tree.component.html +1 -0
- package/transfer/examples/en_US/default/tree/tree.component.ts +29 -0
- package/transfer/examples/index.ts +8 -0
- package/transfer/examples/zh_CN/default/custom/custom.component.html +19 -0
- package/transfer/examples/zh_CN/default/custom/custom.component.scss +12 -0
- package/transfer/examples/zh_CN/default/custom/custom.component.ts +22 -0
- package/transfer/examples/zh_CN/default/custom/readme.md +6 -0
- package/transfer/examples/zh_CN/default/default/default.component.html +1 -0
- package/transfer/examples/zh_CN/default/default/default.component.ts +17 -0
- package/transfer/examples/zh_CN/default/default/readme.md +6 -0
- package/transfer/examples/zh_CN/default/drag/drag.component.html +1 -0
- package/transfer/examples/zh_CN/default/drag/drag.component.ts +17 -0
- package/transfer/examples/zh_CN/default/drag/readme.md +6 -0
- package/transfer/examples/zh_CN/default/footer/footer.component.html +7 -0
- package/transfer/examples/zh_CN/default/footer/footer.component.ts +18 -0
- package/transfer/examples/zh_CN/default/footer/readme.md +6 -0
- package/transfer/examples/zh_CN/default/inverse/inverse.component.html +1 -0
- package/transfer/examples/zh_CN/default/inverse/inverse.component.ts +17 -0
- package/transfer/examples/zh_CN/default/inverse/readme.md +7 -0
- package/transfer/examples/zh_CN/default/readme.md +4 -0
- package/transfer/examples/zh_CN/default/search/readme.md +7 -0
- package/transfer/examples/zh_CN/default/search/search.component.html +51 -0
- package/transfer/examples/zh_CN/default/search/search.component.ts +77 -0
- package/transfer/examples/zh_CN/default/search/search.service.ts +75 -0
- package/transfer/examples/zh_CN/default/table/readme.md +6 -0
- package/transfer/examples/zh_CN/default/table/table.component.html +10 -0
- package/transfer/examples/zh_CN/default/table/table.component.ts +25 -0
- package/transfer/examples/zh_CN/default/table/table.service.ts +75 -0
- package/transfer/examples/zh_CN/default/tree/readme.md +6 -0
- package/transfer/examples/zh_CN/default/tree/tree.component.html +1 -0
- package/transfer/examples/zh_CN/default/tree/tree.component.ts +29 -0
- package/transfer/index.ts +1 -0
- package/transfer/ng-package.json +5 -0
- package/transfer/public-api.ts +3 -0
- package/transfer/style/mixin.scss +132 -0
- package/transfer/style/param.scss +4 -0
- package/transfer/transfer.component.html +180 -0
- package/transfer/transfer.component.scss +14 -0
- package/transfer/transfer.component.spec.ts +341 -0
- package/transfer/transfer.component.ts +703 -0
- package/transfer/transfer.module.ts +8 -0
- package/transfer/transfer.property.ts +221 -0
- package/tree/docs/readme.en_US.md +20 -0
- package/tree/docs/readme.zh_CN.md +20 -0
- package/tree/examples/en_US/default/activated/activated.component.html +8 -0
- package/tree/examples/en_US/default/activated/activated.component.ts +36 -0
- package/tree/examples/en_US/default/activated/readme.md +7 -0
- package/tree/examples/en_US/default/checkbox/checkbox.component.html +1 -0
- package/tree/examples/en_US/default/checkbox/checkbox.component.ts +31 -0
- package/tree/examples/en_US/default/checkbox/readme.md +6 -0
- package/tree/examples/en_US/default/control/control.component.html +15 -0
- package/tree/examples/en_US/default/control/control.component.scss +8 -0
- package/tree/examples/en_US/default/control/control.component.ts +55 -0
- package/tree/examples/en_US/default/control/readme.md +6 -0
- package/tree/examples/en_US/default/custom/custom.component.html +11 -0
- package/tree/examples/en_US/default/custom/custom.component.scss +12 -0
- package/tree/examples/en_US/default/custom/custom.component.ts +33 -0
- package/tree/examples/en_US/default/custom/readme.md +6 -0
- package/tree/examples/en_US/default/default/default.component.html +1 -0
- package/tree/examples/en_US/default/default/default.component.ts +31 -0
- package/tree/examples/en_US/default/default/readme.md +4 -0
- package/tree/examples/en_US/default/drag/drag.component.html +8 -0
- package/tree/examples/en_US/default/drag/drag.component.ts +44 -0
- package/tree/examples/en_US/default/drag/readme.md +6 -0
- package/tree/examples/en_US/default/height/height.component.html +9 -0
- package/tree/examples/en_US/default/height/height.component.scss +8 -0
- package/tree/examples/en_US/default/height/height.component.ts +79 -0
- package/tree/examples/en_US/default/height/readme.md +7 -0
- package/tree/examples/en_US/default/icon/icon.component.html +9 -0
- package/tree/examples/en_US/default/icon/icon.component.ts +32 -0
- package/tree/examples/en_US/default/icon/readme.md +6 -0
- package/tree/examples/en_US/default/lazy/lazy.component.html +1 -0
- package/tree/examples/en_US/default/lazy/lazy.component.ts +47 -0
- package/tree/examples/en_US/default/lazy/readme.md +6 -0
- package/tree/examples/en_US/default/line/line.component.html +1 -0
- package/tree/examples/en_US/default/line/line.component.ts +47 -0
- package/tree/examples/en_US/default/line/readme.md +6 -0
- package/tree/examples/en_US/default/open/open.component.html +1 -0
- package/tree/examples/en_US/default/open/open.component.ts +31 -0
- package/tree/examples/en_US/default/open/readme.md +6 -0
- package/tree/examples/en_US/default/readme.md +4 -0
- package/tree/examples/en_US/default/sort/readme.md +7 -0
- package/tree/examples/en_US/default/sort/sort.component.html +8 -0
- package/tree/examples/en_US/default/sort/sort.component.ts +63 -0
- package/tree/examples/en_US/default/status/readme.md +6 -0
- package/tree/examples/en_US/default/status/status.component.html +1 -0
- package/tree/examples/en_US/default/status/status.component.ts +31 -0
- package/tree/examples/en_US/default/virtual-scroll/readme.md +7 -0
- package/tree/examples/en_US/default/virtual-scroll/virtual-scroll.component.html +17 -0
- package/tree/examples/en_US/default/virtual-scroll/virtual-scroll.component.ts +130 -0
- package/tree/examples/index.ts +14 -0
- package/tree/examples/zh_CN/default/activated/activated.component.html +8 -0
- package/tree/examples/zh_CN/default/activated/activated.component.ts +36 -0
- package/tree/examples/zh_CN/default/activated/readme.md +7 -0
- package/tree/examples/zh_CN/default/checkbox/checkbox.component.html +1 -0
- package/tree/examples/zh_CN/default/checkbox/checkbox.component.ts +31 -0
- package/tree/examples/zh_CN/default/checkbox/readme.md +6 -0
- package/tree/examples/zh_CN/default/control/control.component.html +15 -0
- package/tree/examples/zh_CN/default/control/control.component.scss +8 -0
- package/tree/examples/zh_CN/default/control/control.component.ts +55 -0
- package/tree/examples/zh_CN/default/control/readme.md +6 -0
- package/tree/examples/zh_CN/default/custom/custom.component.html +11 -0
- package/tree/examples/zh_CN/default/custom/custom.component.scss +12 -0
- package/tree/examples/zh_CN/default/custom/custom.component.ts +33 -0
- package/tree/examples/zh_CN/default/custom/readme.md +6 -0
- package/tree/examples/zh_CN/default/default/default.component.html +1 -0
- package/tree/examples/zh_CN/default/default/default.component.ts +31 -0
- package/tree/examples/zh_CN/default/default/readme.md +4 -0
- package/tree/examples/zh_CN/default/drag/drag.component.html +8 -0
- package/tree/examples/zh_CN/default/drag/drag.component.ts +44 -0
- package/tree/examples/zh_CN/default/drag/readme.md +6 -0
- package/tree/examples/zh_CN/default/height/height.component.html +9 -0
- package/tree/examples/zh_CN/default/height/height.component.scss +8 -0
- package/tree/examples/zh_CN/default/height/height.component.ts +79 -0
- package/tree/examples/zh_CN/default/height/readme.md +7 -0
- package/tree/examples/zh_CN/default/icon/icon.component.html +9 -0
- package/tree/examples/zh_CN/default/icon/icon.component.ts +32 -0
- package/tree/examples/zh_CN/default/icon/readme.md +6 -0
- package/tree/examples/zh_CN/default/lazy/lazy.component.html +1 -0
- package/tree/examples/zh_CN/default/lazy/lazy.component.ts +47 -0
- package/tree/examples/zh_CN/default/lazy/readme.md +6 -0
- package/tree/examples/zh_CN/default/line/line.component.html +1 -0
- package/tree/examples/zh_CN/default/line/line.component.ts +47 -0
- package/tree/examples/zh_CN/default/line/readme.md +6 -0
- package/tree/examples/zh_CN/default/open/open.component.html +1 -0
- package/tree/examples/zh_CN/default/open/open.component.ts +31 -0
- package/tree/examples/zh_CN/default/open/readme.md +6 -0
- package/tree/examples/zh_CN/default/readme.md +4 -0
- package/tree/examples/zh_CN/default/sort/readme.md +7 -0
- package/tree/examples/zh_CN/default/sort/sort.component.html +8 -0
- package/tree/examples/zh_CN/default/sort/sort.component.ts +63 -0
- package/tree/examples/zh_CN/default/status/readme.md +6 -0
- package/tree/examples/zh_CN/default/status/status.component.html +1 -0
- package/tree/examples/zh_CN/default/status/status.component.ts +31 -0
- package/tree/examples/zh_CN/default/virtual-scroll/readme.md +7 -0
- package/tree/examples/zh_CN/default/virtual-scroll/virtual-scroll.component.html +17 -0
- package/tree/examples/zh_CN/default/virtual-scroll/virtual-scroll.component.ts +130 -0
- package/tree/index.ts +1 -0
- package/tree/ng-package.json +5 -0
- package/tree/public-api.ts +4 -0
- package/tree/style/mixin.scss +170 -0
- package/tree/style/param.scss +6 -0
- package/tree/tree-node.component.html +87 -0
- package/tree/tree-node.component.scss +19 -0
- package/tree/tree-node.component.ts +332 -0
- package/tree/tree.component.html +99 -0
- package/tree/tree.component.scss +10 -0
- package/tree/tree.component.spec.ts +581 -0
- package/tree/tree.component.ts +726 -0
- package/tree/tree.module.ts +9 -0
- package/tree/tree.property.ts +474 -0
- package/tree/tree.service.ts +94 -0
- package/tree/tree.token.ts +39 -0
- package/tree-file/docs/readme.en_US.md +22 -0
- package/tree-file/docs/readme.zh_CN.md +22 -0
- package/tree-file/examples/en_US/default/content/content.component.html +1 -0
- package/tree-file/examples/en_US/default/content/content.component.scss +8 -0
- package/tree-file/examples/en_US/default/content/content.component.ts +16 -0
- package/tree-file/examples/en_US/default/content/readme.md +6 -0
- package/tree-file/examples/en_US/default/default/default.component.html +2 -0
- package/tree-file/examples/en_US/default/default/default.component.scss +8 -0
- package/tree-file/examples/en_US/default/default/default.component.ts +274 -0
- package/tree-file/examples/en_US/default/default/readme.md +6 -0
- package/tree-file/examples/en_US/default/readme.md +4 -0
- package/tree-file/examples/index.ts +2 -0
- package/tree-file/examples/zh_CN/default/content/content.component.html +1 -0
- package/tree-file/examples/zh_CN/default/content/content.component.scss +8 -0
- package/tree-file/examples/zh_CN/default/content/content.component.ts +16 -0
- package/tree-file/examples/zh_CN/default/content/readme.md +6 -0
- package/tree-file/examples/zh_CN/default/default/default.component.html +2 -0
- package/tree-file/examples/zh_CN/default/default/default.component.scss +8 -0
- package/tree-file/examples/zh_CN/default/default/default.component.ts +274 -0
- package/tree-file/examples/zh_CN/default/default/readme.md +6 -0
- package/tree-file/examples/zh_CN/default/readme.md +4 -0
- package/tree-file/index.ts +1 -0
- package/tree-file/ng-package.json +5 -0
- package/tree-file/public-api.ts +3 -0
- package/tree-file/style/mixin.scss +89 -0
- package/tree-file/style/param.scss +6 -0
- package/tree-file/tree-file.component.html +44 -0
- package/tree-file/tree-file.component.scss +10 -0
- package/tree-file/tree-file.component.spec.ts +190 -0
- package/tree-file/tree-file.component.ts +125 -0
- package/tree-file/tree-file.module.ts +8 -0
- package/tree-file/tree-file.property.ts +140 -0
- package/tree-select/docs/readme.en_US.md +20 -0
- package/tree-select/docs/readme.zh_CN.md +20 -0
- package/tree-select/examples/en_US/default/async/async.component.html +18 -0
- package/tree-select/examples/en_US/default/async/async.component.scss +5 -0
- package/tree-select/examples/en_US/default/async/async.component.ts +54 -0
- package/tree-select/examples/en_US/default/async/readme.md +6 -0
- package/tree-select/examples/en_US/default/bordered/bordered.component.html +15 -0
- package/tree-select/examples/en_US/default/bordered/bordered.component.scss +5 -0
- package/tree-select/examples/en_US/default/bordered/bordered.component.ts +32 -0
- package/tree-select/examples/en_US/default/bordered/readme.md +6 -0
- package/tree-select/examples/en_US/default/custom/custom.component.html +34 -0
- package/tree-select/examples/en_US/default/custom/custom.component.scss +16 -0
- package/tree-select/examples/en_US/default/custom/custom.component.ts +33 -0
- package/tree-select/examples/en_US/default/custom/readme.md +6 -0
- package/tree-select/examples/en_US/default/default/default.component.html +6 -0
- package/tree-select/examples/en_US/default/default/default.component.scss +5 -0
- package/tree-select/examples/en_US/default/default/default.component.ts +38 -0
- package/tree-select/examples/en_US/default/default/readme.md +6 -0
- package/tree-select/examples/en_US/default/disabled/disabled.component.html +6 -0
- package/tree-select/examples/en_US/default/disabled/disabled.component.scss +5 -0
- package/tree-select/examples/en_US/default/disabled/disabled.component.ts +33 -0
- package/tree-select/examples/en_US/default/disabled/readme.md +6 -0
- package/tree-select/examples/en_US/default/float-label/float-label.component.html +63 -0
- package/tree-select/examples/en_US/default/float-label/float-label.component.scss +16 -0
- package/tree-select/examples/en_US/default/float-label/float-label.component.ts +42 -0
- package/tree-select/examples/en_US/default/float-label/readme.md +6 -0
- package/tree-select/examples/en_US/default/label/label.component.html +12 -0
- package/tree-select/examples/en_US/default/label/label.component.scss +5 -0
- package/tree-select/examples/en_US/default/label/label.component.ts +31 -0
- package/tree-select/examples/en_US/default/label/readme.md +6 -0
- package/tree-select/examples/en_US/default/leaf/leaf.component.html +20 -0
- package/tree-select/examples/en_US/default/leaf/leaf.component.scss +5 -0
- package/tree-select/examples/en_US/default/leaf/leaf.component.ts +38 -0
- package/tree-select/examples/en_US/default/leaf/readme.md +6 -0
- package/tree-select/examples/en_US/default/multiple/multiple.component.html +78 -0
- package/tree-select/examples/en_US/default/multiple/multiple.component.scss +5 -0
- package/tree-select/examples/en_US/default/multiple/multiple.component.ts +49 -0
- package/tree-select/examples/en_US/default/multiple/readme.md +6 -0
- package/tree-select/examples/en_US/default/path/path.component.html +28 -0
- package/tree-select/examples/en_US/default/path/path.component.scss +5 -0
- package/tree-select/examples/en_US/default/path/path.component.ts +39 -0
- package/tree-select/examples/en_US/default/path/readme.md +6 -0
- package/tree-select/examples/en_US/default/readme.md +4 -0
- package/tree-select/examples/en_US/default/required/readme.md +6 -0
- package/tree-select/examples/en_US/default/required/required.component.html +6 -0
- package/tree-select/examples/en_US/default/required/required.component.scss +5 -0
- package/tree-select/examples/en_US/default/required/required.component.ts +32 -0
- package/tree-select/examples/en_US/default/scroll/readme.md +6 -0
- package/tree-select/examples/en_US/default/scroll/scroll.component.html +1 -0
- package/tree-select/examples/en_US/default/scroll/scroll.component.ts +33 -0
- package/tree-select/examples/en_US/default/search/readme.md +7 -0
- package/tree-select/examples/en_US/default/search/search.component.html +44 -0
- package/tree-select/examples/en_US/default/search/search.component.scss +5 -0
- package/tree-select/examples/en_US/default/search/search.component.ts +87 -0
- package/tree-select/examples/en_US/default/size/readme.md +6 -0
- package/tree-select/examples/en_US/default/size/size.component.html +19 -0
- package/tree-select/examples/en_US/default/size/size.component.scss +5 -0
- package/tree-select/examples/en_US/default/size/size.component.ts +33 -0
- package/tree-select/examples/en_US/default/variant/readme.md +6 -0
- package/tree-select/examples/en_US/default/variant/variant.component.html +12 -0
- package/tree-select/examples/en_US/default/variant/variant.component.scss +5 -0
- package/tree-select/examples/en_US/default/variant/variant.component.ts +32 -0
- package/tree-select/examples/index.ts +15 -0
- package/tree-select/examples/zh_CN/default/async/async.component.html +18 -0
- package/tree-select/examples/zh_CN/default/async/async.component.scss +5 -0
- package/tree-select/examples/zh_CN/default/async/async.component.ts +54 -0
- package/tree-select/examples/zh_CN/default/async/readme.md +6 -0
- package/tree-select/examples/zh_CN/default/bordered/bordered.component.html +15 -0
- package/tree-select/examples/zh_CN/default/bordered/bordered.component.scss +5 -0
- package/tree-select/examples/zh_CN/default/bordered/bordered.component.ts +32 -0
- package/tree-select/examples/zh_CN/default/bordered/readme.md +6 -0
- package/tree-select/examples/zh_CN/default/custom/custom.component.html +34 -0
- package/tree-select/examples/zh_CN/default/custom/custom.component.scss +16 -0
- package/tree-select/examples/zh_CN/default/custom/custom.component.ts +33 -0
- package/tree-select/examples/zh_CN/default/custom/readme.md +6 -0
- package/tree-select/examples/zh_CN/default/default/default.component.html +6 -0
- package/tree-select/examples/zh_CN/default/default/default.component.scss +5 -0
- package/tree-select/examples/zh_CN/default/default/default.component.ts +38 -0
- package/tree-select/examples/zh_CN/default/default/readme.md +6 -0
- package/tree-select/examples/zh_CN/default/disabled/disabled.component.html +6 -0
- package/tree-select/examples/zh_CN/default/disabled/disabled.component.scss +5 -0
- package/tree-select/examples/zh_CN/default/disabled/disabled.component.ts +33 -0
- package/tree-select/examples/zh_CN/default/disabled/readme.md +6 -0
- package/tree-select/examples/zh_CN/default/float-label/float-label.component.html +63 -0
- package/tree-select/examples/zh_CN/default/float-label/float-label.component.scss +16 -0
- package/tree-select/examples/zh_CN/default/float-label/float-label.component.ts +42 -0
- package/tree-select/examples/zh_CN/default/float-label/readme.md +6 -0
- package/tree-select/examples/zh_CN/default/label/label.component.html +12 -0
- package/tree-select/examples/zh_CN/default/label/label.component.scss +5 -0
- package/tree-select/examples/zh_CN/default/label/label.component.ts +31 -0
- package/tree-select/examples/zh_CN/default/label/readme.md +6 -0
- package/tree-select/examples/zh_CN/default/leaf/leaf.component.html +20 -0
- package/tree-select/examples/zh_CN/default/leaf/leaf.component.scss +5 -0
- package/tree-select/examples/zh_CN/default/leaf/leaf.component.ts +38 -0
- package/tree-select/examples/zh_CN/default/leaf/readme.md +6 -0
- package/tree-select/examples/zh_CN/default/multiple/multiple.component.html +78 -0
- package/tree-select/examples/zh_CN/default/multiple/multiple.component.scss +5 -0
- package/tree-select/examples/zh_CN/default/multiple/multiple.component.ts +49 -0
- package/tree-select/examples/zh_CN/default/multiple/readme.md +6 -0
- package/tree-select/examples/zh_CN/default/path/path.component.html +28 -0
- package/tree-select/examples/zh_CN/default/path/path.component.scss +5 -0
- package/tree-select/examples/zh_CN/default/path/path.component.ts +39 -0
- package/tree-select/examples/zh_CN/default/path/readme.md +6 -0
- package/tree-select/examples/zh_CN/default/readme.md +4 -0
- package/tree-select/examples/zh_CN/default/required/readme.md +6 -0
- package/tree-select/examples/zh_CN/default/required/required.component.html +6 -0
- package/tree-select/examples/zh_CN/default/required/required.component.scss +5 -0
- package/tree-select/examples/zh_CN/default/required/required.component.ts +32 -0
- package/tree-select/examples/zh_CN/default/scroll/readme.md +6 -0
- package/tree-select/examples/zh_CN/default/scroll/scroll.component.html +1 -0
- package/tree-select/examples/zh_CN/default/scroll/scroll.component.ts +29 -0
- package/tree-select/examples/zh_CN/default/search/readme.md +7 -0
- package/tree-select/examples/zh_CN/default/search/search.component.html +44 -0
- package/tree-select/examples/zh_CN/default/search/search.component.scss +5 -0
- package/tree-select/examples/zh_CN/default/search/search.component.ts +87 -0
- package/tree-select/examples/zh_CN/default/size/readme.md +6 -0
- package/tree-select/examples/zh_CN/default/size/size.component.html +19 -0
- package/tree-select/examples/zh_CN/default/size/size.component.scss +5 -0
- package/tree-select/examples/zh_CN/default/size/size.component.ts +33 -0
- package/tree-select/examples/zh_CN/default/variant/readme.md +6 -0
- package/tree-select/examples/zh_CN/default/variant/variant.component.html +12 -0
- package/tree-select/examples/zh_CN/default/variant/variant.component.scss +5 -0
- package/tree-select/examples/zh_CN/default/variant/variant.component.ts +32 -0
- package/tree-select/index.ts +1 -0
- package/tree-select/ng-package.json +5 -0
- package/tree-select/public-api.ts +4 -0
- package/tree-select/style/mixin.scss +153 -0
- package/tree-select/style/param.scss +39 -0
- package/tree-select/tree-select-portal.component.html +32 -0
- package/tree-select/tree-select-portal.component.scss +12 -0
- package/tree-select/tree-select-portal.component.ts +99 -0
- package/tree-select/tree-select.component.html +95 -0
- package/tree-select/tree-select.component.scss +19 -0
- package/tree-select/tree-select.component.spec.ts +537 -0
- package/tree-select/tree-select.component.ts +805 -0
- package/tree-select/tree-select.module.ts +9 -0
- package/tree-select/tree-select.property.ts +559 -0
- package/tsconfig.json +24 -0
- package/tsconfig.lib.json +29 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +9 -0
- package/typography/docs/readme.en_US.md +21 -0
- package/typography/docs/readme.zh_CN.md +21 -0
- package/typography/examples/en_US/default/default/default.component.html +1 -0
- package/typography/examples/en_US/default/default/default.component.ts +11 -0
- package/typography/examples/en_US/default/default/readme.md +6 -0
- package/typography/examples/en_US/default/line-height/line-height.component.html +27 -0
- package/typography/examples/en_US/default/line-height/line-height.component.ts +11 -0
- package/typography/examples/en_US/default/line-height/readme.md +6 -0
- package/typography/examples/en_US/default/readme.md +4 -0
- package/typography/examples/en_US/default/size/readme.md +6 -0
- package/typography/examples/en_US/default/size/size.component.html +30 -0
- package/typography/examples/en_US/default/size/size.component.ts +7 -0
- package/typography/examples/index.ts +3 -0
- package/typography/examples/zh_CN/default/default/default.component.html +1 -0
- package/typography/examples/zh_CN/default/default/default.component.ts +13 -0
- package/typography/examples/zh_CN/default/default/readme.md +6 -0
- package/typography/examples/zh_CN/default/line-height/line-height.component.html +27 -0
- package/typography/examples/zh_CN/default/line-height/line-height.component.ts +9 -0
- package/typography/examples/zh_CN/default/line-height/readme.md +6 -0
- package/typography/examples/zh_CN/default/readme.md +4 -0
- package/typography/examples/zh_CN/default/size/readme.md +6 -0
- package/typography/examples/zh_CN/default/size/size.component.html +30 -0
- package/typography/examples/zh_CN/default/size/size.component.ts +7 -0
- package/typography/index.ts +1 -0
- package/typography/ng-package.json +5 -0
- package/typography/public-api.ts +3 -0
- package/typography/style/index.scss +10 -0
- package/typography/style/mixin.scss +52 -0
- package/typography/style/param.scss +4 -0
- package/typography/typography.component.html +21 -0
- package/typography/typography.component.spec.ts +116 -0
- package/typography/typography.component.ts +32 -0
- package/typography/typography.module.ts +8 -0
- package/typography/typography.property.ts +28 -0
- package/upload/docs/readme.en_US.md +20 -0
- package/upload/docs/readme.zh_CN.md +20 -0
- package/upload/drag-overlay.component.html +23 -0
- package/upload/drag-overlay.component.scss +15 -0
- package/upload/drag-overlay.component.ts +20 -0
- package/upload/drag-overlay.service.ts +86 -0
- package/upload/examples/en_US/default/custom/custom.component.html +18 -0
- package/upload/examples/en_US/default/custom/custom.component.ts +32 -0
- package/upload/examples/en_US/default/custom/readme.md +6 -0
- package/upload/examples/en_US/default/default/default.component.html +1 -0
- package/upload/examples/en_US/default/default/default.component.ts +9 -0
- package/upload/examples/en_US/default/default/readme.md +8 -0
- package/upload/examples/en_US/default/disabled/disabled.component.html +1 -0
- package/upload/examples/en_US/default/disabled/disabled.component.ts +9 -0
- package/upload/examples/en_US/default/disabled/readme.md +9 -0
- package/upload/examples/en_US/default/drop/drop.component.html +41 -0
- package/upload/examples/en_US/default/drop/drop.component.scss +25 -0
- package/upload/examples/en_US/default/drop/drop.component.ts +24 -0
- package/upload/examples/en_US/default/drop/readme.md +10 -0
- package/upload/examples/en_US/default/img/img.component.html +21 -0
- package/upload/examples/en_US/default/img/img.component.scss +9 -0
- package/upload/examples/en_US/default/img/img.component.ts +24 -0
- package/upload/examples/en_US/default/img/readme.md +6 -0
- package/upload/examples/en_US/default/readme.md +4 -0
- package/upload/examples/index.ts +5 -0
- package/upload/examples/zh_CN/default/custom/custom.component.html +18 -0
- package/upload/examples/zh_CN/default/custom/custom.component.ts +32 -0
- package/upload/examples/zh_CN/default/custom/readme.md +6 -0
- package/upload/examples/zh_CN/default/default/default.component.html +1 -0
- package/upload/examples/zh_CN/default/default/default.component.ts +9 -0
- package/upload/examples/zh_CN/default/default/readme.md +8 -0
- package/upload/examples/zh_CN/default/disabled/disabled.component.html +1 -0
- package/upload/examples/zh_CN/default/disabled/disabled.component.ts +9 -0
- package/upload/examples/zh_CN/default/disabled/readme.md +9 -0
- package/upload/examples/zh_CN/default/drop/drop.component.html +41 -0
- package/upload/examples/zh_CN/default/drop/drop.component.scss +25 -0
- package/upload/examples/zh_CN/default/drop/drop.component.ts +24 -0
- package/upload/examples/zh_CN/default/drop/readme.md +10 -0
- package/upload/examples/zh_CN/default/img/img.component.html +21 -0
- package/upload/examples/zh_CN/default/img/img.component.scss +9 -0
- package/upload/examples/zh_CN/default/img/img.component.ts +24 -0
- package/upload/examples/zh_CN/default/img/readme.md +6 -0
- package/upload/examples/zh_CN/default/readme.md +4 -0
- package/upload/index.ts +1 -0
- package/upload/ng-package.json +5 -0
- package/upload/public-api.ts +5 -0
- package/upload/style/mixin.scss +396 -0
- package/upload/style/param.scss +6 -0
- package/upload/upload-portal.component.html +28 -0
- package/upload/upload-portal.component.scss +15 -0
- package/upload/upload-portal.component.ts +238 -0
- package/upload/upload.component.html +115 -0
- package/upload/upload.component.scss +10 -0
- package/upload/upload.component.spec.ts +322 -0
- package/upload/upload.component.ts +374 -0
- package/upload/upload.module.ts +8 -0
- package/upload/upload.property.ts +187 -0
- package/watermark/docs/readme.en_US.md +20 -0
- package/watermark/docs/readme.zh_CN.md +20 -0
- package/watermark/examples/en_US/default/custom/custom.component.html +10 -0
- package/watermark/examples/en_US/default/custom/custom.component.scss +10 -0
- package/watermark/examples/en_US/default/custom/custom.component.ts +10 -0
- package/watermark/examples/en_US/default/custom/readme.md +8 -0
- package/watermark/examples/en_US/default/default/default.component.html +5 -0
- package/watermark/examples/en_US/default/default/default.component.scss +10 -0
- package/watermark/examples/en_US/default/default/default.component.ts +11 -0
- package/watermark/examples/en_US/default/default/readme.md +7 -0
- package/watermark/examples/en_US/default/image/image.component.html +5 -0
- package/watermark/examples/en_US/default/image/image.component.scss +10 -0
- package/watermark/examples/en_US/default/image/image.component.ts +10 -0
- package/watermark/examples/en_US/default/image/readme.md +7 -0
- package/watermark/examples/en_US/default/image-text/image-text.component.html +10 -0
- package/watermark/examples/en_US/default/image-text/image-text.component.scss +10 -0
- package/watermark/examples/en_US/default/image-text/image-text.component.ts +10 -0
- package/watermark/examples/en_US/default/image-text/readme.md +7 -0
- package/watermark/examples/en_US/default/readme.md +4 -0
- package/watermark/examples/index.ts +4 -0
- package/watermark/examples/zh_CN/default/custom/custom.component.html +10 -0
- package/watermark/examples/zh_CN/default/custom/custom.component.scss +10 -0
- package/watermark/examples/zh_CN/default/custom/custom.component.ts +10 -0
- package/watermark/examples/zh_CN/default/custom/readme.md +8 -0
- package/watermark/examples/zh_CN/default/default/default.component.html +5 -0
- package/watermark/examples/zh_CN/default/default/default.component.scss +10 -0
- package/watermark/examples/zh_CN/default/default/default.component.ts +11 -0
- package/watermark/examples/zh_CN/default/default/readme.md +7 -0
- package/watermark/examples/zh_CN/default/image/image.component.html +5 -0
- package/watermark/examples/zh_CN/default/image/image.component.scss +10 -0
- package/watermark/examples/zh_CN/default/image/image.component.ts +10 -0
- package/watermark/examples/zh_CN/default/image/readme.md +7 -0
- package/watermark/examples/zh_CN/default/image-text/image-text.component.html +10 -0
- package/watermark/examples/zh_CN/default/image-text/image-text.component.scss +10 -0
- package/watermark/examples/zh_CN/default/image-text/image-text.component.ts +10 -0
- package/watermark/examples/zh_CN/default/image-text/readme.md +7 -0
- package/watermark/examples/zh_CN/default/readme.md +4 -0
- package/watermark/index.ts +1 -0
- package/watermark/ng-package.json +5 -0
- package/watermark/public-api.ts +3 -0
- package/watermark/style/mixin.scss +16 -0
- package/watermark/style/param.scss +4 -0
- package/watermark/watermark.component.html +11 -0
- package/watermark/watermark.component.scss +10 -0
- package/watermark/watermark.component.ts +147 -0
- package/watermark/watermark.module.ts +8 -0
- package/watermark/watermark.property.ts +239 -0
- package/welcome/docs/readme.en_US.md +20 -0
- package/welcome/docs/readme.zh_CN.md +20 -0
- package/welcome/examples/en_US/default/default/default.component.html +7 -0
- package/welcome/examples/en_US/default/default/default.component.scss +7 -0
- package/welcome/examples/en_US/default/default/default.component.ts +10 -0
- package/welcome/examples/en_US/default/default/readme.md +6 -0
- package/welcome/examples/en_US/default/style/readme.md +6 -0
- package/welcome/examples/en_US/default/style/style.component.html +23 -0
- package/welcome/examples/en_US/default/style/style.component.scss +8 -0
- package/welcome/examples/en_US/default/style/style.component.ts +10 -0
- package/welcome/examples/en_US/default/variant/readme.md +6 -0
- package/welcome/examples/en_US/default/variant/variant.component.html +23 -0
- package/welcome/examples/en_US/default/variant/variant.component.scss +7 -0
- package/welcome/examples/en_US/default/variant/variant.component.ts +10 -0
- package/welcome/examples/en_US/readme.md +4 -0
- package/welcome/examples/index.ts +3 -0
- package/welcome/examples/zh_CN/default/default/default.component.html +7 -0
- package/welcome/examples/zh_CN/default/default/default.component.scss +7 -0
- package/welcome/examples/zh_CN/default/default/default.component.ts +10 -0
- package/welcome/examples/zh_CN/default/default/readme.md +6 -0
- package/welcome/examples/zh_CN/default/style/readme.md +6 -0
- package/welcome/examples/zh_CN/default/style/style.component.html +23 -0
- package/welcome/examples/zh_CN/default/style/style.component.scss +8 -0
- package/welcome/examples/zh_CN/default/style/style.component.ts +10 -0
- package/welcome/examples/zh_CN/default/variant/readme.md +6 -0
- package/welcome/examples/zh_CN/default/variant/variant.component.html +23 -0
- package/welcome/examples/zh_CN/default/variant/variant.component.scss +7 -0
- package/welcome/examples/zh_CN/default/variant/variant.component.ts +10 -0
- package/welcome/examples/zh_CN/readme.md +4 -0
- package/welcome/index.ts +1 -0
- package/welcome/ng-package.json +5 -0
- package/welcome/public-api.ts +3 -0
- package/welcome/style/mixin.scss +39 -0
- package/welcome/style/param.scss +5 -0
- package/welcome/welcome.component.html +23 -0
- package/welcome/welcome.component.scss +9 -0
- package/welcome/welcome.component.ts +16 -0
- package/welcome/welcome.module.ts +8 -0
- package/welcome/welcome.property.ts +48 -0
- package/affix/index.d.ts +0 -60
- package/alert/index.d.ts +0 -445
- package/anchor/index.d.ts +0 -188
- package/api/index.d.ts +0 -22
- package/attachments/index.d.ts +0 -276
- package/auto-complete/index.d.ts +0 -567
- package/avatar/index.d.ts +0 -262
- package/back-top/index.d.ts +0 -77
- package/badge/index.d.ts +0 -155
- package/base-form/index.d.ts +0 -251
- package/bubble/index.d.ts +0 -230
- package/button/index.d.ts +0 -382
- package/calendar/index.d.ts +0 -196
- package/card/index.d.ts +0 -111
- package/carousel/index.d.ts +0 -330
- package/cascade/index.d.ts +0 -535
- package/checkbox/index.d.ts +0 -354
- package/collapse/index.d.ts +0 -197
- package/color/index.d.ts +0 -82
- package/color-picker/index.d.ts +0 -542
- package/comment/index.d.ts +0 -160
- package/container/index.d.ts +0 -145
- package/contextmenu/index.d.ts +0 -176
- package/core/index.d.ts +0 -2031
- package/coversations/index.d.ts +0 -137
- package/crumb/index.d.ts +0 -93
- package/date-picker/index.d.ts +0 -2170
- package/description/index.d.ts +0 -236
- package/dialog/index.d.ts +0 -622
- package/divider/index.d.ts +0 -113
- package/doc/index.d.ts +0 -22
- package/drag/index.d.ts +0 -47
- package/drawer/index.d.ts +0 -244
- package/dropdown/index.d.ts +0 -236
- package/empty/index.d.ts +0 -62
- package/examples/index.d.ts +0 -22
- package/fesm2022/ng-nest-ui-affix.mjs +0 -80
- package/fesm2022/ng-nest-ui-affix.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-alert.mjs +0 -417
- package/fesm2022/ng-nest-ui-alert.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-anchor.mjs +0 -315
- package/fesm2022/ng-nest-ui-anchor.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-api.mjs +0 -44
- package/fesm2022/ng-nest-ui-api.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-attachments.mjs +0 -330
- package/fesm2022/ng-nest-ui-attachments.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-auto-complete.mjs +0 -669
- package/fesm2022/ng-nest-ui-auto-complete.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-avatar.mjs +0 -296
- package/fesm2022/ng-nest-ui-avatar.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-back-top.mjs +0 -170
- package/fesm2022/ng-nest-ui-back-top.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-badge.mjs +0 -212
- package/fesm2022/ng-nest-ui-badge.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-base-form.mjs +0 -241
- package/fesm2022/ng-nest-ui-base-form.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-bubble.mjs +0 -499
- package/fesm2022/ng-nest-ui-bubble.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-button.mjs +0 -469
- package/fesm2022/ng-nest-ui-button.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-calendar.mjs +0 -237
- package/fesm2022/ng-nest-ui-calendar.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-card.mjs +0 -120
- package/fesm2022/ng-nest-ui-card.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-carousel.mjs +0 -511
- package/fesm2022/ng-nest-ui-carousel.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-cascade.mjs +0 -613
- package/fesm2022/ng-nest-ui-cascade.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-checkbox.mjs +0 -253
- package/fesm2022/ng-nest-ui-checkbox.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-collapse.mjs +0 -273
- package/fesm2022/ng-nest-ui-collapse.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-color-picker.mjs +0 -982
- package/fesm2022/ng-nest-ui-color-picker.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-color.mjs +0 -122
- package/fesm2022/ng-nest-ui-color.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-comment.mjs +0 -178
- package/fesm2022/ng-nest-ui-comment.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-container.mjs +0 -262
- package/fesm2022/ng-nest-ui-container.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-contextmenu.mjs +0 -445
- package/fesm2022/ng-nest-ui-contextmenu.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-core.mjs +0 -1773
- package/fesm2022/ng-nest-ui-core.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-coversations.mjs +0 -108
- package/fesm2022/ng-nest-ui-coversations.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-crumb.mjs +0 -87
- package/fesm2022/ng-nest-ui-crumb.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-date-picker.mjs +0 -3110
- package/fesm2022/ng-nest-ui-date-picker.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-description.mjs +0 -303
- package/fesm2022/ng-nest-ui-description.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-dialog.mjs +0 -965
- package/fesm2022/ng-nest-ui-dialog.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-divider.mjs +0 -124
- package/fesm2022/ng-nest-ui-divider.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-doc.mjs +0 -44
- package/fesm2022/ng-nest-ui-doc.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-drag.mjs +0 -101
- package/fesm2022/ng-nest-ui-drag.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-drawer.mjs +0 -395
- package/fesm2022/ng-nest-ui-drawer.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-dropdown.mjs +0 -616
- package/fesm2022/ng-nest-ui-dropdown.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-empty.mjs +0 -86
- package/fesm2022/ng-nest-ui-empty.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-examples.mjs +0 -44
- package/fesm2022/ng-nest-ui-examples.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-find.mjs +0 -608
- package/fesm2022/ng-nest-ui-find.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-form.mjs +0 -561
- package/fesm2022/ng-nest-ui-form.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-highlight.mjs +0 -159
- package/fesm2022/ng-nest-ui-highlight.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-i18n.mjs +0 -9060
- package/fesm2022/ng-nest-ui-i18n.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-icon.mjs +0 -345
- package/fesm2022/ng-nest-ui-icon.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-image.mjs +0 -477
- package/fesm2022/ng-nest-ui-image.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-inner.mjs +0 -72
- package/fesm2022/ng-nest-ui-inner.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-input-number.mjs +0 -313
- package/fesm2022/ng-nest-ui-input-number.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-input.mjs +0 -626
- package/fesm2022/ng-nest-ui-input.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-keyword.mjs +0 -121
- package/fesm2022/ng-nest-ui-keyword.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-layout.mjs +0 -282
- package/fesm2022/ng-nest-ui-layout.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-link.mjs +0 -153
- package/fesm2022/ng-nest-ui-link.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-list.mjs +0 -843
- package/fesm2022/ng-nest-ui-list.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-loading.mjs +0 -178
- package/fesm2022/ng-nest-ui-loading.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-menu.mjs +0 -339
- package/fesm2022/ng-nest-ui-menu.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-message-box.mjs +0 -251
- package/fesm2022/ng-nest-ui-message-box.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-message.mjs +0 -219
- package/fesm2022/ng-nest-ui-message.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-notification.mjs +0 -169
- package/fesm2022/ng-nest-ui-notification.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-outlet.mjs +0 -99
- package/fesm2022/ng-nest-ui-outlet.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-page-header.mjs +0 -91
- package/fesm2022/ng-nest-ui-page-header.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-pagination.mjs +0 -388
- package/fesm2022/ng-nest-ui-pagination.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-pattern.mjs +0 -44
- package/fesm2022/ng-nest-ui-pattern.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-popconfirm.mjs +0 -176
- package/fesm2022/ng-nest-ui-popconfirm.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-popover.mjs +0 -354
- package/fesm2022/ng-nest-ui-popover.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-portal.mjs +0 -233
- package/fesm2022/ng-nest-ui-portal.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-progress.mjs +0 -376
- package/fesm2022/ng-nest-ui-progress.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-prompts.mjs +0 -103
- package/fesm2022/ng-nest-ui-prompts.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-radio.mjs +0 -213
- package/fesm2022/ng-nest-ui-radio.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-rate.mjs +0 -199
- package/fesm2022/ng-nest-ui-rate.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-resizable.mjs +0 -344
- package/fesm2022/ng-nest-ui-resizable.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-result.mjs +0 -86
- package/fesm2022/ng-nest-ui-result.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-ripple.mjs +0 -153
- package/fesm2022/ng-nest-ui-ripple.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-scrollable.mjs +0 -293
- package/fesm2022/ng-nest-ui-scrollable.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-select.mjs +0 -1155
- package/fesm2022/ng-nest-ui-select.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-sender.mjs +0 -207
- package/fesm2022/ng-nest-ui-sender.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-skeleton.mjs +0 -96
- package/fesm2022/ng-nest-ui-skeleton.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-slider-select.mjs +0 -507
- package/fesm2022/ng-nest-ui-slider-select.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-slider.mjs +0 -341
- package/fesm2022/ng-nest-ui-slider.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-splitter.mjs +0 -407
- package/fesm2022/ng-nest-ui-splitter.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-statistic.mjs +0 -221
- package/fesm2022/ng-nest-ui-statistic.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-steps.mjs +0 -140
- package/fesm2022/ng-nest-ui-steps.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-suggestion.mjs +0 -110
- package/fesm2022/ng-nest-ui-suggestion.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-switch.mjs +0 -144
- package/fesm2022/ng-nest-ui-switch.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-table-view.mjs +0 -622
- package/fesm2022/ng-nest-ui-table-view.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-table.mjs +0 -1618
- package/fesm2022/ng-nest-ui-table.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-tabs.mjs +0 -372
- package/fesm2022/ng-nest-ui-tabs.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-tag.mjs +0 -157
- package/fesm2022/ng-nest-ui-tag.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-text-retract.mjs +0 -94
- package/fesm2022/ng-nest-ui-text-retract.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-textarea.mjs +0 -236
- package/fesm2022/ng-nest-ui-textarea.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-theme.mjs +0 -256
- package/fesm2022/ng-nest-ui-theme.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-thought-chain.mjs +0 -121
- package/fesm2022/ng-nest-ui-thought-chain.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-time-ago.mjs +0 -96
- package/fesm2022/ng-nest-ui-time-ago.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-time-picker.mjs +0 -890
- package/fesm2022/ng-nest-ui-time-picker.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-time-range.mjs +0 -70
- package/fesm2022/ng-nest-ui-time-range.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-timeline.mjs +0 -123
- package/fesm2022/ng-nest-ui-timeline.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-tooltip.mjs +0 -307
- package/fesm2022/ng-nest-ui-tooltip.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-transfer.mjs +0 -790
- package/fesm2022/ng-nest-ui-transfer.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-tree-file.mjs +0 -216
- package/fesm2022/ng-nest-ui-tree-file.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-tree-select.mjs +0 -1104
- package/fesm2022/ng-nest-ui-tree-select.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-tree.mjs +0 -1441
- package/fesm2022/ng-nest-ui-tree.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-typography.mjs +0 -78
- package/fesm2022/ng-nest-ui-typography.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-upload.mjs +0 -748
- package/fesm2022/ng-nest-ui-upload.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-watermark.mjs +0 -378
- package/fesm2022/ng-nest-ui-watermark.mjs.map +0 -1
- package/fesm2022/ng-nest-ui-welcome.mjs +0 -84
- package/fesm2022/ng-nest-ui-welcome.mjs.map +0 -1
- package/fesm2022/ng-nest-ui.mjs +0 -107
- package/fesm2022/ng-nest-ui.mjs.map +0 -1
- package/find/index.d.ts +0 -627
- package/form/index.d.ts +0 -571
- package/highlight/index.d.ts +0 -109
- package/i18n/index.d.ts +0 -9402
- package/icon/index.d.ts +0 -137
- package/image/index.d.ts +0 -300
- package/index.d.ts +0 -98
- package/inner/index.d.ts +0 -40
- package/input/index.d.ts +0 -688
- package/input-number/index.d.ts +0 -370
- package/keyword/index.d.ts +0 -63
- package/layout/index.d.ts +0 -173
- package/link/index.d.ts +0 -130
- package/list/index.d.ts +0 -552
- package/loading/index.d.ts +0 -115
- package/menu/index.d.ts +0 -220
- package/message/index.d.ts +0 -204
- package/message-box/index.d.ts +0 -250
- package/notification/index.d.ts +0 -148
- package/outlet/index.d.ts +0 -30
- package/page-header/index.d.ts +0 -63
- package/pagination/index.d.ts +0 -224
- package/pattern/index.d.ts +0 -22
- package/popconfirm/index.d.ts +0 -126
- package/popover/index.d.ts +0 -166
- package/portal/index.d.ts +0 -159
- package/progress/index.d.ts +0 -205
- package/prompts/index.d.ts +0 -103
- package/radio/index.d.ts +0 -316
- package/rate/index.d.ts +0 -234
- package/resizable/index.d.ts +0 -157
- package/result/index.d.ts +0 -63
- package/ripple/index.d.ts +0 -69
- package/scrollable/index.d.ts +0 -63
- package/select/index.d.ts +0 -738
- package/sender/index.d.ts +0 -180
- package/skeleton/index.d.ts +0 -134
- package/slider/index.d.ts +0 -190
- package/slider-select/index.d.ts +0 -388
- package/splitter/index.d.ts +0 -163
- package/statistic/index.d.ts +0 -131
- package/steps/index.d.ts +0 -118
- package/style/core/index.css +0 -689
- package/style/core/index.css.map +0 -1
- package/suggestion/index.d.ts +0 -96
- package/switch/index.d.ts +0 -226
- package/table/index.d.ts +0 -1169
- package/table-view/index.d.ts +0 -182
- package/tabs/index.d.ts +0 -240
- package/tag/index.d.ts +0 -106
- package/text-retract/index.d.ts +0 -47
- package/textarea/index.d.ts +0 -387
- package/theme/index.d.ts +0 -155
- package/thought-chain/index.d.ts +0 -107
- package/time-ago/index.d.ts +0 -34
- package/time-picker/index.d.ts +0 -666
- package/time-range/index.d.ts +0 -26
- package/timeline/index.d.ts +0 -126
- package/tooltip/index.d.ts +0 -146
- package/transfer/index.d.ts +0 -343
- package/tree/index.d.ts +0 -637
- package/tree-file/index.d.ts +0 -169
- package/tree-select/index.d.ts +0 -741
- package/typography/index.d.ts +0 -44
- package/upload/index.d.ts +0 -344
- package/watermark/index.d.ts +0 -267
- package/welcome/index.d.ts +0 -65
|
@@ -0,0 +1,3917 @@
|
|
|
1
|
+
<x-tabs [layout]="'top'">
|
|
2
|
+
@for (tab of tabs(); track tab.name) {
|
|
3
|
+
<x-tab [label]="tab.name">
|
|
4
|
+
<x-row>
|
|
5
|
+
@for (icon of tab.icons; track $index) {
|
|
6
|
+
<x-col [span]="4">
|
|
7
|
+
<div class="box" (click)="copyIcon(tab.type, icon)">
|
|
8
|
+
@defer (on viewport) {
|
|
9
|
+
<svg viewBox="0 0 24 24" fill="currentColor" width="1em" height="1em">
|
|
10
|
+
<use [attr.xlink:href]="'#' + tab.type + '-' + icon"></use>
|
|
11
|
+
</svg>
|
|
12
|
+
<span [attr.title]="icon">{{ icon }}</span>
|
|
13
|
+
} @placeholder {
|
|
14
|
+
<span>...</span>
|
|
15
|
+
}
|
|
16
|
+
</div>
|
|
17
|
+
</x-col>
|
|
18
|
+
}
|
|
19
|
+
</x-row>
|
|
20
|
+
</x-tab>
|
|
21
|
+
}
|
|
22
|
+
</x-tabs>
|
|
23
|
+
|
|
24
|
+
<ng-template #messageTpl>
|
|
25
|
+
<div class="icon-msg">
|
|
26
|
+
<span>{{ this.iconMsg() }} </span> 复制成功
|
|
27
|
+
</div>
|
|
28
|
+
</ng-template>
|
|
29
|
+
|
|
30
|
+
<div [style.display]="'none'">
|
|
31
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
32
|
+
<symbol
|
|
33
|
+
fill="none"
|
|
34
|
+
stroke="currentColor"
|
|
35
|
+
stroke-width="2"
|
|
36
|
+
stroke-linecap="round"
|
|
37
|
+
stroke-linejoin="round"
|
|
38
|
+
class="aafeather aafeather-activity"
|
|
39
|
+
viewBox="0 0 24 24"
|
|
40
|
+
id="fto-activity"
|
|
41
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
42
|
+
>
|
|
43
|
+
<path d="M22 12h-4l-3 9L9 3l-3 9H2" />
|
|
44
|
+
</symbol>
|
|
45
|
+
<symbol
|
|
46
|
+
fill="none"
|
|
47
|
+
stroke="currentColor"
|
|
48
|
+
stroke-width="2"
|
|
49
|
+
stroke-linecap="round"
|
|
50
|
+
stroke-linejoin="round"
|
|
51
|
+
class="abfeather abfeather-airplay"
|
|
52
|
+
viewBox="0 0 24 24"
|
|
53
|
+
id="fto-airplay"
|
|
54
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
55
|
+
>
|
|
56
|
+
<path d="M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1" />
|
|
57
|
+
<path d="m12 15 5 6H7l5-6z" />
|
|
58
|
+
</symbol>
|
|
59
|
+
<symbol
|
|
60
|
+
fill="none"
|
|
61
|
+
stroke="currentColor"
|
|
62
|
+
stroke-width="2"
|
|
63
|
+
stroke-linecap="round"
|
|
64
|
+
stroke-linejoin="round"
|
|
65
|
+
class="acfeather acfeather-alert-circle"
|
|
66
|
+
viewBox="0 0 24 24"
|
|
67
|
+
id="fto-alert-circle"
|
|
68
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
69
|
+
>
|
|
70
|
+
<circle cx="12" cy="12" r="10" />
|
|
71
|
+
<path d="M12 8v4M12 16h0" />
|
|
72
|
+
</symbol>
|
|
73
|
+
<symbol
|
|
74
|
+
fill="none"
|
|
75
|
+
stroke="currentColor"
|
|
76
|
+
stroke-width="2"
|
|
77
|
+
stroke-linecap="round"
|
|
78
|
+
stroke-linejoin="round"
|
|
79
|
+
class="adfeather adfeather-alert-octagon"
|
|
80
|
+
viewBox="0 0 24 24"
|
|
81
|
+
id="fto-alert-octagon"
|
|
82
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
83
|
+
>
|
|
84
|
+
<path d="M7.86 2h8.28L22 7.86v8.28L16.14 22H7.86L2 16.14V7.86L7.86 2zM12 8v4M12 16h0" />
|
|
85
|
+
</symbol>
|
|
86
|
+
<symbol
|
|
87
|
+
fill="none"
|
|
88
|
+
stroke="currentColor"
|
|
89
|
+
stroke-width="2"
|
|
90
|
+
stroke-linecap="round"
|
|
91
|
+
stroke-linejoin="round"
|
|
92
|
+
class="aefeather aefeather-alert-triangle"
|
|
93
|
+
viewBox="0 0 24 24"
|
|
94
|
+
id="fto-alert-triangle"
|
|
95
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
96
|
+
>
|
|
97
|
+
<path
|
|
98
|
+
d="M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0zM12 9v4M12 17h0"
|
|
99
|
+
/>
|
|
100
|
+
</symbol>
|
|
101
|
+
<symbol
|
|
102
|
+
fill="none"
|
|
103
|
+
stroke="currentColor"
|
|
104
|
+
stroke-width="2"
|
|
105
|
+
stroke-linecap="round"
|
|
106
|
+
stroke-linejoin="round"
|
|
107
|
+
class="affeather affeather-align-center"
|
|
108
|
+
viewBox="0 0 24 24"
|
|
109
|
+
id="fto-align-center"
|
|
110
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
111
|
+
>
|
|
112
|
+
<path d="M18 10H6M21 6H3M21 14H3M18 18H6" />
|
|
113
|
+
</symbol>
|
|
114
|
+
<symbol
|
|
115
|
+
fill="none"
|
|
116
|
+
stroke="currentColor"
|
|
117
|
+
stroke-width="2"
|
|
118
|
+
stroke-linecap="round"
|
|
119
|
+
stroke-linejoin="round"
|
|
120
|
+
class="agfeather agfeather-align-justify"
|
|
121
|
+
viewBox="0 0 24 24"
|
|
122
|
+
id="fto-align-justify"
|
|
123
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
124
|
+
>
|
|
125
|
+
<path d="M21 10H3M21 6H3M21 14H3M21 18H3" />
|
|
126
|
+
</symbol>
|
|
127
|
+
<symbol
|
|
128
|
+
fill="none"
|
|
129
|
+
stroke="currentColor"
|
|
130
|
+
stroke-width="2"
|
|
131
|
+
stroke-linecap="round"
|
|
132
|
+
stroke-linejoin="round"
|
|
133
|
+
class="ahfeather ahfeather-align-left"
|
|
134
|
+
viewBox="0 0 24 24"
|
|
135
|
+
id="fto-align-left"
|
|
136
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
137
|
+
>
|
|
138
|
+
<path d="M17 10H3M21 6H3M21 14H3M17 18H3" />
|
|
139
|
+
</symbol>
|
|
140
|
+
<symbol
|
|
141
|
+
fill="none"
|
|
142
|
+
stroke="currentColor"
|
|
143
|
+
stroke-width="2"
|
|
144
|
+
stroke-linecap="round"
|
|
145
|
+
stroke-linejoin="round"
|
|
146
|
+
class="aifeather aifeather-align-right"
|
|
147
|
+
viewBox="0 0 24 24"
|
|
148
|
+
id="fto-align-right"
|
|
149
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
150
|
+
>
|
|
151
|
+
<path d="M21 10H7M21 6H3M21 14H3M21 18H7" />
|
|
152
|
+
</symbol>
|
|
153
|
+
<symbol
|
|
154
|
+
fill="none"
|
|
155
|
+
stroke="currentColor"
|
|
156
|
+
stroke-width="2"
|
|
157
|
+
stroke-linecap="round"
|
|
158
|
+
stroke-linejoin="round"
|
|
159
|
+
class="ajfeather ajfeather-anchor"
|
|
160
|
+
viewBox="0 0 24 24"
|
|
161
|
+
id="fto-anchor"
|
|
162
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
163
|
+
>
|
|
164
|
+
<circle cx="12" cy="5" r="3" />
|
|
165
|
+
<path d="M12 22V8M5 12H2a10 10 0 0 0 20 0h-3" />
|
|
166
|
+
</symbol>
|
|
167
|
+
<symbol
|
|
168
|
+
fill="none"
|
|
169
|
+
stroke="currentColor"
|
|
170
|
+
stroke-width="2"
|
|
171
|
+
stroke-linecap="round"
|
|
172
|
+
stroke-linejoin="round"
|
|
173
|
+
class="akfeather akfeather-aperture"
|
|
174
|
+
viewBox="0 0 24 24"
|
|
175
|
+
id="fto-aperture"
|
|
176
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
177
|
+
>
|
|
178
|
+
<circle cx="12" cy="12" r="10" />
|
|
179
|
+
<path d="m14.31 8 5.74 9.94M9.69 8h11.48M7.38 12l5.74-9.94M9.69 16 3.95 6.06M14.31 16H2.83M16.62 12l-5.74 9.94" />
|
|
180
|
+
</symbol>
|
|
181
|
+
<symbol
|
|
182
|
+
fill="none"
|
|
183
|
+
stroke="currentColor"
|
|
184
|
+
stroke-width="2"
|
|
185
|
+
stroke-linecap="round"
|
|
186
|
+
stroke-linejoin="round"
|
|
187
|
+
class="alfeather alfeather-archive"
|
|
188
|
+
viewBox="0 0 24 24"
|
|
189
|
+
id="fto-archive"
|
|
190
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
191
|
+
>
|
|
192
|
+
<path d="M21 8v13H3V8M1 3h22v5H1zM10 12h4" />
|
|
193
|
+
</symbol>
|
|
194
|
+
<symbol
|
|
195
|
+
fill="none"
|
|
196
|
+
stroke="currentColor"
|
|
197
|
+
stroke-width="2"
|
|
198
|
+
stroke-linecap="round"
|
|
199
|
+
stroke-linejoin="round"
|
|
200
|
+
class="apfeather apfeather-arrow-down"
|
|
201
|
+
viewBox="0 0 24 24"
|
|
202
|
+
id="fto-arrow-down"
|
|
203
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
204
|
+
>
|
|
205
|
+
<path d="M12 5v14M19 12l-7 7-7-7" />
|
|
206
|
+
</symbol>
|
|
207
|
+
<symbol
|
|
208
|
+
fill="none"
|
|
209
|
+
stroke="currentColor"
|
|
210
|
+
stroke-width="2"
|
|
211
|
+
stroke-linecap="round"
|
|
212
|
+
stroke-linejoin="round"
|
|
213
|
+
class="amfeather amfeather-arrow-down-circle"
|
|
214
|
+
viewBox="0 0 24 24"
|
|
215
|
+
id="fto-arrow-down-circle"
|
|
216
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
217
|
+
>
|
|
218
|
+
<circle cx="12" cy="12" r="10" />
|
|
219
|
+
<path d="m8 12 4 4 4-4M12 8v8" />
|
|
220
|
+
</symbol>
|
|
221
|
+
<symbol
|
|
222
|
+
fill="none"
|
|
223
|
+
stroke="currentColor"
|
|
224
|
+
stroke-width="2"
|
|
225
|
+
stroke-linecap="round"
|
|
226
|
+
stroke-linejoin="round"
|
|
227
|
+
class="anfeather anfeather-arrow-down-left"
|
|
228
|
+
viewBox="0 0 24 24"
|
|
229
|
+
id="fto-arrow-down-left"
|
|
230
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
231
|
+
>
|
|
232
|
+
<path d="M17 7 7 17M17 17H7V7" />
|
|
233
|
+
</symbol>
|
|
234
|
+
<symbol
|
|
235
|
+
fill="none"
|
|
236
|
+
stroke="currentColor"
|
|
237
|
+
stroke-width="2"
|
|
238
|
+
stroke-linecap="round"
|
|
239
|
+
stroke-linejoin="round"
|
|
240
|
+
class="aofeather aofeather-arrow-down-right"
|
|
241
|
+
viewBox="0 0 24 24"
|
|
242
|
+
id="fto-arrow-down-right"
|
|
243
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
244
|
+
>
|
|
245
|
+
<path d="m7 7 10 10M17 7v10H7" />
|
|
246
|
+
</symbol>
|
|
247
|
+
<symbol
|
|
248
|
+
fill="none"
|
|
249
|
+
stroke="currentColor"
|
|
250
|
+
stroke-width="2"
|
|
251
|
+
stroke-linecap="round"
|
|
252
|
+
stroke-linejoin="round"
|
|
253
|
+
class="arfeather arfeather-arrow-left"
|
|
254
|
+
viewBox="0 0 24 24"
|
|
255
|
+
id="fto-arrow-left"
|
|
256
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
257
|
+
>
|
|
258
|
+
<path d="M19 12H5M12 19l-7-7 7-7" />
|
|
259
|
+
</symbol>
|
|
260
|
+
<symbol
|
|
261
|
+
fill="none"
|
|
262
|
+
stroke="currentColor"
|
|
263
|
+
stroke-width="2"
|
|
264
|
+
stroke-linecap="round"
|
|
265
|
+
stroke-linejoin="round"
|
|
266
|
+
class="aqfeather aqfeather-arrow-left-circle"
|
|
267
|
+
viewBox="0 0 24 24"
|
|
268
|
+
id="fto-arrow-left-circle"
|
|
269
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
270
|
+
>
|
|
271
|
+
<circle cx="12" cy="12" r="10" />
|
|
272
|
+
<path d="m12 8-4 4 4 4M16 12H8" />
|
|
273
|
+
</symbol>
|
|
274
|
+
<symbol
|
|
275
|
+
fill="none"
|
|
276
|
+
stroke="currentColor"
|
|
277
|
+
stroke-width="2"
|
|
278
|
+
stroke-linecap="round"
|
|
279
|
+
stroke-linejoin="round"
|
|
280
|
+
class="atfeather atfeather-arrow-right"
|
|
281
|
+
viewBox="0 0 24 24"
|
|
282
|
+
id="fto-arrow-right"
|
|
283
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
284
|
+
>
|
|
285
|
+
<path d="M5 12h14M12 5l7 7-7 7" />
|
|
286
|
+
</symbol>
|
|
287
|
+
<symbol
|
|
288
|
+
fill="none"
|
|
289
|
+
stroke="currentColor"
|
|
290
|
+
stroke-width="2"
|
|
291
|
+
stroke-linecap="round"
|
|
292
|
+
stroke-linejoin="round"
|
|
293
|
+
class="asfeather asfeather-arrow-right-circle"
|
|
294
|
+
viewBox="0 0 24 24"
|
|
295
|
+
id="fto-arrow-right-circle"
|
|
296
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
297
|
+
>
|
|
298
|
+
<circle cx="12" cy="12" r="10" />
|
|
299
|
+
<path d="m12 16 4-4-4-4M8 12h8" />
|
|
300
|
+
</symbol>
|
|
301
|
+
<symbol
|
|
302
|
+
fill="none"
|
|
303
|
+
stroke="currentColor"
|
|
304
|
+
stroke-width="2"
|
|
305
|
+
stroke-linecap="round"
|
|
306
|
+
stroke-linejoin="round"
|
|
307
|
+
class="axfeather axfeather-arrow-up"
|
|
308
|
+
viewBox="0 0 24 24"
|
|
309
|
+
id="fto-arrow-up"
|
|
310
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
311
|
+
>
|
|
312
|
+
<path d="M12 19V5M5 12l7-7 7 7" />
|
|
313
|
+
</symbol>
|
|
314
|
+
<symbol
|
|
315
|
+
fill="none"
|
|
316
|
+
stroke="currentColor"
|
|
317
|
+
stroke-width="2"
|
|
318
|
+
stroke-linecap="round"
|
|
319
|
+
stroke-linejoin="round"
|
|
320
|
+
class="aufeather aufeather-arrow-up-circle"
|
|
321
|
+
viewBox="0 0 24 24"
|
|
322
|
+
id="fto-arrow-up-circle"
|
|
323
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
324
|
+
>
|
|
325
|
+
<circle cx="12" cy="12" r="10" />
|
|
326
|
+
<path d="m16 12-4-4-4 4M12 16V8" />
|
|
327
|
+
</symbol>
|
|
328
|
+
<symbol
|
|
329
|
+
fill="none"
|
|
330
|
+
stroke="currentColor"
|
|
331
|
+
stroke-width="2"
|
|
332
|
+
stroke-linecap="round"
|
|
333
|
+
stroke-linejoin="round"
|
|
334
|
+
class="avfeather avfeather-arrow-up-left"
|
|
335
|
+
viewBox="0 0 24 24"
|
|
336
|
+
id="fto-arrow-up-left"
|
|
337
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
338
|
+
>
|
|
339
|
+
<path d="M17 17 7 7M7 17V7h10" />
|
|
340
|
+
</symbol>
|
|
341
|
+
<symbol
|
|
342
|
+
fill="none"
|
|
343
|
+
stroke="currentColor"
|
|
344
|
+
stroke-width="2"
|
|
345
|
+
stroke-linecap="round"
|
|
346
|
+
stroke-linejoin="round"
|
|
347
|
+
class="awfeather awfeather-arrow-up-right"
|
|
348
|
+
viewBox="0 0 24 24"
|
|
349
|
+
id="fto-arrow-up-right"
|
|
350
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
351
|
+
>
|
|
352
|
+
<path d="M7 17 17 7M7 7h10v10" />
|
|
353
|
+
</symbol>
|
|
354
|
+
<symbol
|
|
355
|
+
fill="none"
|
|
356
|
+
stroke="currentColor"
|
|
357
|
+
stroke-width="2"
|
|
358
|
+
stroke-linecap="round"
|
|
359
|
+
stroke-linejoin="round"
|
|
360
|
+
class="ayfeather ayfeather-at-sign"
|
|
361
|
+
viewBox="0 0 24 24"
|
|
362
|
+
id="fto-at-sign"
|
|
363
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
364
|
+
>
|
|
365
|
+
<circle cx="12" cy="12" r="4" />
|
|
366
|
+
<path d="M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94" />
|
|
367
|
+
</symbol>
|
|
368
|
+
<symbol
|
|
369
|
+
fill="none"
|
|
370
|
+
stroke="currentColor"
|
|
371
|
+
stroke-width="2"
|
|
372
|
+
stroke-linecap="round"
|
|
373
|
+
stroke-linejoin="round"
|
|
374
|
+
class="azfeather azfeather-award"
|
|
375
|
+
viewBox="0 0 24 24"
|
|
376
|
+
id="fto-award"
|
|
377
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
378
|
+
>
|
|
379
|
+
<circle cx="12" cy="8" r="7" />
|
|
380
|
+
<path d="M8.21 13.89 7 23l5-3 5 3-1.21-9.12" />
|
|
381
|
+
</symbol>
|
|
382
|
+
<symbol
|
|
383
|
+
fill="none"
|
|
384
|
+
stroke="currentColor"
|
|
385
|
+
stroke-width="2"
|
|
386
|
+
stroke-linecap="round"
|
|
387
|
+
stroke-linejoin="round"
|
|
388
|
+
class="bbfeather bbfeather-bar-chart"
|
|
389
|
+
viewBox="0 0 24 24"
|
|
390
|
+
id="fto-bar-chart"
|
|
391
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
392
|
+
>
|
|
393
|
+
<path d="M12 20V10M18 20V4M6 20v-4" />
|
|
394
|
+
</symbol>
|
|
395
|
+
<symbol
|
|
396
|
+
fill="none"
|
|
397
|
+
stroke="currentColor"
|
|
398
|
+
stroke-width="2"
|
|
399
|
+
stroke-linecap="round"
|
|
400
|
+
stroke-linejoin="round"
|
|
401
|
+
class="bafeather bafeather-bar-chart-2"
|
|
402
|
+
viewBox="0 0 24 24"
|
|
403
|
+
id="fto-bar-chart-2"
|
|
404
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
405
|
+
>
|
|
406
|
+
<path d="M18 20V10M12 20V4M6 20v-6" />
|
|
407
|
+
</symbol>
|
|
408
|
+
<symbol
|
|
409
|
+
fill="none"
|
|
410
|
+
stroke="currentColor"
|
|
411
|
+
stroke-width="2"
|
|
412
|
+
stroke-linecap="round"
|
|
413
|
+
stroke-linejoin="round"
|
|
414
|
+
class="bdfeather bdfeather-battery"
|
|
415
|
+
viewBox="0 0 24 24"
|
|
416
|
+
id="fto-battery"
|
|
417
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
418
|
+
>
|
|
419
|
+
<rect x="1" y="6" width="18" height="12" rx="2" ry="2" />
|
|
420
|
+
<path d="M23 13v-2" />
|
|
421
|
+
</symbol>
|
|
422
|
+
<symbol
|
|
423
|
+
fill="none"
|
|
424
|
+
stroke="currentColor"
|
|
425
|
+
stroke-width="2"
|
|
426
|
+
stroke-linecap="round"
|
|
427
|
+
stroke-linejoin="round"
|
|
428
|
+
class="bcfeather bcfeather-battery-charging"
|
|
429
|
+
viewBox="0 0 24 24"
|
|
430
|
+
id="fto-battery-charging"
|
|
431
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
432
|
+
>
|
|
433
|
+
<path
|
|
434
|
+
d="M5 18H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.19M15 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.19M23 13v-2M11 6l-4 6h6l-4 6"
|
|
435
|
+
/>
|
|
436
|
+
</symbol>
|
|
437
|
+
<symbol
|
|
438
|
+
fill="none"
|
|
439
|
+
stroke="currentColor"
|
|
440
|
+
stroke-width="2"
|
|
441
|
+
stroke-linecap="round"
|
|
442
|
+
stroke-linejoin="round"
|
|
443
|
+
class="bffeather bffeather-bell"
|
|
444
|
+
viewBox="0 0 24 24"
|
|
445
|
+
id="fto-bell"
|
|
446
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
447
|
+
>
|
|
448
|
+
<path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9M13.73 21a2 2 0 0 1-3.46 0" />
|
|
449
|
+
</symbol>
|
|
450
|
+
<symbol
|
|
451
|
+
fill="none"
|
|
452
|
+
stroke="currentColor"
|
|
453
|
+
stroke-width="2"
|
|
454
|
+
stroke-linecap="round"
|
|
455
|
+
stroke-linejoin="round"
|
|
456
|
+
class="befeather befeather-bell-off"
|
|
457
|
+
viewBox="0 0 24 24"
|
|
458
|
+
id="fto-bell-off"
|
|
459
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
460
|
+
>
|
|
461
|
+
<path
|
|
462
|
+
d="M13.73 21a2 2 0 0 1-3.46 0M18.63 13A17.89 17.89 0 0 1 18 8M6.26 6.26A5.86 5.86 0 0 0 6 8c0 7-3 9-3 9h14M18 8a6 6 0 0 0-9.33-5M1 1l22 22"
|
|
463
|
+
/>
|
|
464
|
+
</symbol>
|
|
465
|
+
<symbol
|
|
466
|
+
fill="none"
|
|
467
|
+
stroke="currentColor"
|
|
468
|
+
stroke-width="2"
|
|
469
|
+
stroke-linecap="round"
|
|
470
|
+
stroke-linejoin="round"
|
|
471
|
+
class="bgfeather bgfeather-bluetooth"
|
|
472
|
+
viewBox="0 0 24 24"
|
|
473
|
+
id="fto-bluetooth"
|
|
474
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
475
|
+
>
|
|
476
|
+
<path d="m6.5 6.5 11 11L12 23V1l5.5 5.5-11 11" />
|
|
477
|
+
</symbol>
|
|
478
|
+
<symbol
|
|
479
|
+
fill="none"
|
|
480
|
+
stroke="currentColor"
|
|
481
|
+
stroke-width="2"
|
|
482
|
+
stroke-linecap="round"
|
|
483
|
+
stroke-linejoin="round"
|
|
484
|
+
class="bhfeather bhfeather-bold"
|
|
485
|
+
viewBox="0 0 24 24"
|
|
486
|
+
id="fto-bold"
|
|
487
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
488
|
+
>
|
|
489
|
+
<path d="M6 4h8a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6zM6 12h9a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z" />
|
|
490
|
+
</symbol>
|
|
491
|
+
<symbol
|
|
492
|
+
fill="none"
|
|
493
|
+
stroke="currentColor"
|
|
494
|
+
stroke-width="2"
|
|
495
|
+
stroke-linecap="round"
|
|
496
|
+
stroke-linejoin="round"
|
|
497
|
+
class="bjfeather bjfeather-book"
|
|
498
|
+
viewBox="0 0 24 24"
|
|
499
|
+
id="fto-book"
|
|
500
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
501
|
+
>
|
|
502
|
+
<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20" />
|
|
503
|
+
<path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z" />
|
|
504
|
+
</symbol>
|
|
505
|
+
<symbol
|
|
506
|
+
fill="none"
|
|
507
|
+
stroke="currentColor"
|
|
508
|
+
stroke-width="2"
|
|
509
|
+
stroke-linecap="round"
|
|
510
|
+
stroke-linejoin="round"
|
|
511
|
+
class="bifeather bifeather-book-open"
|
|
512
|
+
viewBox="0 0 24 24"
|
|
513
|
+
id="fto-book-open"
|
|
514
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
515
|
+
>
|
|
516
|
+
<path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2zM22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z" />
|
|
517
|
+
</symbol>
|
|
518
|
+
<symbol
|
|
519
|
+
fill="none"
|
|
520
|
+
stroke="currentColor"
|
|
521
|
+
stroke-width="2"
|
|
522
|
+
stroke-linecap="round"
|
|
523
|
+
stroke-linejoin="round"
|
|
524
|
+
class="bkfeather bkfeather-bookmark"
|
|
525
|
+
viewBox="0 0 24 24"
|
|
526
|
+
id="fto-bookmark"
|
|
527
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
528
|
+
>
|
|
529
|
+
<path d="m19 21-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" />
|
|
530
|
+
</symbol>
|
|
531
|
+
<symbol
|
|
532
|
+
fill="none"
|
|
533
|
+
stroke="currentColor"
|
|
534
|
+
stroke-width="2"
|
|
535
|
+
stroke-linecap="round"
|
|
536
|
+
stroke-linejoin="round"
|
|
537
|
+
class="blfeather blfeather-box"
|
|
538
|
+
viewBox="0 0 24 24"
|
|
539
|
+
id="fto-box"
|
|
540
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
541
|
+
>
|
|
542
|
+
<path
|
|
543
|
+
d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"
|
|
544
|
+
/>
|
|
545
|
+
<path d="M3.27 6.96 12 12.01l8.73-5.05M12 22.08V12" />
|
|
546
|
+
</symbol>
|
|
547
|
+
<symbol
|
|
548
|
+
fill="none"
|
|
549
|
+
stroke="currentColor"
|
|
550
|
+
stroke-width="2"
|
|
551
|
+
stroke-linecap="round"
|
|
552
|
+
stroke-linejoin="round"
|
|
553
|
+
class="bmfeather bmfeather-briefcase"
|
|
554
|
+
viewBox="0 0 24 24"
|
|
555
|
+
id="fto-briefcase"
|
|
556
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
557
|
+
>
|
|
558
|
+
<rect x="2" y="7" width="20" height="14" rx="2" ry="2" />
|
|
559
|
+
<path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16" />
|
|
560
|
+
</symbol>
|
|
561
|
+
<symbol
|
|
562
|
+
fill="none"
|
|
563
|
+
stroke="currentColor"
|
|
564
|
+
stroke-width="2"
|
|
565
|
+
stroke-linecap="round"
|
|
566
|
+
stroke-linejoin="round"
|
|
567
|
+
class="bnfeather bnfeather-calendar"
|
|
568
|
+
viewBox="0 0 24 24"
|
|
569
|
+
id="fto-calendar"
|
|
570
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
571
|
+
>
|
|
572
|
+
<rect x="3" y="4" width="18" height="18" rx="2" ry="2" />
|
|
573
|
+
<path d="M16 2v4M8 2v4M3 10h18" />
|
|
574
|
+
</symbol>
|
|
575
|
+
<symbol
|
|
576
|
+
fill="none"
|
|
577
|
+
stroke="currentColor"
|
|
578
|
+
stroke-width="2"
|
|
579
|
+
stroke-linecap="round"
|
|
580
|
+
stroke-linejoin="round"
|
|
581
|
+
class="bpfeather bpfeather-camera"
|
|
582
|
+
viewBox="0 0 24 24"
|
|
583
|
+
id="fto-camera"
|
|
584
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
585
|
+
>
|
|
586
|
+
<path d="M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z" />
|
|
587
|
+
<circle cx="12" cy="13" r="4" />
|
|
588
|
+
</symbol>
|
|
589
|
+
<symbol
|
|
590
|
+
fill="none"
|
|
591
|
+
stroke="currentColor"
|
|
592
|
+
stroke-width="2"
|
|
593
|
+
stroke-linecap="round"
|
|
594
|
+
stroke-linejoin="round"
|
|
595
|
+
class="bofeather bofeather-camera-off"
|
|
596
|
+
viewBox="0 0 24 24"
|
|
597
|
+
id="fto-camera-off"
|
|
598
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
599
|
+
>
|
|
600
|
+
<path
|
|
601
|
+
d="m1 1 22 22M21 21H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3m3-3h6l2 3h4a2 2 0 0 1 2 2v9.34m-7.72-2.06a4 4 0 1 1-5.56-5.56"
|
|
602
|
+
/>
|
|
603
|
+
</symbol>
|
|
604
|
+
<symbol
|
|
605
|
+
fill="none"
|
|
606
|
+
stroke="currentColor"
|
|
607
|
+
stroke-width="2"
|
|
608
|
+
stroke-linecap="round"
|
|
609
|
+
stroke-linejoin="round"
|
|
610
|
+
class="bqfeather bqfeather-cast"
|
|
611
|
+
viewBox="0 0 24 24"
|
|
612
|
+
id="fto-cast"
|
|
613
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
614
|
+
>
|
|
615
|
+
<path
|
|
616
|
+
d="M2 16.1A5 5 0 0 1 5.9 20M2 12.05A9 9 0 0 1 9.95 20M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6M2 20h0"
|
|
617
|
+
/>
|
|
618
|
+
</symbol>
|
|
619
|
+
<symbol
|
|
620
|
+
fill="none"
|
|
621
|
+
stroke="currentColor"
|
|
622
|
+
stroke-width="2"
|
|
623
|
+
stroke-linecap="round"
|
|
624
|
+
stroke-linejoin="round"
|
|
625
|
+
class="btfeather btfeather-check"
|
|
626
|
+
viewBox="0 0 24 24"
|
|
627
|
+
id="fto-check"
|
|
628
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
629
|
+
>
|
|
630
|
+
<path d="M20 6 9 17l-5-5" />
|
|
631
|
+
</symbol>
|
|
632
|
+
<symbol
|
|
633
|
+
fill="none"
|
|
634
|
+
stroke="currentColor"
|
|
635
|
+
stroke-width="2"
|
|
636
|
+
stroke-linecap="round"
|
|
637
|
+
stroke-linejoin="round"
|
|
638
|
+
class="brfeather brfeather-check-circle"
|
|
639
|
+
viewBox="0 0 24 24"
|
|
640
|
+
id="fto-check-circle"
|
|
641
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
642
|
+
>
|
|
643
|
+
<path d="M22 11.08V12a10 10 0 1 1-5.93-9.14" />
|
|
644
|
+
<path d="M22 4 12 14.01l-3-3" />
|
|
645
|
+
</symbol>
|
|
646
|
+
<symbol
|
|
647
|
+
fill="none"
|
|
648
|
+
stroke="currentColor"
|
|
649
|
+
stroke-width="2"
|
|
650
|
+
stroke-linecap="round"
|
|
651
|
+
stroke-linejoin="round"
|
|
652
|
+
class="bsfeather bsfeather-check-square"
|
|
653
|
+
viewBox="0 0 24 24"
|
|
654
|
+
id="fto-check-square"
|
|
655
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
656
|
+
>
|
|
657
|
+
<path d="m9 11 3 3L22 4" />
|
|
658
|
+
<path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11" />
|
|
659
|
+
</symbol>
|
|
660
|
+
<symbol
|
|
661
|
+
fill="none"
|
|
662
|
+
stroke="currentColor"
|
|
663
|
+
stroke-width="2"
|
|
664
|
+
stroke-linecap="round"
|
|
665
|
+
stroke-linejoin="round"
|
|
666
|
+
class="bufeather bufeather-chevron-down"
|
|
667
|
+
viewBox="0 0 24 24"
|
|
668
|
+
id="fto-chevron-down"
|
|
669
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
670
|
+
>
|
|
671
|
+
<path d="m6 9 6 6 6-6" />
|
|
672
|
+
</symbol>
|
|
673
|
+
<symbol
|
|
674
|
+
fill="none"
|
|
675
|
+
stroke="currentColor"
|
|
676
|
+
stroke-width="2"
|
|
677
|
+
stroke-linecap="round"
|
|
678
|
+
stroke-linejoin="round"
|
|
679
|
+
class="bvfeather bvfeather-chevron-left"
|
|
680
|
+
viewBox="0 0 24 24"
|
|
681
|
+
id="fto-chevron-left"
|
|
682
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
683
|
+
>
|
|
684
|
+
<path d="m15 18-6-6 6-6" />
|
|
685
|
+
</symbol>
|
|
686
|
+
<symbol
|
|
687
|
+
fill="none"
|
|
688
|
+
stroke="currentColor"
|
|
689
|
+
stroke-width="2"
|
|
690
|
+
stroke-linecap="round"
|
|
691
|
+
stroke-linejoin="round"
|
|
692
|
+
class="bwfeather bwfeather-chevron-right"
|
|
693
|
+
viewBox="0 0 24 24"
|
|
694
|
+
id="fto-chevron-right"
|
|
695
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
696
|
+
>
|
|
697
|
+
<path d="m9 18 6-6-6-6" />
|
|
698
|
+
</symbol>
|
|
699
|
+
<symbol
|
|
700
|
+
fill="none"
|
|
701
|
+
stroke="currentColor"
|
|
702
|
+
stroke-width="2"
|
|
703
|
+
stroke-linecap="round"
|
|
704
|
+
stroke-linejoin="round"
|
|
705
|
+
class="bxfeather bxfeather-chevron-up"
|
|
706
|
+
viewBox="0 0 24 24"
|
|
707
|
+
id="fto-chevron-up"
|
|
708
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
709
|
+
>
|
|
710
|
+
<path d="m18 15-6-6-6 6" />
|
|
711
|
+
</symbol>
|
|
712
|
+
<symbol
|
|
713
|
+
fill="none"
|
|
714
|
+
stroke="currentColor"
|
|
715
|
+
stroke-width="2"
|
|
716
|
+
stroke-linecap="round"
|
|
717
|
+
stroke-linejoin="round"
|
|
718
|
+
class="byfeather byfeather-chevrons-down"
|
|
719
|
+
viewBox="0 0 24 24"
|
|
720
|
+
id="fto-chevrons-down"
|
|
721
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
722
|
+
>
|
|
723
|
+
<path d="m7 13 5 5 5-5M7 6l5 5 5-5" />
|
|
724
|
+
</symbol>
|
|
725
|
+
<symbol
|
|
726
|
+
fill="none"
|
|
727
|
+
stroke="currentColor"
|
|
728
|
+
stroke-width="2"
|
|
729
|
+
stroke-linecap="round"
|
|
730
|
+
stroke-linejoin="round"
|
|
731
|
+
class="bzfeather bzfeather-chevrons-left"
|
|
732
|
+
viewBox="0 0 24 24"
|
|
733
|
+
id="fto-chevrons-left"
|
|
734
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
735
|
+
>
|
|
736
|
+
<path d="m11 17-5-5 5-5M18 17l-5-5 5-5" />
|
|
737
|
+
</symbol>
|
|
738
|
+
<symbol
|
|
739
|
+
fill="none"
|
|
740
|
+
stroke="currentColor"
|
|
741
|
+
stroke-width="2"
|
|
742
|
+
stroke-linecap="round"
|
|
743
|
+
stroke-linejoin="round"
|
|
744
|
+
class="cafeather cafeather-chevrons-right"
|
|
745
|
+
viewBox="0 0 24 24"
|
|
746
|
+
id="fto-chevrons-right"
|
|
747
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
748
|
+
>
|
|
749
|
+
<path d="m13 17 5-5-5-5M6 17l5-5-5-5" />
|
|
750
|
+
</symbol>
|
|
751
|
+
<symbol
|
|
752
|
+
fill="none"
|
|
753
|
+
stroke="currentColor"
|
|
754
|
+
stroke-width="2"
|
|
755
|
+
stroke-linecap="round"
|
|
756
|
+
stroke-linejoin="round"
|
|
757
|
+
class="cbfeather cbfeather-chevrons-up"
|
|
758
|
+
viewBox="0 0 24 24"
|
|
759
|
+
id="fto-chevrons-up"
|
|
760
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
761
|
+
>
|
|
762
|
+
<path d="m17 11-5-5-5 5M17 18l-5-5-5 5" />
|
|
763
|
+
</symbol>
|
|
764
|
+
<symbol
|
|
765
|
+
fill="none"
|
|
766
|
+
stroke="currentColor"
|
|
767
|
+
stroke-width="2"
|
|
768
|
+
stroke-linecap="round"
|
|
769
|
+
stroke-linejoin="round"
|
|
770
|
+
class="ccfeather ccfeather-chrome"
|
|
771
|
+
viewBox="0 0 24 24"
|
|
772
|
+
id="fto-chrome"
|
|
773
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
774
|
+
>
|
|
775
|
+
<circle cx="12" cy="12" r="10" />
|
|
776
|
+
<circle cx="12" cy="12" r="4" />
|
|
777
|
+
<path d="M21.17 8H12M3.95 6.06 8.54 14M10.88 21.94 15.46 14" />
|
|
778
|
+
</symbol>
|
|
779
|
+
<symbol
|
|
780
|
+
fill="none"
|
|
781
|
+
stroke="currentColor"
|
|
782
|
+
stroke-width="2"
|
|
783
|
+
stroke-linecap="round"
|
|
784
|
+
stroke-linejoin="round"
|
|
785
|
+
class="cdfeather cdfeather-circle"
|
|
786
|
+
viewBox="0 0 24 24"
|
|
787
|
+
id="fto-circle"
|
|
788
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
789
|
+
>
|
|
790
|
+
<circle cx="12" cy="12" r="10" />
|
|
791
|
+
</symbol>
|
|
792
|
+
<symbol
|
|
793
|
+
fill="none"
|
|
794
|
+
stroke="currentColor"
|
|
795
|
+
stroke-width="2"
|
|
796
|
+
stroke-linecap="round"
|
|
797
|
+
stroke-linejoin="round"
|
|
798
|
+
class="cefeather cefeather-clipboard"
|
|
799
|
+
viewBox="0 0 24 24"
|
|
800
|
+
id="fto-clipboard"
|
|
801
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
802
|
+
>
|
|
803
|
+
<path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" />
|
|
804
|
+
<rect x="8" y="2" width="8" height="4" rx="1" ry="1" />
|
|
805
|
+
</symbol>
|
|
806
|
+
<symbol
|
|
807
|
+
fill="none"
|
|
808
|
+
stroke="currentColor"
|
|
809
|
+
stroke-width="2"
|
|
810
|
+
stroke-linecap="round"
|
|
811
|
+
stroke-linejoin="round"
|
|
812
|
+
class="cffeather cffeather-clock"
|
|
813
|
+
viewBox="0 0 24 24"
|
|
814
|
+
id="fto-clock"
|
|
815
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
816
|
+
>
|
|
817
|
+
<circle cx="12" cy="12" r="10" />
|
|
818
|
+
<path d="M12 6v6l4 2" />
|
|
819
|
+
</symbol>
|
|
820
|
+
<symbol
|
|
821
|
+
fill="none"
|
|
822
|
+
stroke="currentColor"
|
|
823
|
+
stroke-width="2"
|
|
824
|
+
stroke-linecap="round"
|
|
825
|
+
stroke-linejoin="round"
|
|
826
|
+
class="clfeather clfeather-cloud"
|
|
827
|
+
viewBox="0 0 24 24"
|
|
828
|
+
id="fto-cloud"
|
|
829
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
830
|
+
>
|
|
831
|
+
<path d="M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z" />
|
|
832
|
+
</symbol>
|
|
833
|
+
<symbol
|
|
834
|
+
fill="none"
|
|
835
|
+
stroke="currentColor"
|
|
836
|
+
stroke-width="2"
|
|
837
|
+
stroke-linecap="round"
|
|
838
|
+
stroke-linejoin="round"
|
|
839
|
+
class="cgfeather cgfeather-cloud-drizzle"
|
|
840
|
+
viewBox="0 0 24 24"
|
|
841
|
+
id="fto-cloud-drizzle"
|
|
842
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
843
|
+
>
|
|
844
|
+
<path d="M8 19v2M8 13v2M16 19v2M16 13v2M12 21v2M12 15v2M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25" />
|
|
845
|
+
</symbol>
|
|
846
|
+
<symbol
|
|
847
|
+
fill="none"
|
|
848
|
+
stroke="currentColor"
|
|
849
|
+
stroke-width="2"
|
|
850
|
+
stroke-linecap="round"
|
|
851
|
+
stroke-linejoin="round"
|
|
852
|
+
class="chfeather chfeather-cloud-lightning"
|
|
853
|
+
viewBox="0 0 24 24"
|
|
854
|
+
id="fto-cloud-lightning"
|
|
855
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
856
|
+
>
|
|
857
|
+
<path d="M19 16.9A5 5 0 0 0 18 7h-1.26a8 8 0 1 0-11.62 9" />
|
|
858
|
+
<path d="m13 11-4 6h6l-4 6" />
|
|
859
|
+
</symbol>
|
|
860
|
+
<symbol
|
|
861
|
+
fill="none"
|
|
862
|
+
stroke="currentColor"
|
|
863
|
+
stroke-width="2"
|
|
864
|
+
stroke-linecap="round"
|
|
865
|
+
stroke-linejoin="round"
|
|
866
|
+
class="cifeather cifeather-cloud-off"
|
|
867
|
+
viewBox="0 0 24 24"
|
|
868
|
+
id="fto-cloud-off"
|
|
869
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
870
|
+
>
|
|
871
|
+
<path d="M22.61 16.95A5 5 0 0 0 18 10h-1.26a8 8 0 0 0-7.05-6M5 5a8 8 0 0 0 4 15h9a5 5 0 0 0 1.7-.3M1 1l22 22" />
|
|
872
|
+
</symbol>
|
|
873
|
+
<symbol
|
|
874
|
+
fill="none"
|
|
875
|
+
stroke="currentColor"
|
|
876
|
+
stroke-width="2"
|
|
877
|
+
stroke-linecap="round"
|
|
878
|
+
stroke-linejoin="round"
|
|
879
|
+
class="cjfeather cjfeather-cloud-rain"
|
|
880
|
+
viewBox="0 0 24 24"
|
|
881
|
+
id="fto-cloud-rain"
|
|
882
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
883
|
+
>
|
|
884
|
+
<path d="M16 13v8M8 13v8M12 15v8M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25" />
|
|
885
|
+
</symbol>
|
|
886
|
+
<symbol
|
|
887
|
+
fill="none"
|
|
888
|
+
stroke="currentColor"
|
|
889
|
+
stroke-width="2"
|
|
890
|
+
stroke-linecap="round"
|
|
891
|
+
stroke-linejoin="round"
|
|
892
|
+
class="ckfeather ckfeather-cloud-snow"
|
|
893
|
+
viewBox="0 0 24 24"
|
|
894
|
+
id="fto-cloud-snow"
|
|
895
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
896
|
+
>
|
|
897
|
+
<path d="M20 17.58A5 5 0 0 0 18 8h-1.26A8 8 0 1 0 4 16.25M8 16h0M8 20h0M12 18h0M12 22h0M16 16h0M16 20h0" />
|
|
898
|
+
</symbol>
|
|
899
|
+
<symbol
|
|
900
|
+
fill="none"
|
|
901
|
+
stroke="currentColor"
|
|
902
|
+
stroke-width="2"
|
|
903
|
+
stroke-linecap="round"
|
|
904
|
+
stroke-linejoin="round"
|
|
905
|
+
class="cmfeather cmfeather-code"
|
|
906
|
+
viewBox="0 0 24 24"
|
|
907
|
+
id="fto-code"
|
|
908
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
909
|
+
>
|
|
910
|
+
<path d="m16 18 6-6-6-6M8 6l-6 6 6 6" />
|
|
911
|
+
</symbol>
|
|
912
|
+
<symbol
|
|
913
|
+
fill="none"
|
|
914
|
+
stroke="currentColor"
|
|
915
|
+
stroke-width="2"
|
|
916
|
+
stroke-linecap="round"
|
|
917
|
+
stroke-linejoin="round"
|
|
918
|
+
class="cnfeather cnfeather-codepen"
|
|
919
|
+
viewBox="0 0 24 24"
|
|
920
|
+
id="fto-codepen"
|
|
921
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
922
|
+
>
|
|
923
|
+
<path d="m12 2 10 6.5v7L12 22 2 15.5v-7L12 2zM12 22v-6.5" />
|
|
924
|
+
<path d="m22 8.5-10 7-10-7" />
|
|
925
|
+
<path d="m2 15.5 10-7 10 7M12 2v6.5" />
|
|
926
|
+
</symbol>
|
|
927
|
+
<symbol
|
|
928
|
+
fill="none"
|
|
929
|
+
stroke="currentColor"
|
|
930
|
+
stroke-width="2"
|
|
931
|
+
stroke-linecap="round"
|
|
932
|
+
stroke-linejoin="round"
|
|
933
|
+
class="cofeather cofeather-codesandbox"
|
|
934
|
+
viewBox="0 0 24 24"
|
|
935
|
+
id="fto-codesandbox"
|
|
936
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
937
|
+
>
|
|
938
|
+
<path
|
|
939
|
+
d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"
|
|
940
|
+
/>
|
|
941
|
+
<path
|
|
942
|
+
d="m7.5 4.21 4.5 2.6 4.5-2.6M7.5 19.79V14.6L3 12M21 12l-4.5 2.6v5.19M3.27 6.96 12 12.01l8.73-5.05M12 22.08V12"
|
|
943
|
+
/>
|
|
944
|
+
</symbol>
|
|
945
|
+
<symbol
|
|
946
|
+
fill="none"
|
|
947
|
+
stroke="currentColor"
|
|
948
|
+
stroke-width="2"
|
|
949
|
+
stroke-linecap="round"
|
|
950
|
+
stroke-linejoin="round"
|
|
951
|
+
class="cpfeather cpfeather-coffee"
|
|
952
|
+
viewBox="0 0 24 24"
|
|
953
|
+
id="fto-coffee"
|
|
954
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
955
|
+
>
|
|
956
|
+
<path d="M18 8h1a4 4 0 0 1 0 8h-1M2 8h16v9a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V8zM6 1v3M10 1v3M14 1v3" />
|
|
957
|
+
</symbol>
|
|
958
|
+
<symbol
|
|
959
|
+
fill="none"
|
|
960
|
+
stroke="currentColor"
|
|
961
|
+
stroke-width="2"
|
|
962
|
+
stroke-linecap="round"
|
|
963
|
+
stroke-linejoin="round"
|
|
964
|
+
class="cqfeather cqfeather-columns"
|
|
965
|
+
viewBox="0 0 24 24"
|
|
966
|
+
id="fto-columns"
|
|
967
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
968
|
+
>
|
|
969
|
+
<path d="M12 3h7a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-7m0-18H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7m0-18v18" />
|
|
970
|
+
</symbol>
|
|
971
|
+
<symbol
|
|
972
|
+
fill="none"
|
|
973
|
+
stroke="currentColor"
|
|
974
|
+
stroke-width="2"
|
|
975
|
+
stroke-linecap="round"
|
|
976
|
+
stroke-linejoin="round"
|
|
977
|
+
class="crfeather crfeather-command"
|
|
978
|
+
viewBox="0 0 24 24"
|
|
979
|
+
id="fto-command"
|
|
980
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
981
|
+
>
|
|
982
|
+
<path
|
|
983
|
+
d="M18 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3H6a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3V6a3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 3 3 0 0 0-3-3z"
|
|
984
|
+
/>
|
|
985
|
+
</symbol>
|
|
986
|
+
<symbol
|
|
987
|
+
fill="none"
|
|
988
|
+
stroke="currentColor"
|
|
989
|
+
stroke-width="2"
|
|
990
|
+
stroke-linecap="round"
|
|
991
|
+
stroke-linejoin="round"
|
|
992
|
+
class="csfeather csfeather-compass"
|
|
993
|
+
viewBox="0 0 24 24"
|
|
994
|
+
id="fto-compass"
|
|
995
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
996
|
+
>
|
|
997
|
+
<circle cx="12" cy="12" r="10" />
|
|
998
|
+
<path d="m16.24 7.76-2.12 6.36-6.36 2.12 2.12-6.36 6.36-2.12z" />
|
|
999
|
+
</symbol>
|
|
1000
|
+
<symbol
|
|
1001
|
+
fill="none"
|
|
1002
|
+
stroke="currentColor"
|
|
1003
|
+
stroke-width="2"
|
|
1004
|
+
stroke-linecap="round"
|
|
1005
|
+
stroke-linejoin="round"
|
|
1006
|
+
class="ctfeather ctfeather-copy"
|
|
1007
|
+
viewBox="0 0 24 24"
|
|
1008
|
+
id="fto-copy"
|
|
1009
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1010
|
+
>
|
|
1011
|
+
<rect x="9" y="9" width="13" height="13" rx="2" ry="2" />
|
|
1012
|
+
<path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" />
|
|
1013
|
+
</symbol>
|
|
1014
|
+
<symbol
|
|
1015
|
+
fill="none"
|
|
1016
|
+
stroke="currentColor"
|
|
1017
|
+
stroke-width="2"
|
|
1018
|
+
stroke-linecap="round"
|
|
1019
|
+
stroke-linejoin="round"
|
|
1020
|
+
class="cufeather cufeather-corner-down-left"
|
|
1021
|
+
viewBox="0 0 24 24"
|
|
1022
|
+
id="fto-corner-down-left"
|
|
1023
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1024
|
+
>
|
|
1025
|
+
<path d="m9 10-5 5 5 5" />
|
|
1026
|
+
<path d="M20 4v7a4 4 0 0 1-4 4H4" />
|
|
1027
|
+
</symbol>
|
|
1028
|
+
<symbol
|
|
1029
|
+
fill="none"
|
|
1030
|
+
stroke="currentColor"
|
|
1031
|
+
stroke-width="2"
|
|
1032
|
+
stroke-linecap="round"
|
|
1033
|
+
stroke-linejoin="round"
|
|
1034
|
+
class="cvfeather cvfeather-corner-down-right"
|
|
1035
|
+
viewBox="0 0 24 24"
|
|
1036
|
+
id="fto-corner-down-right"
|
|
1037
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1038
|
+
>
|
|
1039
|
+
<path d="m15 10 5 5-5 5" />
|
|
1040
|
+
<path d="M4 4v7a4 4 0 0 0 4 4h12" />
|
|
1041
|
+
</symbol>
|
|
1042
|
+
<symbol
|
|
1043
|
+
fill="none"
|
|
1044
|
+
stroke="currentColor"
|
|
1045
|
+
stroke-width="2"
|
|
1046
|
+
stroke-linecap="round"
|
|
1047
|
+
stroke-linejoin="round"
|
|
1048
|
+
class="cwfeather cwfeather-corner-left-down"
|
|
1049
|
+
viewBox="0 0 24 24"
|
|
1050
|
+
id="fto-corner-left-down"
|
|
1051
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1052
|
+
>
|
|
1053
|
+
<path d="m14 15-5 5-5-5" />
|
|
1054
|
+
<path d="M20 4h-7a4 4 0 0 0-4 4v12" />
|
|
1055
|
+
</symbol>
|
|
1056
|
+
<symbol
|
|
1057
|
+
fill="none"
|
|
1058
|
+
stroke="currentColor"
|
|
1059
|
+
stroke-width="2"
|
|
1060
|
+
stroke-linecap="round"
|
|
1061
|
+
stroke-linejoin="round"
|
|
1062
|
+
class="cxfeather cxfeather-corner-left-up"
|
|
1063
|
+
viewBox="0 0 24 24"
|
|
1064
|
+
id="fto-corner-left-up"
|
|
1065
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1066
|
+
>
|
|
1067
|
+
<path d="M14 9 9 4 4 9" />
|
|
1068
|
+
<path d="M20 20h-7a4 4 0 0 1-4-4V4" />
|
|
1069
|
+
</symbol>
|
|
1070
|
+
<symbol
|
|
1071
|
+
fill="none"
|
|
1072
|
+
stroke="currentColor"
|
|
1073
|
+
stroke-width="2"
|
|
1074
|
+
stroke-linecap="round"
|
|
1075
|
+
stroke-linejoin="round"
|
|
1076
|
+
class="cyfeather cyfeather-corner-right-down"
|
|
1077
|
+
viewBox="0 0 24 24"
|
|
1078
|
+
id="fto-corner-right-down"
|
|
1079
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1080
|
+
>
|
|
1081
|
+
<path d="m10 15 5 5 5-5" />
|
|
1082
|
+
<path d="M4 4h7a4 4 0 0 1 4 4v12" />
|
|
1083
|
+
</symbol>
|
|
1084
|
+
<symbol
|
|
1085
|
+
fill="none"
|
|
1086
|
+
stroke="currentColor"
|
|
1087
|
+
stroke-width="2"
|
|
1088
|
+
stroke-linecap="round"
|
|
1089
|
+
stroke-linejoin="round"
|
|
1090
|
+
class="czfeather czfeather-corner-right-up"
|
|
1091
|
+
viewBox="0 0 24 24"
|
|
1092
|
+
id="fto-corner-right-up"
|
|
1093
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1094
|
+
>
|
|
1095
|
+
<path d="m10 9 5-5 5 5" />
|
|
1096
|
+
<path d="M4 20h7a4 4 0 0 0 4-4V4" />
|
|
1097
|
+
</symbol>
|
|
1098
|
+
<symbol
|
|
1099
|
+
fill="none"
|
|
1100
|
+
stroke="currentColor"
|
|
1101
|
+
stroke-width="2"
|
|
1102
|
+
stroke-linecap="round"
|
|
1103
|
+
stroke-linejoin="round"
|
|
1104
|
+
class="dafeather dafeather-corner-up-left"
|
|
1105
|
+
viewBox="0 0 24 24"
|
|
1106
|
+
id="fto-corner-up-left"
|
|
1107
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1108
|
+
>
|
|
1109
|
+
<path d="M9 14 4 9l5-5" />
|
|
1110
|
+
<path d="M20 20v-7a4 4 0 0 0-4-4H4" />
|
|
1111
|
+
</symbol>
|
|
1112
|
+
<symbol
|
|
1113
|
+
fill="none"
|
|
1114
|
+
stroke="currentColor"
|
|
1115
|
+
stroke-width="2"
|
|
1116
|
+
stroke-linecap="round"
|
|
1117
|
+
stroke-linejoin="round"
|
|
1118
|
+
class="dbfeather dbfeather-corner-up-right"
|
|
1119
|
+
viewBox="0 0 24 24"
|
|
1120
|
+
id="fto-corner-up-right"
|
|
1121
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1122
|
+
>
|
|
1123
|
+
<path d="m15 14 5-5-5-5" />
|
|
1124
|
+
<path d="M4 20v-7a4 4 0 0 1 4-4h12" />
|
|
1125
|
+
</symbol>
|
|
1126
|
+
<symbol
|
|
1127
|
+
fill="none"
|
|
1128
|
+
stroke="currentColor"
|
|
1129
|
+
stroke-width="2"
|
|
1130
|
+
stroke-linecap="round"
|
|
1131
|
+
stroke-linejoin="round"
|
|
1132
|
+
class="dcfeather dcfeather-cpu"
|
|
1133
|
+
viewBox="0 0 24 24"
|
|
1134
|
+
id="fto-cpu"
|
|
1135
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1136
|
+
>
|
|
1137
|
+
<rect x="4" y="4" width="16" height="16" rx="2" ry="2" />
|
|
1138
|
+
<path d="M9 9h6v6H9zM9 1v3M15 1v3M9 20v3M15 20v3M20 9h3M20 14h3M1 9h3M1 14h3" />
|
|
1139
|
+
</symbol>
|
|
1140
|
+
<symbol
|
|
1141
|
+
fill="none"
|
|
1142
|
+
stroke="currentColor"
|
|
1143
|
+
stroke-width="2"
|
|
1144
|
+
stroke-linecap="round"
|
|
1145
|
+
stroke-linejoin="round"
|
|
1146
|
+
class="ddfeather ddfeather-credit-card"
|
|
1147
|
+
viewBox="0 0 24 24"
|
|
1148
|
+
id="fto-credit-card"
|
|
1149
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1150
|
+
>
|
|
1151
|
+
<rect x="1" y="4" width="22" height="16" rx="2" ry="2" />
|
|
1152
|
+
<path d="M1 10h22" />
|
|
1153
|
+
</symbol>
|
|
1154
|
+
<symbol
|
|
1155
|
+
fill="none"
|
|
1156
|
+
stroke="currentColor"
|
|
1157
|
+
stroke-width="2"
|
|
1158
|
+
stroke-linecap="round"
|
|
1159
|
+
stroke-linejoin="round"
|
|
1160
|
+
class="defeather defeather-crop"
|
|
1161
|
+
viewBox="0 0 24 24"
|
|
1162
|
+
id="fto-crop"
|
|
1163
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1164
|
+
>
|
|
1165
|
+
<path d="M6.13 1 6 16a2 2 0 0 0 2 2h15" />
|
|
1166
|
+
<path d="M1 6.13 16 6a2 2 0 0 1 2 2v15" />
|
|
1167
|
+
</symbol>
|
|
1168
|
+
<symbol
|
|
1169
|
+
fill="none"
|
|
1170
|
+
stroke="currentColor"
|
|
1171
|
+
stroke-width="2"
|
|
1172
|
+
stroke-linecap="round"
|
|
1173
|
+
stroke-linejoin="round"
|
|
1174
|
+
class="dffeather dffeather-crosshair"
|
|
1175
|
+
viewBox="0 0 24 24"
|
|
1176
|
+
id="fto-crosshair"
|
|
1177
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1178
|
+
>
|
|
1179
|
+
<circle cx="12" cy="12" r="10" />
|
|
1180
|
+
<path d="M22 12h-4M6 12H2M12 6V2M12 22v-4" />
|
|
1181
|
+
</symbol>
|
|
1182
|
+
<symbol
|
|
1183
|
+
fill="none"
|
|
1184
|
+
stroke="currentColor"
|
|
1185
|
+
stroke-width="2"
|
|
1186
|
+
stroke-linecap="round"
|
|
1187
|
+
stroke-linejoin="round"
|
|
1188
|
+
class="dgfeather dgfeather-database"
|
|
1189
|
+
viewBox="0 0 24 24"
|
|
1190
|
+
id="fto-database"
|
|
1191
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1192
|
+
>
|
|
1193
|
+
<ellipse cx="12" cy="5" rx="9" ry="3" />
|
|
1194
|
+
<path d="M21 12c0 1.66-4 3-9 3s-9-1.34-9-3" />
|
|
1195
|
+
<path d="M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5" />
|
|
1196
|
+
</symbol>
|
|
1197
|
+
<symbol
|
|
1198
|
+
fill="none"
|
|
1199
|
+
stroke="currentColor"
|
|
1200
|
+
stroke-width="2"
|
|
1201
|
+
stroke-linecap="round"
|
|
1202
|
+
stroke-linejoin="round"
|
|
1203
|
+
class="dhfeather dhfeather-delete"
|
|
1204
|
+
viewBox="0 0 24 24"
|
|
1205
|
+
id="fto-delete"
|
|
1206
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1207
|
+
>
|
|
1208
|
+
<path d="M21 4H8l-7 8 7 8h13a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zM18 9l-6 6M12 9l6 6" />
|
|
1209
|
+
</symbol>
|
|
1210
|
+
<symbol
|
|
1211
|
+
fill="none"
|
|
1212
|
+
stroke="currentColor"
|
|
1213
|
+
stroke-width="2"
|
|
1214
|
+
stroke-linecap="round"
|
|
1215
|
+
stroke-linejoin="round"
|
|
1216
|
+
class="difeather difeather-disc"
|
|
1217
|
+
viewBox="0 0 24 24"
|
|
1218
|
+
id="fto-disc"
|
|
1219
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1220
|
+
>
|
|
1221
|
+
<circle cx="12" cy="12" r="10" />
|
|
1222
|
+
<circle cx="12" cy="12" r="3" />
|
|
1223
|
+
</symbol>
|
|
1224
|
+
<symbol
|
|
1225
|
+
fill="none"
|
|
1226
|
+
stroke="currentColor"
|
|
1227
|
+
stroke-width="2"
|
|
1228
|
+
stroke-linecap="round"
|
|
1229
|
+
stroke-linejoin="round"
|
|
1230
|
+
class="djfeather djfeather-dollar-sign"
|
|
1231
|
+
viewBox="0 0 24 24"
|
|
1232
|
+
id="fto-dollar-sign"
|
|
1233
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1234
|
+
>
|
|
1235
|
+
<path d="M12 1v22M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6" />
|
|
1236
|
+
</symbol>
|
|
1237
|
+
<symbol
|
|
1238
|
+
fill="none"
|
|
1239
|
+
stroke="currentColor"
|
|
1240
|
+
stroke-width="2"
|
|
1241
|
+
stroke-linecap="round"
|
|
1242
|
+
stroke-linejoin="round"
|
|
1243
|
+
class="dlfeather dlfeather-download"
|
|
1244
|
+
viewBox="0 0 24 24"
|
|
1245
|
+
id="fto-download"
|
|
1246
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1247
|
+
>
|
|
1248
|
+
<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M7 10l5 5 5-5M12 15V3" />
|
|
1249
|
+
</symbol>
|
|
1250
|
+
<symbol
|
|
1251
|
+
fill="none"
|
|
1252
|
+
stroke="currentColor"
|
|
1253
|
+
stroke-width="2"
|
|
1254
|
+
stroke-linecap="round"
|
|
1255
|
+
stroke-linejoin="round"
|
|
1256
|
+
class="dkfeather dkfeather-download-cloud"
|
|
1257
|
+
viewBox="0 0 24 24"
|
|
1258
|
+
id="fto-download-cloud"
|
|
1259
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1260
|
+
>
|
|
1261
|
+
<path d="m8 17 4 4 4-4M12 12v9" />
|
|
1262
|
+
<path d="M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29" />
|
|
1263
|
+
</symbol>
|
|
1264
|
+
<symbol
|
|
1265
|
+
fill="none"
|
|
1266
|
+
stroke="currentColor"
|
|
1267
|
+
stroke-width="2"
|
|
1268
|
+
stroke-linecap="round"
|
|
1269
|
+
stroke-linejoin="round"
|
|
1270
|
+
class="dmfeather dmfeather-droplet"
|
|
1271
|
+
viewBox="0 0 24 24"
|
|
1272
|
+
id="fto-droplet"
|
|
1273
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1274
|
+
>
|
|
1275
|
+
<path d="m12 2.69 5.66 5.66a8 8 0 1 1-11.31 0z" />
|
|
1276
|
+
</symbol>
|
|
1277
|
+
<symbol
|
|
1278
|
+
fill="none"
|
|
1279
|
+
stroke="currentColor"
|
|
1280
|
+
stroke-width="2"
|
|
1281
|
+
stroke-linecap="round"
|
|
1282
|
+
stroke-linejoin="round"
|
|
1283
|
+
class="dpfeather dpfeather-edit"
|
|
1284
|
+
viewBox="0 0 24 24"
|
|
1285
|
+
id="fto-edit"
|
|
1286
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1287
|
+
>
|
|
1288
|
+
<path d="M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" />
|
|
1289
|
+
<path d="M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z" />
|
|
1290
|
+
</symbol>
|
|
1291
|
+
<symbol
|
|
1292
|
+
fill="none"
|
|
1293
|
+
stroke="currentColor"
|
|
1294
|
+
stroke-width="2"
|
|
1295
|
+
stroke-linecap="round"
|
|
1296
|
+
stroke-linejoin="round"
|
|
1297
|
+
class="dnfeather dnfeather-edit-2"
|
|
1298
|
+
viewBox="0 0 24 24"
|
|
1299
|
+
id="fto-edit-2"
|
|
1300
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1301
|
+
>
|
|
1302
|
+
<path d="M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z" />
|
|
1303
|
+
</symbol>
|
|
1304
|
+
<symbol
|
|
1305
|
+
fill="none"
|
|
1306
|
+
stroke="currentColor"
|
|
1307
|
+
stroke-width="2"
|
|
1308
|
+
stroke-linecap="round"
|
|
1309
|
+
stroke-linejoin="round"
|
|
1310
|
+
class="dofeather dofeather-edit-3"
|
|
1311
|
+
viewBox="0 0 24 24"
|
|
1312
|
+
id="fto-edit-3"
|
|
1313
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1314
|
+
>
|
|
1315
|
+
<path d="M12 20h9M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z" />
|
|
1316
|
+
</symbol>
|
|
1317
|
+
<symbol
|
|
1318
|
+
fill="none"
|
|
1319
|
+
stroke="currentColor"
|
|
1320
|
+
stroke-width="2"
|
|
1321
|
+
stroke-linecap="round"
|
|
1322
|
+
stroke-linejoin="round"
|
|
1323
|
+
class="dqfeather dqfeather-external-link"
|
|
1324
|
+
viewBox="0 0 24 24"
|
|
1325
|
+
id="fto-external-link"
|
|
1326
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1327
|
+
>
|
|
1328
|
+
<path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6M15 3h6v6M10 14 21 3" />
|
|
1329
|
+
</symbol>
|
|
1330
|
+
<symbol
|
|
1331
|
+
fill="none"
|
|
1332
|
+
stroke="currentColor"
|
|
1333
|
+
stroke-width="2"
|
|
1334
|
+
stroke-linecap="round"
|
|
1335
|
+
stroke-linejoin="round"
|
|
1336
|
+
class="dsfeather dsfeather-eye"
|
|
1337
|
+
viewBox="0 0 24 24"
|
|
1338
|
+
id="fto-eye"
|
|
1339
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1340
|
+
>
|
|
1341
|
+
<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z" />
|
|
1342
|
+
<circle cx="12" cy="12" r="3" />
|
|
1343
|
+
</symbol>
|
|
1344
|
+
<symbol
|
|
1345
|
+
fill="none"
|
|
1346
|
+
stroke="currentColor"
|
|
1347
|
+
stroke-width="2"
|
|
1348
|
+
stroke-linecap="round"
|
|
1349
|
+
stroke-linejoin="round"
|
|
1350
|
+
class="drfeather drfeather-eye-off"
|
|
1351
|
+
viewBox="0 0 24 24"
|
|
1352
|
+
id="fto-eye-off"
|
|
1353
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1354
|
+
>
|
|
1355
|
+
<path
|
|
1356
|
+
d="M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24M1 1l22 22"
|
|
1357
|
+
/>
|
|
1358
|
+
</symbol>
|
|
1359
|
+
<symbol
|
|
1360
|
+
fill="none"
|
|
1361
|
+
stroke="currentColor"
|
|
1362
|
+
stroke-width="2"
|
|
1363
|
+
stroke-linecap="round"
|
|
1364
|
+
stroke-linejoin="round"
|
|
1365
|
+
class="dtfeather dtfeather-facebook"
|
|
1366
|
+
viewBox="0 0 24 24"
|
|
1367
|
+
id="fto-facebook"
|
|
1368
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1369
|
+
>
|
|
1370
|
+
<path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z" />
|
|
1371
|
+
</symbol>
|
|
1372
|
+
<symbol
|
|
1373
|
+
fill="none"
|
|
1374
|
+
stroke="currentColor"
|
|
1375
|
+
stroke-width="2"
|
|
1376
|
+
stroke-linecap="round"
|
|
1377
|
+
stroke-linejoin="round"
|
|
1378
|
+
class="dufeather dufeather-fast-forward"
|
|
1379
|
+
viewBox="0 0 24 24"
|
|
1380
|
+
id="fto-fast-forward"
|
|
1381
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1382
|
+
>
|
|
1383
|
+
<path d="m13 19 9-7-9-7v14zM2 19l9-7-9-7v14z" />
|
|
1384
|
+
</symbol>
|
|
1385
|
+
<symbol
|
|
1386
|
+
fill="none"
|
|
1387
|
+
stroke="currentColor"
|
|
1388
|
+
stroke-width="2"
|
|
1389
|
+
stroke-linecap="round"
|
|
1390
|
+
stroke-linejoin="round"
|
|
1391
|
+
class="dvfeather dvfeather-feather"
|
|
1392
|
+
viewBox="0 0 24 24"
|
|
1393
|
+
id="fto-feather"
|
|
1394
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1395
|
+
>
|
|
1396
|
+
<path d="M20.24 12.24a6 6 0 0 0-8.49-8.49L5 10.5V19h8.5zM16 8 2 22M17.5 15H9" />
|
|
1397
|
+
</symbol>
|
|
1398
|
+
<symbol
|
|
1399
|
+
fill="none"
|
|
1400
|
+
stroke="currentColor"
|
|
1401
|
+
stroke-width="2"
|
|
1402
|
+
stroke-linecap="round"
|
|
1403
|
+
stroke-linejoin="round"
|
|
1404
|
+
class="dwfeather dwfeather-figma"
|
|
1405
|
+
viewBox="0 0 24 24"
|
|
1406
|
+
id="fto-figma"
|
|
1407
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1408
|
+
>
|
|
1409
|
+
<path d="M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5zM12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z" />
|
|
1410
|
+
<path
|
|
1411
|
+
d="M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0zM5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0zM5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z"
|
|
1412
|
+
/>
|
|
1413
|
+
</symbol>
|
|
1414
|
+
<symbol
|
|
1415
|
+
fill="none"
|
|
1416
|
+
stroke="currentColor"
|
|
1417
|
+
stroke-width="2"
|
|
1418
|
+
stroke-linecap="round"
|
|
1419
|
+
stroke-linejoin="round"
|
|
1420
|
+
class="eafeather eafeather-file"
|
|
1421
|
+
viewBox="0 0 24 24"
|
|
1422
|
+
id="fto-file"
|
|
1423
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1424
|
+
>
|
|
1425
|
+
<path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z" />
|
|
1426
|
+
<path d="M13 2v7h7" />
|
|
1427
|
+
</symbol>
|
|
1428
|
+
<symbol
|
|
1429
|
+
fill="none"
|
|
1430
|
+
stroke="currentColor"
|
|
1431
|
+
stroke-width="2"
|
|
1432
|
+
stroke-linecap="round"
|
|
1433
|
+
stroke-linejoin="round"
|
|
1434
|
+
class="dxfeather dxfeather-file-minus"
|
|
1435
|
+
viewBox="0 0 24 24"
|
|
1436
|
+
id="fto-file-minus"
|
|
1437
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1438
|
+
>
|
|
1439
|
+
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" />
|
|
1440
|
+
<path d="M14 2v6h6M9 15h6" />
|
|
1441
|
+
</symbol>
|
|
1442
|
+
<symbol
|
|
1443
|
+
fill="none"
|
|
1444
|
+
stroke="currentColor"
|
|
1445
|
+
stroke-width="2"
|
|
1446
|
+
stroke-linecap="round"
|
|
1447
|
+
stroke-linejoin="round"
|
|
1448
|
+
class="dyfeather dyfeather-file-plus"
|
|
1449
|
+
viewBox="0 0 24 24"
|
|
1450
|
+
id="fto-file-plus"
|
|
1451
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1452
|
+
>
|
|
1453
|
+
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" />
|
|
1454
|
+
<path d="M14 2v6h6M12 18v-6M9 15h6" />
|
|
1455
|
+
</symbol>
|
|
1456
|
+
<symbol
|
|
1457
|
+
fill="none"
|
|
1458
|
+
stroke="currentColor"
|
|
1459
|
+
stroke-width="2"
|
|
1460
|
+
stroke-linecap="round"
|
|
1461
|
+
stroke-linejoin="round"
|
|
1462
|
+
class="dzfeather dzfeather-file-text"
|
|
1463
|
+
viewBox="0 0 24 24"
|
|
1464
|
+
id="fto-file-text"
|
|
1465
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1466
|
+
>
|
|
1467
|
+
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" />
|
|
1468
|
+
<path d="M14 2v6h6M16 13H8M16 17H8M10 9H8" />
|
|
1469
|
+
</symbol>
|
|
1470
|
+
<symbol
|
|
1471
|
+
fill="none"
|
|
1472
|
+
stroke="currentColor"
|
|
1473
|
+
stroke-width="2"
|
|
1474
|
+
stroke-linecap="round"
|
|
1475
|
+
stroke-linejoin="round"
|
|
1476
|
+
class="ebfeather ebfeather-film"
|
|
1477
|
+
viewBox="0 0 24 24"
|
|
1478
|
+
id="fto-film"
|
|
1479
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1480
|
+
>
|
|
1481
|
+
<rect x="2" y="2" width="20" height="20" rx="2.18" ry="2.18" />
|
|
1482
|
+
<path d="M7 2v20M17 2v20M2 12h20M2 7h5M2 17h5M17 17h5M17 7h5" />
|
|
1483
|
+
</symbol>
|
|
1484
|
+
<symbol
|
|
1485
|
+
fill="none"
|
|
1486
|
+
stroke="currentColor"
|
|
1487
|
+
stroke-width="2"
|
|
1488
|
+
stroke-linecap="round"
|
|
1489
|
+
stroke-linejoin="round"
|
|
1490
|
+
class="ecfeather ecfeather-filter"
|
|
1491
|
+
viewBox="0 0 24 24"
|
|
1492
|
+
id="fto-filter"
|
|
1493
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1494
|
+
>
|
|
1495
|
+
<path d="M22 3H2l8 9.46V19l4 2v-8.54L22 3z" />
|
|
1496
|
+
</symbol>
|
|
1497
|
+
<symbol
|
|
1498
|
+
fill="none"
|
|
1499
|
+
stroke="currentColor"
|
|
1500
|
+
stroke-width="2"
|
|
1501
|
+
stroke-linecap="round"
|
|
1502
|
+
stroke-linejoin="round"
|
|
1503
|
+
class="edfeather edfeather-flag"
|
|
1504
|
+
viewBox="0 0 24 24"
|
|
1505
|
+
id="fto-flag"
|
|
1506
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1507
|
+
>
|
|
1508
|
+
<path d="M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1zM4 22v-7" />
|
|
1509
|
+
</symbol>
|
|
1510
|
+
<symbol
|
|
1511
|
+
fill="none"
|
|
1512
|
+
stroke="currentColor"
|
|
1513
|
+
stroke-width="2"
|
|
1514
|
+
stroke-linecap="round"
|
|
1515
|
+
stroke-linejoin="round"
|
|
1516
|
+
class="egfeather egfeather-folder"
|
|
1517
|
+
viewBox="0 0 24 24"
|
|
1518
|
+
id="fto-folder"
|
|
1519
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1520
|
+
>
|
|
1521
|
+
<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" />
|
|
1522
|
+
</symbol>
|
|
1523
|
+
<symbol
|
|
1524
|
+
fill="none"
|
|
1525
|
+
stroke="currentColor"
|
|
1526
|
+
stroke-width="2"
|
|
1527
|
+
stroke-linecap="round"
|
|
1528
|
+
stroke-linejoin="round"
|
|
1529
|
+
class="eefeather eefeather-folder-minus"
|
|
1530
|
+
viewBox="0 0 24 24"
|
|
1531
|
+
id="fto-folder-minus"
|
|
1532
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1533
|
+
>
|
|
1534
|
+
<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2zM9 14h6" />
|
|
1535
|
+
</symbol>
|
|
1536
|
+
<symbol
|
|
1537
|
+
fill="none"
|
|
1538
|
+
stroke="currentColor"
|
|
1539
|
+
stroke-width="2"
|
|
1540
|
+
stroke-linecap="round"
|
|
1541
|
+
stroke-linejoin="round"
|
|
1542
|
+
class="effeather effeather-folder-plus"
|
|
1543
|
+
viewBox="0 0 24 24"
|
|
1544
|
+
id="fto-folder-plus"
|
|
1545
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1546
|
+
>
|
|
1547
|
+
<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2zM12 11v6M9 14h6" />
|
|
1548
|
+
</symbol>
|
|
1549
|
+
<symbol
|
|
1550
|
+
fill="none"
|
|
1551
|
+
stroke="currentColor"
|
|
1552
|
+
stroke-width="2"
|
|
1553
|
+
stroke-linecap="round"
|
|
1554
|
+
stroke-linejoin="round"
|
|
1555
|
+
class="ehfeather ehfeather-frown"
|
|
1556
|
+
viewBox="0 0 24 24"
|
|
1557
|
+
id="fto-frown"
|
|
1558
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1559
|
+
>
|
|
1560
|
+
<circle cx="12" cy="12" r="10" />
|
|
1561
|
+
<path d="M16 16s-1.5-2-4-2-4 2-4 2M9 9h.01M15 9h.01" />
|
|
1562
|
+
</symbol>
|
|
1563
|
+
<symbol
|
|
1564
|
+
fill="none"
|
|
1565
|
+
stroke="currentColor"
|
|
1566
|
+
stroke-width="2"
|
|
1567
|
+
stroke-linecap="round"
|
|
1568
|
+
stroke-linejoin="round"
|
|
1569
|
+
class="eifeather eifeather-gift"
|
|
1570
|
+
viewBox="0 0 24 24"
|
|
1571
|
+
id="fto-gift"
|
|
1572
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1573
|
+
>
|
|
1574
|
+
<path
|
|
1575
|
+
d="M20 12v10H4V12M2 7h20v5H2zM12 22V7M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7zM12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z"
|
|
1576
|
+
/>
|
|
1577
|
+
</symbol>
|
|
1578
|
+
<symbol
|
|
1579
|
+
fill="none"
|
|
1580
|
+
stroke="currentColor"
|
|
1581
|
+
stroke-width="2"
|
|
1582
|
+
stroke-linecap="round"
|
|
1583
|
+
stroke-linejoin="round"
|
|
1584
|
+
class="ejfeather ejfeather-git-branch"
|
|
1585
|
+
viewBox="0 0 24 24"
|
|
1586
|
+
id="fto-git-branch"
|
|
1587
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1588
|
+
>
|
|
1589
|
+
<path d="M6 3v12" />
|
|
1590
|
+
<circle cx="18" cy="6" r="3" />
|
|
1591
|
+
<circle cx="6" cy="18" r="3" />
|
|
1592
|
+
<path d="M18 9a9 9 0 0 1-9 9" />
|
|
1593
|
+
</symbol>
|
|
1594
|
+
<symbol
|
|
1595
|
+
fill="none"
|
|
1596
|
+
stroke="currentColor"
|
|
1597
|
+
stroke-width="2"
|
|
1598
|
+
stroke-linecap="round"
|
|
1599
|
+
stroke-linejoin="round"
|
|
1600
|
+
class="ekfeather ekfeather-git-commit"
|
|
1601
|
+
viewBox="0 0 24 24"
|
|
1602
|
+
id="fto-git-commit"
|
|
1603
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1604
|
+
>
|
|
1605
|
+
<circle cx="12" cy="12" r="4" />
|
|
1606
|
+
<path d="M1.05 12H7M17.01 12h5.95" />
|
|
1607
|
+
</symbol>
|
|
1608
|
+
<symbol
|
|
1609
|
+
fill="none"
|
|
1610
|
+
stroke="currentColor"
|
|
1611
|
+
stroke-width="2"
|
|
1612
|
+
stroke-linecap="round"
|
|
1613
|
+
stroke-linejoin="round"
|
|
1614
|
+
class="elfeather elfeather-git-merge"
|
|
1615
|
+
viewBox="0 0 24 24"
|
|
1616
|
+
id="fto-git-merge"
|
|
1617
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1618
|
+
>
|
|
1619
|
+
<circle cx="18" cy="18" r="3" />
|
|
1620
|
+
<circle cx="6" cy="6" r="3" />
|
|
1621
|
+
<path d="M6 21V9a9 9 0 0 0 9 9" />
|
|
1622
|
+
</symbol>
|
|
1623
|
+
<symbol
|
|
1624
|
+
fill="none"
|
|
1625
|
+
stroke="currentColor"
|
|
1626
|
+
stroke-width="2"
|
|
1627
|
+
stroke-linecap="round"
|
|
1628
|
+
stroke-linejoin="round"
|
|
1629
|
+
class="emfeather emfeather-git-pull-request"
|
|
1630
|
+
viewBox="0 0 24 24"
|
|
1631
|
+
id="fto-git-pull-request"
|
|
1632
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1633
|
+
>
|
|
1634
|
+
<circle cx="18" cy="18" r="3" />
|
|
1635
|
+
<circle cx="6" cy="6" r="3" />
|
|
1636
|
+
<path d="M13 6h3a2 2 0 0 1 2 2v7M6 9v12" />
|
|
1637
|
+
</symbol>
|
|
1638
|
+
<symbol
|
|
1639
|
+
fill="none"
|
|
1640
|
+
stroke="currentColor"
|
|
1641
|
+
stroke-width="2"
|
|
1642
|
+
stroke-linecap="round"
|
|
1643
|
+
stroke-linejoin="round"
|
|
1644
|
+
class="enfeather enfeather-github"
|
|
1645
|
+
viewBox="0 0 24 24"
|
|
1646
|
+
id="fto-github"
|
|
1647
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1648
|
+
>
|
|
1649
|
+
<path
|
|
1650
|
+
d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"
|
|
1651
|
+
/>
|
|
1652
|
+
</symbol>
|
|
1653
|
+
<symbol
|
|
1654
|
+
fill="none"
|
|
1655
|
+
stroke="currentColor"
|
|
1656
|
+
stroke-width="2"
|
|
1657
|
+
stroke-linecap="round"
|
|
1658
|
+
stroke-linejoin="round"
|
|
1659
|
+
class="eofeather eofeather-gitlab"
|
|
1660
|
+
viewBox="0 0 24 24"
|
|
1661
|
+
id="fto-gitlab"
|
|
1662
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1663
|
+
>
|
|
1664
|
+
<path
|
|
1665
|
+
d="M22.65 14.39 12 22.13 1.35 14.39a.84.84 0 0 1-.3-.94l1.22-3.78 2.44-7.51A.42.42 0 0 1 4.82 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.49h8.1l2.44-7.51A.42.42 0 0 1 18.6 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.51L23 13.45a.84.84 0 0 1-.35.94z"
|
|
1666
|
+
/>
|
|
1667
|
+
</symbol>
|
|
1668
|
+
<symbol
|
|
1669
|
+
fill="none"
|
|
1670
|
+
stroke="currentColor"
|
|
1671
|
+
stroke-width="2"
|
|
1672
|
+
stroke-linecap="round"
|
|
1673
|
+
stroke-linejoin="round"
|
|
1674
|
+
class="epfeather epfeather-globe"
|
|
1675
|
+
viewBox="0 0 24 24"
|
|
1676
|
+
id="fto-globe"
|
|
1677
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1678
|
+
>
|
|
1679
|
+
<circle cx="12" cy="12" r="10" />
|
|
1680
|
+
<path d="M2 12h20M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z" />
|
|
1681
|
+
</symbol>
|
|
1682
|
+
<symbol
|
|
1683
|
+
fill="none"
|
|
1684
|
+
stroke="currentColor"
|
|
1685
|
+
stroke-width="2"
|
|
1686
|
+
stroke-linecap="round"
|
|
1687
|
+
stroke-linejoin="round"
|
|
1688
|
+
class="eqfeather eqfeather-grid"
|
|
1689
|
+
viewBox="0 0 24 24"
|
|
1690
|
+
id="fto-grid"
|
|
1691
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1692
|
+
>
|
|
1693
|
+
<path d="M3 3h7v7H3zM14 3h7v7h-7zM14 14h7v7h-7zM3 14h7v7H3z" />
|
|
1694
|
+
</symbol>
|
|
1695
|
+
<symbol
|
|
1696
|
+
fill="none"
|
|
1697
|
+
stroke="currentColor"
|
|
1698
|
+
stroke-width="2"
|
|
1699
|
+
stroke-linecap="round"
|
|
1700
|
+
stroke-linejoin="round"
|
|
1701
|
+
class="erfeather erfeather-hard-drive"
|
|
1702
|
+
viewBox="0 0 24 24"
|
|
1703
|
+
id="fto-hard-drive"
|
|
1704
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1705
|
+
>
|
|
1706
|
+
<path
|
|
1707
|
+
d="M22 12H2M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11zM6 16h0M10 16h0"
|
|
1708
|
+
/>
|
|
1709
|
+
</symbol>
|
|
1710
|
+
<symbol
|
|
1711
|
+
fill="none"
|
|
1712
|
+
stroke="currentColor"
|
|
1713
|
+
stroke-width="2"
|
|
1714
|
+
stroke-linecap="round"
|
|
1715
|
+
stroke-linejoin="round"
|
|
1716
|
+
class="esfeather esfeather-hash"
|
|
1717
|
+
viewBox="0 0 24 24"
|
|
1718
|
+
id="fto-hash"
|
|
1719
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1720
|
+
>
|
|
1721
|
+
<path d="M4 9h16M4 15h16M10 3 8 21M16 3l-2 18" />
|
|
1722
|
+
</symbol>
|
|
1723
|
+
<symbol
|
|
1724
|
+
fill="none"
|
|
1725
|
+
stroke="currentColor"
|
|
1726
|
+
stroke-width="2"
|
|
1727
|
+
stroke-linecap="round"
|
|
1728
|
+
stroke-linejoin="round"
|
|
1729
|
+
class="etfeather etfeather-headphones"
|
|
1730
|
+
viewBox="0 0 24 24"
|
|
1731
|
+
id="fto-headphones"
|
|
1732
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1733
|
+
>
|
|
1734
|
+
<path d="M3 18v-6a9 9 0 0 1 18 0v6" />
|
|
1735
|
+
<path
|
|
1736
|
+
d="M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z"
|
|
1737
|
+
/>
|
|
1738
|
+
</symbol>
|
|
1739
|
+
<symbol
|
|
1740
|
+
fill="none"
|
|
1741
|
+
stroke="currentColor"
|
|
1742
|
+
stroke-width="2"
|
|
1743
|
+
stroke-linecap="round"
|
|
1744
|
+
stroke-linejoin="round"
|
|
1745
|
+
class="eufeather eufeather-heart"
|
|
1746
|
+
viewBox="0 0 24 24"
|
|
1747
|
+
id="fto-heart"
|
|
1748
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1749
|
+
>
|
|
1750
|
+
<path
|
|
1751
|
+
d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"
|
|
1752
|
+
/>
|
|
1753
|
+
</symbol>
|
|
1754
|
+
<symbol
|
|
1755
|
+
fill="none"
|
|
1756
|
+
stroke="currentColor"
|
|
1757
|
+
stroke-width="2"
|
|
1758
|
+
stroke-linecap="round"
|
|
1759
|
+
stroke-linejoin="round"
|
|
1760
|
+
class="evfeather evfeather-help-circle"
|
|
1761
|
+
viewBox="0 0 24 24"
|
|
1762
|
+
id="fto-help-circle"
|
|
1763
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1764
|
+
>
|
|
1765
|
+
<circle cx="12" cy="12" r="10" />
|
|
1766
|
+
<path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3M12 17h0" />
|
|
1767
|
+
</symbol>
|
|
1768
|
+
<symbol
|
|
1769
|
+
fill="none"
|
|
1770
|
+
stroke="currentColor"
|
|
1771
|
+
stroke-width="2"
|
|
1772
|
+
stroke-linecap="round"
|
|
1773
|
+
stroke-linejoin="round"
|
|
1774
|
+
class="ewfeather ewfeather-hexagon"
|
|
1775
|
+
viewBox="0 0 24 24"
|
|
1776
|
+
id="fto-hexagon"
|
|
1777
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1778
|
+
>
|
|
1779
|
+
<path
|
|
1780
|
+
d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"
|
|
1781
|
+
/>
|
|
1782
|
+
</symbol>
|
|
1783
|
+
<symbol
|
|
1784
|
+
fill="none"
|
|
1785
|
+
stroke="currentColor"
|
|
1786
|
+
stroke-width="2"
|
|
1787
|
+
stroke-linecap="round"
|
|
1788
|
+
stroke-linejoin="round"
|
|
1789
|
+
class="exfeather exfeather-home"
|
|
1790
|
+
viewBox="0 0 24 24"
|
|
1791
|
+
id="fto-home"
|
|
1792
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1793
|
+
>
|
|
1794
|
+
<path d="m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" />
|
|
1795
|
+
<path d="M9 22V12h6v10" />
|
|
1796
|
+
</symbol>
|
|
1797
|
+
<symbol
|
|
1798
|
+
fill="none"
|
|
1799
|
+
stroke="currentColor"
|
|
1800
|
+
stroke-width="2"
|
|
1801
|
+
stroke-linecap="round"
|
|
1802
|
+
stroke-linejoin="round"
|
|
1803
|
+
class="eyfeather eyfeather-image"
|
|
1804
|
+
viewBox="0 0 24 24"
|
|
1805
|
+
id="fto-image"
|
|
1806
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1807
|
+
>
|
|
1808
|
+
<rect x="3" y="3" width="18" height="18" rx="2" ry="2" />
|
|
1809
|
+
<circle cx="8.5" cy="8.5" r="1.5" />
|
|
1810
|
+
<path d="m21 15-5-5L5 21" />
|
|
1811
|
+
</symbol>
|
|
1812
|
+
<symbol
|
|
1813
|
+
fill="none"
|
|
1814
|
+
stroke="currentColor"
|
|
1815
|
+
stroke-width="2"
|
|
1816
|
+
stroke-linecap="round"
|
|
1817
|
+
stroke-linejoin="round"
|
|
1818
|
+
class="ezfeather ezfeather-inbox"
|
|
1819
|
+
viewBox="0 0 24 24"
|
|
1820
|
+
id="fto-inbox"
|
|
1821
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1822
|
+
>
|
|
1823
|
+
<path d="M22 12h-6l-2 3h-4l-2-3H2" />
|
|
1824
|
+
<path
|
|
1825
|
+
d="M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"
|
|
1826
|
+
/>
|
|
1827
|
+
</symbol>
|
|
1828
|
+
<symbol
|
|
1829
|
+
fill="none"
|
|
1830
|
+
stroke="currentColor"
|
|
1831
|
+
stroke-width="2"
|
|
1832
|
+
stroke-linecap="round"
|
|
1833
|
+
stroke-linejoin="round"
|
|
1834
|
+
class="fafeather fafeather-info"
|
|
1835
|
+
viewBox="0 0 24 24"
|
|
1836
|
+
id="fto-info"
|
|
1837
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1838
|
+
>
|
|
1839
|
+
<circle cx="12" cy="12" r="10" />
|
|
1840
|
+
<path d="M12 16v-4M12 8h0" />
|
|
1841
|
+
</symbol>
|
|
1842
|
+
<symbol
|
|
1843
|
+
fill="none"
|
|
1844
|
+
stroke="currentColor"
|
|
1845
|
+
stroke-width="2"
|
|
1846
|
+
stroke-linecap="round"
|
|
1847
|
+
stroke-linejoin="round"
|
|
1848
|
+
class="fbfeather fbfeather-instagram"
|
|
1849
|
+
viewBox="0 0 24 24"
|
|
1850
|
+
id="fto-instagram"
|
|
1851
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1852
|
+
>
|
|
1853
|
+
<rect x="2" y="2" width="20" height="20" rx="5" ry="5" />
|
|
1854
|
+
<path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37zM17.5 6.5h0" />
|
|
1855
|
+
</symbol>
|
|
1856
|
+
<symbol
|
|
1857
|
+
fill="none"
|
|
1858
|
+
stroke="currentColor"
|
|
1859
|
+
stroke-width="2"
|
|
1860
|
+
stroke-linecap="round"
|
|
1861
|
+
stroke-linejoin="round"
|
|
1862
|
+
class="fcfeather fcfeather-italic"
|
|
1863
|
+
viewBox="0 0 24 24"
|
|
1864
|
+
id="fto-italic"
|
|
1865
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1866
|
+
>
|
|
1867
|
+
<path d="M19 4h-9M14 20H5M15 4 9 20" />
|
|
1868
|
+
</symbol>
|
|
1869
|
+
<symbol
|
|
1870
|
+
fill="none"
|
|
1871
|
+
stroke="currentColor"
|
|
1872
|
+
stroke-width="2"
|
|
1873
|
+
stroke-linecap="round"
|
|
1874
|
+
stroke-linejoin="round"
|
|
1875
|
+
class="fdfeather fdfeather-key"
|
|
1876
|
+
viewBox="0 0 24 24"
|
|
1877
|
+
id="fto-key"
|
|
1878
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1879
|
+
>
|
|
1880
|
+
<path
|
|
1881
|
+
d="m21 2-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0 3 3L22 7l-3-3m-3.5 3.5L19 4"
|
|
1882
|
+
/>
|
|
1883
|
+
</symbol>
|
|
1884
|
+
<symbol
|
|
1885
|
+
fill="none"
|
|
1886
|
+
stroke="currentColor"
|
|
1887
|
+
stroke-width="2"
|
|
1888
|
+
stroke-linecap="round"
|
|
1889
|
+
stroke-linejoin="round"
|
|
1890
|
+
class="fefeather fefeather-layers"
|
|
1891
|
+
viewBox="0 0 24 24"
|
|
1892
|
+
id="fto-layers"
|
|
1893
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1894
|
+
>
|
|
1895
|
+
<path d="M12 2 2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5" />
|
|
1896
|
+
</symbol>
|
|
1897
|
+
<symbol
|
|
1898
|
+
fill="none"
|
|
1899
|
+
stroke="currentColor"
|
|
1900
|
+
stroke-width="2"
|
|
1901
|
+
stroke-linecap="round"
|
|
1902
|
+
stroke-linejoin="round"
|
|
1903
|
+
class="fffeather fffeather-layout"
|
|
1904
|
+
viewBox="0 0 24 24"
|
|
1905
|
+
id="fto-layout"
|
|
1906
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1907
|
+
>
|
|
1908
|
+
<rect x="3" y="3" width="18" height="18" rx="2" ry="2" />
|
|
1909
|
+
<path d="M3 9h18M9 21V9" />
|
|
1910
|
+
</symbol>
|
|
1911
|
+
<symbol
|
|
1912
|
+
fill="none"
|
|
1913
|
+
stroke="currentColor"
|
|
1914
|
+
stroke-width="2"
|
|
1915
|
+
stroke-linecap="round"
|
|
1916
|
+
stroke-linejoin="round"
|
|
1917
|
+
class="fgfeather fgfeather-life-buoy"
|
|
1918
|
+
viewBox="0 0 24 24"
|
|
1919
|
+
id="fto-life-buoy"
|
|
1920
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1921
|
+
>
|
|
1922
|
+
<circle cx="12" cy="12" r="10" />
|
|
1923
|
+
<circle cx="12" cy="12" r="4" />
|
|
1924
|
+
<path
|
|
1925
|
+
d="m4.93 4.93 4.24 4.24M14.83 14.83l4.24 4.24M14.83 9.17l4.24-4.24M14.83 9.17l3.53-3.53M4.93 19.07l4.24-4.24"
|
|
1926
|
+
/>
|
|
1927
|
+
</symbol>
|
|
1928
|
+
<symbol
|
|
1929
|
+
fill="none"
|
|
1930
|
+
stroke="currentColor"
|
|
1931
|
+
stroke-width="2"
|
|
1932
|
+
stroke-linecap="round"
|
|
1933
|
+
stroke-linejoin="round"
|
|
1934
|
+
class="fifeather fifeather-link"
|
|
1935
|
+
viewBox="0 0 24 24"
|
|
1936
|
+
id="fto-link"
|
|
1937
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1938
|
+
>
|
|
1939
|
+
<path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" />
|
|
1940
|
+
<path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" />
|
|
1941
|
+
</symbol>
|
|
1942
|
+
<symbol
|
|
1943
|
+
fill="none"
|
|
1944
|
+
stroke="currentColor"
|
|
1945
|
+
stroke-width="2"
|
|
1946
|
+
stroke-linecap="round"
|
|
1947
|
+
stroke-linejoin="round"
|
|
1948
|
+
class="fhfeather fhfeather-link-2"
|
|
1949
|
+
viewBox="0 0 24 24"
|
|
1950
|
+
id="fto-link-2"
|
|
1951
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1952
|
+
>
|
|
1953
|
+
<path d="M15 7h3a5 5 0 0 1 5 5 5 5 0 0 1-5 5h-3m-6 0H6a5 5 0 0 1-5-5 5 5 0 0 1 5-5h3M8 12h8" />
|
|
1954
|
+
</symbol>
|
|
1955
|
+
<symbol
|
|
1956
|
+
fill="none"
|
|
1957
|
+
stroke="currentColor"
|
|
1958
|
+
stroke-width="2"
|
|
1959
|
+
stroke-linecap="round"
|
|
1960
|
+
stroke-linejoin="round"
|
|
1961
|
+
class="fjfeather fjfeather-linkedin"
|
|
1962
|
+
viewBox="0 0 24 24"
|
|
1963
|
+
id="fto-linkedin"
|
|
1964
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1965
|
+
>
|
|
1966
|
+
<path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6zM2 9h4v12H2z" />
|
|
1967
|
+
<circle cx="4" cy="4" r="2" />
|
|
1968
|
+
</symbol>
|
|
1969
|
+
<symbol
|
|
1970
|
+
fill="none"
|
|
1971
|
+
stroke="currentColor"
|
|
1972
|
+
stroke-width="2"
|
|
1973
|
+
stroke-linecap="round"
|
|
1974
|
+
stroke-linejoin="round"
|
|
1975
|
+
class="fkfeather fkfeather-list"
|
|
1976
|
+
viewBox="0 0 24 24"
|
|
1977
|
+
id="fto-list"
|
|
1978
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1979
|
+
>
|
|
1980
|
+
<path d="M8 6h13M8 12h13M8 18h13M3 6h0M3 12h0M3 18h0" />
|
|
1981
|
+
</symbol>
|
|
1982
|
+
<symbol
|
|
1983
|
+
fill="none"
|
|
1984
|
+
stroke="currentColor"
|
|
1985
|
+
stroke-width="2"
|
|
1986
|
+
stroke-linecap="round"
|
|
1987
|
+
stroke-linejoin="round"
|
|
1988
|
+
class="flfeather flfeather-loader"
|
|
1989
|
+
viewBox="0 0 24 24"
|
|
1990
|
+
id="fto-loader"
|
|
1991
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1992
|
+
>
|
|
1993
|
+
<path
|
|
1994
|
+
d="M12 2v4M12 18v4M4.93 4.93l2.83 2.83M16.24 16.24l2.83 2.83M2 12h4M18 12h4M4.93 19.07l2.83-2.83M16.24 7.76l2.83-2.83"
|
|
1995
|
+
/>
|
|
1996
|
+
</symbol>
|
|
1997
|
+
<symbol
|
|
1998
|
+
fill="none"
|
|
1999
|
+
stroke="currentColor"
|
|
2000
|
+
stroke-width="2"
|
|
2001
|
+
stroke-linecap="round"
|
|
2002
|
+
stroke-linejoin="round"
|
|
2003
|
+
class="fmfeather fmfeather-lock"
|
|
2004
|
+
viewBox="0 0 24 24"
|
|
2005
|
+
id="fto-lock"
|
|
2006
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2007
|
+
>
|
|
2008
|
+
<rect x="3" y="11" width="18" height="11" rx="2" ry="2" />
|
|
2009
|
+
<path d="M7 11V7a5 5 0 0 1 10 0v4" />
|
|
2010
|
+
</symbol>
|
|
2011
|
+
<symbol
|
|
2012
|
+
fill="none"
|
|
2013
|
+
stroke="currentColor"
|
|
2014
|
+
stroke-width="2"
|
|
2015
|
+
stroke-linecap="round"
|
|
2016
|
+
stroke-linejoin="round"
|
|
2017
|
+
class="fnfeather fnfeather-log-in"
|
|
2018
|
+
viewBox="0 0 24 24"
|
|
2019
|
+
id="fto-log-in"
|
|
2020
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2021
|
+
>
|
|
2022
|
+
<path d="M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4M10 17l5-5-5-5M15 12H3" />
|
|
2023
|
+
</symbol>
|
|
2024
|
+
<symbol
|
|
2025
|
+
fill="none"
|
|
2026
|
+
stroke="currentColor"
|
|
2027
|
+
stroke-width="2"
|
|
2028
|
+
stroke-linecap="round"
|
|
2029
|
+
stroke-linejoin="round"
|
|
2030
|
+
class="fofeather fofeather-log-out"
|
|
2031
|
+
viewBox="0 0 24 24"
|
|
2032
|
+
id="fto-log-out"
|
|
2033
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2034
|
+
>
|
|
2035
|
+
<path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4M16 17l5-5-5-5M21 12H9" />
|
|
2036
|
+
</symbol>
|
|
2037
|
+
<symbol
|
|
2038
|
+
fill="none"
|
|
2039
|
+
stroke="currentColor"
|
|
2040
|
+
stroke-width="2"
|
|
2041
|
+
stroke-linecap="round"
|
|
2042
|
+
stroke-linejoin="round"
|
|
2043
|
+
class="fpfeather fpfeather-mail"
|
|
2044
|
+
viewBox="0 0 24 24"
|
|
2045
|
+
id="fto-mail"
|
|
2046
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2047
|
+
>
|
|
2048
|
+
<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z" />
|
|
2049
|
+
<path d="m22 6-10 7L2 6" />
|
|
2050
|
+
</symbol>
|
|
2051
|
+
<symbol
|
|
2052
|
+
fill="none"
|
|
2053
|
+
stroke="currentColor"
|
|
2054
|
+
stroke-width="2"
|
|
2055
|
+
stroke-linecap="round"
|
|
2056
|
+
stroke-linejoin="round"
|
|
2057
|
+
class="frfeather frfeather-map"
|
|
2058
|
+
viewBox="0 0 24 24"
|
|
2059
|
+
id="fto-map"
|
|
2060
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2061
|
+
>
|
|
2062
|
+
<path d="M1 6v16l7-4 8 4 7-4V2l-7 4-8-4-7 4zM8 2v16M16 6v16" />
|
|
2063
|
+
</symbol>
|
|
2064
|
+
<symbol
|
|
2065
|
+
fill="none"
|
|
2066
|
+
stroke="currentColor"
|
|
2067
|
+
stroke-width="2"
|
|
2068
|
+
stroke-linecap="round"
|
|
2069
|
+
stroke-linejoin="round"
|
|
2070
|
+
class="fqfeather fqfeather-map-pin"
|
|
2071
|
+
viewBox="0 0 24 24"
|
|
2072
|
+
id="fto-map-pin"
|
|
2073
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2074
|
+
>
|
|
2075
|
+
<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z" />
|
|
2076
|
+
<circle cx="12" cy="10" r="3" />
|
|
2077
|
+
</symbol>
|
|
2078
|
+
<symbol
|
|
2079
|
+
fill="none"
|
|
2080
|
+
stroke="currentColor"
|
|
2081
|
+
stroke-width="2"
|
|
2082
|
+
stroke-linecap="round"
|
|
2083
|
+
stroke-linejoin="round"
|
|
2084
|
+
class="ftfeather ftfeather-maximize"
|
|
2085
|
+
viewBox="0 0 24 24"
|
|
2086
|
+
id="fto-maximize"
|
|
2087
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2088
|
+
>
|
|
2089
|
+
<path d="M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3" />
|
|
2090
|
+
</symbol>
|
|
2091
|
+
<symbol
|
|
2092
|
+
fill="none"
|
|
2093
|
+
stroke="currentColor"
|
|
2094
|
+
stroke-width="2"
|
|
2095
|
+
stroke-linecap="round"
|
|
2096
|
+
stroke-linejoin="round"
|
|
2097
|
+
class="fsfeather fsfeather-maximize-2"
|
|
2098
|
+
viewBox="0 0 24 24"
|
|
2099
|
+
id="fto-maximize-2"
|
|
2100
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2101
|
+
>
|
|
2102
|
+
<path d="M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7" />
|
|
2103
|
+
</symbol>
|
|
2104
|
+
<symbol
|
|
2105
|
+
fill="none"
|
|
2106
|
+
stroke="currentColor"
|
|
2107
|
+
stroke-width="2"
|
|
2108
|
+
stroke-linecap="round"
|
|
2109
|
+
stroke-linejoin="round"
|
|
2110
|
+
class="fufeather fufeather-meh"
|
|
2111
|
+
viewBox="0 0 24 24"
|
|
2112
|
+
id="fto-meh"
|
|
2113
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2114
|
+
>
|
|
2115
|
+
<circle cx="12" cy="12" r="10" />
|
|
2116
|
+
<path d="M8 15h8M9 9h.01M15 9h.01" />
|
|
2117
|
+
</symbol>
|
|
2118
|
+
<symbol
|
|
2119
|
+
fill="none"
|
|
2120
|
+
stroke="currentColor"
|
|
2121
|
+
stroke-width="2"
|
|
2122
|
+
stroke-linecap="round"
|
|
2123
|
+
stroke-linejoin="round"
|
|
2124
|
+
class="fvfeather fvfeather-menu"
|
|
2125
|
+
viewBox="0 0 24 24"
|
|
2126
|
+
id="fto-menu"
|
|
2127
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2128
|
+
>
|
|
2129
|
+
<path d="M3 12h18M3 6h18M3 18h18" />
|
|
2130
|
+
</symbol>
|
|
2131
|
+
<symbol
|
|
2132
|
+
fill="none"
|
|
2133
|
+
stroke="currentColor"
|
|
2134
|
+
stroke-width="2"
|
|
2135
|
+
stroke-linecap="round"
|
|
2136
|
+
stroke-linejoin="round"
|
|
2137
|
+
class="fwfeather fwfeather-message-circle"
|
|
2138
|
+
viewBox="0 0 24 24"
|
|
2139
|
+
id="fto-message-circle"
|
|
2140
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2141
|
+
>
|
|
2142
|
+
<path
|
|
2143
|
+
d="M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"
|
|
2144
|
+
/>
|
|
2145
|
+
</symbol>
|
|
2146
|
+
<symbol
|
|
2147
|
+
fill="none"
|
|
2148
|
+
stroke="currentColor"
|
|
2149
|
+
stroke-width="2"
|
|
2150
|
+
stroke-linecap="round"
|
|
2151
|
+
stroke-linejoin="round"
|
|
2152
|
+
class="fxfeather fxfeather-message-square"
|
|
2153
|
+
viewBox="0 0 24 24"
|
|
2154
|
+
id="fto-message-square"
|
|
2155
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2156
|
+
>
|
|
2157
|
+
<path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" />
|
|
2158
|
+
</symbol>
|
|
2159
|
+
<symbol
|
|
2160
|
+
fill="none"
|
|
2161
|
+
stroke="currentColor"
|
|
2162
|
+
stroke-width="2"
|
|
2163
|
+
stroke-linecap="round"
|
|
2164
|
+
stroke-linejoin="round"
|
|
2165
|
+
class="fzfeather fzfeather-mic"
|
|
2166
|
+
viewBox="0 0 24 24"
|
|
2167
|
+
id="fto-mic"
|
|
2168
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2169
|
+
>
|
|
2170
|
+
<path d="M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z" />
|
|
2171
|
+
<path d="M19 10v2a7 7 0 0 1-14 0v-2M12 19v4M8 23h8" />
|
|
2172
|
+
</symbol>
|
|
2173
|
+
<symbol
|
|
2174
|
+
fill="none"
|
|
2175
|
+
stroke="currentColor"
|
|
2176
|
+
stroke-width="2"
|
|
2177
|
+
stroke-linecap="round"
|
|
2178
|
+
stroke-linejoin="round"
|
|
2179
|
+
class="fyfeather fyfeather-mic-off"
|
|
2180
|
+
viewBox="0 0 24 24"
|
|
2181
|
+
id="fto-mic-off"
|
|
2182
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2183
|
+
>
|
|
2184
|
+
<path d="m1 1 22 22M9 9v3a3 3 0 0 0 5.12 2.12M15 9.34V4a3 3 0 0 0-5.94-.6" />
|
|
2185
|
+
<path d="M17 16.95A7 7 0 0 1 5 12v-2m14 0v2a7 7 0 0 1-.11 1.23M12 19v4M8 23h8" />
|
|
2186
|
+
</symbol>
|
|
2187
|
+
<symbol
|
|
2188
|
+
fill="none"
|
|
2189
|
+
stroke="currentColor"
|
|
2190
|
+
stroke-width="2"
|
|
2191
|
+
stroke-linecap="round"
|
|
2192
|
+
stroke-linejoin="round"
|
|
2193
|
+
class="gbfeather gbfeather-minimize"
|
|
2194
|
+
viewBox="0 0 24 24"
|
|
2195
|
+
id="fto-minimize"
|
|
2196
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2197
|
+
>
|
|
2198
|
+
<path d="M8 3v3a2 2 0 0 1-2 2H3m18 0h-3a2 2 0 0 1-2-2V3m0 18v-3a2 2 0 0 1 2-2h3M3 16h3a2 2 0 0 1 2 2v3" />
|
|
2199
|
+
</symbol>
|
|
2200
|
+
<symbol
|
|
2201
|
+
fill="none"
|
|
2202
|
+
stroke="currentColor"
|
|
2203
|
+
stroke-width="2"
|
|
2204
|
+
stroke-linecap="round"
|
|
2205
|
+
stroke-linejoin="round"
|
|
2206
|
+
class="gafeather gafeather-minimize-2"
|
|
2207
|
+
viewBox="0 0 24 24"
|
|
2208
|
+
id="fto-minimize-2"
|
|
2209
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2210
|
+
>
|
|
2211
|
+
<path d="M4 14h6v6M20 10h-6V4M14 10l7-7M3 21l7-7" />
|
|
2212
|
+
</symbol>
|
|
2213
|
+
<symbol
|
|
2214
|
+
fill="none"
|
|
2215
|
+
stroke="currentColor"
|
|
2216
|
+
stroke-width="2"
|
|
2217
|
+
stroke-linecap="round"
|
|
2218
|
+
stroke-linejoin="round"
|
|
2219
|
+
class="gefeather gefeather-minus"
|
|
2220
|
+
viewBox="0 0 24 24"
|
|
2221
|
+
id="fto-minus"
|
|
2222
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2223
|
+
>
|
|
2224
|
+
<path d="M5 12h14" />
|
|
2225
|
+
</symbol>
|
|
2226
|
+
<symbol
|
|
2227
|
+
fill="none"
|
|
2228
|
+
stroke="currentColor"
|
|
2229
|
+
stroke-width="2"
|
|
2230
|
+
stroke-linecap="round"
|
|
2231
|
+
stroke-linejoin="round"
|
|
2232
|
+
class="gcfeather gcfeather-minus-circle"
|
|
2233
|
+
viewBox="0 0 24 24"
|
|
2234
|
+
id="fto-minus-circle"
|
|
2235
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2236
|
+
>
|
|
2237
|
+
<circle cx="12" cy="12" r="10" />
|
|
2238
|
+
<path d="M8 12h8" />
|
|
2239
|
+
</symbol>
|
|
2240
|
+
<symbol
|
|
2241
|
+
fill="none"
|
|
2242
|
+
stroke="currentColor"
|
|
2243
|
+
stroke-width="2"
|
|
2244
|
+
stroke-linecap="round"
|
|
2245
|
+
stroke-linejoin="round"
|
|
2246
|
+
class="gdfeather gdfeather-minus-square"
|
|
2247
|
+
viewBox="0 0 24 24"
|
|
2248
|
+
id="fto-minus-square"
|
|
2249
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2250
|
+
>
|
|
2251
|
+
<rect x="3" y="3" width="18" height="18" rx="2" ry="2" />
|
|
2252
|
+
<path d="M8 12h8" />
|
|
2253
|
+
</symbol>
|
|
2254
|
+
<symbol
|
|
2255
|
+
fill="none"
|
|
2256
|
+
stroke="currentColor"
|
|
2257
|
+
stroke-width="2"
|
|
2258
|
+
stroke-linecap="round"
|
|
2259
|
+
stroke-linejoin="round"
|
|
2260
|
+
class="gffeather gffeather-monitor"
|
|
2261
|
+
viewBox="0 0 24 24"
|
|
2262
|
+
id="fto-monitor"
|
|
2263
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2264
|
+
>
|
|
2265
|
+
<rect x="2" y="3" width="20" height="14" rx="2" ry="2" />
|
|
2266
|
+
<path d="M8 21h8M12 17v4" />
|
|
2267
|
+
</symbol>
|
|
2268
|
+
<symbol
|
|
2269
|
+
fill="none"
|
|
2270
|
+
stroke="currentColor"
|
|
2271
|
+
stroke-width="2"
|
|
2272
|
+
stroke-linecap="round"
|
|
2273
|
+
stroke-linejoin="round"
|
|
2274
|
+
class="ggfeather ggfeather-moon"
|
|
2275
|
+
viewBox="0 0 24 24"
|
|
2276
|
+
id="fto-moon"
|
|
2277
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2278
|
+
>
|
|
2279
|
+
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z" />
|
|
2280
|
+
</symbol>
|
|
2281
|
+
<symbol
|
|
2282
|
+
fill="none"
|
|
2283
|
+
stroke="currentColor"
|
|
2284
|
+
stroke-width="2"
|
|
2285
|
+
stroke-linecap="round"
|
|
2286
|
+
stroke-linejoin="round"
|
|
2287
|
+
class="ghfeather ghfeather-more-horizontal"
|
|
2288
|
+
viewBox="0 0 24 24"
|
|
2289
|
+
id="fto-more-horizontal"
|
|
2290
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2291
|
+
>
|
|
2292
|
+
<circle cx="12" cy="12" r="1" />
|
|
2293
|
+
<circle cx="19" cy="12" r="1" />
|
|
2294
|
+
<circle cx="5" cy="12" r="1" />
|
|
2295
|
+
</symbol>
|
|
2296
|
+
<symbol
|
|
2297
|
+
fill="none"
|
|
2298
|
+
stroke="currentColor"
|
|
2299
|
+
stroke-width="2"
|
|
2300
|
+
stroke-linecap="round"
|
|
2301
|
+
stroke-linejoin="round"
|
|
2302
|
+
class="gifeather gifeather-more-vertical"
|
|
2303
|
+
viewBox="0 0 24 24"
|
|
2304
|
+
id="fto-more-vertical"
|
|
2305
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2306
|
+
>
|
|
2307
|
+
<circle cx="12" cy="12" r="1" />
|
|
2308
|
+
<circle cx="12" cy="5" r="1" />
|
|
2309
|
+
<circle cx="12" cy="19" r="1" />
|
|
2310
|
+
</symbol>
|
|
2311
|
+
<symbol
|
|
2312
|
+
fill="none"
|
|
2313
|
+
stroke="currentColor"
|
|
2314
|
+
stroke-width="2"
|
|
2315
|
+
stroke-linecap="round"
|
|
2316
|
+
stroke-linejoin="round"
|
|
2317
|
+
class="gjfeather gjfeather-mouse-pointer"
|
|
2318
|
+
viewBox="0 0 24 24"
|
|
2319
|
+
id="fto-mouse-pointer"
|
|
2320
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2321
|
+
>
|
|
2322
|
+
<path d="m3 3 7.07 16.97 2.51-7.39 7.39-2.51L3 3zM13 13l6 6" />
|
|
2323
|
+
</symbol>
|
|
2324
|
+
<symbol
|
|
2325
|
+
fill="none"
|
|
2326
|
+
stroke="currentColor"
|
|
2327
|
+
stroke-width="2"
|
|
2328
|
+
stroke-linecap="round"
|
|
2329
|
+
stroke-linejoin="round"
|
|
2330
|
+
class="gkfeather gkfeather-move"
|
|
2331
|
+
viewBox="0 0 24 24"
|
|
2332
|
+
id="fto-move"
|
|
2333
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2334
|
+
>
|
|
2335
|
+
<path d="m5 9-3 3 3 3M9 5l3-3 3 3M15 19l-3 3-3-3M19 9l3 3-3 3M2 12h20M12 2v20" />
|
|
2336
|
+
</symbol>
|
|
2337
|
+
<symbol
|
|
2338
|
+
fill="none"
|
|
2339
|
+
stroke="currentColor"
|
|
2340
|
+
stroke-width="2"
|
|
2341
|
+
stroke-linecap="round"
|
|
2342
|
+
stroke-linejoin="round"
|
|
2343
|
+
class="glfeather glfeather-music"
|
|
2344
|
+
viewBox="0 0 24 24"
|
|
2345
|
+
id="fto-music"
|
|
2346
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2347
|
+
>
|
|
2348
|
+
<path d="M9 18V5l12-2v13" />
|
|
2349
|
+
<circle cx="6" cy="18" r="3" />
|
|
2350
|
+
<circle cx="18" cy="16" r="3" />
|
|
2351
|
+
</symbol>
|
|
2352
|
+
<symbol
|
|
2353
|
+
fill="none"
|
|
2354
|
+
stroke="currentColor"
|
|
2355
|
+
stroke-width="2"
|
|
2356
|
+
stroke-linecap="round"
|
|
2357
|
+
stroke-linejoin="round"
|
|
2358
|
+
class="gnfeather gnfeather-navigation"
|
|
2359
|
+
viewBox="0 0 24 24"
|
|
2360
|
+
id="fto-navigation"
|
|
2361
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2362
|
+
>
|
|
2363
|
+
<path d="m3 11 19-9-9 19-2-8-8-2z" />
|
|
2364
|
+
</symbol>
|
|
2365
|
+
<symbol
|
|
2366
|
+
fill="none"
|
|
2367
|
+
stroke="currentColor"
|
|
2368
|
+
stroke-width="2"
|
|
2369
|
+
stroke-linecap="round"
|
|
2370
|
+
stroke-linejoin="round"
|
|
2371
|
+
class="gmfeather gmfeather-navigation-2"
|
|
2372
|
+
viewBox="0 0 24 24"
|
|
2373
|
+
id="fto-navigation-2"
|
|
2374
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2375
|
+
>
|
|
2376
|
+
<path d="m12 2 7 19-7-4-7 4 7-19z" />
|
|
2377
|
+
</symbol>
|
|
2378
|
+
<symbol
|
|
2379
|
+
fill="none"
|
|
2380
|
+
stroke="currentColor"
|
|
2381
|
+
stroke-width="2"
|
|
2382
|
+
stroke-linecap="round"
|
|
2383
|
+
stroke-linejoin="round"
|
|
2384
|
+
class="gofeather gofeather-octagon"
|
|
2385
|
+
viewBox="0 0 24 24"
|
|
2386
|
+
id="fto-octagon"
|
|
2387
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2388
|
+
>
|
|
2389
|
+
<path d="M7.86 2h8.28L22 7.86v8.28L16.14 22H7.86L2 16.14V7.86L7.86 2z" />
|
|
2390
|
+
</symbol>
|
|
2391
|
+
<symbol
|
|
2392
|
+
fill="none"
|
|
2393
|
+
stroke="currentColor"
|
|
2394
|
+
stroke-width="2"
|
|
2395
|
+
stroke-linecap="round"
|
|
2396
|
+
stroke-linejoin="round"
|
|
2397
|
+
class="gpfeather gpfeather-package"
|
|
2398
|
+
viewBox="0 0 24 24"
|
|
2399
|
+
id="fto-package"
|
|
2400
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2401
|
+
>
|
|
2402
|
+
<path
|
|
2403
|
+
d="m16.5 9.4-9-5.19M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"
|
|
2404
|
+
/>
|
|
2405
|
+
<path d="M3.27 6.96 12 12.01l8.73-5.05M12 22.08V12" />
|
|
2406
|
+
</symbol>
|
|
2407
|
+
<symbol
|
|
2408
|
+
fill="none"
|
|
2409
|
+
stroke="currentColor"
|
|
2410
|
+
stroke-width="2"
|
|
2411
|
+
stroke-linecap="round"
|
|
2412
|
+
stroke-linejoin="round"
|
|
2413
|
+
class="gqfeather gqfeather-paperclip"
|
|
2414
|
+
viewBox="0 0 24 24"
|
|
2415
|
+
id="fto-paperclip"
|
|
2416
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2417
|
+
>
|
|
2418
|
+
<path
|
|
2419
|
+
d="m21.44 11.05-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48"
|
|
2420
|
+
/>
|
|
2421
|
+
</symbol>
|
|
2422
|
+
<symbol
|
|
2423
|
+
fill="none"
|
|
2424
|
+
stroke="currentColor"
|
|
2425
|
+
stroke-width="2"
|
|
2426
|
+
stroke-linecap="round"
|
|
2427
|
+
stroke-linejoin="round"
|
|
2428
|
+
class="gsfeather gsfeather-pause"
|
|
2429
|
+
viewBox="0 0 24 24"
|
|
2430
|
+
id="fto-pause"
|
|
2431
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2432
|
+
>
|
|
2433
|
+
<path d="M6 4h4v16H6zM14 4h4v16h-4z" />
|
|
2434
|
+
</symbol>
|
|
2435
|
+
<symbol
|
|
2436
|
+
fill="none"
|
|
2437
|
+
stroke="currentColor"
|
|
2438
|
+
stroke-width="2"
|
|
2439
|
+
stroke-linecap="round"
|
|
2440
|
+
stroke-linejoin="round"
|
|
2441
|
+
class="grfeather grfeather-pause-circle"
|
|
2442
|
+
viewBox="0 0 24 24"
|
|
2443
|
+
id="fto-pause-circle"
|
|
2444
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2445
|
+
>
|
|
2446
|
+
<circle cx="12" cy="12" r="10" />
|
|
2447
|
+
<path d="M10 15V9M14 15V9" />
|
|
2448
|
+
</symbol>
|
|
2449
|
+
<symbol
|
|
2450
|
+
fill="none"
|
|
2451
|
+
stroke="currentColor"
|
|
2452
|
+
stroke-width="2"
|
|
2453
|
+
stroke-linecap="round"
|
|
2454
|
+
stroke-linejoin="round"
|
|
2455
|
+
class="gtfeather gtfeather-pen-tool"
|
|
2456
|
+
viewBox="0 0 24 24"
|
|
2457
|
+
id="fto-pen-tool"
|
|
2458
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2459
|
+
>
|
|
2460
|
+
<path d="m12 19 7-7 3 3-7 7-3-3z" />
|
|
2461
|
+
<path d="m18 13-1.5-7.5L2 2l3.5 14.5L13 18l5-5zM2 2l7.586 7.586" />
|
|
2462
|
+
<circle cx="11" cy="11" r="2" />
|
|
2463
|
+
</symbol>
|
|
2464
|
+
<symbol
|
|
2465
|
+
fill="none"
|
|
2466
|
+
stroke="currentColor"
|
|
2467
|
+
stroke-width="2"
|
|
2468
|
+
stroke-linecap="round"
|
|
2469
|
+
stroke-linejoin="round"
|
|
2470
|
+
class="gufeather gufeather-percent"
|
|
2471
|
+
viewBox="0 0 24 24"
|
|
2472
|
+
id="fto-percent"
|
|
2473
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2474
|
+
>
|
|
2475
|
+
<path d="M19 5 5 19" />
|
|
2476
|
+
<circle cx="6.5" cy="6.5" r="2.5" />
|
|
2477
|
+
<circle cx="17.5" cy="17.5" r="2.5" />
|
|
2478
|
+
</symbol>
|
|
2479
|
+
<symbol
|
|
2480
|
+
fill="none"
|
|
2481
|
+
stroke="currentColor"
|
|
2482
|
+
stroke-width="2"
|
|
2483
|
+
stroke-linecap="round"
|
|
2484
|
+
stroke-linejoin="round"
|
|
2485
|
+
class="hbfeather hbfeather-phone"
|
|
2486
|
+
viewBox="0 0 24 24"
|
|
2487
|
+
id="fto-phone"
|
|
2488
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2489
|
+
>
|
|
2490
|
+
<path
|
|
2491
|
+
d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
|
|
2492
|
+
/>
|
|
2493
|
+
</symbol>
|
|
2494
|
+
<symbol
|
|
2495
|
+
fill="none"
|
|
2496
|
+
stroke="currentColor"
|
|
2497
|
+
stroke-width="2"
|
|
2498
|
+
stroke-linecap="round"
|
|
2499
|
+
stroke-linejoin="round"
|
|
2500
|
+
class="gvfeather gvfeather-phone-call"
|
|
2501
|
+
viewBox="0 0 24 24"
|
|
2502
|
+
id="fto-phone-call"
|
|
2503
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2504
|
+
>
|
|
2505
|
+
<path
|
|
2506
|
+
d="M15.05 5A5 5 0 0 1 19 8.95M15.05 1A9 9 0 0 1 23 8.94m-1 7.98v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
|
|
2507
|
+
/>
|
|
2508
|
+
</symbol>
|
|
2509
|
+
<symbol
|
|
2510
|
+
fill="none"
|
|
2511
|
+
stroke="currentColor"
|
|
2512
|
+
stroke-width="2"
|
|
2513
|
+
stroke-linecap="round"
|
|
2514
|
+
stroke-linejoin="round"
|
|
2515
|
+
class="gwfeather gwfeather-phone-forwarded"
|
|
2516
|
+
viewBox="0 0 24 24"
|
|
2517
|
+
id="fto-phone-forwarded"
|
|
2518
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2519
|
+
>
|
|
2520
|
+
<path
|
|
2521
|
+
d="m19 1 4 4-4 4M15 5h8M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
|
|
2522
|
+
/>
|
|
2523
|
+
</symbol>
|
|
2524
|
+
<symbol
|
|
2525
|
+
fill="none"
|
|
2526
|
+
stroke="currentColor"
|
|
2527
|
+
stroke-width="2"
|
|
2528
|
+
stroke-linecap="round"
|
|
2529
|
+
stroke-linejoin="round"
|
|
2530
|
+
class="gxfeather gxfeather-phone-incoming"
|
|
2531
|
+
viewBox="0 0 24 24"
|
|
2532
|
+
id="fto-phone-incoming"
|
|
2533
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2534
|
+
>
|
|
2535
|
+
<path
|
|
2536
|
+
d="M16 2v6h6M23 1l-7 7M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
|
|
2537
|
+
/>
|
|
2538
|
+
</symbol>
|
|
2539
|
+
<symbol
|
|
2540
|
+
fill="none"
|
|
2541
|
+
stroke="currentColor"
|
|
2542
|
+
stroke-width="2"
|
|
2543
|
+
stroke-linecap="round"
|
|
2544
|
+
stroke-linejoin="round"
|
|
2545
|
+
class="gyfeather gyfeather-phone-missed"
|
|
2546
|
+
viewBox="0 0 24 24"
|
|
2547
|
+
id="fto-phone-missed"
|
|
2548
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2549
|
+
>
|
|
2550
|
+
<path
|
|
2551
|
+
d="m23 1-6 6M17 1l6 6M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
|
|
2552
|
+
/>
|
|
2553
|
+
</symbol>
|
|
2554
|
+
<symbol
|
|
2555
|
+
fill="none"
|
|
2556
|
+
stroke="currentColor"
|
|
2557
|
+
stroke-width="2"
|
|
2558
|
+
stroke-linecap="round"
|
|
2559
|
+
stroke-linejoin="round"
|
|
2560
|
+
class="gzfeather gzfeather-phone-off"
|
|
2561
|
+
viewBox="0 0 24 24"
|
|
2562
|
+
id="fto-phone-off"
|
|
2563
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2564
|
+
>
|
|
2565
|
+
<path
|
|
2566
|
+
d="M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91M23 1 1 23"
|
|
2567
|
+
/>
|
|
2568
|
+
</symbol>
|
|
2569
|
+
<symbol
|
|
2570
|
+
fill="none"
|
|
2571
|
+
stroke="currentColor"
|
|
2572
|
+
stroke-width="2"
|
|
2573
|
+
stroke-linecap="round"
|
|
2574
|
+
stroke-linejoin="round"
|
|
2575
|
+
class="hafeather hafeather-phone-outgoing"
|
|
2576
|
+
viewBox="0 0 24 24"
|
|
2577
|
+
id="fto-phone-outgoing"
|
|
2578
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2579
|
+
>
|
|
2580
|
+
<path
|
|
2581
|
+
d="M23 7V1h-6M16 8l7-7M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"
|
|
2582
|
+
/>
|
|
2583
|
+
</symbol>
|
|
2584
|
+
<symbol
|
|
2585
|
+
fill="none"
|
|
2586
|
+
stroke="currentColor"
|
|
2587
|
+
stroke-width="2"
|
|
2588
|
+
stroke-linecap="round"
|
|
2589
|
+
stroke-linejoin="round"
|
|
2590
|
+
class="hcfeather hcfeather-pie-chart"
|
|
2591
|
+
viewBox="0 0 24 24"
|
|
2592
|
+
id="fto-pie-chart"
|
|
2593
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2594
|
+
>
|
|
2595
|
+
<path d="M21.21 15.89A10 10 0 1 1 8 2.83" />
|
|
2596
|
+
<path d="M22 12A10 10 0 0 0 12 2v10z" />
|
|
2597
|
+
</symbol>
|
|
2598
|
+
<symbol
|
|
2599
|
+
fill="none"
|
|
2600
|
+
stroke="currentColor"
|
|
2601
|
+
stroke-width="2"
|
|
2602
|
+
stroke-linecap="round"
|
|
2603
|
+
stroke-linejoin="round"
|
|
2604
|
+
class="hefeather hefeather-play"
|
|
2605
|
+
viewBox="0 0 24 24"
|
|
2606
|
+
id="fto-play"
|
|
2607
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2608
|
+
>
|
|
2609
|
+
<path d="m5 3 14 9-14 9V3z" />
|
|
2610
|
+
</symbol>
|
|
2611
|
+
<symbol
|
|
2612
|
+
fill="none"
|
|
2613
|
+
stroke="currentColor"
|
|
2614
|
+
stroke-width="2"
|
|
2615
|
+
stroke-linecap="round"
|
|
2616
|
+
stroke-linejoin="round"
|
|
2617
|
+
class="hdfeather hdfeather-play-circle"
|
|
2618
|
+
viewBox="0 0 24 24"
|
|
2619
|
+
id="fto-play-circle"
|
|
2620
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2621
|
+
>
|
|
2622
|
+
<circle cx="12" cy="12" r="10" />
|
|
2623
|
+
<path d="m10 8 6 4-6 4V8z" />
|
|
2624
|
+
</symbol>
|
|
2625
|
+
<symbol
|
|
2626
|
+
fill="none"
|
|
2627
|
+
stroke="currentColor"
|
|
2628
|
+
stroke-width="2"
|
|
2629
|
+
stroke-linecap="round"
|
|
2630
|
+
stroke-linejoin="round"
|
|
2631
|
+
class="hhfeather hhfeather-plus"
|
|
2632
|
+
viewBox="0 0 24 24"
|
|
2633
|
+
id="fto-plus"
|
|
2634
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2635
|
+
>
|
|
2636
|
+
<path d="M12 5v14M5 12h14" />
|
|
2637
|
+
</symbol>
|
|
2638
|
+
<symbol
|
|
2639
|
+
fill="none"
|
|
2640
|
+
stroke="currentColor"
|
|
2641
|
+
stroke-width="2"
|
|
2642
|
+
stroke-linecap="round"
|
|
2643
|
+
stroke-linejoin="round"
|
|
2644
|
+
class="hffeather hffeather-plus-circle"
|
|
2645
|
+
viewBox="0 0 24 24"
|
|
2646
|
+
id="fto-plus-circle"
|
|
2647
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2648
|
+
>
|
|
2649
|
+
<circle cx="12" cy="12" r="10" />
|
|
2650
|
+
<path d="M12 8v8M8 12h8" />
|
|
2651
|
+
</symbol>
|
|
2652
|
+
<symbol
|
|
2653
|
+
fill="none"
|
|
2654
|
+
stroke="currentColor"
|
|
2655
|
+
stroke-width="2"
|
|
2656
|
+
stroke-linecap="round"
|
|
2657
|
+
stroke-linejoin="round"
|
|
2658
|
+
class="hgfeather hgfeather-plus-square"
|
|
2659
|
+
viewBox="0 0 24 24"
|
|
2660
|
+
id="fto-plus-square"
|
|
2661
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2662
|
+
>
|
|
2663
|
+
<rect x="3" y="3" width="18" height="18" rx="2" ry="2" />
|
|
2664
|
+
<path d="M12 8v8M8 12h8" />
|
|
2665
|
+
</symbol>
|
|
2666
|
+
<symbol
|
|
2667
|
+
fill="none"
|
|
2668
|
+
stroke="currentColor"
|
|
2669
|
+
stroke-width="2"
|
|
2670
|
+
stroke-linecap="round"
|
|
2671
|
+
stroke-linejoin="round"
|
|
2672
|
+
class="hifeather hifeather-pocket"
|
|
2673
|
+
viewBox="0 0 24 24"
|
|
2674
|
+
id="fto-pocket"
|
|
2675
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2676
|
+
>
|
|
2677
|
+
<path d="M4 3h16a2 2 0 0 1 2 2v6a10 10 0 0 1-10 10A10 10 0 0 1 2 11V5a2 2 0 0 1 2-2z" />
|
|
2678
|
+
<path d="m8 10 4 4 4-4" />
|
|
2679
|
+
</symbol>
|
|
2680
|
+
<symbol
|
|
2681
|
+
fill="none"
|
|
2682
|
+
stroke="currentColor"
|
|
2683
|
+
stroke-width="2"
|
|
2684
|
+
stroke-linecap="round"
|
|
2685
|
+
stroke-linejoin="round"
|
|
2686
|
+
class="hjfeather hjfeather-power"
|
|
2687
|
+
viewBox="0 0 24 24"
|
|
2688
|
+
id="fto-power"
|
|
2689
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2690
|
+
>
|
|
2691
|
+
<path d="M18.36 6.64a9 9 0 1 1-12.73 0M12 2v10" />
|
|
2692
|
+
</symbol>
|
|
2693
|
+
<symbol
|
|
2694
|
+
fill="none"
|
|
2695
|
+
stroke="currentColor"
|
|
2696
|
+
stroke-width="2"
|
|
2697
|
+
stroke-linecap="round"
|
|
2698
|
+
stroke-linejoin="round"
|
|
2699
|
+
class="hkfeather hkfeather-printer"
|
|
2700
|
+
viewBox="0 0 24 24"
|
|
2701
|
+
id="fto-printer"
|
|
2702
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2703
|
+
>
|
|
2704
|
+
<path d="M6 9V2h12v7M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" />
|
|
2705
|
+
<path d="M6 14h12v8H6z" />
|
|
2706
|
+
</symbol>
|
|
2707
|
+
<symbol
|
|
2708
|
+
fill="none"
|
|
2709
|
+
stroke="currentColor"
|
|
2710
|
+
stroke-width="2"
|
|
2711
|
+
stroke-linecap="round"
|
|
2712
|
+
stroke-linejoin="round"
|
|
2713
|
+
class="hlfeather hlfeather-radio"
|
|
2714
|
+
viewBox="0 0 24 24"
|
|
2715
|
+
id="fto-radio"
|
|
2716
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2717
|
+
>
|
|
2718
|
+
<circle cx="12" cy="12" r="2" />
|
|
2719
|
+
<path
|
|
2720
|
+
d="M16.24 7.76a6 6 0 0 1 0 8.49m-8.48-.01a6 6 0 0 1 0-8.49m11.31-2.82a10 10 0 0 1 0 14.14m-14.14 0a10 10 0 0 1 0-14.14"
|
|
2721
|
+
/>
|
|
2722
|
+
</symbol>
|
|
2723
|
+
<symbol
|
|
2724
|
+
fill="none"
|
|
2725
|
+
stroke="currentColor"
|
|
2726
|
+
stroke-width="2"
|
|
2727
|
+
stroke-linecap="round"
|
|
2728
|
+
stroke-linejoin="round"
|
|
2729
|
+
class="hmfeather hmfeather-refresh-ccw"
|
|
2730
|
+
viewBox="0 0 24 24"
|
|
2731
|
+
id="fto-refresh-ccw"
|
|
2732
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2733
|
+
>
|
|
2734
|
+
<path d="M1 4v6h6M23 20v-6h-6" />
|
|
2735
|
+
<path d="M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4-4.64 4.36A9 9 0 0 1 3.51 15" />
|
|
2736
|
+
</symbol>
|
|
2737
|
+
<symbol
|
|
2738
|
+
fill="none"
|
|
2739
|
+
stroke="currentColor"
|
|
2740
|
+
stroke-width="2"
|
|
2741
|
+
stroke-linecap="round"
|
|
2742
|
+
stroke-linejoin="round"
|
|
2743
|
+
class="hnfeather hnfeather-refresh-cw"
|
|
2744
|
+
viewBox="0 0 24 24"
|
|
2745
|
+
id="fto-refresh-cw"
|
|
2746
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2747
|
+
>
|
|
2748
|
+
<path d="M23 4v6h-6M1 20v-6h6" />
|
|
2749
|
+
<path d="M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15" />
|
|
2750
|
+
</symbol>
|
|
2751
|
+
<symbol
|
|
2752
|
+
fill="none"
|
|
2753
|
+
stroke="currentColor"
|
|
2754
|
+
stroke-width="2"
|
|
2755
|
+
stroke-linecap="round"
|
|
2756
|
+
stroke-linejoin="round"
|
|
2757
|
+
class="hofeather hofeather-repeat"
|
|
2758
|
+
viewBox="0 0 24 24"
|
|
2759
|
+
id="fto-repeat"
|
|
2760
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2761
|
+
>
|
|
2762
|
+
<path d="m17 1 4 4-4 4" />
|
|
2763
|
+
<path d="M3 11V9a4 4 0 0 1 4-4h14M7 23l-4-4 4-4" />
|
|
2764
|
+
<path d="M21 13v2a4 4 0 0 1-4 4H3" />
|
|
2765
|
+
</symbol>
|
|
2766
|
+
<symbol
|
|
2767
|
+
fill="none"
|
|
2768
|
+
stroke="currentColor"
|
|
2769
|
+
stroke-width="2"
|
|
2770
|
+
stroke-linecap="round"
|
|
2771
|
+
stroke-linejoin="round"
|
|
2772
|
+
class="hpfeather hpfeather-rewind"
|
|
2773
|
+
viewBox="0 0 24 24"
|
|
2774
|
+
id="fto-rewind"
|
|
2775
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2776
|
+
>
|
|
2777
|
+
<path d="m11 19-9-7 9-7v14zM22 19l-9-7 9-7v14z" />
|
|
2778
|
+
</symbol>
|
|
2779
|
+
<symbol
|
|
2780
|
+
fill="none"
|
|
2781
|
+
stroke="currentColor"
|
|
2782
|
+
stroke-width="2"
|
|
2783
|
+
stroke-linecap="round"
|
|
2784
|
+
stroke-linejoin="round"
|
|
2785
|
+
class="hqfeather hqfeather-rotate-ccw"
|
|
2786
|
+
viewBox="0 0 24 24"
|
|
2787
|
+
id="fto-rotate-ccw"
|
|
2788
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2789
|
+
>
|
|
2790
|
+
<path d="M1 4v6h6" />
|
|
2791
|
+
<path d="M3.51 15a9 9 0 1 0 2.13-9.36L1 10" />
|
|
2792
|
+
</symbol>
|
|
2793
|
+
<symbol
|
|
2794
|
+
fill="none"
|
|
2795
|
+
stroke="currentColor"
|
|
2796
|
+
stroke-width="2"
|
|
2797
|
+
stroke-linecap="round"
|
|
2798
|
+
stroke-linejoin="round"
|
|
2799
|
+
class="hrfeather hrfeather-rotate-cw"
|
|
2800
|
+
viewBox="0 0 24 24"
|
|
2801
|
+
id="fto-rotate-cw"
|
|
2802
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2803
|
+
>
|
|
2804
|
+
<path d="M23 4v6h-6" />
|
|
2805
|
+
<path d="M20.49 15a9 9 0 1 1-2.12-9.36L23 10" />
|
|
2806
|
+
</symbol>
|
|
2807
|
+
<symbol
|
|
2808
|
+
fill="none"
|
|
2809
|
+
stroke="currentColor"
|
|
2810
|
+
stroke-width="2"
|
|
2811
|
+
stroke-linecap="round"
|
|
2812
|
+
stroke-linejoin="round"
|
|
2813
|
+
class="hsfeather hsfeather-rss"
|
|
2814
|
+
viewBox="0 0 24 24"
|
|
2815
|
+
id="fto-rss"
|
|
2816
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2817
|
+
>
|
|
2818
|
+
<path d="M4 11a9 9 0 0 1 9 9M4 4a16 16 0 0 1 16 16" />
|
|
2819
|
+
<circle cx="5" cy="19" r="1" />
|
|
2820
|
+
</symbol>
|
|
2821
|
+
<symbol
|
|
2822
|
+
fill="none"
|
|
2823
|
+
stroke="currentColor"
|
|
2824
|
+
stroke-width="2"
|
|
2825
|
+
stroke-linecap="round"
|
|
2826
|
+
stroke-linejoin="round"
|
|
2827
|
+
class="htfeather htfeather-save"
|
|
2828
|
+
viewBox="0 0 24 24"
|
|
2829
|
+
id="fto-save"
|
|
2830
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2831
|
+
>
|
|
2832
|
+
<path d="M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z" />
|
|
2833
|
+
<path d="M17 21v-8H7v8M7 3v5h8" />
|
|
2834
|
+
</symbol>
|
|
2835
|
+
<symbol
|
|
2836
|
+
fill="none"
|
|
2837
|
+
stroke="currentColor"
|
|
2838
|
+
stroke-width="2"
|
|
2839
|
+
stroke-linecap="round"
|
|
2840
|
+
stroke-linejoin="round"
|
|
2841
|
+
class="hufeather hufeather-scissors"
|
|
2842
|
+
viewBox="0 0 24 24"
|
|
2843
|
+
id="fto-scissors"
|
|
2844
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2845
|
+
>
|
|
2846
|
+
<circle cx="6" cy="6" r="3" />
|
|
2847
|
+
<circle cx="6" cy="18" r="3" />
|
|
2848
|
+
<path d="M20 4 8.12 15.88M14.47 14.48 20 20M8.12 8.12 12 12" />
|
|
2849
|
+
</symbol>
|
|
2850
|
+
<symbol
|
|
2851
|
+
fill="none"
|
|
2852
|
+
stroke="currentColor"
|
|
2853
|
+
stroke-width="2"
|
|
2854
|
+
stroke-linecap="round"
|
|
2855
|
+
stroke-linejoin="round"
|
|
2856
|
+
class="hvfeather hvfeather-search"
|
|
2857
|
+
viewBox="0 0 24 24"
|
|
2858
|
+
id="fto-search"
|
|
2859
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2860
|
+
>
|
|
2861
|
+
<circle cx="11" cy="11" r="8" />
|
|
2862
|
+
<path d="m21 21-4.35-4.35" />
|
|
2863
|
+
</symbol>
|
|
2864
|
+
<symbol
|
|
2865
|
+
fill="none"
|
|
2866
|
+
stroke="currentColor"
|
|
2867
|
+
stroke-width="2"
|
|
2868
|
+
stroke-linecap="round"
|
|
2869
|
+
stroke-linejoin="round"
|
|
2870
|
+
class="hwfeather hwfeather-send"
|
|
2871
|
+
viewBox="0 0 24 24"
|
|
2872
|
+
id="fto-send"
|
|
2873
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2874
|
+
>
|
|
2875
|
+
<path d="M22 2 11 13M22 2l-7 20-4-9-9-4 20-7z" />
|
|
2876
|
+
</symbol>
|
|
2877
|
+
<symbol
|
|
2878
|
+
fill="none"
|
|
2879
|
+
stroke="currentColor"
|
|
2880
|
+
stroke-width="2"
|
|
2881
|
+
stroke-linecap="round"
|
|
2882
|
+
stroke-linejoin="round"
|
|
2883
|
+
class="hxfeather hxfeather-server"
|
|
2884
|
+
viewBox="0 0 24 24"
|
|
2885
|
+
id="fto-server"
|
|
2886
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2887
|
+
>
|
|
2888
|
+
<rect x="2" y="2" width="20" height="8" rx="2" ry="2" />
|
|
2889
|
+
<rect x="2" y="14" width="20" height="8" rx="2" ry="2" />
|
|
2890
|
+
<path d="M6 6h0M6 18h0" />
|
|
2891
|
+
</symbol>
|
|
2892
|
+
<symbol
|
|
2893
|
+
fill="none"
|
|
2894
|
+
stroke="currentColor"
|
|
2895
|
+
stroke-width="2"
|
|
2896
|
+
stroke-linecap="round"
|
|
2897
|
+
stroke-linejoin="round"
|
|
2898
|
+
class="hyfeather hyfeather-settings"
|
|
2899
|
+
viewBox="0 0 24 24"
|
|
2900
|
+
id="fto-settings"
|
|
2901
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2902
|
+
>
|
|
2903
|
+
<circle cx="12" cy="12" r="3" />
|
|
2904
|
+
<path
|
|
2905
|
+
d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"
|
|
2906
|
+
/>
|
|
2907
|
+
</symbol>
|
|
2908
|
+
<symbol
|
|
2909
|
+
fill="none"
|
|
2910
|
+
stroke="currentColor"
|
|
2911
|
+
stroke-width="2"
|
|
2912
|
+
stroke-linecap="round"
|
|
2913
|
+
stroke-linejoin="round"
|
|
2914
|
+
class="iafeather iafeather-share"
|
|
2915
|
+
viewBox="0 0 24 24"
|
|
2916
|
+
id="fto-share"
|
|
2917
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2918
|
+
>
|
|
2919
|
+
<path d="M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8M16 6l-4-4-4 4M12 2v13" />
|
|
2920
|
+
</symbol>
|
|
2921
|
+
<symbol
|
|
2922
|
+
fill="none"
|
|
2923
|
+
stroke="currentColor"
|
|
2924
|
+
stroke-width="2"
|
|
2925
|
+
stroke-linecap="round"
|
|
2926
|
+
stroke-linejoin="round"
|
|
2927
|
+
class="hzfeather hzfeather-share-2"
|
|
2928
|
+
viewBox="0 0 24 24"
|
|
2929
|
+
id="fto-share-2"
|
|
2930
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2931
|
+
>
|
|
2932
|
+
<circle cx="18" cy="5" r="3" />
|
|
2933
|
+
<circle cx="6" cy="12" r="3" />
|
|
2934
|
+
<circle cx="18" cy="19" r="3" />
|
|
2935
|
+
<path d="m8.59 13.51 6.83 3.98M15.41 6.51l-6.82 3.98" />
|
|
2936
|
+
</symbol>
|
|
2937
|
+
<symbol
|
|
2938
|
+
fill="none"
|
|
2939
|
+
stroke="currentColor"
|
|
2940
|
+
stroke-width="2"
|
|
2941
|
+
stroke-linecap="round"
|
|
2942
|
+
stroke-linejoin="round"
|
|
2943
|
+
class="icfeather icfeather-shield"
|
|
2944
|
+
viewBox="0 0 24 24"
|
|
2945
|
+
id="fto-shield"
|
|
2946
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2947
|
+
>
|
|
2948
|
+
<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z" />
|
|
2949
|
+
</symbol>
|
|
2950
|
+
<symbol
|
|
2951
|
+
fill="none"
|
|
2952
|
+
stroke="currentColor"
|
|
2953
|
+
stroke-width="2"
|
|
2954
|
+
stroke-linecap="round"
|
|
2955
|
+
stroke-linejoin="round"
|
|
2956
|
+
class="ibfeather ibfeather-shield-off"
|
|
2957
|
+
viewBox="0 0 24 24"
|
|
2958
|
+
id="fto-shield-off"
|
|
2959
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2960
|
+
>
|
|
2961
|
+
<path
|
|
2962
|
+
d="M19.69 14a6.9 6.9 0 0 0 .31-2V5l-8-3-3.16 1.18M4.73 4.73 4 5v7c0 6 8 10 8 10a20.29 20.29 0 0 0 5.62-4.38M1 1l22 22"
|
|
2963
|
+
/>
|
|
2964
|
+
</symbol>
|
|
2965
|
+
<symbol
|
|
2966
|
+
fill="none"
|
|
2967
|
+
stroke="currentColor"
|
|
2968
|
+
stroke-width="2"
|
|
2969
|
+
stroke-linecap="round"
|
|
2970
|
+
stroke-linejoin="round"
|
|
2971
|
+
class="idfeather idfeather-shopping-bag"
|
|
2972
|
+
viewBox="0 0 24 24"
|
|
2973
|
+
id="fto-shopping-bag"
|
|
2974
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2975
|
+
>
|
|
2976
|
+
<path d="M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4zM3 6h18" />
|
|
2977
|
+
<path d="M16 10a4 4 0 0 1-8 0" />
|
|
2978
|
+
</symbol>
|
|
2979
|
+
<symbol
|
|
2980
|
+
fill="none"
|
|
2981
|
+
stroke="currentColor"
|
|
2982
|
+
stroke-width="2"
|
|
2983
|
+
stroke-linecap="round"
|
|
2984
|
+
stroke-linejoin="round"
|
|
2985
|
+
class="iefeather iefeather-shopping-cart"
|
|
2986
|
+
viewBox="0 0 24 24"
|
|
2987
|
+
id="fto-shopping-cart"
|
|
2988
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2989
|
+
>
|
|
2990
|
+
<circle cx="9" cy="21" r="1" />
|
|
2991
|
+
<circle cx="20" cy="21" r="1" />
|
|
2992
|
+
<path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6" />
|
|
2993
|
+
</symbol>
|
|
2994
|
+
<symbol
|
|
2995
|
+
fill="none"
|
|
2996
|
+
stroke="currentColor"
|
|
2997
|
+
stroke-width="2"
|
|
2998
|
+
stroke-linecap="round"
|
|
2999
|
+
stroke-linejoin="round"
|
|
3000
|
+
class="iffeather iffeather-shuffle"
|
|
3001
|
+
viewBox="0 0 24 24"
|
|
3002
|
+
id="fto-shuffle"
|
|
3003
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3004
|
+
>
|
|
3005
|
+
<path d="M16 3h5v5M4 20 21 3M21 16v5h-5M15 15l6 6M4 4l5 5" />
|
|
3006
|
+
</symbol>
|
|
3007
|
+
<symbol
|
|
3008
|
+
fill="none"
|
|
3009
|
+
stroke="currentColor"
|
|
3010
|
+
stroke-width="2"
|
|
3011
|
+
stroke-linecap="round"
|
|
3012
|
+
stroke-linejoin="round"
|
|
3013
|
+
class="igfeather igfeather-sidebar"
|
|
3014
|
+
viewBox="0 0 24 24"
|
|
3015
|
+
id="fto-sidebar"
|
|
3016
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3017
|
+
>
|
|
3018
|
+
<rect x="3" y="3" width="18" height="18" rx="2" ry="2" />
|
|
3019
|
+
<path d="M9 3v18" />
|
|
3020
|
+
</symbol>
|
|
3021
|
+
<symbol
|
|
3022
|
+
fill="none"
|
|
3023
|
+
stroke="currentColor"
|
|
3024
|
+
stroke-width="2"
|
|
3025
|
+
stroke-linecap="round"
|
|
3026
|
+
stroke-linejoin="round"
|
|
3027
|
+
class="ihfeather ihfeather-skip-back"
|
|
3028
|
+
viewBox="0 0 24 24"
|
|
3029
|
+
id="fto-skip-back"
|
|
3030
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3031
|
+
>
|
|
3032
|
+
<path d="M19 20 9 12l10-8v16zM5 19V5" />
|
|
3033
|
+
</symbol>
|
|
3034
|
+
<symbol
|
|
3035
|
+
fill="none"
|
|
3036
|
+
stroke="currentColor"
|
|
3037
|
+
stroke-width="2"
|
|
3038
|
+
stroke-linecap="round"
|
|
3039
|
+
stroke-linejoin="round"
|
|
3040
|
+
class="iifeather iifeather-skip-forward"
|
|
3041
|
+
viewBox="0 0 24 24"
|
|
3042
|
+
id="fto-skip-forward"
|
|
3043
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3044
|
+
>
|
|
3045
|
+
<path d="m5 4 10 8-10 8V4zM19 5v14" />
|
|
3046
|
+
</symbol>
|
|
3047
|
+
<symbol
|
|
3048
|
+
fill="none"
|
|
3049
|
+
stroke="currentColor"
|
|
3050
|
+
stroke-width="2"
|
|
3051
|
+
stroke-linecap="round"
|
|
3052
|
+
stroke-linejoin="round"
|
|
3053
|
+
class="ijfeather ijfeather-slack"
|
|
3054
|
+
viewBox="0 0 24 24"
|
|
3055
|
+
id="fto-slack"
|
|
3056
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3057
|
+
>
|
|
3058
|
+
<path
|
|
3059
|
+
d="M14.5 10c-.83 0-1.5-.67-1.5-1.5v-5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5zM20.5 10H19V8.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM9.5 14c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5S8 21.33 8 20.5v-5c0-.83.67-1.5 1.5-1.5zM3.5 14H5v1.5c0 .83-.67 1.5-1.5 1.5S2 16.33 2 15.5 2.67 14 3.5 14zM14 14.5c0-.83.67-1.5 1.5-1.5h5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-5c-.83 0-1.5-.67-1.5-1.5zM15.5 19H14v1.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zM10 9.5C10 8.67 9.33 8 8.5 8h-5C2.67 8 2 8.67 2 9.5S2.67 11 3.5 11h5c.83 0 1.5-.67 1.5-1.5zM8.5 5H10V3.5C10 2.67 9.33 2 8.5 2S7 2.67 7 3.5 7.67 5 8.5 5z"
|
|
3060
|
+
/>
|
|
3061
|
+
</symbol>
|
|
3062
|
+
<symbol
|
|
3063
|
+
fill="none"
|
|
3064
|
+
stroke="currentColor"
|
|
3065
|
+
stroke-width="2"
|
|
3066
|
+
stroke-linecap="round"
|
|
3067
|
+
stroke-linejoin="round"
|
|
3068
|
+
class="ikfeather ikfeather-slash"
|
|
3069
|
+
viewBox="0 0 24 24"
|
|
3070
|
+
id="fto-slash"
|
|
3071
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3072
|
+
>
|
|
3073
|
+
<circle cx="12" cy="12" r="10" />
|
|
3074
|
+
<path d="m4.93 4.93 14.14 14.14" />
|
|
3075
|
+
</symbol>
|
|
3076
|
+
<symbol
|
|
3077
|
+
fill="none"
|
|
3078
|
+
stroke="currentColor"
|
|
3079
|
+
stroke-width="2"
|
|
3080
|
+
stroke-linecap="round"
|
|
3081
|
+
stroke-linejoin="round"
|
|
3082
|
+
class="ilfeather ilfeather-sliders"
|
|
3083
|
+
viewBox="0 0 24 24"
|
|
3084
|
+
id="fto-sliders"
|
|
3085
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3086
|
+
>
|
|
3087
|
+
<path d="M4 21v-7M4 10V3M12 21v-9M12 8V3M20 21v-5M20 12V3M1 14h6M9 8h6M17 16h6" />
|
|
3088
|
+
</symbol>
|
|
3089
|
+
<symbol
|
|
3090
|
+
fill="none"
|
|
3091
|
+
stroke="currentColor"
|
|
3092
|
+
stroke-width="2"
|
|
3093
|
+
stroke-linecap="round"
|
|
3094
|
+
stroke-linejoin="round"
|
|
3095
|
+
class="imfeather imfeather-smartphone"
|
|
3096
|
+
viewBox="0 0 24 24"
|
|
3097
|
+
id="fto-smartphone"
|
|
3098
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3099
|
+
>
|
|
3100
|
+
<rect x="5" y="2" width="14" height="20" rx="2" ry="2" />
|
|
3101
|
+
<path d="M12 18h0" />
|
|
3102
|
+
</symbol>
|
|
3103
|
+
<symbol
|
|
3104
|
+
fill="none"
|
|
3105
|
+
stroke="currentColor"
|
|
3106
|
+
stroke-width="2"
|
|
3107
|
+
stroke-linecap="round"
|
|
3108
|
+
stroke-linejoin="round"
|
|
3109
|
+
class="infeather infeather-smile"
|
|
3110
|
+
viewBox="0 0 24 24"
|
|
3111
|
+
id="fto-smile"
|
|
3112
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3113
|
+
>
|
|
3114
|
+
<circle cx="12" cy="12" r="10" />
|
|
3115
|
+
<path d="M8 14s1.5 2 4 2 4-2 4-2M9 9h.01M15 9h.01" />
|
|
3116
|
+
</symbol>
|
|
3117
|
+
<symbol
|
|
3118
|
+
fill="none"
|
|
3119
|
+
stroke="currentColor"
|
|
3120
|
+
stroke-width="2"
|
|
3121
|
+
stroke-linecap="round"
|
|
3122
|
+
stroke-linejoin="round"
|
|
3123
|
+
class="iofeather iofeather-speaker"
|
|
3124
|
+
viewBox="0 0 24 24"
|
|
3125
|
+
id="fto-speaker"
|
|
3126
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3127
|
+
>
|
|
3128
|
+
<rect x="4" y="2" width="16" height="20" rx="2" ry="2" />
|
|
3129
|
+
<circle cx="12" cy="14" r="4" />
|
|
3130
|
+
<path d="M12 6h0" />
|
|
3131
|
+
</symbol>
|
|
3132
|
+
<symbol
|
|
3133
|
+
fill="none"
|
|
3134
|
+
stroke="currentColor"
|
|
3135
|
+
stroke-width="2"
|
|
3136
|
+
stroke-linecap="round"
|
|
3137
|
+
stroke-linejoin="round"
|
|
3138
|
+
class="ipfeather ipfeather-square"
|
|
3139
|
+
viewBox="0 0 24 24"
|
|
3140
|
+
id="fto-square"
|
|
3141
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3142
|
+
>
|
|
3143
|
+
<rect x="3" y="3" width="18" height="18" rx="2" ry="2" />
|
|
3144
|
+
</symbol>
|
|
3145
|
+
<symbol
|
|
3146
|
+
fill="none"
|
|
3147
|
+
stroke="currentColor"
|
|
3148
|
+
stroke-width="2"
|
|
3149
|
+
stroke-linecap="round"
|
|
3150
|
+
stroke-linejoin="round"
|
|
3151
|
+
class="iqfeather iqfeather-star"
|
|
3152
|
+
viewBox="0 0 24 24"
|
|
3153
|
+
id="fto-star"
|
|
3154
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3155
|
+
>
|
|
3156
|
+
<path d="m12 2 3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z" />
|
|
3157
|
+
</symbol>
|
|
3158
|
+
<symbol
|
|
3159
|
+
fill="none"
|
|
3160
|
+
stroke="currentColor"
|
|
3161
|
+
stroke-width="2"
|
|
3162
|
+
stroke-linecap="round"
|
|
3163
|
+
stroke-linejoin="round"
|
|
3164
|
+
class="irfeather irfeather-stop-circle"
|
|
3165
|
+
viewBox="0 0 24 24"
|
|
3166
|
+
id="fto-stop-circle"
|
|
3167
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3168
|
+
>
|
|
3169
|
+
<circle cx="12" cy="12" r="10" />
|
|
3170
|
+
<path d="M9 9h6v6H9z" />
|
|
3171
|
+
</symbol>
|
|
3172
|
+
<symbol
|
|
3173
|
+
fill="none"
|
|
3174
|
+
stroke="currentColor"
|
|
3175
|
+
stroke-width="2"
|
|
3176
|
+
stroke-linecap="round"
|
|
3177
|
+
stroke-linejoin="round"
|
|
3178
|
+
class="isfeather isfeather-sun"
|
|
3179
|
+
viewBox="0 0 24 24"
|
|
3180
|
+
id="fto-sun"
|
|
3181
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3182
|
+
>
|
|
3183
|
+
<circle cx="12" cy="12" r="5" />
|
|
3184
|
+
<path
|
|
3185
|
+
d="M12 1v2M12 21v2M4.22 4.22l1.42 1.42M18.36 18.36l1.42 1.42M1 12h2M21 12h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42"
|
|
3186
|
+
/>
|
|
3187
|
+
</symbol>
|
|
3188
|
+
<symbol
|
|
3189
|
+
fill="none"
|
|
3190
|
+
stroke="currentColor"
|
|
3191
|
+
stroke-width="2"
|
|
3192
|
+
stroke-linecap="round"
|
|
3193
|
+
stroke-linejoin="round"
|
|
3194
|
+
class="itfeather itfeather-sunrise"
|
|
3195
|
+
viewBox="0 0 24 24"
|
|
3196
|
+
id="fto-sunrise"
|
|
3197
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3198
|
+
>
|
|
3199
|
+
<path
|
|
3200
|
+
d="M17 18a5 5 0 0 0-10 0M12 2v7M4.22 10.22l1.42 1.42M1 18h2M21 18h2M18.36 11.64l1.42-1.42M23 22H1M8 6l4-4 4 4"
|
|
3201
|
+
/>
|
|
3202
|
+
</symbol>
|
|
3203
|
+
<symbol
|
|
3204
|
+
fill="none"
|
|
3205
|
+
stroke="currentColor"
|
|
3206
|
+
stroke-width="2"
|
|
3207
|
+
stroke-linecap="round"
|
|
3208
|
+
stroke-linejoin="round"
|
|
3209
|
+
class="iufeather iufeather-sunset"
|
|
3210
|
+
viewBox="0 0 24 24"
|
|
3211
|
+
id="fto-sunset"
|
|
3212
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3213
|
+
>
|
|
3214
|
+
<path
|
|
3215
|
+
d="M17 18a5 5 0 0 0-10 0M12 9V2M4.22 10.22l1.42 1.42M1 18h2M21 18h2M18.36 11.64l1.42-1.42M23 22H1M16 5l-4 4-4-4"
|
|
3216
|
+
/>
|
|
3217
|
+
</symbol>
|
|
3218
|
+
<symbol
|
|
3219
|
+
fill="none"
|
|
3220
|
+
stroke="currentColor"
|
|
3221
|
+
stroke-width="2"
|
|
3222
|
+
stroke-linecap="round"
|
|
3223
|
+
stroke-linejoin="round"
|
|
3224
|
+
class="ivfeather ivfeather-tablet"
|
|
3225
|
+
viewBox="0 0 24 24"
|
|
3226
|
+
id="fto-tablet"
|
|
3227
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3228
|
+
>
|
|
3229
|
+
<rect x="4" y="2" width="16" height="20" rx="2" ry="2" transform="rotate(180 12 12)" />
|
|
3230
|
+
<path d="M12 18h0" />
|
|
3231
|
+
</symbol>
|
|
3232
|
+
<symbol
|
|
3233
|
+
fill="none"
|
|
3234
|
+
stroke="currentColor"
|
|
3235
|
+
stroke-width="2"
|
|
3236
|
+
stroke-linecap="round"
|
|
3237
|
+
stroke-linejoin="round"
|
|
3238
|
+
class="iwfeather iwfeather-tag"
|
|
3239
|
+
viewBox="0 0 24 24"
|
|
3240
|
+
id="fto-tag"
|
|
3241
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3242
|
+
>
|
|
3243
|
+
<path d="m20.59 13.41-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82zM7 7h0" />
|
|
3244
|
+
</symbol>
|
|
3245
|
+
<symbol
|
|
3246
|
+
fill="none"
|
|
3247
|
+
stroke="currentColor"
|
|
3248
|
+
stroke-width="2"
|
|
3249
|
+
stroke-linecap="round"
|
|
3250
|
+
stroke-linejoin="round"
|
|
3251
|
+
class="ixfeather ixfeather-target"
|
|
3252
|
+
viewBox="0 0 24 24"
|
|
3253
|
+
id="fto-target"
|
|
3254
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3255
|
+
>
|
|
3256
|
+
<circle cx="12" cy="12" r="10" />
|
|
3257
|
+
<circle cx="12" cy="12" r="6" />
|
|
3258
|
+
<circle cx="12" cy="12" r="2" />
|
|
3259
|
+
</symbol>
|
|
3260
|
+
<symbol
|
|
3261
|
+
fill="none"
|
|
3262
|
+
stroke="currentColor"
|
|
3263
|
+
stroke-width="2"
|
|
3264
|
+
stroke-linecap="round"
|
|
3265
|
+
stroke-linejoin="round"
|
|
3266
|
+
class="iyfeather iyfeather-terminal"
|
|
3267
|
+
viewBox="0 0 24 24"
|
|
3268
|
+
id="fto-terminal"
|
|
3269
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3270
|
+
>
|
|
3271
|
+
<path d="m4 17 6-6-6-6M12 19h8" />
|
|
3272
|
+
</symbol>
|
|
3273
|
+
<symbol
|
|
3274
|
+
fill="none"
|
|
3275
|
+
stroke="currentColor"
|
|
3276
|
+
stroke-width="2"
|
|
3277
|
+
stroke-linecap="round"
|
|
3278
|
+
stroke-linejoin="round"
|
|
3279
|
+
class="izfeather izfeather-thermometer"
|
|
3280
|
+
viewBox="0 0 24 24"
|
|
3281
|
+
id="fto-thermometer"
|
|
3282
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3283
|
+
>
|
|
3284
|
+
<path d="M14 14.76V3.5a2.5 2.5 0 0 0-5 0v11.26a4.5 4.5 0 1 0 5 0z" />
|
|
3285
|
+
</symbol>
|
|
3286
|
+
<symbol
|
|
3287
|
+
fill="none"
|
|
3288
|
+
stroke="currentColor"
|
|
3289
|
+
stroke-width="2"
|
|
3290
|
+
stroke-linecap="round"
|
|
3291
|
+
stroke-linejoin="round"
|
|
3292
|
+
class="jafeather jafeather-thumbs-down"
|
|
3293
|
+
viewBox="0 0 24 24"
|
|
3294
|
+
id="fto-thumbs-down"
|
|
3295
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3296
|
+
>
|
|
3297
|
+
<path
|
|
3298
|
+
d="M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17"
|
|
3299
|
+
/>
|
|
3300
|
+
</symbol>
|
|
3301
|
+
<symbol
|
|
3302
|
+
fill="none"
|
|
3303
|
+
stroke="currentColor"
|
|
3304
|
+
stroke-width="2"
|
|
3305
|
+
stroke-linecap="round"
|
|
3306
|
+
stroke-linejoin="round"
|
|
3307
|
+
class="jbfeather jbfeather-thumbs-up"
|
|
3308
|
+
viewBox="0 0 24 24"
|
|
3309
|
+
id="fto-thumbs-up"
|
|
3310
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3311
|
+
>
|
|
3312
|
+
<path
|
|
3313
|
+
d="M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3"
|
|
3314
|
+
/>
|
|
3315
|
+
</symbol>
|
|
3316
|
+
<symbol
|
|
3317
|
+
fill="none"
|
|
3318
|
+
stroke="currentColor"
|
|
3319
|
+
stroke-width="2"
|
|
3320
|
+
stroke-linecap="round"
|
|
3321
|
+
stroke-linejoin="round"
|
|
3322
|
+
class="jcfeather jcfeather-toggle-left"
|
|
3323
|
+
viewBox="0 0 24 24"
|
|
3324
|
+
id="fto-toggle-left"
|
|
3325
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3326
|
+
>
|
|
3327
|
+
<rect x="1" y="5" width="22" height="14" rx="7" ry="7" />
|
|
3328
|
+
<circle cx="8" cy="12" r="3" />
|
|
3329
|
+
</symbol>
|
|
3330
|
+
<symbol
|
|
3331
|
+
fill="none"
|
|
3332
|
+
stroke="currentColor"
|
|
3333
|
+
stroke-width="2"
|
|
3334
|
+
stroke-linecap="round"
|
|
3335
|
+
stroke-linejoin="round"
|
|
3336
|
+
class="jdfeather jdfeather-toggle-right"
|
|
3337
|
+
viewBox="0 0 24 24"
|
|
3338
|
+
id="fto-toggle-right"
|
|
3339
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3340
|
+
>
|
|
3341
|
+
<rect x="1" y="5" width="22" height="14" rx="7" ry="7" />
|
|
3342
|
+
<circle cx="16" cy="12" r="3" />
|
|
3343
|
+
</symbol>
|
|
3344
|
+
<symbol
|
|
3345
|
+
fill="none"
|
|
3346
|
+
stroke="currentColor"
|
|
3347
|
+
stroke-width="2"
|
|
3348
|
+
stroke-linecap="round"
|
|
3349
|
+
stroke-linejoin="round"
|
|
3350
|
+
class="jffeather jffeather-trash"
|
|
3351
|
+
viewBox="0 0 24 24"
|
|
3352
|
+
id="fto-trash"
|
|
3353
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3354
|
+
>
|
|
3355
|
+
<path d="M3 6h18M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" />
|
|
3356
|
+
</symbol>
|
|
3357
|
+
<symbol
|
|
3358
|
+
fill="none"
|
|
3359
|
+
stroke="currentColor"
|
|
3360
|
+
stroke-width="2"
|
|
3361
|
+
stroke-linecap="round"
|
|
3362
|
+
stroke-linejoin="round"
|
|
3363
|
+
class="jefeather jefeather-trash-2"
|
|
3364
|
+
viewBox="0 0 24 24"
|
|
3365
|
+
id="fto-trash-2"
|
|
3366
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3367
|
+
>
|
|
3368
|
+
<path d="M3 6h18M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2M10 11v6M14 11v6" />
|
|
3369
|
+
</symbol>
|
|
3370
|
+
<symbol
|
|
3371
|
+
fill="none"
|
|
3372
|
+
stroke="currentColor"
|
|
3373
|
+
stroke-width="2"
|
|
3374
|
+
stroke-linecap="round"
|
|
3375
|
+
stroke-linejoin="round"
|
|
3376
|
+
class="jgfeather jgfeather-trello"
|
|
3377
|
+
viewBox="0 0 24 24"
|
|
3378
|
+
id="fto-trello"
|
|
3379
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3380
|
+
>
|
|
3381
|
+
<rect x="3" y="3" width="18" height="18" rx="2" ry="2" />
|
|
3382
|
+
<path d="M7 7h3v9H7zM14 7h3v5h-3z" />
|
|
3383
|
+
</symbol>
|
|
3384
|
+
<symbol
|
|
3385
|
+
fill="none"
|
|
3386
|
+
stroke="currentColor"
|
|
3387
|
+
stroke-width="2"
|
|
3388
|
+
stroke-linecap="round"
|
|
3389
|
+
stroke-linejoin="round"
|
|
3390
|
+
class="jhfeather jhfeather-trending-down"
|
|
3391
|
+
viewBox="0 0 24 24"
|
|
3392
|
+
id="fto-trending-down"
|
|
3393
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3394
|
+
>
|
|
3395
|
+
<path d="m23 18-9.5-9.5-5 5L1 6" />
|
|
3396
|
+
<path d="M17 18h6v-6" />
|
|
3397
|
+
</symbol>
|
|
3398
|
+
<symbol
|
|
3399
|
+
fill="none"
|
|
3400
|
+
stroke="currentColor"
|
|
3401
|
+
stroke-width="2"
|
|
3402
|
+
stroke-linecap="round"
|
|
3403
|
+
stroke-linejoin="round"
|
|
3404
|
+
class="jifeather jifeather-trending-up"
|
|
3405
|
+
viewBox="0 0 24 24"
|
|
3406
|
+
id="fto-trending-up"
|
|
3407
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3408
|
+
>
|
|
3409
|
+
<path d="m23 6-9.5 9.5-5-5L1 18" />
|
|
3410
|
+
<path d="M17 6h6v6" />
|
|
3411
|
+
</symbol>
|
|
3412
|
+
<symbol
|
|
3413
|
+
fill="none"
|
|
3414
|
+
stroke="currentColor"
|
|
3415
|
+
stroke-width="2"
|
|
3416
|
+
stroke-linecap="round"
|
|
3417
|
+
stroke-linejoin="round"
|
|
3418
|
+
class="jjfeather jjfeather-triangle"
|
|
3419
|
+
viewBox="0 0 24 24"
|
|
3420
|
+
id="fto-triangle"
|
|
3421
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3422
|
+
>
|
|
3423
|
+
<path d="M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z" />
|
|
3424
|
+
</symbol>
|
|
3425
|
+
<symbol
|
|
3426
|
+
fill="none"
|
|
3427
|
+
stroke="currentColor"
|
|
3428
|
+
stroke-width="2"
|
|
3429
|
+
stroke-linecap="round"
|
|
3430
|
+
stroke-linejoin="round"
|
|
3431
|
+
class="jkfeather jkfeather-truck"
|
|
3432
|
+
viewBox="0 0 24 24"
|
|
3433
|
+
id="fto-truck"
|
|
3434
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3435
|
+
>
|
|
3436
|
+
<path d="M1 3h15v13H1zM16 8h4l3 3v5h-7V8z" />
|
|
3437
|
+
<circle cx="5.5" cy="18.5" r="2.5" />
|
|
3438
|
+
<circle cx="18.5" cy="18.5" r="2.5" />
|
|
3439
|
+
</symbol>
|
|
3440
|
+
<symbol
|
|
3441
|
+
fill="none"
|
|
3442
|
+
stroke="currentColor"
|
|
3443
|
+
stroke-width="2"
|
|
3444
|
+
stroke-linecap="round"
|
|
3445
|
+
stroke-linejoin="round"
|
|
3446
|
+
class="jlfeather jlfeather-tv"
|
|
3447
|
+
viewBox="0 0 24 24"
|
|
3448
|
+
id="fto-tv"
|
|
3449
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3450
|
+
>
|
|
3451
|
+
<rect x="2" y="7" width="20" height="15" rx="2" ry="2" />
|
|
3452
|
+
<path d="m17 2-5 5-5-5" />
|
|
3453
|
+
</symbol>
|
|
3454
|
+
<symbol
|
|
3455
|
+
fill="none"
|
|
3456
|
+
stroke="currentColor"
|
|
3457
|
+
stroke-width="2"
|
|
3458
|
+
stroke-linecap="round"
|
|
3459
|
+
stroke-linejoin="round"
|
|
3460
|
+
class="jmfeather jmfeather-twitter"
|
|
3461
|
+
viewBox="0 0 24 24"
|
|
3462
|
+
id="fto-twitter"
|
|
3463
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3464
|
+
>
|
|
3465
|
+
<path
|
|
3466
|
+
d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"
|
|
3467
|
+
/>
|
|
3468
|
+
</symbol>
|
|
3469
|
+
<symbol
|
|
3470
|
+
fill="none"
|
|
3471
|
+
stroke="currentColor"
|
|
3472
|
+
stroke-width="2"
|
|
3473
|
+
stroke-linecap="round"
|
|
3474
|
+
stroke-linejoin="round"
|
|
3475
|
+
class="jnfeather jnfeather-type"
|
|
3476
|
+
viewBox="0 0 24 24"
|
|
3477
|
+
id="fto-type"
|
|
3478
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3479
|
+
>
|
|
3480
|
+
<path d="M4 7V4h16v3M9 20h6M12 4v16" />
|
|
3481
|
+
</symbol>
|
|
3482
|
+
<symbol
|
|
3483
|
+
fill="none"
|
|
3484
|
+
stroke="currentColor"
|
|
3485
|
+
stroke-width="2"
|
|
3486
|
+
stroke-linecap="round"
|
|
3487
|
+
stroke-linejoin="round"
|
|
3488
|
+
class="jofeather jofeather-umbrella"
|
|
3489
|
+
viewBox="0 0 24 24"
|
|
3490
|
+
id="fto-umbrella"
|
|
3491
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3492
|
+
>
|
|
3493
|
+
<path d="M23 12a11.05 11.05 0 0 0-22 0zm-5 7a3 3 0 0 1-6 0v-7" />
|
|
3494
|
+
</symbol>
|
|
3495
|
+
<symbol
|
|
3496
|
+
fill="none"
|
|
3497
|
+
stroke="currentColor"
|
|
3498
|
+
stroke-width="2"
|
|
3499
|
+
stroke-linecap="round"
|
|
3500
|
+
stroke-linejoin="round"
|
|
3501
|
+
class="jpfeather jpfeather-underline"
|
|
3502
|
+
viewBox="0 0 24 24"
|
|
3503
|
+
id="fto-underline"
|
|
3504
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3505
|
+
>
|
|
3506
|
+
<path d="M6 3v7a6 6 0 0 0 6 6 6 6 0 0 0 6-6V3M4 21h16" />
|
|
3507
|
+
</symbol>
|
|
3508
|
+
<symbol
|
|
3509
|
+
fill="none"
|
|
3510
|
+
stroke="currentColor"
|
|
3511
|
+
stroke-width="2"
|
|
3512
|
+
stroke-linecap="round"
|
|
3513
|
+
stroke-linejoin="round"
|
|
3514
|
+
class="jqfeather jqfeather-unlock"
|
|
3515
|
+
viewBox="0 0 24 24"
|
|
3516
|
+
id="fto-unlock"
|
|
3517
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3518
|
+
>
|
|
3519
|
+
<rect x="3" y="11" width="18" height="11" rx="2" ry="2" />
|
|
3520
|
+
<path d="M7 11V7a5 5 0 0 1 9.9-1" />
|
|
3521
|
+
</symbol>
|
|
3522
|
+
<symbol
|
|
3523
|
+
fill="none"
|
|
3524
|
+
stroke="currentColor"
|
|
3525
|
+
stroke-width="2"
|
|
3526
|
+
stroke-linecap="round"
|
|
3527
|
+
stroke-linejoin="round"
|
|
3528
|
+
class="jsfeather jsfeather-upload"
|
|
3529
|
+
viewBox="0 0 24 24"
|
|
3530
|
+
id="fto-upload"
|
|
3531
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3532
|
+
>
|
|
3533
|
+
<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M17 8l-5-5-5 5M12 3v12" />
|
|
3534
|
+
</symbol>
|
|
3535
|
+
<symbol
|
|
3536
|
+
fill="none"
|
|
3537
|
+
stroke="currentColor"
|
|
3538
|
+
stroke-width="2"
|
|
3539
|
+
stroke-linecap="round"
|
|
3540
|
+
stroke-linejoin="round"
|
|
3541
|
+
class="jrfeather jrfeather-upload-cloud"
|
|
3542
|
+
viewBox="0 0 24 24"
|
|
3543
|
+
id="fto-upload-cloud"
|
|
3544
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3545
|
+
>
|
|
3546
|
+
<path d="m16 16-4-4-4 4M12 12v9" />
|
|
3547
|
+
<path d="M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3" />
|
|
3548
|
+
<path d="m16 16-4-4-4 4" />
|
|
3549
|
+
</symbol>
|
|
3550
|
+
<symbol
|
|
3551
|
+
fill="none"
|
|
3552
|
+
stroke="currentColor"
|
|
3553
|
+
stroke-width="2"
|
|
3554
|
+
stroke-linecap="round"
|
|
3555
|
+
stroke-linejoin="round"
|
|
3556
|
+
class="jxfeather jxfeather-user"
|
|
3557
|
+
viewBox="0 0 24 24"
|
|
3558
|
+
id="fto-user"
|
|
3559
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3560
|
+
>
|
|
3561
|
+
<path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2" />
|
|
3562
|
+
<circle cx="12" cy="7" r="4" />
|
|
3563
|
+
</symbol>
|
|
3564
|
+
<symbol
|
|
3565
|
+
fill="none"
|
|
3566
|
+
stroke="currentColor"
|
|
3567
|
+
stroke-width="2"
|
|
3568
|
+
stroke-linecap="round"
|
|
3569
|
+
stroke-linejoin="round"
|
|
3570
|
+
class="jtfeather jtfeather-user-check"
|
|
3571
|
+
viewBox="0 0 24 24"
|
|
3572
|
+
id="fto-user-check"
|
|
3573
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3574
|
+
>
|
|
3575
|
+
<path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" />
|
|
3576
|
+
<circle cx="8.5" cy="7" r="4" />
|
|
3577
|
+
<path d="m17 11 2 2 4-4" />
|
|
3578
|
+
</symbol>
|
|
3579
|
+
<symbol
|
|
3580
|
+
fill="none"
|
|
3581
|
+
stroke="currentColor"
|
|
3582
|
+
stroke-width="2"
|
|
3583
|
+
stroke-linecap="round"
|
|
3584
|
+
stroke-linejoin="round"
|
|
3585
|
+
class="jufeather jufeather-user-minus"
|
|
3586
|
+
viewBox="0 0 24 24"
|
|
3587
|
+
id="fto-user-minus"
|
|
3588
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3589
|
+
>
|
|
3590
|
+
<path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" />
|
|
3591
|
+
<circle cx="8.5" cy="7" r="4" />
|
|
3592
|
+
<path d="M23 11h-6" />
|
|
3593
|
+
</symbol>
|
|
3594
|
+
<symbol
|
|
3595
|
+
fill="none"
|
|
3596
|
+
stroke="currentColor"
|
|
3597
|
+
stroke-width="2"
|
|
3598
|
+
stroke-linecap="round"
|
|
3599
|
+
stroke-linejoin="round"
|
|
3600
|
+
class="jvfeather jvfeather-user-plus"
|
|
3601
|
+
viewBox="0 0 24 24"
|
|
3602
|
+
id="fto-user-plus"
|
|
3603
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3604
|
+
>
|
|
3605
|
+
<path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" />
|
|
3606
|
+
<circle cx="8.5" cy="7" r="4" />
|
|
3607
|
+
<path d="M20 8v6M23 11h-6" />
|
|
3608
|
+
</symbol>
|
|
3609
|
+
<symbol
|
|
3610
|
+
fill="none"
|
|
3611
|
+
stroke="currentColor"
|
|
3612
|
+
stroke-width="2"
|
|
3613
|
+
stroke-linecap="round"
|
|
3614
|
+
stroke-linejoin="round"
|
|
3615
|
+
class="jwfeather jwfeather-user-x"
|
|
3616
|
+
viewBox="0 0 24 24"
|
|
3617
|
+
id="fto-user-x"
|
|
3618
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3619
|
+
>
|
|
3620
|
+
<path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" />
|
|
3621
|
+
<circle cx="8.5" cy="7" r="4" />
|
|
3622
|
+
<path d="m18 8 5 5M23 8l-5 5" />
|
|
3623
|
+
</symbol>
|
|
3624
|
+
<symbol
|
|
3625
|
+
fill="none"
|
|
3626
|
+
stroke="currentColor"
|
|
3627
|
+
stroke-width="2"
|
|
3628
|
+
stroke-linecap="round"
|
|
3629
|
+
stroke-linejoin="round"
|
|
3630
|
+
class="jyfeather jyfeather-users"
|
|
3631
|
+
viewBox="0 0 24 24"
|
|
3632
|
+
id="fto-users"
|
|
3633
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3634
|
+
>
|
|
3635
|
+
<path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" />
|
|
3636
|
+
<circle cx="9" cy="7" r="4" />
|
|
3637
|
+
<path d="M23 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75" />
|
|
3638
|
+
</symbol>
|
|
3639
|
+
<symbol
|
|
3640
|
+
fill="none"
|
|
3641
|
+
stroke="currentColor"
|
|
3642
|
+
stroke-width="2"
|
|
3643
|
+
stroke-linecap="round"
|
|
3644
|
+
stroke-linejoin="round"
|
|
3645
|
+
class="kafeather kafeather-video"
|
|
3646
|
+
viewBox="0 0 24 24"
|
|
3647
|
+
id="fto-video"
|
|
3648
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3649
|
+
>
|
|
3650
|
+
<path d="m23 7-7 5 7 5V7z" />
|
|
3651
|
+
<rect x="1" y="5" width="15" height="14" rx="2" ry="2" />
|
|
3652
|
+
</symbol>
|
|
3653
|
+
<symbol
|
|
3654
|
+
fill="none"
|
|
3655
|
+
stroke="currentColor"
|
|
3656
|
+
stroke-width="2"
|
|
3657
|
+
stroke-linecap="round"
|
|
3658
|
+
stroke-linejoin="round"
|
|
3659
|
+
class="jzfeather jzfeather-video-off"
|
|
3660
|
+
viewBox="0 0 24 24"
|
|
3661
|
+
id="fto-video-off"
|
|
3662
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3663
|
+
>
|
|
3664
|
+
<path
|
|
3665
|
+
d="M16 16v1a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2m5.66 0H14a2 2 0 0 1 2 2v3.34l1 1L23 7v10M1 1l22 22"
|
|
3666
|
+
/>
|
|
3667
|
+
</symbol>
|
|
3668
|
+
<symbol
|
|
3669
|
+
fill="none"
|
|
3670
|
+
stroke="currentColor"
|
|
3671
|
+
stroke-width="2"
|
|
3672
|
+
stroke-linecap="round"
|
|
3673
|
+
stroke-linejoin="round"
|
|
3674
|
+
class="kbfeather kbfeather-voicemail"
|
|
3675
|
+
viewBox="0 0 24 24"
|
|
3676
|
+
id="fto-voicemail"
|
|
3677
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3678
|
+
>
|
|
3679
|
+
<circle cx="5.5" cy="11.5" r="4.5" />
|
|
3680
|
+
<circle cx="18.5" cy="11.5" r="4.5" />
|
|
3681
|
+
<path d="M5.5 16h13" />
|
|
3682
|
+
</symbol>
|
|
3683
|
+
<symbol
|
|
3684
|
+
fill="none"
|
|
3685
|
+
stroke="currentColor"
|
|
3686
|
+
stroke-width="2"
|
|
3687
|
+
stroke-linecap="round"
|
|
3688
|
+
stroke-linejoin="round"
|
|
3689
|
+
class="kffeather kffeather-volume"
|
|
3690
|
+
viewBox="0 0 24 24"
|
|
3691
|
+
id="fto-volume"
|
|
3692
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3693
|
+
>
|
|
3694
|
+
<path d="M11 5 6 9H2v6h4l5 4V5z" />
|
|
3695
|
+
</symbol>
|
|
3696
|
+
<symbol
|
|
3697
|
+
fill="none"
|
|
3698
|
+
stroke="currentColor"
|
|
3699
|
+
stroke-width="2"
|
|
3700
|
+
stroke-linecap="round"
|
|
3701
|
+
stroke-linejoin="round"
|
|
3702
|
+
class="kcfeather kcfeather-volume-1"
|
|
3703
|
+
viewBox="0 0 24 24"
|
|
3704
|
+
id="fto-volume-1"
|
|
3705
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3706
|
+
>
|
|
3707
|
+
<path d="M11 5 6 9H2v6h4l5 4V5zM15.54 8.46a5 5 0 0 1 0 7.07" />
|
|
3708
|
+
</symbol>
|
|
3709
|
+
<symbol
|
|
3710
|
+
fill="none"
|
|
3711
|
+
stroke="currentColor"
|
|
3712
|
+
stroke-width="2"
|
|
3713
|
+
stroke-linecap="round"
|
|
3714
|
+
stroke-linejoin="round"
|
|
3715
|
+
class="kdfeather kdfeather-volume-2"
|
|
3716
|
+
viewBox="0 0 24 24"
|
|
3717
|
+
id="fto-volume-2"
|
|
3718
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3719
|
+
>
|
|
3720
|
+
<path d="M11 5 6 9H2v6h4l5 4V5zM19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07" />
|
|
3721
|
+
</symbol>
|
|
3722
|
+
<symbol
|
|
3723
|
+
fill="none"
|
|
3724
|
+
stroke="currentColor"
|
|
3725
|
+
stroke-width="2"
|
|
3726
|
+
stroke-linecap="round"
|
|
3727
|
+
stroke-linejoin="round"
|
|
3728
|
+
class="kefeather kefeather-volume-x"
|
|
3729
|
+
viewBox="0 0 24 24"
|
|
3730
|
+
id="fto-volume-x"
|
|
3731
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3732
|
+
>
|
|
3733
|
+
<path d="M11 5 6 9H2v6h4l5 4V5zM23 9l-6 6M17 9l6 6" />
|
|
3734
|
+
</symbol>
|
|
3735
|
+
<symbol
|
|
3736
|
+
fill="none"
|
|
3737
|
+
stroke="currentColor"
|
|
3738
|
+
stroke-width="2"
|
|
3739
|
+
stroke-linecap="round"
|
|
3740
|
+
stroke-linejoin="round"
|
|
3741
|
+
class="kgfeather kgfeather-watch"
|
|
3742
|
+
viewBox="0 0 24 24"
|
|
3743
|
+
id="fto-watch"
|
|
3744
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3745
|
+
>
|
|
3746
|
+
<circle cx="12" cy="12" r="7" />
|
|
3747
|
+
<path
|
|
3748
|
+
d="M12 9v3l1.5 1.5M16.51 17.35l-.35 3.83a2 2 0 0 1-2 1.82H9.83a2 2 0 0 1-2-1.82l-.35-3.83m.01-10.7.35-3.83A2 2 0 0 1 9.83 1h4.35a2 2 0 0 1 2 1.82l.35 3.83"
|
|
3749
|
+
/>
|
|
3750
|
+
</symbol>
|
|
3751
|
+
<symbol
|
|
3752
|
+
fill="none"
|
|
3753
|
+
stroke="currentColor"
|
|
3754
|
+
stroke-width="2"
|
|
3755
|
+
stroke-linecap="round"
|
|
3756
|
+
stroke-linejoin="round"
|
|
3757
|
+
class="kifeather kifeather-wifi"
|
|
3758
|
+
viewBox="0 0 24 24"
|
|
3759
|
+
id="fto-wifi"
|
|
3760
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3761
|
+
>
|
|
3762
|
+
<path d="M5 12.55a11 11 0 0 1 14.08 0M1.42 9a16 16 0 0 1 21.16 0M8.53 16.11a6 6 0 0 1 6.95 0M12 20h0" />
|
|
3763
|
+
</symbol>
|
|
3764
|
+
<symbol
|
|
3765
|
+
fill="none"
|
|
3766
|
+
stroke="currentColor"
|
|
3767
|
+
stroke-width="2"
|
|
3768
|
+
stroke-linecap="round"
|
|
3769
|
+
stroke-linejoin="round"
|
|
3770
|
+
class="khfeather khfeather-wifi-off"
|
|
3771
|
+
viewBox="0 0 24 24"
|
|
3772
|
+
id="fto-wifi-off"
|
|
3773
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3774
|
+
>
|
|
3775
|
+
<path
|
|
3776
|
+
d="m1 1 22 22M16.72 11.06A10.94 10.94 0 0 1 19 12.55M5 12.55a10.94 10.94 0 0 1 5.17-2.39M10.71 5.05A16 16 0 0 1 22.58 9M1.42 9a15.91 15.91 0 0 1 4.7-2.88M8.53 16.11a6 6 0 0 1 6.95 0M12 20h0"
|
|
3777
|
+
/>
|
|
3778
|
+
</symbol>
|
|
3779
|
+
<symbol
|
|
3780
|
+
fill="none"
|
|
3781
|
+
stroke="currentColor"
|
|
3782
|
+
stroke-width="2"
|
|
3783
|
+
stroke-linecap="round"
|
|
3784
|
+
stroke-linejoin="round"
|
|
3785
|
+
class="kjfeather kjfeather-wind"
|
|
3786
|
+
viewBox="0 0 24 24"
|
|
3787
|
+
id="fto-wind"
|
|
3788
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3789
|
+
>
|
|
3790
|
+
<path d="M9.59 4.59A2 2 0 1 1 11 8H2m10.59 11.41A2 2 0 1 0 14 16H2m15.73-8.27A2.5 2.5 0 1 1 19.5 12H2" />
|
|
3791
|
+
</symbol>
|
|
3792
|
+
<symbol
|
|
3793
|
+
fill="none"
|
|
3794
|
+
stroke="currentColor"
|
|
3795
|
+
stroke-width="2"
|
|
3796
|
+
stroke-linecap="round"
|
|
3797
|
+
stroke-linejoin="round"
|
|
3798
|
+
class="knfeather knfeather-x"
|
|
3799
|
+
viewBox="0 0 24 24"
|
|
3800
|
+
id="fto-x"
|
|
3801
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3802
|
+
>
|
|
3803
|
+
<path d="M18 6 6 18M6 6l12 12" />
|
|
3804
|
+
</symbol>
|
|
3805
|
+
<symbol
|
|
3806
|
+
fill="none"
|
|
3807
|
+
stroke="currentColor"
|
|
3808
|
+
stroke-width="2"
|
|
3809
|
+
stroke-linecap="round"
|
|
3810
|
+
stroke-linejoin="round"
|
|
3811
|
+
class="kkfeather kkfeather-x-circle"
|
|
3812
|
+
viewBox="0 0 24 24"
|
|
3813
|
+
id="fto-x-circle"
|
|
3814
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3815
|
+
>
|
|
3816
|
+
<circle cx="12" cy="12" r="10" />
|
|
3817
|
+
<path d="m15 9-6 6M9 9l6 6" />
|
|
3818
|
+
</symbol>
|
|
3819
|
+
<symbol
|
|
3820
|
+
fill="none"
|
|
3821
|
+
stroke="currentColor"
|
|
3822
|
+
stroke-width="2"
|
|
3823
|
+
stroke-linecap="round"
|
|
3824
|
+
stroke-linejoin="round"
|
|
3825
|
+
class="klfeather klfeather-x-octagon"
|
|
3826
|
+
viewBox="0 0 24 24"
|
|
3827
|
+
id="fto-x-octagon"
|
|
3828
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3829
|
+
>
|
|
3830
|
+
<path d="M7.86 2h8.28L22 7.86v8.28L16.14 22H7.86L2 16.14V7.86L7.86 2zM15 9l-6 6M9 9l6 6" />
|
|
3831
|
+
</symbol>
|
|
3832
|
+
<symbol
|
|
3833
|
+
fill="none"
|
|
3834
|
+
stroke="currentColor"
|
|
3835
|
+
stroke-width="2"
|
|
3836
|
+
stroke-linecap="round"
|
|
3837
|
+
stroke-linejoin="round"
|
|
3838
|
+
class="kmfeather kmfeather-x-square"
|
|
3839
|
+
viewBox="0 0 24 24"
|
|
3840
|
+
id="fto-x-square"
|
|
3841
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3842
|
+
>
|
|
3843
|
+
<rect x="3" y="3" width="18" height="18" rx="2" ry="2" />
|
|
3844
|
+
<path d="m9 9 6 6M15 9l-6 6" />
|
|
3845
|
+
</symbol>
|
|
3846
|
+
<symbol
|
|
3847
|
+
fill="none"
|
|
3848
|
+
stroke="currentColor"
|
|
3849
|
+
stroke-width="2"
|
|
3850
|
+
stroke-linecap="round"
|
|
3851
|
+
stroke-linejoin="round"
|
|
3852
|
+
class="kofeather kofeather-youtube"
|
|
3853
|
+
viewBox="0 0 24 24"
|
|
3854
|
+
id="fto-youtube"
|
|
3855
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3856
|
+
>
|
|
3857
|
+
<path
|
|
3858
|
+
d="M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z"
|
|
3859
|
+
/>
|
|
3860
|
+
<path d="m9.75 15.02 5.75-3.27-5.75-3.27v6.54z" />
|
|
3861
|
+
</symbol>
|
|
3862
|
+
<symbol
|
|
3863
|
+
fill="none"
|
|
3864
|
+
stroke="currentColor"
|
|
3865
|
+
stroke-width="2"
|
|
3866
|
+
stroke-linecap="round"
|
|
3867
|
+
stroke-linejoin="round"
|
|
3868
|
+
class="kqfeather kqfeather-zap"
|
|
3869
|
+
viewBox="0 0 24 24"
|
|
3870
|
+
id="fto-zap"
|
|
3871
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3872
|
+
>
|
|
3873
|
+
<path d="M13 2 3 14h9l-1 8 10-12h-9l1-8z" />
|
|
3874
|
+
</symbol>
|
|
3875
|
+
<symbol
|
|
3876
|
+
fill="none"
|
|
3877
|
+
stroke="currentColor"
|
|
3878
|
+
stroke-width="2"
|
|
3879
|
+
stroke-linecap="round"
|
|
3880
|
+
stroke-linejoin="round"
|
|
3881
|
+
class="kpfeather kpfeather-zap-off"
|
|
3882
|
+
viewBox="0 0 24 24"
|
|
3883
|
+
id="fto-zap-off"
|
|
3884
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3885
|
+
>
|
|
3886
|
+
<path d="M12.41 6.75 13 2l-2.43 2.92M18.57 12.91 21 10h-5.34M8 8l-5 6h9l-1 8 5-6M1 1l22 22" />
|
|
3887
|
+
</symbol>
|
|
3888
|
+
<symbol
|
|
3889
|
+
fill="none"
|
|
3890
|
+
stroke="currentColor"
|
|
3891
|
+
stroke-width="2"
|
|
3892
|
+
stroke-linecap="round"
|
|
3893
|
+
stroke-linejoin="round"
|
|
3894
|
+
class="krfeather krfeather-zoom-in"
|
|
3895
|
+
viewBox="0 0 24 24"
|
|
3896
|
+
id="fto-zoom-in"
|
|
3897
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3898
|
+
>
|
|
3899
|
+
<circle cx="11" cy="11" r="8" />
|
|
3900
|
+
<path d="m21 21-4.35-4.35M11 8v6M8 11h6" />
|
|
3901
|
+
</symbol>
|
|
3902
|
+
<symbol
|
|
3903
|
+
fill="none"
|
|
3904
|
+
stroke="currentColor"
|
|
3905
|
+
stroke-width="2"
|
|
3906
|
+
stroke-linecap="round"
|
|
3907
|
+
stroke-linejoin="round"
|
|
3908
|
+
class="ksfeather ksfeather-zoom-out"
|
|
3909
|
+
viewBox="0 0 24 24"
|
|
3910
|
+
id="fto-zoom-out"
|
|
3911
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3912
|
+
>
|
|
3913
|
+
<circle cx="11" cy="11" r="8" />
|
|
3914
|
+
<path d="m21 21-4.35-4.35M8 11h6" />
|
|
3915
|
+
</symbol>
|
|
3916
|
+
</svg>
|
|
3917
|
+
</div>
|