@eclass/ui-kit 1.19.0 → 1.19.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.
@@ -9,9 +9,26 @@ interface PaymentText {
9
9
  }
10
10
 
11
11
  export interface WrapperCoursesProps {
12
+ /** Array de cursos a desplegar */
12
13
  courses: AcademicList[]
14
+
15
+ /** Especificación de margen
16
+ * @example m: '0 0 0 16px'
17
+ */
13
18
  m?: string
19
+
20
+ /** Objeto con información acerca del estado de pago del curso, que incluye 'title', 'body' y 'buttonName'.
21
+ * @example
22
+ *
23
+ * modalPaymentTextArg = {
24
+ * title: 'Curso congelado por pagos pendientes'
25
+ * body: 'Para regularizar esta situación, comúnicate con ___'
26
+ * buttonName: 'Entendido'
27
+ * }
28
+ */
14
29
  modalPaymentText?: PaymentText
30
+
31
+ /** Especificación de tipo de caja curso a mostrar. Por default se muestra el tipo TRADITIONAL */
15
32
  typeBox?: 'TRADITIONAL' | 'TRADITIONAL_LANDSCAPE' | 'IMAGE_LARGE' | 'IMAGE_SMALL'
16
33
  }
17
34