@webitel/ui-sdk 25.6.10 → 25.6.11

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/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## [v25.6.10] - 2025-05-12
2
+ ### :bug: Bug Fixes
3
+ - [`a5c4a57`](https://github.com/webitel/webitel-ui-sdk/commit/a5c4a575f54a78a3807c53669dba492889fe7933) - audit form answer comment [WTEL-6876](https://webitel.atlassian.net/browse/WTEL-6876) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
4
+
5
+
1
6
  ## [v25.6.9] - 2025-05-12
2
7
  ### :bug: Bug Fixes
3
8
  - [`1504d46`](https://github.com/webitel/webitel-ui-sdk/commit/1504d466a1aba4f4e4848e6e43a6800277a8893a) - answers edit fixes [WTEL-6876](https://webitel.atlassian.net/browse/WTEL-6876) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
@@ -2118,3 +2123,4 @@
2118
2123
  [v25.6.7]: https://github.com/webitel/webitel-ui-sdk/compare/v25.6.6...v25.6.7
2119
2124
  [v25.6.8]: https://github.com/webitel/webitel-ui-sdk/compare/v25.6.7...v25.6.8
2120
2125
  [v25.6.9]: https://github.com/webitel/webitel-ui-sdk/compare/v25.6.8...v25.6.9
2126
+ [v25.6.10]: https://github.com/webitel/webitel-ui-sdk/compare/v25.6.9...v25.6.10
@@ -2,8 +2,10 @@ import { EngineQuestionAnswer } from "webitel-sdk";
2
2
  type __VLS_Props = {
3
3
  answer: EngineQuestionAnswer;
4
4
  collapsible?: boolean;
5
+ hideComment?: boolean;
5
6
  };
6
7
  declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
8
  collapsible: boolean;
9
+ hideComment: boolean;
8
10
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
11
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "25.6.10",
3
+ "version": "25.6.11",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "npm run docs:dev",
@@ -49,6 +49,7 @@
49
49
  <wt-divider />
50
50
  <audit-form-answer-editing-info
51
51
  :answer="answerModel"
52
+ hide-comment
52
53
  />
53
54
  </template>
54
55
  </article>
@@ -6,7 +6,7 @@
6
6
  <span>{{ updateTime }}</span>
7
7
  </header>
8
8
  <p
9
- v-if="initialComment"
9
+ v-if="!hideComment && initialComment"
10
10
  ref="answer-editing-comment"
11
11
  class="audit-form-answer-editing-info-comment"
12
12
  :class="{
@@ -38,8 +38,10 @@ import {EngineQuestionAnswer} from "webitel-sdk";
38
38
  const props = withDefaults(defineProps<{
39
39
  answer: EngineQuestionAnswer;
40
40
  collapsible?: boolean;
41
+ hideComment?: boolean;
41
42
  }>(), {
42
43
  collapsible: false,
44
+ hideComment: false,
43
45
  });
44
46
 
45
47
  const commentElRef = useTemplateRef('answer-editing-comment');