@cuby-ui/core 0.0.448 → 0.0.451
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 +10 -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 +9 -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,45 @@
|
|
|
1
|
+
import type { ElementRef, OnInit } from '@angular/core';
|
|
2
|
+
import type { Instruction, StorageObject, TreeStruct } from '@cuby-ui/api';
|
|
3
|
+
import { TreeStructType } from '@cuby-ui/api';
|
|
4
|
+
import type { CuiNullable } from '@cuby-ui/cdk';
|
|
5
|
+
import { CuiEditorConfig } from '../../../editor';
|
|
6
|
+
import type { CuiTools } from '../../../editor';
|
|
7
|
+
import type { CuiInstructionFormValues } from '../instruction-info-form';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class CuiInstructionInfoComponent implements OnInit {
|
|
10
|
+
private readonly destroyRef;
|
|
11
|
+
private readonly translocoService;
|
|
12
|
+
private readonly cuiIdService;
|
|
13
|
+
private readonly cuiCategoriesModalService;
|
|
14
|
+
private readonly treeStructNavigatorApiService;
|
|
15
|
+
private readonly instructionApiService;
|
|
16
|
+
protected readonly TYPE = TreeStructType.Instruction;
|
|
17
|
+
private subscription;
|
|
18
|
+
private skipCategoryChange;
|
|
19
|
+
protected readonly categoryId: string;
|
|
20
|
+
protected readonly category: import("@angular/core").Signal<CuiNullable<TreeStruct<import("@cuby-ui/api").Job<import("@cuby-ui/api").JobContentStructureType>>>>;
|
|
21
|
+
protected readonly isFormValid: import("@angular/core").WritableSignal<boolean>;
|
|
22
|
+
protected readonly prevCategoryId: import("@angular/core").WritableSignal<CuiNullable<string>>;
|
|
23
|
+
protected readonly editorConfig: import("@angular/core").WritableSignal<CuiNullable<CuiEditorConfig>>;
|
|
24
|
+
protected readonly labelColor: import("@angular/core").Signal<"var(--cui-base-900)" | "var(--cui-base-400)">;
|
|
25
|
+
protected readonly selectTitle: import("@angular/core").Signal<string>;
|
|
26
|
+
protected readonly element: import("@angular/core").Signal<ElementRef<HTMLElement> | undefined>;
|
|
27
|
+
readonly instruction: import("@angular/core").ModelSignal<StorageObject<Instruction> | undefined>;
|
|
28
|
+
readonly tools: import("@angular/core").InputSignal<CuiTools>;
|
|
29
|
+
readonly editorResourceUrl: import("@angular/core").InputSignal<string>;
|
|
30
|
+
readonly validationChanged: import("@angular/core").OutputEmitterRef<boolean>;
|
|
31
|
+
readonly instructionCreated: import("@angular/core").OutputEmitterRef<string>;
|
|
32
|
+
constructor();
|
|
33
|
+
ngOnInit(): void;
|
|
34
|
+
protected onFormChanged(values: Partial<CuiInstructionFormValues>, instructionId: string): void;
|
|
35
|
+
protected onFormValidationChanged(isValid: boolean): void;
|
|
36
|
+
private initCategoryEffect;
|
|
37
|
+
private initConfigEffect;
|
|
38
|
+
private initCategory;
|
|
39
|
+
private changeCategory;
|
|
40
|
+
private createInstruction;
|
|
41
|
+
private changeTitle;
|
|
42
|
+
private changeDescription;
|
|
43
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiInstructionInfoComponent, never>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiInstructionInfoComponent, "cui-instruction-info", never, { "instruction": { "alias": "instruction"; "required": false; "isSignal": true; }; "tools": { "alias": "tools"; "required": true; "isSignal": true; }; "editorResourceUrl": { "alias": "editorResourceUrl"; "required": true; "isSignal": true; }; }, { "instruction": "instructionChange"; "validationChanged": "validationChanged"; "instructionCreated": "instructionCreated"; }, never, never, true, never>;
|
|
45
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import type { ResourceFragment } from '@cuby-ui/api';
|
|
2
|
+
import type { CuiNullable } from '@cuby-ui/cdk';
|
|
3
|
+
import type { CuiEditorConfig } from '../../../editor';
|
|
4
|
+
import type { CuiInstructionFormGroup, CuiInstructionFormValues } from './instruction-info-form.options';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CuiInstructionInfoFormComponent {
|
|
7
|
+
private readonly destroy;
|
|
8
|
+
private readonly formBuilder;
|
|
9
|
+
private readonly frameApiService;
|
|
10
|
+
private readonly cuiIdService;
|
|
11
|
+
protected readonly CONTROL_DELAY = 500;
|
|
12
|
+
protected readonly titleId: string;
|
|
13
|
+
protected readonly descriptionId: string;
|
|
14
|
+
protected readonly form: import("@angular/forms").FormGroup<{
|
|
15
|
+
readonly title: import("@angular/forms").FormControl<string>;
|
|
16
|
+
readonly description: import("@angular/forms").FormControl<string>;
|
|
17
|
+
}>;
|
|
18
|
+
protected heading: CuiNullable<string>;
|
|
19
|
+
protected readonly isDescriptionEmpty: import("@angular/core").WritableSignal<boolean>;
|
|
20
|
+
protected readonly editorId: import("@angular/core").WritableSignal<CuiNullable<string>>;
|
|
21
|
+
protected readonly thumbnail: import("@angular/core").WritableSignal<CuiNullable<ResourceFragment>>;
|
|
22
|
+
readonly title: import("@angular/core").InputSignal<string>;
|
|
23
|
+
readonly description: import("@angular/core").InputSignal<string>;
|
|
24
|
+
readonly framerId: import("@angular/core").InputSignal<string>;
|
|
25
|
+
readonly baseResourceUrl: import("@angular/core").InputSignal<string>;
|
|
26
|
+
readonly config: import("@angular/core").InputSignal<CuiEditorConfig>;
|
|
27
|
+
readonly formChanged: import("@angular/core").OutputEmitterRef<Partial<CuiInstructionFormValues>>;
|
|
28
|
+
readonly isFormValidChanged: import("@angular/core").OutputEmitterRef<boolean>;
|
|
29
|
+
protected get controls(): CuiInstructionFormGroup;
|
|
30
|
+
protected get isTitleError(): boolean;
|
|
31
|
+
protected get isDescriptionError(): boolean;
|
|
32
|
+
constructor();
|
|
33
|
+
protected onEditorEmpty(isEmpty: boolean): void;
|
|
34
|
+
private initUtilityEffect;
|
|
35
|
+
private initFormSubscriptions;
|
|
36
|
+
private initFrameFragments;
|
|
37
|
+
private compareFormValues;
|
|
38
|
+
private setResourceFile;
|
|
39
|
+
private getCaptureFromVideo;
|
|
40
|
+
private checkFormValidation;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiInstructionInfoFormComponent, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiInstructionInfoFormComponent, "cui-instruction-info-form", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; "description": { "alias": "description"; "required": true; "isSignal": true; }; "framerId": { "alias": "framerId"; "required": true; "isSignal": true; }; "baseResourceUrl": { "alias": "baseResourceUrl"; "required": true; "isSignal": true; }; "config": { "alias": "config"; "required": true; "isSignal": true; }; }, { "formChanged": "formChanged"; "isFormValidChanged": "isFormValidChanged"; }, never, never, true, never>;
|
|
43
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { FormControl } from '@angular/forms';
|
|
2
|
+
export interface CuiInstructionFormGroup {
|
|
3
|
+
readonly title: FormControl<string>;
|
|
4
|
+
readonly description: FormControl<string>;
|
|
5
|
+
}
|
|
6
|
+
export interface CuiInstructionFormValues {
|
|
7
|
+
readonly title: string;
|
|
8
|
+
readonly description: string;
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CuiInstructionReadonlyInfoComponent } from './instruction-readonly-info.component';
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { JTextFragment } from '@cuby-ui/api';
|
|
2
|
+
import type { CuiNullable } from '@cuby-ui/cdk';
|
|
3
|
+
import type { CuiImgUrl } from '../../../interfaces';
|
|
4
|
+
import type { CuiTools, CuiEditorConfig } from '../../../editor';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CuiInstructionReadonlyInfoComponent {
|
|
7
|
+
private readonly hostElement;
|
|
8
|
+
private readonly frameApiService;
|
|
9
|
+
private subscription;
|
|
10
|
+
protected isVideo: boolean;
|
|
11
|
+
protected editorConfig: CuiEditorConfig;
|
|
12
|
+
protected readonly jText: import("@angular/core").WritableSignal<CuiNullable<JTextFragment>>;
|
|
13
|
+
protected readonly thumbnailUrl: import("@angular/core").WritableSignal<CuiNullable<CuiImgUrl>>;
|
|
14
|
+
protected readonly isDescriptionEmpty: import("@angular/core").Signal<boolean>;
|
|
15
|
+
readonly framerId: import("@angular/core").InputSignal<string>;
|
|
16
|
+
readonly element: import("@angular/core").InputSignal<HTMLElement>;
|
|
17
|
+
readonly tools: import("@angular/core").InputSignal<CuiTools>;
|
|
18
|
+
readonly editorResourceUrl: import("@angular/core").InputSignal<string>;
|
|
19
|
+
constructor();
|
|
20
|
+
private initConfigEffect;
|
|
21
|
+
private initFramerIdEffect;
|
|
22
|
+
private initFrameFragments;
|
|
23
|
+
private setResourceFile;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiInstructionReadonlyInfoComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiInstructionReadonlyInfoComponent, "cui-instruction-readonly-info", never, { "framerId": { "alias": "framerId"; "required": true; "isSignal": true; }; "element": { "alias": "element"; "required": false; "isSignal": true; }; "tools": { "alias": "tools"; "required": true; "isSignal": true; }; "editorResourceUrl": { "alias": "editorResourceUrl"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
26
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CuiLoaderComponent } from './loader.component';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { OnDestroy } from '@angular/core';
|
|
2
|
+
import { CuiLoadingState } from '../../../services';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CuiLoaderComponent implements OnDestroy {
|
|
5
|
+
private readonly loaderService;
|
|
6
|
+
private readonly translocoService;
|
|
7
|
+
protected readonly state: {
|
|
8
|
+
readonly LOADING: "loading";
|
|
9
|
+
readonly COMPLETED: "completed";
|
|
10
|
+
readonly INITIAL: "initial";
|
|
11
|
+
};
|
|
12
|
+
protected readonly LoaderString: Record<CuiLoadingState, string>;
|
|
13
|
+
protected readonly LoaderIcon: Record<CuiLoadingState, string>;
|
|
14
|
+
protected readonly loaderState: import("@angular/core").Signal<CuiLoadingState>;
|
|
15
|
+
protected readonly loaderString: import("@angular/core").Signal<string>;
|
|
16
|
+
protected readonly loaderIcon: import("@angular/core").Signal<string>;
|
|
17
|
+
ngOnDestroy(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CuiLoaderComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiLoaderComponent, "cui-loader", never, {}, {}, never, never, true, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ModalCriteriaTabComponent } from './modal-criteria-tab.component';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { AfterViewInit } from '@angular/core';
|
|
2
|
+
import type { CuiNullable } from '@cuby-ui/cdk';
|
|
3
|
+
import { StorageObjectCriterion } from '@cuby-ui/api';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ModalCriteriaTabComponent implements AfterViewInit {
|
|
6
|
+
private readonly criterionApiService;
|
|
7
|
+
protected readonly storageObjectCriteria: import("@angular/core").WritableSignal<CuiNullable<StorageObjectCriterion[]>>;
|
|
8
|
+
readonly acceptanceCriteriaContainerId: import("@angular/core").InputSignal<string | undefined>;
|
|
9
|
+
readonly acceptanceCriteriaIds: import("@angular/core").InputSignal<string[] | undefined>;
|
|
10
|
+
readonly environmentUrlForResources: import("@angular/core").InputSignal<string>;
|
|
11
|
+
ngAfterViewInit(): void;
|
|
12
|
+
private initCriteriaSubscription;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalCriteriaTabComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalCriteriaTabComponent, "ng-component", never, { "acceptanceCriteriaContainerId": { "alias": "acceptanceCriteriaContainerId"; "required": false; "isSignal": true; }; "acceptanceCriteriaIds": { "alias": "acceptanceCriteriaIds"; "required": false; "isSignal": true; }; "environmentUrlForResources": { "alias": "environmentUrlForResources"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { CuiApiContext } from '@cuby-ui/api';
|
|
3
|
+
import { CuiNullable } from '@cuby-ui/cdk';
|
|
4
|
+
import { EmptyStateTitle, GetFramerId, SectionStorageElementTypeName, SectionStorageObject } from './modal-divided-section.interfaces';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ModalDividedSectionComponent implements OnInit {
|
|
7
|
+
protected readonly EMPTY_STATE_TITLE: EmptyStateTitle;
|
|
8
|
+
protected readonly GET_FRAMER_ID: GetFramerId;
|
|
9
|
+
protected readonly selectedStorageObject: import("@angular/core").WritableSignal<CuiNullable<SectionStorageObject>>;
|
|
10
|
+
protected readonly selectedFramerId: import("@angular/core").Signal<string | undefined>;
|
|
11
|
+
protected readonly emptyStateSubtitle: import("@angular/core").Signal<string>;
|
|
12
|
+
readonly storageElementTypeName: import("@angular/core").InputSignal<SectionStorageElementTypeName>;
|
|
13
|
+
readonly storageObjects: import("@angular/core").InputSignal<SectionStorageObject[]>;
|
|
14
|
+
readonly environmentUrlForResources: import("@angular/core").InputSignal<string | undefined>;
|
|
15
|
+
readonly environmentUrlForInstruction: import("@angular/core").InputSignal<string | undefined>;
|
|
16
|
+
readonly context: import("@angular/core").InputSignal<CuiApiContext | undefined>;
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
protected onSelect(sectionStorageObject: SectionStorageObject): void;
|
|
19
|
+
private initSelectedStorageObject;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalDividedSectionComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalDividedSectionComponent, "cui-modal-divided-section", never, { "storageElementTypeName": { "alias": "storageElementTypeName"; "required": true; "isSignal": true; }; "storageObjects": { "alias": "storageObjects"; "required": true; "isSignal": true; }; "environmentUrlForResources": { "alias": "environmentUrlForResources"; "required": false; "isSignal": true; }; "environmentUrlForInstruction": { "alias": "environmentUrlForInstruction"; "required": false; "isSignal": true; }; "context": { "alias": "context"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { Criterion, Instruction, StorageObject } from '@cuby-ui/api';
|
|
2
|
+
export type SectionStorageElementType = Criterion | Instruction;
|
|
3
|
+
export type SectionStorageElementTypeName = 'CRITERIA' | 'INSTRUCTION';
|
|
4
|
+
export type SectionStorageObject = StorageObject<SectionStorageElementType>;
|
|
5
|
+
export type EmptyStateTitle = Record<SectionStorageElementTypeName, string>;
|
|
6
|
+
export type GetFramerId = Record<SectionStorageElementTypeName, (value: SectionStorageElementType) => string>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ModalHeaderInsertedButtonsComponent } from './modal-header-inserted-buttons.component';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ModalHeaderInsertedButtonsComponent {
|
|
3
|
+
readonly unbindClicked: import("@angular/core").OutputEmitterRef<void>;
|
|
4
|
+
protected onUnbind(): void;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalHeaderInsertedButtonsComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalHeaderInsertedButtonsComponent, "cui-modal-header-inserted-buttons", never, {}, { "unbindClicked": "unbindClicked"; }, never, never, true, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ModalHeaderTabsComponent } from './modal-header-tabs.component';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ModalHeaderTab } from '@cuby-ui/api';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ModalHeaderTabsComponent {
|
|
4
|
+
readonly tabs: import("@angular/core").InputSignal<ModalHeaderTab[]>;
|
|
5
|
+
readonly selectedIndex: import("@angular/core").InputSignal<number>;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalHeaderTabsComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalHeaderTabsComponent, "cui-modal-header-tabs", never, { "tabs": { "alias": "tabs"; "required": true; "isSignal": true; }; "selectedIndex": { "alias": "selectedIndex"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Content } from './modal-info-tab.options';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ModalInfoTabComponent {
|
|
4
|
+
readonly content: import("@angular/core").InputSignal<Content>;
|
|
5
|
+
protected compareFn(): number;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalInfoTabComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalInfoTabComponent, "cui-modal-info-tab", never, { "content": { "alias": "content"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ModalInstructionsTabComponent } from './modal-instructions-tab.component';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { OnInit } from '@angular/core';
|
|
2
|
+
import { CuiApiContext, StorageObjectInstruction } from '@cuby-ui/api';
|
|
3
|
+
import type { CuiNullable } from '@cuby-ui/cdk';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ModalInstructionsTabComponent implements OnInit {
|
|
6
|
+
private readonly utilityApiService;
|
|
7
|
+
readonly utilityId: import("@angular/core").InputSignal<string>;
|
|
8
|
+
readonly environmentUrlForInstruction: import("@angular/core").InputSignal<string>;
|
|
9
|
+
readonly context: import("@angular/core").InputSignal<CuiApiContext>;
|
|
10
|
+
protected readonly storageObjectInstructions: import("@angular/core").WritableSignal<CuiNullable<StorageObjectInstruction[]>>;
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
private initInstructions;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalInstructionsTabComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalInstructionsTabComponent, "ng-component", never, { "utilityId": { "alias": "utilityId"; "required": true; "isSignal": true; }; "environmentUrlForInstruction": { "alias": "environmentUrlForInstruction"; "required": true; "isSignal": true; }; "context": { "alias": "context"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ModalOperationPartComponent } from './modal-operation-part.component';
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { AfterViewInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import { CuiNullable } from '@cuby-ui/cdk';
|
|
3
|
+
import { ModalHeaderTab, Operation, StorageObject } from '@cuby-ui/api';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ModalOperationPartComponent implements AfterViewInit {
|
|
6
|
+
private readonly context;
|
|
7
|
+
private readonly jobApiService;
|
|
8
|
+
protected readonly tabs: import("@angular/core").WritableSignal<ModalHeaderTab[]>;
|
|
9
|
+
protected readonly ptFormat: import("@angular/core").Signal<string>;
|
|
10
|
+
readonly storageObjectOperation: import("@angular/core").InputSignal<StorageObject<Operation>>;
|
|
11
|
+
readonly isInserted: import("@angular/core").InputSignal<boolean>;
|
|
12
|
+
readonly containerId: import("@angular/core").InputSignal<CuiNullable<string>>;
|
|
13
|
+
readonly quantumId: import("@angular/core").InputSignal<CuiNullable<string>>;
|
|
14
|
+
readonly jobId: import("@angular/core").InputSignal<CuiNullable<string>>;
|
|
15
|
+
readonly environmentUrlForResources: import("@angular/core").InputSignal<string>;
|
|
16
|
+
readonly environmentUrlForInstruction: import("@angular/core").InputSignal<string>;
|
|
17
|
+
protected readonly estimatedTime: import("@angular/core").Signal<unknown>;
|
|
18
|
+
readonly editor: import("@angular/core").Signal<TemplateRef<unknown>>;
|
|
19
|
+
ngAfterViewInit(): void;
|
|
20
|
+
protected onUnbindOperation(): void;
|
|
21
|
+
private initSectionComponent;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalOperationPartComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalOperationPartComponent, "cui-modal-operation-part", never, { "storageObjectOperation": { "alias": "storageObjectOperation"; "required": true; "isSignal": true; }; "isInserted": { "alias": "isInserted"; "required": false; "isSignal": true; }; "containerId": { "alias": "containerId"; "required": false; "isSignal": true; }; "quantumId": { "alias": "quantumId"; "required": false; "isSignal": true; }; "jobId": { "alias": "jobId"; "required": false; "isSignal": true; }; "environmentUrlForResources": { "alias": "environmentUrlForResources"; "required": true; "isSignal": true; }; "environmentUrlForInstruction": { "alias": "environmentUrlForInstruction"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
24
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ModalResourcesTabComponent } from './modal-resources-tab.component';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { UtilityComponentWithResources } from '@cuby-ui/api';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ModalResourcesTabComponent implements OnInit {
|
|
5
|
+
private readonly utilityApiService;
|
|
6
|
+
private readonly utilityService;
|
|
7
|
+
protected readonly isLoaded: import("@angular/core").WritableSignal<boolean>;
|
|
8
|
+
protected readonly utilityComponentWithResources: import("@angular/core").Signal<import("@cuby-ui/cdk").CuiNullable<UtilityComponentWithResources>>;
|
|
9
|
+
readonly utilityId: import("@angular/core").InputSignal<string>;
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
private initResources;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalResourcesTabComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalResourcesTabComponent, "cui-modal-resources-tab", never, { "utilityId": { "alias": "utilityId"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { CuiDialogSize } from '../../../components';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class RenderDynamicModalComponent {
|
|
4
|
+
private readonly cuiDialogContext;
|
|
5
|
+
private readonly renderDynamicComponentsService;
|
|
6
|
+
protected get size(): CuiDialogSize;
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
private initParentParentOfModal;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RenderDynamicModalComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RenderDynamicModalComponent, "cui-render-dynamic-modal", never, {}, {}, never, never, true, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export type { ResourceUtilityMaterial } from './resources-block-consumables';
|
|
2
|
+
export { ResourcesBlockPartComponent } from './resources-block-part';
|
|
3
|
+
export { ResourcesBlockTabsComponent } from './resources-block-tabs';
|
|
4
|
+
export type { ResourceUtilityTool } from './resources-block-toolbox';
|
|
5
|
+
export { ResourcesOptionsComponent } from './resources-options';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { ResourceUtilityMaterial } from './resources-block-consumables.options';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ResourcesBlockConsumablesComponent {
|
|
4
|
+
private readonly factoryApiService;
|
|
5
|
+
private readonly utilityService;
|
|
6
|
+
readonly utilityId: import("@angular/core").InputSignal<string>;
|
|
7
|
+
readonly containerId: import("@angular/core").InputSignal<string>;
|
|
8
|
+
readonly elements: import("@angular/core").InputSignal<ResourceUtilityMaterial[]>;
|
|
9
|
+
readonly readonly: import("@angular/core").InputSignal<boolean>;
|
|
10
|
+
constructor();
|
|
11
|
+
protected onConsumableChanged(consumable: ResourceUtilityMaterial): void;
|
|
12
|
+
protected onConsumableDeleted(consumableId: string): void;
|
|
13
|
+
private initConsumablesStructure;
|
|
14
|
+
private getAddintionalResourceInfo;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResourcesBlockConsumablesComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ResourcesBlockConsumablesComponent, "cui-resources-block-consumables", never, { "utilityId": { "alias": "utilityId"; "required": true; "isSignal": true; }; "containerId": { "alias": "containerId"; "required": true; "isSignal": true; }; "elements": { "alias": "elements"; "required": true; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Specifications, UtilityMaterialRequestBody } from '@cuby-ui/api';
|
|
2
|
+
export interface ResourceUtilityMaterial extends UtilityMaterialRequestBody {
|
|
3
|
+
readonly isDelete: boolean;
|
|
4
|
+
readonly name: string;
|
|
5
|
+
readonly specifications?: Specifications;
|
|
6
|
+
readonly parameters?: Specifications;
|
|
7
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ResourcesBlockContentComponent } from './resources-block-content.component';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ResourceContentType } from '@cuby-ui/api';
|
|
2
|
+
import { UtilitySubject } from '@cuby-ui/api';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ResourcesBlockContentComponent {
|
|
5
|
+
private subjectModalBase;
|
|
6
|
+
readonly config: {
|
|
7
|
+
readonly context: import("@angular/common/http").HttpContext;
|
|
8
|
+
};
|
|
9
|
+
readonly isLoading: import("@angular/core").WritableSignal<boolean>;
|
|
10
|
+
protected readonly emptyState: import("@angular/core").Signal<string>;
|
|
11
|
+
readonly resourcesAdded: import("@angular/core").OutputEmitterRef<UtilitySubject[]>;
|
|
12
|
+
readonly type: import("@angular/core").InputSignal<ResourceContentType>;
|
|
13
|
+
readonly utilityId: import("@angular/core").InputSignal<string>;
|
|
14
|
+
readonly empty: import("@angular/core").InputSignal<boolean>;
|
|
15
|
+
readonly readonly: import("@angular/core").InputSignal<boolean>;
|
|
16
|
+
protected onAddResource(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResourcesBlockContentComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ResourcesBlockContentComponent, "cui-resources-block-content", never, { "type": { "alias": "type"; "required": true; "isSignal": true; }; "utilityId": { "alias": "utilityId"; "required": true; "isSignal": true; }; "empty": { "alias": "empty"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; }, { "resourcesAdded": "resourcesAdded"; }, never, ["*"], true, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ResourcesBlockPartComponent } from './resources-block-part.component';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { ResourceUtilityPart } from './resources-block-part.options';
|
|
2
|
+
import { ResourceContentType } from '@cuby-ui/api';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ResourcesBlockPartComponent {
|
|
5
|
+
private readonly factoryApiService;
|
|
6
|
+
private readonly utilityService;
|
|
7
|
+
readonly utilityId: import("@angular/core").InputSignal<string>;
|
|
8
|
+
readonly containerId: import("@angular/core").InputSignal<string>;
|
|
9
|
+
readonly elements: import("@angular/core").InputSignal<ResourceUtilityPart[]>;
|
|
10
|
+
readonly readonly: import("@angular/core").InputSignal<boolean>;
|
|
11
|
+
constructor();
|
|
12
|
+
protected onPartChanged(part: ResourceUtilityPart): void;
|
|
13
|
+
protected onPartDeleted(partId: string): void;
|
|
14
|
+
private initPartsStructure;
|
|
15
|
+
private getAddintionalResourceInfo;
|
|
16
|
+
protected readonly ResourceContentType: typeof ResourceContentType;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResourcesBlockPartComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ResourcesBlockPartComponent, "cui-resources-block-part", never, { "utilityId": { "alias": "utilityId"; "required": true; "isSignal": true; }; "containerId": { "alias": "containerId"; "required": true; "isSignal": true; }; "elements": { "alias": "elements"; "required": true; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ResourcesBlockTabsComponent } from './resources-block-tabs.component';
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type { TemplateRef } from '@angular/core';
|
|
2
|
+
import { CuiTemplateContext } from '@cuby-ui/cdk';
|
|
3
|
+
import type { ResourceDeleteOutput } from './resources-block-tabs.options';
|
|
4
|
+
import { Resource, UtilityComponentWithResources } from '@cuby-ui/api';
|
|
5
|
+
import { UtilitySubject } from '@cuby-ui/api';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class ResourcesBlockTabsComponent {
|
|
8
|
+
private readonly utilityApiService;
|
|
9
|
+
private readonly cuiDialogService;
|
|
10
|
+
protected readonly UTILITY_TEMPLATE_CONTEXT: CuiTemplateContext<Resource>;
|
|
11
|
+
protected readonly COMPONENTS_CONTENT: {
|
|
12
|
+
CONSUMABLES: typeof import("../resources-block-consumables").ResourcesBlockConsumablesComponent;
|
|
13
|
+
TOOLBOX: typeof import("../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(resources: UtilitySubject[], container: Resource): 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
|
+
}
|
package/widgets/ui/resources-block/components/resources-block-tabs/resources-block-tabs.options.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ResourcesBlockConsumablesComponent } from '../resources-block-consumables';
|
|
2
|
+
import { ResourcesBlockPartComponent } from '../resources-block-part';
|
|
3
|
+
import { ResourcesBlockToolboxComponent } from '../resources-block-toolbox';
|
|
4
|
+
import { Resource, UtilitySubject } from '@cuby-ui/api';
|
|
5
|
+
export declare const COMPONENTS_CONTENT: {
|
|
6
|
+
CONSUMABLES: typeof ResourcesBlockConsumablesComponent;
|
|
7
|
+
TOOLBOX: typeof ResourcesBlockToolboxComponent;
|
|
8
|
+
PART: typeof ResourcesBlockPartComponent;
|
|
9
|
+
};
|
|
10
|
+
export interface ResourceDeleteOutput {
|
|
11
|
+
readonly resources: UtilitySubject[];
|
|
12
|
+
readonly container: Resource;
|
|
13
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ResourceUtilityTool } from './resources-block-toolbox.options';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ResourcesBlockToolboxComponent {
|
|
4
|
+
private readonly factoryApiService;
|
|
5
|
+
private readonly utilityService;
|
|
6
|
+
readonly utilityId: import("@angular/core").InputSignal<string>;
|
|
7
|
+
readonly containerId: import("@angular/core").InputSignal<string>;
|
|
8
|
+
readonly elements: import("@angular/core").InputSignal<ResourceUtilityTool[]>;
|
|
9
|
+
readonly readonly: import("@angular/core").InputSignal<boolean>;
|
|
10
|
+
constructor();
|
|
11
|
+
protected onToolChanged(tool: ResourceUtilityTool): void;
|
|
12
|
+
protected onToolDeleted(toolId: string): void;
|
|
13
|
+
private initToolsStructure;
|
|
14
|
+
private getAddintionalResourceInfo;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResourcesBlockToolboxComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ResourcesBlockToolboxComponent, "cui-resources-block-toolbox", never, { "utilityId": { "alias": "utilityId"; "required": true; "isSignal": true; }; "containerId": { "alias": "containerId"; "required": true; "isSignal": true; }; "elements": { "alias": "elements"; "required": true; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ResourcesOptionsComponent } from './resources-options.component';
|
package/widgets/ui/resources-block/components/resources-options/resources-options.component.d.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Resource, ResourceContentType } from '@cuby-ui/api';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@cuby-ui/cdk";
|
|
4
|
+
export declare class ResourcesOptionsComponent {
|
|
5
|
+
private readonly quantumGroupResourcesStructureApiService;
|
|
6
|
+
protected readonly options: import("@angular/core").Signal<{
|
|
7
|
+
label: ResourceContentType;
|
|
8
|
+
command: () => void;
|
|
9
|
+
}[]>;
|
|
10
|
+
protected readonly isWithTitle: import("@angular/core").Signal<boolean>;
|
|
11
|
+
readonly isLoading: import("@angular/core").WritableSignal<boolean>;
|
|
12
|
+
readonly types: import("@angular/core").InputSignal<ResourceContentType[]>;
|
|
13
|
+
readonly utilityId: import("@angular/core").InputSignal<string>;
|
|
14
|
+
readonly appearance: import("@angular/core").InputSignal<"flat" | "ghost">;
|
|
15
|
+
readonly disabled: import("@angular/core").InputSignal<boolean>;
|
|
16
|
+
readonly resourceAdded: import("@angular/core").OutputEmitterRef<Resource>;
|
|
17
|
+
protected addResource(type: ResourceContentType): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResourcesOptionsComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ResourcesOptionsComponent, "cui-resources-options", never, { "types": { "alias": "types"; "required": true; "isSignal": true; }; "utilityId": { "alias": "utilityId"; "required": true; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "resourceAdded": "resourceAdded"; }, never, never, true, [{ directive: typeof i1.CuiClickOutsideDirective; inputs: {}; outputs: {}; }]>;
|
|
20
|
+
}
|