From 98a4b5f807af2d94fca4fc88f7ca01ba7d940798 Mon Sep 17 00:00:00 2001 From: David Moreno Lumbreras Date: Fri, 28 Jul 2017 11:07:33 +0200 Subject: [PATCH] Updated to top master --- package.json | 21 ++++++++++++++++++++- public/kbn_searchtables.html | 19 +++++++++++++++++-- public/kbn_searchtables.js | 3 ++- public/kbn_searchtables.less | 31 +++++++++++++++++++++++++++++++ 4 files changed, 70 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 97f5ed2..a0ef5c9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,9 @@ { "name": "kbn_searchtables", - "version": "5.4.3", + "version": "5.5.0-1", + "kibana": { + "version": "5.4.3" + }, "authors": [ "David Moreno Lumbreras " ], @@ -8,5 +11,21 @@ "repository": { "type": "git", "url": "https://github.com/dlumbrer/kbn_searchtables" + }, + "scripts": { + "lint": "eslint", + "start": "plugin-helpers start", + "test:server": "plugin-helpers test:server", + "test:browser": "plugin-helpers test:browser", + "build": "plugin-helpers build", + "postinstall": "plugin-helpers postinstall" + }, + "devDependencies": { + "@elastic/eslint-config-kibana": "0.0.2", + "@elastic/plugin-helpers": "^6.0.0", + "babel-eslint": "4.1.8", + "chai": "^3.5.0", + "eslint": "1.10.3", + "eslint-plugin-mocha": "1.1.0" } } diff --git a/public/kbn_searchtables.html b/public/kbn_searchtables.html index f3e4e4e..6c6a37b 100644 --- a/public/kbn_searchtables.html +++ b/public/kbn_searchtables.html @@ -6,8 +6,23 @@

No results found

- - + +
+ Search +
+ +
+
+ +
+ + +
+ ' + editor: '' }, implementsRenderComplete: true, hierarchicalData: function (vis) { @@ -61,6 +61,7 @@ function SearchTablesVisTypeProvider(Private) { group: 'metrics', name: 'metric', title: 'Metric', + aggFilter: '!geo_centroid', min: 1, defaults: [ { type: 'count', schema: 'metric' } diff --git a/public/kbn_searchtables.less b/public/kbn_searchtables.less index 2ec6916..05f968c 100644 --- a/public/kbn_searchtables.less +++ b/public/kbn_searchtables.less @@ -25,3 +25,34 @@ display: none; } } + +#inputSearchContainer +{ + width: 100%; +} + +#inputSearch +{ + border-color: #ecf0f1; + border-width: 2px 0px 2px 2px; +} +#inputSearch:focus +{ + border-color: #b4bcc2; +} + +#inputSearchButton +{ + height: 32px; +} + +#cancelSearchButton +{ + height: 32px; + background-color: #D76051; +} + +#textSearch +{ + padding-right: 20px; +}