Skip to content

Commit 38eadfc

Browse files
authored
Merge pull request #186 from performant-software/feature/basira193_pagination
BASIRA #193 - Pagination
2 parents aa5bf2c + 4d1dfcd commit 38eadfc

File tree

8 files changed

+14
-13
lines changed

8 files changed

+14
-13
lines changed

packages/controlled-vocabulary/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@performant-software/controlled-vocabulary",
3-
"version": "1.0.13",
3+
"version": "1.0.14",
44
"description": "A package of components to allow user to configure dropdown elements. Use with the \"controlled_vocabulary\" gem.",
55
"license": "MIT",
66
"main": "./build/index.js",
@@ -12,8 +12,8 @@
1212
"build": "webpack --mode production && flow-copy-source -v src types"
1313
},
1414
"dependencies": {
15-
"@performant-software/semantic-components": "^1.0.13",
16-
"@performant-software/shared-components": "^1.0.13",
15+
"@performant-software/semantic-components": "^1.0.14",
16+
"@performant-software/shared-components": "^1.0.14",
1717
"i18next": "^21.9.2",
1818
"semantic-ui-react": "^2.1.2",
1919
"underscore": "^1.13.2"

packages/semantic-ui/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@performant-software/semantic-components",
3-
"version": "1.0.13",
3+
"version": "1.0.14",
44
"description": "A package of shared components based on the Semantic UI Framework.",
55
"license": "MIT",
66
"main": "./build/index.js",
@@ -12,7 +12,7 @@
1212
"build": "webpack --mode production && flow-copy-source -v src types"
1313
},
1414
"dependencies": {
15-
"@performant-software/shared-components": "^1.0.13",
15+
"@performant-software/shared-components": "^1.0.14",
1616
"@react-google-maps/api": "^2.8.1",
1717
"axios": "^0.26.1",
1818
"i18next": "^19.4.4",

packages/semantic-ui/src/components/CurrentFacetLabels.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@ type Props = {
1717

1818
const CurrentFacetLabels = (props: Props) => (
1919
<Label.Group>
20-
{ _.map(props.items, (item) => (
20+
{ _.map(props.items, (item, index) => (
2121
<Label
2222
content={item.label}
23+
key={index}
2324
onRemove={item.onClick}
2425
/>
2526
))}

packages/semantic-ui/src/components/SearchBox.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const SearchBox = ({ useSearchBox, ...props }: typeof Props) => {
6262
loading={isSearchStalled}
6363
onChange={(e, { value }) => setSearch(value)}
6464
onKeyDown={() => Timer.clearSearchTimer()}
65-
onKeyUp={Timer.setSearchTimer(onSearch)}
65+
onKeyUp={() => Timer.setSearchTimer(onSearch)}
6666
ref={ref}
6767
type='text'
6868
value={search}

packages/shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@performant-software/shared-components",
3-
"version": "1.0.13",
3+
"version": "1.0.14",
44
"description": "A package of shared, framework agnostic, components.",
55
"license": "MIT",
66
"main": "./build/index.js",

packages/user-defined-fields/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@performant-software/user-defined-fields",
3-
"version": "1.0.13",
3+
"version": "1.0.14",
44
"description": "A package of components used for allowing end users to define fields on models. Use with the \"user_defined_fields\" gem.",
55
"license": "MIT",
66
"main": "./build/index.js",
@@ -9,8 +9,8 @@
99
"build": "webpack --mode production && flow-copy-source -v src types"
1010
},
1111
"dependencies": {
12-
"@performant-software/semantic-components": "^1.0.13",
13-
"@performant-software/shared-components": "^1.0.13",
12+
"@performant-software/semantic-components": "^1.0.14",
13+
"@performant-software/shared-components": "^1.0.14",
1414
"i18next": "^21.9.1",
1515
"semantic-ui-react": "^2.1.2",
1616
"underscore": "^1.13.2"

packages/visualize/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@performant-software/visualize",
3-
"version": "1.0.13",
3+
"version": "1.0.14",
44
"description": "A package of components used for data visualization",
55
"license": "MIT",
66
"main": "./build/index.js",

react-components.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
"packages/user-defined-fields",
77
"packages/visualize"
88
],
9-
"version": "1.0.13"
9+
"version": "1.0.14"
1010
}

0 commit comments

Comments
 (0)