@mjhls/mjh-framework 1.0.188 → 1.0.189
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/README.md +1 -1
- package/dist/index.es.js +5 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.es.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React__default, { Component, useState, useEffect, useRef,
|
|
1
|
+
import React__default, { Component, useState, useEffect, useRef, createElement, createContext } from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import reactDom from 'react-dom';
|
|
4
4
|
import Container from 'react-bootstrap/Container';
|
|
@@ -10222,6 +10222,10 @@ var html_map = {
|
|
|
10222
10222
|
};
|
|
10223
10223
|
|
|
10224
10224
|
var html_decode = function html_decode(string) {
|
|
10225
|
+
if (!string) {
|
|
10226
|
+
return string;
|
|
10227
|
+
}
|
|
10228
|
+
|
|
10225
10229
|
var entityMap = html_map;
|
|
10226
10230
|
for (var key in entityMap) {
|
|
10227
10231
|
var entity = entityMap[key];
|