@schukai/monster 2.0.4 → 2.0.5

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -72,10 +72,10 @@ We do try to work around some browser bugs, but on the whole we don't use polyfi
72
72
 
73
73
  However, many functions can be mapped via [polyfill.io](https://polyfill.io/) and thus the compatibility can be increased.
74
74
 
75
- ```
76
- <script id="polyfill" src="https://polyfill.io/v3/polyfill.min.js?features=Array.from,Array.isArray,Array.prototype.entries,Array.prototype.fill,Array.prototype.forEach,Array.prototype.indexOf,Array.prototype.keys,Array.prototype.lastIndexOf,Array.prototype.map,Array.prototype.reduce,Array.prototype.sort,ArrayBuffer,atob,DataView,document,DocumentFragment,Element,Event,globalThis,HTMLDocument,HTMLTemplateElement,JSON,Map,Math.log2,Number.isInteger,Object.assign,Object.defineProperty,Object.entries,Object.getOwnPropertyDescriptor,Object.getPrototypeOf,Object.keys,Promise,Reflect,Reflect.defineProperty,Reflect.get,Reflect.getOwnPropertyDescriptor,Reflect.setPrototypeOf,Set,String.prototype.endsWith,String.prototype.matchAll,String.prototype.padStart,String.prototype.startsWith,String.prototype.trim,Symbol,Symbol.iterator,WeakMap,WeakSet"
77
- crossorigin="anonymous"
78
- referrerpolicy="no-referrer"></script>
75
+ ```html
76
+ <script id="polyfill" src="https://polyfill.io/v3/polyfill.min.js?feat"
77
+ crossorigin="anonymous"
78
+ referrerpolicy="no-referrer"></script>
79
79
  ```
80
80
 
81
81
  ## Questions
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schukai/monster",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "description": "Monster is a simple library for creating fast, robust and lightweight websites.",
5
5
  "keywords": [
6
6
  "framework",
@@ -22,7 +22,6 @@ export {AbstractConstraint} from "./constraints/abstract.mjs"
22
22
  export {IsArray} from "./constraints/isarray.mjs"
23
23
  export {AbstractOperator} from "./constraints/abstractoperator.mjs"
24
24
  export {Valid} from "./constraints/valid.mjs"
25
- export {Monster} from "./monster.mjs"
26
25
  export {Logger, ALL, TRACE, DEBUG, INFO, WARN, ERROR, FATAL, OFF} from "./logging/logger.mjs"
27
26
  export {LogEntry} from "./logging/logentry.mjs"
28
27
  export {ConsoleHandler} from "./logging/handler/console.mjs"
@@ -126,7 +125,7 @@ export {FocusManager} from "./dom/focusmanager.mjs"
126
125
  export {ATTRIBUTEPREFIX, Assembler} from "./dom/assembler.mjs"
127
126
  export {Translations} from "./i18n/translations.mjs"
128
127
  export {Locale, parseLocale} from "./i18n/locale.mjs"
129
- export {Formatter} from "./i18n/formatter.mjs"
128
+ export {I18nFormatter} from "./i18n/formatter.mjs"
130
129
  export {Fetch} from "./i18n/providers/fetch.mjs"
131
130
  export {Provider} from "./i18n/provider.mjs"
132
131
  export {
@@ -137,7 +137,7 @@ function getMonsterVersion() {
137
137
  }
138
138
 
139
139
  /** don't touch, replaced by make with package.json version */
140
- monsterVersion = new Version('2.0.4')
140
+ monsterVersion = new Version('2.0.5')
141
141
 
142
142
  return monsterVersion;
143
143
 
@@ -7,7 +7,7 @@ describe('Monster', function () {
7
7
  let monsterVersion
8
8
 
9
9
  /** don´t touch, replaced by make with package.json version */
10
- monsterVersion = new Version('2.0.4')
10
+ monsterVersion = new Version('2.0.5')
11
11
 
12
12
  let m = getMonsterVersion();
13
13