@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.
- package/.editorconfig +17 -0
- package/.github/copilot/WidgetDevelopmentGuide.md +632 -0
- package/.github/copilot/WidgetProjectStructure.md +81 -0
- package/.github/copilot/git.md +176 -0
- package/.github/copilot/guideline.md +466 -0
- package/.github/copilot-instructions.md +697 -0
- package/.github/prompts/As world class developer, create unit tests for.prompt.md +7 -0
- package/README.md +1 -337
- package/Web.config +7 -0
- package/angular.json +43 -0
- package/package.json +54 -31
- package/projects/bayan-core-ui/README.md +522 -0
- package/projects/bayan-core-ui/ng-package.json +7 -0
- package/projects/bayan-core-ui/package.json +36 -0
- package/projects/bayan-core-ui/src/assets/i18n/ar.json +725 -0
- package/projects/bayan-core-ui/src/assets/i18n/en.json +683 -0
- package/projects/bayan-core-ui/src/assets/i18n/fr.json +687 -0
- package/projects/bayan-core-ui/src/lib/shared/common-methods/navigation.utils.ts +21 -0
- package/projects/bayan-core-ui/src/lib/shared/menu.dtos.ts +107 -0
- package/projects/bayan-core-ui/src/lib/shared/menu.service.ts +157 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/about-dialog-widget/about-dialog-widget.component.html +37 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/about-dialog-widget/about-dialog-widget.component.ts +68 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/change-password-widget/change-password-widget.component.html +56 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/change-password-widget/change-password-widget.component.ts +158 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/global-search-widget/global-search-widget.component.html +39 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/global-search-widget/global-search-widget.component.ts +152 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/item-widget/item-widget.component.html +39 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/item-widget/item-widget.component.ts +80 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/notifications-widget/notifications-widget.component.html +10 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/notifications-widget/notifications-widget.component.ts +89 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/settings-widget/settings-widget.component.html +111 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/settings-widget/settings-widget.component.ts +235 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/user-panel-widget/user-panel-widget.component.html +54 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/components/user-panel-widget/user-panel-widget.component.ts +140 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/top-menu-widget.component.html +107 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/top-menu-widget.component.ts +164 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/top-menu-widget.models.ts +29 -0
- package/projects/bayan-core-ui/src/lib/top-menu-widget/top-menu-widget.styles.css +1378 -0
- package/projects/bayan-core-ui/src/public-api.ts +14 -0
- package/projects/bayan-core-ui/tsconfig.lib.json +16 -0
- package/projects/bayan-core-ui/tsconfig.lib.prod.json +9 -0
- package/projects/bayan-core-ui/tsconfig.spec.json +13 -0
- package/tsconfig.json +40 -0
- package/fesm2022/skysoftware-co-bayan-core-widgets-ui.mjs +0 -1092
- package/fesm2022/skysoftware-co-bayan-core-widgets-ui.mjs.map +0 -1
- package/index.d.ts +0 -6
- package/lib/shared/common-methods/navigation.utils.d.ts +0 -4
- package/lib/shared/common-methods/navigation.utils.d.ts.map +0 -1
- package/lib/shared/menu.dtos.d.ts +0 -91
- package/lib/shared/menu.dtos.d.ts.map +0 -1
- package/lib/shared/menu.service.d.ts +0 -24
- package/lib/shared/menu.service.d.ts.map +0 -1
- package/lib/top-menu-widget/components/about-dialog-widget/about-dialog-widget.component.d.ts +0 -18
- package/lib/top-menu-widget/components/about-dialog-widget/about-dialog-widget.component.d.ts.map +0 -1
- package/lib/top-menu-widget/components/change-password-widget/change-password-widget.component.d.ts +0 -30
- package/lib/top-menu-widget/components/change-password-widget/change-password-widget.component.d.ts.map +0 -1
- package/lib/top-menu-widget/components/global-search-widget/global-search-widget.component.d.ts +0 -59
- package/lib/top-menu-widget/components/global-search-widget/global-search-widget.component.d.ts.map +0 -1
- package/lib/top-menu-widget/components/item-widget/item-widget.component.d.ts +0 -29
- package/lib/top-menu-widget/components/item-widget/item-widget.component.d.ts.map +0 -1
- package/lib/top-menu-widget/components/notifications-widget/notifications-widget.component.d.ts +0 -23
- package/lib/top-menu-widget/components/notifications-widget/notifications-widget.component.d.ts.map +0 -1
- package/lib/top-menu-widget/components/settings-widget/settings-widget.component.d.ts +0 -37
- package/lib/top-menu-widget/components/settings-widget/settings-widget.component.d.ts.map +0 -1
- package/lib/top-menu-widget/components/user-panel-widget/user-panel-widget.component.d.ts +0 -43
- package/lib/top-menu-widget/components/user-panel-widget/user-panel-widget.component.d.ts.map +0 -1
- package/lib/top-menu-widget/top-menu-widget.component.d.ts +0 -76
- package/lib/top-menu-widget/top-menu-widget.component.d.ts.map +0 -1
- package/lib/top-menu-widget/top-menu-widget.models.d.ts +0 -36
- package/lib/top-menu-widget/top-menu-widget.models.d.ts.map +0 -1
- package/public-api.d.ts +0 -4
- package/public-api.d.ts.map +0 -1
- 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
|
+
}
|
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
|
+
}
|