0.0.14 • Published 5 years ago

ska-suite-form v0.0.14

Weekly downloads
57
License
-
Repository
-
Last release
5 years ago

Ska Suite - Form

Installation

Ska Suite Forms is an npm package.

// with npm
npm install ska-suite-form --save

// with yarn
yarn add ska-suite-form

Peer Dependencies

Npm documentation about Peer dependencies

"peerDependencies": {
    "prop-types": "^15.7.2",
    "react": "^16.8.4",
    "react-dom": "^16.8.4"
}

Usage

Minimal example :

import React from "react";
import ReactDOM from "react-dom";
import QuestionForm from "ska-suite-form";
import Form from "./form"; // Check API for more information

function App() {
  return (
        <QuestionForm
            questionForm={Form}
            width="100%"
            lang="FR"
            accentColor="#0099BC"
            onFormSent={(participation) => console.log(participation)}
        />
    )
}

ReactDOM.render(<App />, document.querySelector('#app'));

Api

QuestionForm

All Style props object must follow React inline style

PropsTypeRequiredDescription
questionFormobjectObject generated by Reception Desk Web Designer
widthstringAny valid css width ("100%", "500px" ...)
langstringLanguage code in which the form will be displayed ("FR", "EN"), must be available in the questionForm props
onFormSentfunctionCallback for when the form is sent (returns Participation object)
accentColorstringHexa code of the accent color used in the form ("#0099BC")
questionFormTextStyleobjectStyle of the question form title text
questionTextStyleobjectStyle of the question title text
questionContainerStyleobjectStyle of the question container
answerTextStyleobjectStyle of the answer text
answerContainerStyleobjectStyle of the answer container
inputStyleobjectStyle of the inputs (contact form)
thankMessagestringCustom message when form is completed
thankMessageStyleobjectStyle of the message when form is completed
0.0.14

5 years ago

0.0.13

5 years ago

0.0.12

5 years ago

0.0.11

5 years ago

0.0.10

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago