1
0
mirror of synced 2024-11-22 13:26:06 +03:00
Commit Graph

526 Commits

Author SHA1 Message Date
Justin Schroeder
7bdec1151d v2.2.1 2020-03-09 13:24:54 -04:00
Justin Schroeder
070e56b9df
Merge pull request #28 from wearebraid/release/2.2.x
Release/2.2.x
2020-03-09 13:14:57 -04:00
Justin Schroeder
3b18fe2fc8
Merge branch 'master' into release/2.2.x 2020-03-09 13:12:28 -04:00
Justin Schroeder
90cfec5dfb
Merge pull request #27 from wearebraid/bugfix/filenames
Bugfix/filenames
2020-03-09 13:11:42 -04:00
Justin Schroeder
57ac45be20 Adds title to filenames and better long-filename styling 2020-03-09 11:03:33 -04:00
Andrew Boyd
2a5750718a
Merge pull request #26 from wearebraid/feature/i18n-bump
Updates vue-formulate-i18n to 1.1.0 which includes Portuguese
2020-03-09 10:50:30 -04:00
Andrew Boyd
376164ed58
Merge branch 'master' into feature/i18n-bump 2020-03-09 10:48:15 -04:00
Justin Schroeder
78a0d4fe21
Merge pull request #20 from hmaesta/patch-1
Hide overflow of file names (and apply ellipsis)
2020-03-09 10:45:23 -04:00
Justin Schroeder
9035e84e8c
Merge pull request #25 from wearebraid/andrew-boyd-patch-1
Reorders content on the readme to get feature list to the top
2020-03-09 10:43:53 -04:00
Justin Schroeder
682b07620e Updates vue-formulate-i18n to 1.1.0 which includes portuguese 2020-03-09 10:38:58 -04:00
Andrew Boyd
a355ce8043
Update README.md 2020-03-09 10:29:49 -04:00
Andrew Boyd
21defec04f
ends readme on link to documentation site 2020-03-09 10:28:31 -04:00
Andrew Boyd
fc8ad9978c
Reorders content on the readme to get feature list to the top 2020-03-09 10:27:33 -04:00
Justin Schroeder
54f2c66b91
Merge pull request #24 from wearebraid/feature/updated-readme
Feature/updated readme
2020-03-08 13:47:05 -04:00
Andrew Boyd
de7168d643 adjusts table syntax for readme 2020-03-08 10:24:37 -04:00
Andrew Boyd
0e2988444f adds gifs to readme and updates some language 2020-03-08 10:20:02 -04:00
Justin Schroeder
2456aead9e
Merge pull request #23 from wearebraid/release/2.2.0
Release/2.2.0
2020-03-07 10:39:47 -05:00
Justin Schroeder
b24782f8ac
Merge branch 'master' into release/2.2.0 2020-03-07 10:36:30 -05:00
Justin Schroeder
314b2b054e Changes the sequence in which plugins are registered 2020-03-07 10:27:51 -05:00
Justin Schroeder
f9378cda25 Fixes issue where english was no being used as a plugin 2020-03-07 10:05:05 -05:00
Justin Schroeder
2efafe0d9d Builds 2.2.0 2020-03-07 09:15:23 -05:00
Justin Schroeder
34de4ba6dc
Adds support for @braid/vue-formulate-i18n
* Adds support form FormulateError form errors

* Adds support for form-errors prop

Also includes tests for both named-form-errors as well, form-errors prop, positioning form errors with the <FormulateErrors /> component, and allowing multiple <FormulateErrors />

* Adds form error support, error handling, and supporting tests

* Remove unused util functions

* Adds german localization locales/de.js (#14)

* Create de.js
* Added startsWith and endsWith

* adds build process for localization support, removes dist

* Adds danish localization

* fixes bug that resulted in validation failing if run more than once

Credit to @luan-nk-nguyen for discovering the bug

* Moves locales to vue-formulate-i18n

* Adds dist files for locales

* Adds vue-formulate-i18n 1.0.1

* Uses i18n 1.0.3

* Build files

* Fixes #19

* Update src/locales/README.md

Co-Authored-By: Andrew Boyd <andrew@wearebraid.com>

* changes v-html to v-text for error message output

credit to @skix123 for the bug report!

Co-authored-by: Andrew Boyd <andrew@wearebraid.com>
2020-03-07 09:03:59 -05:00
Hugo Maestá
abe927e9ce
Hide overflow of file names (and apply ellipsis) 2020-03-07 10:19:42 -03:00
Justin Schroeder
adf8299a33
Feature/form errors (#13)
* Adds support form FormulateError form errors

* Adds support for form-errors prop

Also includes tests for both named-form-errors as well, form-errors prop, positioning form errors with the <FormulateErrors /> component, and allowing multiple <FormulateErrors />

* Adds form error support, error handling, and supporting tests

* Remove unused util functions

* fixes bug that resulted in validation failing if run more than once

Credit to @luan-nk-nguyen for discovering the bug

Co-authored-by: Andrew Boyd <andrew@wearebraid.com>
2020-03-06 16:10:25 -05:00
Andrew Boyd
70217a95f6
Merge pull request #16 from wearebraid/feature/issue-templates
Adds new github issue templates
2020-03-06 10:40:29 -05:00
Justin Schroeder
b3bf123fff Adds new github issue templates 2020-03-06 10:16:38 -05:00
Justin Schroeder
4b36b9c4ba
Adds validation rules endsWith, startsWith and fixes box classification blur handler
* adds language definitions for new rules

* re-order rules file to order rule definitions alphabetically

* adds support for endsWith validation rule and converts snake_case rules to camelCase function calls

* adds support for startsWith field validation

* better en.js definitions for new validations

* adds tests for snakeCaseToCamelCase function

* coerces all validation messages and validation rules to be camelCase under the hood

* ensures that array syntax rules are properly converted internally to camelCase

* adds more robust tests for non-string type data for endsWith and startsWith validation rules

* adds support for words that start with numbers to snakeToCamel method

renames snakeCaseToCamelCase to snakeToCamel to reduce package size

* Reduces some property name lengths for byte savings

* Fixes bug that caused validation rules to not be displayed on blur for the box classification

Co-authored-by: Justin Schroeder <justin@wearebraid.com>
2020-03-04 13:45:37 -05:00
Andrew Boyd
4bfe43719d
Adds startsWith and endsWith validation rules (#9)
* adds language definitions for new rules

* re-order rules file to order rule definitions alphabetically

* adds support for endsWith validation rule and converts snake_case rules to camelCase function calls

* adds support for startsWith field validation

* better en.js definitions for new validations

* adds tests for snakeCaseToCamelCase function
2020-03-03 06:53:04 -05:00
Justin Schroeder
c7a3e1a015 2.1.1 2020-03-02 14:01:54 -05:00
Justin Schroeder
c7f26c0929 v2.1.1 2020-03-02 14:01:38 -05:00
Justin Schroeder
e13c70fad0 Merge branch 'master' of github.com:wearebraid/vue-formulate 2020-03-02 13:55:06 -05:00
Justin Schroeder
6b21b630c7
Merge pull request #8 from wearebraid/typo-fix
fixes classname typos in snow.css, formulatefiles component, and inpu…
2020-03-02 13:54:41 -05:00
Sasha Milenkovic
bd0af7d6cc fixes classname typos in snow.css, formulatefiles component, and inputs.scss 2020-03-02 13:34:44 -05:00
Justin Schroeder
8731990328 2.1.0 2020-03-02 01:45:06 -05:00
Justin Schroeder
b5edaa9b3c
Merge pull request #7 from wearebraid/v2.1.0
Version 2.1.0
2020-03-02 01:44:41 -05:00
Justin Schroeder
192a2cd93b Fixes #6 2020-03-02 01:34:18 -05:00
Justin Schroeder
c6eae3493b Fixes issues with upload field re-hydration and requried validation rule for FileUpload fields. 2020-03-02 00:35:56 -05:00
Justin Schroeder
cf9396e0d6 Fixes issue with grouped options hydrating initial values 2020-03-01 22:29:54 -05:00
Justin Schroeder
3fcfa759a9 Patches axios uploader behavior 2020-03-01 13:28:46 -05:00
Justin Schroeder
1806671194 2.0.4 2020-02-29 01:00:19 -05:00
Justin Schroeder
cea58754a3 Production build for version 2.0.4 2020-02-29 00:59:58 -05:00
Justin Schroeder
12326a91fd Adds a new values prop to FormulateForm 2020-02-29 00:50:31 -05:00
Justin Schroeder
0312802e03 Merge branch 'master' of github.com:wearebraid/vue-formulate 2020-02-29 00:19:11 -05:00
Justin Schroeder
433ac5728e Patches form uploads to proper swap server return back into the form data 2020-02-29 00:18:58 -05:00
Justin Schroeder
08d9cd0ff9 Makes rollup not use named exports 2020-02-28 23:30:43 -05:00
Justin Schroeder
875d81503b
Merge pull request #3 from henrikromby/patch-1
Fixes minor typo in readme
2020-02-28 22:45:56 -05:00
Henrik Romby Mikkelsen
f23802a496
Minor typo in readme 2020-02-29 04:40:28 +01:00
Justin Schroeder
c1607abe8e 2.0.3 2020-02-28 16:10:36 -05:00
Justin Schroeder
a4d811e95d taggs 2.0.2 2020-02-28 16:10:19 -05:00
Justin Schroeder
e6927604f6 2.0.3 2020-02-28 16:07:43 -05:00