Commit Graph

75 Commits

Author SHA1 Message Date
jos dcd060f1b7 Publish v6.3.0 2019-08-15 10:50:29 +02:00
jos ca6e384e8d When duplicating an object property, move focus to the field and do not immediately add the ` (copy)` suffix. See #766 2019-08-08 20:57:42 +02:00
jos f0097afcc0 Publish v6.2.1 2019-08-01 19:47:55 +02:00
jos ce7433fd46 Publish v6.2.0 2019-07-28 16:12:46 +02:00
jos eff2fe85a0 Update dependencies 2019-07-28 11:30:15 +02:00
jos e490d7a512 Upgraded dependencies and devDependencies 2019-07-20 10:58:23 +02:00
jos 92bf65f4d4 Update `mobius1-selectr@2.4.13` 2019-07-13 11:14:41 +02:00
dependabot[bot] f6e2ec0461 Bump lodash from 4.17.11 to 4.17.14 (#734)
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.11 to 4.17.14.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/compare/4.17.11...4.17.14)

Signed-off-by: dependabot[bot] <support@github.com>
2019-07-13 11:08:20 +02:00
greenkeeper[bot] 59c2846f02 Update dependencies for default 🌴 (#729)
* chore(package): update dependencies

* chore(package): update lockfile package-lock.json
2019-07-08 20:03:15 +02:00
greenkeeper[bot] ec474a0328 Update webpack to the latest version 🚀 (#731)
* chore(package): update webpack to version 4.35.3

* chore(package): update lockfile package-lock.json
2019-07-08 19:45:55 +02:00
jos 95cef491a9 Fix merge conflicts 2019-07-07 10:24:06 +02:00
greenkeeper[bot] 7d1306f0a3 Update ajv to the latest version 🚀 (#728)
* fix(package): update ajv to version 6.10.1

* chore(package): update lockfile package-lock.json
2019-07-07 10:12:48 +02:00
greenkeeper[bot] e0b86551e7 Update webpack to the latest version 🚀 (#721)
* chore(package): update webpack to version 4.35.2

* chore(package): update lockfile package-lock.json
2019-07-01 19:30:32 +02:00
greenkeeper[bot] a8b083dfe3 Update vanilla-picker to the latest version 🚀 (#720)
* fix(package): update vanilla-picker to version 2.8.2

* chore(package): update lockfile package-lock.json
2019-06-29 16:35:09 +02:00
greenkeeper[bot] 7f5e0c6870 Update dependencies to enable Greenkeeper 🌴 (#718)
* chore: add Greenkeeper config file

* chore(package): update dependencies

* docs(readme): add Greenkeeper badge

* chore(package): update lockfile package-lock.json
2019-06-22 20:37:09 +02:00
jos d509d4e542 Publish v6.1.0 2019-06-22 16:31:42 +02:00
jos 436c56dd20 Publish v6.0.0 2019-06-12 20:53:48 +02:00
jos 9dfc1aab39 Upgrade to `ajv@6` 2019-06-12 15:11:41 +02:00
jos b78ad35670 Upgrade to `webpack@4` and refactor gulp tasks 2019-06-12 14:14:15 +02:00
jos b1a4bce3d8 Upgrade to `uglify-js@3` 2019-06-12 13:23:36 +02:00
jos ab4a6a2f5e Upgrade to latest `mocha` and `jsdom` 2019-06-12 13:19:25 +02:00
jos a8d246778f Upgdate gulp dependencies. Cleanup unused zip task 2019-06-12 13:17:46 +02:00
jos 7bf25b3129 Publish v5.34.0 2019-06-08 12:13:53 +02:00
jos aee1d2dcde Publish v5.33.0 2019-05-29 17:22:03 +02:00
jos f005c437db Publish v5.32.5 2019-04-27 17:38:12 +02:00
jos b781a47702 Publish v5.32.4 2019-04-10 12:28:52 +02:00
jos d51090b7c9 Publish `v5.32.3` 2019-04-04 19:51:40 +02:00
jos 965584efe6 Publish v5.32.2 2019-04-03 15:08:29 +02:00
jos 55c4c91370 Publish v5.32.1 2019-03-28 20:17:11 +01:00
tobiasfriden 4763bdf293 Fixed using hyphens in the path of custom validation errors (#665)
* Fixed a bug where using hyphens in the path for custom validatons error didn't work

* Added closing bracket check and unit tests

* Automatically add brackets when path component contains hyphens

* use regexp to check if dot notation is safe
2019-03-21 21:27:17 +01:00
jos 0fbe7eee9a Publish v5.32.0 2019-03-20 17:46:49 +01:00
jos 88972a62fc Publish v5.31.1 2019-03-14 21:22:07 +01:00
jos afead89e3b Publish `v5.31.0` 2019-03-10 17:56:47 +01:00
jos a4d704f792 Publish `v5.30.0` 2019-03-02 10:51:50 +01:00
jos 8fc8e50bf1 Publish `v5.29.1` 2019-02-20 20:56:14 +01:00
jos df4673146f Publish `v5.29.0` 2019-02-16 14:12:53 +01:00
Adam Vigneaux f8279537d0 Fix Node._findSchema() (#651)
* Add test setup function for simulating browser globals

* Add tests for Node._findSchema

Some of the tests currently fail, which will be helpful in fixing the
incorrect behavior of the `_findSchema` function. The current failures
are:
- the last schema in the pattern properties object is always returned
- when pattern properties are present, wrong object schemas are returned

* Add schema-based tooltip to field names

Using the `title` and `description` properties from the schema, create
and set a tooltip on each field name. When the user hovers over a field
name, it will show the applicable information: title, description, both,
or neither, depending on what data is present in the schema.

* Remove redundant setting of field name title

* Remove accidental .only() from Node tests

* Fix Node._findSchema for pattern properties

The method now checks the key against the RegExp specified by the
pattern properties instead of always returning the last pattern property
in the object.

* Fix path used for recursive calls in Node._findSchema

* Add failing Node._findSchema tests for multi-level pattern properties

* Fix Node._findSchema for schemas with properties and patternProperties
2019-02-16 14:01:30 +01:00
jos 4c6f2cdd4f Publish `v5.28.2` 2019-01-23 14:29:13 +01:00
jos 21ae2180e7 Publish `v5.28.1` 2019-01-22 20:48:08 +01:00
jos 3334241ab9 Publish v5.28.0 2019-01-21 21:06:23 +01:00
jos 4e62cf5ba5 Publish v5.27.1 2019-01-16 15:59:11 +01:00
jos e9f6a299f7 Publish v5.27.0 2019-01-05 15:21:54 +01:00
jos 72ab51002c Publish v5.26.3 2018-12-06 21:44:37 +01:00
jos 550e0a2c4e Updated history 2018-12-05 09:38:51 +01:00
Pawel Raszewski 404fa036f9 Gulp4 (#608)
* update for gulp 4.0.0

* added gulp 4.0.0
2018-12-05 09:35:52 +01:00
jos 9ac82e24d2 Publish v5.26.2 2018-11-13 20:39:02 +01:00
jos db8652baa6 Publish v5.26.1 2018-11-13 20:29:22 +01:00
jos bd8bac03bd Publish v5.26.0 2018-11-12 20:14:03 +01:00
jos f27bd97d9d Release `v5.24.5` 2018-09-06 20:44:14 +02:00
jos 70140b0712 Release `v5.24.4` 2018-09-06 20:33:04 +02:00