@skysoftware-co/bayan-core-widgets-ui 0.0.4 → 0.0.8

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 (73) hide show
  1. package/.editorconfig +17 -0
  2. package/.github/copilot/WidgetDevelopmentGuide.md +632 -0
  3. package/.github/copilot/WidgetProjectStructure.md +81 -0
  4. package/.github/copilot/git.md +176 -0
  5. package/.github/copilot/guideline.md +466 -0
  6. package/.github/copilot-instructions.md +697 -0
  7. package/.github/prompts/As world class developer, create unit tests for.prompt.md +7 -0
  8. package/README.md +1 -337
  9. package/Web.config +7 -0
  10. package/angular.json +43 -0
  11. package/package.json +54 -31
  12. package/projects/bayan-core-ui/README.md +522 -0
  13. package/projects/bayan-core-ui/ng-package.json +7 -0
  14. package/projects/bayan-core-ui/package.json +36 -0
  15. package/projects/bayan-core-ui/src/assets/i18n/ar.json +725 -0
  16. package/projects/bayan-core-ui/src/assets/i18n/en.json +683 -0
  17. package/projects/bayan-core-ui/src/assets/i18n/fr.json +687 -0
  18. package/projects/bayan-core-ui/src/lib/shared/common-methods/navigation.utils.ts +21 -0
  19. package/projects/bayan-core-ui/src/lib/shared/menu.dtos.ts +107 -0
  20. package/projects/bayan-core-ui/src/lib/shared/menu.service.ts +157 -0
  21. package/projects/bayan-core-ui/src/lib/top-menu-widget/components/about-dialog-widget/about-dialog-widget.component.html +37 -0
  22. package/projects/bayan-core-ui/src/lib/top-menu-widget/components/about-dialog-widget/about-dialog-widget.component.ts +68 -0
  23. package/projects/bayan-core-ui/src/lib/top-menu-widget/components/change-password-widget/change-password-widget.component.html +56 -0
  24. package/projects/bayan-core-ui/src/lib/top-menu-widget/components/change-password-widget/change-password-widget.component.ts +158 -0
  25. package/projects/bayan-core-ui/src/lib/top-menu-widget/components/global-search-widget/global-search-widget.component.html +39 -0
  26. package/projects/bayan-core-ui/src/lib/top-menu-widget/components/global-search-widget/global-search-widget.component.ts +152 -0
  27. package/projects/bayan-core-ui/src/lib/top-menu-widget/components/item-widget/item-widget.component.html +39 -0
  28. package/projects/bayan-core-ui/src/lib/top-menu-widget/components/item-widget/item-widget.component.ts +80 -0
  29. package/projects/bayan-core-ui/src/lib/top-menu-widget/components/notifications-widget/notifications-widget.component.html +10 -0
  30. package/projects/bayan-core-ui/src/lib/top-menu-widget/components/notifications-widget/notifications-widget.component.ts +89 -0
  31. package/projects/bayan-core-ui/src/lib/top-menu-widget/components/settings-widget/settings-widget.component.html +111 -0
  32. package/projects/bayan-core-ui/src/lib/top-menu-widget/components/settings-widget/settings-widget.component.ts +235 -0
  33. package/projects/bayan-core-ui/src/lib/top-menu-widget/components/user-panel-widget/user-panel-widget.component.html +54 -0
  34. package/projects/bayan-core-ui/src/lib/top-menu-widget/components/user-panel-widget/user-panel-widget.component.ts +140 -0
  35. package/projects/bayan-core-ui/src/lib/top-menu-widget/top-menu-widget.component.html +107 -0
  36. package/projects/bayan-core-ui/src/lib/top-menu-widget/top-menu-widget.component.ts +164 -0
  37. package/projects/bayan-core-ui/src/lib/top-menu-widget/top-menu-widget.models.ts +29 -0
  38. package/projects/bayan-core-ui/src/lib/top-menu-widget/top-menu-widget.styles.css +1378 -0
  39. package/projects/bayan-core-ui/src/public-api.ts +14 -0
  40. package/projects/bayan-core-ui/tsconfig.lib.json +16 -0
  41. package/projects/bayan-core-ui/tsconfig.lib.prod.json +9 -0
  42. package/projects/bayan-core-ui/tsconfig.spec.json +13 -0
  43. package/tsconfig.json +40 -0
  44. package/fesm2022/skysoftware-co-bayan-core-widgets-ui.mjs +0 -1092
  45. package/fesm2022/skysoftware-co-bayan-core-widgets-ui.mjs.map +0 -1
  46. package/index.d.ts +0 -6
  47. package/lib/shared/common-methods/navigation.utils.d.ts +0 -4
  48. package/lib/shared/common-methods/navigation.utils.d.ts.map +0 -1
  49. package/lib/shared/menu.dtos.d.ts +0 -91
  50. package/lib/shared/menu.dtos.d.ts.map +0 -1
  51. package/lib/shared/menu.service.d.ts +0 -24
  52. package/lib/shared/menu.service.d.ts.map +0 -1
  53. package/lib/top-menu-widget/components/about-dialog-widget/about-dialog-widget.component.d.ts +0 -18
  54. package/lib/top-menu-widget/components/about-dialog-widget/about-dialog-widget.component.d.ts.map +0 -1
  55. package/lib/top-menu-widget/components/change-password-widget/change-password-widget.component.d.ts +0 -30
  56. package/lib/top-menu-widget/components/change-password-widget/change-password-widget.component.d.ts.map +0 -1
  57. package/lib/top-menu-widget/components/global-search-widget/global-search-widget.component.d.ts +0 -59
  58. package/lib/top-menu-widget/components/global-search-widget/global-search-widget.component.d.ts.map +0 -1
  59. package/lib/top-menu-widget/components/item-widget/item-widget.component.d.ts +0 -29
  60. package/lib/top-menu-widget/components/item-widget/item-widget.component.d.ts.map +0 -1
  61. package/lib/top-menu-widget/components/notifications-widget/notifications-widget.component.d.ts +0 -23
  62. package/lib/top-menu-widget/components/notifications-widget/notifications-widget.component.d.ts.map +0 -1
  63. package/lib/top-menu-widget/components/settings-widget/settings-widget.component.d.ts +0 -37
  64. package/lib/top-menu-widget/components/settings-widget/settings-widget.component.d.ts.map +0 -1
  65. package/lib/top-menu-widget/components/user-panel-widget/user-panel-widget.component.d.ts +0 -43
  66. package/lib/top-menu-widget/components/user-panel-widget/user-panel-widget.component.d.ts.map +0 -1
  67. package/lib/top-menu-widget/top-menu-widget.component.d.ts +0 -76
  68. package/lib/top-menu-widget/top-menu-widget.component.d.ts.map +0 -1
  69. package/lib/top-menu-widget/top-menu-widget.models.d.ts +0 -36
  70. package/lib/top-menu-widget/top-menu-widget.models.d.ts.map +0 -1
  71. package/public-api.d.ts +0 -4
  72. package/public-api.d.ts.map +0 -1
  73. package/skysoftware-co-bayan-core-widgets-ui.d.ts.map +0 -1
@@ -0,0 +1,14 @@
1
+ /*
2
+ * Public API Surface of bayan-core-ui
3
+ */
4
+
5
+ export * from './lib/top-menu-widget/top-menu-widget.component';
6
+ export * from './lib/top-menu-widget/components/about-dialog-widget/about-dialog-widget.component';
7
+ export * from './lib/top-menu-widget/components/change-password-widget/change-password-widget.component';
8
+ export * from './lib/top-menu-widget/components/global-search-widget/global-search-widget.component';
9
+ export * from './lib/top-menu-widget/components/item-widget/item-widget.component';
10
+ export * from './lib/top-menu-widget/components/notifications-widget/notifications-widget.component';
11
+ export * from './lib/top-menu-widget/components/settings-widget/settings-widget.component';
12
+ export * from './lib/top-menu-widget/components/user-panel-widget/user-panel-widget.component';
13
+ export * from './lib/shared/menu.dtos';
14
+ export * from './lib/shared/menu.service';
@@ -0,0 +1,16 @@
1
+ {
2
+ "extends": "../../tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "../../out-tsc/lib",
5
+ "declaration": true,
6
+ "declarationMap": true,
7
+ "inlineSources": true,
8
+ "types": []
9
+ },
10
+ "angularCompilerOptions": {
11
+ "compilationMode": "partial"
12
+ },
13
+ "exclude": [
14
+ "**/*.spec.ts"
15
+ ]
16
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "extends": "./tsconfig.lib.json",
3
+ "compilerOptions": {
4
+ "declarationMap": false
5
+ },
6
+ "angularCompilerOptions": {
7
+ "compilationMode": "partial"
8
+ }
9
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "extends": "../../tsconfig.json",
3
+ "compilerOptions": {
4
+ "outDir": "../../out-tsc/spec",
5
+ "types": [
6
+ "jasmine"
7
+ ]
8
+ },
9
+ "include": [
10
+ "**/*.spec.ts",
11
+ "**/*.d.ts"
12
+ ]
13
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,40 @@
1
+ /* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
2
+ /* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
3
+ {
4
+ "compileOnSave": false,
5
+ "compilerOptions": {
6
+ "paths": {
7
+ "BayanCoreComponents": [
8
+ "./dist/bayan-core-ui"
9
+ ]
10
+ },
11
+ "rootDir": "./projects/bayan-core-ui/src",
12
+ "outDir": "./dist/out-tsc",
13
+ "strict": true,
14
+ "noImplicitOverride": true,
15
+ "noPropertyAccessFromIndexSignature": true,
16
+ "noImplicitReturns": true,
17
+ "noFallthroughCasesInSwitch": true,
18
+ "skipLibCheck": true,
19
+ "isolatedModules": true,
20
+ "esModuleInterop": true,
21
+ "resolveJsonModule": true,
22
+ "sourceMap": true,
23
+ "declaration": false,
24
+ "experimentalDecorators": true,
25
+ "moduleResolution": "bundler",
26
+ "importHelpers": true,
27
+ "target": "ES2022",
28
+ "module": "ES2022",
29
+ "lib": [
30
+ "ES2022",
31
+ "dom"
32
+ ]
33
+ },
34
+ "angularCompilerOptions": {
35
+ "enableI18nLegacyMessageIdFormat": false,
36
+ "strictInjectionParameters": true,
37
+ "strictInputAccessModifiers": true,
38
+ "strictTemplates": true
39
+ }
40
+ }