@yelon/bis 12.0.16 → 13.0.0-beta.1

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 (102) hide show
  1. package/bis.d.ts +1 -0
  2. package/{esm2015/bis.js → esm2020/bis.mjs} +0 -0
  3. package/esm2020/layout/act.guard.mjs +108 -0
  4. package/{esm2015/layout/bis.config.js → esm2020/layout/bis.config.mjs} +0 -0
  5. package/esm2020/layout/contact/contact.component.mjs +492 -0
  6. package/esm2020/layout/contact/contact.service.mjs +146 -0
  7. package/esm2020/layout/layout.mjs +5 -0
  8. package/esm2020/layout/layout.module.mjs +73 -0
  9. package/{esm2015/layout/path-to-regexp.service.js → esm2020/layout/path-to-regexp.service.mjs} +9 -8
  10. package/{esm2015/layout/public_api.js → esm2020/layout/public_api.mjs} +3 -3
  11. package/esm2020/layout/stomp.config.mjs +18 -0
  12. package/{esm2015/layout/widgets/index.js → esm2020/layout/widgets/index.mjs} +0 -0
  13. package/esm2020/layout/widgets/yz.application.component.mjs +271 -0
  14. package/esm2020/layout/widgets/yz.clear-storage.component.mjs +45 -0
  15. package/esm2020/layout/widgets/yz.fullscreen.component.mjs +45 -0
  16. package/esm2020/layout/widgets/yz.i18n.component.mjs +115 -0
  17. package/esm2020/layout/widgets/yz.notify.component.mjs +184 -0
  18. package/esm2020/layout/widgets/yz.them-btn.component.mjs +196 -0
  19. package/esm2020/layout/widgets/yz.user.component.mjs +112 -0
  20. package/esm2020/layout/yz.auth.service.mjs +156 -0
  21. package/esm2020/layout/yz.basic.component.mjs +207 -0
  22. package/esm2020/layout/yz.default.interceptor.mjs +203 -0
  23. package/esm2020/layout/yz.i18n.service.mjs +93 -0
  24. package/esm2020/layout/yz.startup.service.mjs +137 -0
  25. package/esm2020/layout/yz.stomp.service.mjs +88 -0
  26. package/{esm2015/public_api.js → esm2020/public_api.mjs} +0 -0
  27. package/{esm2015/shared/public_api.js → esm2020/shared/public_api.mjs} +0 -0
  28. package/esm2020/shared/shared-yelon.module.mjs +108 -0
  29. package/{esm2015/shared/shared-zorro.module.js → esm2020/shared/shared-zorro.module.mjs} +0 -0
  30. package/{esm2015/shared/shared.js → esm2020/shared/shared.mjs} +0 -0
  31. package/esm2020/shared/shared.module.mjs +116 -0
  32. package/{esm2015/shared/style-icons.js → esm2020/shared/style-icons.mjs} +0 -0
  33. package/fesm2015/{bis.js → bis.mjs} +1 -1
  34. package/fesm2015/bis.mjs.map +1 -0
  35. package/fesm2015/layout.mjs +2787 -0
  36. package/fesm2015/layout.mjs.map +1 -0
  37. package/fesm2015/{shared.js → shared.mjs} +113 -12
  38. package/fesm2015/shared.mjs.map +1 -0
  39. package/fesm2020/bis.mjs +6 -0
  40. package/fesm2020/bis.mjs.map +1 -0
  41. package/fesm2020/layout.mjs +2796 -0
  42. package/fesm2020/layout.mjs.map +1 -0
  43. package/fesm2020/shared.mjs +1106 -0
  44. package/fesm2020/shared.mjs.map +1 -0
  45. package/layout/act.guard.d.ts +3 -0
  46. package/layout/contact/contact.component.d.ts +169 -0
  47. package/layout/contact/contact.service.d.ts +118 -0
  48. package/layout/layout.d.ts +1 -1
  49. package/layout/layout.module.d.ts +18 -0
  50. package/layout/package.json +5 -6
  51. package/layout/path-to-regexp.service.d.ts +3 -0
  52. package/layout/public_api.d.ts +2 -0
  53. package/layout/widgets/yz.application.component.d.ts +3 -0
  54. package/layout/widgets/yz.clear-storage.component.d.ts +3 -0
  55. package/layout/widgets/yz.fullscreen.component.d.ts +3 -1
  56. package/layout/widgets/yz.i18n.component.d.ts +3 -0
  57. package/layout/widgets/yz.notify.component.d.ts +8 -3
  58. package/layout/widgets/yz.them-btn.component.d.ts +3 -0
  59. package/layout/widgets/yz.user.component.d.ts +3 -0
  60. package/layout/yz.auth.service.d.ts +3 -0
  61. package/layout/yz.basic.component.d.ts +11 -2
  62. package/layout/yz.default.interceptor.d.ts +3 -0
  63. package/layout/yz.i18n.service.d.ts +3 -0
  64. package/layout/yz.startup.service.d.ts +4 -1
  65. package/layout/yz.stomp.service.d.ts +6 -3
  66. package/package.json +46 -18
  67. package/shared/package.json +5 -6
  68. package/shared/shared-zorro.module.d.ts +2 -2
  69. package/shared/shared.d.ts +1 -0
  70. package/shared/shared.module.d.ts +93 -0
  71. package/bis.metadata.json +0 -1
  72. package/bundles/bis.umd.js +0 -18
  73. package/bundles/bis.umd.js.map +0 -1
  74. package/bundles/layout.umd.js +0 -2080
  75. package/bundles/layout.umd.js.map +0 -1
  76. package/bundles/shared.umd.js +0 -1253
  77. package/bundles/shared.umd.js.map +0 -1
  78. package/esm2015/layout/act.guard.js +0 -115
  79. package/esm2015/layout/layout.js +0 -6
  80. package/esm2015/layout/layout.module.js +0 -37
  81. package/esm2015/layout/stomp.config.js +0 -20
  82. package/esm2015/layout/widgets/yz.application.component.js +0 -200
  83. package/esm2015/layout/widgets/yz.clear-storage.component.js +0 -39
  84. package/esm2015/layout/widgets/yz.fullscreen.component.js +0 -36
  85. package/esm2015/layout/widgets/yz.i18n.component.js +0 -78
  86. package/esm2015/layout/widgets/yz.notify.component.js +0 -154
  87. package/esm2015/layout/widgets/yz.them-btn.component.js +0 -146
  88. package/esm2015/layout/widgets/yz.user.component.js +0 -81
  89. package/esm2015/layout/yz.auth.service.js +0 -158
  90. package/esm2015/layout/yz.basic.component.js +0 -101
  91. package/esm2015/layout/yz.default.interceptor.js +0 -204
  92. package/esm2015/layout/yz.i18n.service.js +0 -102
  93. package/esm2015/layout/yz.startup.service.js +0 -138
  94. package/esm2015/layout/yz.stomp.service.js +0 -91
  95. package/esm2015/shared/shared-yelon.module.js +0 -108
  96. package/esm2015/shared/shared.module.js +0 -16
  97. package/fesm2015/bis.js.map +0 -1
  98. package/fesm2015/layout.js +0 -1869
  99. package/fesm2015/layout.js.map +0 -1
  100. package/fesm2015/shared.js.map +0 -1
  101. package/layout/layout.metadata.json +0 -1
  102. package/shared/shared.metadata.json +0 -1
@@ -0,0 +1 @@
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 { ImageModule } from '@yelon/abc/image';\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 ImageModule,\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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"}
@@ -4,6 +4,7 @@ import { CacheService } from '@yelon/cache';
4
4
  import { Menu } from '@yelon/theme';
5
5
  import { YunzaiConfigService } from '@yelon/util';
6
6
  import { PathToRegexpService } from './path-to-regexp.service';
7
+ import * as i0 from "@angular/core";
7
8
  export declare class ActGuard implements CanActivate, CanActivateChild {
8
9
  private configService;
9
10
  private cacheService;
@@ -17,4 +18,6 @@ export declare class ActGuard implements CanActivate, CanActivateChild {
17
18
  canActivateChild(_: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree;
18
19
  preHandle(state: RouterStateSnapshot): boolean;
19
20
  getAllLinks(menu: Menu[], links: string[]): void;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActGuard, never>;
22
+ static ɵprov: i0.ɵɵInjectableDeclaration<ActGuard>;
20
23
  }
@@ -0,0 +1,169 @@
1
+ import { ChangeDetectorRef, OnDestroy, OnInit, AfterViewInit, EventEmitter } from '@angular/core';
2
+ import { Subscription } from 'rxjs';
3
+ import { NzSafeAny } from 'ng-zorro-antd/core/types';
4
+ import { NzTreeNodeOptions, NzFormatEmitEvent } from 'ng-zorro-antd/tree';
5
+ import { STComponent } from '@yelon/abc/st';
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>;
169
+ }
@@ -0,0 +1,118 @@
1
+ import { Observable } from 'rxjs';
2
+ import { NzSafeAny } from 'ng-zorro-antd/core/types';
3
+ import { NzTreeNodeOptions } from 'ng-zorro-antd/tree';
4
+ import { CacheService } from '@yelon/cache';
5
+ import { _HttpClient } from '@yelon/theme';
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
+ }
@@ -1,5 +1,5 @@
1
1
  /**
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
+ /// <amd-module name="@yelon/bis/layout" />
4
5
  export * from './public_api';
5
- export { YzHeaderApplicationComponent as ɵa, YzHeaderClearStorageComponent as ɵf, YzHeaderFullScreenComponent as ɵe, YzHeaderI18NComponent as ɵg, YzHeaderNotifyComponent as ɵb, YzHeaderThemBtnComponent as ɵc, YzHeaderUserComponent as ɵd } from './widgets';
@@ -1,2 +1,20 @@
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 "@angular/common/http";
12
+ import * as i11 from "@angular/common";
13
+ import * as i12 from "@angular/forms";
14
+ import * as i13 from "@angular/router";
15
+ import * as i14 from "@yelon/bis/shared";
1
16
  export declare class YunzaiLayoutModule {
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<YunzaiLayoutModule, never>;
18
+ 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.HttpClientModule, typeof i11.CommonModule, typeof i12.FormsModule, typeof i13.RouterModule, typeof i12.ReactiveFormsModule, typeof i14.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]>;
19
+ static ɵinj: i0.ɵɵInjectorDeclaration<YunzaiLayoutModule>;
2
20
  }
@@ -1,11 +1,10 @@
1
1
  {
2
- "main": "../bundles/layout.umd.js",
3
- "module": "../fesm2015/layout.js",
4
- "es2015": "../fesm2015/layout.js",
5
- "esm2015": "../esm2015/layout/layout.js",
6
- "fesm2015": "../fesm2015/layout.js",
2
+ "module": "../fesm2015/layout.mjs",
3
+ "es2020": "../fesm2020/layout.mjs",
4
+ "esm2020": "../esm2020/layout/layout.mjs",
5
+ "fesm2020": "../fesm2020/layout.mjs",
6
+ "fesm2015": "../fesm2015/layout.mjs",
7
7
  "typings": "layout.d.ts",
8
- "metadata": "layout.metadata.json",
9
8
  "sideEffects": false,
10
9
  "name": "@yelon/bis/layout"
11
10
  }
@@ -1,3 +1,4 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class PathToRegexpService {
2
3
  constructor();
3
4
  DEFAULT_DELIMITER: string;
@@ -20,4 +21,6 @@ export declare class PathToRegexpService {
20
21
  stringToRegexp(path: any, keys: any, options: any): RegExp;
21
22
  tokensToRegExp(tokens: any, keys: any, options: any): RegExp;
22
23
  pathToRegexp(path: any, keys: any, options: any): any;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<PathToRegexpService, never>;
25
+ static ɵprov: i0.ɵɵInjectableDeclaration<PathToRegexpService>;
23
26
  }
@@ -10,3 +10,5 @@ export * from './stomp.config';
10
10
  export * from './yz.stomp.service';
11
11
  export * from './act.guard';
12
12
  export * from './path-to-regexp.service';
13
+ export * from './contact/contact.component';
14
+ export * from './contact/contact.service';
@@ -3,6 +3,7 @@ import { Subscription } from 'rxjs';
3
3
  import { CacheService } from '@yelon/cache';
4
4
  import { _HttpClient } from '@yelon/theme';
5
5
  import { YzI18NService } from '../yz.i18n.service';
6
+ import * as i0 from "@angular/core";
6
7
  export declare enum TOPIC {
7
8
  FULL = 0,
8
9
  OWN = 1,
@@ -42,4 +43,6 @@ export declare class YzHeaderApplicationComponent implements OnInit, OnDestroy {
42
43
  every(e: HeaderTopic): void;
43
44
  onSearch(): void;
44
45
  open(topic: HeaderTopic): void;
46
+ static ɵfac: i0.ɵɵFactoryDeclaration<YzHeaderApplicationComponent, never>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<YzHeaderApplicationComponent, "yz-header-application", never, {}, {}, never, never>;
45
48
  }
@@ -1,8 +1,11 @@
1
1
  import { NzMessageService } from 'ng-zorro-antd/message';
2
2
  import { NzModalService } from 'ng-zorro-antd/modal';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class YzHeaderClearStorageComponent {
4
5
  private modalSrv;
5
6
  private messageSrv;
6
7
  constructor(modalSrv: NzModalService, messageSrv: NzMessageService);
7
8
  _click(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<YzHeaderClearStorageComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<YzHeaderClearStorageComponent, "yz-header-clear-storage", never, {}, {}, never, never>;
8
11
  }
@@ -1,6 +1,8 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class YzHeaderFullScreenComponent {
2
3
  status: boolean;
3
- private get sf();
4
4
  _resize(): void;
5
5
  _click(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<YzHeaderFullScreenComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<YzHeaderFullScreenComponent, "yz-header-fullscreen", never, {}, {}, never, never>;
6
8
  }
@@ -1,6 +1,7 @@
1
1
  import { SettingsService } from '@yelon/theme';
2
2
  import { BooleanInput } from '@yelon/util/decorator';
3
3
  import { YzI18NService } from '../yz.i18n.service';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class YzHeaderI18NComponent {
5
6
  private settings;
6
7
  private i18n;
@@ -16,4 +17,6 @@ export declare class YzHeaderI18NComponent {
16
17
  get curLangCode(): string;
17
18
  constructor(settings: SettingsService, i18n: YzI18NService, doc: any);
18
19
  change(lang: string): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<YzHeaderI18NComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<YzHeaderI18NComponent, "yz-header-i18n", never, { "showLangText": "showLangText"; }, {}, never, never>;
19
22
  }
@@ -1,12 +1,15 @@
1
1
  import { ChangeDetectorRef, Injector, OnDestroy, OnInit } from '@angular/core';
2
2
  import { Observable, Subscription } from 'rxjs';
3
- import { NzI18nService } from 'ng-zorro-antd/i18n';
4
- import { NzMessageService } from 'ng-zorro-antd/message';
5
3
  import { NoticeIconSelect, NoticeItem } from '@yelon/abc/notice-icon';
6
4
  import { _HttpClient } from '@yelon/theme';
5
+ import { NzI18nService } from 'ng-zorro-antd/i18n';
6
+ import { NzMessageService } from 'ng-zorro-antd/message';
7
+ import { YzI18NService } from '../yz.i18n.service';
8
+ import * as i0 from "@angular/core";
7
9
  export declare class YzHeaderNotifyComponent implements OnInit, OnDestroy {
8
10
  private injector;
9
11
  private msg;
12
+ private y18n;
10
13
  private nzI18n;
11
14
  private cdr;
12
15
  private httpClient;
@@ -14,7 +17,7 @@ export declare class YzHeaderNotifyComponent implements OnInit, OnDestroy {
14
17
  loading: boolean;
15
18
  count: number;
16
19
  subs: Subscription[];
17
- constructor(injector: Injector, msg: NzMessageService, nzI18n: NzI18nService, cdr: ChangeDetectorRef, httpClient: _HttpClient);
20
+ constructor(injector: Injector, msg: NzMessageService, y18n: YzI18NService, nzI18n: NzI18nService, cdr: ChangeDetectorRef, httpClient: _HttpClient);
18
21
  ngOnInit(): void;
19
22
  loadData(): void;
20
23
  loadMessage(): Observable<void>;
@@ -22,4 +25,6 @@ export declare class YzHeaderNotifyComponent implements OnInit, OnDestroy {
22
25
  clear(type: string): void;
23
26
  select(res: NoticeIconSelect): void;
24
27
  ngOnDestroy(): void;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<YzHeaderNotifyComponent, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<YzHeaderNotifyComponent, "yz-header-notify", never, {}, {}, never, never>;
25
30
  }
@@ -4,6 +4,7 @@ import { OnDestroy, OnInit, Renderer2 } from '@angular/core';
4
4
  import { NzSafeAny } from 'ng-zorro-antd/core/types';
5
5
  import { ThemeBtnType } from '@yelon/theme/theme-btn';
6
6
  import { YunzaiConfigService } from '@yelon/util/config';
7
+ import * as i0 from "@angular/core";
7
8
  export interface YzThemeBtnType extends ThemeBtnType {
8
9
  color?: string;
9
10
  }
@@ -26,4 +27,6 @@ export declare class YzHeaderThemBtnComponent implements OnInit, OnDestroy {
26
27
  private updateChartTheme;
27
28
  onThemeChange(theme: string): void;
28
29
  ngOnDestroy(): void;
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<YzHeaderThemBtnComponent, [null, null, null, null, { optional: true; }, null]>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<YzHeaderThemBtnComponent, "yz-header-theme-btn", never, { "types": "types"; "devTips": "devTips"; "deployUrl": "deployUrl"; }, {}, never, never>;
29
32
  }
@@ -3,6 +3,7 @@ import { NzMessageService } from 'ng-zorro-antd/message';
3
3
  import { ITokenService } from '@yelon/auth';
4
4
  import { CacheService } from '@yelon/cache';
5
5
  import { YunzaiConfigService } from '@yelon/util';
6
+ import * as i0 from "@angular/core";
6
7
  export interface UserLink {
7
8
  icon: string;
8
9
  name: string;
@@ -22,4 +23,6 @@ export declare class YzHeaderUserComponent implements OnInit {
22
23
  ngOnInit(): void;
23
24
  logout(): void;
24
25
  to(href: string): void;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<YzHeaderUserComponent, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<YzHeaderUserComponent, "yz-header-user", never, {}, {}, never, never>;
25
28
  }
@@ -2,6 +2,7 @@ import { Injector } from '@angular/core';
2
2
  import { Observable } from 'rxjs';
3
3
  import { ITokenModel } from '@yelon/auth';
4
4
  import { YunzaiAuthConfig, YunzaiBusinessConfig } from '@yelon/util';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class YzAuthService {
6
7
  private injector;
7
8
  protected option: YunzaiAuthConfig;
@@ -16,4 +17,6 @@ export declare class YzAuthService {
16
17
  fetchTokenByCas(): Observable<ITokenModel>;
17
18
  login(): Observable<void>;
18
19
  cacheInit(): Observable<void[]>;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<YzAuthService, never>;
21
+ static ɵprov: i0.ɵɵInjectableDeclaration<YzAuthService>;
19
22
  }
@@ -1,15 +1,24 @@
1
1
  import { OnDestroy, OnInit } from '@angular/core';
2
2
  import { CacheService } from '@yelon/cache';
3
- import { LayoutDefaultOptions } from '@yelon/theme/layout-default';
3
+ import { LayoutDefaultOptions, LayoutService } from '@yelon/theme/layout-default';
4
+ import { NzSafeAny } from 'ng-zorro-antd/core/types';
4
5
  import { YzStompService } from './yz.stomp.service';
6
+ import * as i0 from "@angular/core";
5
7
  export declare class YzLayoutBasicComponent implements OnInit, OnDestroy {
6
8
  private cacheService;
7
9
  private yzStompService;
10
+ private layoutService;
8
11
  options: LayoutDefaultOptions;
9
12
  intro: string;
10
13
  text: string;
11
14
  icon: string;
12
- constructor(cacheService: CacheService, yzStompService: YzStompService);
15
+ showReuseTab: boolean;
16
+ showHeader: boolean;
17
+ showSider: boolean;
18
+ get reuseStyleSheet(): NzSafeAny;
19
+ constructor(cacheService: CacheService, yzStompService: YzStompService, layoutService: LayoutService);
13
20
  ngOnInit(): void;
14
21
  ngOnDestroy(): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<YzLayoutBasicComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<YzLayoutBasicComponent, "yz-layout-basic", never, {}, {}, never, never>;
15
24
  }