@unitybase/adminui-vue #
Added #
1.10.8 2020-04-24 #
- Login page for UB EE will indicate license is exceed (UB server should be >= 5.18.1. For UB < 5.18.1 feature skipped)
UButtoncomponent. Recommended to use instead of element-ui button. See documentation hereUIconcomponent. See documentation hereUTableEntity, UMasterDetailViewability to customize filters templates and labels. See documentation here- immediate checking of
isDirtystore getter inside Ext component becauseisDirtycould be marked astruebefore watcher was sets UChatcomponent - a discussion attached to some instance. See documentation here
1.10.7 2020-04-10 #
UMasterDetailView: added dropdown with details into toolbarUSidebar- additional parametercontextMenuPayload(contains all ubm_navshortcut attributes) added to ubm_navshortcut.showForm action; Can be used in form forubm_navshortcutUSidebarcontext menu work not only for sidebar item, but for empty space. In case user right-clicking on empty space then action is applied to current desktop. This allow to create a nav shortcut for newly created desktopsForm/processing,UTableEntityadded possibility to replace default deletion confirmation message for each entity separately. Add row to locale file according template:{ 'ENTITY:deleteInquiry': 'Delete {1} from {0}' }, whereENTITYis entity code,{0}- translated entity name and{1}is instance description attribute.UDialogaddeddialogDeleteRecord- 'YesNo' dialog which compute delitation message. Also, added to Vue.prototype.$dialogDeleteRecordUForm/processingadded hooksbeforeCopyandcopiedfor actionCopyinUTableEntityUFormparamisCopy. Creates copy of existing record
Changed #
1.10.8 2020-04-24 #
UInput/LocaleButtonin case field is required - localization field will always required. In case dialog is not opened fields will be filled automatically.css variablesprimary and warning colors little lighter.UFormRowerror text to lighterUSelectMultipleincrease font-size to 16px according other componentsUFormRowdecrease labelfont-sizefrom16pxto14px
1.10.7 2020-04-10 #
UMasterDetailView: details labels will contains only relation entity name (without attribute) in case only one attribute points to this entityForm/processing,UTableEntityimprove deletion confirmation message according templateRecord [instance description attr value] will be deleted from the [entity caption]. Are You sure?
1.10.6 2020-04-03 #
UFilepreview dialog now opened a full screen mode (instead of 80% screen height)UFileCollectionwidth of column 'size' increased to prevent row wrapcssreference for box shadow css variableUToolbarbuttonssaveandsave and closerepainted primary blue color
Fixed #
1.10.8 2020-04-24 #
UTableEntityin case row was deleted disable action buttons before choosing another rowUTableEntitypassisCopyparam to autoformsUForm/processingduring copying record setcanSaveparams totrue
1.10.7 2020-04-10 #
UTableEntitytoolbar slots. They overlapped the original action content but did not display provided slot- typo for
valueIsUndefinedin ru and uk languages, also fixed az translation for new keys UTableEntitycopy action in context menu. It copies the data of an existing record and creates a new with new collections records
1.10.6 2020-04-03 #
USidebarcorrect target of contextmenu click. In case on click contextmenu level 3 and more
@unitybase/adminui-pub #
Changed #
5.13.6 2020-04-03 #
- Ext based forms label text weight changed from 600 to 400 (better looks with new Roboto font)
- for all Ext controls (except for labels) text weight changed from 600 to 500 (better looks with new Roboto font)
- Colors according blue theme. Repainted to primary blue:
- grid selected cell
- toolbar buttons
Fixed #
5.13.8 2020-04-24 #
- Ext grid: change "load filter configuration" icon to
far fa-folder-openfa fa-folderis missing in FontAwesome5 - Ext
ComboBox"Select from dictionary" action will show Vue based dictionary with "Select" button (before this patch "Select" button is missing)
5.13.7 2020-04-10 #
- random invalid session signature calculation (in @unitybase/csShared/UBSession.js) what cause a 401 server response
and re-logon for UB authentication schema of self-circling for Kerberos.
The root of problem is variable declaration (
let/const) insideswitchblock - such construction MUST NOT BE USED
5.13.6 2020-04-03 #
- use
fas fa-box-openas Drop Zone icon (fa fa-dropbox not present in font awesome 5)
@unitybase/base #
Added #
5.2.5 2020-04-10 #
DBConnection.selectParsedAsObject(sql, params)method - the same asrunParsedbut returns Array<Object> instead of String
Changed #
5.2.5 2020-04-10 #
- DBConnection unit moved into @unitybase/base from @unitybase/ub; This allows to use it in shell scripts (App.dbConnections available as before)
@unitybase/cs-shared #
Fixed #
5.2.5 2020-04-10 #
- random invalid session signature calculation what cause a 401 server response and re-logon for
UB authentication schema of self-circling for Kerberos.
The root of problem is variable declaration (
let/const) insideswitchblock - such construction MUST NOT BE USED
@unitybase/pdf #
Fixed #
5.0.31 2020-04-10 #
- fix potential invalid position calculation in HTLMToPdf (invalid use of let inside switch)
@unitybase/ub-pub #
Added #
5.5.7 2020-04-24 #
licenseExceedTexti18n client locale
Fixed #
5.5.6 2020-04-10 #
- random invalid session signature calculation (in @unitybase/csShared/UBSession.js) what cause a 401 server response
and re-logon for UB authentication schema of self-circling for Kerberos.
The root of problem is variable declaration (
let/const) insideswitchblock - such construction MUST NOT BE USED
@unitybase/ub #
Added #
5.4.7 2020-04-24 #
isLicenseExceedproperty added togetAppInfoendpoint result (UB EE).truein case license is exceed. Undefined in other cases.
5.4.6 2020-04-10 #
- in case of unexpected exception inside metadata initialization entity name which cause an error will be logged
Changed #
5.4.7 2020-04-24 #
- ServerRepository will check for total (in case builds using
.withTotal(true)) inDataStore.totalRowCountproperty instead of switching DataStore to.currentDataName = '__totalRecCount'
5.4.6 2020-04-10 #
- DBConnection unit moved into @unitybase/base from @unitybase/ub; This allows to use it in shell scripts (App.dbConnections available as before)
Removed #
5.4.7 2020-04-24 #
- BREAKING UBQL with
options.totalRequired = trueno longer create a separate DataStore namespace__totalRecCount.
To get a total record count propertyDataStore.totalRowCountshould be used instead.
This only affect a UB 1.12 legacy code like this:
should be replaced byif (mParams.options.totalRequired) { ctx.dataStore.currentDataName = "__totalRecCount"; mParams.__totalRecCount = (ctx.dataStore.rowCount) ? ctx.dataStore.get(0) : ctx.dataStore.rowCount; ctx.dataStore.currentDataName = ""; }
or simply removed - UB5.18.1 will add aif (mParams.options.totalRequired) { mParams.__totalRecCount = ctx.dataStore.totalRowCount }mParams.__totalRecCountoutput parameter automatically
@unitybase/ubm #
Changed #
5.3.7 2020-04-24 #
ubm_navshotrcut.iconClsproperty caption changed from "icon css class name" -> "Icon (CSS class)" (also for ru and uk)
5.3.6 2020-04-10 #
- ubm_navshortcut.isFolder i18n changed for uk/ru
Папка -> Группа
