Skip to content
This repository has been archived by the owner on Sep 7, 2021. It is now read-only.

Release/v1.2.2 #225

Merged
merged 3 commits into from
Sep 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@technote-space/gutenberg-utils",
"version": "1.2.1",
"version": "1.2.2",
"description": "gutenberg utils",
"main": "build/index.js",
"scripts": {
Expand Down Expand Up @@ -39,7 +39,6 @@
"css-loader": "^3.2.0",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"node-sass": "^4.12.0",
"react-autosize-textarea": "^7.0.0",
"react-click-outside": "^3.0.1",
"react-dom": "^16.10.0",
"sass-loader": "^8.0.0",
Expand Down
4 changes: 2 additions & 2 deletions src/components/dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ const { Component, createRef } = wp.element;
*/
class Dropdown extends Component {

constructor() {
super( ...arguments );
constructor( props ) {
super( props );

this.toggle = this.toggle.bind( this );
this.close = this.close.bind( this );
Expand Down
6 changes: 3 additions & 3 deletions src/components/popover/detect-outside.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ const { Component } = wp.element;
class PopoverDetectOutside extends Component {

/**
* constructor
* @param {object} props props
*/
constructor() {
super( ...arguments );
constructor( props ) {
super( props );
}

/**
Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3756,9 +3756,9 @@ growly@^1.3.0:
integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=

handlebars@^4.1.2:
version "4.3.3"
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.3.3.tgz#56dd05fe33d6bd8a7d797351c39a0cdcfd576be5"
integrity sha512-VupOxR91xcGojfINrzMqrvlyYbBs39sXIrWa7YdaQWeBudOlvKEGvCczMfJPgnuwHE/zyH1M6J+IUP6cgDVyxg==
version "4.3.4"
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.3.4.tgz#aab065294c27ad16ff4e711240a7288d2753306d"
integrity sha512-vvpo6mpK4ScNC1DbGRZ2d5BznS6ht0r1hi20RivsibMc6jNvFAeZQ6qk5VNspo6SOwVOJQbjHyBCpuS7BzA1pw==
dependencies:
neo-async "^2.6.0"
optimist "^0.6.1"
Expand Down