diff --git a/docs/V5/BlazorStrap5.WASM.styles.css b/docs/V5/BlazorStrap5.WASM.styles.css deleted file mode 100644 index a5384fa4..00000000 --- a/docs/V5/BlazorStrap5.WASM.styles.css +++ /dev/null @@ -1,2 +0,0 @@ -@import '_content/BlazorStrap5/BlazorStrap5.bundle.scp.css'; - diff --git a/docs/V5/_content/BlazorStrap5/BlazorStrap5.bundle.scp.css b/docs/V5/_content/BlazorStrap5/BlazorStrap5.bundle.scp.css deleted file mode 100644 index 1d5f679f..00000000 --- a/docs/V5/_content/BlazorStrap5/BlazorStrap5.bundle.scp.css +++ /dev/null @@ -1,54 +0,0 @@ -/* _content/BlazorStrap5/Components/BootstrapComponents/BSDropdown.razor.rz.scp.css */ -.dropdown-submenu[b-9x46rxgzm1] { - position: relative; -} - - - .dropdown-submenu[b-9x46rxgzm1]::after { - transform: rotate(-90deg); - position: absolute; - right: 6px; - top: .8em; - } - - .dropdown-submenu .dropdown-menu[b-9x46rxgzm1] { - top: 0; - left: 100%; - margin-left: 0rem; - margin-right: .1rem; - } -/* _content/BlazorStrap5/Components/BootstrapComponents/BSPopover.razor.rz.scp.css */ -.popover:not(.show)[b-gaolm2rsn4] { - visibility:hidden; -} -/* _content/BlazorStrap5/Components/BootstrapComponents/BSToggle.razor.rz.scp.css */ -.dropdown-submenu button.dropdown-toggle[b-x9i4nx6clv] { - width: 100%; -} - - .dropdown-submenu button.dropdown-toggle[b-x9i4nx6clv]::after, - .dropdown-submenu a[b-x9i4nx6clv]::after { - transform: rotate(-90deg); - } -/* _content/BlazorStrap5/Components/BootstrapComponents/BSTooltip.razor.rz.scp.css */ -.popover:not(.show)[b-3fzdt0s2ri] { - visibility:hidden; -} -/* _content/BlazorStrap5/InternalComponents/Error.razor.rz.scp.css */ -.bserror[b-atxsh0ki4f] { - padding: .25rem 1rem; - margin-top: 1.25rem; - margin-bottom: 1.25rem; - border: 1px solid #d8d8d8; - border-left-width: .2rem; - border-right-width: .2rem; - border-radius: .25rem; - border-left-color: var(--bs-red); - border-right-color: var(--bs-red); -} -.bserror-header[b-atxsh0ki4f] { - font-size: 1.5em; -} - .bserror-header svg[b-atxsh0ki4f]{ - vertical-align: middle; - } diff --git a/docs/V5/_content/BlazorStrap5/background.png b/docs/V5/_content/BlazorStrap5/background.png deleted file mode 100644 index e15a3bde..00000000 Binary files a/docs/V5/_content/BlazorStrap5/background.png and /dev/null differ diff --git a/docs/V5/_content/BlazorStrap5/blazorstrap.js b/docs/V5/_content/BlazorStrap5/blazorstrap.js deleted file mode 100644 index b30f0042..00000000 --- a/docs/V5/_content/BlazorStrap5/blazorstrap.js +++ /dev/null @@ -1,329 +0,0 @@ -// noinspection JSUnusedGlobalSymbols - - -window.blazorStrap = { - EventHandlers: [], - AddEvent: async function (id, name, type, isDocument = false, ignoreChildren = false, filter = "") { - return new Promise(function (resolve) { - let element; - if (isDocument) - element = document; - else - element = document.querySelector("[data-blazorstrap='" + id + "']"); - if (blazorStrap.EventHandlers[id] === undefined) { - blazorStrap.EventHandlers[id] = {}; - } - blazorStrap.EventHandlers[id][name] = { - [type]: { - Callback: function (event) { - if (name === "documentDropdown") { - let parent = document.querySelector("[data-blazorstrap='" + id + "']"); - if (parent !== null) { - if (parent.contains(event.target)) - { - if(event.target.classList.contains("dropdown-toggle")) { - return; - } - } - } - } - if (ignoreChildren) { - let parent = document.querySelector("[data-blazorstrap='" + id + "']"); - if (parent !== null) { - if (parent.contains(event.target)) - return; - } - } - if (filter === "") { - // noinspection JSUnresolvedVariable,JSUnresolvedFunction - DotNet.invokeMethodAsync("BlazorStrap5", "EventCallback", id, name, type, element.classList, blazorStrap.GetEvents(event)); - } else if (element.getElementsByClassName(filter)) { - // noinspection JSUnresolvedVariable,JSUnresolvedFunction - DotNet.invokeMethodAsync("BlazorStrap5", "EventCallback", id, name, type, element.classList, blazorStrap.GetEvents(event)); - } - } - } - } - - element.addEventListener(type, blazorStrap.EventHandlers[id][name][type].Callback, false); - resolve(); - }); - }, - RemoveEvent: async function (id, name, type, isDocument = false) { - return new Promise(function (resolve) { - //Me being lazy fix issue caused by event listener already being removed else where - - let element; - if (isDocument) - element = document; - else - element = document.querySelector("[data-blazorstrap='" + id + "']"); - if (blazorStrap.EventHandlers[id] === undefined) return resolve(); - if (name !== "null" && type !== "null") { - - if (blazorStrap.EventHandlers[id][name] === undefined) return resolve(); - if (blazorStrap.EventHandlers[id][name][type] === undefined) return resolve(); - if (blazorStrap.EventHandlers[id][name][type] !== undefined && blazorStrap.EventHandlers[id][name][type] !== null) { - if (element !== undefined && element !== null) { - element.removeEventListener(type, blazorStrap.EventHandlers[id][name][type].Callback, false); - } - delete blazorStrap.EventHandlers[id][name][type]; - } - if (Object.keys(blazorStrap.EventHandlers[id][name]).length === 0) { - delete blazorStrap.EventHandlers[id][name]; - } - } - if (Object.keys(blazorStrap.EventHandlers[id]).length === 0) { - delete blazorStrap.EventHandlers[id]; - } - - resolve(); - }); - }, - TransitionDidNotStart: async function (element) { - return new Promise(function (resolve) { - const timeout = setTimeout(function () { - resolve(true); - }, 200); - element.ontransitionstart = function () { - resolve(false); - clearTimeout(timeout); - } - }).then((data) => data); - }, - RemovePopover: async function (element, id) { - return new Promise(function (resolve) { - if (blazorStrap.EventHandlers[id] === undefined) return resolve(); - if (blazorStrap.EventHandlers[id][name] === undefined) return resolve(); - if (blazorStrap.EventHandlers[id]["Popover"] !== undefined) { - blazorStrap.EventHandlers[id].Popover.destroy(); - delete blazorStrap.EventHandlers[id].Popover; - resolve(); - } - }); - }, - AddPopover: async function (element, dotNetObjectReference, position, target, offset = "none") { - return new Promise(function (resolve) { - const id = element.getAttribute("data-blazorstrap"); - target = document.querySelector("[data-blazorstrap='" + target + "']"); - if (blazorStrap.EventHandlers[id] === undefined) { - blazorStrap.EventHandlers[id] = {}; - } - if (offset !== "none") { - offset = offset.split(","); - blazorStrap.EventHandlers[id]["Popover"] = - Popper.createPopper(target, element, { - placement: position, - modifiers: [{ - name: 'offset', - options: { - offset: [parseInt(offset[0]), parseInt(offset[1])], - }, - }] - }); - - } else { - blazorStrap.EventHandlers[id]["Popover"] = - Popper.createPopper(target, element, { - placement: position, - }); - } - resolve(); - }); - }, - UpdatePopover: async function (element) { - const id = element.getAttribute("data-blazorstrap"); - return new Promise(function (resolve) { - setTimeout(async function () { - await blazorStrap.EventHandlers[id].Popover.update(); - return resolve(element.style.cssText); - }, 10) - }); - }, - UpdatePopoverArrow: async function (element, dotNetObjectReference, position, tooltip) { - const id = element.getAttribute("data-blazorstrap"); - let arrow; - return new Promise(function (resolve) { - if (tooltip === false) - arrow = element.querySelector('.popover-arrow'); - else - arrow = element.querySelector('.tooltip-arrow'); - position = position.replace("start", ""); - position = position.replace("end", ""); - switch (position) { - case "top": - arrow.style.transform = "translate(" + (element.offsetWidth / 2 - (arrow.offsetWidth / 2)) + "px, 0px)"; - if (!tooltip) - blazorStrap.EventHandlers[id].Popover.setOptions({ - modifiers: [{ - name: 'offset', - options: {offset: [0, arrow.offsetHeight],}, - }] - }); - break; - case "bottom": - arrow.style.transform = "translate(" + (element.offsetWidth / 2 - (arrow.offsetWidth / 2)) + "px, 0px)"; - if (!tooltip) - blazorStrap.EventHandlers[id].Popover.setOptions({ - modifiers: [{ - name: 'offset', - options: {offset: [0, arrow.offsetHeight],}, - }] - }); - break; - case "left": - arrow.style.transform = "translate(0px, " + (element.offsetHeight / 2 - (arrow.offsetHeight / 2)) + "px)"; - if (!tooltip) - blazorStrap.EventHandlers[id].Popover.setOptions({ - modifiers: [{ - name: 'offset', - options: {offset: [0, arrow.offsetWidth],}, - }] - }); - break; - case "right": - arrow.style.transform = "translate(0px, " + (element.offsetHeight / 2 - (arrow.offsetHeight / 2)) + "px)"; - if (!tooltip) - blazorStrap.EventHandlers[id].Popover.setOptions({ - modifiers: [{ - name: 'offset', - options: {offset: [0, arrow.offsetWidth],}, - }] - }); - break; - } - resolve(); - }); - }, - PeakHeight: async function (element) { - return new Promise(function (resolve) { - element.style.visibility = "hidden"; - element.style.position = "absolute"; - element.style.display = "block"; - setTimeout(function () { - element.style.display = ""; - element.style.visibility = ""; - element.style.position = "" - }, 1); - resolve(element.offsetHeight); - }); - }, - GetHeight: async function (element) { - return new Promise(function (resolve) { - resolve(element.offsetHeight); - }); - }, - SetBodyStyle: async function (style, value) { - return new Promise(function (resolve) { - document.body.style[style] = value; - resolve(); - }); - }, - GetScrollBarWidth: async function () { - return new Promise(function (resolve) { - resolve(window.innerWidth - document.documentElement.clientWidth); - }); - }, - AddBodyClass: async function (className) { - return new Promise(function (resolve) { - document.body.classList.add(className); - resolve(); - }); - }, - RemoveBodyClass: async function (className) { - return new Promise(function (resolve) { - document.body.classList.remove(className); - resolve(); - }); - }, - SetStyle: async function (element, style, value, delay = 0) { - element.style[style] = value; - return new Promise(function (resolve) { - if (delay !== 0) - setTimeout(() => resolve(), delay); - else - resolve(); - }); - }, - GetStyle: async function (element) { - return element.style.cssText; - }, - AddAttribute: async function (element, name, value) { - return new Promise(function (resolve) { - element.setAttribute(name, value); - resolve(); - }); - }, - RemoveAttribute: async function (element, name) { - return new Promise(function (resolve) { - element.removeAttribute(name); - resolve(); - }); - }, - AddClass: async function (element, className, delay = 0) { - element.classList.add(className); - return new Promise(function (resolve) { - if (delay !== 0) - setTimeout(() => resolve(), delay); - else - resolve(); - }); - - }, - AnimateCarousel: async function (showEl, hideEl, back) { - return new Promise(function (resolve) { - if (back) { - showEl.classList.add("carousel-item-prev"); - setTimeout(function () { - showEl.classList.add("carousel-item-end"); - hideEl.classList.add("carousel-item-end"); - resolve(); - }, 10); - } else { - showEl.classList.add("carousel-item-next"); - setTimeout(function () { - showEl.classList.add("carousel-item-start"); - hideEl.classList.add("carousel-item-start"); - resolve(); - }, 10); - } - }) - }, - RemoveClass: async function (element, className, delay = 0) { - element.classList.remove(className); - return new Promise(function (resolve) { - if (delay !== 0) - setTimeout(() => resolve(), delay); - else - resolve(); - }); - }, - GetEvents: function (event) { - return { - key: event.key, - target: { - classList: event.target.classList, - targetId: event.target.getAttribute("data-blazorstrap-target"), - childrenId: blazorStrap.GetChildrenIds(event.target), - dataId: event.target.getAttribute("data-blazorstrap") - } - }; - }, - GetChildrenIds: function (target) { - const children = target.querySelectorAll("[data-blazorstrap]"); - let result = []; - for (i = 0; i < children; ++i) { - result.push(children[i].getAttribute("data-blazorstrap")) - } - return result; - } -} - -let ResizeFunc; -window.addEventListener("resize", function () { - clearTimeout(ResizeFunc); - ResizeFunc = setTimeout(function () { - // noinspection JSUnresolvedVariable,JSUnresolvedFunction - DotNet.invokeMethodAsync("BlazorStrap5", "ResizeComplete", document.documentElement.clientWidth); - }, 500); -}); diff --git a/docs/V5/_content/BlazorStrap5/exampleJsInterop.js b/docs/V5/_content/BlazorStrap5/exampleJsInterop.js deleted file mode 100644 index 5294766c..00000000 --- a/docs/V5/_content/BlazorStrap5/exampleJsInterop.js +++ /dev/null @@ -1,6 +0,0 @@ -// This is a JavaScript module that is loaded on demand. It can export any number of -// functions, and may import other JavaScript modules if required. - -export function showPrompt(message) { - return prompt(message, 'Type anything here'); -} diff --git a/docs/V5/_content/BlazorStrap5/popper.min.js b/docs/V5/_content/BlazorStrap5/popper.min.js deleted file mode 100644 index cb19f4dd..00000000 --- a/docs/V5/_content/BlazorStrap5/popper.min.js +++ /dev/null @@ -1,6 +0,0 @@ -/** - * @popperjs/core v2.9.2 - MIT License - */ - -"use strict"; !function (e, t) { "object" == typeof exports && "undefined" != typeof module ? t(exports) : "function" == typeof define && define.amd ? define(["exports"], t) : t((e = "undefined" != typeof globalThis ? globalThis : e || self).Popper = {}) }(this, (function (e) { function t(e) { return { width: (e = e.getBoundingClientRect()).width, height: e.height, top: e.top, right: e.right, bottom: e.bottom, left: e.left, x: e.left, y: e.top } } function n(e) { return null == e ? window : "[object Window]" !== e.toString() ? (e = e.ownerDocument) && e.defaultView || window : e } function o(e) { return { scrollLeft: (e = n(e)).pageXOffset, scrollTop: e.pageYOffset } } function r(e) { return e instanceof n(e).Element || e instanceof Element } function i(e) { return e instanceof n(e).HTMLElement || e instanceof HTMLElement } function a(e) { return "undefined" != typeof ShadowRoot && (e instanceof n(e).ShadowRoot || e instanceof ShadowRoot) } function s(e) { return e ? (e.nodeName || "").toLowerCase() : null } function f(e) { return ((r(e) ? e.ownerDocument : e.document) || window.document).documentElement } function p(e) { return t(f(e)).left + o(e).scrollLeft } function c(e) { return n(e).getComputedStyle(e) } function l(e) { return e = c(e), /auto|scroll|overlay|hidden/.test(e.overflow + e.overflowY + e.overflowX) } function u(e, r, a) { void 0 === a && (a = !1); var c = f(r); e = t(e); var u = i(r), d = { scrollLeft: 0, scrollTop: 0 }, m = { x: 0, y: 0 }; return (u || !u && !a) && (("body" !== s(r) || l(c)) && (d = r !== n(r) && i(r) ? { scrollLeft: r.scrollLeft, scrollTop: r.scrollTop } : o(r)), i(r) ? ((m = t(r)).x += r.clientLeft, m.y += r.clientTop) : c && (m.x = p(c))), { x: e.left + d.scrollLeft - m.x, y: e.top + d.scrollTop - m.y, width: e.width, height: e.height } } function d(e) { var n = t(e), o = e.offsetWidth, r = e.offsetHeight; return 1 >= Math.abs(n.width - o) && (o = n.width), 1 >= Math.abs(n.height - r) && (r = n.height), { x: e.offsetLeft, y: e.offsetTop, width: o, height: r } } function m(e) { return "html" === s(e) ? e : e.assignedSlot || e.parentNode || (a(e) ? e.host : null) || f(e) } function h(e) { return 0 <= ["html", "body", "#document"].indexOf(s(e)) ? e.ownerDocument.body : i(e) && l(e) ? e : h(m(e)) } function v(e, t) { var o; void 0 === t && (t = []); var r = h(e); return e = r === (null == (o = e.ownerDocument) ? void 0 : o.body), o = n(r), r = e ? [o].concat(o.visualViewport || [], l(r) ? r : []) : r, t = t.concat(r), e ? t : t.concat(v(m(r))) } function g(e) { return i(e) && "fixed" !== c(e).position ? e.offsetParent : null } function y(e) { for (var t = n(e), o = g(e); o && 0 <= ["table", "td", "th"].indexOf(s(o)) && "static" === c(o).position;)o = g(o); if (o && ("html" === s(o) || "body" === s(o) && "static" === c(o).position)) return t; if (!o) e: { if (o = -1 !== navigator.userAgent.toLowerCase().indexOf("firefox"), -1 === navigator.userAgent.indexOf("Trident") || !i(e) || "fixed" !== c(e).position) for (e = m(e); i(e) && 0 > ["html", "body"].indexOf(s(e));) { var r = c(e); if ("none" !== r.transform || "none" !== r.perspective || "paint" === r.contain || -1 !== ["transform", "perspective"].indexOf(r.willChange) || o && "filter" === r.willChange || o && r.filter && "none" !== r.filter) { o = e; break e } e = e.parentNode } o = null } return o || t } function b(e) { function t(e) { o.add(e.name), [].concat(e.requires || [], e.requiresIfExists || []).forEach((function (e) { o.has(e) || (e = n.get(e)) && t(e) })), r.push(e) } var n = new Map, o = new Set, r = []; return e.forEach((function (e) { n.set(e.name, e) })), e.forEach((function (e) { o.has(e.name) || t(e) })), r } function w(e) { var t; return function () { return t || (t = new Promise((function (n) { Promise.resolve().then((function () { t = void 0, n(e()) })) }))), t } } function x(e) { return e.split("-")[0] } function O(e, t) { var n = t.getRootNode && t.getRootNode(); if (e.contains(t)) return !0; if (n && a(n)) do { if (t && e.isSameNode(t)) return !0; t = t.parentNode || t.host } while (t); return !1 } function j(e) { return Object.assign({}, e, { left: e.x, top: e.y, right: e.x + e.width, bottom: e.y + e.height }) } function E(e, r) { if ("viewport" === r) { r = n(e); var a = f(e); r = r.visualViewport; var s = a.clientWidth; a = a.clientHeight; var l = 0, u = 0; r && (s = r.width, a = r.height, /^((?!chrome|android).)*safari/i.test(navigator.userAgent) || (l = r.offsetLeft, u = r.offsetTop)), e = j(e = { width: s, height: a, x: l + p(e), y: u }) } else i(r) ? ((e = t(r)).top += r.clientTop, e.left += r.clientLeft, e.bottom = e.top + r.clientHeight, e.right = e.left + r.clientWidth, e.width = r.clientWidth, e.height = r.clientHeight, e.x = e.left, e.y = e.top) : (u = f(e), e = f(u), s = o(u), r = null == (a = u.ownerDocument) ? void 0 : a.body, a = _(e.scrollWidth, e.clientWidth, r ? r.scrollWidth : 0, r ? r.clientWidth : 0), l = _(e.scrollHeight, e.clientHeight, r ? r.scrollHeight : 0, r ? r.clientHeight : 0), u = -s.scrollLeft + p(u), s = -s.scrollTop, "rtl" === c(r || e).direction && (u += _(e.clientWidth, r ? r.clientWidth : 0) - a), e = j({ width: a, height: l, x: u, y: s })); return e } function D(e, t, n) { return t = "clippingParents" === t ? function (e) { var t = v(m(e)), n = 0 <= ["absolute", "fixed"].indexOf(c(e).position) && i(e) ? y(e) : e; return r(n) ? t.filter((function (e) { return r(e) && O(e, n) && "body" !== s(e) })) : [] }(e) : [].concat(t), (n = (n = [].concat(t, [n])).reduce((function (t, n) { return n = E(e, n), t.top = _(n.top, t.top), t.right = U(n.right, t.right), t.bottom = U(n.bottom, t.bottom), t.left = _(n.left, t.left), t }), E(e, n[0]))).width = n.right - n.left, n.height = n.bottom - n.top, n.x = n.left, n.y = n.top, n } function L(e) { return 0 <= ["top", "bottom"].indexOf(e) ? "x" : "y" } function P(e) { var t = e.reference, n = e.element, o = (e = e.placement) ? x(e) : null; e = e ? e.split("-")[1] : null; var r = t.x + t.width / 2 - n.width / 2, i = t.y + t.height / 2 - n.height / 2; switch (o) { case "top": r = { x: r, y: t.y - n.height }; break; case "bottom": r = { x: r, y: t.y + t.height }; break; case "right": r = { x: t.x + t.width, y: i }; break; case "left": r = { x: t.x - n.width, y: i }; break; default: r = { x: t.x, y: t.y } }if (null != (o = o ? L(o) : null)) switch (i = "y" === o ? "height" : "width", e) { case "start": r[o] -= t[i] / 2 - n[i] / 2; break; case "end": r[o] += t[i] / 2 - n[i] / 2 }return r } function M(e) { return Object.assign({}, { top: 0, right: 0, bottom: 0, left: 0 }, e) } function k(e, t) { return t.reduce((function (t, n) { return t[n] = e, t }), {}) } function A(e, n) { void 0 === n && (n = {}); var o = n; n = void 0 === (n = o.placement) ? e.placement : n; var i = o.boundary, a = void 0 === i ? "clippingParents" : i, s = void 0 === (i = o.rootBoundary) ? "viewport" : i; i = void 0 === (i = o.elementContext) ? "popper" : i; var p = o.altBoundary, c = void 0 !== p && p; o = M("number" != typeof (o = void 0 === (o = o.padding) ? 0 : o) ? o : k(o, C)); var l = e.elements.reference; p = e.rects.popper, a = D(r(c = e.elements[c ? "popper" === i ? "reference" : "popper" : i]) ? c : c.contextElement || f(e.elements.popper), a, s), c = P({ reference: s = t(l), element: p, strategy: "absolute", placement: n }), p = j(Object.assign({}, p, c)), s = "popper" === i ? p : s; var u = { top: a.top - s.top + o.top, bottom: s.bottom - a.bottom + o.bottom, left: a.left - s.left + o.left, right: s.right - a.right + o.right }; if (e = e.modifiersData.offset, "popper" === i && e) { var d = e[n]; Object.keys(u).forEach((function (e) { var t = 0 <= ["right", "bottom"].indexOf(e) ? 1 : -1, n = 0 <= ["top", "bottom"].indexOf(e) ? "y" : "x"; u[e] += d[n] * t })) } return u } function W() { for (var e = arguments.length, t = Array(e), n = 0; n < e; n++)t[n] = arguments[n]; return !t.some((function (e) { return !(e && "function" == typeof e.getBoundingClientRect) })) } function B(e) { void 0 === e && (e = {}); var t = e.defaultModifiers, n = void 0 === t ? [] : t, o = void 0 === (e = e.defaultOptions) ? F : e; return function (e, t, i) { function a() { f.forEach((function (e) { return e() })), f = [] } void 0 === i && (i = o); var s = { placement: "bottom", orderedModifiers: [], options: Object.assign({}, F, o), modifiersData: {}, elements: { reference: e, popper: t }, attributes: {}, styles: {} }, f = [], p = !1, c = { state: s, setOptions: function (i) { return a(), s.options = Object.assign({}, o, s.options, i), s.scrollParents = { reference: r(e) ? v(e) : e.contextElement ? v(e.contextElement) : [], popper: v(t) }, i = function (e) { var t = b(e); return I.reduce((function (e, n) { return e.concat(t.filter((function (e) { return e.phase === n }))) }), []) }(function (e) { var t = e.reduce((function (e, t) { var n = e[t.name]; return e[t.name] = n ? Object.assign({}, n, t, { options: Object.assign({}, n.options, t.options), data: Object.assign({}, n.data, t.data) }) : t, e }), {}); return Object.keys(t).map((function (e) { return t[e] })) }([].concat(n, s.options.modifiers))), s.orderedModifiers = i.filter((function (e) { return e.enabled })), s.orderedModifiers.forEach((function (e) { var t = e.name, n = e.options; n = void 0 === n ? {} : n, "function" == typeof (e = e.effect) && (t = e({ state: s, name: t, instance: c, options: n }), f.push(t || function () { })) })), c.update() }, forceUpdate: function () { if (!p) { var e = s.elements, t = e.reference; if (W(t, e = e.popper)) for (s.rects = { reference: u(t, y(e), "fixed" === s.options.strategy), popper: d(e) }, s.reset = !1, s.placement = s.options.placement, s.orderedModifiers.forEach((function (e) { return s.modifiersData[e.name] = Object.assign({}, e.data) })), t = 0; t < s.orderedModifiers.length; t++)if (!0 === s.reset) s.reset = !1, t = -1; else { var n = s.orderedModifiers[t]; e = n.fn; var o = n.options; o = void 0 === o ? {} : o, n = n.name, "function" == typeof e && (s = e({ state: s, options: o, name: n, instance: c }) || s) } } }, update: w((function () { return new Promise((function (e) { c.forceUpdate(), e(s) })) })), destroy: function () { a(), p = !0 } }; return W(e, t) ? (c.setOptions(i).then((function (e) { !p && i.onFirstUpdate && i.onFirstUpdate(e) })), c) : c } } function T(e) { var t, o = e.popper, r = e.popperRect, i = e.placement, a = e.offsets, s = e.position, p = e.gpuAcceleration, l = e.adaptive; if (!0 === (e = e.roundOffsets)) { e = a.y; var u = window.devicePixelRatio || 1; e = { x: z(z(a.x * u) / u) || 0, y: z(z(e * u) / u) || 0 } } else e = "function" == typeof e ? e(a) : a; e = void 0 === (e = (u = e).x) ? 0 : e, u = void 0 === (u = u.y) ? 0 : u; var d = a.hasOwnProperty("x"); a = a.hasOwnProperty("y"); var m, h = "left", v = "top", g = window; if (l) { var b = y(o), w = "clientHeight", x = "clientWidth"; b === n(o) && ("static" !== c(b = f(o)).position && (w = "scrollHeight", x = "scrollWidth")), "top" === i && (v = "bottom", u -= b[w] - r.height, u *= p ? 1 : -1), "left" === i && (h = "right", e -= b[x] - r.width, e *= p ? 1 : -1) } return o = Object.assign({ position: s }, l && J), p ? Object.assign({}, o, ((m = {})[v] = a ? "0" : "", m[h] = d ? "0" : "", m.transform = 2 > (g.devicePixelRatio || 1) ? "translate(" + e + "px, " + u + "px)" : "translate3d(" + e + "px, " + u + "px, 0)", m)) : Object.assign({}, o, ((t = {})[v] = a ? u + "px" : "", t[h] = d ? e + "px" : "", t.transform = "", t)) } function H(e) { return e.replace(/left|right|bottom|top/g, (function (e) { return $[e] })) } function R(e) { return e.replace(/start|end/g, (function (e) { return ee[e] })) } function S(e, t, n) { return void 0 === n && (n = { x: 0, y: 0 }), { top: e.top - t.height - n.y, right: e.right - t.width + n.x, bottom: e.bottom - t.height + n.y, left: e.left - t.width - n.x } } function q(e) { return ["top", "right", "bottom", "left"].some((function (t) { return 0 <= e[t] })) } var C = ["top", "bottom", "right", "left"], N = C.reduce((function (e, t) { return e.concat([t + "-start", t + "-end"]) }), []), V = [].concat(C, ["auto"]).reduce((function (e, t) { return e.concat([t, t + "-start", t + "-end"]) }), []), I = "beforeRead read afterRead beforeMain main afterMain beforeWrite write afterWrite".split(" "), _ = Math.max, U = Math.min, z = Math.round, F = { placement: "bottom", modifiers: [], strategy: "absolute" }, X = { passive: !0 }, Y = { name: "eventListeners", enabled: !0, phase: "write", fn: function () { }, effect: function (e) { var t = e.state, o = e.instance, r = (e = e.options).scroll, i = void 0 === r || r, a = void 0 === (e = e.resize) || e, s = n(t.elements.popper), f = [].concat(t.scrollParents.reference, t.scrollParents.popper); return i && f.forEach((function (e) { e.addEventListener("scroll", o.update, X) })), a && s.addEventListener("resize", o.update, X), function () { i && f.forEach((function (e) { e.removeEventListener("scroll", o.update, X) })), a && s.removeEventListener("resize", o.update, X) } }, data: {} }, G = { name: "popperOffsets", enabled: !0, phase: "read", fn: function (e) { var t = e.state; t.modifiersData[e.name] = P({ reference: t.rects.reference, element: t.rects.popper, strategy: "absolute", placement: t.placement }) }, data: {} }, J = { top: "auto", right: "auto", bottom: "auto", left: "auto" }, K = { name: "computeStyles", enabled: !0, phase: "beforeWrite", fn: function (e) { var t = e.state, n = e.options; e = void 0 === (e = n.gpuAcceleration) || e; var o = n.adaptive; o = void 0 === o || o, n = void 0 === (n = n.roundOffsets) || n, e = { placement: x(t.placement), popper: t.elements.popper, popperRect: t.rects.popper, gpuAcceleration: e }, null != t.modifiersData.popperOffsets && (t.styles.popper = Object.assign({}, t.styles.popper, T(Object.assign({}, e, { offsets: t.modifiersData.popperOffsets, position: t.options.strategy, adaptive: o, roundOffsets: n })))), null != t.modifiersData.arrow && (t.styles.arrow = Object.assign({}, t.styles.arrow, T(Object.assign({}, e, { offsets: t.modifiersData.arrow, position: "absolute", adaptive: !1, roundOffsets: n })))), t.attributes.popper = Object.assign({}, t.attributes.popper, { "data-popper-placement": t.placement }) }, data: {} }, Q = { name: "applyStyles", enabled: !0, phase: "write", fn: function (e) { var t = e.state; Object.keys(t.elements).forEach((function (e) { var n = t.styles[e] || {}, o = t.attributes[e] || {}, r = t.elements[e]; i(r) && s(r) && (Object.assign(r.style, n), Object.keys(o).forEach((function (e) { var t = o[e]; !1 === t ? r.removeAttribute(e) : r.setAttribute(e, !0 === t ? "" : t) }))) })) }, effect: function (e) { var t = e.state, n = { popper: { position: t.options.strategy, left: "0", top: "0", margin: "0" }, arrow: { position: "absolute" }, reference: {} }; return Object.assign(t.elements.popper.style, n.popper), t.styles = n, t.elements.arrow && Object.assign(t.elements.arrow.style, n.arrow), function () { Object.keys(t.elements).forEach((function (e) { var o = t.elements[e], r = t.attributes[e] || {}; e = Object.keys(t.styles.hasOwnProperty(e) ? t.styles[e] : n[e]).reduce((function (e, t) { return e[t] = "", e }), {}), i(o) && s(o) && (Object.assign(o.style, e), Object.keys(r).forEach((function (e) { o.removeAttribute(e) }))) })) } }, requires: ["computeStyles"] }, Z = { name: "offset", enabled: !0, phase: "main", requires: ["popperOffsets"], fn: function (e) { var t = e.state, n = e.name, o = void 0 === (e = e.options.offset) ? [0, 0] : e, r = (e = V.reduce((function (e, n) { var r = t.rects, i = x(n), a = 0 <= ["left", "top"].indexOf(i) ? -1 : 1, s = "function" == typeof o ? o(Object.assign({}, r, { placement: n })) : o; return r = (r = s[0]) || 0, s = ((s = s[1]) || 0) * a, i = 0 <= ["left", "right"].indexOf(i) ? { x: s, y: r } : { x: r, y: s }, e[n] = i, e }), {}))[t.placement], i = r.x; r = r.y, null != t.modifiersData.popperOffsets && (t.modifiersData.popperOffsets.x += i, t.modifiersData.popperOffsets.y += r), t.modifiersData[n] = e } }, $ = { left: "right", right: "left", bottom: "top", top: "bottom" }, ee = { start: "end", end: "start" }, te = { name: "flip", enabled: !0, phase: "main", fn: function (e) { var t = e.state, n = e.options; if (e = e.name, !t.modifiersData[e]._skip) { var o = n.mainAxis; o = void 0 === o || o; var r = n.altAxis; r = void 0 === r || r; var i = n.fallbackPlacements, a = n.padding, s = n.boundary, f = n.rootBoundary, p = n.altBoundary, c = n.flipVariations, l = void 0 === c || c, u = n.allowedAutoPlacements; c = x(n = t.options.placement), i = i || (c !== n && l ? function (e) { if ("auto" === x(e)) return []; var t = H(e); return [R(e), t, R(t)] }(n) : [H(n)]); var d = [n].concat(i).reduce((function (e, n) { return e.concat("auto" === x(n) ? function (e, t) { void 0 === t && (t = {}); var n = t.boundary, o = t.rootBoundary, r = t.padding, i = t.flipVariations, a = t.allowedAutoPlacements, s = void 0 === a ? V : a, f = t.placement.split("-")[1]; 0 === (i = (t = f ? i ? N : N.filter((function (e) { return e.split("-")[1] === f })) : C).filter((function (e) { return 0 <= s.indexOf(e) }))).length && (i = t); var p = i.reduce((function (t, i) { return t[i] = A(e, { placement: i, boundary: n, rootBoundary: o, padding: r })[x(i)], t }), {}); return Object.keys(p).sort((function (e, t) { return p[e] - p[t] })) }(t, { placement: n, boundary: s, rootBoundary: f, padding: a, flipVariations: l, allowedAutoPlacements: u }) : n) }), []); n = t.rects.reference, i = t.rects.popper; var m = new Map; c = !0; for (var h = d[0], v = 0; v < d.length; v++) { var g = d[v], y = x(g), b = "start" === g.split("-")[1], w = 0 <= ["top", "bottom"].indexOf(y), O = w ? "width" : "height", j = A(t, { placement: g, boundary: s, rootBoundary: f, altBoundary: p, padding: a }); if (b = w ? b ? "right" : "left" : b ? "bottom" : "top", n[O] > i[O] && (b = H(b)), O = H(b), w = [], o && w.push(0 >= j[y]), r && w.push(0 >= j[b], 0 >= j[O]), w.every((function (e) { return e }))) { h = g, c = !1; break } m.set(g, w) } if (c) for (o = function (e) { var t = d.find((function (t) { if (t = m.get(t)) return t.slice(0, e).every((function (e) { return e })) })); if (t) return h = t, "break" }, r = l ? 3 : 1; 0 < r && "break" !== o(r); r--); t.placement !== h && (t.modifiersData[e]._skip = !0, t.placement = h, t.reset = !0) } }, requiresIfExists: ["offset"], data: { _skip: !1 } }, ne = { name: "preventOverflow", enabled: !0, phase: "main", fn: function (e) { var t = e.state, n = e.options; e = e.name; var o = n.mainAxis, r = void 0 === o || o, i = void 0 !== (o = n.altAxis) && o; o = void 0 === (o = n.tether) || o; var a = n.tetherOffset, s = void 0 === a ? 0 : a, f = A(t, { boundary: n.boundary, rootBoundary: n.rootBoundary, padding: n.padding, altBoundary: n.altBoundary }); n = x(t.placement); var p = t.placement.split("-")[1], c = !p, l = L(n); n = "x" === l ? "y" : "x", a = t.modifiersData.popperOffsets; var u = t.rects.reference, m = t.rects.popper, h = "function" == typeof s ? s(Object.assign({}, t.rects, { placement: t.placement })) : s; if (s = { x: 0, y: 0 }, a) { if (r || i) { var v = "y" === l ? "top" : "left", g = "y" === l ? "bottom" : "right", b = "y" === l ? "height" : "width", w = a[l], O = a[l] + f[v], j = a[l] - f[g], E = o ? -m[b] / 2 : 0, D = "start" === p ? u[b] : m[b]; p = "start" === p ? -m[b] : -u[b], m = t.elements.arrow, m = o && m ? d(m) : { width: 0, height: 0 }; var P = t.modifiersData["arrow#persistent"] ? t.modifiersData["arrow#persistent"].padding : { top: 0, right: 0, bottom: 0, left: 0 }; v = P[v], g = P[g], m = _(0, U(u[b], m[b])), D = c ? u[b] / 2 - E - m - v - h : D - m - v - h, u = c ? -u[b] / 2 + E + m + g + h : p + m + g + h, c = t.elements.arrow && y(t.elements.arrow), h = t.modifiersData.offset ? t.modifiersData.offset[t.placement][l] : 0, c = a[l] + D - h - (c ? "y" === l ? c.clientTop || 0 : c.clientLeft || 0 : 0), u = a[l] + u - h, r && (r = o ? U(O, c) : O, j = o ? _(j, u) : j, r = _(r, U(w, j)), a[l] = r, s[l] = r - w), i && (r = (i = a[n]) + f["x" === l ? "top" : "left"], f = i - f["x" === l ? "bottom" : "right"], r = o ? U(r, c) : r, o = o ? _(f, u) : f, o = _(r, U(i, o)), a[n] = o, s[n] = o - i) } t.modifiersData[e] = s } }, requiresIfExists: ["offset"] }, oe = { name: "arrow", enabled: !0, phase: "main", fn: function (e) { var t, n = e.state, o = e.name, r = e.options, i = n.elements.arrow, a = n.modifiersData.popperOffsets, s = x(n.placement); if (e = L(s), s = 0 <= ["left", "right"].indexOf(s) ? "height" : "width", i && a) { r = M("number" != typeof (r = "function" == typeof (r = r.padding) ? r(Object.assign({}, n.rects, { placement: n.placement })) : r) ? r : k(r, C)); var f = d(i), p = "y" === e ? "top" : "left", c = "y" === e ? "bottom" : "right", l = n.rects.reference[s] + n.rects.reference[e] - a[e] - n.rects.popper[s]; a = a[e] - n.rects.reference[e], a = (i = (i = y(i)) ? "y" === e ? i.clientHeight || 0 : i.clientWidth || 0 : 0) / 2 - f[s] / 2 + (l / 2 - a / 2), s = _(r[p], U(a, i - f[s] - r[c])), n.modifiersData[o] = ((t = {})[e] = s, t.centerOffset = s - a, t) } }, effect: function (e) { var t = e.state; if (null != (e = void 0 === (e = e.options.element) ? "[data-popper-arrow]" : e)) { if ("string" == typeof e && !(e = t.elements.popper.querySelector(e))) return; O(t.elements.popper, e) && (t.elements.arrow = e) } }, requires: ["popperOffsets"], requiresIfExists: ["preventOverflow"] }, re = { name: "hide", enabled: !0, phase: "main", requiresIfExists: ["preventOverflow"], fn: function (e) { var t = e.state; e = e.name; var n = t.rects.reference, o = t.rects.popper, r = t.modifiersData.preventOverflow, i = A(t, { elementContext: "reference" }), a = A(t, { altBoundary: !0 }); n = S(i, n), o = S(a, o, r), r = q(n), a = q(o), t.modifiersData[e] = { referenceClippingOffsets: n, popperEscapeOffsets: o, isReferenceHidden: r, hasPopperEscaped: a }, t.attributes.popper = Object.assign({}, t.attributes.popper, { "data-popper-reference-hidden": r, "data-popper-escaped": a }) } }, ie = B({ defaultModifiers: [Y, G, K, Q] }), ae = [Y, G, K, Q, Z, te, ne, oe, re], se = B({ defaultModifiers: ae }); e.applyStyles = Q, e.arrow = oe, e.computeStyles = K, e.createPopper = se, e.createPopperLite = ie, e.defaultModifiers = ae, e.detectOverflow = A, e.eventListeners = Y, e.flip = te, e.hide = re, e.offset = Z, e.popperGenerator = B, e.popperOffsets = G, e.preventOverflow = ne, Object.defineProperty(e, "__esModule", { value: !0 }) })); -//# sourceMappingURL=popper.min.js.map \ No newline at end of file diff --git a/docs/V5/_framework/BlazorStrap-Docs.dll b/docs/V5/_framework/BlazorStrap-Docs.dll index 1b661903..9236ba05 100644 Binary files a/docs/V5/_framework/BlazorStrap-Docs.dll and b/docs/V5/_framework/BlazorStrap-Docs.dll differ diff --git a/docs/V5/_framework/BlazorStrap-Docs.dll.br b/docs/V5/_framework/BlazorStrap-Docs.dll.br index ed300527..e6797684 100644 Binary files a/docs/V5/_framework/BlazorStrap-Docs.dll.br and b/docs/V5/_framework/BlazorStrap-Docs.dll.br differ diff --git a/docs/V5/_framework/BlazorStrap-Docs.dll.gz b/docs/V5/_framework/BlazorStrap-Docs.dll.gz index 0e2afcf8..34367c5b 100644 Binary files a/docs/V5/_framework/BlazorStrap-Docs.dll.gz and b/docs/V5/_framework/BlazorStrap-Docs.dll.gz differ diff --git a/docs/V5/_framework/BlazorStrap-Docs.pdb.gz b/docs/V5/_framework/BlazorStrap-Docs.pdb.gz index d0420b96..15d9a8ad 100644 Binary files a/docs/V5/_framework/BlazorStrap-Docs.pdb.gz and b/docs/V5/_framework/BlazorStrap-Docs.pdb.gz differ diff --git a/docs/V5/_framework/BlazorStrap.WASM.dll b/docs/V5/_framework/BlazorStrap.WASM.dll index 2b40af7d..c43b8cd6 100644 Binary files a/docs/V5/_framework/BlazorStrap.WASM.dll and b/docs/V5/_framework/BlazorStrap.WASM.dll differ diff --git a/docs/V5/_framework/BlazorStrap.WASM.dll.br b/docs/V5/_framework/BlazorStrap.WASM.dll.br index a088582e..30bc8fa0 100644 Binary files a/docs/V5/_framework/BlazorStrap.WASM.dll.br and b/docs/V5/_framework/BlazorStrap.WASM.dll.br differ diff --git a/docs/V5/_framework/BlazorStrap.WASM.dll.gz b/docs/V5/_framework/BlazorStrap.WASM.dll.gz index 5db5a986..7ef991cf 100644 Binary files a/docs/V5/_framework/BlazorStrap.WASM.dll.gz and b/docs/V5/_framework/BlazorStrap.WASM.dll.gz differ diff --git a/docs/V5/_framework/BlazorStrap.WASM.pdb.gz b/docs/V5/_framework/BlazorStrap.WASM.pdb.gz index cd7e1533..63a14da9 100644 Binary files a/docs/V5/_framework/BlazorStrap.WASM.pdb.gz and b/docs/V5/_framework/BlazorStrap.WASM.pdb.gz differ diff --git a/docs/V5/_framework/BlazorStrap.dll b/docs/V5/_framework/BlazorStrap.dll index bc8153d7..2ce44dd1 100644 Binary files a/docs/V5/_framework/BlazorStrap.dll and b/docs/V5/_framework/BlazorStrap.dll differ diff --git a/docs/V5/_framework/BlazorStrap.dll.br b/docs/V5/_framework/BlazorStrap.dll.br index 3a19e23d..a28912d1 100644 Binary files a/docs/V5/_framework/BlazorStrap.dll.br and b/docs/V5/_framework/BlazorStrap.dll.br differ diff --git a/docs/V5/_framework/BlazorStrap.dll.gz b/docs/V5/_framework/BlazorStrap.dll.gz index 8e87bb1f..07e7e8b9 100644 Binary files a/docs/V5/_framework/BlazorStrap.dll.gz and b/docs/V5/_framework/BlazorStrap.dll.gz differ diff --git a/docs/V5/_framework/BlazorStrap.pdb.gz b/docs/V5/_framework/BlazorStrap.pdb.gz index 903f4827..b5a29913 100644 Binary files a/docs/V5/_framework/BlazorStrap.pdb.gz and b/docs/V5/_framework/BlazorStrap.pdb.gz differ diff --git a/docs/V5/_framework/BlazorStrap5-Docs.dll b/docs/V5/_framework/BlazorStrap5-Docs.dll deleted file mode 100644 index e1a3d806..00000000 Binary files a/docs/V5/_framework/BlazorStrap5-Docs.dll and /dev/null differ diff --git a/docs/V5/_framework/BlazorStrap5-Docs.dll.br b/docs/V5/_framework/BlazorStrap5-Docs.dll.br deleted file mode 100644 index b4046436..00000000 Binary files a/docs/V5/_framework/BlazorStrap5-Docs.dll.br and /dev/null differ diff --git a/docs/V5/_framework/BlazorStrap5-Docs.dll.gz b/docs/V5/_framework/BlazorStrap5-Docs.dll.gz deleted file mode 100644 index 70ae48cd..00000000 Binary files a/docs/V5/_framework/BlazorStrap5-Docs.dll.gz and /dev/null differ diff --git a/docs/V5/_framework/BlazorStrap5-Docs.pdb.gz b/docs/V5/_framework/BlazorStrap5-Docs.pdb.gz deleted file mode 100644 index eacc2e9a..00000000 Binary files a/docs/V5/_framework/BlazorStrap5-Docs.pdb.gz and /dev/null differ diff --git a/docs/V5/_framework/BlazorStrap5.WASM.dll b/docs/V5/_framework/BlazorStrap5.WASM.dll deleted file mode 100644 index 6a17347b..00000000 Binary files a/docs/V5/_framework/BlazorStrap5.WASM.dll and /dev/null differ diff --git a/docs/V5/_framework/BlazorStrap5.WASM.dll.br b/docs/V5/_framework/BlazorStrap5.WASM.dll.br deleted file mode 100644 index ccdea118..00000000 Binary files a/docs/V5/_framework/BlazorStrap5.WASM.dll.br and /dev/null differ diff --git a/docs/V5/_framework/BlazorStrap5.WASM.dll.gz b/docs/V5/_framework/BlazorStrap5.WASM.dll.gz deleted file mode 100644 index b9880439..00000000 Binary files a/docs/V5/_framework/BlazorStrap5.WASM.dll.gz and /dev/null differ diff --git a/docs/V5/_framework/BlazorStrap5.WASM.pdb.gz b/docs/V5/_framework/BlazorStrap5.WASM.pdb.gz deleted file mode 100644 index 358e6e80..00000000 Binary files a/docs/V5/_framework/BlazorStrap5.WASM.pdb.gz and /dev/null differ diff --git a/docs/V5/_framework/BlazorStrap5.dll b/docs/V5/_framework/BlazorStrap5.dll deleted file mode 100644 index 16573c95..00000000 Binary files a/docs/V5/_framework/BlazorStrap5.dll and /dev/null differ diff --git a/docs/V5/_framework/BlazorStrap5.dll.br b/docs/V5/_framework/BlazorStrap5.dll.br deleted file mode 100644 index 90543a7c..00000000 Binary files a/docs/V5/_framework/BlazorStrap5.dll.br and /dev/null differ diff --git a/docs/V5/_framework/BlazorStrap5.dll.gz b/docs/V5/_framework/BlazorStrap5.dll.gz deleted file mode 100644 index 83d8f7d2..00000000 Binary files a/docs/V5/_framework/BlazorStrap5.dll.gz and /dev/null differ diff --git a/docs/V5/_framework/BlazorStrap5.pdb.gz b/docs/V5/_framework/BlazorStrap5.pdb.gz deleted file mode 100644 index 85e5fd69..00000000 Binary files a/docs/V5/_framework/BlazorStrap5.pdb.gz and /dev/null differ diff --git a/docs/V5/_framework/Microsoft.AspNetCore.Components.Forms.dll b/docs/V5/_framework/Microsoft.AspNetCore.Components.Forms.dll index 20895db2..6687c5eb 100644 Binary files a/docs/V5/_framework/Microsoft.AspNetCore.Components.Forms.dll and b/docs/V5/_framework/Microsoft.AspNetCore.Components.Forms.dll differ diff --git a/docs/V5/_framework/Microsoft.AspNetCore.Components.Forms.dll.br b/docs/V5/_framework/Microsoft.AspNetCore.Components.Forms.dll.br index 4239584e..10834d77 100644 Binary files a/docs/V5/_framework/Microsoft.AspNetCore.Components.Forms.dll.br and b/docs/V5/_framework/Microsoft.AspNetCore.Components.Forms.dll.br differ diff --git a/docs/V5/_framework/Microsoft.AspNetCore.Components.Forms.dll.gz b/docs/V5/_framework/Microsoft.AspNetCore.Components.Forms.dll.gz index ab90d7e0..fc8d73ab 100644 Binary files a/docs/V5/_framework/Microsoft.AspNetCore.Components.Forms.dll.gz and b/docs/V5/_framework/Microsoft.AspNetCore.Components.Forms.dll.gz differ diff --git a/docs/V5/_framework/Microsoft.AspNetCore.Components.Web.dll b/docs/V5/_framework/Microsoft.AspNetCore.Components.Web.dll index 81b5b44d..5e6da6d1 100644 Binary files a/docs/V5/_framework/Microsoft.AspNetCore.Components.Web.dll and b/docs/V5/_framework/Microsoft.AspNetCore.Components.Web.dll differ diff --git a/docs/V5/_framework/Microsoft.AspNetCore.Components.Web.dll.br b/docs/V5/_framework/Microsoft.AspNetCore.Components.Web.dll.br index f04e9bf2..a9979fc7 100644 Binary files a/docs/V5/_framework/Microsoft.AspNetCore.Components.Web.dll.br and b/docs/V5/_framework/Microsoft.AspNetCore.Components.Web.dll.br differ diff --git a/docs/V5/_framework/Microsoft.AspNetCore.Components.Web.dll.gz b/docs/V5/_framework/Microsoft.AspNetCore.Components.Web.dll.gz index d65857cb..2f1abdaa 100644 Binary files a/docs/V5/_framework/Microsoft.AspNetCore.Components.Web.dll.gz and b/docs/V5/_framework/Microsoft.AspNetCore.Components.Web.dll.gz differ diff --git a/docs/V5/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll b/docs/V5/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll index 3bdba720..2aad3792 100644 Binary files a/docs/V5/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll and b/docs/V5/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll differ diff --git a/docs/V5/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br b/docs/V5/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br index 9de0a77b..36892813 100644 Binary files a/docs/V5/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br and b/docs/V5/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br differ diff --git a/docs/V5/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz b/docs/V5/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz index 7e592752..f476ad76 100644 Binary files a/docs/V5/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz and b/docs/V5/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz differ diff --git a/docs/V5/_framework/Microsoft.AspNetCore.Components.dll b/docs/V5/_framework/Microsoft.AspNetCore.Components.dll index 2a64218e..00cedcd1 100644 Binary files a/docs/V5/_framework/Microsoft.AspNetCore.Components.dll and b/docs/V5/_framework/Microsoft.AspNetCore.Components.dll differ diff --git a/docs/V5/_framework/Microsoft.AspNetCore.Components.dll.br b/docs/V5/_framework/Microsoft.AspNetCore.Components.dll.br index ae6d1e11..b367f929 100644 Binary files a/docs/V5/_framework/Microsoft.AspNetCore.Components.dll.br and b/docs/V5/_framework/Microsoft.AspNetCore.Components.dll.br differ diff --git a/docs/V5/_framework/Microsoft.AspNetCore.Components.dll.gz b/docs/V5/_framework/Microsoft.AspNetCore.Components.dll.gz index 4e11864d..286b539f 100644 Binary files a/docs/V5/_framework/Microsoft.AspNetCore.Components.dll.gz and b/docs/V5/_framework/Microsoft.AspNetCore.Components.dll.gz differ diff --git a/docs/V5/_framework/Microsoft.Extensions.Configuration.Abstractions.dll b/docs/V5/_framework/Microsoft.Extensions.Configuration.Abstractions.dll index 23277936..38550de9 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.Configuration.Abstractions.dll and b/docs/V5/_framework/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/docs/V5/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br b/docs/V5/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br index 7d7dd02b..fb08537c 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br and b/docs/V5/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br differ diff --git a/docs/V5/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz b/docs/V5/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz index 1002ee51..f754f6ee 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz and b/docs/V5/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz differ diff --git a/docs/V5/_framework/Microsoft.Extensions.Configuration.Json.dll b/docs/V5/_framework/Microsoft.Extensions.Configuration.Json.dll index 959b83e8..93972bb6 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.Configuration.Json.dll and b/docs/V5/_framework/Microsoft.Extensions.Configuration.Json.dll differ diff --git a/docs/V5/_framework/Microsoft.Extensions.Configuration.Json.dll.br b/docs/V5/_framework/Microsoft.Extensions.Configuration.Json.dll.br index c9b3ef54..1ffe4a59 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.Configuration.Json.dll.br and b/docs/V5/_framework/Microsoft.Extensions.Configuration.Json.dll.br differ diff --git a/docs/V5/_framework/Microsoft.Extensions.Configuration.Json.dll.gz b/docs/V5/_framework/Microsoft.Extensions.Configuration.Json.dll.gz index ab266bdd..e93448c3 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.Configuration.Json.dll.gz and b/docs/V5/_framework/Microsoft.Extensions.Configuration.Json.dll.gz differ diff --git a/docs/V5/_framework/Microsoft.Extensions.Configuration.dll b/docs/V5/_framework/Microsoft.Extensions.Configuration.dll index ddc13660..b60d2e2a 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.Configuration.dll and b/docs/V5/_framework/Microsoft.Extensions.Configuration.dll differ diff --git a/docs/V5/_framework/Microsoft.Extensions.Configuration.dll.br b/docs/V5/_framework/Microsoft.Extensions.Configuration.dll.br index 5b66c68c..f19fb179 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.Configuration.dll.br and b/docs/V5/_framework/Microsoft.Extensions.Configuration.dll.br differ diff --git a/docs/V5/_framework/Microsoft.Extensions.Configuration.dll.gz b/docs/V5/_framework/Microsoft.Extensions.Configuration.dll.gz index 962777d7..c6e2080d 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.Configuration.dll.gz and b/docs/V5/_framework/Microsoft.Extensions.Configuration.dll.gz differ diff --git a/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll index 09850ad3..eb7d9470 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll and b/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br b/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br index 096fbd13..5bfab7d2 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br and b/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br differ diff --git a/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz b/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz index 725e10b3..a33175b6 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz and b/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz differ diff --git a/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.dll b/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.dll index 985d07bf..1bceacaa 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.dll and b/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.dll.br b/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.dll.br index 86863844..037f23b2 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.dll.br and b/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.dll.br differ diff --git a/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.dll.gz b/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.dll.gz index 7624b30b..d8b7d15c 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.dll.gz and b/docs/V5/_framework/Microsoft.Extensions.DependencyInjection.dll.gz differ diff --git a/docs/V5/_framework/Microsoft.Extensions.Logging.Abstractions.dll b/docs/V5/_framework/Microsoft.Extensions.Logging.Abstractions.dll index 9f8f8337..dc41acbc 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.Logging.Abstractions.dll and b/docs/V5/_framework/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/docs/V5/_framework/Microsoft.Extensions.Logging.Abstractions.dll.br b/docs/V5/_framework/Microsoft.Extensions.Logging.Abstractions.dll.br index ce10baf9..716606dc 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.Logging.Abstractions.dll.br and b/docs/V5/_framework/Microsoft.Extensions.Logging.Abstractions.dll.br differ diff --git a/docs/V5/_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz b/docs/V5/_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz index 460626c0..786efe56 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz and b/docs/V5/_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz differ diff --git a/docs/V5/_framework/Microsoft.Extensions.Logging.dll b/docs/V5/_framework/Microsoft.Extensions.Logging.dll index eec24aa4..7ab82e46 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.Logging.dll and b/docs/V5/_framework/Microsoft.Extensions.Logging.dll differ diff --git a/docs/V5/_framework/Microsoft.Extensions.Logging.dll.br b/docs/V5/_framework/Microsoft.Extensions.Logging.dll.br index 20ab0f07..1bb9f5b5 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.Logging.dll.br and b/docs/V5/_framework/Microsoft.Extensions.Logging.dll.br differ diff --git a/docs/V5/_framework/Microsoft.Extensions.Logging.dll.gz b/docs/V5/_framework/Microsoft.Extensions.Logging.dll.gz index c954de7f..d5a152a3 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.Logging.dll.gz and b/docs/V5/_framework/Microsoft.Extensions.Logging.dll.gz differ diff --git a/docs/V5/_framework/Microsoft.Extensions.Options.dll b/docs/V5/_framework/Microsoft.Extensions.Options.dll index b1bc0633..b95d2426 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.Options.dll and b/docs/V5/_framework/Microsoft.Extensions.Options.dll differ diff --git a/docs/V5/_framework/Microsoft.Extensions.Options.dll.br b/docs/V5/_framework/Microsoft.Extensions.Options.dll.br index 1af236f0..5c0202a1 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.Options.dll.br and b/docs/V5/_framework/Microsoft.Extensions.Options.dll.br differ diff --git a/docs/V5/_framework/Microsoft.Extensions.Options.dll.gz b/docs/V5/_framework/Microsoft.Extensions.Options.dll.gz index d40f0e32..914c295e 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.Options.dll.gz and b/docs/V5/_framework/Microsoft.Extensions.Options.dll.gz differ diff --git a/docs/V5/_framework/Microsoft.Extensions.Primitives.dll b/docs/V5/_framework/Microsoft.Extensions.Primitives.dll index 51b45495..c5e85bb1 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.Primitives.dll and b/docs/V5/_framework/Microsoft.Extensions.Primitives.dll differ diff --git a/docs/V5/_framework/Microsoft.Extensions.Primitives.dll.br b/docs/V5/_framework/Microsoft.Extensions.Primitives.dll.br index a9e0de88..103768ef 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.Primitives.dll.br and b/docs/V5/_framework/Microsoft.Extensions.Primitives.dll.br differ diff --git a/docs/V5/_framework/Microsoft.Extensions.Primitives.dll.gz b/docs/V5/_framework/Microsoft.Extensions.Primitives.dll.gz index d8680b31..36d9be3d 100644 Binary files a/docs/V5/_framework/Microsoft.Extensions.Primitives.dll.gz and b/docs/V5/_framework/Microsoft.Extensions.Primitives.dll.gz differ diff --git a/docs/V5/_framework/Microsoft.JSInterop.WebAssembly.dll b/docs/V5/_framework/Microsoft.JSInterop.WebAssembly.dll index e4c2d483..2630123f 100644 Binary files a/docs/V5/_framework/Microsoft.JSInterop.WebAssembly.dll and b/docs/V5/_framework/Microsoft.JSInterop.WebAssembly.dll differ diff --git a/docs/V5/_framework/Microsoft.JSInterop.WebAssembly.dll.br b/docs/V5/_framework/Microsoft.JSInterop.WebAssembly.dll.br index c3443eeb..10b73cf2 100644 Binary files a/docs/V5/_framework/Microsoft.JSInterop.WebAssembly.dll.br and b/docs/V5/_framework/Microsoft.JSInterop.WebAssembly.dll.br differ diff --git a/docs/V5/_framework/Microsoft.JSInterop.WebAssembly.dll.gz b/docs/V5/_framework/Microsoft.JSInterop.WebAssembly.dll.gz index 6992385f..06fe0312 100644 Binary files a/docs/V5/_framework/Microsoft.JSInterop.WebAssembly.dll.gz and b/docs/V5/_framework/Microsoft.JSInterop.WebAssembly.dll.gz differ diff --git a/docs/V5/_framework/Microsoft.JSInterop.dll b/docs/V5/_framework/Microsoft.JSInterop.dll index 0b7411d3..5dc6af92 100644 Binary files a/docs/V5/_framework/Microsoft.JSInterop.dll and b/docs/V5/_framework/Microsoft.JSInterop.dll differ diff --git a/docs/V5/_framework/Microsoft.JSInterop.dll.br b/docs/V5/_framework/Microsoft.JSInterop.dll.br index c55fe66d..560279ee 100644 Binary files a/docs/V5/_framework/Microsoft.JSInterop.dll.br and b/docs/V5/_framework/Microsoft.JSInterop.dll.br differ diff --git a/docs/V5/_framework/Microsoft.JSInterop.dll.gz b/docs/V5/_framework/Microsoft.JSInterop.dll.gz index 497172d7..c4226114 100644 Binary files a/docs/V5/_framework/Microsoft.JSInterop.dll.gz and b/docs/V5/_framework/Microsoft.JSInterop.dll.gz differ diff --git a/docs/V5/_framework/System.Collections.Concurrent.dll b/docs/V5/_framework/System.Collections.Concurrent.dll index 71ea1456..0a39337a 100644 Binary files a/docs/V5/_framework/System.Collections.Concurrent.dll and b/docs/V5/_framework/System.Collections.Concurrent.dll differ diff --git a/docs/V5/_framework/System.Collections.Concurrent.dll.br b/docs/V5/_framework/System.Collections.Concurrent.dll.br index 2a42de28..b97625f5 100644 Binary files a/docs/V5/_framework/System.Collections.Concurrent.dll.br and b/docs/V5/_framework/System.Collections.Concurrent.dll.br differ diff --git a/docs/V5/_framework/System.Collections.Concurrent.dll.gz b/docs/V5/_framework/System.Collections.Concurrent.dll.gz index 63d414b8..ad7bd033 100644 Binary files a/docs/V5/_framework/System.Collections.Concurrent.dll.gz and b/docs/V5/_framework/System.Collections.Concurrent.dll.gz differ diff --git a/docs/V5/_framework/System.Collections.NonGeneric.dll b/docs/V5/_framework/System.Collections.NonGeneric.dll index cde48619..b39708cf 100644 Binary files a/docs/V5/_framework/System.Collections.NonGeneric.dll and b/docs/V5/_framework/System.Collections.NonGeneric.dll differ diff --git a/docs/V5/_framework/System.Collections.NonGeneric.dll.br b/docs/V5/_framework/System.Collections.NonGeneric.dll.br index 93600eb4..3b5c5534 100644 Binary files a/docs/V5/_framework/System.Collections.NonGeneric.dll.br and b/docs/V5/_framework/System.Collections.NonGeneric.dll.br differ diff --git a/docs/V5/_framework/System.Collections.NonGeneric.dll.gz b/docs/V5/_framework/System.Collections.NonGeneric.dll.gz index d71b8877..3fc48dc3 100644 Binary files a/docs/V5/_framework/System.Collections.NonGeneric.dll.gz and b/docs/V5/_framework/System.Collections.NonGeneric.dll.gz differ diff --git a/docs/V5/_framework/System.Collections.Specialized.dll b/docs/V5/_framework/System.Collections.Specialized.dll index 399f44ca..97c63d46 100644 Binary files a/docs/V5/_framework/System.Collections.Specialized.dll and b/docs/V5/_framework/System.Collections.Specialized.dll differ diff --git a/docs/V5/_framework/System.Collections.Specialized.dll.br b/docs/V5/_framework/System.Collections.Specialized.dll.br index 67e3dc73..6b074abc 100644 Binary files a/docs/V5/_framework/System.Collections.Specialized.dll.br and b/docs/V5/_framework/System.Collections.Specialized.dll.br differ diff --git a/docs/V5/_framework/System.Collections.Specialized.dll.gz b/docs/V5/_framework/System.Collections.Specialized.dll.gz index f8363337..9c977893 100644 Binary files a/docs/V5/_framework/System.Collections.Specialized.dll.gz and b/docs/V5/_framework/System.Collections.Specialized.dll.gz differ diff --git a/docs/V5/_framework/System.Collections.dll b/docs/V5/_framework/System.Collections.dll index 97319646..99ef9cbd 100644 Binary files a/docs/V5/_framework/System.Collections.dll and b/docs/V5/_framework/System.Collections.dll differ diff --git a/docs/V5/_framework/System.Collections.dll.br b/docs/V5/_framework/System.Collections.dll.br index 9b952a2d..a895ca78 100644 Binary files a/docs/V5/_framework/System.Collections.dll.br and b/docs/V5/_framework/System.Collections.dll.br differ diff --git a/docs/V5/_framework/System.Collections.dll.gz b/docs/V5/_framework/System.Collections.dll.gz index 3b27e7c5..7c98ad0c 100644 Binary files a/docs/V5/_framework/System.Collections.dll.gz and b/docs/V5/_framework/System.Collections.dll.gz differ diff --git a/docs/V5/_framework/System.ComponentModel.Annotations.dll b/docs/V5/_framework/System.ComponentModel.Annotations.dll index 0f2e6f09..439d18c4 100644 Binary files a/docs/V5/_framework/System.ComponentModel.Annotations.dll and b/docs/V5/_framework/System.ComponentModel.Annotations.dll differ diff --git a/docs/V5/_framework/System.ComponentModel.Annotations.dll.br b/docs/V5/_framework/System.ComponentModel.Annotations.dll.br index c4647f55..c002b60b 100644 Binary files a/docs/V5/_framework/System.ComponentModel.Annotations.dll.br and b/docs/V5/_framework/System.ComponentModel.Annotations.dll.br differ diff --git a/docs/V5/_framework/System.ComponentModel.Annotations.dll.gz b/docs/V5/_framework/System.ComponentModel.Annotations.dll.gz index 70a9167f..3a48f012 100644 Binary files a/docs/V5/_framework/System.ComponentModel.Annotations.dll.gz and b/docs/V5/_framework/System.ComponentModel.Annotations.dll.gz differ diff --git a/docs/V5/_framework/System.ComponentModel.Primitives.dll b/docs/V5/_framework/System.ComponentModel.Primitives.dll index c86d70da..80fa2499 100644 Binary files a/docs/V5/_framework/System.ComponentModel.Primitives.dll and b/docs/V5/_framework/System.ComponentModel.Primitives.dll differ diff --git a/docs/V5/_framework/System.ComponentModel.Primitives.dll.br b/docs/V5/_framework/System.ComponentModel.Primitives.dll.br index b9b032f8..730b2df0 100644 Binary files a/docs/V5/_framework/System.ComponentModel.Primitives.dll.br and b/docs/V5/_framework/System.ComponentModel.Primitives.dll.br differ diff --git a/docs/V5/_framework/System.ComponentModel.Primitives.dll.gz b/docs/V5/_framework/System.ComponentModel.Primitives.dll.gz index 6d48e869..955df256 100644 Binary files a/docs/V5/_framework/System.ComponentModel.Primitives.dll.gz and b/docs/V5/_framework/System.ComponentModel.Primitives.dll.gz differ diff --git a/docs/V5/_framework/System.ComponentModel.TypeConverter.dll b/docs/V5/_framework/System.ComponentModel.TypeConverter.dll index e6577762..621bbb73 100644 Binary files a/docs/V5/_framework/System.ComponentModel.TypeConverter.dll and b/docs/V5/_framework/System.ComponentModel.TypeConverter.dll differ diff --git a/docs/V5/_framework/System.ComponentModel.TypeConverter.dll.br b/docs/V5/_framework/System.ComponentModel.TypeConverter.dll.br index aff3247b..1a442f91 100644 Binary files a/docs/V5/_framework/System.ComponentModel.TypeConverter.dll.br and b/docs/V5/_framework/System.ComponentModel.TypeConverter.dll.br differ diff --git a/docs/V5/_framework/System.ComponentModel.TypeConverter.dll.gz b/docs/V5/_framework/System.ComponentModel.TypeConverter.dll.gz index 47d35836..b754dfc4 100644 Binary files a/docs/V5/_framework/System.ComponentModel.TypeConverter.dll.gz and b/docs/V5/_framework/System.ComponentModel.TypeConverter.dll.gz differ diff --git a/docs/V5/_framework/System.ComponentModel.dll b/docs/V5/_framework/System.ComponentModel.dll index b369be14..43399b54 100644 Binary files a/docs/V5/_framework/System.ComponentModel.dll and b/docs/V5/_framework/System.ComponentModel.dll differ diff --git a/docs/V5/_framework/System.ComponentModel.dll.br b/docs/V5/_framework/System.ComponentModel.dll.br index 62726c70..171118e5 100644 Binary files a/docs/V5/_framework/System.ComponentModel.dll.br and b/docs/V5/_framework/System.ComponentModel.dll.br differ diff --git a/docs/V5/_framework/System.ComponentModel.dll.gz b/docs/V5/_framework/System.ComponentModel.dll.gz index 403ff933..e5a4c761 100644 Binary files a/docs/V5/_framework/System.ComponentModel.dll.gz and b/docs/V5/_framework/System.ComponentModel.dll.gz differ diff --git a/docs/V5/_framework/System.Console.dll b/docs/V5/_framework/System.Console.dll index 4bdac63c..139a6d9b 100644 Binary files a/docs/V5/_framework/System.Console.dll and b/docs/V5/_framework/System.Console.dll differ diff --git a/docs/V5/_framework/System.Console.dll.br b/docs/V5/_framework/System.Console.dll.br index 20dbc774..c19671c8 100644 Binary files a/docs/V5/_framework/System.Console.dll.br and b/docs/V5/_framework/System.Console.dll.br differ diff --git a/docs/V5/_framework/System.Console.dll.gz b/docs/V5/_framework/System.Console.dll.gz index a16a9611..531182e2 100644 Binary files a/docs/V5/_framework/System.Console.dll.gz and b/docs/V5/_framework/System.Console.dll.gz differ diff --git a/docs/V5/_framework/System.Diagnostics.Debug.dll b/docs/V5/_framework/System.Diagnostics.Debug.dll index d72b60b7..7ca0581f 100644 Binary files a/docs/V5/_framework/System.Diagnostics.Debug.dll and b/docs/V5/_framework/System.Diagnostics.Debug.dll differ diff --git a/docs/V5/_framework/System.Diagnostics.Debug.dll.br b/docs/V5/_framework/System.Diagnostics.Debug.dll.br index 34c065ad..5d485514 100644 Binary files a/docs/V5/_framework/System.Diagnostics.Debug.dll.br and b/docs/V5/_framework/System.Diagnostics.Debug.dll.br differ diff --git a/docs/V5/_framework/System.Diagnostics.Debug.dll.gz b/docs/V5/_framework/System.Diagnostics.Debug.dll.gz index 05d15ec2..020ddf44 100644 Binary files a/docs/V5/_framework/System.Diagnostics.Debug.dll.gz and b/docs/V5/_framework/System.Diagnostics.Debug.dll.gz differ diff --git a/docs/V5/_framework/System.Diagnostics.Tools.dll b/docs/V5/_framework/System.Diagnostics.Tools.dll index c6ce4ab0..8959be75 100644 Binary files a/docs/V5/_framework/System.Diagnostics.Tools.dll and b/docs/V5/_framework/System.Diagnostics.Tools.dll differ diff --git a/docs/V5/_framework/System.Diagnostics.Tools.dll.br b/docs/V5/_framework/System.Diagnostics.Tools.dll.br index 9ec5448c..20f53db7 100644 Binary files a/docs/V5/_framework/System.Diagnostics.Tools.dll.br and b/docs/V5/_framework/System.Diagnostics.Tools.dll.br differ diff --git a/docs/V5/_framework/System.Diagnostics.Tools.dll.gz b/docs/V5/_framework/System.Diagnostics.Tools.dll.gz index 910b5cf8..3a084f96 100644 Binary files a/docs/V5/_framework/System.Diagnostics.Tools.dll.gz and b/docs/V5/_framework/System.Diagnostics.Tools.dll.gz differ diff --git a/docs/V5/_framework/System.Linq.Expressions.dll b/docs/V5/_framework/System.Linq.Expressions.dll index 55767abd..288aaa3f 100644 Binary files a/docs/V5/_framework/System.Linq.Expressions.dll and b/docs/V5/_framework/System.Linq.Expressions.dll differ diff --git a/docs/V5/_framework/System.Linq.Expressions.dll.br b/docs/V5/_framework/System.Linq.Expressions.dll.br index 7edaa61f..2d6b5dee 100644 Binary files a/docs/V5/_framework/System.Linq.Expressions.dll.br and b/docs/V5/_framework/System.Linq.Expressions.dll.br differ diff --git a/docs/V5/_framework/System.Linq.Expressions.dll.gz b/docs/V5/_framework/System.Linq.Expressions.dll.gz index 61a004ed..5c35d41a 100644 Binary files a/docs/V5/_framework/System.Linq.Expressions.dll.gz and b/docs/V5/_framework/System.Linq.Expressions.dll.gz differ diff --git a/docs/V5/_framework/System.Linq.dll b/docs/V5/_framework/System.Linq.dll index c495e459..0b24df85 100644 Binary files a/docs/V5/_framework/System.Linq.dll and b/docs/V5/_framework/System.Linq.dll differ diff --git a/docs/V5/_framework/System.Linq.dll.br b/docs/V5/_framework/System.Linq.dll.br index 99a085ed..bbcd9161 100644 Binary files a/docs/V5/_framework/System.Linq.dll.br and b/docs/V5/_framework/System.Linq.dll.br differ diff --git a/docs/V5/_framework/System.Linq.dll.gz b/docs/V5/_framework/System.Linq.dll.gz index a8e8cd0f..22b78941 100644 Binary files a/docs/V5/_framework/System.Linq.dll.gz and b/docs/V5/_framework/System.Linq.dll.gz differ diff --git a/docs/V5/_framework/System.Memory.dll b/docs/V5/_framework/System.Memory.dll index 9dce4b39..238bd2da 100644 Binary files a/docs/V5/_framework/System.Memory.dll and b/docs/V5/_framework/System.Memory.dll differ diff --git a/docs/V5/_framework/System.Memory.dll.br b/docs/V5/_framework/System.Memory.dll.br index 45d10389..875eb1ef 100644 Binary files a/docs/V5/_framework/System.Memory.dll.br and b/docs/V5/_framework/System.Memory.dll.br differ diff --git a/docs/V5/_framework/System.Memory.dll.gz b/docs/V5/_framework/System.Memory.dll.gz index a45981df..ee4e271b 100644 Binary files a/docs/V5/_framework/System.Memory.dll.gz and b/docs/V5/_framework/System.Memory.dll.gz differ diff --git a/docs/V5/_framework/System.Net.Http.dll b/docs/V5/_framework/System.Net.Http.dll index 343577f2..e3510102 100644 Binary files a/docs/V5/_framework/System.Net.Http.dll and b/docs/V5/_framework/System.Net.Http.dll differ diff --git a/docs/V5/_framework/System.Net.Http.dll.br b/docs/V5/_framework/System.Net.Http.dll.br index d694c42a..4640d4c3 100644 Binary files a/docs/V5/_framework/System.Net.Http.dll.br and b/docs/V5/_framework/System.Net.Http.dll.br differ diff --git a/docs/V5/_framework/System.Net.Http.dll.gz b/docs/V5/_framework/System.Net.Http.dll.gz index 90ba4a52..704386c1 100644 Binary files a/docs/V5/_framework/System.Net.Http.dll.gz and b/docs/V5/_framework/System.Net.Http.dll.gz differ diff --git a/docs/V5/_framework/System.Net.Primitives.dll b/docs/V5/_framework/System.Net.Primitives.dll index 91903d4e..856ec2c6 100644 Binary files a/docs/V5/_framework/System.Net.Primitives.dll and b/docs/V5/_framework/System.Net.Primitives.dll differ diff --git a/docs/V5/_framework/System.Net.Primitives.dll.br b/docs/V5/_framework/System.Net.Primitives.dll.br index 94c56720..0171fbdc 100644 Binary files a/docs/V5/_framework/System.Net.Primitives.dll.br and b/docs/V5/_framework/System.Net.Primitives.dll.br differ diff --git a/docs/V5/_framework/System.Net.Primitives.dll.gz b/docs/V5/_framework/System.Net.Primitives.dll.gz index c73bffc8..cd5dc28c 100644 Binary files a/docs/V5/_framework/System.Net.Primitives.dll.gz and b/docs/V5/_framework/System.Net.Primitives.dll.gz differ diff --git a/docs/V5/_framework/System.ObjectModel.dll b/docs/V5/_framework/System.ObjectModel.dll index 968e9317..1ae096a5 100644 Binary files a/docs/V5/_framework/System.ObjectModel.dll and b/docs/V5/_framework/System.ObjectModel.dll differ diff --git a/docs/V5/_framework/System.ObjectModel.dll.br b/docs/V5/_framework/System.ObjectModel.dll.br index fcd1f142..3b55511b 100644 Binary files a/docs/V5/_framework/System.ObjectModel.dll.br and b/docs/V5/_framework/System.ObjectModel.dll.br differ diff --git a/docs/V5/_framework/System.ObjectModel.dll.gz b/docs/V5/_framework/System.ObjectModel.dll.gz index 39118ebf..d0c4d77f 100644 Binary files a/docs/V5/_framework/System.ObjectModel.dll.gz and b/docs/V5/_framework/System.ObjectModel.dll.gz differ diff --git a/docs/V5/_framework/System.Private.CoreLib.dll b/docs/V5/_framework/System.Private.CoreLib.dll index 74e777af..a74817d9 100644 Binary files a/docs/V5/_framework/System.Private.CoreLib.dll and b/docs/V5/_framework/System.Private.CoreLib.dll differ diff --git a/docs/V5/_framework/System.Private.CoreLib.dll.br b/docs/V5/_framework/System.Private.CoreLib.dll.br index 7a155e2f..84c5875f 100644 Binary files a/docs/V5/_framework/System.Private.CoreLib.dll.br and b/docs/V5/_framework/System.Private.CoreLib.dll.br differ diff --git a/docs/V5/_framework/System.Private.CoreLib.dll.gz b/docs/V5/_framework/System.Private.CoreLib.dll.gz index 7cb9ac0e..b89be39e 100644 Binary files a/docs/V5/_framework/System.Private.CoreLib.dll.gz and b/docs/V5/_framework/System.Private.CoreLib.dll.gz differ diff --git a/docs/V5/_framework/System.Private.Runtime.InteropServices.JavaScript.dll b/docs/V5/_framework/System.Private.Runtime.InteropServices.JavaScript.dll index e35864bc..30029418 100644 Binary files a/docs/V5/_framework/System.Private.Runtime.InteropServices.JavaScript.dll and b/docs/V5/_framework/System.Private.Runtime.InteropServices.JavaScript.dll differ diff --git a/docs/V5/_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br b/docs/V5/_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br index aba002f1..1f42b019 100644 Binary files a/docs/V5/_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br and b/docs/V5/_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br differ diff --git a/docs/V5/_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz b/docs/V5/_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz index d3e4bdba..692a20e2 100644 Binary files a/docs/V5/_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz and b/docs/V5/_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz differ diff --git a/docs/V5/_framework/System.Private.Uri.dll b/docs/V5/_framework/System.Private.Uri.dll index eaaf079b..a300206c 100644 Binary files a/docs/V5/_framework/System.Private.Uri.dll and b/docs/V5/_framework/System.Private.Uri.dll differ diff --git a/docs/V5/_framework/System.Private.Uri.dll.br b/docs/V5/_framework/System.Private.Uri.dll.br index 6795cec2..301abec9 100644 Binary files a/docs/V5/_framework/System.Private.Uri.dll.br and b/docs/V5/_framework/System.Private.Uri.dll.br differ diff --git a/docs/V5/_framework/System.Private.Uri.dll.gz b/docs/V5/_framework/System.Private.Uri.dll.gz index c0b76509..965fd651 100644 Binary files a/docs/V5/_framework/System.Private.Uri.dll.gz and b/docs/V5/_framework/System.Private.Uri.dll.gz differ diff --git a/docs/V5/_framework/System.Resources.ResourceManager.dll b/docs/V5/_framework/System.Resources.ResourceManager.dll index 7fbe41db..b9d3f1a2 100644 Binary files a/docs/V5/_framework/System.Resources.ResourceManager.dll and b/docs/V5/_framework/System.Resources.ResourceManager.dll differ diff --git a/docs/V5/_framework/System.Resources.ResourceManager.dll.br b/docs/V5/_framework/System.Resources.ResourceManager.dll.br index b04f1e4f..6de99786 100644 Binary files a/docs/V5/_framework/System.Resources.ResourceManager.dll.br and b/docs/V5/_framework/System.Resources.ResourceManager.dll.br differ diff --git a/docs/V5/_framework/System.Resources.ResourceManager.dll.gz b/docs/V5/_framework/System.Resources.ResourceManager.dll.gz index 05c85589..822281ac 100644 Binary files a/docs/V5/_framework/System.Resources.ResourceManager.dll.gz and b/docs/V5/_framework/System.Resources.ResourceManager.dll.gz differ diff --git a/docs/V5/_framework/System.Runtime.CompilerServices.Unsafe.dll b/docs/V5/_framework/System.Runtime.CompilerServices.Unsafe.dll index fe91fe0b..a9fad6d0 100644 Binary files a/docs/V5/_framework/System.Runtime.CompilerServices.Unsafe.dll and b/docs/V5/_framework/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/docs/V5/_framework/System.Runtime.CompilerServices.Unsafe.dll.br b/docs/V5/_framework/System.Runtime.CompilerServices.Unsafe.dll.br index cd3253e1..d004feea 100644 Binary files a/docs/V5/_framework/System.Runtime.CompilerServices.Unsafe.dll.br and b/docs/V5/_framework/System.Runtime.CompilerServices.Unsafe.dll.br differ diff --git a/docs/V5/_framework/System.Runtime.CompilerServices.Unsafe.dll.gz b/docs/V5/_framework/System.Runtime.CompilerServices.Unsafe.dll.gz index 297dc7c1..1b552df9 100644 Binary files a/docs/V5/_framework/System.Runtime.CompilerServices.Unsafe.dll.gz and b/docs/V5/_framework/System.Runtime.CompilerServices.Unsafe.dll.gz differ diff --git a/docs/V5/_framework/System.Runtime.Extensions.dll b/docs/V5/_framework/System.Runtime.Extensions.dll index d7a66b40..1f0b3c88 100644 Binary files a/docs/V5/_framework/System.Runtime.Extensions.dll and b/docs/V5/_framework/System.Runtime.Extensions.dll differ diff --git a/docs/V5/_framework/System.Runtime.Extensions.dll.br b/docs/V5/_framework/System.Runtime.Extensions.dll.br index 38e05d47..bea4aa03 100644 Binary files a/docs/V5/_framework/System.Runtime.Extensions.dll.br and b/docs/V5/_framework/System.Runtime.Extensions.dll.br differ diff --git a/docs/V5/_framework/System.Runtime.Extensions.dll.gz b/docs/V5/_framework/System.Runtime.Extensions.dll.gz index 553047d8..01689b15 100644 Binary files a/docs/V5/_framework/System.Runtime.Extensions.dll.gz and b/docs/V5/_framework/System.Runtime.Extensions.dll.gz differ diff --git a/docs/V5/_framework/System.Runtime.dll b/docs/V5/_framework/System.Runtime.dll index e2c4f13e..e61de832 100644 Binary files a/docs/V5/_framework/System.Runtime.dll and b/docs/V5/_framework/System.Runtime.dll differ diff --git a/docs/V5/_framework/System.Runtime.dll.br b/docs/V5/_framework/System.Runtime.dll.br index 596d0a6b..17a4c9db 100644 Binary files a/docs/V5/_framework/System.Runtime.dll.br and b/docs/V5/_framework/System.Runtime.dll.br differ diff --git a/docs/V5/_framework/System.Runtime.dll.gz b/docs/V5/_framework/System.Runtime.dll.gz index dd682b8e..6c08a59e 100644 Binary files a/docs/V5/_framework/System.Runtime.dll.gz and b/docs/V5/_framework/System.Runtime.dll.gz differ diff --git a/docs/V5/_framework/System.Text.Encodings.Web.dll b/docs/V5/_framework/System.Text.Encodings.Web.dll index fee003b8..a8190bee 100644 Binary files a/docs/V5/_framework/System.Text.Encodings.Web.dll and b/docs/V5/_framework/System.Text.Encodings.Web.dll differ diff --git a/docs/V5/_framework/System.Text.Encodings.Web.dll.br b/docs/V5/_framework/System.Text.Encodings.Web.dll.br index ec29e995..cb88970c 100644 Binary files a/docs/V5/_framework/System.Text.Encodings.Web.dll.br and b/docs/V5/_framework/System.Text.Encodings.Web.dll.br differ diff --git a/docs/V5/_framework/System.Text.Encodings.Web.dll.gz b/docs/V5/_framework/System.Text.Encodings.Web.dll.gz index 8a9412ef..31d02cb8 100644 Binary files a/docs/V5/_framework/System.Text.Encodings.Web.dll.gz and b/docs/V5/_framework/System.Text.Encodings.Web.dll.gz differ diff --git a/docs/V5/_framework/System.Text.Json.dll b/docs/V5/_framework/System.Text.Json.dll index 18a8fa82..6da3bc35 100644 Binary files a/docs/V5/_framework/System.Text.Json.dll and b/docs/V5/_framework/System.Text.Json.dll differ diff --git a/docs/V5/_framework/System.Text.Json.dll.br b/docs/V5/_framework/System.Text.Json.dll.br index acf48f71..9e831b04 100644 Binary files a/docs/V5/_framework/System.Text.Json.dll.br and b/docs/V5/_framework/System.Text.Json.dll.br differ diff --git a/docs/V5/_framework/System.Text.Json.dll.gz b/docs/V5/_framework/System.Text.Json.dll.gz index 915ac546..e7f4e37f 100644 Binary files a/docs/V5/_framework/System.Text.Json.dll.gz and b/docs/V5/_framework/System.Text.Json.dll.gz differ diff --git a/docs/V5/_framework/System.Text.RegularExpressions.dll b/docs/V5/_framework/System.Text.RegularExpressions.dll index e7a8e2da..91afdb12 100644 Binary files a/docs/V5/_framework/System.Text.RegularExpressions.dll and b/docs/V5/_framework/System.Text.RegularExpressions.dll differ diff --git a/docs/V5/_framework/System.Text.RegularExpressions.dll.br b/docs/V5/_framework/System.Text.RegularExpressions.dll.br index 22496bec..303fecff 100644 Binary files a/docs/V5/_framework/System.Text.RegularExpressions.dll.br and b/docs/V5/_framework/System.Text.RegularExpressions.dll.br differ diff --git a/docs/V5/_framework/System.Text.RegularExpressions.dll.gz b/docs/V5/_framework/System.Text.RegularExpressions.dll.gz index 801895e2..012c58eb 100644 Binary files a/docs/V5/_framework/System.Text.RegularExpressions.dll.gz and b/docs/V5/_framework/System.Text.RegularExpressions.dll.gz differ diff --git a/docs/V5/_framework/System.Threading.dll b/docs/V5/_framework/System.Threading.dll index 7ec78006..44bc8ae6 100644 Binary files a/docs/V5/_framework/System.Threading.dll and b/docs/V5/_framework/System.Threading.dll differ diff --git a/docs/V5/_framework/System.Threading.dll.br b/docs/V5/_framework/System.Threading.dll.br index c7c359b9..7167334f 100644 Binary files a/docs/V5/_framework/System.Threading.dll.br and b/docs/V5/_framework/System.Threading.dll.br differ diff --git a/docs/V5/_framework/System.Threading.dll.gz b/docs/V5/_framework/System.Threading.dll.gz index 5c0e7926..f4d7543c 100644 Binary files a/docs/V5/_framework/System.Threading.dll.gz and b/docs/V5/_framework/System.Threading.dll.gz differ diff --git a/docs/V5/_framework/System.dll b/docs/V5/_framework/System.dll index 20728f7b..aa845c68 100644 Binary files a/docs/V5/_framework/System.dll and b/docs/V5/_framework/System.dll differ diff --git a/docs/V5/_framework/System.dll.br b/docs/V5/_framework/System.dll.br index 3e58e774..d86053c8 100644 Binary files a/docs/V5/_framework/System.dll.br and b/docs/V5/_framework/System.dll.br differ diff --git a/docs/V5/_framework/System.dll.gz b/docs/V5/_framework/System.dll.gz index f99ce187..c082a5ac 100644 Binary files a/docs/V5/_framework/System.dll.gz and b/docs/V5/_framework/System.dll.gz differ diff --git a/docs/V5/_framework/blazor.boot.json b/docs/V5/_framework/blazor.boot.json index 854d01e2..bfdb18d5 100644 --- a/docs/V5/_framework/blazor.boot.json +++ b/docs/V5/_framework/blazor.boot.json @@ -8,57 +8,57 @@ "resources": { "assembly": { "BlazorComponentUtilities.dll": "sha256-UapksNiQg3lu5QM9uVSLyjEuzRH\/7o22fmcmxcLAAeI=", - "BlazorStrap-Docs.dll": "sha256-YmYFh5KMQcUUMjfSV7fOsIZbXLl1NMFMyd4OoLU4A1w=", - "BlazorStrap.dll": "sha256-R5gFXldYjNsNsQ5jAh+OIUUz1AZa3NuifKFezGn6LAY=", - "BlazorStrap.WASM.dll": "sha256-FzvbPoZKPB0fdXmuHvO22Xpzors3aVGHI6OtHLxRz2o=", + "BlazorStrap-Docs.dll": "sha256-6SmotuhRL59w4d8XcAQnT6Ns02rCHJq5su75AeGKSe0=", + "BlazorStrap.dll": "sha256-tAg9k0+qvPQHdvtLaBvVlMPBjl\/DgDzq\/l5SSAcOuZg=", + "BlazorStrap.WASM.dll": "sha256-o6WSeV1yhA4RncpWhtM1dnDA1n0z7G6pbALILSEH4X8=", "ColorCode.dll": "sha256-hF07ps23in9mbwaN4uSoZklQVfyJIw2Ep4R448bfkOk=", "Markdig.dll": "sha256-9\/ICq2gSL+hjhMdZXNoIRs8wyZFtZpr3yFSW+RQVdoQ=", "Markdig.SyntaxHighlighting.dll": "sha256-qkuHEt7805bTVSkNsvDi5CT5M3Q4VSK619BHVC+FdKs=", - "Microsoft.AspNetCore.Components.dll": "sha256-zfXg\/jBawIEVEVOVKZLuPYgPC3DZTnbGNQOIPwKi9Us=", - "Microsoft.AspNetCore.Components.Forms.dll": "sha256-pc6pBiL45DvmaRJ7nelbHDNsarPeNc8Zp5iwWUA4rDg=", - "Microsoft.AspNetCore.Components.Web.dll": "sha256-92\/Bo5mbLEXK80phj5N7fwVhW0jfp8\/kv7Z3emkZ2c0=", - "Microsoft.AspNetCore.Components.WebAssembly.dll": "sha256-evpIyyLgg4j6qft+P6vZ6TLzS+Ha9uFeANW9Oi77NU4=", - "Microsoft.Extensions.Configuration.Abstractions.dll": "sha256-z1kZ0edoPXzUgzqFC+RQWd3F\/4Ex4LY7AgxLIfsGdYE=", - "Microsoft.Extensions.Configuration.dll": "sha256-\/k1jDLc9mTVogg+luuvx7Igng3fq2Lmq8etgbs2ZuKc=", - "Microsoft.Extensions.Configuration.Json.dll": "sha256-LP4TNVSifekLwAFD9KJqFQPvc3RLbHJWDUxqlUo4ce8=", - "Microsoft.Extensions.DependencyInjection.Abstractions.dll": "sha256-TK56PCAM2nsPymbgOyjESULuE\/X7Vkwx1g4jU8PyLxw=", - "Microsoft.Extensions.DependencyInjection.dll": "sha256-evkrdpLxXFfYWnHOo9ph9Kc\/nomDuuKVdCvqHGGpQZk=", - "Microsoft.Extensions.Logging.Abstractions.dll": "sha256-sCNfC\/ubDv40Xequ3B8\/yXQgLU8RXvURls0RGs84zuA=", - "Microsoft.Extensions.Logging.dll": "sha256-JJO3u3QJW9UlMvelvXVE+qmFCI6ptHDXDgxOHjIpOHg=", - "Microsoft.Extensions.Options.dll": "sha256-mfvMdemur6xJBKx2r2cav\/cFu7PxVbMu9mN7HwvG1lI=", - "Microsoft.Extensions.Primitives.dll": "sha256-dcOOWXZNfyVfDzi4lv6vbl7HLL3RI4iocs1HOOBwQCs=", - "Microsoft.JSInterop.dll": "sha256-Ky3EKJsLei9zvyMDUpTZdvYNFJDJgKdDNidXGO93wfs=", - "Microsoft.JSInterop.WebAssembly.dll": "sha256-K0w\/jbvf9jPVN5nxh+gKZCdCX3zIlWlxezfyXkJ1MtY=", - "netstandard.dll": "sha256-RcXlaCkr8GmcAyHGsoJHF\/N\/jPPR4lzn+G6j7GZZ0oE=", - "System.Collections.Concurrent.dll": "sha256-Iub4gBrBm\/d4iFqpv4Rd0hMdM8q7aXgmF5w6Hjag1nw=", - "System.Collections.dll": "sha256-NQWDYUXiFBlkxmpOYmpDgxjekAePL0Kson65u+SbgOo=", - "System.Collections.NonGeneric.dll": "sha256-1nF1t8jp3n4MtsfaBmMPhFahZJNxrADmhLKrCyQaptg=", - "System.Collections.Specialized.dll": "sha256-\/OTIT6iWpmwGv9+FmliRTvrOh4UWRhLWSjKY1gdW37U=", - "System.ComponentModel.Annotations.dll": "sha256-\/wGpHTQNak736ajd8kJknSR2vO0JoszwMzEfjHCVwS4=", - "System.ComponentModel.dll": "sha256-USq9sl8c4HDVvUQyqGOh66flmAtLB3CewwmlwbPCwNM=", - "System.ComponentModel.Primitives.dll": "sha256-tk\/3kC5+WNrw7tzlwfDlMWR0QXB03ZUgaOsrTOT6H3I=", - "System.ComponentModel.TypeConverter.dll": "sha256-79wx0+DKe0FKUcHIeJ3So7mIc3g535LcmX0ZDuAbY40=", - "System.Console.dll": "sha256-6CR6N4Wr9YFlI0NFI6jDJ5o5MLSjD+CMsKgKa196GO0=", - "System.Diagnostics.Debug.dll": "sha256-tW52EqAUKz5HqVhelgslRPF+WuQasn694yTDSLzybQE=", - "System.Diagnostics.Tools.dll": "sha256-7lSmapOL0PSo2gBfL00NE9RsRnFySEkHPnzF+fC5zUQ=", - "System.dll": "sha256-mPh7LAxVpzS4YWuh0dq\/tXk6+AI0Ce3nKWxDCvqhK2s=", - "System.Linq.dll": "sha256-7v7VTRQl8aVbfzJJnG5dULAdWn2XDE49H0KF6cmTCic=", - "System.Linq.Expressions.dll": "sha256-C8zwhALlotPht9GanwQG4JdBDIcU2oHQn18FbQXa\/Oo=", - "System.Memory.dll": "sha256-vfmNDpNprgJIWAbRuW8MJidILgtbPs7ot+1Cf21DCEw=", - "System.Net.Http.dll": "sha256-R\/1W0xGkVKoKxPyFUcdfPE0voc7ndlYcQHnn1yUgrvU=", - "System.Net.Primitives.dll": "sha256-IDEi1YM0Q70lRQ8T5WCV7bmPBECuP6YLKReWAJwi9eI=", - "System.ObjectModel.dll": "sha256-NXn+OlAzZdEJ7slyRQ\/nPDFOt4YugIfwqVjtOToo6YE=", - "System.Private.CoreLib.dll": "sha256-xoQVSqCNFC6gbgFW84uxy5CdY+RrDXpgAg2isdreqOg=", - "System.Private.Runtime.InteropServices.JavaScript.dll": "sha256-AZBhJuau7URy3xwuF8d0XnrREPxWTJGPXjtfXMSryLk=", - "System.Private.Uri.dll": "sha256-L51dV+oUgWhtRxpVbf9Ht7ZXQRCMhiUl23J5KKrdRSo=", - "System.Resources.ResourceManager.dll": "sha256-h8oRzfMtICoxbG3ALm0vltv+vjOqp+NcxHGNjQvauVs=", - "System.Runtime.CompilerServices.Unsafe.dll": "sha256-mK6SsHXQUA1c\/l8rLNMj7WKKcR8AhMX08mMDXAaAB+0=", - "System.Runtime.dll": "sha256-q1MGpmyx27hamdhAIAR9ystqdMtKbQRrlu4VeRrV4Ug=", - "System.Runtime.Extensions.dll": "sha256-Hr2yhUQ4vvYTI6gaOps+\/4GAvcZapyMmva2ort+hjoQ=", - "System.Text.Encodings.Web.dll": "sha256-If2bjnFYqFiN9BUbfTB+hcPA50Q+A4v21dyx7DEA5IY=", - "System.Text.Json.dll": "sha256-sQVeZP6EWo0Qzy9ILPLj0eHptoEKHAJdTA7nqSbYxR0=", - "System.Text.RegularExpressions.dll": "sha256-dyviaQWf6HpuVPz1UOBBSG\/jVUERR6HW5BQl5lBkQw0=", - "System.Threading.dll": "sha256-HjNwTJgc6oOQERg3Ypfe4kgLXPOW5a2qAXuN2ABEq2A=" + "Microsoft.AspNetCore.Components.dll": "sha256-6VymKGR7MWlMGTuF5K8xX0bjAIAFCOdzoOdzx1Zjmh0=", + "Microsoft.AspNetCore.Components.Forms.dll": "sha256-99xQLNB0SDAd0qQmmfqjiPAR5kgM7yr0dRSXmADR75c=", + "Microsoft.AspNetCore.Components.Web.dll": "sha256-dLkcuxnCnUsk9TYm8Hy728x0Cu9Mzrsh6kOkdlt9adU=", + "Microsoft.AspNetCore.Components.WebAssembly.dll": "sha256-pqhC3F7v6C59SoQxb0Ai\/6BG\/zY\/Sqq6pvULGp6P\/Go=", + "Microsoft.Extensions.Configuration.Abstractions.dll": "sha256-zhFtW4kE16TdrpPne9I1Cu9o0KYzrS50VE9MVSifJg4=", + "Microsoft.Extensions.Configuration.dll": "sha256-QPR+1IXNcA28b\/gXw3uZ8aRigHIZUJ1KWSH02kkCg7Q=", + "Microsoft.Extensions.Configuration.Json.dll": "sha256-fF3xaP+hT6R3GYUctLIY1ixaXQ8mrHzwWHHf2dKfueU=", + "Microsoft.Extensions.DependencyInjection.Abstractions.dll": "sha256-Us0XcRDPhYj5uGh9oKxbDHqxyDZSnJmpG2qY1t0grtQ=", + "Microsoft.Extensions.DependencyInjection.dll": "sha256-pYDNELbgbO60zgvgH5SP8004wkA0+o\/KlQxFXl\/uS2A=", + "Microsoft.Extensions.Logging.Abstractions.dll": "sha256-kf3HUdScrQ5nL65UDxYlJFd\/T8L6DhfmXHEbgYzDzLg=", + "Microsoft.Extensions.Logging.dll": "sha256-aj8Tk1BLrOE4y41oBvw\/VGDdmvACVEpGmiEDNrA7Hco=", + "Microsoft.Extensions.Options.dll": "sha256-eZmnmowgP5leOxVRX6H1YZim4pQMB8QipOnBJ2aowWU=", + "Microsoft.Extensions.Primitives.dll": "sha256-YColTWA58whC+8aBjv1O7HgsyYrbHTba601EkNDWAlo=", + "Microsoft.JSInterop.dll": "sha256-LaSi5Q7\/aI2mitB5jjS7OO10qVMTxQ8Cimd6rtu+d1Q=", + "Microsoft.JSInterop.WebAssembly.dll": "sha256-vnE\/f0iqOlVKaRjTpLiArMb+lw6INqH0HhqcMh9FPe0=", + "netstandard.dll": "sha256-Z7d23DjW\/ADO7waiihIrT2l77Nn1RScYCsUaIGF9LrQ=", + "System.Collections.Concurrent.dll": "sha256-mq1nuSx6UIOFVZ1VwonEMwf+boaVbYBInSeLHBdvr\/s=", + "System.Collections.dll": "sha256-iboRxCmve\/ftz5h4TJdD9NeuTZ3sWQV21Off+JyinT4=", + "System.Collections.NonGeneric.dll": "sha256-BYK5iIi19nSA65TxEaCt5kSFztf8AEE7AryP80Qx36g=", + "System.Collections.Specialized.dll": "sha256-byhP\/ZAu082wRdInUqJPTx00P2\/EKhR\/Q9nCn0MPVnY=", + "System.ComponentModel.Annotations.dll": "sha256-i+ZEHtLmyN5RNNGozNhniXOQjZZ6BJl7KpMow0COwxM=", + "System.ComponentModel.dll": "sha256-\/eQi+z1IrCQXONcPmrGod6Bu2pAFpr1LGFdW7i52bF8=", + "System.ComponentModel.Primitives.dll": "sha256-yN2PcPE475CTFMg3wQM4XM+thL3INF\/yOuPJ4uP+ZR4=", + "System.ComponentModel.TypeConverter.dll": "sha256-+AV0djVTWMh6MsReQpKk4ZMSlQ0MDjWXBy5zISm0o9E=", + "System.Console.dll": "sha256-RvZJFwiaFmb5z9G0xtjiaVkeYaNdVk9heydTZXzp2sk=", + "System.Diagnostics.Debug.dll": "sha256-ZN03o0OTamcF8miD4XDkeM6vu4b5Wo+iQRTucJw6hdI=", + "System.Diagnostics.Tools.dll": "sha256-qlSoBzpCyTcZ7a0UBwVIcqTmG+Zj1ozZhwgt8F4SyY8=", + "System.dll": "sha256-rFMZGggawTEgR+1\/wxo6rVc33DGl6yRKgeobdnLzUmQ=", + "System.Linq.dll": "sha256-WFQQvFfnVEIfXCYAfP9LbC1KLL\/xIoruR5wjZbXC1fI=", + "System.Linq.Expressions.dll": "sha256-SJWcSk\/falkDmzGWgF2P8txL2WYmshPSsAMoZDLNBCM=", + "System.Memory.dll": "sha256-b4UbzUFF+12IxOgMWNuYpuTsaKKmRNqniwta120dCtU=", + "System.Net.Http.dll": "sha256-SG1ErxalwWL+oTNjRbGYkVXkuk1onIlIJTlyaGj\/d44=", + "System.Net.Primitives.dll": "sha256-3sI1NNIqa\/NbsiwoB9ge3te+b4FnMCiOJO1UBN3PeUA=", + "System.ObjectModel.dll": "sha256-UG4O9ciL695mY+vsFCa\/RG7XLv2tIXBQF2ChiVBasFE=", + "System.Private.CoreLib.dll": "sha256-7CS2MxOH9nrW6zKJUFrgQsHiqsVmoyuF2e1hVlPDQ14=", + "System.Private.Runtime.InteropServices.JavaScript.dll": "sha256-C00EjhH1PgivSevy5JGkGQ6O6iWgPnZ6YYi9\/nQBPa4=", + "System.Private.Uri.dll": "sha256-S5HrTdUD7cIVcEOhVBdvWtQkO2n5w9JKWvt0tJQJHeQ=", + "System.Resources.ResourceManager.dll": "sha256-gzbrKVMiTK1iPLy43DV1yztdRJ7ai4r7P0dbHJgXLjE=", + "System.Runtime.CompilerServices.Unsafe.dll": "sha256-HBDUACOfn2L1Mr93wnPZJiPZMfl0SAmnaQsNk2PrN6U=", + "System.Runtime.dll": "sha256-cjYm3xQ+rSKJHFcDNOufU1fazEi0R+jukko5xTllKlg=", + "System.Runtime.Extensions.dll": "sha256-86NAVOpK5\/GQ2C1DX7ZuekbgQlBEscXP4cMkAkOCjqI=", + "System.Text.Encodings.Web.dll": "sha256-wpoIHsG+HQYfKV\/LKarpVXK2PbZYvgTPWpbVVJq210Y=", + "System.Text.Json.dll": "sha256-HMBYGXVQ+t7wMbKPaoLSwA1ckk304a+PfRaNrtmMPRM=", + "System.Text.RegularExpressions.dll": "sha256-OQ5DPeTuHKGXWcEXYjwSHz2IiDaN6xrGXb2mfqbPDYU=", + "System.Threading.dll": "sha256-p4CYU7JQH61ZxpDuI1oa0NU+Mz931l7kZUJ\/ehgDL5w=" }, "extensions": null, "lazyAssembly": null, diff --git a/docs/V5/_framework/blazor.boot.json.br b/docs/V5/_framework/blazor.boot.json.br index 51619e6e..660d4a9f 100644 Binary files a/docs/V5/_framework/blazor.boot.json.br and b/docs/V5/_framework/blazor.boot.json.br differ diff --git a/docs/V5/_framework/blazor.boot.json.gz b/docs/V5/_framework/blazor.boot.json.gz index 7e527348..c40438eb 100644 Binary files a/docs/V5/_framework/blazor.boot.json.gz and b/docs/V5/_framework/blazor.boot.json.gz differ diff --git a/docs/V5/_framework/blazor.webassembly.js.gz b/docs/V5/_framework/blazor.webassembly.js.gz index 20cee242..193c4ab0 100644 Binary files a/docs/V5/_framework/blazor.webassembly.js.gz and b/docs/V5/_framework/blazor.webassembly.js.gz differ diff --git a/docs/V5/_framework/dotnet.6.0.0.9uzm3v0rpb.js.gz b/docs/V5/_framework/dotnet.6.0.0.9uzm3v0rpb.js.gz index 7d4d9d01..e68bba75 100644 Binary files a/docs/V5/_framework/dotnet.6.0.0.9uzm3v0rpb.js.gz and b/docs/V5/_framework/dotnet.6.0.0.9uzm3v0rpb.js.gz differ diff --git a/docs/V5/_framework/dotnet.wasm.gz b/docs/V5/_framework/dotnet.wasm.gz index 8d84d89c..6e02e7fc 100644 Binary files a/docs/V5/_framework/dotnet.wasm.gz and b/docs/V5/_framework/dotnet.wasm.gz differ diff --git a/docs/V5/_framework/netstandard.dll b/docs/V5/_framework/netstandard.dll index 79c8970b..dfc6878c 100644 Binary files a/docs/V5/_framework/netstandard.dll and b/docs/V5/_framework/netstandard.dll differ diff --git a/docs/V5/_framework/netstandard.dll.br b/docs/V5/_framework/netstandard.dll.br index 11545f06..b69eed1b 100644 Binary files a/docs/V5/_framework/netstandard.dll.br and b/docs/V5/_framework/netstandard.dll.br differ diff --git a/docs/V5/_framework/netstandard.dll.gz b/docs/V5/_framework/netstandard.dll.gz index 8119a8a7..d8f32f6f 100644 Binary files a/docs/V5/_framework/netstandard.dll.gz and b/docs/V5/_framework/netstandard.dll.gz differ diff --git a/docs/V5/docs/Samples/Components/Alerts/Alerts2.md b/docs/V5/docs/Samples/Components/Alerts/Alerts2.md index 62043b1a..53245a8a 100644 --- a/docs/V5/docs/Samples/Components/Alerts/Alerts2.md +++ b/docs/V5/docs/Samples/Components/Alerts/Alerts2.md @@ -1,6 +1,6 @@ @foreach (var alert in Alerts) { - + This is a dismissable alert! } diff --git a/docs/V5/docs/Samples/Components/Alerts/Alerts6.md b/docs/V5/docs/Samples/Components/Alerts/Alerts6.md index dffac7cc..759c036e 100644 --- a/docs/V5/docs/Samples/Components/Alerts/Alerts6.md +++ b/docs/V5/docs/Samples/Components/Alerts/Alerts6.md @@ -1,4 +1,4 @@ - + An example dismissable alert example. Show diff --git a/docs/V5/docs/Samples/Components/OffCanvas/OffCanvas2razor.md b/docs/V5/docs/Samples/Components/OffCanvas/OffCanvas2razor.md deleted file mode 100644 index 2f0f82fd..00000000 --- a/docs/V5/docs/Samples/Components/OffCanvas/OffCanvas2razor.md +++ /dev/null @@ -1,27 +0,0 @@ -Link -Button - -
Offcanvas
- -
- Some text as placeholder. In real life you can have the elements you have chosen. Like, text, images, lists, etc. -
- - - - Action - Another action - Something else here - - -
-
-@code { - private BSOffCanvas? _offCanvas; - - private async Task OpenCanvas() - { - if (_offCanvas != null) - await _offCanvas.ToggleAsync(); - } -} \ No newline at end of file diff --git a/docs/V5/docs/Samples/Components/Popover/Popover1.md b/docs/V5/docs/Samples/Components/Popover/Popover1.md new file mode 100644 index 00000000..42cb818a --- /dev/null +++ b/docs/V5/docs/Samples/Components/Popover/Popover1.md @@ -0,0 +1,20 @@ +Left + +
Test
+ Testing +
+Top + +
Test
+ Testing +
+Bottom + +
Test
+ Testing +
+Right + +
Test
+ Testing +
\ No newline at end of file diff --git a/docs/V5/docs/Samples/Components/Progress/Progress1.md b/docs/V5/docs/Samples/Components/Progress/Progress1.md new file mode 100644 index 00000000..20bd7459 --- /dev/null +++ b/docs/V5/docs/Samples/Components/Progress/Progress1.md @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/docs/V5/docs/Samples/Components/Toast/Toast1.md b/docs/V5/docs/Samples/Components/Toast/Toast1.md new file mode 100644 index 00000000..9291bde6 --- /dev/null +++ b/docs/V5/docs/Samples/Components/Toast/Toast1.md @@ -0,0 +1,4 @@ + +
BlazorStarp
+ Hello, world! +
\ No newline at end of file diff --git a/docs/V5/docs/Samples/Forms/Checkbox/Checkbox5.md b/docs/V5/docs/Samples/Forms/Checkbox/Checkbox5.md index 14685f5c..6e073e28 100644 --- a/docs/V5/docs/Samples/Forms/Checkbox/Checkbox5.md +++ b/docs/V5/docs/Samples/Forms/Checkbox/Checkbox5.md @@ -1,10 +1,10 @@  - - Default radio + + Disabled radio - - Default checked radio + + Disabled checked radio @code { private string Value { get; set; } = "off"; diff --git a/docs/V5/docs/Samples/Forms/Checkbox/Checkbox7.md b/docs/V5/docs/Samples/Forms/Checkbox/Checkbox7.md index 3bba9fa6..ebbd3ba7 100644 --- a/docs/V5/docs/Samples/Forms/Checkbox/Checkbox7.md +++ b/docs/V5/docs/Samples/Forms/Checkbox/Checkbox7.md @@ -1,28 +1,29 @@  - + 1 - + 2 - + 3 (disabled) - + 1 - + 2 - + 3 (disabled) @code { private string Value { get; set; } = "off"; + private string ValueTwo { get; set; } = "off"; } \ No newline at end of file diff --git a/docs/V5/docs/Static/Components/Accordion.md b/docs/V5/docs/Static/Components/Accordion.md new file mode 100644 index 00000000..876245d6 --- /dev/null +++ b/docs/V5/docs/Static/Components/Accordion.md @@ -0,0 +1,25 @@ +## Accordion +#### Component \ +See [shared](layout/shared) for additional parameters +::: + +| Parameter | Type | Valid | Remarks/Output | +|--------------|----------------|----------------|---------------------------------| +| AlwaysOpen | bool | true/false | `.d-flex` `.align-items-center` | {.table-striped} +| DefaultShown | bool | true/false | `.alert-dismissible` | +| Header | RenderFragment | RenderFragment | Nested Content | +| Content | RenderFragment | RenderFragment | Nested Content | + +::: + +### Example + +{{sample=Components/Accordion/Accordion1}} + +### Flush + +{{sample=Components/Accordion/Accordion2}} + +### Always open & default shown + +{{sample=Components/Accordion/Accordion3}} diff --git a/docs/V5/docs/Static/Components/Alerts.md b/docs/V5/docs/Static/Components/Alerts.md new file mode 100644 index 00000000..3cb651a7 --- /dev/null +++ b/docs/V5/docs/Static/Components/Alerts.md @@ -0,0 +1,39 @@ +## Alerts +#### Component \ +See [shared](layout/shared) for additional parameters +::: + +| Parameter | Type | Valid | Remarks/Output | +|---------------|----------------|----------------|----------------------------------| +| Color | Enum | `BSColor` | `.alert-[]` | {.table-striped} +| HasIcon | bool | true/false | `.d-flex` `.align-items-center` | +| IsDismissible | bool | true/false | `.alert-dismissible` | +| Heading | int | 1-6 | `

` to `

` | +| Header | RenderFragment | RenderFragment | Nested Content | +| Content | RenderFragment | RenderFragment | Nested Content | + +::: + +### Example + +{{sample=Components/Alerts/Alerts1}} + +### Live Example + +{{sample=Components/Alerts/Alerts2}} + +### Links + +{{sample=Components/Alerts/Alerts3}} + +### Heading + +{{sample=Components/Alerts/Alerts4}} + +### Icons + +{{sample=Components/Alerts/Alerts5}} + +### Dismissing + +{{sample=Components/Alerts/Alerts6}} diff --git a/docs/V5/docs/Static/Components/Badge.md b/docs/V5/docs/Static/Components/Badge.md new file mode 100644 index 00000000..dc37c313 --- /dev/null +++ b/docs/V5/docs/Static/Components/Badge.md @@ -0,0 +1,31 @@ +## BSBadge +#### Component \ +See [shared](layout/shared) for additional parameters +::: + +| Parameter | Type | Valid | Remarks/Output | +|-----------|----------------|----------------|-----------------| +| Color | Enum | `BSColor` | `.bg-[]` | {.table-striped} +| IsPill | bool | true/false | `.rounded-pill` | + +::: + +### Example + +{{sample=Components/Badge/Badge1}} + +### Buttons + +{{sample=Components/Badge/Badge2}} + +### Positioned + +{{sample=Components/Badge/Badge3}} + +### Background colors + +{{sample=Components/Badge/Badge4}} + +### Pill badges + +{{sample=Components/Badge/Badge5}} diff --git a/docs/V5/docs/Static/Components/Breadcrumb.md b/docs/V5/docs/Static/Components/Breadcrumb.md new file mode 100644 index 00000000..fdad59ef --- /dev/null +++ b/docs/V5/docs/Static/Components/Breadcrumb.md @@ -0,0 +1,38 @@ +## Breadcrumb +#### Component \ +See [shared](layout/shared) for additional parameters +::: + +| Parameter | Type | Valid | Remarks/Output | +|-----------|--------|--------|----------------| +| Divider | string | string | | {.table-striped} + +::: + +{.mt-4} +#### Component \ +::: + +| Parameter | Type | Valid | Remarks/Output | +|-----------|--------|--------|----------------| +| IsActive | string | string | `.active` | {.table-striped} +| Url | string | string | href=Url | + +::: + +### Example + +{{sample=Components/Breadcrumb/Breadcrumb1}} + +### Dividers + +{{sample=Components/Breadcrumb/Breadcrumb2}} + + +It’s also possible to use an **embedded** SVG icon. Apply it via Bootstraps CSS custom property, or use the Sass variable. + +{{sample=Components/Breadcrumb/Breadcrumb3}} + +You can remove the divider by passing in a empty string to the `Divider` parameter + +{{sample=Components/Breadcrumb/Breadcrumb4}} diff --git a/docs/V5/docs/Static/Components/Buttongroup.md b/docs/V5/docs/Static/Components/Buttongroup.md new file mode 100644 index 00000000..790eea52 --- /dev/null +++ b/docs/V5/docs/Static/Components/Buttongroup.md @@ -0,0 +1,16 @@ +## ButtonGroup +#### Component \ + +:::{.bd-callout .bd-callout-info} +**Work inprogress** Documentation is still being written for this component +::: +See [shared](layout/shared) for additional parameters +::: + +| Parameter | Type | Valid | | Remarks/Output | +|-------------------|------|------------|:----|---------------------------------------| +| DropdownPlacement | Enum | Placement | | `.dropup` or `dropstart` or `dropend` | {.table-striped} +| IsToolbar | bool | true/false | | `.btn-toolbar` | +| IsVertical | bool | true/false | | `.btn-group-vertical` | + +::: diff --git a/docs/V5/docs/Static/Components/Buttons.md b/docs/V5/docs/Static/Components/Buttons.md new file mode 100644 index 00000000..acec78e7 --- /dev/null +++ b/docs/V5/docs/Static/Components/Buttons.md @@ -0,0 +1,23 @@ +## Buttons +:::{.bd-callout .bd-callout-info} +**Work inprogress** Documentation is still being written for this component +::: +#### Component \ + +See [shared](layout/shared) for additional parameters +::: + +| Parameter | Type | Valid | Remarks/Output | +|------------|---------------|----------------|------------------------------| +| Size | Enum | Size | `btn-[]` | {.table-striped} +| IsActive | bool | true/false | `.active` | +| IsDisabled | bool | true/false | `disabled` | +| IsLink | bool | true/false | `` | +| IsOutlined | bool | true/false | `.btn-outline-[]` | +| IsReset | bool | true/false | Reset Button | +| IsSubmit | bool | true/false | Submit Button | +| OnClick | EventCallback | MouseEventArgs | | +| Target | string | string | `data-blazorstrap` of target | +| Url | string | string | | + +::: diff --git a/docs/V5/docs/Static/Components/Card.md b/docs/V5/docs/Static/Components/Card.md new file mode 100644 index 00000000..6a3f1266 --- /dev/null +++ b/docs/V5/docs/Static/Components/Card.md @@ -0,0 +1,6 @@ +## Cards +:::{.bd-callout .bd-callout-info} +**Work inprogress** Documentation is still being written for this component +::: + +#### Component \ diff --git a/docs/V5/docs/Static/Components/Carousel.md b/docs/V5/docs/Static/Components/Carousel.md new file mode 100644 index 00000000..db136345 --- /dev/null +++ b/docs/V5/docs/Static/Components/Carousel.md @@ -0,0 +1,53 @@ +## Carousel +#### Component \ +See [shared](layout/shared) for additional parameters +::: + +| Parameter | Type | Valid | Remarks/Output | +|---------------|------|------------|------------------| +| HasIndicators | bool | true/false | Shows Indicators | {.table-striped} +| IsDark | bool | true/false | `.carousel-dark` | +| IsFade | bool | true/false | `.carousel-fade` | +| IsSlide | bool | true/false | default on | + +::: + +{.mt-4} +#### Component \ +::: + +| Parameter | Type | Valid | Remarks/Output | +|-----------|------|-------------|----------------| +| Interval | int | > 1000 or 0 | 0 is disabled | {.table-striped} + +::: +#### Component \ +No Setting parameters + +### Slides only + +{{sample=Components/Carousel/Carousel1}} + +### With controls + +{{sample=Components/Carousel/Carousel2}} + +### With indicators + +{{sample=Components/Carousel/Carousel3}} + +### With captions + +{{sample=Components/Carousel/Carousel4}} + +### Crossfade + +{{sample=Components/Carousel/Carousel5}} + +### Individual interval + +{{sample=Components/Carousel/Carousel6}} + +### Dark variant + +{{sample=Components/Carousel/Carousel8}} diff --git a/docs/V5/docs/Static/Components/Closebutton.md b/docs/V5/docs/Static/Components/Closebutton.md new file mode 100644 index 00000000..8a411ba5 --- /dev/null +++ b/docs/V5/docs/Static/Components/Closebutton.md @@ -0,0 +1,27 @@ +## Close Button +#### Component \ +See [shared](layout/shared) for additional parameters +::: + +| Parameter | Type | Valid | Remarks/Output | +|------------|---------------|----------------|--------------------| +| IsDisabled | bool | true/false | `disabled` | {.table-striped} +| IsWhite | bool | true/false | `.btn-close-white` | +| OnClick | EventCallback | MouseEventArgs | | + +::: + +#### Component \ +No Setting parameters + +### Example + +{{sample=Components/CloseButton/CloseButton1}} + +### Disabled state + +{{sample=Components/CloseButton/CloseButton2}} + +### White variant + +{{sample=Components/CloseButton/CloseButton3;bg-dark}} diff --git a/docs/V5/docs/Static/Components/Collapse.md b/docs/V5/docs/Static/Components/Collapse.md new file mode 100644 index 00000000..0367a69e --- /dev/null +++ b/docs/V5/docs/Static/Components/Collapse.md @@ -0,0 +1,29 @@ +## Collapse +#### Component \ +See [shared](layout/shared) for additional parameters +::: + +| Parameter | Type | Valid | Remarks/Output | +|--------------|----------------|----------------|--------------------| +| DefaultShown | bool | true/false | | {.table-striped} +| IsInNavbar | bool | true/false | `.navbar-collapse` | +| IsList | bool | true/false | ` -
  • @@ -41,10 +29,11 @@ Forms
      +
    • Shared
    • Form control
    • Select
    • Checks & Radios
    • -
    • Range
    • +
    • Range
    • Input Group
    • Input File
    • Validation
    • @@ -76,7 +65,7 @@
    • Pagination
    • Popovers
    • Progress
    • -
    • Toasts
    • +
    • Toasts
    • Tooltips
    diff --git a/src/BlazorStrap-Docs/wwwroot/Samples/Components/Popover/Popover1.md b/src/BlazorStrap-Docs/wwwroot/Samples/Components/Popover/Popover1.md new file mode 100644 index 00000000..77599806 --- /dev/null +++ b/src/BlazorStrap-Docs/wwwroot/Samples/Components/Popover/Popover1.md @@ -0,0 +1,20 @@ +Left + +
    Test
    + Testing +
    +Top + +
    Test
    + Testing +
    +Bottom + +
    Test
    + Testing +
    +Right + +
    Test
    + Testing +
    \ No newline at end of file diff --git a/src/BlazorStrap-Docs/wwwroot/Samples/Components/Progress/Progress1.md b/src/BlazorStrap-Docs/wwwroot/Samples/Components/Progress/Progress1.md new file mode 100644 index 00000000..fca58b7d --- /dev/null +++ b/src/BlazorStrap-Docs/wwwroot/Samples/Components/Progress/Progress1.md @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/BlazorStrap-Docs/wwwroot/Samples/Components/Toast/Toast1.md b/src/BlazorStrap-Docs/wwwroot/Samples/Components/Toast/Toast1.md new file mode 100644 index 00000000..745abc1c --- /dev/null +++ b/src/BlazorStrap-Docs/wwwroot/Samples/Components/Toast/Toast1.md @@ -0,0 +1,4 @@ + +
    BlazorStarp
    + Hello, world! +
    \ No newline at end of file diff --git a/src/BlazorStrap-Docs/wwwroot/Samples/Forms/Checkbox/Checkbox5.md b/src/BlazorStrap-Docs/wwwroot/Samples/Forms/Checkbox/Checkbox5.md index 890d570e..d88216e8 100644 --- a/src/BlazorStrap-Docs/wwwroot/Samples/Forms/Checkbox/Checkbox5.md +++ b/src/BlazorStrap-Docs/wwwroot/Samples/Forms/Checkbox/Checkbox5.md @@ -1,10 +1,10 @@  - - Default radio + + Disabled radio - - Default checked radio + + Disabled checked radio @code { private string Value { get; set; } = "off"; diff --git a/src/BlazorStrap-Docs/wwwroot/Samples/Forms/Checkbox/Checkbox7.md b/src/BlazorStrap-Docs/wwwroot/Samples/Forms/Checkbox/Checkbox7.md index 70ce738f..3e641ad6 100644 --- a/src/BlazorStrap-Docs/wwwroot/Samples/Forms/Checkbox/Checkbox7.md +++ b/src/BlazorStrap-Docs/wwwroot/Samples/Forms/Checkbox/Checkbox7.md @@ -1,28 +1,29 @@  - + 1 - + 2 - + 3 (disabled) - + 1 - + 2 - + 3 (disabled) @code { private string Value { get; set; } = "off"; + private string ValueTwo { get; set; } = "off"; } \ No newline at end of file diff --git a/src/BlazorStrap-Docs/wwwroot/Static/Components/Badge.md b/src/BlazorStrap-Docs/wwwroot/Static/Components/Badge.md index 5efe3c22..81f0fa5e 100644 --- a/src/BlazorStrap-Docs/wwwroot/Static/Components/Badge.md +++ b/src/BlazorStrap-Docs/wwwroot/Static/Components/Badge.md @@ -22,6 +22,10 @@ See [shared](layout/shared) for additional parameters {{sample=Components/Badge/Badge3}} +### Background colors + {{sample=Components/Badge/Badge4}} +### Pill badges + {{sample=Components/Badge/Badge5}} diff --git a/src/BlazorStrap-Docs/wwwroot/Static/Components/Buttons.md b/src/BlazorStrap-Docs/wwwroot/Static/Components/Buttons.md index 817f2a63..aad1093b 100644 --- a/src/BlazorStrap-Docs/wwwroot/Static/Components/Buttons.md +++ b/src/BlazorStrap-Docs/wwwroot/Static/Components/Buttons.md @@ -7,17 +7,17 @@ See [shared](layout/shared) for additional parameters ::: -| Parameter | Type | Valid | Remarks/Output | -|------------|---------------|----------------|-------------------------------| -| Size | Enum | Size | `btn-[]` | {.table-striped} -| IsActive | bool | true/false | `.active` | -| IsDisabled | bool | true/false | `disabled` | -| IsLink | bool | true/false | `
    ` | -| IsOutlined | bool | true/false | `.btn-outline-[]` | -| IsReset | bool | true/false | Reset Button | -| IsSubmit | bool | true/false | Submit Button | -| OnClick | EventCallback | MouseEventArgs | | -| Target | string | string | DataId of your target element | -| Url | string | string | | +| Parameter | Type | Valid | Remarks/Output | +|------------|---------------|----------------|------------------------------| +| Size | Enum | Size | `btn-[]` | {.table-striped} +| IsActive | bool | true/false | `.active` | +| IsDisabled | bool | true/false | `disabled` | +| IsLink | bool | true/false | `` | +| IsOutlined | bool | true/false | `.btn-outline-[]` | +| IsReset | bool | true/false | Reset Button | +| IsSubmit | bool | true/false | Submit Button | +| OnClick | EventCallback | MouseEventArgs | | +| Target | string | string | `data-blazorstrap` of target | +| Url | string | string | | ::: diff --git a/src/BlazorStrap-Docs/wwwroot/Static/Components/Carousel.md b/src/BlazorStrap-Docs/wwwroot/Static/Components/Carousel.md index a78da400..626ae7fa 100644 --- a/src/BlazorStrap-Docs/wwwroot/Static/Components/Carousel.md +++ b/src/BlazorStrap-Docs/wwwroot/Static/Components/Carousel.md @@ -13,7 +13,7 @@ See [shared](layout/shared) for additional parameters ::: {.mt-4} -#### Component \ +#### Component \ ::: | Parameter | Type | Valid | Remarks/Output | diff --git a/src/BlazorStrap-Docs/wwwroot/Static/Components/Dropdowns.md b/src/BlazorStrap-Docs/wwwroot/Static/Components/Dropdowns.md new file mode 100644 index 00000000..3f9d9b3d --- /dev/null +++ b/src/BlazorStrap-Docs/wwwroot/Static/Components/Dropdowns.md @@ -0,0 +1,119 @@ +## Dropdowns +#### Component \ +See [shared](layout/shared) for additional parameters +::: + +| Parameter | Type | Valid | Remarks/Output | +|-------------------|----------------|----------------|------------------------------| +| AllowItemClick | bool | true/false | Allows Inside Clicks | {.table-striped} +| AllowOutsideClick | bool | true/false | Allows Outside Clicks | +| Demo | bool | RenderFragment | Nested Content | +| IsDark | bool | RenderFragment | Nested Content | +| IsManual | bool | true/false | Manual Close | +| IsStatic | bool | true/false | Disables dynamic positioning | +| Offset | string | #,# | Dropdown offset | +| ShownAttribute | string | string | Adds attribute when shown | +| Target | string | string | `data-blazorstrap` of target | +| Toggler | RenderFragment | RenderFragment | Nested Content | +| Content | RenderFragment | RenderFragment | Nested Content | + +::: + +### Single button + +{{sample=Components/Dropdowns/Dropdowns1}} + +{{sample=Components/Dropdowns/Dropdowns2}} + +{{sample=Components/Dropdowns/Dropdowns3}} + +### Split button + +{{sample=Components/Dropdowns/Dropdowns4}} + +### Sizing +Button dropdowns work with buttons of all sizes, including default and split dropdown buttons. + +{{sample=Components/Dropdowns/Dropdowns5}} + +{{sample=Components/Dropdowns/Dropdowns6}} + +### Dark + +{{sample=Components/Dropdowns/Dropdowns7}} + +And putting it to use in a navbar: +{{sample=Components/Dropdowns/Dropdowns8}} + +### Directions +{.mt-4} +### Dropup + +{{sample=Components/Dropdowns/Dropdowns9}} + +### Dropright + +{{sample=Components/Dropdowns/Dropdowns10}} + +### Dropleft + +{{sample=Components/Dropdowns/Dropdowns11}} + +### Menu items +Default type of menu items are `` You can use `IsButton` to return a `