@cuby-ui/core 0.0.450 → 0.0.452
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/esm2022/widgets/model/index.mjs +9 -4
- package/esm2022/widgets/ui/index.mjs +3 -2
- package/esm2022/widgets/ui/select-modal/index.mjs +1 -1
- package/fesm2022/cuby-ui-core.mjs +77 -77
- package/fesm2022/cuby-ui-core.mjs.map +1 -1
- package/package.json +4 -4
- package/widgets/model/index.d.ts +8 -3
- package/widgets/ui/index.d.ts +2 -1
- package/widgets/ui/select-modal/index.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.452",
|
|
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.452",
|
|
10
|
+
"@cuby-ui/cdk": "^0.0.452",
|
|
11
|
+
"@cuby-ui/icons": "^0.0.452",
|
|
12
12
|
"@editorjs/editorjs": "2.29.1",
|
|
13
13
|
"@editorjs/header": "^2.8.1",
|
|
14
14
|
"@editorjs/list": "^1.9.0",
|
package/widgets/model/index.d.ts
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
export * from './
|
|
2
|
-
export * from './
|
|
3
|
-
export * from './
|
|
1
|
+
export * from './resource-state-service.interface';
|
|
2
|
+
export * from './resource-state-service.token';
|
|
3
|
+
export * from './resources-block.options';
|
|
4
4
|
export * from './subject-modal-service.interface';
|
|
5
|
+
export * from './subject-modal-service.token';
|
|
6
|
+
export * from './used-elements-service.interface';
|
|
7
|
+
export * from './used-elements-service.token';
|
|
8
|
+
export * from './utility-service.interface';
|
|
9
|
+
export * from './utility-service.token';
|
package/widgets/ui/index.d.ts
CHANGED
|
@@ -6,11 +6,12 @@ export { CuiInstructionReadonlyInfoComponent } from './instruction-readonly-info
|
|
|
6
6
|
export { CuiCriterionInfoComponent } from './criterion-info';
|
|
7
7
|
export { CuiInstructionInfoComponent } from './instruction-info';
|
|
8
8
|
export { CuiGeneralControlErrorHintComponent } from './general-control-error-hint';
|
|
9
|
+
export { CuiFramerPreviewComponent, CuiImageUrl } from './framer-preview';
|
|
10
|
+
export * from './instruction-info-form';
|
|
9
11
|
export * from './select-modal';
|
|
10
12
|
export * from './storage-list';
|
|
11
13
|
export * from './utility-modal';
|
|
12
14
|
export * from './user-action-context-menu';
|
|
13
|
-
export { CuiFramerPreviewComponent, CuiImageUrl } from './framer-preview';
|
|
14
15
|
export * from './assignee-role-item';
|
|
15
16
|
export * from './assignee-roles-tabs';
|
|
16
17
|
export * from './modal-divided-section';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export * from './components';
|
|
2
2
|
export { CuiSelectModalComponent } from './select-modal.component';
|
|
3
3
|
export { CuiSelectModalService } from './select-modal.service';
|
|
4
|
+
export type { CuiSelectModalDialogData, CuiSelectModalComponentData, CuiSelectModalElement } from './select-modal.interfaces';
|