Tax ID
{{ entry.data.taxId }} was verified
@@ -41,7 +39,7 @@ import {
standalone: true,
imports: [SharedModule],
})
-class TaxIdHistoryEntryComponent implements CustomerHistoryEntryComponent {
+export class TaxIdHistoryEntryComponent implements CustomerHistoryEntryComponent {
entry: TimelineHistoryEntry;
customer: CustomerFragment;
diff --git a/docs/docs/reference/admin-ui-api/react-extensions/register-react-data-table-component.md b/docs/docs/reference/admin-ui-api/react-extensions/register-react-data-table-component.md
index 21874fb6b8..a948d9de99 100644
--- a/docs/docs/reference/admin-ui-api/react-extensions/register-react-data-table-component.md
+++ b/docs/docs/reference/admin-ui-api/react-extensions/register-react-data-table-component.md
@@ -23,7 +23,7 @@ e.g. the `Product` object if used in the `product-list` table.
import { ReactDataTableComponentProps } from '@vendure/admin-ui/react';
import React from 'react';
-export function SlugWithLink({ rowItem }: ReactDataTableComponentProps) {
+export function SlugWithLink({ rowItem }: ReactDataTableComponentProps<{ slug: string }>) {
return (
{rowItem.slug}
diff --git a/lerna.json b/lerna.json
index 5724fa51b1..20b1f7a742 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,6 +1,6 @@
{
"packages": ["packages/*"],
- "version": "2.1.1",
+ "version": "2.1.2",
"npmClient": "yarn",
"command": {
"version": {
diff --git a/packages/admin-ui-plugin/package.json b/packages/admin-ui-plugin/package.json
index a3c4abf95f..9c7d183e3a 100644
--- a/packages/admin-ui-plugin/package.json
+++ b/packages/admin-ui-plugin/package.json
@@ -1,6 +1,6 @@
{
"name": "@vendure/admin-ui-plugin",
- "version": "2.1.1",
+ "version": "2.1.2",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
@@ -21,8 +21,8 @@
"devDependencies": {
"@types/express": "^4.17.8",
"@types/fs-extra": "^9.0.1",
- "@vendure/common": "^2.1.1",
- "@vendure/core": "^2.1.1",
+ "@vendure/common": "^2.1.2",
+ "@vendure/core": "^2.1.2",
"express": "^4.17.1",
"rimraf": "^3.0.2",
"typescript": "4.9.5"
diff --git a/packages/admin-ui/package-lock.json b/packages/admin-ui/package-lock.json
index 28c7689beb..77ee6a113e 100644
--- a/packages/admin-ui/package-lock.json
+++ b/packages/admin-ui/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "@vendure/admin-ui",
- "version": "2.1.1",
+ "version": "2.1.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/packages/admin-ui/package.json b/packages/admin-ui/package.json
index ea8074581c..da2f91a6da 100644
--- a/packages/admin-ui/package.json
+++ b/packages/admin-ui/package.json
@@ -1,6 +1,6 @@
{
"name": "@vendure/admin-ui",
- "version": "2.1.1",
+ "version": "2.1.2",
"license": "MIT",
"scripts": {
"ng": "ng",
@@ -49,7 +49,7 @@
"@ng-select/ng-select": "^11.1.1",
"@ngx-translate/core": "^15.0.0",
"@ngx-translate/http-loader": "^8.0.0",
- "@vendure/common": "^2.1.1",
+ "@vendure/common": "^2.1.2",
"@webcomponents/custom-elements": "^1.6.0",
"apollo-angular": "^5.0.0",
"apollo-upload-client": "^17.0.0",
diff --git a/packages/admin-ui/src/lib/core/src/common/version.ts b/packages/admin-ui/src/lib/core/src/common/version.ts
index 88bd71ebae..cbd7877ed7 100644
--- a/packages/admin-ui/src/lib/core/src/common/version.ts
+++ b/packages/admin-ui/src/lib/core/src/common/version.ts
@@ -1,2 +1,2 @@
// Auto-generated by the set-version.js script.
-export const ADMIN_UI_VERSION = '2.1.1';
+export const ADMIN_UI_VERSION = '2.1.2';
diff --git a/packages/admin-ui/src/lib/core/src/shared/components/radio-card/radio-card-fieldset.component.scss b/packages/admin-ui/src/lib/core/src/shared/components/radio-card/radio-card-fieldset.component.scss
index 4d1d6f1e30..3c21ff61e9 100644
--- a/packages/admin-ui/src/lib/core/src/shared/components/radio-card/radio-card-fieldset.component.scss
+++ b/packages/admin-ui/src/lib/core/src/shared/components/radio-card/radio-card-fieldset.component.scss
@@ -1,4 +1,5 @@
fieldset {
display: flex;
align-items: flex-start;
+ overflow-x: auto;
}
diff --git a/packages/admin-ui/src/lib/core/src/shared/components/tabbed-custom-fields/tabbed-custom-fields.component.scss b/packages/admin-ui/src/lib/core/src/shared/components/tabbed-custom-fields/tabbed-custom-fields.component.scss
index 4aa956c179..b7ca8fa449 100644
--- a/packages/admin-ui/src/lib/core/src/shared/components/tabbed-custom-fields/tabbed-custom-fields.component.scss
+++ b/packages/admin-ui/src/lib/core/src/shared/components/tabbed-custom-fields/tabbed-custom-fields.component.scss
@@ -1,7 +1,3 @@
:host {
display: contents;
}
-
-::ng-deep clr-tabs .btn.btn-link {
- box-shadow: none;
-}
diff --git a/packages/admin-ui/src/lib/customer/src/components/customer-detail/customer-detail.component.html b/packages/admin-ui/src/lib/customer/src/components/customer-detail/customer-detail.component.html
index b7a2760bd0..b21dc417ec 100644
--- a/packages/admin-ui/src/lib/customer/src/components/customer-detail/customer-detail.component.html
+++ b/packages/admin-ui/src/lib/customer/src/components/customer-detail/customer-detail.component.html
@@ -52,7 +52,7 @@