Skip to content

Commit 10ab31b

Browse files
Merge pull request #389 from wearebraid/release/2.5.2
Release/2.5.2
2 parents 8263237 + 0e6d5e7 commit 10ab31b

16 files changed

+369
-125
lines changed

dist/formulate.esm.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formulate.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formulate.umd.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/specimens/SpecimenGroup.vue

+15-5
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,21 @@
1919
/>
2020
</FormulateInput>
2121
</div>
22+
<div class="specimen">
23+
<h3>Simple repeatable group</h3>
24+
<FormulateInput
25+
type="group"
26+
name="foobar"
27+
:repeatable="true"
28+
>
29+
<div class="wrap">
30+
<FormulateInput
31+
type="text"
32+
name="name"
33+
/>
34+
</div>
35+
</FormulateInput>
36+
</div>
2237
<div class="specimen">
2338
<h3>Repeatable group</h3>
2439
<FormulateInput
@@ -51,8 +66,3 @@
5166
</div>
5267
</div>
5368
</template>
54-
55-
<script>
56-
export default {
57-
}
58-
</script>

package-lock.json

+135-85
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@braid/vue-formulate",
3-
"version": "2.5.1",
3+
"version": "2.5.2",
44
"description": "The easiest way to build forms in Vue.",
55
"main": "dist/formulate.umd.js",
66
"module": "dist/formulate.esm.js",
@@ -17,7 +17,7 @@
1717
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/formulate.umd.js",
1818
"build:iife": "rollup --config build/rollup.iife.config.js --format iife --file dist/formulate.min.js",
1919
"build:css": "node-sass themes/snow/snow.scss dist/snow.css && postcss --use autoprefixer -b '> 2%' < dist/snow.css | postcss --no-map --use cssnano > dist/snow.min.css",
20-
"test": "NODE_ENV=test jest --config test/jest.conf.js --coverage",
20+
"test": "cross-env NODE_ENV=test jest --config test/jest.conf.js --coverage",
2121
"test:watch": "NODE_ENV=test jest --config test/jest.conf.js --watch",
2222
"test:coverage": "NODE_ENV=test jest --config test/jest.conf.js --coverage",
2323
"cypress": "cypress open",
@@ -59,6 +59,7 @@
5959
"babel-core": "^7.0.0-bridge.0",
6060
"babel-eslint": "^10.1.0",
6161
"babel-jest": "^25.5.1",
62+
"cross-env": "^7.0.3",
6263
"cssnano": "^4.1.10",
6364
"cypress": "^6.0.1",
6465
"cypress-file-upload": "^4.1.1",
@@ -92,7 +93,7 @@
9293
"watch": "^1.0.2"
9394
},
9495
"dependencies": {
95-
"@braid/vue-formulate-i18n": "^1.15.0",
96+
"@braid/vue-formulate-i18n": "^1.16.0",
9697
"is-plain-object": "^3.0.1",
9798
"is-url": "^1.2.4",
9899
"nanoid": "^2.1.11"

0 commit comments

Comments
 (0)