Skip to content

Commit

Permalink
Merge pull request #255 from performant-software/feature/cdc152_reset…
Browse files Browse the repository at this point in the history
…_manifests

CDC #152 - Reset Manifests
  • Loading branch information
dleadbetter authored Mar 4, 2024
2 parents 59e5997 + 3baf625 commit e50217f
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 14 deletions.
6 changes: 3 additions & 3 deletions packages/controlled-vocabulary/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@performant-software/controlled-vocabulary",
"version": "1.1.5",
"version": "1.1.6",
"description": "A package of components to allow user to configure dropdown elements. Use with the \"controlled_vocabulary\" gem.",
"license": "MIT",
"main": "./build/index.js",
Expand All @@ -12,8 +12,8 @@
"build": "webpack --mode production && flow-copy-source -v src types"
},
"dependencies": {
"@performant-software/semantic-components": "^1.1.5",
"@performant-software/shared-components": "^1.1.5",
"@performant-software/semantic-components": "^1.1.6",
"@performant-software/shared-components": "^1.1.6",
"i18next": "^21.9.2",
"semantic-ui-react": "^2.1.2",
"underscore": "^1.13.2"
Expand Down
2 changes: 1 addition & 1 deletion packages/geospatial/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@performant-software/geospatial",
"version": "1.1.5",
"version": "1.1.6",
"description": "TODO: ADD",
"license": "MIT",
"main": "./build/index.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/semantic-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@performant-software/semantic-components",
"version": "1.1.5",
"version": "1.1.6",
"description": "A package of shared components based on the Semantic UI Framework.",
"license": "MIT",
"main": "./build/index.js",
Expand All @@ -12,7 +12,7 @@
"build": "webpack --mode production && flow-copy-source -v src types"
},
"dependencies": {
"@performant-software/shared-components": "^1.1.5",
"@performant-software/shared-components": "^1.1.6",
"@react-google-maps/api": "^2.8.1",
"axios": "^0.26.1",
"i18next": "^19.4.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@performant-software/shared-components",
"version": "1.1.5",
"version": "1.1.6",
"description": "A package of shared, framework agnostic, components.",
"license": "MIT",
"main": "./build/index.js",
Expand Down
6 changes: 3 additions & 3 deletions packages/user-defined-fields/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@performant-software/user-defined-fields",
"version": "1.1.5",
"version": "1.1.6",
"description": "A package of components used for allowing end users to define fields on models. Use with the \"user_defined_fields\" gem.",
"license": "MIT",
"main": "./build/index.js",
Expand All @@ -9,8 +9,8 @@
"build": "webpack --mode production && flow-copy-source -v src types"
},
"dependencies": {
"@performant-software/semantic-components": "^1.1.5",
"@performant-software/shared-components": "^1.1.5",
"@performant-software/semantic-components": "^1.1.6",
"@performant-software/shared-components": "^1.1.6",
"i18next": "^21.9.1",
"semantic-ui-react": "^2.1.2",
"underscore": "^1.13.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ const UserDefinedFieldsEmbeddedList = (props: Props) => {
name: 'order',
label: i18n.t('UserDefinedFieldsEmbeddedList.columns.order'),
hidden: isHidden('order')
}, {
name: 'uuid',
label: i18n.t('UserDefinedFieldsEmbeddedList.columns.uuid'),
hidden: isHidden('uuid')
}]}
modal={{
component: UserDefinedFieldModal,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ const UserDefinedFieldsList: ComponentType<any> = (props: Props) => {
name: 'order',
label: i18n.t('UserDefinedFieldsList.columns.order'),
hidden: isHidden('order')
}, {
name: 'uuid',
label: i18n.t('UserDefinedFieldsList.columns.uuid'),
hidden: isHidden('uuid')
}]}
collectionName='user_defined_fields'
modal={{
Expand Down
6 changes: 4 additions & 2 deletions packages/user-defined-fields/src/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
"name": "Name",
"order": "Order",
"required": "Required",
"table": "Table"
"table": "Table",
"uuid": "Identifier"
}
},
"UserDefinedFieldsList": {
Expand All @@ -34,7 +35,8 @@
"name": "Name",
"order": "Order",
"required": "Required",
"table": "Table"
"table": "Table",
"uuid": "Identifier"
}
}
}
2 changes: 1 addition & 1 deletion packages/visualize/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@performant-software/visualize",
"version": "1.1.5",
"version": "1.1.6",
"description": "A package of components used for data visualization",
"license": "MIT",
"main": "./build/index.js",
Expand Down
2 changes: 1 addition & 1 deletion react-components.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"packages/user-defined-fields",
"packages/visualize"
],
"version": "1.1.5"
"version": "1.1.6"
}

0 comments on commit e50217f

Please sign in to comment.