app-tutor-ai-consumer 1.30.0 → 1.31.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,9 @@
1
+ # [1.31.0](https://github.com/Hotmart-Org/app-tutor-ai-consumer/compare/v1.30.0...v1.31.0) (2025-09-22)
2
+
3
+ ### Features
4
+
5
+ - add quick actions feature flag ([fa1826a](https://github.com/Hotmart-Org/app-tutor-ai-consumer/commit/fa1826afd4c2802322ff0277311126cbdb8caa78))
6
+
1
7
  # [1.30.0](https://github.com/Hotmart-Org/app-tutor-ai-consumer/compare/v1.29.2...v1.30.0) (2025-09-18)
2
8
 
3
9
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "app-tutor-ai-consumer",
3
- "version": "1.30.0",
3
+ "version": "1.31.0",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "dev": "rspack serve --env=development --config config/rspack/rspack.config.js",
@@ -33,7 +33,7 @@ function WidgetStarterPage() {
33
33
  const isMobile = useMediaQuery({ maxSize: 'md' })
34
34
  const widgetLoading = useWidgetLoadingAtomValue()
35
35
  const hasSentInitialMessage = useRef(false)
36
- const [newTutorWidgetFF] = useDecision('lex_new_tutor_widget')
36
+ const [tutorQuickActionsFF] = useDecision('lex_tutor_quick_actions')
37
37
  const [lexTutorInitialMessageFF] = useDecision('lex_tutor_new_widget_initial_message')
38
38
 
39
39
  useRefEventListener<HTMLTextAreaElement>({
@@ -155,7 +155,7 @@ function WidgetStarterPage() {
155
155
  />
156
156
  </div>
157
157
  </div>
158
- {newTutorWidgetFF?.enabled && newTutorWidgetFF?.variables?.['show_quick_actions'] ? (
158
+ {tutorQuickActionsFF?.enabled ? (
159
159
  <QuickActionButtons
160
160
  className='grid-area-[b] my-4 flex flex-shrink-0 snap-x snap-mandatory gap-2 overflow-x-auto whitespace-nowrap [scrollbar-width:none] [&::-webkit-scrollbar]:hidden'
161
161
  isDarkTheme={isDarkTheme}