@linzjs/lui 21.38.2 → 21.39.1

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/lui.esm.js CHANGED
@@ -567,6 +567,8 @@ iconMap['ic_placeholder'] = (React__default.createElement("svg", { viewBox: "0 0
567
567
  iconMap['ic_plan_generation'] = (React__default.createElement("svg", { viewBox: "0 0 24 24" },
568
568
  React__default.createElement("g", null,
569
569
  React__default.createElement("path", { d: "M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m0 14H3V6h18zm-6.5-7L11 15.51 8.5 12.5 5 17h14z" }))));
570
+ iconMap['ic_pointer_outlined'] = (React__default.createElement("svg", { viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg" },
571
+ React__default.createElement("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M19.2254 15.7324L14.2019 10.7768L20 8.82125L4 3.99902L8.80221 19.999L10.7054 14.2212L15.7068 19.2657L19.2254 15.7324ZM10.1081 11.5323L15.707 17.2212L17.1676 15.7767L11.5244 10.1101L15.1537 8.91008L6.19107 6.22119L8.89093 15.2212L10.1081 11.5323Z", fill: "currentColor" })));
570
572
  iconMap['ic_plus_one'] = (React__default.createElement("svg", { viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg" },
571
573
  React__default.createElement("g", null,
572
574
  React__default.createElement("path", { d: "M10 8H8v4H4v2h4v4h2v-4h4v-2h-4V8Zm4.5-1.92V7.9l2.5-.5V18h2V5l-4.5 1.08Z" }))));
@@ -59624,8 +59626,9 @@ var toastFunctions = function (dispatch) {
59624
59626
  };
59625
59627
  var banner = function (level, defaults) {
59626
59628
  if (defaults === void 0) { defaults = {}; }
59627
- return function (children, options) {
59628
- if (options === void 0) { options = defaults; }
59629
+ return function (children, config) {
59630
+ if (config === void 0) { config = {}; }
59631
+ var options = __assign(__assign({}, defaults), config);
59629
59632
  return toast(function (_a) {
59630
59633
  var onDismiss = _a.close;
59631
59634
  return (React.createElement(LuiBannerV2, __assign({}, { level: level, children: children, onDismiss: onDismiss })));