@cuby-ui/core 0.0.372 → 0.0.374
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/components/dropdown/dropdown-wrapper.component.d.ts +2 -1
- package/esm2022/components/dropdown/dropdown-wrapper.component.mjs +8 -3
- package/esm2022/widgets/categories/categories.component.mjs +2 -2
- package/esm2022/widgets/user-action-context-menu/activity-item/activity-item.component.mjs +8 -4
- package/esm2022/widgets/user-action-context-menu/user-action-context-menu.component.mjs +3 -3
- package/fesm2022/cuby-ui-core.mjs +17 -8
- package/fesm2022/cuby-ui-core.mjs.map +1 -1
- package/package.json +4 -4
- package/widgets/user-action-context-menu/activity-item/activity-item.component.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cuby-ui/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.374",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=18.0.0",
|
|
6
6
|
"@angular/core": ">=18.0.0",
|
|
7
7
|
"@angular/elements": ">=18.0.0",
|
|
8
8
|
"@angular/forms": ">=18.0.0",
|
|
9
|
-
"@cuby-ui/api": "^0.0.
|
|
10
|
-
"@cuby-ui/cdk": "^0.0.
|
|
11
|
-
"@cuby-ui/icons": "^0.0.
|
|
9
|
+
"@cuby-ui/api": "^0.0.374",
|
|
10
|
+
"@cuby-ui/cdk": "^0.0.374",
|
|
11
|
+
"@cuby-ui/icons": "^0.0.374",
|
|
12
12
|
"@editorjs/editorjs": "2.29.1",
|
|
13
13
|
"@editorjs/header": "^2.8.1",
|
|
14
14
|
"@editorjs/list": "^1.9.0",
|
|
@@ -6,6 +6,7 @@ export declare class CuiActivityItemComponent {
|
|
|
6
6
|
private readonly cuiAuthService;
|
|
7
7
|
private readonly cuiActivityService;
|
|
8
8
|
protected readonly isSelected: import("@angular/core").Signal<boolean>;
|
|
9
|
+
protected readonly letterBackgroundColor: import("@angular/core").Signal<"var(--cui-orange-500)" | "var(--cui-light-blue-500)">;
|
|
9
10
|
readonly activity: import("@angular/core").InputSignal<CuiUserCompanyActivity>;
|
|
10
11
|
readonly companyId: import("@angular/core").InputSignal<string>;
|
|
11
12
|
protected onGoToActivity(): void;
|