Skip to content

Commit 2b51bff

Browse files
arun-s-aotAjay-aotsumesh-aotshuhaib-aot
authored
Release 7.0.1 to Main PR (#631) [skip ci]
* custom theming changes for patch * userprofile optimized * Release 7.0.1 version updations * css updates * Update KeycloakService.ts * Update VERSION * username selection changed from user details * removed default value form env * FWF-4415 [bug] fixed auto logout issue in new user * custom theming changes added * css fix for patch * additional changes for custom theming * update in useEffect * console removed --------- Co-authored-by: Ajay krishna <ajay.k@aot-technologies.com> Co-authored-by: Sumesh Punakkal Kariyil <sumesh.pk@aot-technologies.com> Co-authored-by: shuhaib-aot <shuhaib.s@aot-technologies.com>
1 parent 55e122f commit 2b51bff

File tree

22 files changed

+256
-98
lines changed

22 files changed

+256
-98
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v7.0.0
1+
v7.0.1

forms-flow-admin/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

forms-flow-admin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@formsflow/admin",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"scripts": {
55
"start": "webpack serve",
66
"start:standalone": "webpack serve --env standalone",

forms-flow-admin/src/components/users/users.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,8 @@
4646

4747
.success {
4848
color: var(--color-success);
49+
}
50+
51+
.popover{
52+
font-family: var(--primary-font) !important;
4953
}

forms-flow-components/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

forms-flow-components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@formsflow/components",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"scripts": {
55
"start": "webpack serve",
66
"start:standalone": "webpack serve --env standalone",

forms-flow-components/src/components/CustomComponents/ImportModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export const ImportModal: React.FC<ImportModalProps> = React.memo(
7373
}) => {
7474
const { t } = useTranslation();
7575
const computedStyle = getComputedStyle(document.documentElement);
76-
const redColor = computedStyle.getPropertyValue("--ff-red-000");
76+
const redColor = computedStyle.getPropertyValue("--ff-danger");
7777
const [selectedFile, setSelectedFile] = useState<File | null>(null);
7878
const [uploadProgress, setUploadProgress] = useState(0);
7979
const hasVersion = (item) => item?.majorVersion != null || item?.minorVersion != null;

forms-flow-integration/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@formsflow/integration",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"scripts": {
55
"start": "webpack serve",
66
"start:standalone": "webpack serve --env standalone",

forms-flow-nav/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@formsflow/nav",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"scripts": {
55
"start": "webpack serve",
66
"start:standalone": "webpack serve --env standalone",

forms-flow-nav/src/constants/constants.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -187,20 +187,20 @@ export const OPERATIONS = {
187187
export const PageSizes = [5, 10, 25, 50, 100, "all"];
188188

189189
// draft config
190-
const DRAFT_POLLING_RATE_FROM_ENV =
191-
(window._env_ && window._env_.REACT_APP_DRAFT_POLLING_RATE)
190+
const DRAFT_POLLING_RATE_FROM_ENV = window._env_?.REACT_APP_DRAFT_POLLING_RATE;
192191

193192
export const DRAFT_POLLING_RATE = DRAFT_POLLING_RATE_FROM_ENV
194193
? Number(DRAFT_POLLING_RATE_FROM_ENV)
195194
: null;
196-
const DRAFT_ENABLED_VARIABLE =
197-
(window._env_ && window._env_.REACT_APP_DRAFT_ENABLED) ||
198-
false;
195+
const DRAFT_ENABLED_VARIABLE = window._env_?.REACT_APP_DRAFT_ENABLED ||false;
199196
export const DRAFT_ENABLED =
200197
DRAFT_ENABLED_VARIABLE === "true" || DRAFT_ENABLED_VARIABLE === true
201198
? true
202199
: false;
203200

204201
// This is to check if the application is running in enterprise mode or not
205-
export const IS_ENTERPRISE =
206-
(window._env_ && window._env_.REACT_APP_IS_ENTERPRISE) || false;
202+
export const IS_ENTERPRISE = window._env_?.REACT_APP_IS_ENTERPRISE || false;
203+
204+
205+
export const USER_NAME_DISPLAY_CLAIM =
206+
window.env?.REACT_APP_USER_NAME_DISPLAY_CLAIM;

0 commit comments

Comments
 (0)