Skip to content

Commit

Permalink
Merge pull request #34 from unchartedsoftware/part-selection-facet-te…
Browse files Browse the repository at this point in the history
…rms-value

Part selection facet terms value
  • Loading branch information
Zac-hills authored Aug 8, 2022
2 parents ac7bf93 + 5ecfbe7 commit 60154f2
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"lerna": "3.16.4",
"useWorkspaces": true,
"npmClient": "yarn",
"version": "3.2.5"
"version": "3.2.6"
}
6 changes: 3 additions & 3 deletions packages/facets-builder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@uncharted.software/facets-builder",
"version": "3.2.5",
"version": "3.2.6",
"license": "MIT",
"entry": "src/client/index.ts",
"entry:server": "src/server/index.ts",
Expand All @@ -25,8 +25,8 @@
"prepack": "npm-run-all clean build"
},
"dependencies": {
"@uncharted.software/facets-core": "^3.2.5",
"@uncharted.software/facets-plugins": "^3.2.5",
"@uncharted.software/facets-core": "^3.2.6",
"@uncharted.software/facets-plugins": "^3.2.6",
"express": "^4.17.1",
"nick-generator": "^1.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/facets-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@uncharted.software/facets-core",
"version": "3.2.5",
"version": "3.2.6",
"license": "MIT",
"entry": "src/index.ts",
"main": "dist/es5/index.js",
Expand Down
6 changes: 3 additions & 3 deletions packages/facets-core/src/facet-terms-value/FacetTermsValue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,15 +190,15 @@ export class FacetTermsValue extends FacetHoverable {
}

protected renderLabel(): TemplateResult {
return html`<span>${this.data.label}</span>`;
return html`<span part="facet-term-label-part">${this.data.label}</span>`;
}

protected renderAnnotation(): TemplateResult {
return html`<span>${this.data.annotation}</span>`;
return html`<span part="facet-term-annotation-part">${this.data.annotation}</span>`;
}

protected renderValue(): TemplateResult {
return html`<span>${this.data.value}</span>`;
return html`<span part="facet-term-value-part">${this.data.value}</span>`;
}

protected computeStyle(): TemplateResult | void {
Expand Down
6 changes: 3 additions & 3 deletions packages/facets-docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@uncharted.software/facets-docs",
"version": "3.2.5",
"version": "3.2.6",
"license": "MIT",
"entry": "src/index.ts",
"main": "dist/es5/index.js",
Expand Down Expand Up @@ -32,8 +32,8 @@
"prepack": "npm-run-all clean build"
},
"dependencies": {
"@uncharted.software/facets-core": "^3.2.5",
"@uncharted.software/facets-plugins": "^3.2.5",
"@uncharted.software/facets-core": "^3.2.6",
"@uncharted.software/facets-plugins": "^3.2.6",
"codemirror": "^5.49.0",
"lit-element": "^2.2.1",
"lit-html": "^1.1.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/facets-plugins/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@uncharted.software/facets-plugins",
"version": "3.2.5",
"version": "3.2.6",
"license": "MIT",
"entry": "src/index.ts",
"main": "dist/es5/index.js",
Expand All @@ -27,7 +27,7 @@
"dependencies": {
"@fortawesome/free-regular-svg-icons": "^5.10.2",
"@fortawesome/free-solid-svg-icons": "^5.10.2",
"@uncharted.software/facets-core": "^3.2.5",
"@uncharted.software/facets-core": "^3.2.6",
"lit-element": "^2.2.1",
"lit-html": "^1.1.2"
}
Expand Down

0 comments on commit 60154f2

Please sign in to comment.