├── .gitignore
├── .idea
├── .gitignore
├── dictionaries
│ └── daniel.xml
├── misc.xml
├── modules.xml
├── react-bootstrap-sweetalert.iml
└── vcs.xml
├── .npmignore
├── CHANGE_LOG.md
├── LICENSE
├── README.md
├── demo
├── assets
│ ├── bmab.png
│ ├── bootstrap.min.css
│ ├── demo.css
│ ├── demo.gif
│ ├── favicon.png
│ ├── index.html
│ ├── openbase.png
│ └── thumbs-up.jpg
├── demo-server.js
└── demo.bundle.js
├── examples
└── redux
│ ├── .env
│ ├── .gitignore
│ ├── README.md
│ ├── package.json
│ ├── public
│ ├── index.html
│ └── manifest.json
│ ├── src
│ ├── App.test.js
│ ├── actions
│ │ └── index.js
│ ├── components
│ │ ├── Footer.js
│ │ └── HeaverNav.js
│ ├── constants
│ │ └── ActionTypes.js
│ ├── containers
│ │ ├── App
│ │ │ ├── App.css
│ │ │ ├── NoMatch.js
│ │ │ └── index.js
│ │ ├── HeaderContainer.js
│ │ └── HomeContainer.js
│ ├── index.js
│ ├── reducers
│ │ ├── index.js
│ │ └── notifications.js
│ ├── serviceWorker.js
│ ├── store.js
│ └── styles
│ │ ├── app.scss
│ │ ├── bootstrap.scss
│ │ ├── index.scss
│ │ └── overrides.scss
│ └── yarn.lock
├── gulpfile.js
├── index.html
├── package.json
├── src
├── components
│ ├── Buttons.tsx
│ ├── Content.tsx
│ ├── CustomIcon.tsx
│ ├── ErrorIcon.tsx
│ ├── InfoIcon.tsx
│ ├── Input.tsx
│ ├── Overlay.tsx
│ ├── SuccessIcon.tsx
│ ├── SweetAlert.tsx
│ ├── Title.tsx
│ ├── ValidationMessage.tsx
│ └── WarningIcon.tsx
├── constants
│ └── patterns.ts
├── css
│ └── animations.css
├── default-props.ts
├── demo
│ ├── index.d.ts
│ ├── src
│ │ ├── Demo.tsx
│ │ ├── examples
│ │ │ ├── Animations.tsx
│ │ │ ├── Basic.tsx
│ │ │ ├── CustomButtons.tsx
│ │ │ ├── CustomStyle.tsx
│ │ │ ├── Example.ts
│ │ │ ├── FocusCancelButton.tsx
│ │ │ ├── HTML.tsx
│ │ │ ├── IconAndCloseButton.tsx
│ │ │ ├── Input.tsx
│ │ │ ├── LongMessage.tsx
│ │ │ ├── Password.tsx
│ │ │ ├── ReverseButtons.tsx
│ │ │ ├── SmallButtons.tsx
│ │ │ ├── Success.tsx
│ │ │ ├── Timer.tsx
│ │ │ ├── TitleWithText.tsx
│ │ │ ├── WarningWithCallbacks.tsx
│ │ │ └── index.ts
│ │ └── index.tsx
│ ├── tsconfig.json
│ └── webpack.config.js
├── index.ts
├── prop-types.ts
├── styles
│ └── SweetAlertStyles.ts
└── types.ts
├── tsconfig.json
├── tslint.json
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 | .vscode/
3 | dist/
4 |
--------------------------------------------------------------------------------
/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /workspace.xml
--------------------------------------------------------------------------------
/.idea/dictionaries/daniel.xml:
--------------------------------------------------------------------------------
1 | Hello {{firstName}} {{lastName}}
317 | setFirstName(e.target.value)} />
318 | setLastName(e.target.value)} />
319 |