Skip to content

Commit e50217f

Browse files
authored
Merge pull request #255 from performant-software/feature/cdc152_reset_manifests
CDC #152 - Reset Manifests
2 parents 59e5997 + 3baf625 commit e50217f

File tree

10 files changed

+24
-14
lines changed

10 files changed

+24
-14
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.1.5",
3+
"version": "1.1.6",
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.1.5",
16-
"@performant-software/shared-components": "^1.1.5",
15+
"@performant-software/semantic-components": "^1.1.6",
16+
"@performant-software/shared-components": "^1.1.6",
1717
"i18next": "^21.9.2",
1818
"semantic-ui-react": "^2.1.2",
1919
"underscore": "^1.13.2"

packages/geospatial/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/geospatial",
3-
"version": "1.1.5",
3+
"version": "1.1.6",
44
"description": "TODO: ADD",
55
"license": "MIT",
66
"main": "./build/index.js",

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

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@ const UserDefinedFieldsEmbeddedList = (props: Props) => {
6060
name: 'order',
6161
label: i18n.t('UserDefinedFieldsEmbeddedList.columns.order'),
6262
hidden: isHidden('order')
63+
}, {
64+
name: 'uuid',
65+
label: i18n.t('UserDefinedFieldsEmbeddedList.columns.uuid'),
66+
hidden: isHidden('uuid')
6367
}]}
6468
modal={{
6569
component: UserDefinedFieldModal,

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ const UserDefinedFieldsList: ComponentType<any> = (props: Props) => {
6565
name: 'order',
6666
label: i18n.t('UserDefinedFieldsList.columns.order'),
6767
hidden: isHidden('order')
68+
}, {
69+
name: 'uuid',
70+
label: i18n.t('UserDefinedFieldsList.columns.uuid'),
71+
hidden: isHidden('uuid')
6872
}]}
6973
collectionName='user_defined_fields'
7074
modal={{

packages/user-defined-fields/src/i18n/en.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
"name": "Name",
2626
"order": "Order",
2727
"required": "Required",
28-
"table": "Table"
28+
"table": "Table",
29+
"uuid": "Identifier"
2930
}
3031
},
3132
"UserDefinedFieldsList": {
@@ -34,7 +35,8 @@
3435
"name": "Name",
3536
"order": "Order",
3637
"required": "Required",
37-
"table": "Table"
38+
"table": "Table",
39+
"uuid": "Identifier"
3840
}
3941
}
4042
}

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.1.5",
3+
"version": "1.1.6",
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
@@ -7,5 +7,5 @@
77
"packages/user-defined-fields",
88
"packages/visualize"
99
],
10-
"version": "1.1.5"
10+
"version": "1.1.6"
1111
}

0 commit comments

Comments
 (0)