@moontra/moonui-pro 2.7.0 → 2.7.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moontra/moonui-pro",
3
- "version": "2.7.0",
3
+ "version": "2.7.2",
4
4
  "description": "Premium React components for MoonUI - Advanced UI library with 50+ pro components including performance, interactive, and gesture components",
5
5
  "type": "module",
6
6
  "main": "dist/index.mjs",
@@ -99,4 +99,15 @@ export * from "./quiz-form"
99
99
  export * from "./credit-card-input"
100
100
 
101
101
  // Phone Number Input
102
- export * from "./phone-number-input"
102
+ export * from "./phone-number-input"
103
+
104
+ // MoonUI Quiz Form (Advanced)
105
+ export {
106
+ MoonUIQuizFormPro,
107
+ type MoonUIQuizFormProProps,
108
+ type Question as MoonUIQuestion,
109
+ type QuestionType as MoonUIQuestionType,
110
+ type QuizSettings as MoonUIQuizSettings,
111
+ type UserAnswer as MoonUIUserAnswer,
112
+ type QuizResult as MoonUIQuizResult
113
+ } from "./moonui-quiz-form"