Skip to content

Commit 20d8d0f

Browse files
authored
Merge pull request #171 from performant-software/feature/udf21_table_filter
UDF #21 - Table filter
2 parents 23e3dee + c9c5871 commit 20d8d0f

File tree

7 files changed

+15
-13
lines changed

7 files changed

+15
-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.0",
3+
"version": "1.0.1",
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.0",
16-
"@performant-software/shared-components": "^1.0.0",
15+
"@performant-software/semantic-components": "^1.0.1",
16+
"@performant-software/shared-components": "^1.0.1",
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.0",
3+
"version": "1.0.1",
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.0",
15+
"@performant-software/shared-components": "^1.0.1",
1616
"@react-google-maps/api": "^2.8.1",
1717
"axios": "^0.26.1",
1818
"i18next": "^19.4.4",

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.0",
3+
"version": "1.0.1",
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.0",
3+
"version": "1.0.1",
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.0",
13-
"@performant-software/shared-components": "^1.0.0",
12+
"@performant-software/semantic-components": "^1.0.1",
13+
"@performant-software/shared-components": "^1.0.1",
1414
"i18next": "^21.9.1",
1515
"semantic-ui-react": "^2.1.2",
1616
"underscore": "^1.13.2"

packages/user-defined-fields/src/components/UserDefinedFieldsForm.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ type Props = {
1818
defineableType?: string,
1919
isError: (key: string) => boolean,
2020
onChange: (obj: any) => void,
21-
onClearValidationError: (...keys: Array<string>) => void
21+
onClearValidationError: (...keys: Array<string>) => void,
22+
tableName?: string
2223
};
2324

2425
const DataTypes = {
@@ -176,7 +177,8 @@ const UserDefinedFieldsForm: ComponentType<any> = (props: Props) => {
176177
useEffect(() => {
177178
const params = {
178179
defineable_id: props.defineableId,
179-
defineable_type: props.defineableType
180+
defineable_type: props.defineableType,
181+
table_name: props.tableName
180182
};
181183

182184
UserDefinedFieldsService

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.0",
3+
"version": "1.0.1",
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.0"
9+
"version": "1.0.1"
1010
}

0 commit comments

Comments
 (0)