@cuby-ui/core 0.0.466 → 0.0.468
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/editor/interfaces/file-response-data.d.ts +5 -0
- package/editor/tools/video.tool.d.ts +1 -1
- package/editor/utils/file-uploader.d.ts +3 -2
- package/esm2022/editor/interfaces/file-response-data.mjs +1 -1
- package/esm2022/editor/tools/attaches.tool.mjs +1 -1
- package/esm2022/editor/tools/image.tool.mjs +1 -1
- package/esm2022/editor/tools/video.tool.mjs +1 -1
- package/esm2022/editor/utils/file-uploader.mjs +6 -3
- package/esm2022/widgets/ui/user-action-context-menu/activity-item/activity-item.component.mjs +2 -4
- package/esm2022/widgets/ui/user-action-context-menu/company-item/company-item.component.mjs +14 -15
- package/fesm2022/cuby-ui-core.mjs +19 -17
- package/fesm2022/cuby-ui-core.mjs.map +1 -1
- package/package.json +4 -4
- package/widgets/ui/user-action-context-menu/activity-item/activity-item.component.d.ts +0 -1
- package/widgets/ui/user-action-context-menu/company-item/company-item.component.d.ts +0 -2
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cuby-ui/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.468",
|
|
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.468",
|
|
10
|
+
"@cuby-ui/cdk": "^0.0.468",
|
|
11
|
+
"@cuby-ui/icons": "^0.0.468",
|
|
12
12
|
"@editorjs/editorjs": "2.29.1",
|
|
13
13
|
"@editorjs/header": "^2.8.1",
|
|
14
14
|
"@editorjs/list": "^1.9.0",
|
|
@@ -2,7 +2,6 @@ import { CuiUserCompanyActivity } from '@cuby-ui/api';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class CuiActivityItemComponent {
|
|
4
4
|
private readonly transloco;
|
|
5
|
-
private readonly router;
|
|
6
5
|
private readonly destroy;
|
|
7
6
|
private readonly cuiAuthService;
|
|
8
7
|
private readonly cuiActivityService;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { CuiUserCompany } from '@cuby-ui/api';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class CompanyItemComponent {
|
|
4
|
-
private readonly router;
|
|
5
4
|
private readonly cuiAuthService;
|
|
6
5
|
private readonly cuiActivityCompanyService;
|
|
7
6
|
private readonly COMPANY;
|
|
@@ -16,7 +15,6 @@ export declare class CompanyItemComponent {
|
|
|
16
15
|
getRoles(): string[];
|
|
17
16
|
checkIsAdmin(): boolean;
|
|
18
17
|
protected onGoToCompany(): void;
|
|
19
|
-
private wentWorkspace;
|
|
20
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<CompanyItemComponent, never>;
|
|
21
19
|
static ɵcmp: i0.ɵɵComponentDeclaration<CompanyItemComponent, "cui-company-item", never, { "company": { "alias": "company"; "required": true; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
22
20
|
}
|