@quadrel-enterprise-ui/framework 20.18.3 → 20.18.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1635,7 +1635,7 @@ const determineLocale = (serviceNavLanguage, browserLocales) => {
|
|
|
1635
1635
|
}
|
|
1636
1636
|
const serviceNavLangUpper = serviceNavLanguage.toUpperCase();
|
|
1637
1637
|
const browserLanguage = browserLocale.split('-')[0].toUpperCase();
|
|
1638
|
-
if (browserLanguage === serviceNavLangUpper)
|
|
1638
|
+
if (browserLanguage === serviceNavLangUpper && browserLocale.includes('-'))
|
|
1639
1639
|
return browserLocale;
|
|
1640
1640
|
return SERVICE_NAV_LOCALE_DEFAULTS[serviceNavLangUpper] ?? browserLocale;
|
|
1641
1641
|
};
|
|
@@ -30613,7 +30613,7 @@ const SAFE_BOTTOM_OFFSET_PX = 64;
|
|
|
30613
30613
|
* <!-- For "Quick Add" use PageStepper in single-step mode -->
|
|
30614
30614
|
* <qd-page [config]="pageConfig">
|
|
30615
30615
|
* <qd-page-stepper [config]="stepperConfig">
|
|
30616
|
-
* <qd-page-step [config]="stepConfigOne">
|
|
30616
|
+
* <qd-page-step [config]="stepConfigOne" [stepControl]="myForms">
|
|
30617
30617
|
* <qd-section [config]="sectionConfig">
|
|
30618
30618
|
* <qd-grid [config]="gridConfig" [formGroup]="myForms" qdConnectFormStateToPage="myForms">
|
|
30619
30619
|
* <!-- your qd-form-components here -->
|
|
@@ -30626,14 +30626,14 @@ const SAFE_BOTTOM_OFFSET_PX = 64;
|
|
|
30626
30626
|
* <!-- With PageStepper using multiple steps -->
|
|
30627
30627
|
* <qd-page [config]="pageConfig">
|
|
30628
30628
|
* <qd-page-stepper [config]="stepperConfig">
|
|
30629
|
-
* <qd-page-step [config]="stepConfigOne">
|
|
30629
|
+
* <qd-page-step [config]="stepConfigOne" [stepControl]="myFormsOne">
|
|
30630
30630
|
* <qd-section [config]="sectionConfig">
|
|
30631
30631
|
* <qd-grid [config]="gridConfig" [formGroup]="myFormsOne" qdConnectFormStateToPage="myFormsOne">
|
|
30632
30632
|
* <!-- your qd-form-components here -->
|
|
30633
30633
|
* </qd-grid>
|
|
30634
30634
|
* </qd-section>
|
|
30635
30635
|
* </qd-page-step>
|
|
30636
|
-
* <qd-page-step [config]="stepConfigTwo">
|
|
30636
|
+
* <qd-page-step [config]="stepConfigTwo" [stepControl]="myFormsTwo">
|
|
30637
30637
|
* <qd-section [config]="sectionConfig">
|
|
30638
30638
|
* <qd-grid [config]="gridConfig" [formGroup]="myFormsTwo" qdConnectFormStateToPage="myFormsTwo">
|
|
30639
30639
|
* <!-- your qd-form-components here -->
|