@unitybase/adminui-vue #
Changed #
1.0.11 2018-08-26 #
- update element-ui to 2.4.5 (2.4.6 not theme is compiled)
Fixed #
1.0.9 2018-08-14 #
- theme will set ExtJS fieldset border radius to 4px
1.0.8 2018-08-01 #
- ub-auth.html: hide password on password input (type="password")
@unitybase/adminui-pub #
Added #
5.4.4 2018-08-14 #
ubConfig.uiSettings.adminUI.customSidebar
&ubConfig.uiSettings.adminUI.customSidebar
config properties added. In case explicitly set to true, then adminUI will not create navbar/sidebar
Changed #
5.4.10 2018-08-29 #
please, do nou use this revision - upgrade to 5.5.0
5.4.3 2018-08-13 #
- es6 syntax in code editors is enabled by default
5.4.2 2018-08-06 #
- remove unused Ext classes
Ext.direct.*; Ext.data.jsonp; Ext.form.action.DirectLoad; Ext.data.flash.BinaryXhr; Ext.flash.Component
5.4.0 2018-08-03 #
- BREAKING more strict Content Security Policy header: script-src 'unsafe-inline' directive is removed in flavor of 'nonce-...'
- prevent redirect to custom login page in case of silenceKerberosLogin is true in localStorage
- use
Fixed #
5.4.7 2018-08-25 #
- add logicalPredicates for request when choose "selectFromDictionary" on
ubcombobox
5.4.5 2018-08-14 #
- required label asterisk: aligned to left in case label on top; removed for checkbox
5.4.1 2018-08-06 #
- prevent SystemJS to override global window.onerror handler defined by ub-pub by removing
nonce-
rule from SystemJS config
5.4.0 2018-08-03 #
- added property
$App.__scanService: UBNativeScanner
- increase left panel desktop select height to 3rem for fit 2-line caption [UBDF-7808]
- #2 - refs to attributes of "many" type should not be displayed in Details for EntityGridPanel.
As a side effect - entities without accessible
select
should not be displayed also. - reload store for combobox before row edit on ubdetailgrid
@unitybase/adminui-reg #
Fixed #
5.0.37 2018-08-06 #
- allow blob: source for object-src and frame-src CSP rules. It required by pdf viewer
@unitybase/blob-stores #
Changed #
5.0.12 2018-08-03 #
- file system based BLOB store will use default tempPath:
path.join(this.path, '_temp')
to prevent a situation from [unitybase/ub-server#11]
@unitybase/compressors #
Added #
5.1.0 2018-08-12 #
- ZipReader & ZipWriter classes added
Fixed #
5.1.3 2018-08-29 #
- Ubuntu 18 support
@unitybase/mailer #
Fixed #
5.1.0 2018-08-29 #
- Ubuntu 18 support
@unitybase/org #
Changed #
5.1.0 2018-08-13 #
- all fullName* attributes sizes increased to 300 for org_department, org_employee and org_organization
Fixed #
5.1.0 2018-08-13 #
- syntax error in org_employeenstaff.caption isMultilang attribute
5.0.39 2018-08-08 #
- set
uData.orgUnitIDs
order as org_unit.mi_treePath
@unitybase/pdf #
Fixed #
5.0.10 2018-08-08 #
PrintToPDF.requireFonts
documentation- parameter "compress" of constructor PrintToPdf was not enable content compression
@unitybase/ub-pub #
Added #
5.2.3 2018-08-15 #
- allow to override UBConnection requestAuthParams after connection is created (for custom UI for example)
function myLoginForm(connection, isRepeat) {
return new Promise((resolve, reject) => {
resolve({
authSchema: 'UB',
login: '....',
password: '.....',
registration: 0
})
}
}
UB.connection.setRequestAuthParamsFunction(myLoginForm)
5.2.2 2018-08-03 #
- UBConnection will store last auth schema to localStorage key (UB.LDS_KEYS.LAST_AUTH_SCHEMA) if LDS is available
@unitybase/ubs #
Added #
5.1.7 2018-08-28 #
- in HTML reports
$fs
function will display negative numbers using red text color
5.1.5 2018-08-27 #
showReport
command can silently (without asking used for input) create parametrised report in casereportParams
parameter contains non-empty object
$App.doCommand({
"cmdType": "showReport",
"description": "OPTIONAL report form caption",
"cmdData": {
"reportCode": "test",
"reportType": "html",
"reportParams": {
"name": "Mark",
"birthday": new Date(),
"limitation": 2
}
}
5.1.0 2018-08-11 #
- generic mechanism for follow hyperlink (drill down) is added to report builder. See report with code click_sample for usage example
Changed #
5.1.0 2018-08-11 #
- dramatically increase HTML report viewer by replacing TinyMCE to plain iframe
- report code module now required once in the same manner forms are required
- HMR now works for report code modules
Fixed #
5.1.6 2018-08-28 #
- fix case when reportParams not passed to $App.doCommand for
showReport