Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 1215 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1215 Rev 1231
Línea 9... Línea 9...
9
  title = '',
9
  title = '',
10
  onAccept = () => {},
10
  onAccept = () => {},
11
  onReject = () => {},
11
  onReject = () => {},
12
  onClose = () => {},
12
  onClose = () => {},
13
  onShow = () => {},
13
  onShow = () => {},
-
 
14
  labelAccept = '',
-
 
15
  labelReject = '',
14
  size = 'md',
16
  size = 'md',
15
  backdrop = 'static',
17
  backdrop = 'static',
16
  centered = true,
18
  centered = true,
17
  animation = true,
19
  animation = true,
18
  dialogClassName,
20
  dialogClassName,
Línea 36... Línea 38...
36
      </BootstrapModal.Header>
38
      </BootstrapModal.Header>
Línea 37... Línea 39...
37
 
39
 
Línea 38... Línea 40...
38
      <BootstrapModal.Body>{children}</BootstrapModal.Body>
40
      <BootstrapModal.Body>{children}</BootstrapModal.Body>
-
 
41
 
39
 
42
      <BootstrapModal.Footer>
-
 
43
        <ButtonPrimary
-
 
44
          label={labelAccept || labels.accept}
Línea -... Línea 45...
-
 
45
          onClick={onAccept}
40
      <BootstrapModal.Footer>
46
        />
-
 
47
 
-
 
48
        <ButtonTertiary
41
        <ButtonPrimary label={labels.accept} onClick={onAccept} />
49
          label={labelReject || labels.cancel}
42
 
50
          onClick={onReject}
43
        <ButtonTertiary label={labels.cancel} onClick={onReject} />
51
        />
44
      </BootstrapModal.Footer>
52
      </BootstrapModal.Footer>