@gitlab/ui 101.11.0 → 101.12.0

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,10 @@
1
+ # [101.12.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v101.11.0...v101.12.0) (2024-11-06)
2
+
3
+
4
+ ### Features
5
+
6
+ * **DuoChat:** Update input placeholder text ([657bde9](https://gitlab.com/gitlab-org/gitlab-ui/commit/657bde9c93a152a1296f7a2a1e71eb5d45583559))
7
+
1
8
  # [101.11.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v101.10.0...v101.11.0) (2024-11-06)
2
9
 
3
10
 
@@ -25,7 +25,7 @@ const i18n = {
25
25
  CHAT_EMPTY_STATE_DESC: translate('GlDuoChat.chatEmptyStateDesc', 'GitLab Duo Chat is your AI-powered assistant.'),
26
26
  CHAT_EMPTY_STATE_SECONDARY_DESC: translate('GlDuoChat.chatEmptyStateSecondaryDesc', 'Responses may be inaccurate. Verify before use.'),
27
27
  CHAT_PROMPT_PLACEHOLDER_DEFAULT: translate('GlDuoChat.chatPromptPlaceholderDefault', 'GitLab Duo Chat'),
28
- CHAT_PROMPT_PLACEHOLDER_WITH_COMMANDS: translate('GlDuoChat.chatPromptPlaceholderWithCommands', 'Type "/" for slash commands'),
28
+ CHAT_PROMPT_PLACEHOLDER_WITH_COMMANDS: translate('GlDuoChat.chatPromptPlaceholderWithCommands', 'Type /help to learn more'),
29
29
  CHAT_SUBMIT_LABEL: translate('GlDuoChat.chatSubmitLabel', 'Send chat message.'),
30
30
  CHAT_CANCEL_LABEL: translate('GlDuoChat.chatCancelLabel', 'Cancel'),
31
31
  CHAT_DEFAULT_PREDEFINED_PROMPTS: [translate('GlDuoChat.chatDefaultPredefinedPromptsChangePassword', 'How do I change my password in GitLab?'), translate('GlDuoChat.chatDefaultPredefinedPromptsForkProject', 'How do I fork a project?'), translate('GlDuoChat.chatDefaultPredefinedPromptsCloneRepository', 'How do I clone a repository?'), translate('GlDuoChat.chatDefaultPredefinedPromptsCreateTemplate', 'How do I create a template?')]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "101.11.0",
3
+ "version": "101.12.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -41,7 +41,7 @@ export const i18n = {
41
41
  ),
42
42
  CHAT_PROMPT_PLACEHOLDER_WITH_COMMANDS: translate(
43
43
  'GlDuoChat.chatPromptPlaceholderWithCommands',
44
- 'Type "/" for slash commands'
44
+ 'Type /help to learn more'
45
45
  ),
46
46
  CHAT_SUBMIT_LABEL: translate('GlDuoChat.chatSubmitLabel', 'Send chat message.'),
47
47
  CHAT_CANCEL_LABEL: translate('GlDuoChat.chatCancelLabel', 'Cancel'),
package/translations.js CHANGED
@@ -27,7 +27,7 @@ export default {
27
27
  'GlDuoChat.chatEmptyStateSecondaryDesc': 'Responses may be inaccurate. Verify before use.',
28
28
  'GlDuoChat.chatEmptyStateTitle': 'Ask a question',
29
29
  'GlDuoChat.chatPromptPlaceholderDefault': 'GitLab Duo Chat',
30
- 'GlDuoChat.chatPromptPlaceholderWithCommands': 'Type "/" for slash commands',
30
+ 'GlDuoChat.chatPromptPlaceholderWithCommands': 'Type /help to learn more',
31
31
  'GlDuoChat.chatSubmitLabel': 'Send chat message.',
32
32
  'GlDuoChatContextItemDetailsModal.title': 'Preview',
33
33
  'GlDuoChatContextItemMenu.emptyStateMessage': 'No results found',