@cuby-ui/core 0.0.448 → 0.0.450
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/index.d.ts +0 -1
- package/esm2022/components/index.mjs +1 -2
- package/esm2022/index.mjs +2 -1
- package/esm2022/widgets/assets/constants/index.mjs +2 -0
- package/esm2022/widgets/assets/constants/translations.mjs +5 -0
- package/esm2022/widgets/assets/i18n/en.json +45 -0
- package/esm2022/widgets/assets/i18n/ru.json +45 -0
- package/esm2022/widgets/assets/index.mjs +2 -0
- package/esm2022/widgets/index.mjs +5 -0
- package/esm2022/widgets/model/index.mjs +5 -0
- package/esm2022/widgets/model/resource-state-service.interface.mjs +2 -0
- package/esm2022/widgets/model/resource-state-service.token.mjs +3 -0
- package/esm2022/widgets/model/resources-block.options.mjs +2 -0
- package/esm2022/widgets/model/subject-modal-service.interface.mjs +2 -0
- package/esm2022/widgets/model/subject-modal-service.token.mjs +3 -0
- package/esm2022/widgets/model/used-elements-service.interface.mjs +2 -0
- package/esm2022/widgets/model/used-elements-service.token.mjs +3 -0
- package/esm2022/widgets/model/utility-service.interface.mjs +2 -0
- package/esm2022/widgets/model/utility-service.token.mjs +3 -0
- package/esm2022/widgets/service/index.mjs +5 -0
- package/esm2022/widgets/service/resource-state-base.service.mjs +19 -0
- package/esm2022/widgets/service/subject-modal-base.service.mjs +15 -0
- package/esm2022/widgets/service/used-elements-base.service.mjs +17 -0
- package/esm2022/widgets/service/utility-base.service.mjs +129 -0
- package/esm2022/widgets/ui/assignee-role-item/assignee-role-item.component.mjs +31 -0
- package/esm2022/widgets/ui/assignee-role-item/index.mjs +2 -0
- package/esm2022/widgets/ui/assignee-roles-tabs/assignee-roles-tabs.component.mjs +48 -0
- package/esm2022/widgets/ui/assignee-roles-tabs/index.mjs +2 -0
- package/esm2022/widgets/ui/categories/categories.component.mjs +78 -0
- package/esm2022/widgets/ui/categories/components/categories-list/categories-list.component.mjs +17 -0
- package/esm2022/widgets/ui/categories/components/categories-list/index.mjs +2 -0
- package/esm2022/widgets/ui/categories/components/category-form/category-form.component.mjs +79 -0
- package/esm2022/widgets/ui/categories/components/category-form/index.mjs +2 -0
- package/esm2022/widgets/ui/categories/components/category-item/category-item.component.mjs +126 -0
- package/esm2022/widgets/ui/categories/components/category-item/index.mjs +2 -0
- package/esm2022/widgets/ui/categories/components/create-category-item/create-category-item.component.mjs +25 -0
- package/esm2022/widgets/ui/categories/components/create-category-item/index.mjs +2 -0
- package/esm2022/widgets/ui/categories/components/index.mjs +3 -0
- package/esm2022/widgets/ui/categories/index.mjs +3 -0
- package/esm2022/widgets/ui/categories/services/index.mjs +2 -0
- package/esm2022/widgets/ui/categories/services/selected-category.service.mjs +38 -0
- package/esm2022/widgets/ui/checklist-block/checklist-block.component.mjs +75 -0
- package/esm2022/widgets/ui/checklist-block/checklist-block.options.mjs +2 -0
- package/esm2022/widgets/ui/checklist-block/components/checklist-block-list/checklist-block-list.component.mjs +85 -0
- package/esm2022/widgets/ui/checklist-block/components/checklist-block-list/index.mjs +2 -0
- package/esm2022/widgets/ui/checklist-block/components/checklist-block-list-item-action-card/checklist-block-list-item-action-card.component.mjs +133 -0
- package/esm2022/widgets/ui/checklist-block/components/checklist-block-list-item-action-card/index.mjs +2 -0
- package/esm2022/widgets/ui/checklist-block/components/checklist-block-list-item-action-with-verification/checklist-block-list-item-action-with-verification.component.mjs +45 -0
- package/esm2022/widgets/ui/checklist-block/components/checklist-block-list-item-action-with-verification/index.mjs +2 -0
- package/esm2022/widgets/ui/checklist-block/components/checklist-block-list-item-action-without-verification/checklist-block-list-item-action-without-verification.component.mjs +35 -0
- package/esm2022/widgets/ui/checklist-block/components/checklist-block-list-item-action-without-verification/index.mjs +2 -0
- package/esm2022/widgets/ui/checklist-block/components/checklist-block-list-item-container/checklist-block-list-item-container.component.mjs +152 -0
- package/esm2022/widgets/ui/checklist-block/components/checklist-block-list-item-container/checklist-block-list-item-container.options.mjs +2 -0
- package/esm2022/widgets/ui/checklist-block/components/checklist-block-list-item-container/index.mjs +2 -0
- package/esm2022/widgets/ui/checklist-block/components/checklist-block-list-item-evaluation/checklist-block-list-item-evaluation.component.mjs +282 -0
- package/esm2022/widgets/ui/checklist-block/components/checklist-block-list-item-evaluation/checklist-block-list-item-evaluation.options.mjs +2 -0
- package/esm2022/widgets/ui/checklist-block/components/checklist-block-list-item-evaluation/index.mjs +2 -0
- package/esm2022/widgets/ui/checklist-block/components/checklist-block-list-item-evaluation-criteria/checklist-block-list-item-evaluation-criteria.component.mjs +117 -0
- package/esm2022/widgets/ui/checklist-block/components/checklist-block-list-item-evaluation-criteria/checklist-block-list-item-evaluation-criteria.options.mjs +2 -0
- package/esm2022/widgets/ui/checklist-block/components/checklist-block-list-item-evaluation-criteria/index.mjs +2 -0
- package/esm2022/widgets/ui/checklist-block/components/checklist-block-title-control/checklist-block-title-control.component.mjs +39 -0
- package/esm2022/widgets/ui/checklist-block/components/checklist-block-title-control/index.mjs +2 -0
- package/esm2022/widgets/ui/checklist-block/components/index.mjs +2 -0
- package/esm2022/widgets/ui/checklist-block/index.mjs +2 -0
- package/esm2022/widgets/ui/checklist-block/services/checklist-block.service.mjs +50 -0
- package/esm2022/widgets/ui/checklist-block/services/index.mjs +2 -0
- package/esm2022/widgets/ui/consumable-form/components/consumable-form-item/consumable-form-item.component.mjs +78 -0
- package/esm2022/widgets/ui/consumable-form/components/consumable-form-item/default-control-delay.mjs +2 -0
- package/esm2022/widgets/ui/consumable-form/components/consumable-form-item/index.mjs +3 -0
- package/esm2022/widgets/ui/consumable-form/components/consumable-form-item-readonly/consumable-form-item-readonly.component.mjs +17 -0
- package/esm2022/widgets/ui/consumable-form/components/consumable-form-item-readonly/index.mjs +2 -0
- package/esm2022/widgets/ui/consumable-form/components/index.mjs +4 -0
- package/esm2022/widgets/ui/consumable-form/consumable-form.component.mjs +184 -0
- package/esm2022/widgets/ui/consumable-form/consumable-form.options.mjs +2 -0
- package/esm2022/widgets/ui/consumable-form/index.mjs +2 -0
- package/esm2022/widgets/ui/criterion-info/criterion-info.component.mjs +137 -0
- package/esm2022/widgets/ui/criterion-info/index.mjs +2 -0
- package/esm2022/widgets/ui/criterion-info-form/criterion-info-form.component.mjs +147 -0
- package/esm2022/widgets/ui/criterion-info-form/criterion-info-form.options.mjs +2 -0
- package/esm2022/widgets/ui/criterion-info-form/index.mjs +2 -0
- package/esm2022/widgets/ui/criterion-readonly-info/criterion-readonly-info.component.mjs +72 -0
- package/esm2022/widgets/ui/criterion-readonly-info/index.mjs +2 -0
- package/esm2022/widgets/ui/delete-modal/delete-modal.component.mjs +39 -0
- package/esm2022/widgets/ui/delete-modal/delete-modal.options.mjs +2 -0
- package/esm2022/widgets/ui/delete-modal/index.mjs +2 -0
- package/esm2022/widgets/ui/framer-preview/framer-preview.component.mjs +77 -0
- package/esm2022/widgets/ui/framer-preview/framer-preview.options.mjs +2 -0
- package/esm2022/widgets/ui/framer-preview/index.mjs +2 -0
- package/esm2022/widgets/ui/general-control-error-hint/general-control-error-hint.component.mjs +21 -0
- package/esm2022/widgets/ui/general-control-error-hint/index.mjs +2 -0
- package/esm2022/widgets/ui/index.mjs +25 -0
- package/esm2022/widgets/ui/inserted/index.mjs +2 -2
- package/esm2022/widgets/ui/instruction-info/index.mjs +2 -0
- package/esm2022/widgets/ui/instruction-info/instruction-info.component.mjs +147 -0
- package/esm2022/widgets/ui/instruction-info-form/index.mjs +2 -0
- package/esm2022/widgets/ui/instruction-info-form/instruction-info-form.component.mjs +153 -0
- package/esm2022/widgets/ui/instruction-info-form/instruction-info-form.options.mjs +2 -0
- package/esm2022/widgets/ui/instruction-readonly-info/index.mjs +2 -0
- package/esm2022/widgets/ui/instruction-readonly-info/instruction-readonly-info.component.mjs +72 -0
- package/esm2022/widgets/ui/loader/index.mjs +2 -0
- package/esm2022/widgets/ui/loader/loader.component.mjs +36 -0
- package/esm2022/widgets/ui/modal-criteria-tab/index.mjs +2 -0
- package/esm2022/widgets/ui/modal-criteria-tab/modal-criteria-tab.component.mjs +45 -0
- package/esm2022/widgets/ui/modal-divided-section/index.mjs +3 -0
- package/esm2022/widgets/ui/modal-divided-section/modal-divided-section.component.mjs +55 -0
- package/esm2022/widgets/ui/modal-divided-section/modal-divided-section.interfaces.mjs +2 -0
- package/esm2022/widgets/ui/modal-header/modal-header.component.mjs +2 -2
- package/esm2022/widgets/ui/modal-header-inserted-buttons/index.mjs +2 -0
- package/esm2022/widgets/ui/modal-header-inserted-buttons/modal-header-inserted-buttons.component.mjs +22 -0
- package/esm2022/widgets/ui/modal-header-tabs/index.mjs +2 -0
- package/esm2022/widgets/ui/modal-header-tabs/modal-header-tabs.component.mjs +19 -0
- package/esm2022/widgets/ui/modal-info-tab/index.mjs +3 -0
- package/esm2022/widgets/ui/modal-info-tab/modal-info-tab.component.mjs +19 -0
- package/esm2022/widgets/ui/modal-info-tab/modal-info-tab.options.mjs +2 -0
- package/esm2022/widgets/ui/modal-instructions-tab/index.mjs +2 -0
- package/esm2022/widgets/ui/modal-instructions-tab/modal-instructions-tab.component.mjs +31 -0
- package/esm2022/widgets/ui/modal-operation-part/index.mjs +2 -0
- package/esm2022/widgets/ui/modal-operation-part/modal-operation-part.component.mjs +114 -0
- package/esm2022/widgets/ui/modal-resources-tab/index.mjs +2 -0
- package/esm2022/widgets/ui/modal-resources-tab/modal-resources-tab.component.mjs +33 -0
- package/esm2022/widgets/ui/render-dynamic-modal/index.mjs +3 -0
- package/esm2022/widgets/ui/render-dynamic-modal/render-dynamic-modal.component.mjs +29 -0
- package/esm2022/widgets/ui/render-dynamic-modal/render-dynamic-modal.option.mjs +2 -0
- package/esm2022/widgets/ui/resources-block/components/index.mjs +4 -0
- package/esm2022/widgets/ui/resources-block/components/resources-block-consumables/index.mjs +2 -0
- package/esm2022/widgets/ui/resources-block/components/resources-block-consumables/resources-block-consumables.component.mjs +53 -0
- package/esm2022/widgets/ui/resources-block/components/resources-block-consumables/resources-block-consumables.options.mjs +2 -0
- package/esm2022/widgets/ui/resources-block/components/resources-block-content/index.mjs +2 -0
- package/esm2022/widgets/ui/resources-block/components/resources-block-content/resources-block-content.component.mjs +38 -0
- package/esm2022/widgets/ui/resources-block/components/resources-block-part/index.mjs +2 -0
- package/esm2022/widgets/ui/resources-block/components/resources-block-part/resources-block-part.component.mjs +57 -0
- package/esm2022/widgets/ui/resources-block/components/resources-block-part/resources-block-part.options.mjs +2 -0
- package/esm2022/widgets/ui/resources-block/components/resources-block-tabs/index.mjs +2 -0
- package/esm2022/widgets/ui/resources-block/components/resources-block-tabs/resources-block-tabs.component.mjs +56 -0
- package/esm2022/widgets/ui/resources-block/components/resources-block-tabs/resources-block-tabs.options.mjs +10 -0
- package/esm2022/widgets/ui/resources-block/components/resources-block-toolbox/index.mjs +2 -0
- package/esm2022/widgets/ui/resources-block/components/resources-block-toolbox/resources-block-toolbox.component.mjs +56 -0
- package/esm2022/widgets/ui/resources-block/components/resources-block-toolbox/resources-block-toolbox.options.mjs +2 -0
- package/esm2022/widgets/ui/resources-block/components/resources-options/index.mjs +2 -0
- package/esm2022/widgets/ui/resources-block/components/resources-options/resources-options.component.mjs +42 -0
- package/esm2022/widgets/ui/resources-block/index.mjs +3 -0
- package/esm2022/widgets/ui/resources-block/resources-block.component.mjs +137 -0
- package/esm2022/widgets/ui/resources-block-tabs/index.mjs +2 -0
- package/esm2022/widgets/ui/resources-block-tabs/resources-block-tabs.component.mjs +57 -0
- package/esm2022/widgets/ui/resources-block-tabs/resources-block-tabs.options.mjs +10 -0
- package/esm2022/widgets/ui/select-modal/components/index.mjs +3 -0
- package/esm2022/widgets/ui/select-modal/components/select-modal-folder/index.mjs +2 -0
- package/esm2022/widgets/ui/select-modal/components/select-modal-folder/select-modal-folder.component.mjs +21 -0
- package/esm2022/widgets/ui/select-modal/components/select-modal-search/index.mjs +2 -0
- package/esm2022/widgets/ui/select-modal/components/select-modal-search/select-modal-search.component.mjs +32 -0
- package/esm2022/widgets/ui/select-modal/index.mjs +4 -0
- package/esm2022/widgets/ui/select-modal/select-modal.component.mjs +35 -0
- package/esm2022/widgets/ui/select-modal/select-modal.interfaces.mjs +2 -0
- package/esm2022/widgets/ui/select-modal/select-modal.service.mjs +23 -0
- package/esm2022/widgets/ui/storage-list/components/index.mjs +2 -0
- package/esm2022/widgets/ui/storage-list/components/storage-list-item/index.mjs +2 -0
- package/esm2022/widgets/ui/storage-list/components/storage-list-item/storage-list-item.component.mjs +87 -0
- package/esm2022/widgets/ui/storage-list/index.mjs +3 -0
- package/esm2022/widgets/ui/storage-list/storage-list.component.mjs +17 -0
- package/esm2022/widgets/ui/storage-list/storage-list.options.mjs +3 -0
- package/esm2022/widgets/ui/toolbox-form/components/index.mjs +2 -0
- package/esm2022/widgets/ui/toolbox-form/components/tool-form-readonly/index.mjs +2 -0
- package/esm2022/widgets/ui/toolbox-form/components/tool-form-readonly/tool-form-readonly.component.mjs +19 -0
- package/esm2022/widgets/ui/toolbox-form/index.mjs +3 -0
- package/esm2022/widgets/ui/toolbox-form/tool-form.component.mjs +106 -0
- package/esm2022/widgets/ui/toolbox-form/tool-form.options.mjs +2 -0
- package/esm2022/widgets/ui/user-action-context-menu/activity-item/activity-item.component.mjs +61 -0
- package/esm2022/widgets/ui/user-action-context-menu/activity-item/index.mjs +2 -0
- package/esm2022/widgets/ui/user-action-context-menu/company-item/company-item.component.mjs +68 -0
- package/esm2022/widgets/ui/user-action-context-menu/company-item/index.mjs +2 -0
- package/esm2022/widgets/ui/user-action-context-menu/index.mjs +4 -0
- package/esm2022/widgets/ui/user-action-context-menu/services/activity-base.service.mjs +32 -0
- package/esm2022/widgets/ui/user-action-context-menu/services/activity.service.mjs +35 -0
- package/esm2022/widgets/ui/user-action-context-menu/services/index.mjs +3 -0
- package/esm2022/widgets/ui/user-action-context-menu/user-action-context-menu.component.mjs +83 -0
- package/esm2022/widgets/ui/user-action-context-menu/user-action-context.option.mjs +3 -0
- package/esm2022/widgets/ui/utility-info-readonly/index.mjs +3 -0
- package/esm2022/widgets/ui/utility-info-readonly/utility-info-readonly.component.mjs +85 -0
- package/esm2022/widgets/ui/utility-info-readonly/utility-info-readonly.options.mjs +2 -0
- package/esm2022/widgets/ui/utility-modal/components/criterion-modal-create/criterion-modal-create.component.mjs +41 -0
- package/esm2022/widgets/ui/utility-modal/components/criterion-modal-create/index.mjs +2 -0
- package/esm2022/widgets/ui/utility-modal/components/index.mjs +5 -0
- package/esm2022/widgets/ui/utility-modal/components/instruction-modal-create/index.mjs +2 -0
- package/esm2022/widgets/ui/utility-modal/components/instruction-modal-create/instruction-modal-create.component.mjs +41 -0
- package/esm2022/widgets/ui/utility-modal/components/readonly-criterion-modal/index.mjs +2 -0
- package/esm2022/widgets/ui/utility-modal/components/readonly-criterion-modal/readonly-criterion-modal.component.mjs +40 -0
- package/esm2022/widgets/ui/utility-modal/components/readonly-instruction-modal/index.mjs +2 -0
- package/esm2022/widgets/ui/utility-modal/components/readonly-instruction-modal/readonly-instruction-modal.component.mjs +40 -0
- package/esm2022/widgets/ui/utility-modal/components/readonly-utility-modal/index.mjs +2 -0
- package/esm2022/widgets/ui/utility-modal/components/readonly-utility-modal/readonly-utility-modal.component.mjs +43 -0
- package/esm2022/widgets/ui/utility-modal/components/utility-modal-create/index.mjs +2 -0
- package/esm2022/widgets/ui/utility-modal/components/utility-modal-create/utility-modal-create.component.mjs +55 -0
- package/esm2022/widgets/ui/utility-modal/index.mjs +4 -0
- package/esm2022/widgets/ui/utility-modal/utility-modal.component.mjs +22 -0
- package/esm2022/widgets/ui/utility-modal/utility-modal.options.mjs +3 -0
- package/esm2022/widgets/ui/utility-readonly-thumbnail/index.mjs +2 -0
- package/esm2022/widgets/ui/utility-readonly-thumbnail/utility-readonly-thumbnail.component.mjs +15 -0
- package/esm2022/widgets/ui/utility-thumbnail/index.mjs +2 -0
- package/esm2022/widgets/ui/utility-thumbnail/utility-thumbnail.component.mjs +95 -0
- package/fesm2022/cuby-ui-core-en-BvvbrGg1.mjs +91 -0
- package/fesm2022/cuby-ui-core-en-BvvbrGg1.mjs.map +1 -0
- package/fesm2022/cuby-ui-core-ru-bROcEQBf.mjs +91 -0
- package/fesm2022/cuby-ui-core-ru-bROcEQBf.mjs.map +1 -0
- package/fesm2022/cuby-ui-core.mjs +4178 -18
- package/fesm2022/cuby-ui-core.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/package.json +4 -4
- package/widgets/assets/constants/index.d.ts +1 -0
- package/widgets/assets/constants/translations.d.ts +2 -0
- package/widgets/assets/index.d.ts +1 -0
- package/widgets/index.d.ts +4 -0
- package/widgets/model/index.d.ts +4 -0
- package/widgets/model/resource-state-service.interface.d.ts +4 -0
- package/widgets/model/resource-state-service.token.d.ts +3 -0
- package/widgets/model/resources-block.options.d.ts +15 -0
- package/widgets/model/subject-modal-service.interface.d.ts +7 -0
- package/widgets/model/subject-modal-service.token.d.ts +3 -0
- package/widgets/model/used-elements-service.interface.d.ts +5 -0
- package/widgets/model/used-elements-service.token.d.ts +3 -0
- package/widgets/model/utility-service.interface.d.ts +23 -0
- package/widgets/model/utility-service.token.d.ts +3 -0
- package/widgets/service/index.d.ts +4 -0
- package/widgets/service/resource-state-base.service.d.ts +10 -0
- package/widgets/service/subject-modal-base.service.d.ts +11 -0
- package/widgets/service/used-elements-base.service.d.ts +11 -0
- package/widgets/service/utility-base.service.d.ts +29 -0
- package/widgets/ui/assignee-role-item/assignee-role-item.component.d.ts +12 -0
- package/widgets/ui/assignee-role-item/index.d.ts +1 -0
- package/widgets/ui/assignee-roles-tabs/assignee-roles-tabs.component.d.ts +18 -0
- package/widgets/ui/assignee-roles-tabs/index.d.ts +1 -0
- package/widgets/ui/categories/categories.component.d.ts +25 -0
- package/widgets/ui/categories/components/categories-list/categories-list.component.d.ts +8 -0
- package/widgets/ui/categories/components/categories-list/index.d.ts +1 -0
- package/widgets/ui/categories/components/category-form/category-form.component.d.ts +28 -0
- package/widgets/ui/categories/components/category-form/index.d.ts +1 -0
- package/widgets/ui/categories/components/category-item/category-item.component.d.ts +42 -0
- package/widgets/ui/categories/components/category-item/index.d.ts +1 -0
- package/widgets/ui/categories/components/create-category-item/create-category-item.component.d.ts +10 -0
- package/widgets/ui/categories/components/create-category-item/index.d.ts +1 -0
- package/widgets/ui/categories/components/index.d.ts +2 -0
- package/widgets/ui/categories/index.d.ts +2 -0
- package/widgets/ui/categories/services/index.d.ts +1 -0
- package/widgets/ui/categories/services/selected-category.service.d.ts +18 -0
- package/widgets/ui/checklist-block/checklist-block.component.d.ts +21 -0
- package/widgets/ui/checklist-block/checklist-block.options.d.ts +12 -0
- package/widgets/ui/checklist-block/components/checklist-block-list/checklist-block-list.component.d.ts +27 -0
- package/widgets/ui/checklist-block/components/checklist-block-list/index.d.ts +1 -0
- package/widgets/ui/checklist-block/components/checklist-block-list-item-action-card/checklist-block-list-item-action-card.component.d.ts +30 -0
- package/widgets/ui/checklist-block/components/checklist-block-list-item-action-card/index.d.ts +1 -0
- package/widgets/ui/checklist-block/components/checklist-block-list-item-action-with-verification/checklist-block-list-item-action-with-verification.component.d.ts +11 -0
- package/widgets/ui/checklist-block/components/checklist-block-list-item-action-with-verification/index.d.ts +1 -0
- package/widgets/ui/checklist-block/components/checklist-block-list-item-action-without-verification/checklist-block-list-item-action-without-verification.component.d.ts +10 -0
- package/widgets/ui/checklist-block/components/checklist-block-list-item-action-without-verification/index.d.ts +1 -0
- package/widgets/ui/checklist-block/components/checklist-block-list-item-container/checklist-block-list-item-container.component.d.ts +41 -0
- package/widgets/ui/checklist-block/components/checklist-block-list-item-container/checklist-block-list-item-container.options.d.ts +5 -0
- package/widgets/ui/checklist-block/components/checklist-block-list-item-container/index.d.ts +1 -0
- package/widgets/ui/checklist-block/components/checklist-block-list-item-evaluation/checklist-block-list-item-evaluation.component.d.ts +51 -0
- package/widgets/ui/checklist-block/components/checklist-block-list-item-evaluation/checklist-block-list-item-evaluation.options.d.ts +14 -0
- package/widgets/ui/checklist-block/components/checklist-block-list-item-evaluation/index.d.ts +2 -0
- package/widgets/ui/checklist-block/components/checklist-block-list-item-evaluation-criteria/checklist-block-list-item-evaluation-criteria.component.d.ts +33 -0
- package/widgets/ui/checklist-block/components/checklist-block-list-item-evaluation-criteria/checklist-block-list-item-evaluation-criteria.options.d.ts +4 -0
- package/widgets/ui/checklist-block/components/checklist-block-list-item-evaluation-criteria/index.d.ts +1 -0
- package/widgets/ui/checklist-block/components/checklist-block-title-control/checklist-block-title-control.component.d.ts +8 -0
- package/widgets/ui/checklist-block/components/checklist-block-title-control/index.d.ts +1 -0
- package/widgets/ui/checklist-block/components/index.d.ts +1 -0
- package/widgets/ui/checklist-block/index.d.ts +1 -0
- package/widgets/ui/checklist-block/services/checklist-block.service.d.ts +19 -0
- package/widgets/ui/checklist-block/services/index.d.ts +1 -0
- package/widgets/ui/consumable-form/components/consumable-form-item/consumable-form-item.component.d.ts +31 -0
- package/widgets/ui/consumable-form/components/consumable-form-item/default-control-delay.d.ts +1 -0
- package/widgets/ui/consumable-form/components/consumable-form-item/index.d.ts +2 -0
- package/widgets/ui/consumable-form/components/consumable-form-item-readonly/consumable-form-item-readonly.component.d.ts +8 -0
- package/widgets/ui/consumable-form/components/consumable-form-item-readonly/index.d.ts +1 -0
- package/widgets/ui/consumable-form/components/index.d.ts +3 -0
- package/widgets/ui/consumable-form/consumable-form.component.d.ts +46 -0
- package/widgets/ui/consumable-form/consumable-form.options.d.ts +22 -0
- package/widgets/ui/consumable-form/index.d.ts +1 -0
- package/widgets/ui/criterion-info/criterion-info.component.d.ts +43 -0
- package/widgets/ui/criterion-info/index.d.ts +1 -0
- package/widgets/ui/criterion-info-form/criterion-info-form.component.d.ts +39 -0
- package/widgets/ui/criterion-info-form/criterion-info-form.options.d.ts +7 -0
- package/widgets/ui/criterion-info-form/index.d.ts +2 -0
- package/widgets/ui/criterion-readonly-info/criterion-readonly-info.component.d.ts +26 -0
- package/widgets/ui/criterion-readonly-info/index.d.ts +1 -0
- package/widgets/ui/delete-modal/delete-modal.component.d.ts +13 -0
- package/widgets/ui/delete-modal/delete-modal.options.d.ts +7 -0
- package/widgets/ui/delete-modal/index.d.ts +2 -0
- package/widgets/ui/framer-preview/framer-preview.component.d.ts +26 -0
- package/widgets/ui/framer-preview/framer-preview.options.d.ts +5 -0
- package/widgets/ui/framer-preview/index.d.ts +2 -0
- package/widgets/ui/general-control-error-hint/general-control-error-hint.component.d.ts +9 -0
- package/widgets/ui/general-control-error-hint/index.d.ts +1 -0
- package/widgets/ui/index.d.ts +24 -0
- package/widgets/ui/inserted/index.d.ts +1 -1
- package/widgets/ui/instruction-info/index.d.ts +1 -0
- package/widgets/ui/instruction-info/instruction-info.component.d.ts +45 -0
- package/widgets/ui/instruction-info-form/index.d.ts +2 -0
- package/widgets/ui/instruction-info-form/instruction-info-form.component.d.ts +43 -0
- package/widgets/ui/instruction-info-form/instruction-info-form.options.d.ts +9 -0
- package/widgets/ui/instruction-readonly-info/index.d.ts +1 -0
- package/widgets/ui/instruction-readonly-info/instruction-readonly-info.component.d.ts +26 -0
- package/widgets/ui/loader/index.d.ts +1 -0
- package/widgets/ui/loader/loader.component.d.ts +20 -0
- package/widgets/ui/modal-criteria-tab/index.d.ts +1 -0
- package/widgets/ui/modal-criteria-tab/modal-criteria-tab.component.d.ts +15 -0
- package/widgets/ui/modal-divided-section/index.d.ts +2 -0
- package/widgets/ui/modal-divided-section/modal-divided-section.component.d.ts +22 -0
- package/widgets/ui/modal-divided-section/modal-divided-section.interfaces.d.ts +6 -0
- package/widgets/ui/modal-header-inserted-buttons/index.d.ts +1 -0
- package/widgets/ui/modal-header-inserted-buttons/modal-header-inserted-buttons.component.d.ts +7 -0
- package/widgets/ui/modal-header-tabs/index.d.ts +1 -0
- package/widgets/ui/modal-header-tabs/modal-header-tabs.component.d.ts +8 -0
- package/widgets/ui/modal-info-tab/index.d.ts +2 -0
- package/widgets/ui/modal-info-tab/modal-info-tab.component.d.ts +8 -0
- package/widgets/ui/modal-info-tab/modal-info-tab.options.d.ts +4 -0
- package/widgets/ui/modal-instructions-tab/index.d.ts +1 -0
- package/widgets/ui/modal-instructions-tab/modal-instructions-tab.component.d.ts +15 -0
- package/widgets/ui/modal-operation-part/index.d.ts +1 -0
- package/widgets/ui/modal-operation-part/modal-operation-part.component.d.ts +24 -0
- package/widgets/ui/modal-resources-tab/index.d.ts +1 -0
- package/widgets/ui/modal-resources-tab/modal-resources-tab.component.d.ts +14 -0
- package/widgets/ui/render-dynamic-modal/index.d.ts +2 -0
- package/widgets/ui/render-dynamic-modal/render-dynamic-modal.component.d.ts +11 -0
- package/widgets/ui/render-dynamic-modal/render-dynamic-modal.option.d.ts +5 -0
- package/widgets/ui/resources-block/components/index.d.ts +5 -0
- package/widgets/ui/resources-block/components/resources-block-consumables/index.d.ts +2 -0
- package/widgets/ui/resources-block/components/resources-block-consumables/resources-block-consumables.component.d.ts +17 -0
- package/widgets/ui/resources-block/components/resources-block-consumables/resources-block-consumables.options.d.ts +7 -0
- package/widgets/ui/resources-block/components/resources-block-content/index.d.ts +1 -0
- package/widgets/ui/resources-block/components/resources-block-content/resources-block-content.component.d.ts +19 -0
- package/widgets/ui/resources-block/components/resources-block-part/index.d.ts +1 -0
- package/widgets/ui/resources-block/components/resources-block-part/resources-block-part.component.d.ts +19 -0
- package/widgets/ui/resources-block/components/resources-block-part/resources-block-part.options.d.ts +5 -0
- package/widgets/ui/resources-block/components/resources-block-tabs/index.d.ts +1 -0
- package/widgets/ui/resources-block/components/resources-block-tabs/resources-block-tabs.component.d.ts +28 -0
- package/widgets/ui/resources-block/components/resources-block-tabs/resources-block-tabs.options.d.ts +13 -0
- package/widgets/ui/resources-block/components/resources-block-toolbox/index.d.ts +2 -0
- package/widgets/ui/resources-block/components/resources-block-toolbox/resources-block-toolbox.component.d.ts +17 -0
- package/widgets/ui/resources-block/components/resources-block-toolbox/resources-block-toolbox.options.d.ts +5 -0
- package/widgets/ui/resources-block/components/resources-options/index.d.ts +1 -0
- package/widgets/ui/resources-block/components/resources-options/resources-options.component.d.ts +20 -0
- package/widgets/ui/resources-block/index.d.ts +2 -0
- package/widgets/ui/resources-block/resources-block.component.d.ts +35 -0
- package/widgets/ui/resources-block-tabs/index.d.ts +1 -0
- package/widgets/ui/resources-block-tabs/resources-block-tabs.component.d.ts +28 -0
- package/widgets/ui/resources-block-tabs/resources-block-tabs.options.d.ts +14 -0
- package/widgets/ui/select-modal/components/index.d.ts +2 -0
- package/widgets/ui/select-modal/components/select-modal-folder/index.d.ts +1 -0
- package/widgets/ui/select-modal/components/select-modal-folder/select-modal-folder.component.d.ts +10 -0
- package/widgets/ui/select-modal/components/select-modal-search/index.d.ts +1 -0
- package/widgets/ui/select-modal/components/select-modal-search/select-modal-search.component.d.ts +12 -0
- package/widgets/ui/select-modal/index.d.ts +3 -0
- package/widgets/ui/select-modal/select-modal.component.d.ts +13 -0
- package/widgets/ui/select-modal/select-modal.interfaces.d.ts +15 -0
- package/widgets/ui/select-modal/select-modal.service.d.ts +13 -0
- package/widgets/ui/storage-list/components/index.d.ts +1 -0
- package/widgets/ui/storage-list/components/storage-list-item/index.d.ts +1 -0
- package/widgets/ui/storage-list/components/storage-list-item/storage-list-item.component.d.ts +24 -0
- package/widgets/ui/storage-list/index.d.ts +2 -0
- package/widgets/ui/storage-list/storage-list.component.d.ts +10 -0
- package/widgets/ui/storage-list/storage-list.options.d.ts +16 -0
- package/widgets/ui/toolbox-form/components/index.d.ts +1 -0
- package/widgets/ui/toolbox-form/components/tool-form-readonly/index.d.ts +1 -0
- package/widgets/ui/toolbox-form/components/tool-form-readonly/tool-form-readonly.component.d.ts +7 -0
- package/widgets/ui/toolbox-form/index.d.ts +2 -0
- package/widgets/ui/toolbox-form/tool-form.component.d.ts +34 -0
- package/widgets/ui/toolbox-form/tool-form.options.d.ts +5 -0
- package/widgets/ui/user-action-context-menu/activity-item/activity-item.component.d.ts +17 -0
- package/widgets/ui/user-action-context-menu/activity-item/index.d.ts +1 -0
- package/widgets/ui/user-action-context-menu/company-item/company-item.component.d.ts +22 -0
- package/widgets/ui/user-action-context-menu/company-item/index.d.ts +1 -0
- package/widgets/ui/user-action-context-menu/index.d.ts +3 -0
- package/widgets/ui/user-action-context-menu/services/activity-base.service.d.ts +14 -0
- package/widgets/ui/user-action-context-menu/services/activity.service.d.ts +14 -0
- package/widgets/ui/user-action-context-menu/services/index.d.ts +2 -0
- package/widgets/ui/user-action-context-menu/user-action-context-menu.component.d.ts +29 -0
- package/widgets/ui/user-action-context-menu/user-action-context.option.d.ts +15 -0
- package/widgets/ui/utility-info-readonly/index.d.ts +2 -0
- package/widgets/ui/utility-info-readonly/utility-info-readonly.component.d.ts +28 -0
- package/widgets/ui/utility-info-readonly/utility-info-readonly.options.d.ts +4 -0
- package/widgets/ui/utility-modal/components/criterion-modal-create/criterion-modal-create.component.d.ts +18 -0
- package/widgets/ui/utility-modal/components/criterion-modal-create/index.d.ts +1 -0
- package/widgets/ui/utility-modal/components/index.d.ts +4 -0
- package/widgets/ui/utility-modal/components/instruction-modal-create/index.d.ts +1 -0
- package/widgets/ui/utility-modal/components/instruction-modal-create/instruction-modal-create.component.d.ts +18 -0
- package/widgets/ui/utility-modal/components/readonly-criterion-modal/index.d.ts +1 -0
- package/widgets/ui/utility-modal/components/readonly-criterion-modal/readonly-criterion-modal.component.d.ts +16 -0
- package/widgets/ui/utility-modal/components/readonly-instruction-modal/index.d.ts +1 -0
- package/widgets/ui/utility-modal/components/readonly-instruction-modal/readonly-instruction-modal.component.d.ts +16 -0
- package/widgets/ui/utility-modal/components/readonly-utility-modal/index.d.ts +1 -0
- package/widgets/ui/utility-modal/components/readonly-utility-modal/readonly-utility-modal.component.d.ts +18 -0
- package/widgets/ui/utility-modal/components/utility-modal-create/index.d.ts +1 -0
- package/widgets/ui/utility-modal/components/utility-modal-create/utility-modal-create.component.d.ts +25 -0
- package/widgets/ui/utility-modal/index.d.ts +3 -0
- package/widgets/ui/utility-modal/utility-modal.component.d.ts +10 -0
- package/widgets/ui/utility-modal/utility-modal.options.d.ts +12 -0
- package/widgets/ui/utility-readonly-thumbnail/index.d.ts +1 -0
- package/widgets/ui/utility-readonly-thumbnail/utility-readonly-thumbnail.component.d.ts +8 -0
- package/widgets/ui/utility-thumbnail/index.d.ts +1 -0
- package/widgets/ui/utility-thumbnail/utility-thumbnail.component.d.ts +21 -0
- package/components/inserted/index.d.ts +0 -1
- package/components/inserted/inserted.component.d.ts +0 -5
- package/esm2022/components/inserted/index.mjs +0 -2
- package/esm2022/components/inserted/inserted.component.mjs +0 -15
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { AfterViewInit, OnDestroy } from '@angular/core';
|
|
2
|
+
import { Resource, ResourceContentType, UtilityComponentType, UtilityComponentWithResources, UtilitySubject } from '@cuby-ui/api';
|
|
3
|
+
import { CuiContextMenuItem } from '../../../interfaces';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ResourcesBlockComponent implements AfterViewInit, OnDestroy {
|
|
6
|
+
private readonly el;
|
|
7
|
+
private readonly r2;
|
|
8
|
+
private readonly factoryApiService;
|
|
9
|
+
private readonly cuiDialogService;
|
|
10
|
+
private readonly utilityApiService;
|
|
11
|
+
private readonly utilityService;
|
|
12
|
+
private readonly usedElementsService;
|
|
13
|
+
private readonly resourceStateService;
|
|
14
|
+
private ro?;
|
|
15
|
+
protected readonly TYPES: ResourceContentType[];
|
|
16
|
+
protected readonly RESOURCES_COMPONENT_OPTIONS: CuiContextMenuItem[];
|
|
17
|
+
protected readonly currentTabIndex: import("@angular/core").WritableSignal<number>;
|
|
18
|
+
protected readonly resources: import("@angular/core").Signal<Resource[]>;
|
|
19
|
+
protected readonly availableTypes: import("@angular/core").Signal<ResourceContentType[]>;
|
|
20
|
+
readonly title: import("@angular/core").InputSignal<string>;
|
|
21
|
+
readonly resourceComponent: import("@angular/core").InputSignal<UtilityComponentWithResources>;
|
|
22
|
+
readonly utilityId: import("@angular/core").InputSignal<string>;
|
|
23
|
+
readonly resourceComponentDeleted: import("@angular/core").OutputEmitterRef<UtilityComponentType>;
|
|
24
|
+
constructor();
|
|
25
|
+
ngAfterViewInit(): void;
|
|
26
|
+
ngOnDestroy(): void;
|
|
27
|
+
protected onAddResourcesType(resource: Resource): void;
|
|
28
|
+
protected onResourcesAdded(resources: UtilitySubject[], container: Resource): void;
|
|
29
|
+
protected onResourceStructureRemoved(resource: Resource): void;
|
|
30
|
+
private initUsedElementsEffect;
|
|
31
|
+
private openDeleteResourceComponentModal;
|
|
32
|
+
private getAddintionalResourceInfo;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResourcesBlockComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ResourcesBlockComponent, "cui-resources-block", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; "resourceComponent": { "alias": "resourceComponent"; "required": true; "isSignal": true; }; "utilityId": { "alias": "utilityId"; "required": true; "isSignal": true; }; }, { "resourceComponentDeleted": "resourceComponentDeleted"; }, never, never, true, never>;
|
|
35
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ResourcesBlockTabsComponent } from './resources-block-tabs.component';
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import { ResourceDeleteOutput } from './resources-block-tabs.options';
|
|
3
|
+
import { Resource, UtilityComponentWithResources } from '@cuby-ui/api';
|
|
4
|
+
import { CuiTemplateContext } from '@cuby-ui/cdk';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ResourcesBlockTabsComponent {
|
|
7
|
+
private readonly utilityApiService;
|
|
8
|
+
private readonly cuiDialogService;
|
|
9
|
+
private readonly subjectModalService;
|
|
10
|
+
protected readonly UTILITY_TEMPLATE_CONTEXT: CuiTemplateContext<Resource>;
|
|
11
|
+
protected readonly COMPONENTS_CONTENT: {
|
|
12
|
+
CONSUMABLES: typeof import("../resources-block/components/resources-block-consumables").ResourcesBlockConsumablesComponent;
|
|
13
|
+
TOOLBOX: typeof import("../resources-block/components/resources-block-toolbox").ResourcesBlockToolboxComponent;
|
|
14
|
+
PART: typeof import("@cuby-ui/core").ResourcesBlockPartComponent;
|
|
15
|
+
};
|
|
16
|
+
readonly resourceComponent: import("@angular/core").InputSignal<UtilityComponentWithResources>;
|
|
17
|
+
readonly utilityId: import("@angular/core").InputSignal<string>;
|
|
18
|
+
readonly buttonSlot: import("@angular/core").InputSignal<TemplateRef<unknown>>;
|
|
19
|
+
readonly readonly: import("@angular/core").InputSignal<boolean>;
|
|
20
|
+
readonly selectedIndex: import("@angular/core").InputSignal<number>;
|
|
21
|
+
readonly resourceAdded: import("@angular/core").OutputEmitterRef<ResourceDeleteOutput>;
|
|
22
|
+
readonly resourceDeleted: import("@angular/core").OutputEmitterRef<Resource>;
|
|
23
|
+
readonly selectedIndexChange: import("@angular/core").OutputEmitterRef<number>;
|
|
24
|
+
protected onOpenDeleteResourceModal(resource: Resource): void;
|
|
25
|
+
protected onResourcesAdded(): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResourcesBlockTabsComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ResourcesBlockTabsComponent, "cui-resources-block-tabs", never, { "resourceComponent": { "alias": "resourceComponent"; "required": true; "isSignal": true; }; "utilityId": { "alias": "utilityId"; "required": true; "isSignal": true; }; "buttonSlot": { "alias": "buttonSlot"; "required": true; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "selectedIndex": { "alias": "selectedIndex"; "required": false; "isSignal": true; }; }, { "resourceAdded": "resourceAdded"; "resourceDeleted": "resourceDeleted"; "selectedIndexChange": "selectedIndexChange"; }, never, never, true, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ResourcesBlockPartComponent } from '../resources-block';
|
|
2
|
+
import { Resource } from '@cuby-ui/api';
|
|
3
|
+
import { ResourcesBlockConsumablesComponent } from '../resources-block/components/resources-block-consumables';
|
|
4
|
+
import { ResourcesBlockToolboxComponent } from '../resources-block/components/resources-block-toolbox';
|
|
5
|
+
import { UtilitySubject } from '@cuby-ui/api';
|
|
6
|
+
export declare const COMPONENTS_CONTENT: {
|
|
7
|
+
CONSUMABLES: typeof ResourcesBlockConsumablesComponent;
|
|
8
|
+
TOOLBOX: typeof ResourcesBlockToolboxComponent;
|
|
9
|
+
PART: typeof ResourcesBlockPartComponent;
|
|
10
|
+
};
|
|
11
|
+
export interface ResourceDeleteOutput {
|
|
12
|
+
readonly resources: UtilitySubject[];
|
|
13
|
+
readonly container: Resource;
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CuiSelectModalFolderComponent } from './select-modal-folder.component';
|
package/widgets/ui/select-modal/components/select-modal-folder/select-modal-folder.component.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CuiSelectModalFolderComponent {
|
|
4
|
+
protected readonly icon: import("@angular/core").Signal<"cuiIconFolderOpen" | "cuiIconFolder">;
|
|
5
|
+
readonly title: import("@angular/core").InputSignal<string>;
|
|
6
|
+
readonly buttonSlot: import("@angular/core").InputSignal<TemplateRef<unknown>>;
|
|
7
|
+
readonly isOpen: import("@angular/core").InputSignal<boolean>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiSelectModalFolderComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiSelectModalFolderComponent, "cui-select-modal-folder", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; "buttonSlot": { "alias": "buttonSlot"; "required": true; "isSignal": true; }; "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CuiSelectModalSearchComponent } from './select-modal-search.component';
|
package/widgets/ui/select-modal/components/select-modal-search/select-modal-search.component.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormControl } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CuiSelectModalSearchComponent implements OnInit {
|
|
5
|
+
private readonly destroyRef;
|
|
6
|
+
readonly searchControl: import("@angular/core").InputSignal<FormControl<any>>;
|
|
7
|
+
readonly controlDelay: import("@angular/core").InputSignal<number>;
|
|
8
|
+
readonly searchStringChanged: import("@angular/core").OutputEmitterRef<string>;
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiSelectModalSearchComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiSelectModalSearchComponent, "cui-select-modal-search", never, { "searchControl": { "alias": "searchControl"; "required": false; "isSignal": true; }; "controlDelay": { "alias": "controlDelay"; "required": false; "isSignal": true; }; }, { "searchStringChanged": "searchStringChanged"; }, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { CuiSelectModalDialogData } from './select-modal.interfaces';
|
|
2
|
+
import type { CuiDialogContext } from '../../../components';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CuiSelectModalComponent {
|
|
5
|
+
protected readonly context: CuiDialogContext<CuiSelectModalDialogData>;
|
|
6
|
+
private readonly data;
|
|
7
|
+
protected readonly heading: string;
|
|
8
|
+
protected readonly leftData: import("./select-modal.interfaces").CuiSelectModalComponentData;
|
|
9
|
+
protected readonly rightData: import("./select-modal.interfaces").CuiSelectModalComponentData;
|
|
10
|
+
protected onCancel(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiSelectModalComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiSelectModalComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { Type } from '@angular/core';
|
|
2
|
+
export interface CuiSelectModalDialogData {
|
|
3
|
+
readonly heading: string;
|
|
4
|
+
readonly leftData: CuiSelectModalComponentData;
|
|
5
|
+
readonly rightData: CuiSelectModalComponentData;
|
|
6
|
+
}
|
|
7
|
+
export interface CuiSelectModalComponentData {
|
|
8
|
+
readonly component: Type<unknown>;
|
|
9
|
+
readonly inputs?: {
|
|
10
|
+
[key: string]: unknown;
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
export type CuiSelectModalElement = {
|
|
14
|
+
id: string;
|
|
15
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { Signal } from '@angular/core';
|
|
2
|
+
import type { CuiNullable } from '@cuby-ui/cdk';
|
|
3
|
+
import type { CuiSelectModalElement } from './select-modal.interfaces';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CuiSelectModalService {
|
|
6
|
+
private readonly selectedElementSignal;
|
|
7
|
+
readonly selectedElement: Signal<CuiNullable<CuiSelectModalElement>>;
|
|
8
|
+
getSelectedData<T>(): Signal<CuiNullable<T>>;
|
|
9
|
+
set(element: CuiSelectModalElement): void;
|
|
10
|
+
delete(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiSelectModalService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CuiSelectModalService>;
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './storage-list-item';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CuiStorageListItemComponent } from './storage-list-item.component';
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { TemplateRef } from '@angular/core';
|
|
2
|
+
import type { CuiStorage, CuiStorageBase } from '../../storage-list.options';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CuiStorageListItemComponent<T = CuiStorageBase> {
|
|
5
|
+
private readonly storageListService;
|
|
6
|
+
private isLoadingChildren;
|
|
7
|
+
private isLoadingElements;
|
|
8
|
+
protected readonly storageChildren: import("@angular/core").WritableSignal<CuiStorage<CuiStorageBase>[]>;
|
|
9
|
+
protected readonly storageElements: import("@angular/core").WritableSignal<CuiStorageBase[]>;
|
|
10
|
+
protected readonly areContentOpened: import("@angular/core").WritableSignal<boolean>;
|
|
11
|
+
protected readonly openCloseButtonIcon: import("@angular/core").Signal<"cuiIconLock2" | "cuiIconClipboardListBold" | "cuiIconClipboardCompletedBold" | "cuiIconStarOutlined" | "cuiIconSlashSm" | "cuiIconTextSm" | "cuiIconSlash" | "cuiIconLoading" | "cuiIconCheck" | "cuiIconCheckSm" | "cuiIconCheckCircle" | "cuiIconCheckCircleSm" | "cuiIconCheckCircleV2" | "cuiIconMoreVertical" | "cuiIconMoreVerticalSm" | "cuiIconTrash" | "cuiIconTrashSm" | "cuiIconEdit" | "cuiIconEditSm" | "cuiIconArrowSortSm" | "cuiIconX" | "cuiIconXSm" | "cuiIconXCircle" | "cuiIconXCircleSm" | "cuiIconClear" | "cuiIconClearSm" | "cuiIconEye" | "cuiIconEyeSm" | "cuiIconEyeOff" | "cuiIconEyeOffSm" | "cuiIconChevronUp" | "cuiIconChevronUpSm" | "cuiIconChevronRight" | "cuiIconChevronRightSm" | "cuiIconChevronDown" | "cuiIconChevronDownSm" | "cuiIconChevronLeft" | "cuiIconChevronLeftSm" | "cuiIconChevronsRight" | "cuiIconChevronsRightSm" | "cuiIconChevronsLeft" | "cuiIconChevronsLeftSm" | "cuiIconChevronsSwitch" | "cuiIconDatabase" | "cuiIconDatabaseSm" | "cuiIconHome" | "cuiIconHomeSm" | "cuiIconUser" | "cuiIconUserSm" | "cuiIconUsers" | "cuiIconUsersBg" | "cuiIconUsersSm" | "cuiIconUserPlus" | "cuiIconUserPlusSm" | "cuiIconFormula" | "cuiIconSettings" | "cuiIconSettingsSm" | "cuiIconSettingsBold" | "cuiIconCopy" | "cuiIconCopySm" | "cuiIconSidebar" | "cuiIconSidebarSm" | "cuiIconChart" | "cuiIconFolder" | "cuiIconFolderSm" | "cuiIconFolderOpen" | "cuiIconFolderOpenSm" | "cuiIconPlus" | "cuiIconPlusSm" | "cuiIconPlusCircle" | "cuiIconFiltersLines" | "cuiIconFiltersLinesSm" | "cuiIconSearch" | "cuiIconSearchSm" | "cuiIconGrid" | "cuiIconGridSm" | "cuiIconList" | "cuiIconListSm" | "cuiIconProgress" | "cuiIconSortAZSm" | "cuiIconFlagBold" | "cuiIconFileText" | "cuiIconFileTextSm" | "cuiIconLink" | "cuiIconExternalLinkSm" | "cuiIconLinkBroken" | "cuiIconLinkBrokenSm" | "cuiIconClock" | "cuiIconClockSm" | "cuiIconInfo" | "cuiIconInfoSm" | "cuiIconInfoCircle" | "cuiIconInfoCircleBg" | "cuiIconAlertTriangle" | "cuiIconAlertTriangleSm" | "cuiIconAlertCircle" | "cuiIcon2Layers" | "cuiIcon2LayersSm" | "cuiIcon3Layers" | "cuiIcon3LayersSm" | "cuiIconLearningSm" | "cuiIconBellSm" | "cuiIconMessageCircle" | "cuiIconMessageCircleSm" | "cuiIconSlashDivider" | "cuiIconCaretDownFillXxs" | "cuiIconCaretDownFill" | "cuiIconDragHandleDots" | "cuiIconPlayCircle" | "cuiIconPlayCircleSm" | "cuiIconClipBoardBold" | "cuiIconClipBoard" | "cuiIconClipBoardSm" | "cuiIconUpload" | "cuiIconUploadSm" | "cuiIconMaximize" | "cuiIconMaximizeSm" | "cuiIconArrowUpRight" | "cuiIconArrowUpRightSm" | "cuiIconAddBranchSm" | "cuiIconBranch" | "cuiIconBranchSm" | "cuiIconPaperclip" | "cuiIconPaperclipSm" | "cuiIconToolsSm" | "cuiIconPartsSm" | "cuiIconEquipmentSm" | "cuiIconPrimitive" | "cuiIconPrimitiveSm" | "cuiIconSpool" | "cuiIconSpoolSm" | "cuiIconTank" | "cuiIconTankSm" | "cuiIconAssembly" | "cuiIconAssemblySm" | "cuiIconVariant" | "cuiIconVariantSm" | "cuiIconRichText" | "cuiIconRichTextSm" | "cuiIconChecklist" | "cuiIconRefreshCcwSm" | "cuiIconRefreshCcw" | "cuiIconBarChartSm" | "cuiIconBarChart" | "cuiIconCurvedArrow" | "cuiIconBulletFillSm" | "cuiIconBulletSm" | "cuiIconArrowRight" | "cuiIconArrowRightSm" | "cuiIconImage" | "cuiIconCutLinearSm" | "cuiIconCutLinear" | "cuiIconForkLift" | "cuiIconForkLiftSm" | "cuiIconPartPrimitive" | "cuiIconPartPrimitiveSm" | "cuiIconChecklistsSm" | "cuiIconViewInAr" | "cuiIconViewInArSm" | "cuiIconFloorplanSolid" | "cuiIconFloorplanSolidSm" | "cuiIconMoon" | "cuiIconMoonSm" | "cuiIconSunSm" | "cuiIconTool" | "cuiIconToolSm" | "cuiIconCamera" | "cuiIconPanModeSm" | "cuiIconCrane" | "cuiIconCraneSm" | "cuiIconBin" | "cuiIconBinSm" | "cuiIconAuxSm" | "cuiIcon5sSm" | "cuiIconRackSm" | "cuiIconComputerChipSm" | "cuiIconRack" | "cuiIconAccessories" | "cuiIconAccessoriesSm" | "cuiIconLogisticVehicle" | "cuiIconLogisticVehicleSm" | "cuiIconCollapse" | "cuiIconCollapseSm" | "cuiIconBookOpenSm" | "cuiIconBriefcaseSm" | "cuiIconCreditCardSm" | "cuiIconTrelloSm" | "cuiIconBookOpen" | "cuiIconBriefcase" | "cuiIconCreditCard" | "cuiIconTrello" | "cuiIconLogOut" | "cuiIconOrderSm" | "cuiIconCalendarSm" | "cuiIconMapPin" | "cuiIconBuildingSm" | "cuiIconStopCircleSm" | "cuiIconPauseCircleSm" | "cuiIconPlayCircleFilledSm" | "cuiIconMenuSm" | "cuiIconTeaCupSm" | "cuiIconSubstageInstructionSm" | "cuiIconTaskInstructionSm" | "cuiIconToolsInstructionSm" | "cuiIconApprovalInstructionSm" | "cuiIconQuestionCircleBold" | "cuiIconClockBold" | "cuiIconHammerBold" | "cuiIconAlignLeftSm" | "cuiIconChecklistSm" | "cuiIconMessageSquare" | "cuiIconMessageSquareSm" | "cuiIconSurfaceArea" | "cuiIconMinimize2" | "cuiIconMinimize2Sm" | "cuiIconHistorySm" | "cuiIconSun" | "cuiIconGlobeSm" | "cuiIconPaletteSm" | "cuiIconLogOutSm" | "cuiIconLogo" | "cuiIconBoldFileDefaultSm" | "cuiIconEyeBold" | "cuiIconEyeBoldSm">;
|
|
12
|
+
protected readonly hasContent: import("@angular/core").Signal<number>;
|
|
13
|
+
readonly storage: import("@angular/core").InputSignal<CuiStorage<T>>;
|
|
14
|
+
readonly elementSlot: import("@angular/core").InputSignal<TemplateRef<unknown> | undefined>;
|
|
15
|
+
readonly itemSlot: import("@angular/core").InputSignal<TemplateRef<unknown> | undefined>;
|
|
16
|
+
constructor();
|
|
17
|
+
protected onToggleChildren(event: MouseEvent): void;
|
|
18
|
+
private initStorageChildrenEffect;
|
|
19
|
+
private initStorageElementsEffect;
|
|
20
|
+
private setChildren;
|
|
21
|
+
private setElements;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiStorageListItemComponent<any>, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiStorageListItemComponent<any>, "li[cuiStorageListItem]", never, { "storage": { "alias": "storage"; "required": true; "isSignal": true; }; "elementSlot": { "alias": "elementSlot"; "required": false; "isSignal": true; }; "itemSlot": { "alias": "itemSlot"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { TemplateRef } from '@angular/core';
|
|
2
|
+
import type { CuiStorage } from './storage-list.options';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CuiStorageListComponent<T> {
|
|
5
|
+
readonly storages: import("@angular/core").InputSignal<CuiStorage<T>[]>;
|
|
6
|
+
readonly elementSlot: import("@angular/core").InputSignal<TemplateRef<unknown> | undefined>;
|
|
7
|
+
readonly itemSlot: import("@angular/core").InputSignal<TemplateRef<unknown> | undefined>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiStorageListComponent<any>, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiStorageListComponent<any>, "cui-storage-list", never, { "storages": { "alias": "storages"; "required": true; "isSignal": true; }; "elementSlot": { "alias": "elementSlot"; "required": false; "isSignal": true; }; "itemSlot": { "alias": "itemSlot"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import type { Observable } from 'rxjs';
|
|
3
|
+
export declare const CUI_STORAGE_LIST_SERVICE_TOKEN: InjectionToken<CuiStorageListService<CuiStorageBase>>;
|
|
4
|
+
export interface CuiStorageListService<T = CuiStorageBase> {
|
|
5
|
+
getChildren?(children: CuiStorage<T>, prevChildrens: CuiStorage<T>[]): Observable<CuiStorage<T>[]>;
|
|
6
|
+
getElements?(element: CuiStorage<T>, prevElements: T[]): Observable<T[]>;
|
|
7
|
+
}
|
|
8
|
+
export interface CuiStorageBase {
|
|
9
|
+
readonly id: string;
|
|
10
|
+
readonly name?: string;
|
|
11
|
+
readonly title?: string;
|
|
12
|
+
}
|
|
13
|
+
export interface CuiStorage<T = CuiStorageBase> extends CuiStorageBase {
|
|
14
|
+
readonly elements?: T[];
|
|
15
|
+
readonly children: CuiStorage<T>[] | string[];
|
|
16
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ToolFormReadonlyComponent } from './tool-form-readonly';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ToolFormReadonlyComponent } from './tool-form-readonly.component';
|
package/widgets/ui/toolbox-form/components/tool-form-readonly/tool-form-readonly.component.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ResourceUtilityTool } from '../../../resources-block';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ToolFormReadonlyComponent {
|
|
4
|
+
readonly tool: import("@angular/core").InputSignal<ResourceUtilityTool>;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToolFormReadonlyComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToolFormReadonlyComponent, "cc-tool-form-readonly", never, { "tool": { "alias": "tool"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { FormGroup } from '@angular/forms';
|
|
2
|
+
import type { CuiNullable } from '@cuby-ui/cdk';
|
|
3
|
+
import type { ToolboxFormControls } from './tool-form.options';
|
|
4
|
+
import { ResourceContentType } from '@cuby-ui/api';
|
|
5
|
+
import { ResourceUtilityTool } from '../resources-block';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class ToolFormComponent {
|
|
8
|
+
private readonly destroyRef;
|
|
9
|
+
private readonly cuiAlertService;
|
|
10
|
+
private readonly translocoService;
|
|
11
|
+
private readonly quantumGroupResourcesStructureApiService;
|
|
12
|
+
private readonly formBuilder;
|
|
13
|
+
protected readonly TOOLBOX_WAS_DELETED = "TOOLBOX_WAS_SUCCESSFULLY_DELETED";
|
|
14
|
+
protected readonly PART_WAS_DELETED = "PART_WAS_SUCCESSFULLY_DELETED";
|
|
15
|
+
protected readonly isLoading: import("@angular/core").WritableSignal<boolean>;
|
|
16
|
+
protected readonly toolForm: import("@angular/core").WritableSignal<CuiNullable<FormGroup<ToolboxFormControls>>>;
|
|
17
|
+
protected readonly controls: import("@angular/core").Signal<ToolboxFormControls | undefined>;
|
|
18
|
+
protected readonly toolboxOptions: import("@angular/core").Signal<{
|
|
19
|
+
label: string;
|
|
20
|
+
value: string;
|
|
21
|
+
}[]>;
|
|
22
|
+
readonly utilityId: import("@angular/core").InputSignal<string>;
|
|
23
|
+
readonly tool: import("@angular/core").InputSignal<ResourceUtilityTool>;
|
|
24
|
+
readonly readonly: import("@angular/core").InputSignal<boolean>;
|
|
25
|
+
readonly resourceType: import("@angular/core").InputSignal<ResourceContentType>;
|
|
26
|
+
readonly toolChanged: import("@angular/core").OutputEmitterRef<ResourceUtilityTool>;
|
|
27
|
+
readonly toolDeleted: import("@angular/core").OutputEmitterRef<string>;
|
|
28
|
+
constructor();
|
|
29
|
+
protected onDeleteToolbox(): void;
|
|
30
|
+
private initFormEffect;
|
|
31
|
+
private createForm;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToolFormComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToolFormComponent, "cui-tool-form", never, { "utilityId": { "alias": "utilityId"; "required": true; "isSignal": true; }; "tool": { "alias": "tool"; "required": true; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "resourceType": { "alias": "resourceType"; "required": false; "isSignal": true; }; }, { "toolChanged": "toolChanged"; "toolDeleted": "toolDeleted"; }, never, never, true, never>;
|
|
34
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { CuiUserCompanyActivity } from '@cuby-ui/api';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CuiActivityItemComponent {
|
|
4
|
+
private readonly transloco;
|
|
5
|
+
private readonly router;
|
|
6
|
+
private readonly destroy;
|
|
7
|
+
private readonly cuiAuthService;
|
|
8
|
+
private readonly cuiActivityService;
|
|
9
|
+
protected readonly isSelected: import("@angular/core").Signal<boolean>;
|
|
10
|
+
protected readonly letterBackgroundColor: import("@angular/core").Signal<"var(--cui-light-blue-500)" | "var(--cui-orange-500)">;
|
|
11
|
+
readonly activity: import("@angular/core").InputSignal<CuiUserCompanyActivity>;
|
|
12
|
+
readonly companyId: import("@angular/core").InputSignal<string>;
|
|
13
|
+
protected readonly typeCompany: import("@angular/core").Signal<string>;
|
|
14
|
+
protected onGoToActivity(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiActivityItemComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiActivityItemComponent, "cui-activity-item", never, { "activity": { "alias": "activity"; "required": true; "isSignal": true; }; "companyId": { "alias": "companyId"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './activity-item.component';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { CuiUserCompany } from '@cuby-ui/api';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CompanyItemComponent {
|
|
4
|
+
private readonly router;
|
|
5
|
+
private readonly cuiAuthService;
|
|
6
|
+
private readonly cuiActivityCompanyService;
|
|
7
|
+
private readonly COMPANY;
|
|
8
|
+
private readonly destroy;
|
|
9
|
+
protected readonly isSelected: import("@angular/core").Signal<boolean>;
|
|
10
|
+
protected readonly urlCompanyTemplate: import("@angular/core").Signal<{
|
|
11
|
+
userLink: string;
|
|
12
|
+
adminLink: string;
|
|
13
|
+
}>;
|
|
14
|
+
readonly company: import("@angular/core").InputSignal<CuiUserCompany>;
|
|
15
|
+
readonly selected: import("@angular/core").InputSignal<boolean>;
|
|
16
|
+
getRoles(): string[];
|
|
17
|
+
checkIsAdmin(): boolean;
|
|
18
|
+
protected onGoToCompany(): void;
|
|
19
|
+
private wentWorkspace;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CompanyItemComponent, never>;
|
|
21
|
+
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
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './company-item.component';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Signal } from '@angular/core';
|
|
2
|
+
import type { CuiUserCompany } from '@cuby-ui/api';
|
|
3
|
+
import { CuiActivityService } from '../user-action-context.option';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CuiActivityBaseService implements CuiActivityService {
|
|
6
|
+
private readonly userCompanyApiService;
|
|
7
|
+
private readonly companiesSignal;
|
|
8
|
+
readonly companies: Signal<CuiUserCompany[]>;
|
|
9
|
+
initActivityData(): void;
|
|
10
|
+
checkIsCurrentActivity(activityId: string): boolean;
|
|
11
|
+
checkIsCurrentCompany(companyId: string): boolean;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiActivityBaseService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CuiActivityBaseService>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { CuiActivityService } from '../user-action-context.option';
|
|
2
|
+
import { CuiActivityBaseService } from './activity-base.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CuiActivityImplService extends CuiActivityBaseService implements CuiActivityService {
|
|
5
|
+
private readonly cuiAuthService;
|
|
6
|
+
private readonly authData;
|
|
7
|
+
private readonly currentActivityId;
|
|
8
|
+
private readonly currentCompanyId;
|
|
9
|
+
private isCheckActivity;
|
|
10
|
+
checkIsCurrentActivity(activityId: string): boolean;
|
|
11
|
+
checkIsCurrentCompany(companyId: string): boolean;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiActivityImplService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CuiActivityImplService>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { LangDefinition } from '@jsverse/transloco';
|
|
2
|
+
import type { CuiTheme } from '../../../services';
|
|
3
|
+
import { CuiUserCompanyActivity } from '@cuby-ui/api/platform/models/user-company-api.options';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CuiUserActionContextMenuComponent {
|
|
6
|
+
private readonly translocoService;
|
|
7
|
+
private readonly cuiWindow;
|
|
8
|
+
private readonly cuiThemeService;
|
|
9
|
+
private readonly cuiAuthService;
|
|
10
|
+
private readonly cuiActivityService;
|
|
11
|
+
private readonly authData;
|
|
12
|
+
protected readonly langs: import("@jsverse/transloco").AvailableLangs;
|
|
13
|
+
protected readonly email: string;
|
|
14
|
+
protected readonly fullName: string;
|
|
15
|
+
protected readonly theme$: import("rxjs").Observable<CuiTheme>;
|
|
16
|
+
protected readonly lang$: import("rxjs").Observable<string>;
|
|
17
|
+
protected readonly isOpen: import("@angular/core").WritableSignal<boolean>;
|
|
18
|
+
protected readonly companies: import("@angular/core").Signal<import("@cuby-ui/api").CuiUserCompany[]>;
|
|
19
|
+
readonly currentActivityChange: import("@angular/core").OutputEmitterRef<CuiUserCompanyActivity | null>;
|
|
20
|
+
constructor();
|
|
21
|
+
protected onLogout(): void;
|
|
22
|
+
protected onToggleOpenState(open: boolean): void;
|
|
23
|
+
protected onGoToPlatform(): void;
|
|
24
|
+
protected onChangeTheme(theme: CuiTheme): void;
|
|
25
|
+
protected onChangeLang(lang: string | LangDefinition): void;
|
|
26
|
+
protected findCurrentActivity(): void;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiUserActionContextMenuComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiUserActionContextMenuComponent, "cui-user-action-context-menu", never, {}, { "currentActivityChange": "currentActivityChange"; }, never, ["*"], true, never>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { InjectionToken, Signal } from '@angular/core';
|
|
2
|
+
import { CuiUserCompany } from '@cuby-ui/api';
|
|
3
|
+
export declare const CUI_ACTIVITY_SERVICE_TOKEN: InjectionToken<CuiActivityService>;
|
|
4
|
+
export interface CuiActivityData {
|
|
5
|
+
readonly companies: Signal<CuiUserCompany[]>;
|
|
6
|
+
}
|
|
7
|
+
export interface CuiActivityService extends CuiActivityData {
|
|
8
|
+
initActivityData(): void;
|
|
9
|
+
checkIsCurrentActivity(activityId: string): boolean;
|
|
10
|
+
checkIsCurrentCompany(companyId: string): boolean;
|
|
11
|
+
}
|
|
12
|
+
export interface LinkConfig {
|
|
13
|
+
userLink: string;
|
|
14
|
+
adminLink: string;
|
|
15
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { CuiEditorConfig } from '../../../editor';
|
|
2
|
+
import { CuiNullable } from '@cuby-ui/cdk';
|
|
3
|
+
import { CuiApiContext, JTextFragment } from '@cuby-ui/api';
|
|
4
|
+
import { ImgUrl } from './utility-info-readonly.options';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class UtilityInfoReadonlyComponent {
|
|
7
|
+
private readonly hostElement;
|
|
8
|
+
private readonly frameApiService;
|
|
9
|
+
private subscription;
|
|
10
|
+
protected readonly jText: import("@angular/core").WritableSignal<CuiNullable<JTextFragment>>;
|
|
11
|
+
protected readonly thumbnailUrl: import("@angular/core").WritableSignal<CuiNullable<ImgUrl>>;
|
|
12
|
+
protected readonly isDescriptionEmpty: import("@angular/core").Signal<boolean>;
|
|
13
|
+
readonly environmentUrlForResources: import("@angular/core").InputSignal<string | undefined>;
|
|
14
|
+
readonly environmentUrlForInstruction: import("@angular/core").InputSignal<string | undefined>;
|
|
15
|
+
readonly context: import("@angular/core").InputSignal<CuiApiContext | undefined>;
|
|
16
|
+
protected isVideo: boolean;
|
|
17
|
+
protected editorConfig: CuiEditorConfig;
|
|
18
|
+
readonly framerId: import("@angular/core").InputSignal<string>;
|
|
19
|
+
readonly element: import("@angular/core").InputSignal<HTMLElement>;
|
|
20
|
+
constructor();
|
|
21
|
+
private initConfigEffect;
|
|
22
|
+
private checkCurrentTypeUtility;
|
|
23
|
+
private initFramerIdEffect;
|
|
24
|
+
private initFrameFragments;
|
|
25
|
+
private setResourceFile;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UtilityInfoReadonlyComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UtilityInfoReadonlyComponent, "cui-utility-info-readonly", never, { "environmentUrlForResources": { "alias": "environmentUrlForResources"; "required": false; "isSignal": true; }; "environmentUrlForInstruction": { "alias": "environmentUrlForInstruction"; "required": false; "isSignal": true; }; "context": { "alias": "context"; "required": false; "isSignal": true; }; "framerId": { "alias": "framerId"; "required": true; "isSignal": true; }; "element": { "alias": "element"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Criterion, StorageObject } from '@cuby-ui/api';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CuiCriterionModalCreateComponent {
|
|
4
|
+
private readonly destroyRef;
|
|
5
|
+
private readonly cuiDialogContext;
|
|
6
|
+
private readonly criterionApiService;
|
|
7
|
+
private isCreated;
|
|
8
|
+
protected readonly editorResourceUrl: any;
|
|
9
|
+
protected readonly tools: any;
|
|
10
|
+
protected readonly header: any;
|
|
11
|
+
private readonly _criterion;
|
|
12
|
+
protected readonly isFormValid: import("@angular/core").WritableSignal<boolean>;
|
|
13
|
+
protected readonly criterion: import("@angular/core").Signal<StorageObject<Criterion>>;
|
|
14
|
+
readonly initialUtility: import("@angular/core").InputSignal<StorageObject<Criterion>>;
|
|
15
|
+
protected onCriterionCreated(storageNodeId: string): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiCriterionModalCreateComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiCriterionModalCreateComponent, "ng-component", never, { "initialUtility": { "alias": "initialUtility"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CuiCriterionModalCreateComponent } from './criterion-modal-create.component';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { CuiCriterionModalCreateComponent } from './criterion-modal-create';
|
|
2
|
+
export { CuiInstructionModalCreateComponent } from './instruction-modal-create';
|
|
3
|
+
export { CuiReadonlyCriterionModalComponent } from './readonly-criterion-modal';
|
|
4
|
+
export { CuiReadonlyInstructionModalComponent } from './readonly-instruction-modal';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CuiInstructionModalCreateComponent } from './instruction-modal-create.component';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { Instruction, StorageObject } from '@cuby-ui/api';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CuiInstructionModalCreateComponent {
|
|
4
|
+
private readonly destroyRef;
|
|
5
|
+
private readonly cuiDialogContext;
|
|
6
|
+
private readonly instructionApiService;
|
|
7
|
+
private isCreated;
|
|
8
|
+
protected readonly editorResourceUrl: any;
|
|
9
|
+
protected readonly tools: any;
|
|
10
|
+
protected readonly header: any;
|
|
11
|
+
private readonly _instruction;
|
|
12
|
+
protected readonly isFormValid: import("@angular/core").WritableSignal<boolean>;
|
|
13
|
+
protected readonly instruction: import("@angular/core").Signal<StorageObject<Instruction>>;
|
|
14
|
+
readonly initialUtility: import("@angular/core").InputSignal<StorageObject<Instruction>>;
|
|
15
|
+
protected onInstructionCreated(storageNodeId: string): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiInstructionModalCreateComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiInstructionModalCreateComponent, "ng-component", never, { "initialUtility": { "alias": "initialUtility"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CuiReadonlyCriterionModalComponent } from './readonly-criterion-modal.component';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { Criterion, StorageObject } from '@cuby-ui/api';
|
|
2
|
+
import { UtilityElement } from '../../utility-modal.options';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CuiReadonlyCriterionModalComponent {
|
|
5
|
+
private readonly cuiDialogContext;
|
|
6
|
+
private readonly cuiRenderDynamicComponentsService;
|
|
7
|
+
protected readonly editorResourceUrl: any;
|
|
8
|
+
protected readonly tools: any;
|
|
9
|
+
protected readonly header: any;
|
|
10
|
+
protected readonly isLoading: import("@angular/core").WritableSignal<boolean>;
|
|
11
|
+
protected readonly framerId: import("@angular/core").Signal<string>;
|
|
12
|
+
readonly criterion: import("@angular/core").InputSignal<StorageObject<Criterion>>;
|
|
13
|
+
protected onUnbind(criterion: StorageObject<UtilityElement>): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiReadonlyCriterionModalComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiReadonlyCriterionModalComponent, "cui-readonly-criterion-modal", never, { "criterion": { "alias": "criterion"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CuiReadonlyInstructionModalComponent } from './readonly-instruction-modal.component';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { Instruction, StorageObject } from '@cuby-ui/api';
|
|
2
|
+
import { UtilityElement } from '../../utility-modal.options';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CuiReadonlyInstructionModalComponent {
|
|
5
|
+
private readonly cuiDialogContext;
|
|
6
|
+
private readonly cuiRenderDynamicComponentsService;
|
|
7
|
+
protected readonly editorResourceUrl: any;
|
|
8
|
+
protected readonly tools: any;
|
|
9
|
+
protected readonly header: any;
|
|
10
|
+
protected readonly isLoading: import("@angular/core").WritableSignal<boolean>;
|
|
11
|
+
protected readonly framerId: import("@angular/core").Signal<string>;
|
|
12
|
+
readonly instruction: import("@angular/core").InputSignal<StorageObject<Instruction>>;
|
|
13
|
+
protected onUnbind(instruction: StorageObject<UtilityElement>): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiReadonlyInstructionModalComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiReadonlyInstructionModalComponent, "cui-readonly-instruction-modal", never, { "instruction": { "alias": "instruction"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CuiReadonlyUtilityModalComponent } from './readonly-utility-modal.component';
|