@concretecms/bedrock 1.2.1 → 1.2.2

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.
@@ -9,7 +9,8 @@ import '../../../cms/js/file-manager/file-manager'
9
9
  options = $.extend({
10
10
  bID: 0,
11
11
  allowFileUploading: false,
12
- allowInPageFileManagement: false
12
+ allowInPageFileManagement: false,
13
+ advancedSearchDisplayed: false
13
14
  }, options)
14
15
 
15
16
  this.options = options
@@ -119,6 +120,9 @@ import '../../../cms/js/file-manager/file-manager'
119
120
  $details.show()
120
121
  }
121
122
  })
123
+ if (this.options.advancedSearchDisplayed) {
124
+ $('a[data-document-library-advanced-search]').trigger('click')
125
+ }
122
126
  }
123
127
 
124
128
  ConcreteDocumentLibrary.prototype.setupEditProperties = function() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@concretecms/bedrock",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "The asset framework and dependencies for Concrete CMS.",
5
5
  "scripts": {
6
6
  "lint": "standardx \"**/*.{js,vue}\" && stylelint assets/**/*.{scss,vue}",