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