@yelon/bis 12.0.16 → 12.0.17

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 (76) hide show
  1. package/LICENSE +21 -21
  2. package/bis.d.ts +4 -4
  3. package/bundles/bis.umd.js +7 -7
  4. package/bundles/layout.umd.js +2557 -1968
  5. package/bundles/layout.umd.js.map +1 -1
  6. package/bundles/shared.umd.js +1226 -1230
  7. package/bundles/shared.umd.js.map +1 -1
  8. package/esm2015/bis.js +4 -4
  9. package/esm2015/layout/act.guard.js +114 -114
  10. package/esm2015/layout/bis.config.js +10 -10
  11. package/esm2015/layout/contact/contact.component.js +434 -0
  12. package/esm2015/layout/contact/contact.service.js +150 -0
  13. package/esm2015/layout/layout.js +8 -6
  14. package/esm2015/layout/layout.module.js +47 -37
  15. package/esm2015/layout/path-to-regexp.service.js +236 -236
  16. package/esm2015/layout/public_api.js +14 -14
  17. package/esm2015/layout/stomp.config.js +19 -19
  18. package/esm2015/layout/widgets/index.js +7 -7
  19. package/esm2015/layout/widgets/yz.application.component.js +132 -132
  20. package/esm2015/layout/widgets/yz.clear-storage.component.js +35 -35
  21. package/esm2015/layout/widgets/yz.fullscreen.component.js +32 -32
  22. package/esm2015/layout/widgets/yz.i18n.component.js +50 -50
  23. package/esm2015/layout/widgets/yz.notify.component.js +143 -143
  24. package/esm2015/layout/widgets/yz.them-btn.component.js +106 -106
  25. package/esm2015/layout/widgets/yz.user.component.js +57 -57
  26. package/esm2015/layout/yz.auth.service.js +157 -157
  27. package/esm2015/layout/yz.basic.component.js +40 -40
  28. package/esm2015/layout/yz.default.interceptor.js +203 -203
  29. package/esm2015/layout/yz.i18n.service.js +101 -101
  30. package/esm2015/layout/yz.startup.service.js +137 -137
  31. package/esm2015/layout/yz.stomp.service.js +90 -90
  32. package/esm2015/public_api.js +1 -1
  33. package/esm2015/shared/public_api.js +4 -4
  34. package/esm2015/shared/shared-yelon.module.js +108 -108
  35. package/esm2015/shared/shared-zorro.module.js +80 -80
  36. package/esm2015/shared/shared.js +4 -4
  37. package/esm2015/shared/shared.module.js +22 -16
  38. package/esm2015/shared/style-icons.js +795 -795
  39. package/fesm2015/bis.js +2 -2
  40. package/fesm2015/layout.js +2140 -1555
  41. package/fesm2015/layout.js.map +1 -1
  42. package/fesm2015/shared.js +909 -902
  43. package/fesm2015/shared.js.map +1 -1
  44. package/layout/act.guard.d.ts +20 -20
  45. package/layout/bis.config.d.ts +3 -3
  46. package/layout/contact/contact.component.d.ts +166 -0
  47. package/layout/contact/contact.service.d.ts +115 -0
  48. package/layout/layout.d.ts +7 -5
  49. package/layout/layout.metadata.json +1 -1
  50. package/layout/layout.module.d.ts +2 -2
  51. package/layout/path-to-regexp.service.d.ts +23 -23
  52. package/layout/public_api.d.ts +12 -12
  53. package/layout/stomp.config.d.ts +3 -3
  54. package/layout/widgets/index.d.ts +7 -7
  55. package/layout/widgets/yz.application.component.d.ts +45 -45
  56. package/layout/widgets/yz.clear-storage.component.d.ts +8 -8
  57. package/layout/widgets/yz.fullscreen.component.d.ts +6 -6
  58. package/layout/widgets/yz.i18n.component.d.ts +19 -19
  59. package/layout/widgets/yz.notify.component.d.ts +25 -25
  60. package/layout/widgets/yz.them-btn.component.d.ts +29 -29
  61. package/layout/widgets/yz.user.component.d.ts +25 -25
  62. package/layout/yz.auth.service.d.ts +19 -19
  63. package/layout/yz.basic.component.d.ts +15 -15
  64. package/layout/yz.default.interceptor.d.ts +26 -26
  65. package/layout/yz.i18n.service.d.ts +24 -24
  66. package/layout/yz.startup.service.d.ts +31 -31
  67. package/layout/yz.stomp.service.d.ts +39 -39
  68. package/package.json +10 -10
  69. package/public_api.d.ts +2 -2
  70. package/shared/public_api.d.ts +4 -4
  71. package/shared/shared-yelon.module.d.ts +3 -3
  72. package/shared/shared-zorro.module.d.ts +2 -2
  73. package/shared/shared.d.ts +4 -4
  74. package/shared/shared.metadata.json +1 -1
  75. package/shared/shared.module.d.ts +2 -2
  76. package/shared/style-icons.d.ts +1 -1
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2021-present devcui<devcui@outlook.com>
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2021-present devcui<devcui@outlook.com>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/bis.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- export * from './public_api';
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public_api';
@@ -1,8 +1,8 @@
1
- /**
2
- * @license ng-yunzai(devcui@outlook.com) v12.0.16
3
- * (c) 2020 devcui https://github.com/hbyunzai/yelon/
4
- * License: MIT
5
- */
1
+ /**
2
+ * @license ng-yunzai(devcui@outlook.com) v12.0.17
3
+ * (c) 2020 devcui https://github.com/hbyunzai/yelon/
4
+ * License: MIT
5
+ */
6
6
  (function (factory) {
7
7
  typeof define === 'function' && define.amd ? define('@yelon/bis', factory) :
8
8
  factory();
@@ -10,8 +10,8 @@
10
10
 
11
11
  var public_api = void 0;
12
12
 
13
- /**
14
- * Generated bundle index. Do not edit.
13
+ /**
14
+ * Generated bundle index. Do not edit.
15
15
  */
16
16
 
17
17
  }));