Skip to content

Commit

Permalink
Merge pull request #48 from roundtableAI/021
Browse files Browse the repository at this point in the history
0.2.1
  • Loading branch information
mdahardy authored Aug 26, 2024
2 parents 4459714 + d843a27 commit 292b1b1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/node_modules
/dist
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Here are some example surveys built with RoundtableJS. All code is in the [examp
1. Include the following script tag in your HTML:

```html
<script src="https://cdn.jsdelivr.net/npm/roundtable-js@0.1.2/dist/bundle.js"></script>
<script src="https://cdn.jsdelivr.net/npm/roundtable-js@0.2.1/dist/bundle.js"></script>
```

## Usage
Expand Down
6 changes: 4 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ import Grid from './library/elements/grid.js';
import HTML from './library/elements/HTML.js';
import MultiSelect from './library/elements/multiSelect.js';
import NumberEntry from './library/elements/numberEntry.js';
import OrderedScale from './library/elements/orderedScale.js';
import NumberScale from './library/elements/numberScale.js';
import OpenEnd from './library/elements/openEnd.js';
import SingleSelect from './library/elements/singleSelect.js';
import TextInput from './library/elements/textInput.js';
import ProgressBar from './library/plugins/progressBar.js';
import PageHTML from './library/plugins/pageHTML.js';

export {
Survey,
Expand All @@ -21,9 +22,10 @@ export {
HTML,
MultiSelect,
NumberEntry,
OrderedScale,
NumberScale,
OpenEnd,
SingleSelect,
PageHTML,
ProgressBar,
TextInput
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "roundtable-js",
"version": "0.1.2",
"version": "0.2.2",
"type": "module",
"description": "A modular survey framework built with JavaScript",
"main": "dist/bundle.js",
Expand Down

0 comments on commit 292b1b1

Please sign in to comment.