billy-herrington-utils 2.0.5 → 2.0.6
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.
- package/dist/billy-herrington-utils.es.js +2 -1
- package/dist/billy-herrington-utils.es.js.map +1 -1
- package/dist/billy-herrington-utils.umd.js +2 -1
- package/dist/billy-herrington-utils.umd.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/userscripts/rules/index.ts +3 -1
|
@@ -6091,7 +6091,7 @@ function Hu(e, t = [], n) {
|
|
|
6091
6091
|
return r;
|
|
6092
6092
|
}
|
|
6093
6093
|
class RulesGlobal {
|
|
6094
|
-
constructor() {
|
|
6094
|
+
constructor(options) {
|
|
6095
6095
|
__publicField(this, "delay");
|
|
6096
6096
|
__publicField(this, "alternativeGenerator");
|
|
6097
6097
|
__publicField(this, "titleSelector");
|
|
@@ -6121,6 +6121,7 @@ class RulesGlobal {
|
|
|
6121
6121
|
__publicField(this, "dataManager");
|
|
6122
6122
|
__publicField(this, "infiniteScroller");
|
|
6123
6123
|
__publicField(this, "initialGrope");
|
|
6124
|
+
Object.assign(this, options);
|
|
6124
6125
|
this.paginationStrategy = getPaginationStrategy(this.paginationStrategyOptions);
|
|
6125
6126
|
this.store = new js(this.storeOptions);
|
|
6126
6127
|
const scheme = Hu(this.defaultSchemeOptions, this.customScheme);
|