@yelon/bis 14.2.0 → 15.0.0-beta.0

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.
Files changed (119) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +23 -1
  3. package/esm2020/bis.mjs +2 -2
  4. package/esm2020/index.mjs +2 -0
  5. package/esm2020/public_api.mjs +2 -2
  6. package/esm2020/src/bis.config.mjs +11 -0
  7. package/esm2020/src/icon/style-icons.mjs +796 -0
  8. package/esm2020/src/index.mjs +12 -0
  9. package/esm2020/src/layout-basic/index.mjs +4 -0
  10. package/esm2020/src/layout-basic/interface.mjs +7 -0
  11. package/esm2020/src/layout-basic/layout-basic.component.mjs +312 -0
  12. package/esm2020/src/layout-basic/layout-display.service.mjs +87 -0
  13. package/esm2020/src/layout-nav/index.mjs +5 -0
  14. package/esm2020/src/layout-nav/layout-nav-application.component.mjs +262 -0
  15. package/esm2020/{layout/widgets/yz.application.group.component.mjs → src/layout-nav/layout-nav-group.component.mjs} +23 -21
  16. package/esm2020/src/layout-nav/layout-nav-tile.component.mjs +15 -0
  17. package/esm2020/src/layout-nav/types.mjs +7 -0
  18. package/esm2020/src/widgets/index.mjs +7 -0
  19. package/esm2020/src/widgets/yunzai-clear-storage.component.mjs +45 -0
  20. package/esm2020/src/widgets/yunzai-fullscreen.component.mjs +45 -0
  21. package/esm2020/src/widgets/yunzai-i18n.component.mjs +115 -0
  22. package/esm2020/src/widgets/yunzai-notify.component.mjs +183 -0
  23. package/esm2020/src/widgets/yunzai-theme-btn.component.mjs +195 -0
  24. package/esm2020/{layout/widgets/yz.user.component.mjs → src/widgets/yunzai-user.component.mjs} +6 -6
  25. package/esm2020/src/yunzai-act.guard.mjs +107 -0
  26. package/esm2020/src/yunzai-auth.service.mjs +153 -0
  27. package/esm2020/src/yunzai-default.interceptor.mjs +207 -0
  28. package/esm2020/src/yunzai-i18n.service.mjs +94 -0
  29. package/esm2020/src/yunzai-layout.module.mjs +76 -0
  30. package/esm2020/src/yunzai-startup.service.mjs +157 -0
  31. package/fesm2015/bis.mjs +2960 -1
  32. package/fesm2015/bis.mjs.map +1 -1
  33. package/fesm2020/bis.mjs +2968 -1
  34. package/fesm2020/bis.mjs.map +1 -1
  35. package/index.d.ts +0 -4
  36. package/index.less +1 -1
  37. package/package.json +12 -27
  38. package/public_api.d.ts +1 -2
  39. package/{layout → src}/bis.config.d.ts +0 -0
  40. package/{shared → src/icon}/style-icons.d.ts +0 -0
  41. package/src/index.d.ts +11 -0
  42. package/src/layout-basic/index.d.ts +3 -0
  43. package/src/layout-basic/interface.d.ts +24 -0
  44. package/src/layout-basic/layout-basic.component.d.ts +33 -0
  45. package/src/layout-basic/layout-display.service.d.ts +15 -0
  46. package/src/layout-nav/index.d.ts +4 -0
  47. package/src/layout-nav/layout-nav-application.component.d.ts +26 -0
  48. package/src/layout-nav/layout-nav-group.component.d.ts +17 -0
  49. package/src/layout-nav/layout-nav-tile.component.d.ts +6 -0
  50. package/src/layout-nav/types.d.ts +20 -0
  51. package/src/widgets/index.d.ts +6 -0
  52. package/{layout/widgets/yz.clear-storage.component.d.ts → src/widgets/yunzai-clear-storage.component.d.ts} +3 -3
  53. package/src/widgets/yunzai-fullscreen.component.d.ts +8 -0
  54. package/{layout/widgets/yz.i18n.component.d.ts → src/widgets/yunzai-i18n.component.d.ts} +5 -5
  55. package/{layout/widgets/yz.notify.component.d.ts → src/widgets/yunzai-notify.component.d.ts} +5 -5
  56. package/{layout/widgets/yz.them-btn.component.d.ts → src/widgets/yunzai-theme-btn.component.d.ts} +5 -5
  57. package/{layout/widgets/yz.user.component.d.ts → src/widgets/yunzai-user.component.d.ts} +3 -3
  58. package/{layout/act.guard.d.ts → src/yunzai-act.guard.d.ts} +1 -2
  59. package/{layout/yz.auth.service.d.ts → src/yunzai-auth.service.d.ts} +6 -7
  60. package/{layout/yz.default.interceptor.d.ts → src/yunzai-default.interceptor.d.ts} +4 -6
  61. package/{layout/yz.i18n.service.d.ts → src/yunzai-i18n.service.d.ts} +4 -3
  62. package/src/yunzai-layout.module.d.ts +21 -0
  63. package/src/yunzai-startup.service.d.ts +37 -0
  64. package/esm2020/layout/act.guard.mjs +0 -108
  65. package/esm2020/layout/bis.config.mjs +0 -11
  66. package/esm2020/layout/contact/contact.component.mjs +0 -492
  67. package/esm2020/layout/contact/contact.service.mjs +0 -146
  68. package/esm2020/layout/layout.mjs +0 -5
  69. package/esm2020/layout/layout.module.mjs +0 -76
  70. package/esm2020/layout/path-to-regexp.service.mjs +0 -238
  71. package/esm2020/layout/public_api.mjs +0 -15
  72. package/esm2020/layout/stomp.config.mjs +0 -18
  73. package/esm2020/layout/widgets/index.mjs +0 -9
  74. package/esm2020/layout/widgets/yz.application.component.mjs +0 -271
  75. package/esm2020/layout/widgets/yz.clear-storage.component.mjs +0 -45
  76. package/esm2020/layout/widgets/yz.fullscreen.component.mjs +0 -45
  77. package/esm2020/layout/widgets/yz.i18n.component.mjs +0 -115
  78. package/esm2020/layout/widgets/yz.notify.component.mjs +0 -183
  79. package/esm2020/layout/widgets/yz.them-btn.component.mjs +0 -195
  80. package/esm2020/layout/yz.auth.service.mjs +0 -155
  81. package/esm2020/layout/yz.basic.component.mjs +0 -269
  82. package/esm2020/layout/yz.default.interceptor.mjs +0 -207
  83. package/esm2020/layout/yz.i18n.service.mjs +0 -93
  84. package/esm2020/layout/yz.startup.service.mjs +0 -139
  85. package/esm2020/layout/yz.stomp.service.mjs +0 -88
  86. package/esm2020/shared/public_api.mjs +0 -5
  87. package/esm2020/shared/shared-yelon.module.mjs +0 -106
  88. package/esm2020/shared/shared-zorro.module.mjs +0 -81
  89. package/esm2020/shared/shared.mjs +0 -5
  90. package/esm2020/shared/shared.module.mjs +0 -115
  91. package/esm2020/shared/style-icons.mjs +0 -796
  92. package/fesm2015/layout.mjs +0 -2968
  93. package/fesm2015/layout.mjs.map +0 -1
  94. package/fesm2015/shared.mjs +0 -1103
  95. package/fesm2015/shared.mjs.map +0 -1
  96. package/fesm2020/layout.mjs +0 -2977
  97. package/fesm2020/layout.mjs.map +0 -1
  98. package/fesm2020/shared.mjs +0 -1103
  99. package/fesm2020/shared.mjs.map +0 -1
  100. package/layout/contact/contact.component.d.ts +0 -169
  101. package/layout/contact/contact.service.d.ts +0 -118
  102. package/layout/index.d.ts +0 -5
  103. package/layout/layout.module.d.ts +0 -21
  104. package/layout/path-to-regexp.service.d.ts +0 -26
  105. package/layout/public_api.d.ts +0 -14
  106. package/layout/stomp.config.d.ts +0 -3
  107. package/layout/style/index.less +0 -155
  108. package/layout/widgets/index.d.ts +0 -8
  109. package/layout/widgets/yz.application.component.d.ts +0 -49
  110. package/layout/widgets/yz.application.group.component.d.ts +0 -19
  111. package/layout/widgets/yz.fullscreen.component.d.ts +0 -8
  112. package/layout/yz.basic.component.d.ts +0 -27
  113. package/layout/yz.startup.service.d.ts +0 -36
  114. package/layout/yz.stomp.service.d.ts +0 -42
  115. package/shared/index.d.ts +0 -5
  116. package/shared/public_api.d.ts +0 -4
  117. package/shared/shared-yelon.module.d.ts +0 -3
  118. package/shared/shared-zorro.module.d.ts +0 -2
  119. package/shared/shared.module.d.ts +0 -94
@@ -1 +0,0 @@
1
- {"version":3,"file":"shared.mjs","sources":["../../../../packages/bis/shared/shared-yelon.module.ts","../../../../packages/bis/shared/shared-zorro.module.ts","../../../../packages/bis/shared/shared.module.ts","../../../../packages/bis/shared/style-icons.ts","../../../../packages/bis/shared/shared.ts"],"sourcesContent":["import { AutoFocusModule } from '@yelon/abc/auto-focus';\nimport { AvatarListModule } from '@yelon/abc/avatar-list';\nimport { CountDownModule } from '@yelon/abc/count-down';\nimport { DatePickerModule } from '@yelon/abc/date-picker';\nimport { DownFileModule } from '@yelon/abc/down-file';\nimport { EllipsisModule } from '@yelon/abc/ellipsis';\nimport { ErrorCollectModule } from '@yelon/abc/error-collect';\nimport { ExceptionModule } from '@yelon/abc/exception';\nimport { FooterToolbarModule } from '@yelon/abc/footer-toolbar';\nimport { GlobalFooterModule } from '@yelon/abc/global-footer';\nimport { LetModule } from '@yelon/abc/let';\nimport { LoadingModule } from '@yelon/abc/loading';\nimport { MediaModule } from '@yelon/abc/media';\nimport { NoticeIconModule } from '@yelon/abc/notice-icon';\nimport { OnboardingModule } from '@yelon/abc/onboarding';\nimport { PageHeaderModule } from '@yelon/abc/page-header';\nimport { PdfModule } from '@yelon/abc/pdf';\nimport { QRModule } from '@yelon/abc/qr';\nimport { QuickMenuModule } from '@yelon/abc/quick-menu';\nimport { ResultModule } from '@yelon/abc/result';\nimport { ReuseTabModule } from '@yelon/abc/reuse-tab';\nimport { SEModule } from '@yelon/abc/se';\nimport { SGModule } from '@yelon/abc/sg';\nimport { STModule } from '@yelon/abc/st';\nimport { SVModule } from '@yelon/abc/sv';\nimport { TagSelectModule } from '@yelon/abc/tag-select';\nimport { YelonACLModule } from '@yelon/acl';\nimport { G2BarModule } from '@yelon/chart/bar';\nimport { G2CardModule } from '@yelon/chart/card';\nimport { ChartEChartsModule } from '@yelon/chart/chart-echarts';\nimport { G2CustomModule } from '@yelon/chart/custom';\nimport { G2GaugeModule } from '@yelon/chart/gauge';\nimport { G2MiniAreaModule } from '@yelon/chart/mini-area';\nimport { G2MiniBarModule } from '@yelon/chart/mini-bar';\nimport { G2MiniProgressModule } from '@yelon/chart/mini-progress';\nimport { NumberInfoModule } from '@yelon/chart/number-info';\nimport { G2PieModule } from '@yelon/chart/pie';\nimport { G2RadarModule } from '@yelon/chart/radar';\nimport { G2SingleBarModule } from '@yelon/chart/single-bar';\nimport { G2TagCloudModule } from '@yelon/chart/tag-cloud';\nimport { G2TimelineModule } from '@yelon/chart/timeline';\nimport { TrendModule } from '@yelon/chart/trend';\nimport { G2WaterWaveModule } from '@yelon/chart/water-wave';\nimport { YelonFormModule } from '@yelon/form';\nimport { YunzaiThemeModule } from '@yelon/theme';\nimport { LayoutDefaultModule } from '@yelon/theme/layout-default';\nimport { SettingDrawerModule } from '@yelon/theme/setting-drawer';\nimport { ThemeBtnModule } from '@yelon/theme/theme-btn';\nimport { CurrencyPipeModule, FilterPipeModule, FormatPipeModule } from '@yelon/util';\n\nexport const YZ_SHARED_YELON_MODULES = [\n YunzaiThemeModule,\n NoticeIconModule,\n ReuseTabModule,\n LayoutDefaultModule,\n YelonACLModule,\n YelonFormModule,\n AvatarListModule,\n CountDownModule,\n DatePickerModule,\n DownFileModule,\n EllipsisModule,\n STModule,\n SVModule,\n SEModule,\n SGModule,\n LoadingModule,\n QRModule,\n OnboardingModule,\n ErrorCollectModule,\n ExceptionModule,\n FooterToolbarModule,\n GlobalFooterModule,\n GlobalFooterModule,\n PageHeaderModule,\n ResultModule,\n TagSelectModule,\n NoticeIconModule,\n QuickMenuModule,\n G2BarModule,\n G2CardModule,\n G2CustomModule,\n G2GaugeModule,\n G2MiniAreaModule,\n G2MiniBarModule,\n G2MiniProgressModule,\n G2PieModule,\n G2RadarModule,\n G2SingleBarModule,\n G2TagCloudModule,\n G2TimelineModule,\n G2WaterWaveModule,\n ChartEChartsModule,\n NumberInfoModule,\n TrendModule,\n ReuseTabModule,\n MediaModule,\n ThemeBtnModule,\n SettingDrawerModule,\n PdfModule,\n CurrencyPipeModule,\n FormatPipeModule,\n FilterPipeModule,\n AutoFocusModule,\n LetModule\n];\n","import { NzAffixModule } from 'ng-zorro-antd/affix';\nimport { NzAlertModule } from 'ng-zorro-antd/alert';\nimport { NzAnchorModule } from 'ng-zorro-antd/anchor';\nimport { NzAvatarModule } from 'ng-zorro-antd/avatar';\nimport { NzBackTopModule } from 'ng-zorro-antd/back-top';\nimport { NzBadgeModule } from 'ng-zorro-antd/badge';\nimport { NzBreadCrumbModule } from 'ng-zorro-antd/breadcrumb';\nimport { NzButtonModule } from 'ng-zorro-antd/button';\nimport { NzCardModule } from 'ng-zorro-antd/card';\nimport { NzCarouselModule } from 'ng-zorro-antd/carousel';\nimport { NzCheckboxModule } from 'ng-zorro-antd/checkbox';\nimport { NzHighlightModule } from 'ng-zorro-antd/core/highlight';\nimport { NzDatePickerModule } from 'ng-zorro-antd/date-picker';\nimport { NzDividerModule } from 'ng-zorro-antd/divider';\nimport { NzDrawerModule } from 'ng-zorro-antd/drawer';\nimport { NzDropDownModule } from 'ng-zorro-antd/dropdown';\nimport { NzEmptyModule } from 'ng-zorro-antd/empty';\nimport { NzFormModule } from 'ng-zorro-antd/form';\nimport { NzGridModule } from 'ng-zorro-antd/grid';\nimport { NzIconModule } from 'ng-zorro-antd/icon';\nimport { NzInputModule } from 'ng-zorro-antd/input';\nimport { NzInputNumberModule } from 'ng-zorro-antd/input-number';\nimport { NzListModule } from 'ng-zorro-antd/list';\nimport { NzMessageModule } from 'ng-zorro-antd/message';\nimport { NzModalModule } from 'ng-zorro-antd/modal';\nimport { NzPaginationModule } from 'ng-zorro-antd/pagination';\nimport { NzPopoverModule } from 'ng-zorro-antd/popover';\nimport { NzRadioModule } from 'ng-zorro-antd/radio';\nimport { NzResizableModule } from 'ng-zorro-antd/resizable';\nimport { NzSelectModule } from 'ng-zorro-antd/select';\nimport { NzSpinModule } from 'ng-zorro-antd/spin';\nimport { NzStepsModule } from 'ng-zorro-antd/steps';\nimport { NzSwitchModule } from 'ng-zorro-antd/switch';\nimport { NzTableModule } from 'ng-zorro-antd/table';\nimport { NzTabsModule } from 'ng-zorro-antd/tabs';\nimport { NzTagModule } from 'ng-zorro-antd/tag';\nimport { NzToolTipModule } from 'ng-zorro-antd/tooltip';\nimport { NzTreeModule } from 'ng-zorro-antd/tree';\nimport { NzUploadModule } from 'ng-zorro-antd/upload';\n\nexport const YZ_SHARED_ZORRO_MODULES = [\n NzTreeModule,\n NzButtonModule,\n NzMessageModule,\n NzBackTopModule,\n NzDropDownModule,\n NzGridModule,\n NzCarouselModule,\n NzCheckboxModule,\n NzToolTipModule,\n NzPopoverModule,\n NzSelectModule,\n NzIconModule,\n NzAffixModule,\n NzBadgeModule,\n NzAlertModule,\n NzModalModule,\n NzTableModule,\n NzDrawerModule,\n NzTabsModule,\n NzInputModule,\n NzDatePickerModule,\n NzTagModule,\n NzInputNumberModule,\n NzBreadCrumbModule,\n NzStepsModule,\n NzListModule,\n NzSwitchModule,\n NzRadioModule,\n NzFormModule,\n NzAvatarModule,\n NzCardModule,\n NzSpinModule,\n NzDividerModule,\n NzResizableModule,\n NzAnchorModule,\n NzUploadModule,\n NzPaginationModule,\n NzEmptyModule,\n NzHighlightModule\n];\n","/*\n * @Author: cui <devcui@outlook.com>\n * @Editor: microsoft vscode\n * @Date: 2021-11-27 11:30:50\n * @LastEditTime: 2021-11-27 14:41:18\n * @LastEditors: cui <devcui@outlook.com>\n * @Description: empty description\n * @FilePath: \\yelon\\packages\\bis\\shared\\shared.module.ts\n * LICENSE HERE\n */\nimport { NgModule } from '@angular/core';\n\nimport { YZ_SHARED_YELON_MODULES } from './shared-yelon.module';\nimport { YZ_SHARED_ZORRO_MODULES } from './shared-zorro.module';\n\n@NgModule({\n imports: [...YZ_SHARED_YELON_MODULES, ...YZ_SHARED_ZORRO_MODULES],\n exports: [...YZ_SHARED_YELON_MODULES, ...YZ_SHARED_ZORRO_MODULES]\n})\nexport class YzSharedModule {}\n","/*\n * Automatically generated by 'ng g ng-yunzai:plugin icon'\n * @see https://ng.yunzainfo.com/cli/plugin#icon\n */\n\nimport {\n AccountBookTwoTone,\n AccountBookFill,\n AccountBookOutline,\n AlertTwoTone,\n AlertFill,\n AlibabaOutline,\n AimOutline,\n AlipayCircleFill,\n AlertOutline,\n AlignCenterOutline,\n AlipayCircleOutline,\n AlipayOutline,\n AlignLeftOutline,\n AlignRightOutline,\n AmazonOutline,\n AliwangwangOutline,\n AliyunOutline,\n AlipaySquareFill,\n AmazonCircleFill,\n AndroidFill,\n AliwangwangFill,\n AntCloudOutline,\n AmazonSquareFill,\n AndroidOutline,\n ApartmentOutline,\n ApiTwoTone,\n ApiFill,\n ApiOutline,\n AntDesignOutline,\n AppstoreAddOutline,\n AppstoreFill,\n AppleOutline,\n AppstoreOutline,\n ArrowDownOutline,\n AppleFill,\n ArrowsAltOutline,\n AppstoreTwoTone,\n ArrowUpOutline,\n AreaChartOutline,\n ArrowLeftOutline,\n AudioFill,\n ArrowRightOutline,\n AudioTwoTone,\n AuditOutline,\n AudioMutedOutline,\n BackwardFill,\n AudioOutline,\n BackwardOutline,\n BankFill,\n BarcodeOutline,\n BellFill,\n BankTwoTone,\n BarsOutline,\n BankOutline,\n BehanceCircleFill,\n BehanceSquareFill,\n BoldOutline,\n BellOutline,\n BehanceOutline,\n BlockOutline,\n BehanceSquareOutline,\n BgColorsOutline,\n BellTwoTone,\n BarChartOutline,\n BookTwoTone,\n BookFill,\n BorderOuterOutline,\n BorderLeftOutline,\n BorderBottomOutline,\n BorderHorizontalOutline,\n BorderTopOutline,\n BorderOutline,\n BorderInnerOutline,\n BorderRightOutline,\n BoxPlotOutline,\n BoxPlotFill,\n BoxPlotTwoTone,\n BookOutline,\n BorderlessTableOutline,\n BorderVerticleOutline,\n BuildTwoTone,\n BuildOutline,\n BugFill,\n BugOutline,\n BugTwoTone,\n BulbFill,\n BulbTwoTone,\n BuildFill,\n BulbOutline,\n CalculatorFill,\n CalculatorTwoTone,\n CalendarFill,\n CalendarOutline,\n CalculatorOutline,\n CalendarTwoTone,\n CameraOutline,\n CameraFill,\n CameraTwoTone,\n CarTwoTone,\n CaretDownOutline,\n CarOutline,\n CaretLeftFill,\n CarFill,\n CaretRightOutline,\n CaretDownFill,\n CaretUpOutline,\n CaretRightFill,\n CarryOutFill,\n CarryOutOutline,\n CaretLeftOutline,\n CaretUpFill,\n BranchesOutline,\n CarryOutTwoTone,\n CheckCircleFill,\n CheckCircleOutline,\n CheckSquareOutline,\n CheckCircleTwoTone,\n CiCircleTwoTone,\n CheckOutline,\n CheckSquareTwoTone,\n CiOutline,\n CheckSquareFill,\n CiTwoTone,\n ChromeOutline,\n ClockCircleOutline,\n CiCircleOutline,\n ChromeFill,\n ClearOutline,\n CloseCircleTwoTone,\n CiCircleFill,\n CloseCircleOutline,\n ClockCircleFill,\n CloseCircleFill,\n ClockCircleTwoTone,\n CloseOutline,\n CloseSquareOutline,\n CloseSquareFill,\n CloudFill,\n CloseSquareTwoTone,\n CloudDownloadOutline,\n CloudTwoTone,\n CloudServerOutline,\n CloudUploadOutline,\n CloudSyncOutline,\n ClusterOutline,\n CodeSandboxCircleFill,\n CodeFill,\n CodepenCircleOutline,\n CloudOutline,\n CodeSandboxOutline,\n CodeOutline,\n CodeSandboxSquareFill,\n CodeTwoTone,\n CodepenSquareFill,\n CodepenOutline,\n CoffeeOutline,\n ColumnWidthOutline,\n CompressOutline,\n ColumnHeightOutline,\n CodepenCircleFill,\n CompassTwoTone,\n CommentOutline,\n ContainerFill,\n CompassOutline,\n ConsoleSqlOutline,\n ContactsOutline,\n ContainerTwoTone,\n ContactsFill,\n ContactsTwoTone,\n ContainerOutline,\n ControlFill,\n CopyFill,\n CopyOutline,\n CompassFill,\n CopyTwoTone,\n CopyrightOutline,\n CopyrightCircleOutline,\n ControlTwoTone,\n ControlOutline,\n CreditCardFill,\n CopyrightTwoTone,\n CrownFill,\n CopyrightCircleFill,\n CrownOutline,\n CustomerServiceTwoTone,\n CreditCardOutline,\n CustomerServiceOutline,\n DashboardTwoTone,\n CrownTwoTone,\n CreditCardTwoTone,\n CustomerServiceFill,\n DashboardFill,\n DashOutline,\n DatabaseOutline,\n DatabaseTwoTone,\n DatabaseFill,\n DashboardOutline,\n DeleteTwoTone,\n DeleteRowOutline,\n DeleteColumnOutline,\n DeliveredProcedureOutline,\n DeleteOutline,\n CopyrightCircleTwoTone,\n DesktopOutline,\n DeleteFill,\n DiffOutline,\n DiffFill,\n DeploymentUnitOutline,\n DiffTwoTone,\n DingtalkOutline,\n DollarCircleFill,\n DislikeFill,\n DingtalkSquareFill,\n DisconnectOutline,\n DollarCircleTwoTone,\n DollarOutline,\n DingtalkCircleFill,\n DislikeTwoTone,\n DollarTwoTone,\n DownCircleFill,\n DislikeOutline,\n DollarCircleOutline,\n DoubleLeftOutline,\n DownSquareFill,\n DownOutline,\n DownSquareOutline,\n DownSquareTwoTone,\n DownCircleTwoTone,\n DoubleRightOutline,\n DownCircleOutline,\n DownloadOutline,\n DotChartOutline,\n DribbbleCircleFill,\n DribbbleOutline,\n DribbbleSquareOutline,\n DropboxCircleFill,\n DingdingOutline,\n EditOutline,\n DribbbleSquareFill,\n DropboxSquareFill,\n EllipsisOutline,\n EnvironmentFill,\n EditFill,\n EnterOutline,\n EuroCircleFill,\n EuroTwoTone,\n EuroCircleOutline,\n EditTwoTone,\n EuroOutline,\n EnvironmentTwoTone,\n ExclamationCircleFill,\n ExpandAltOutline,\n EuroCircleTwoTone,\n ExclamationCircleTwoTone,\n EnvironmentOutline,\n ExperimentOutline,\n ExperimentFill,\n ExpandOutline,\n ExceptionOutline,\n ExportOutline,\n ExperimentTwoTone,\n ExclamationCircleOutline,\n ExclamationOutline,\n EyeFill,\n EyeInvisibleFill,\n EyeInvisibleTwoTone,\n DropboxOutline,\n DragOutline,\n FacebookOutline,\n FacebookFill,\n EyeTwoTone,\n EyeOutline,\n FastForwardFill,\n FieldBinaryOutline,\n FieldNumberOutline,\n FastBackwardOutline,\n FileAddFill,\n FastBackwardFill,\n FileExcelFill,\n FastForwardOutline,\n FieldStringOutline,\n FileDoneOutline,\n FileAddTwoTone,\n FileExcelTwoTone,\n FileExclamationFill,\n FileAddOutline,\n FileExclamationOutline,\n FieldTimeOutline,\n FileImageTwoTone,\n FileExcelOutline,\n FileExclamationTwoTone,\n FileImageFill,\n FileGifOutline,\n FileFill,\n FileMarkdownTwoTone,\n FileMarkdownOutline,\n FallOutline,\n FileImageOutline,\n EyeInvisibleOutline,\n FilePdfOutline,\n FileSearchOutline,\n FilePptTwoTone,\n FilePdfTwoTone,\n FileJpgOutline,\n FileTextFill,\n FilePptOutline,\n FileSyncOutline,\n FilePptFill,\n FileUnknownOutline,\n FileProtectOutline,\n FileTextTwoTone,\n FileWordFill,\n FileUnknownTwoTone,\n FileWordTwoTone,\n FileUnknownFill,\n FileTextOutline,\n FileZipFill,\n FilterTwoTone,\n FilterFill,\n FileWordOutline,\n FireOutline,\n FireTwoTone,\n FileZipOutline,\n FilterOutline,\n FlagTwoTone,\n FileTwoTone,\n FilePdfFill,\n FileOutline,\n FileMarkdownFill,\n FileZipTwoTone,\n FlagOutline,\n FolderAddTwoTone,\n FolderOpenFill,\n FireFill,\n FlagFill,\n FolderOutline,\n FolderViewOutline,\n FolderTwoTone,\n FontColorsOutline,\n FolderOpenTwoTone,\n FolderFill,\n ForwardOutline,\n FolderOpenOutline,\n ForkOutline,\n ForwardFill,\n FormatPainterOutline,\n FormatPainterFill,\n FormOutline,\n FrownFill,\n FrownTwoTone,\n FullscreenOutline,\n FontSizeOutline,\n FundFill,\n FunctionOutline,\n FundViewOutline,\n FullscreenExitOutline,\n GifOutline,\n FundProjectionScreenOutline,\n FundTwoTone,\n FolderAddFill,\n FunnelPlotTwoTone,\n GiftOutline,\n FunnelPlotFill,\n FundOutline,\n FrownOutline,\n GithubOutline,\n GoldFill,\n FolderAddOutline,\n GitlabFill,\n GiftFill,\n GitlabOutline,\n GoldTwoTone,\n GoogleCircleFill,\n GiftTwoTone,\n GooglePlusCircleFill,\n GoldOutline,\n GithubFill,\n GoogleOutline,\n GooglePlusOutline,\n GoogleSquareFill,\n GoldenFill,\n HddTwoTone,\n GooglePlusSquareFill,\n GlobalOutline,\n HeartOutline,\n HeartTwoTone,\n GroupOutline,\n HeartFill,\n HeatMapOutline,\n GatewayOutline,\n FunnelPlotOutline,\n HddFill,\n HomeFill,\n HighlightFill,\n HomeOutline,\n HistoryOutline,\n HighlightOutline,\n HddOutline,\n HourglassFill,\n HomeTwoTone,\n HourglassTwoTone,\n Html5Outline,\n Html5Fill,\n IdcardFill,\n Html5TwoTone,\n HourglassOutline,\n IdcardTwoTone,\n IdcardOutline,\n IeOutline,\n IeCircleFill,\n IeSquareFill,\n InboxOutline,\n ImportOutline,\n InfoCircleOutline,\n InfoCircleTwoTone,\n InsertRowAboveOutline,\n InsertRowRightOutline,\n InfoCircleFill,\n InfoOutline,\n InsertRowBelowOutline,\n HighlightTwoTone,\n InsuranceFill,\n InstagramFill,\n InteractionFill,\n InsertRowLeftOutline,\n InstagramOutline,\n InteractionOutline,\n ItalicOutline,\n InteractionTwoTone,\n LayoutOutline,\n IssuesCloseOutline,\n LayoutFill,\n LaptopOutline,\n LeftCircleFill,\n LayoutTwoTone,\n KeyOutline,\n LeftOutline,\n LeftCircleOutline,\n LeftSquareOutline,\n LeftSquareFill,\n LeftCircleTwoTone,\n LikeFill,\n LeftSquareTwoTone,\n LineOutline,\n LikeTwoTone,\n LinkedinOutline,\n LineChartOutline,\n LineHeightOutline,\n LinkedinFill,\n LinkOutline,\n LikeOutline,\n InsuranceOutline,\n Loading3QuartersOutline,\n LockFill,\n InsuranceTwoTone,\n MacCommandOutline,\n LockTwoTone,\n LoadingOutline,\n MailOutline,\n LoginOutline,\n MedicineBoxOutline,\n MailFill,\n MailTwoTone,\n MacCommandFill,\n ManOutline,\n MedicineBoxFill,\n MedicineBoxTwoTone,\n MediumCircleFill,\n MediumOutline,\n MehFill,\n MediumWorkmarkOutline,\n MenuFoldOutline,\n MehOutline,\n MediumSquareFill,\n MessageTwoTone,\n MehTwoTone,\n MergeCellsOutline,\n MinusCircleFill,\n MenuOutline,\n MenuUnfoldOutline,\n MessageFill,\n MinusCircleTwoTone,\n LockOutline,\n MinusOutline,\n MinusCircleOutline,\n LogoutOutline,\n MessageOutline,\n MoneyCollectFill,\n MinusSquareOutline,\n MinusSquareTwoTone,\n MobileOutline,\n MobileTwoTone,\n MoneyCollectOutline,\n MoreOutline,\n NotificationFill,\n NotificationOutline,\n MoneyCollectTwoTone,\n NodeIndexOutline,\n NodeExpandOutline,\n MonitorOutline,\n OrderedListOutline,\n NodeCollapseOutline,\n NumberOutline,\n PaperClipOutline,\n NotificationTwoTone,\n PauseCircleFill,\n PartitionOutline,\n PauseOutline,\n OneToOneOutline,\n PayCircleOutline,\n PayCircleFill,\n MinusSquareFill,\n PauseCircleOutline,\n PauseCircleTwoTone,\n PicCenterOutline,\n PicRightOutline,\n PercentageOutline,\n MobileFill,\n PictureOutline,\n PictureFill,\n PhoneTwoTone,\n PhoneFill,\n PieChartFill,\n PictureTwoTone,\n PieChartOutline,\n PlaySquareFill,\n PlayCircleTwoTone,\n PlayCircleFill,\n PlusCircleFill,\n PlaySquareTwoTone,\n PlaySquareOutline,\n PlayCircleOutline,\n PieChartTwoTone,\n PlusCircleOutline,\n PlusSquareFill,\n PoundCircleFill,\n PlusSquareOutline,\n PlusOutline,\n PoundOutline,\n PoundCircleOutline,\n PlusSquareTwoTone,\n PlusCircleTwoTone,\n PoweroffOutline,\n PoundCircleTwoTone,\n PhoneOutline,\n PrinterFill,\n PicLeftOutline,\n ProjectTwoTone,\n PrinterOutline,\n ProjectFill,\n ProfileOutline,\n ProfileTwoTone,\n ProjectOutline,\n PropertySafetyFill,\n PullRequestOutline,\n PropertySafetyOutline,\n PushpinOutline,\n PushpinTwoTone,\n PropertySafetyTwoTone,\n PushpinFill,\n QqOutline,\n QqCircleFill,\n QrcodeOutline,\n QqSquareFill,\n QuestionCircleTwoTone,\n QuestionCircleFill,\n RadarChartOutline,\n RadiusUprightOutline,\n QuestionCircleOutline,\n QuestionOutline,\n ReadFill,\n RadiusUpleftOutline,\n RadiusBottomleftOutline,\n RadiusSettingOutline,\n RadiusBottomrightOutline,\n ProfileFill,\n PrinterTwoTone,\n ReadOutline,\n ReconciliationFill,\n ReloadOutline,\n ReconciliationOutline,\n RedEnvelopeTwoTone,\n RedditCircleFill,\n RedoOutline,\n RedEnvelopeFill,\n RedditOutline,\n RestTwoTone,\n RightCircleOutline,\n RestOutline,\n RedditSquareFill,\n RestFill,\n RightCircleTwoTone,\n RightOutline,\n RightSquareFill,\n RightCircleFill,\n RightSquareOutline,\n RetweetOutline,\n RiseOutline,\n RightSquareTwoTone,\n RobotFill,\n RocketOutline,\n RobotOutline,\n RocketTwoTone,\n RocketFill,\n RedEnvelopeOutline,\n RollbackOutline,\n RotateRightOutline,\n RotateLeftOutline,\n ReconciliationTwoTone,\n SafetyCertificateTwoTone,\n SaveOutline,\n SafetyOutline,\n SaveFill,\n SaveTwoTone,\n ScheduleFill,\n SafetyCertificateOutline,\n ScanOutline,\n ScheduleTwoTone,\n SearchOutline,\n ScheduleOutline,\n SecurityScanTwoTone,\n SecurityScanOutline,\n ScissorOutline,\n SelectOutline,\n SecurityScanFill,\n SendOutline,\n SettingOutline,\n SettingTwoTone,\n SettingFill,\n ShareAltOutline,\n ShopOutline,\n ShopFill,\n ShopTwoTone,\n ShrinkOutline,\n ShakeOutline,\n ShoppingOutline,\n ShoppingCartOutline,\n ShoppingFill,\n SisternodeOutline,\n ShoppingTwoTone,\n SafetyCertificateFill,\n SkinOutline,\n SignalFill,\n SketchOutline,\n SkinTwoTone,\n SketchSquareFill,\n SkypeFill,\n SkinFill,\n SlackCircleFill,\n SlackSquareFill,\n SlidersTwoTone,\n SkypeOutline,\n SlidersFill,\n SlackSquareOutline,\n SmallDashOutline,\n SmileTwoTone,\n SlidersOutline,\n SnippetsFill,\n SnippetsOutline,\n SmileOutline,\n SolutionOutline,\n SlackOutline,\n SnippetsTwoTone,\n SoundTwoTone,\n SortAscendingOutline,\n SoundFill,\n SortDescendingOutline,\n SmileFill,\n SoundOutline,\n SplitCellsOutline,\n SketchCircleFill,\n StarOutline,\n StockOutline,\n StarTwoTone,\n StepForwardFill,\n StarFill,\n StepBackwardFill,\n StepForwardOutline,\n StopFill,\n SubnodeOutline,\n SwapLeftOutline,\n StopOutline,\n StopTwoTone,\n SwapRightOutline,\n SwapOutline,\n SwitcherTwoTone,\n SwitcherOutline,\n SyncOutline,\n StrikethroughOutline,\n SwitcherFill,\n TagOutline,\n TabletTwoTone,\n TabletOutline,\n TabletFill,\n TableOutline,\n TagsFill,\n TagFill,\n TagsTwoTone,\n TaobaoCircleOutline,\n StepBackwardOutline,\n TagsOutline,\n TagTwoTone,\n TaobaoOutline,\n ThunderboltOutline,\n TaobaoSquareFill,\n TeamOutline,\n TaobaoCircleFill,\n ThunderboltTwoTone,\n ToolFill,\n ThunderboltFill,\n ToTopOutline,\n ToolOutline,\n ToolTwoTone,\n TrademarkCircleFill,\n TrophyFill,\n TrademarkCircleTwoTone,\n TransactionOutline,\n TrademarkCircleOutline,\n TranslationOutline,\n TwitterCircleFill,\n TrophyOutline,\n TrademarkOutline,\n TrophyTwoTone,\n TwitterSquareFill,\n UnlockFill,\n TwitterOutline,\n UnderlineOutline,\n UndoOutline,\n UpCircleFill,\n UngroupOutline,\n UnlockTwoTone,\n UnlockOutline,\n UpOutline,\n UsbFill,\n UpCircleOutline,\n UnorderedListOutline,\n UpCircleTwoTone,\n UpSquareFill,\n UpSquareOutline,\n UserAddOutline,\n UsbTwoTone,\n UsergroupDeleteOutline,\n UpSquareTwoTone,\n UserOutline,\n UsbOutline,\n UserDeleteOutline,\n UserSwitchOutline,\n VerticalLeftOutline,\n VerticalAlignBottomOutline,\n VerifiedOutline,\n UsergroupAddOutline,\n UploadOutline,\n VerticalAlignMiddleOutline,\n VerticalAlignTopOutline,\n VerticalRightOutline,\n VideoCameraOutline,\n VideoCameraAddOutline,\n VideoCameraTwoTone,\n VideoCameraFill,\n WalletOutline,\n WalletFill,\n WarningFill,\n WarningOutline,\n WechatOutline,\n WalletTwoTone,\n WeiboCircleFill,\n WarningTwoTone,\n WeiboSquareFill,\n WeiboOutline,\n WeiboSquareOutline,\n WeiboCircleOutline,\n WechatFill,\n WhatsAppOutline,\n WifiOutline,\n WomanOutline,\n YoutubeFill,\n YahooOutline,\n WindowsFill,\n WindowsOutline,\n YoutubeOutline,\n YuqueOutline,\n ZhihuCircleFill,\n YuqueFill,\n ZhihuOutline,\n ZhihuSquareFill,\n ZoomInOutline,\n ZoomOutOutline,\n YahooFill\n} from '@ant-design/icons-angular/icons';\n\nexport const ICONS = [\n AccountBookTwoTone,\n AccountBookFill,\n AccountBookOutline,\n AlertTwoTone,\n AlertFill,\n AlibabaOutline,\n AimOutline,\n AlipayCircleFill,\n AlertOutline,\n AlignCenterOutline,\n AlipayCircleOutline,\n AlipayOutline,\n AlignLeftOutline,\n AlignRightOutline,\n AmazonOutline,\n AliwangwangOutline,\n AliyunOutline,\n AlipaySquareFill,\n AmazonCircleFill,\n AndroidFill,\n AliwangwangFill,\n AntCloudOutline,\n AmazonSquareFill,\n AndroidOutline,\n ApartmentOutline,\n ApiTwoTone,\n ApiFill,\n ApiOutline,\n AntDesignOutline,\n AppstoreAddOutline,\n AppstoreFill,\n AppleOutline,\n AppstoreOutline,\n ArrowDownOutline,\n AppleFill,\n ArrowsAltOutline,\n AppstoreTwoTone,\n ArrowUpOutline,\n AreaChartOutline,\n ArrowLeftOutline,\n AudioFill,\n ArrowRightOutline,\n AudioTwoTone,\n AuditOutline,\n AudioMutedOutline,\n BackwardFill,\n AudioOutline,\n BackwardOutline,\n BankFill,\n BarcodeOutline,\n BellFill,\n BankTwoTone,\n BarsOutline,\n BankOutline,\n BehanceCircleFill,\n BehanceSquareFill,\n BoldOutline,\n BellOutline,\n BehanceOutline,\n BlockOutline,\n BehanceSquareOutline,\n BgColorsOutline,\n BellTwoTone,\n BarChartOutline,\n BookTwoTone,\n BookFill,\n BorderOuterOutline,\n BorderLeftOutline,\n BorderBottomOutline,\n BorderHorizontalOutline,\n BorderTopOutline,\n BorderOutline,\n BorderInnerOutline,\n BorderRightOutline,\n BoxPlotOutline,\n BoxPlotFill,\n BoxPlotTwoTone,\n BookOutline,\n BorderlessTableOutline,\n BorderVerticleOutline,\n BuildTwoTone,\n BuildOutline,\n BugFill,\n BugOutline,\n BugTwoTone,\n BulbFill,\n BulbTwoTone,\n BuildFill,\n BulbOutline,\n CalculatorFill,\n CalculatorTwoTone,\n CalendarFill,\n CalendarOutline,\n CalculatorOutline,\n CalendarTwoTone,\n CameraOutline,\n CameraFill,\n CameraTwoTone,\n CarTwoTone,\n CaretDownOutline,\n CarOutline,\n CaretLeftFill,\n CarFill,\n CaretRightOutline,\n CaretDownFill,\n CaretUpOutline,\n CaretRightFill,\n CarryOutFill,\n CarryOutOutline,\n CaretLeftOutline,\n CaretUpFill,\n BranchesOutline,\n CarryOutTwoTone,\n CheckCircleFill,\n CheckCircleOutline,\n CheckSquareOutline,\n CheckCircleTwoTone,\n CiCircleTwoTone,\n CheckOutline,\n CheckSquareTwoTone,\n CiOutline,\n CheckSquareFill,\n CiTwoTone,\n ChromeOutline,\n ClockCircleOutline,\n CiCircleOutline,\n ChromeFill,\n ClearOutline,\n CloseCircleTwoTone,\n CiCircleFill,\n CloseCircleOutline,\n ClockCircleFill,\n CloseCircleFill,\n ClockCircleTwoTone,\n CloseOutline,\n CloseSquareOutline,\n CloseSquareFill,\n CloudFill,\n CloseSquareTwoTone,\n CloudDownloadOutline,\n CloudTwoTone,\n CloudServerOutline,\n CloudUploadOutline,\n CloudSyncOutline,\n ClusterOutline,\n CodeSandboxCircleFill,\n CodeFill,\n CodepenCircleOutline,\n CloudOutline,\n CodeSandboxOutline,\n CodeOutline,\n CodeSandboxSquareFill,\n CodeTwoTone,\n CodepenSquareFill,\n CodepenOutline,\n CoffeeOutline,\n ColumnWidthOutline,\n CompressOutline,\n ColumnHeightOutline,\n CodepenCircleFill,\n CompassTwoTone,\n CommentOutline,\n ContainerFill,\n CompassOutline,\n ConsoleSqlOutline,\n ContactsOutline,\n ContainerTwoTone,\n ContactsFill,\n ContactsTwoTone,\n ContainerOutline,\n ControlFill,\n CopyFill,\n CopyOutline,\n CompassFill,\n CopyTwoTone,\n CopyrightOutline,\n CopyrightCircleOutline,\n ControlTwoTone,\n ControlOutline,\n CreditCardFill,\n CopyrightTwoTone,\n CrownFill,\n CopyrightCircleFill,\n CrownOutline,\n CustomerServiceTwoTone,\n CreditCardOutline,\n CustomerServiceOutline,\n DashboardTwoTone,\n CrownTwoTone,\n CreditCardTwoTone,\n CustomerServiceFill,\n DashboardFill,\n DashOutline,\n DatabaseOutline,\n DatabaseTwoTone,\n DatabaseFill,\n DashboardOutline,\n DeleteTwoTone,\n DeleteRowOutline,\n DeleteColumnOutline,\n DeliveredProcedureOutline,\n DeleteOutline,\n CopyrightCircleTwoTone,\n DesktopOutline,\n DeleteFill,\n DiffOutline,\n DiffFill,\n DeploymentUnitOutline,\n DiffTwoTone,\n DingtalkOutline,\n DollarCircleFill,\n DislikeFill,\n DingtalkSquareFill,\n DisconnectOutline,\n DollarCircleTwoTone,\n DollarOutline,\n DingtalkCircleFill,\n DislikeTwoTone,\n DollarTwoTone,\n DownCircleFill,\n DislikeOutline,\n DollarCircleOutline,\n DoubleLeftOutline,\n DownSquareFill,\n DownOutline,\n DownSquareOutline,\n DownSquareTwoTone,\n DownCircleTwoTone,\n DoubleRightOutline,\n DownCircleOutline,\n DownloadOutline,\n DotChartOutline,\n DribbbleCircleFill,\n DribbbleOutline,\n DribbbleSquareOutline,\n DropboxCircleFill,\n DingdingOutline,\n EditOutline,\n DribbbleSquareFill,\n DropboxSquareFill,\n EllipsisOutline,\n EnvironmentFill,\n EditFill,\n EnterOutline,\n EuroCircleFill,\n EuroTwoTone,\n EuroCircleOutline,\n EditTwoTone,\n EuroOutline,\n EnvironmentTwoTone,\n ExclamationCircleFill,\n ExpandAltOutline,\n EuroCircleTwoTone,\n ExclamationCircleTwoTone,\n EnvironmentOutline,\n ExperimentOutline,\n ExperimentFill,\n ExpandOutline,\n ExceptionOutline,\n ExportOutline,\n ExperimentTwoTone,\n ExclamationCircleOutline,\n ExclamationOutline,\n EyeFill,\n EyeInvisibleFill,\n EyeInvisibleTwoTone,\n DropboxOutline,\n DragOutline,\n FacebookOutline,\n FacebookFill,\n EyeTwoTone,\n EyeOutline,\n FastForwardFill,\n FieldBinaryOutline,\n FieldNumberOutline,\n FastBackwardOutline,\n FileAddFill,\n FastBackwardFill,\n FileExcelFill,\n FastForwardOutline,\n FieldStringOutline,\n FileDoneOutline,\n FileAddTwoTone,\n FileExcelTwoTone,\n FileExclamationFill,\n FileAddOutline,\n FileExclamationOutline,\n FieldTimeOutline,\n FileImageTwoTone,\n FileExcelOutline,\n FileExclamationTwoTone,\n FileImageFill,\n FileGifOutline,\n FileFill,\n FileMarkdownTwoTone,\n FileMarkdownOutline,\n FallOutline,\n FileImageOutline,\n EyeInvisibleOutline,\n FilePdfOutline,\n FileSearchOutline,\n FilePptTwoTone,\n FilePdfTwoTone,\n FileJpgOutline,\n FileTextFill,\n FilePptOutline,\n FileSyncOutline,\n FilePptFill,\n FileUnknownOutline,\n FileProtectOutline,\n FileTextTwoTone,\n FileWordFill,\n FileUnknownTwoTone,\n FileWordTwoTone,\n FileUnknownFill,\n FileTextOutline,\n FileZipFill,\n FilterTwoTone,\n FilterFill,\n FileWordOutline,\n FireOutline,\n FireTwoTone,\n FileZipOutline,\n FilterOutline,\n FlagTwoTone,\n FileTwoTone,\n FilePdfFill,\n FileOutline,\n FileMarkdownFill,\n FileZipTwoTone,\n FlagOutline,\n FolderAddTwoTone,\n FolderOpenFill,\n FireFill,\n FlagFill,\n FolderOutline,\n FolderViewOutline,\n FolderTwoTone,\n FontColorsOutline,\n FolderOpenTwoTone,\n FolderFill,\n ForwardOutline,\n FolderOpenOutline,\n ForkOutline,\n ForwardFill,\n FormatPainterOutline,\n FormatPainterFill,\n FormOutline,\n FrownFill,\n FrownTwoTone,\n FullscreenOutline,\n FontSizeOutline,\n FundFill,\n FunctionOutline,\n FundViewOutline,\n FullscreenExitOutline,\n GifOutline,\n FundProjectionScreenOutline,\n FundTwoTone,\n FolderAddFill,\n FunnelPlotTwoTone,\n GiftOutline,\n FunnelPlotFill,\n FundOutline,\n FrownOutline,\n GithubOutline,\n GoldFill,\n FolderAddOutline,\n GitlabFill,\n GiftFill,\n GitlabOutline,\n GoldTwoTone,\n GoogleCircleFill,\n GiftTwoTone,\n GooglePlusCircleFill,\n GoldOutline,\n GithubFill,\n GoogleOutline,\n GooglePlusOutline,\n GoogleSquareFill,\n GoldenFill,\n HddTwoTone,\n GooglePlusSquareFill,\n GlobalOutline,\n HeartOutline,\n HeartTwoTone,\n GroupOutline,\n HeartFill,\n HeatMapOutline,\n GatewayOutline,\n FunnelPlotOutline,\n HddFill,\n HomeFill,\n HighlightFill,\n HomeOutline,\n HistoryOutline,\n HighlightOutline,\n HddOutline,\n HourglassFill,\n HomeTwoTone,\n HourglassTwoTone,\n Html5Outline,\n Html5Fill,\n IdcardFill,\n Html5TwoTone,\n HourglassOutline,\n IdcardTwoTone,\n IdcardOutline,\n IeOutline,\n IeCircleFill,\n IeSquareFill,\n InboxOutline,\n ImportOutline,\n InfoCircleOutline,\n InfoCircleTwoTone,\n InsertRowAboveOutline,\n InsertRowRightOutline,\n InfoCircleFill,\n InfoOutline,\n InsertRowBelowOutline,\n HighlightTwoTone,\n InsuranceFill,\n InstagramFill,\n InteractionFill,\n InsertRowLeftOutline,\n InstagramOutline,\n InteractionOutline,\n ItalicOutline,\n InteractionTwoTone,\n LayoutOutline,\n IssuesCloseOutline,\n LayoutFill,\n LaptopOutline,\n LeftCircleFill,\n LayoutTwoTone,\n KeyOutline,\n LeftOutline,\n LeftCircleOutline,\n LeftSquareOutline,\n LeftSquareFill,\n LeftCircleTwoTone,\n LikeFill,\n LeftSquareTwoTone,\n LineOutline,\n LikeTwoTone,\n LinkedinOutline,\n LineChartOutline,\n LineHeightOutline,\n LinkedinFill,\n LinkOutline,\n LikeOutline,\n InsuranceOutline,\n Loading3QuartersOutline,\n LockFill,\n InsuranceTwoTone,\n MacCommandOutline,\n LockTwoTone,\n LoadingOutline,\n MailOutline,\n LoginOutline,\n MedicineBoxOutline,\n MailFill,\n MailTwoTone,\n MacCommandFill,\n ManOutline,\n MedicineBoxFill,\n MedicineBoxTwoTone,\n MediumCircleFill,\n MediumOutline,\n MehFill,\n MediumWorkmarkOutline,\n MenuFoldOutline,\n MehOutline,\n MediumSquareFill,\n MessageTwoTone,\n MehTwoTone,\n MergeCellsOutline,\n MinusCircleFill,\n MenuOutline,\n MenuUnfoldOutline,\n MessageFill,\n MinusCircleTwoTone,\n LockOutline,\n MinusOutline,\n MinusCircleOutline,\n LogoutOutline,\n MessageOutline,\n MoneyCollectFill,\n MinusSquareOutline,\n MinusSquareTwoTone,\n MobileOutline,\n MobileTwoTone,\n MoneyCollectOutline,\n MoreOutline,\n NotificationFill,\n NotificationOutline,\n MoneyCollectTwoTone,\n NodeIndexOutline,\n NodeExpandOutline,\n MonitorOutline,\n OrderedListOutline,\n NodeCollapseOutline,\n NumberOutline,\n PaperClipOutline,\n NotificationTwoTone,\n PauseCircleFill,\n PartitionOutline,\n PauseOutline,\n OneToOneOutline,\n PayCircleOutline,\n PayCircleFill,\n MinusSquareFill,\n PauseCircleOutline,\n PauseCircleTwoTone,\n PicCenterOutline,\n PicRightOutline,\n PercentageOutline,\n MobileFill,\n PictureOutline,\n PictureFill,\n PhoneTwoTone,\n PhoneFill,\n PieChartFill,\n PictureTwoTone,\n PieChartOutline,\n PlaySquareFill,\n PlayCircleTwoTone,\n PlayCircleFill,\n PlusCircleFill,\n PlaySquareTwoTone,\n PlaySquareOutline,\n PlayCircleOutline,\n PieChartTwoTone,\n PlusCircleOutline,\n PlusSquareFill,\n PoundCircleFill,\n PlusSquareOutline,\n PlusOutline,\n PoundOutline,\n PoundCircleOutline,\n PlusSquareTwoTone,\n PlusCircleTwoTone,\n PoweroffOutline,\n PoundCircleTwoTone,\n PhoneOutline,\n PrinterFill,\n PicLeftOutline,\n ProjectTwoTone,\n PrinterOutline,\n ProjectFill,\n ProfileOutline,\n ProfileTwoTone,\n ProjectOutline,\n PropertySafetyFill,\n PullRequestOutline,\n PropertySafetyOutline,\n PushpinOutline,\n PushpinTwoTone,\n PropertySafetyTwoTone,\n PushpinFill,\n QqOutline,\n QqCircleFill,\n QrcodeOutline,\n QqSquareFill,\n QuestionCircleTwoTone,\n QuestionCircleFill,\n RadarChartOutline,\n RadiusUprightOutline,\n QuestionCircleOutline,\n QuestionOutline,\n ReadFill,\n RadiusUpleftOutline,\n RadiusBottomleftOutline,\n RadiusSettingOutline,\n RadiusBottomrightOutline,\n ProfileFill,\n PrinterTwoTone,\n ReadOutline,\n ReconciliationFill,\n ReloadOutline,\n ReconciliationOutline,\n RedEnvelopeTwoTone,\n RedditCircleFill,\n RedoOutline,\n RedEnvelopeFill,\n RedditOutline,\n RestTwoTone,\n RightCircleOutline,\n RestOutline,\n RedditSquareFill,\n RestFill,\n RightCircleTwoTone,\n RightOutline,\n RightSquareFill,\n RightCircleFill,\n RightSquareOutline,\n RetweetOutline,\n RiseOutline,\n RightSquareTwoTone,\n RobotFill,\n RocketOutline,\n RobotOutline,\n RocketTwoTone,\n RocketFill,\n RedEnvelopeOutline,\n RollbackOutline,\n RotateRightOutline,\n RotateLeftOutline,\n ReconciliationTwoTone,\n SafetyCertificateTwoTone,\n SaveOutline,\n SafetyOutline,\n SaveFill,\n SaveTwoTone,\n ScheduleFill,\n SafetyCertificateOutline,\n ScanOutline,\n ScheduleTwoTone,\n SearchOutline,\n ScheduleOutline,\n SecurityScanTwoTone,\n SecurityScanOutline,\n ScissorOutline,\n SelectOutline,\n SecurityScanFill,\n SendOutline,\n SettingOutline,\n SettingTwoTone,\n SettingFill,\n ShareAltOutline,\n ShopOutline,\n ShopFill,\n ShopTwoTone,\n ShrinkOutline,\n ShakeOutline,\n ShoppingOutline,\n ShoppingCartOutline,\n ShoppingFill,\n SisternodeOutline,\n ShoppingTwoTone,\n SafetyCertificateFill,\n SkinOutline,\n SignalFill,\n SketchOutline,\n SkinTwoTone,\n SketchSquareFill,\n SkypeFill,\n SkinFill,\n SlackCircleFill,\n SlackSquareFill,\n SlidersTwoTone,\n SkypeOutline,\n SlidersFill,\n SlackSquareOutline,\n SmallDashOutline,\n SmileTwoTone,\n SlidersOutline,\n SnippetsFill,\n SnippetsOutline,\n SmileOutline,\n SolutionOutline,\n SlackOutline,\n SnippetsTwoTone,\n SoundTwoTone,\n SortAscendingOutline,\n SoundFill,\n SortDescendingOutline,\n SmileFill,\n SoundOutline,\n SplitCellsOutline,\n SketchCircleFill,\n StarOutline,\n StockOutline,\n StarTwoTone,\n StepForwardFill,\n StarFill,\n StepBackwardFill,\n StepForwardOutline,\n StopFill,\n SubnodeOutline,\n SwapLeftOutline,\n StopOutline,\n StopTwoTone,\n SwapRightOutline,\n SwapOutline,\n SwitcherTwoTone,\n SwitcherOutline,\n SyncOutline,\n StrikethroughOutline,\n SwitcherFill,\n TagOutline,\n TabletTwoTone,\n TabletOutline,\n TabletFill,\n TableOutline,\n TagsFill,\n TagFill,\n TagsTwoTone,\n TaobaoCircleOutline,\n StepBackwardOutline,\n TagsOutline,\n TagTwoTone,\n TaobaoOutline,\n ThunderboltOutline,\n TaobaoSquareFill,\n TeamOutline,\n TaobaoCircleFill,\n ThunderboltTwoTone,\n ToolFill,\n ThunderboltFill,\n ToTopOutline,\n ToolOutline,\n ToolTwoTone,\n TrademarkCircleFill,\n TrophyFill,\n TrademarkCircleTwoTone,\n TransactionOutline,\n TrademarkCircleOutline,\n TranslationOutline,\n TwitterCircleFill,\n TrophyOutline,\n TrademarkOutline,\n TrophyTwoTone,\n TwitterSquareFill,\n UnlockFill,\n TwitterOutline,\n UnderlineOutline,\n UndoOutline,\n UpCircleFill,\n UngroupOutline,\n UnlockTwoTone,\n UnlockOutline,\n UpOutline,\n UsbFill,\n UpCircleOutline,\n UnorderedListOutline,\n UpCircleTwoTone,\n UpSquareFill,\n UpSquareOutline,\n UserAddOutline,\n UsbTwoTone,\n UsergroupDeleteOutline,\n UpSquareTwoTone,\n UserOutline,\n UsbOutline,\n UserDeleteOutline,\n UserSwitchOutline,\n VerticalLeftOutline,\n VerticalAlignBottomOutline,\n VerifiedOutline,\n UsergroupAddOutline,\n UploadOutline,\n VerticalAlignMiddleOutline,\n VerticalAlignTopOutline,\n VerticalRightOutline,\n VideoCameraOutline,\n VideoCameraAddOutline,\n VideoCameraTwoTone,\n VideoCameraFill,\n WalletOutline,\n WalletFill,\n WarningFill,\n WarningOutline,\n WechatOutline,\n WalletTwoTone,\n WeiboCircleFill,\n WarningTwoTone,\n WeiboSquareFill,\n WeiboOutline,\n WeiboSquareOutline,\n WeiboCircleOutline,\n WechatFill,\n WhatsAppOutline,\n WifiOutline,\n WomanOutline,\n YoutubeFill,\n YahooOutline,\n WindowsFill,\n WindowsOutline,\n YoutubeOutline,\n YuqueOutline,\n ZhihuCircleFill,\n YuqueFill,\n ZhihuOutline,\n ZhihuSquareFill,\n ZoomInOutline,\n ZoomOutOutline,\n YahooFill\n];\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":"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"}
@@ -1,169 +0,0 @@
1
- import { ChangeDetectorRef, OnDestroy, OnInit, AfterViewInit, EventEmitter } from '@angular/core';
2
- import { Subscription } from 'rxjs';
3
- import { STComponent } from '@yelon/abc/st';
4
- import { NzSafeAny } from 'ng-zorro-antd/core/types';
5
- import { NzTreeNodeOptions, NzFormatEmitEvent } from 'ng-zorro-antd/tree';
6
- import { ContactService } from './contact.service';
7
- import * as i0 from "@angular/core";
8
- export declare class ContactComponent implements OnInit, OnDestroy, AfterViewInit {
9
- private contact;
10
- private changeDetectorRef;
11
- subs: Subscription[];
12
- /**
13
- * tabset
14
- */
15
- nzTabsetSearch: string | null;
16
- nzTabsetLoading: boolean;
17
- /**
18
- * 树展开状态
19
- */
20
- nzExpandAll: boolean;
21
- /**
22
- * 部门树和部门查询的一些选项/可传可不传
23
- */
24
- nzDepts: NzTreeNodeOptions[];
25
- private _nzDeptsCopy;
26
- nzDeptTreeVirtualHeight: string | null;
27
- nzDeptClass: boolean;
28
- nzDeptClassHistory: boolean;
29
- nzDeptGrade: boolean;
30
- nzDeptGradeID: string | null;
31
- /**
32
- * 角色树
33
- */
34
- nzRoles: NzTreeNodeOptions[];
35
- private _nzRolesCopy;
36
- nzRoleTreeVirtualHeight: string | null;
37
- /**
38
- * 好友分组
39
- */
40
- nzFriendGroups: NzSafeAny[];
41
- _nzFriendGroupsCopy: NzSafeAny[];
42
- /**
43
- * table组件,帮助文档: https://ng.yunzainfo.com/components/st/zh?#API
44
- */
45
- st: STComponent;
46
- /**
47
- * 联系人
48
- */
49
- defaultContacts: string[];
50
- nzContacts: NzSafeAny[];
51
- nzContactLoading: boolean;
52
- /**
53
- * 提交和提交按钮
54
- */
55
- button: boolean;
56
- readonly confirmed: EventEmitter<NzSafeAny[]>;
57
- constructor(contact: ContactService, changeDetectorRef: ChangeDetectorRef);
58
- /**
59
- * 初始化,首先加载部门树和默认选中的人的数据
60
- */
61
- ngOnInit(): void;
62
- /**
63
- * 视图初始化完毕后进行table初始化
64
- */
65
- ngAfterViewInit(): void;
66
- /**
67
- * 初始化默认选中联系人
68
- */
69
- onContactsInit(): void;
70
- /**
71
- * table初始化
72
- */
73
- onTableInit(): void;
74
- /**
75
- * tabset进入加载状态
76
- */
77
- onTabsetLoadStart(): void;
78
- /**
79
- * tabset取消加载状态
80
- */
81
- onTabsetLoadEnd(): void;
82
- /**
83
- * tabset搜索框清除
84
- */
85
- onTabsetSearchClean(): void;
86
- /**
87
- * tabset搜索框输入
88
- *
89
- * @param type 类型
90
- * @param value 值
91
- */
92
- onTabsetSearchChange(type: 'dept' | 'role' | 'friendGroup', value: string): void;
93
- /**
94
- * tabset切换到部门
95
- */
96
- onTabsetDept(): void;
97
- /**
98
- * tabset切换到角色
99
- */
100
- onTabsetRole(): void;
101
- /**
102
- * tabset切换到好友分组
103
- */
104
- onTabsetFriendGroup(): void;
105
- /**
106
- * 获取部门树
107
- */
108
- onTabsetDeptFlush(): void;
109
- onTabsetRoleFlush(groupRoleCode: string): void;
110
- onTabsetFriendGroupFlush(): void;
111
- /**
112
- * 部门树点击
113
- *
114
- * @param e 节点
115
- */
116
- onDeptClick(e: NzFormatEmitEvent): void;
117
- /**
118
- * 角色树点击
119
- *
120
- * @param e 节点
121
- */
122
- onRoleClick(e: NzFormatEmitEvent): void;
123
- /**
124
- * 好友分组点击
125
- *
126
- * @param e 分组
127
- */
128
- onFriendGroupClick(e: NzSafeAny): void;
129
- /**
130
- * 点击右侧联系人进行删除
131
- *
132
- * @param c 点击的联系人
133
- */
134
- onContactRemove(c: NzSafeAny): void;
135
- /**
136
- * 预处理table当前页数据,和nzContat对比,确定checkbox状态
137
- *
138
- * @param data 预处理数据
139
- */
140
- onTableCheck(data: NzSafeAny[]): void;
141
- /**
142
- * 递归树寻找name相同节点
143
- *
144
- * @param name 名称
145
- * @param trees 需要递归的树
146
- * @param list 搜索结果
147
- */
148
- searchTree(name: string, trees: NzTreeNodeOptions[], list: NzTreeNodeOptions[]): void;
149
- /**
150
- * 递归树展开所有有子节点的节点
151
- *
152
- * @param trees 需要展开的树
153
- */
154
- expandTree(trees: NzTreeNodeOptions[]): void;
155
- /**
156
- * 刷新当前页面
157
- */
158
- refresh(): void;
159
- /**
160
- * 确认按钮output数据
161
- */
162
- confirm(): void;
163
- /**
164
- * 销毁函数
165
- */
166
- ngOnDestroy(): void;
167
- static ɵfac: i0.ɵɵFactoryDeclaration<ContactComponent, never>;
168
- static ɵcmp: i0.ɵɵComponentDeclaration<ContactComponent, "contact", never, { "nzTabsetSearch": "nzTabsetSearch"; "nzTabsetLoading": "nzTabsetLoading"; "nzExpandAll": "nzExpandAll"; "nzDepts": "nzDepts"; "nzDeptTreeVirtualHeight": "nzDeptTreeVirtualHeight"; "nzDeptClass": "nzDeptClass"; "nzDeptClassHistory": "nzDeptClassHistory"; "nzDeptGrade": "nzDeptGrade"; "nzDeptGradeID": "nzDeptGradeID"; "nzRoles": "nzRoles"; "nzRoleTreeVirtualHeight": "nzRoleTreeVirtualHeight"; "nzFriendGroups": "nzFriendGroups"; "defaultContacts": "defaultContacts"; "nzContacts": "nzContacts"; "nzContactLoading": "nzContactLoading"; "button": "button"; }, { "confirmed": "confirmed"; }, never, never, false>;
169
- }
@@ -1,118 +0,0 @@
1
- import { Observable } from 'rxjs';
2
- import { CacheService } from '@yelon/cache';
3
- import { _HttpClient } from '@yelon/theme';
4
- import { NzSafeAny } from 'ng-zorro-antd/core/types';
5
- import { NzTreeNodeOptions } from 'ng-zorro-antd/tree';
6
- import * as i0 from "@angular/core";
7
- export interface BaseUserParam {
8
- realName?: string;
9
- userCode?: string;
10
- deptId?: string;
11
- roleId?: string;
12
- friendGroupId?: string;
13
- userTypes?: string;
14
- buildId?: string;
15
- floor?: string;
16
- roomId?: string;
17
- rylb?: string;
18
- }
19
- export interface Page<T> {
20
- pageNum: number;
21
- pageSize: number;
22
- pageParam?: T;
23
- }
24
- export interface PageRes<T> {
25
- endRow: number;
26
- hasNextPage: boolean;
27
- hasPreviousPage: boolean;
28
- isFirstPage: boolean;
29
- isLastPage: boolean;
30
- list: T[];
31
- navigateFirstPage: number;
32
- navigateLastPage: number;
33
- navigatePages: number;
34
- navigatepageNums: number[];
35
- nextPage: number;
36
- pageNum: number;
37
- pageSize: number;
38
- pages: number;
39
- prePage: number;
40
- size: number;
41
- startRow: number;
42
- total: number;
43
- }
44
- export declare class ContactService {
45
- private http;
46
- private cache;
47
- constructor(http: _HttpClient, cache: CacheService);
48
- /**
49
- * 部门树查询
50
- *
51
- * @param clas 包含班级
52
- * @returns 可观察部门树
53
- */
54
- dept(clas: boolean): Observable<NzTreeNodeOptions[]>;
55
- /**
56
- * 部门树查询
57
- *
58
- * @param clas 包含班级
59
- * @param his 包含历史班级
60
- * @returns 可观察部门树
61
- */
62
- dept(clas: boolean, his: boolean): Observable<NzTreeNodeOptions[]>;
63
- /**
64
- * 部门树查询
65
- *
66
- * @param clas 包含班级
67
- * @param his 包含历史班级
68
- * @param grade 系部
69
- * @returns 可观察部门树
70
- */
71
- dept(clas: boolean, his: boolean, grade: boolean): Observable<NzTreeNodeOptions[]>;
72
- /**
73
- * 部门树查询
74
- *
75
- * @param clas 包含班级
76
- * @param his 包含历史班级
77
- * @param grade 系部
78
- * @param gradeID 系部ID
79
- * @returns 可观察部门树
80
- */
81
- dept(clas: boolean, his: boolean, grade: boolean, gradeID: string | null): Observable<NzTreeNodeOptions[]>;
82
- page<U, T>(uri: string, page: Page<U>): Observable<PageRes<T>>;
83
- pageBaseUser(page: Page<BaseUserParam>): Observable<PageRes<NzSafeAny>>;
84
- getUserByIds(ids: string[]): Observable<any[]>;
85
- /**
86
- * 查询人员信息
87
- *
88
- * @param userIds[] 用户id数组,["aaa","bbb","ccc"]
89
- */
90
- getUserByUserIds(userIds: any): Observable<any[]>;
91
- /**
92
- * 获取角色组角色
93
- *
94
- * @param roleGroupCode 角色组code
95
- */
96
- getGroupRole(roleGroupCode: string): Observable<NzTreeNodeOptions[]>;
97
- /**
98
- * 查询当前用户好友分组
99
- */
100
- getFriendGroup(): Observable<any[]>;
101
- /**
102
- * 查询年级
103
- */
104
- getGrade(): Observable<any[]>;
105
- /**
106
- * 查询人员类别列表
107
- */
108
- getRylbs(): Observable<any[]>;
109
- /**
110
- * 获取学生公寓树
111
- *
112
- * @param isPower 是否带有权限,默认false
113
- * @param treeType 树类型 0:宿舍楼 1:宿舍楼+层 2:宿舍楼+层+房间
114
- */
115
- getDormTree(isPower: boolean, treeType: number): Observable<any[]>;
116
- static ɵfac: i0.ɵɵFactoryDeclaration<ContactService, never>;
117
- static ɵprov: i0.ɵɵInjectableDeclaration<ContactService>;
118
- }
package/layout/index.d.ts DELETED
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@yelon/bis/layout" />
5
- export * from './public_api';
@@ -1,21 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./contact/contact.component";
3
- import * as i2 from "./yz.basic.component";
4
- import * as i3 from "./widgets/yz.application.component";
5
- import * as i4 from "./widgets/yz.notify.component";
6
- import * as i5 from "./widgets/yz.them-btn.component";
7
- import * as i6 from "./widgets/yz.user.component";
8
- import * as i7 from "./widgets/yz.fullscreen.component";
9
- import * as i8 from "./widgets/yz.clear-storage.component";
10
- import * as i9 from "./widgets/yz.i18n.component";
11
- import * as i10 from "./widgets/yz.application.group.component";
12
- import * as i11 from "@angular/common/http";
13
- import * as i12 from "@angular/common";
14
- import * as i13 from "@angular/forms";
15
- import * as i14 from "@angular/router";
16
- import * as i15 from "@yelon/bis/shared";
17
- export declare class YunzaiLayoutModule {
18
- static ɵfac: i0.ɵɵFactoryDeclaration<YunzaiLayoutModule, never>;
19
- static ɵmod: i0.ɵɵNgModuleDeclaration<YunzaiLayoutModule, [typeof i1.ContactComponent, typeof i2.YzLayoutBasicComponent, typeof i3.YzHeaderApplicationComponent, typeof i4.YzHeaderNotifyComponent, typeof i5.YzHeaderThemBtnComponent, typeof i6.YzHeaderUserComponent, typeof i7.YzHeaderFullScreenComponent, typeof i8.YzHeaderClearStorageComponent, typeof i9.YzHeaderI18NComponent, typeof i10.YzHeaderApplicationGroupComponent], [typeof i11.HttpClientModule, typeof i12.CommonModule, typeof i13.FormsModule, typeof i14.RouterModule, typeof i13.ReactiveFormsModule, typeof i15.YzSharedModule], [typeof i1.ContactComponent, typeof i2.YzLayoutBasicComponent, typeof i3.YzHeaderApplicationComponent, typeof i4.YzHeaderNotifyComponent, typeof i5.YzHeaderThemBtnComponent, typeof i6.YzHeaderUserComponent, typeof i7.YzHeaderFullScreenComponent, typeof i8.YzHeaderClearStorageComponent, typeof i9.YzHeaderI18NComponent, typeof i10.YzHeaderApplicationGroupComponent]>;
20
- static ɵinj: i0.ɵɵInjectorDeclaration<YunzaiLayoutModule>;
21
- }
@@ -1,26 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class PathToRegexpService {
3
- constructor();
4
- DEFAULT_DELIMITER: string;
5
- PATH_REGEXP: RegExp;
6
- parse(str: any, options: any): (string | {
7
- name: string | number;
8
- prefix: string;
9
- delimiter: any;
10
- optional: boolean;
11
- repeat: boolean;
12
- pattern: any;
13
- })[];
14
- compile(str: any, options: any): (data: any, options: any) => string;
15
- tokensToFunction(tokens: any, options: any): (data: any, options: any) => string;
16
- escapeString(str: any): any;
17
- escapeGroup(group: any): any;
18
- flags(options: any): "" | "i";
19
- regexpToRegexp(path: any, keys: any): any;
20
- arrayToRegexp(path: any, keys: any, options: any): RegExp;
21
- stringToRegexp(path: any, keys: any, options: any): RegExp;
22
- tokensToRegExp(tokens: any, keys: any, options: any): RegExp;
23
- pathToRegexp(path: any, keys: any, options: any): any;
24
- static ɵfac: i0.ɵɵFactoryDeclaration<PathToRegexpService, never>;
25
- static ɵprov: i0.ɵɵInjectableDeclaration<PathToRegexpService>;
26
- }
@@ -1,14 +0,0 @@
1
- export * from './widgets';
2
- export * from './layout.module';
3
- export * from './yz.auth.service';
4
- export * from './yz.basic.component';
5
- export * from './yz.default.interceptor';
6
- export * from './yz.i18n.service';
7
- export * from './yz.startup.service';
8
- export * from './bis.config';
9
- export * from './stomp.config';
10
- export * from './yz.stomp.service';
11
- export * from './act.guard';
12
- export * from './path-to-regexp.service';
13
- export * from './contact/contact.component';
14
- export * from './contact/contact.service';
@@ -1,3 +0,0 @@
1
- import { YunzaiConfigService, YunzaiStompConfig } from '@yelon/util';
2
- export declare const STOMP_DEFAULT_CONFIG: YunzaiStompConfig;
3
- export declare function mergeStompConfig(srv: YunzaiConfigService): YunzaiStompConfig;
@@ -1,155 +0,0 @@
1
- @import '../../../theme/theme-default.less';
2
-
3
-
4
- .yz-application {
5
- position: fixed;
6
- top: @yz-application-top;
7
- left: 0;
8
- width: @yz-application-width;
9
- height: @yz-application-height;
10
- overflow: hidden;
11
- background-color: @yz-application-bgColor;
12
- box-shadow: 10px 10px 10px 0 @yz-application-border-shadow;
13
- }
14
-
15
- .yz-application-topic {
16
- background-color: @yz-application-topic-bgColor;
17
- }
18
-
19
- .yz-application-text {
20
- display: block;
21
- margin-left: -12px;
22
- padding: 3px 40px;
23
- overflow: hidden;
24
- color: @yz-application-topic-text-color;
25
- font-weight: @yz-application-topic-text-font-weight;
26
- line-height: @yz-application-topic-text-line-height;
27
- white-space: nowrap;
28
- text-overflow: ellipsis;
29
- transition: 0.2s 0.2s 0.2s 0.2s;
30
- }
31
-
32
- .yz-application-text:hover {
33
- color: @yz-application-topic-text-hover-color;
34
- font-weight: bold;
35
- background: @yz-application-topic-text-hover-bgColor;
36
- }
37
-
38
- .yz-application-container {
39
- height: @yz-application-height;
40
- overflow: auto;
41
- }
42
-
43
- .yz-application-list {
44
- padding: @yz-application-list-padding;
45
-
46
- ul {
47
- width: @yz-application-list-ul-width;
48
- padding: @yz-application-list-ul-padding;
49
- overflow: hidden;
50
- column-count: 4;
51
-
52
- li {
53
- float: left;
54
- width: @yz-application-list-ul-li-width;
55
- margin-bottom: @yz-application-list-ul-li-margin-bottom;
56
- padding: @yz-application-list-ul-li-padding;
57
- list-style: none;
58
- -webkit-column-break-inside: avoid;
59
- break-inside: avoid;
60
-
61
- h5 {
62
- margin-top: @yz-application-list-ul-h5-margin-top;
63
- color: @yz-application-list-ul-h5-color;
64
- font-weight: @yz-application-list-ul-h5-font-weight;
65
- font-size: @yz-application-list-ul-h5-font-size;
66
- line-height: @yz-application-list-ul-h5-line-height;
67
- }
68
-
69
- a {
70
- display: @yz-application-list-ul-a-display;
71
- padding: @yz-application-list-ul-a-padding;
72
- overflow: @yz-application-list-ul-a-overflow;
73
- color: @yz-application-list-ul-a-color;
74
- font-size: @yz-application-list-ul-a-font-size;
75
- line-height: @yz-application-list-ul-a-line-height;
76
- white-space: @yz-application-list-ul-a-white-space;
77
- text-overflow: @yz-application-list-ul-a-text-overflow;
78
- }
79
-
80
- a:hover {
81
- color: @yz-application-list-ul-a-hover-color;
82
- background: @yz-application-list-ul-a-hover-bgColor;
83
- }
84
- }
85
- }
86
- }
87
-
88
- .yz-application-list-search {
89
- margin: @yz-application-list-search-margin;
90
- padding: @yz-application-list-search-padding;
91
- }
92
-
93
-
94
- .yz-application-list-item {
95
- h4, p {
96
- margin: @yz-application-list-item-h4p-margin;
97
- overflow: @yz-application-list-item-h4p-overflow;
98
- color: @yz-application-list-item-h4p-color;
99
- white-space: @yz-application-list-item-h4p-white-space;
100
- text-overflow: @yz-application-list-item-h4p-text-overflow;
101
- }
102
-
103
- h4 {
104
- font-weight: @yz-application-list-item-h4-font-weight;
105
- line-height: @yz-application-list-item-h4-line-height;
106
- }
107
-
108
- p {
109
- line-height: @yz-application-list-item-p-line-height;
110
- }
111
-
112
- li:hover {
113
- p {
114
- color: @yz-application-list-item-li-hover-color;
115
- }
116
-
117
- h4 {
118
- color: @yz-application-list-item-li-hover-color;
119
- }
120
-
121
- background: @yz-application-list-item-li-hover-bgColor;
122
- }
123
- }
124
-
125
- .yz-application-group {
126
- .ant-dropdown-link {
127
- color: @yz-application-topic-text-color;
128
- }
129
-
130
- .ant-tabs-nav-operations {
131
- color: @yz-application-topic-text-color
132
- }
133
-
134
- .ant-tabs-top > .ant-tabs-nav::before {
135
- border: none
136
- }
137
-
138
- .ant-tabs-top > .ant-tabs-nav {
139
- margin: 0
140
- }
141
-
142
- padding: 0 10px
143
- }
144
-
145
- .yz-application-dropdown{
146
- max-height:80vh;
147
- overflow-y:auto;
148
- }
149
-
150
- .yz-user-name{
151
- width:92px;
152
- overflow:hidden;
153
- white-space:nowrap;
154
- text-overflow:ellipsis;
155
- }
@@ -1,8 +0,0 @@
1
- export * from './yz.application.component';
2
- export * from './yz.i18n.component';
3
- export * from './yz.notify.component';
4
- export * from './yz.them-btn.component';
5
- export * from './yz.user.component';
6
- export * from './yz.clear-storage.component';
7
- export * from './yz.fullscreen.component';
8
- export * from './yz.application.group.component';