playbook_ui_docs 13.28.0.pre.alpha.PLAY1209fixformgroupdatepickerborderradiusreact2953 → 13.28.0.pre.alpha.PLAY13592980

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b3ae53fd3c3c01b8ab7b5e1922cbc0fde9e8babbac964775a6e3cfa46de098ed
4
- data.tar.gz: 9446ed8218ccc5ced9ed7bcd51f2c75fde40f4298f2fd66667c5f8f3dc46e21a
3
+ metadata.gz: be74153580c9e8a5b5f03102da6886980163a9270fbada4ba8f2faecfa4eea56
4
+ data.tar.gz: ff954834b559c4021d73bbe986f3d66f55a2e67b68b688b158089bbebfe5091e
5
5
  SHA512:
6
- metadata.gz: 21baa3bae3e9dcf2dfbbe264927f556ff9b7297471c3f31a38f87b6a934f653e78b92816815ba4f562edd80618e3acc62a03c0cb471f7d8555bfe7f61967306b
7
- data.tar.gz: fe01bb63c302da0a688b049d2b4934837d7e492fc6f4e7b9570fab803a7cc4bf77eccb60ffc37a0dcc7196aa20bbf21a551fe8bfe08a6cd6f5b17011d64049d7
6
+ metadata.gz: af695aed95f889bcec04d934eccf493cb814e136a54092b3d1803f49f17d8303dd021b9c207270a178062bc633bc524cf019652b96e3ac6ade598a5529f49a7d
7
+ data.tar.gz: b33a978cf06a69cc8db0f89241c34881c72262a7bd234cd17ec86babfc895f8ddfeccb19b8bf55c09d22851e6a9ce47f11f9027ae25041d789bdbd9fd768f9a1
@@ -0,0 +1,40 @@
1
+ <%
2
+ column_definitions = [
3
+ {
4
+ accessor: "year",
5
+ label: "Year",
6
+ cellAccessors: ["quarter", "month", "day"],
7
+ },
8
+ {
9
+ accessor: "newEnrollments",
10
+ label: "New Enrollments",
11
+ },
12
+ {
13
+ accessor: "scheduledMeetings",
14
+ label: "Scheduled Meetings",
15
+ },
16
+ {
17
+ accessor: "attendanceRate",
18
+ label: "Attendance Rate",
19
+ },
20
+ {
21
+ accessor: "completedClasses",
22
+ label: "Completed Classes",
23
+ },
24
+ {
25
+ accessor: "classCompletionRate",
26
+ label: "Class Completion Rate",
27
+ },
28
+ {
29
+ accessor: "graduatedStudents",
30
+ label: "Graduated Students",
31
+ }
32
+ ]
33
+
34
+ subrow_headers = ["Quarter", "Month", "Day"]
35
+ %>
36
+
37
+ <%= pb_rails("advanced_table", props: { table_data: @table_data, column_definitions: column_definitions }) do %>
38
+ <%= pb_rails("advanced_table/table_header", props: { column_definitions: column_definitions }) %>
39
+ <%= pb_rails("advanced_table/table_body", props: { id: "subrow_headers", table_data: @table_data, column_definitions: column_definitions, subrow_headers: subrow_headers, enable_toggle_expansion: "all" }) %>
40
+ <% end %>
@@ -0,0 +1,3 @@
1
+ `subrow_headers` is an optional prop that if present will add header rows at each level of the nested data. The prop takes an array of strings, each string being the text for each header row. The array of strings must be in the order in which they need to be rendered in the UI according to depth.
2
+
3
+ `enable_toggle_expansion` is an additional optional prop that can be used in conjunction with the subRowHeaders prop. `enable_toggle_expansion` is a string that can be "all", "header" or "none". If set to "all", the toggle exapansion button will appear in the table header as well as in the subRow headers. If set to "header" button will only appear in header and NOT in subRow headers. This is set to "header" by default.
@@ -1,3 +1,3 @@
1
1
  `subRowHeaders` is an optional prop that if present will add header rows at each level of the nested data. The prop takes an array of strings, each string being the text for each header row. The array of strings must be in the order in which they need to be rendered in the UI according to depth.
2
2
 
3
- `enableToggleExpansion` is an additional optional prop that can be used in conjunction with the subRowHeaders prop. `enableToggleExpansion` is a string that can be 'all', 'header" or "none". If set to 'all', the toggle exapansion button will appear in the table header as well as in the subRow headers. If set to 'header' button will only appear in header and NOT in subRow headers. This is set to 'header' by default.
3
+ `enableToggleExpansion` is an additional optional prop that can be used in conjunction with the subRowHeaders prop. `enableToggleExpansion` is a string that can be "all", "header" or "none". If set to "all", the toggle exapansion button will appear in the table header as well as in the subRow headers. If set to "header" button will only appear in header and NOT in subRow headers. This is set to "header" by default.
@@ -1,6 +1,7 @@
1
1
  examples:
2
2
  rails:
3
3
  - advanced_table_beta: Default (Required Props)
4
+ - advanced_table_beta_subrow_headers: SubRow Headers
4
5
  react:
5
6
  - advanced_table_default: Default (Required Props)
6
7
  - advanced_table_loading: Loading State
@@ -12,4 +13,3 @@ examples:
12
13
  - advanced_table_table_options: Table Options
13
14
  - advanced_table_table_props: Table Props
14
15
  - advanced_table_inline_row_loading: inline Row Loading
15
-
@@ -13,6 +13,15 @@
13
13
  ]
14
14
  %>
15
15
 
16
+ <%
17
+ example_dropdown_options = [
18
+ { label: 'United States', value: 'United States', id: 'us' },
19
+ { label: 'Canada', value: 'Canada', id: 'ca' },
20
+ { label: 'Pakistan', value: 'Pakistan', id: 'pk' },
21
+ ]
22
+
23
+ %>
24
+
16
25
  <%= pb_form_with(scope: :example, url: "", method: :get) do |form| %>
17
26
  <%= form.typeahead :example_user, props: { data: { typeahead_example1: true, user: {} }, placeholder: "Search for a user" } %>
18
27
  <%= form.text_field :example_text_field, props: { label: true } %>
@@ -23,6 +32,7 @@
23
32
  <%= form.password_field :example_password_field, props: { label: true } %>
24
33
  <%= form.url_field :example_url_field, props: { label: true } %>
25
34
  <%= form.text_area :example_text_area, props: { label: true } %>
35
+ <%= form.dropdown_field :example_dropdown, props: { label: true, options: example_dropdown_options } %>
26
36
  <%= form.select :example_select, [ ["Yes", 1], ["No", 2] ], props: { label: true } %>
27
37
  <%= form.collection_select :example_collection_select, example_collection, :value, :name, props: { label: true } %>
28
38
  <%= form.check_box :example_checkbox,
@@ -1 +1 @@
1
- A pill uses both a keyword and a specific color to categorize an item. Each pill directly corresponds to a data color here: https://playbook.powerapp.cloud/utilities
1
+ A pill uses both a keyword and a specific color to categorize an item. Each pill directly corresponds to a data color <a href="https://playbook.powerapp.cloud/visual_guidelines/colors" target="_blank">here</a>.
data/dist/playbook-doc.js CHANGED
@@ -50,7 +50,7 @@ function G(e,t){return e?function(e){return"function"==typeof e&&(()=>{const t=O
50
50
  *
51
51
  * http://api.jqueryui.com/category/ui-core/
52
52
  */
53
- var n=/input|select|textarea|button|object|iframe/;function a(e){var t=e.offsetWidth<=0&&e.offsetHeight<=0;if(t&&!e.innerHTML)return!0;try{var r=window.getComputedStyle(e),n=r.getPropertyValue("display");return t?"contents"!==n&&function(e,t){return"visible"!==t.getPropertyValue("overflow")||e.scrollWidth<=0&&e.scrollHeight<=0}(e,r):"none"===n}catch(e){return console.warn("Failed to inspect element style"),!1}}function i(e,t){var r=e.nodeName.toLowerCase();return(n.test(r)&&!e.disabled||"a"===r&&e.href||t)&&function(e){for(var t=e,r=e.getRootNode&&e.getRootNode();t&&t!==document.body;){if(r&&t===r&&(t=r.host.parentNode),a(t))return!1;t=t.parentNode}return!0}(e)}function o(e){var t=e.getAttribute("tabindex");null===t&&(t=void 0);var r=isNaN(t);return(r||t>=0)&&i(e,!r)}e.exports=t.default},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.resetState=function(){s&&(s.removeAttribute?s.removeAttribute("aria-hidden"):null!=s.length?s.forEach((function(e){return e.removeAttribute("aria-hidden")})):document.querySelectorAll(s).forEach((function(e){return e.removeAttribute("aria-hidden")})));s=null},t.log=function(){0},t.assertNodeList=l,t.setElement=function(e){var t=e;if("string"==typeof t&&o.canUseDOM){var r=document.querySelectorAll(t);l(r,t),t=r}return s=t||s},t.validateElement=c,t.hide=function(e){var t=!0,r=!1,n=void 0;try{for(var a,i=c(e)[Symbol.iterator]();!(t=(a=i.next()).done);t=!0){a.value.setAttribute("aria-hidden","true")}}catch(e){r=!0,n=e}finally{try{!t&&i.return&&i.return()}finally{if(r)throw n}}},t.show=function(e){var t=!0,r=!1,n=void 0;try{for(var a,i=c(e)[Symbol.iterator]();!(t=(a=i.next()).done);t=!0){a.value.removeAttribute("aria-hidden")}}catch(e){r=!0,n=e}finally{try{!t&&i.return&&i.return()}finally{if(r)throw n}}},t.documentNotReadyOrSSRTesting=function(){s=null};var n,a=r(179),i=(n=a)&&n.__esModule?n:{default:n},o=r(177);var s=null;function l(e,t){if(!e||!e.length)throw new Error("react-modal: No elements were found for selector "+t+".")}function c(e){var t=e||s;return t?Array.isArray(t)||t instanceof HTMLCollection||t instanceof NodeList?t:[t]:((0,i.default)(!1,["react-modal: App element is not defined.","Please use `Modal.setAppElement(el)` or set `appElement={el}`.","This is needed so screen readers don't see main content","when modal is opened. It is not recommended, but you can opt-out","by setting `ariaHideApp={false}`."].join(" ")),[])}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.log=function(){console.log("portalOpenInstances ----------"),console.log(a.openInstances.length),a.openInstances.forEach((function(e){return console.log(e)})),console.log("end portalOpenInstances ----------")},t.resetState=function(){a=new n};var n=function e(){var t=this;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.register=function(e){-1===t.openInstances.indexOf(e)&&(t.openInstances.push(e),t.emit("register"))},this.deregister=function(e){var r=t.openInstances.indexOf(e);-1!==r&&(t.openInstances.splice(r,1),t.emit("deregister"))},this.subscribe=function(e){t.subscribers.push(e)},this.emit=function(e){t.subscribers.forEach((function(r){return r(e,t.openInstances.slice())}))},this.openInstances=[],this.subscribers=[]},a=new n;t.default=a},function(e,t,r){var n=r(90).default,a=r(269);e.exports=function(e){var t=a(e,"string");return"symbol"===n(t)?t:String(t)},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t,r){var n=r(210);e.exports=function(e,t){if(e){if("string"==typeof e)return n(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?n(e,t):void 0}},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t,r){"use strict";var n=r(0),a=r.n(n),i=r(3),o=r.n(i),s=r(223),l=r.n(s),c=r(2),u=r(4),d=r(9),m=r(26),p=r(195),h=r(193),f=r(194),b=r(7),g=r(56),_=r(12),y=r(150);function v(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,a,i,o,s=[],l=!0,c=!1;try{if(i=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=i.call(r)).done)&&(s.push(n.value),s.length!==t);l=!0);}catch(e){c=!0,a=e}finally{try{if(!l&&null!=r.return&&(o=r.return(),Object(o)!==o))return}finally{if(c)throw a}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return k(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return k(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function k(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var x=function e(t){var r=t.aria,i=void 0===r?{}:r,s=t.cancelButton,p=t.confirmButton,h=t.className,f=t.data,k=void 0===f?{}:f,x=t.htmlOptions,w=void 0===x?{}:x,N=t.id,E=t.size,j=void 0===E?"md":E,O=t.children,C=t.loading,S=void 0!==C&&C,z=t.fullHeight,T=void 0!==z&&z,A=t.opened,M=t.onCancel,P=t.onConfirm,I=t.onClose,D=t.placement,L=void 0===D?"center":D,$=t.portalClassName,R=t.shouldCloseOnOverlayClick,F=void 0===R||R,B=t.status,q=t.text,V=t.title,U=t.trigger,H=Object(c.a)(i),W=Object(c.c)(k),G=Object(c.d)(w),Y={base:o()("pb_dialog",Object(c.b)("pb_dialog",j,L)),afterOpen:"pb_dialog_after_open",beforeClose:"pb_dialog_before_close"},X={base:"pb_dialog_overlay ".concat(null!==T&&(T?"xl"===j?"full_height_center":"full_height_".concat(L):null)),afterOpen:"pb_dialog_overlay_after_open",beforeClose:"pb_dialog_overlay_before_close"},Z=o()(Object(c.b)("pb_dialog_wrapper"),Object(u.c)(t),h),K=v(Object(n.useState)(!1),2),J=K[0],Q=K[1],ee=U?J:A,te={onClose:U?function(){Q(!1)}:I};U&&document.querySelector(U).addEventListener("click",(function(){Q(!0),document.querySelector("#cancel-button").addEventListener("click",(function(){Q(!1)}))}),{once:!0});var re={default:{icon:"exclamation-circle",variant:"default",size:"lg"},info:{icon:"info-circle",variant:"default",size:"lg"},caution:{icon:"exclamation-triangle",variant:"yellow",size:"lg"},delete:{icon:"trash-alt",variant:"red",size:"lg"},error:{icon:"times-circle",variant:"red",size:"lg"},success:{icon:"check-circle",variant:"green",size:"lg"}};return a.a.createElement(y.a.Provider,{value:te},a.a.createElement("div",Object.assign({},H,W,G,{className:Z}),a.a.createElement(l.a,{ariaHideApp:!1,className:Y,closeTimeoutMS:200,contentLabel:"Minimal Modal Example",id:N,isOpen:ee,onRequestClose:I,overlayClassName:X,portalClassName:$,shouldCloseOnOverlayClick:F},a.a.createElement(a.a.Fragment,null,V&&!B?a.a.createElement(e.Header,null,V):null,!B&&q?a.a.createElement(e.Body,null,q):null,B&&a.a.createElement(e.Body,{className:"dialog_status_text_align",padding:"md"},a.a.createElement(b.a,{align:"center",orientation:"column"},a.a.createElement(g.a,{icon:re[B].icon,size:re[B].size,variant:re[B].variant}),a.a.createElement(_.a,{marginTop:"sm",size:3},V),a.a.createElement(d.a,{marginTop:"xs",text:q}))),s&&p?a.a.createElement(e.Footer,null,a.a.createElement(m.a,{htmlType:"button",loading:S,onClick:P,variant:"primary"},p),a.a.createElement(m.a,{htmlType:"button",id:"cancel-button",onClick:M,variant:"link"},s)):null,O))))};x.Header=p.a,x.Body=f.a,x.Footer=h.a,t.a=x},function(e,t,r){"use strict";var n=r(0),a=r.n(n),i=r(3),o=r.n(i),s=r(67),l=r.n(s),c=r(29),u=r.n(c),d=r(49),m=r(75),p=r(68),h=r(121),f=r.n(h),b=r(226),g=r.n(b),_=r(8),y=r.n(_),v=r(10),k=r.n(v),x=r(2),w=r(4);function N(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,a,i,o,s=[],l=!0,c=!1;try{if(i=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=i.call(r)).done)&&(s.push(n.value),s.length!==t);l=!0);}catch(e){c=!0,a=e}finally{try{if(!l&&null!=r.return&&(o=r.return(),Object(o)!==o))return}finally{if(c)throw a}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return E(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return E(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function E(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var j=function(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var a=0;for(n=Object.getOwnPropertySymbols(e);a<n.length;a++)t.indexOf(n[a])<0&&Object.prototype.propertyIsEnumerable.call(e,n[a])&&(r[n[a]]=e[n[a]])}return r};t.a=function(e){var t=e.aria,r=void 0===t?{}:t,i=e.chartData,s=e.dark,c=void 0!==s&&s,h=e.data,b=void 0===h?{}:h,_=e.disableAnimation,v=void 0!==_&&_,E=e.fullCircle,O=void 0!==E&&E,C=e.height,S=void 0===C?null:C,z=e.htmlOptions,T=void 0===z?{}:z,A=e.id,M=e.max,P=void 0===M?100:M,I=e.min,D=void 0===I?0:I,L=e.prefix,$=void 0===L?"":L,R=e.showLabels,F=void 0!==R&&R,B=e.style,q=void 0===B?"solidgauge":B,V=e.suffix,U=void 0===V?"":V,H=e.title,W=void 0===H?"":H,G=e.tooltipHtml,Y=void 0===G?'<span style="font-weight: bold; color:{point.color};">●</span>{point.name}: <b>{point.y}</b>':G,X=e.colors,Z=void 0===X?[]:X,K=e.minorTickInterval,J=void 0===K?null:K,Q=e.circumference,ee=void 0===Q?O?[0,360]:[-100,100]:Q,te=j(e,["aria","chartData","dark","data","disableAnimation","fullCircle","height","htmlOptions","id","max","min","prefix","showLabels","style","suffix","title","tooltipHtml","colors","minorTickInterval","circumference"]),re=Object(x.a)(r),ne=Object(x.c)(b),ae=Object(x.d)(T);f()(u.a),g()(u.a);c?u.a.setOptions(m.a):u.a.setOptions(d.a),u.a.setOptions({tooltip:{pointFormat:Y,followPointer:!0}});var ie=Object(x.b)({pb_gauge_kit:!0}),oe=N(Object(n.useState)({}),2),se=oe[0],le=oe[1];return Object(n.useEffect)((function(){var e=i.map((function(e){return e.y=e.value,delete e.value,e})),t={chart:{events:{load:function(){setTimeout(this.reflow.bind(this),0)}},type:q,height:S},title:{text:W},yAxis:{min:D,max:P,lineWidth:0,tickWidth:0,minorTickInterval:J,tickAmount:2,tickPositions:[D,P],labels:{y:26,enabled:F}},credits:!1,series:[{data:e}],pane:{center:["50%","50%"],size:"90%",startAngle:ee[0],endAngle:ee[1],background:{borderWidth:20,innerRadius:"90%",outerRadius:"90%",shape:"arc",className:"gauge-pane"}},colors:void 0!==Z&&Z.length>0?Object(p.a)(Z):d.a.colors,plotOptions:{series:{animation:!v},solidgauge:{borderColor:void 0!==Z&&1===Z.length?Object(p.a)(Z).join():d.a.colors[0],borderWidth:20,radius:90,innerRadius:"90%",dataLabels:{borderWidth:0,color:y.a.text_lt_default,enabled:!0,format:'<span class="prefix">'.concat($,"</span>")+'<span class="fix">{y:,f}</span>'+'<span class="suffix">'.concat(U,"</span>"),style:{fontFamily:k.a.font_family_base,fontWeight:k.a.regular,fontSize:k.a.heading_2},y:-26}}}};le(Object.assign({},t)),document.querySelector(".prefix")&&(document.querySelectorAll(".prefix").forEach((function(e){e.setAttribute("y","28")})),document.querySelectorAll(".fix").forEach((function(e){return e.setAttribute("y","38")})))}),[i]),a.a.createElement(l.a,{containerProps:Object.assign(Object.assign(Object.assign({className:o()(ie,Object(w.c)(te)),id:A},re),ne),ae),highcharts:u.a,options:se})}},function(e,t,r){"use strict";r.d(t,"a",(function(){return p}));var n=r(55),a=r(295);function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,s(n.key),n)}}function s(e){var t=function(e,t){if("object"!=typeof e||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!=typeof n)return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"==typeof t?t:t+""}function l(e,t){return(l=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e})(e,t)}function c(e){var t=function(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(e){}return function(){return!!e}()}();return function(){var r,n=d(e);if(t){var a=d(this).constructor;r=Reflect.construct(n,arguments,a)}else r=n.apply(this,arguments);return u(this,r)}}function u(e,t){if(t&&("object"==typeof t||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function d(e){return(d=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var m=[0,20],p=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&l(e,t)}(u,e);var t,r,n,s=c(u);function u(){return i(this,u),s.apply(this,arguments)}return t=u,n=[{key:"selector",get:function(){return"[data-pb-popover-kit]"}}],(r=[{key:"moveTooltip",value:function(){document.querySelector("body").appendChild(this.tooltip)}},{key:"connect",value:function(){var e=this;this.moveTooltip(),this.popper=Object(a.a)(this.triggerElement,this.tooltip,{placement:this.position,strategy:"fixed",modifiers:[{name:"offset",options:{offset:this.offset}}]}),this.triggerElement.addEventListener("click",(function(t){t.preventDefault(),t.stopPropagation(),e.tooltip.classList.contains("show")||e.checkCloseTooltip(),setTimeout((function(){e.toggleTooltip(),e.popper.update()}),0)}))}},{key:"checkCloseTooltip",value:function(){var e=this;document.querySelector("body").addEventListener("click",(function(t){var r=t.target,n=null!==r.closest("#".concat(e.tooltipId)),a=null!==r.closest("#".concat(e.triggerElementId));switch(e.closeOnClick){case"any":(n||!n&&!a)&&e.hideTooltip();break;case"outside":n||a||e.hideTooltip();break;case"inside":n&&e.hideTooltip()}}),!0)}},{key:"hideTooltip",value:function(){this.tooltip.classList.remove("show"),this.tooltip.classList.add("hide")}},{key:"toggleTooltip",value:function(){this.tooltip.classList.toggle("show"),this.tooltip.classList.toggle("hide")}},{key:"triggerElement",get:function(){return this._triggerElement=this._triggerElement||document.querySelector("#".concat(this.triggerElementId))}},{key:"tooltip",get:function(){return this._tooltip=this._tooltip||this.element.querySelector("#".concat(this.tooltipId))}},{key:"position",get:function(){return this.element.dataset.pbPopoverPosition}},{key:"triggerElementId",get:function(){return this.element.dataset.pbPopoverTriggerElementId}},{key:"tooltipId",get:function(){return this.element.dataset.pbPopoverTooltipId}},{key:"offset",get:function(){return"true"===this.element.dataset.pbPopoverOffset?m:[0,0]}},{key:"closeOnClick",get:function(){return this.element.dataset.pbPopoverCloseOnClick}}])&&o(t.prototype,r),n&&o(t,n),Object.defineProperty(t,"prototype",{writable:!1}),u}(n.a)},function(e,t,r){"use strict";r.d(t,"a",(function(){return b}));var n=r(55),a=r(184),i=r(186),o=r(189),s=r(188);function l(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function c(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,u(n.key),n)}}function u(e){var t=function(e,t){if("object"!=typeof e||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!=typeof n)return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"==typeof t?t:t+""}function d(e,t){return(d=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e})(e,t)}function m(e){var t=function(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(e){}return function(){return!!e}()}();return function(){var r,n=h(e);if(t){var a=h(this).constructor;r=Reflect.construct(n,arguments,a)}else r=n.apply(this,arguments);return p(this,r)}}function p(e,t){if(t&&("object"==typeof t||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function h(e){return(h=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var f=[0,20],b=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&d(e,t)}(p,e);var t,r,n,u=m(p);function p(){return l(this,p),u.apply(this,arguments)}return t=p,n=[{key:"selector",get:function(){return"[data-pb-tooltip-kit]"}}],(r=[{key:"connect",value:function(){var e=this;this.triggerElements.forEach((function(t){t.addEventListener("mouseenter",(function(){e.mouseenterTimeout=setTimeout((function(){e.showTooltip(t),e.checkCloseTooltip(t)}),250),t.addEventListener("mouseleave",(function(){clearTimeout(e.mouseenterTimeout),setTimeout((function(){e.hideTooltip()}),0)}),{once:!0})}))})),this.tooltip.addEventListener("mouseenter",(function(){clearTimeout(e.mouseenterTimeout)})),this.tooltip.addEventListener("mouseleave",(function(){e.hideTooltip()}))}},{key:"checkCloseTooltip",value:function(e){var t=this;document.querySelector("body").addEventListener("click",(function(r){var n=r.target,a=n.closest("#".concat(t.tooltipId))===t.tooltip;n.closest(t.triggerElementSelector)===e||a?t.checkCloseTooltip(e):t.hideTooltip()}),{once:!0})}},{key:"showTooltip",value:function(e){"false"!==this.shouldShowTooltip&&(this.popper=Object(a.a)(e,this.tooltip,{placement:this.position,modifiers:[{name:"offset",options:{offset:f}},{name:"arrow",options:{element:document.querySelector("#".concat(this.tooltipId,"-arrow"))}},i.a,o.a,s.a]}),this.tooltip.classList.add("show"))}},{key:"hideTooltip",value:function(){var e=this;this.tooltip.classList.add("fade_out"),setTimeout((function(){e.popper&&(e.popper.destroy(),e.tooltip.classList.remove("show"),e.tooltip.classList.remove("fade_out"))}),250)}},{key:"triggerElements",get:function(){var e;return(e=this.triggerElementId?document.querySelector("#".concat(this.triggerElementId)):this.triggerElementSelector.indexOf("#")>-1?document.querySelector("".concat(this.triggerElementSelector)):document.querySelectorAll("".concat(this.triggerElementSelector)))?(e.length||(e=[e]),this._triggerElements=this._triggerElements||e):(console.error("Tooltip Kit: an invalid or unavailable DOM reference was provided!"),[])}},{key:"tooltip",get:function(){return this._tooltip=this._tooltip||this.element.querySelector("#".concat(this.tooltipId))}},{key:"position",get:function(){return this.element.dataset.pbTooltipPosition}},{key:"triggerElementId",get:function(){return this.element.dataset.pbTooltipTriggerElementId}},{key:"tooltipId",get:function(){return this.element.dataset.pbTooltipTooltipId}},{key:"triggerElementSelector",get:function(){return this.element.dataset.pbTooltipTriggerElementSelector}},{key:"shouldShowTooltip",get:function(){return this.element.dataset.pbTooltipShowTooltip}}])&&c(t.prototype,r),n&&c(t,n),Object.defineProperty(t,"prototype",{writable:!1}),p}(n.a)},function(e,t,r){"use strict";r.d(t,"a",(function(){return h}));var n=r(55),a=r(25);function i(e,t){var r="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!r){if(Array.isArray(e)||(r=function(e,t){if(!e)return;if("string"==typeof e)return o(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return o(e,t)}(e))||t&&e&&"number"==typeof e.length){r&&(e=r);var n=0,a=function(){};return{s:a,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},e:function(e){throw e},f:a}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,l=!1;return{s:function(){r=r.call(e)},n:function(){var e=r.next();return s=e.done,e},e:function(e){l=!0,i=e},f:function(){try{s||null==r.return||r.return()}finally{if(l)throw i}}}}function o(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function l(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,c(n.key),n)}}function c(e){var t=function(e,t){if("object"!=typeof e||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!=typeof n)return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"==typeof t?t:t+""}function u(e,t){return(u=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e})(e,t)}function d(e){var t=function(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(e){}return function(){return!!e}()}();return function(){var r,n=p(e);if(t){var a=p(this).constructor;r=Reflect.construct(n,arguments,a)}else r=n.apply(this,arguments);return m(this,r)}}function m(e,t){if(t&&("object"==typeof t||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function p(e){return(p=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var h=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&u(e,t)}(c,e);var t,r,n,o=d(c);function c(){return s(this,c),o.apply(this,arguments)}return t=c,n=[{key:"selector",get:function(){return"[data-pb-typeahead-kit]"}}],(r=[{key:"connect",value:function(){var e=this;this.element.addEventListener("keydown",(function(t){return e.handleKeydown(t)})),this.searchInput.addEventListener("focus",(function(){return e.debouncedSearch()})),this.searchInput.addEventListener("input",(function(){return e.debouncedSearch()})),this.resultsElement.addEventListener("click",(function(t){return e.optionSelected(t)}))}},{key:"handleKeydown",value:function(e){"ArrowUp"===e.key?(e.preventDefault(),this.focusPreviousOption()):"ArrowDown"===e.key&&(e.preventDefault(),this.focusNextOption())}},{key:"search",value:function(){var e=this;if(this.searchTerm.length<parseInt(this.searchTermMinimumLength))return this.clearResults();this.toggleResultsLoadingIndicator(!0),this.showResults();var t=this.searchTerm,r=this.searchContext,n={searchingFor:t,searchingContext:r,setResults:function(n){e.resultsCacheUpdate(t,r,n)}};this.element.dispatchEvent(new CustomEvent("pb-typeahead-kit-search",{bubbles:!0,detail:n}))}},{key:"resultsCacheUpdate",value:function(e,t,r){var n=this.cacheKeyFor(e,t);this.resultsOptionCache.has(n)&&this.resultsOptionCache.delete(n),this.resultsOptionCache.size>32&&this.resultsOptionCache.delete(this.resultsOptionCache.keys().next().value),this.resultsOptionCache.set(n,r),this.showResults()}},{key:"resultsCacheClear",value:function(){this.resultsOptionCache.clear()}},{key:"debouncedSearch",get:function(){return this._debouncedSearch=this._debouncedSearch||Object(a.debounce)(this.search,parseInt(this.searchDebounceTimeout)).bind(this)}},{key:"showResults",value:function(){var e=this;if(this.resultsOptionCache.has(this.searchTermAndContext)){this.toggleResultsLoadingIndicator(!1),this.clearResults();var t,r=i(this.resultsOptionCache.get(this.searchTermAndContext));try{for(r.s();!(t=r.n()).done;){var n=t.value;this.resultsElement.appendChild(this.newResultOption(n.cloneNode(!0)))}}catch(e){r.e(e)}finally{r.f()}var a,o=i(this.resultsElement.querySelectorAll("[data-result-option-item]"));try{for(o.s();!(a=o.n()).done;)a.value.addEventListener("mousedown",(function(t){return e.optionSelected(t)}))}catch(e){o.e(e)}finally{o.f()}}}},{key:"optionSelected",value:function(e){var t=e.target.closest("[data-result-option-item]");t&&(this.resultsCacheClear(),this.searchInputClear(),this.clearResults(),this.element.dispatchEvent(new CustomEvent("pb-typeahead-kit-result-option-selected",{bubbles:!0,detail:{selected:t,typeahead:this}})))}},{key:"clearResults",value:function(){this.resultsElement.innerHTML=""}},{key:"newResultOption",value:function(e){var t=this.resultOptionTemplate.content.cloneNode(!0);return t.querySelector('slot[name="content"]').replaceWith(e),t}},{key:"focusPreviousOption",value:function(){var e=this.resultOptionItems.indexOf(this.currentSelectedResultOptionItem)-1;(this.resultOptionItems[e]||this.resultOptionItems[this.resultOptionItems.length-1]).focus()}},{key:"focusNextOption",value:function(){var e=this.resultOptionItems.indexOf(this.currentSelectedResultOptionItem)+1;(this.resultOptionItems[e]||this.resultOptionItems[0]).focus()}},{key:"resultOptionItems",get:function(){return Array.from(this.resultsElement.querySelectorAll("[data-result-option-item]"))}},{key:"currentSelectedResultOptionItem",get:function(){return document.activeElement.closest("[data-result-option-item]")}},{key:"searchInput",get:function(){return this._searchInput=this._searchInput||this.element.querySelector('input[type="search"]')}},{key:"searchTerm",get:function(){return this.searchInput.value}},{key:"searchContext",get:function(){if(this._searchContext)return this._searchContext;var e=this.element.dataset.searchContextValueSelector;return e?(this.element.parentNode.querySelector(e)||this.element.closest(e)).value:null},set:function(e){this._searchContext=e}},{key:"searchTermAndContext",get:function(){return this.cacheKeyFor(this.searchTerm,this.searchContext)}},{key:"cacheKeyFor",value:function(e,t){return[e,JSON.stringify(t)].join()}},{key:"searchInputClear",value:function(){this.searchInput.value=""}},{key:"searchTermMinimumLength",get:function(){return this.element.dataset.pbTypeaheadKitSearchTermMinimumLength}},{key:"searchDebounceTimeout",get:function(){return this.element.dataset.pbTypeaheadKitSearchDebounceTimeout}},{key:"resultsElement",get:function(){return this._resultsElement=this._resultsElement||this.element.querySelector("[data-pb-typeahead-kit-results]")}},{key:"resultOptionTemplate",get:function(){return this._resultOptionTemplate=this._resultOptionTemplate||this.element.querySelector("template[data-pb-typeahead-kit-result-option]")}},{key:"resultsOptionCache",get:function(){return this._resultsOptionCache=this._resultsOptionCache||new Map}},{key:"resultsLoadingIndicator",get:function(){return this._resultsLoadingIndicator=this._resultsLoadingIndicator||this.element.querySelector("[data-pb-typeahead-kit-loading-indicator]")}},{key:"toggleResultsLoadingIndicator",value:function(e){var t="0";e&&(t="1"),this.resultsLoadingIndicator.style.opacity=t}}])&&l(t.prototype,r),n&&l(t,n),Object.defineProperty(t,"prototype",{writable:!1}),c}(n.a)},function(e,t,r){"use strict";t.a=function(){var e=document.querySelectorAll("[data-open-dialog]"),t=document.querySelectorAll("[data-close-dialog]"),r=document.querySelectorAll(".pb_dialog_rails");e.forEach((function(e){e.addEventListener("click",(function(){var t=e.dataset.openDialog,r=document.getElementById(t);r.open||r.showModal()}))})),t.forEach((function(e){e.addEventListener("click",(function(){var t=e.dataset.closeDialog;document.getElementById(t).close()}))})),r.forEach((function(e){e.addEventListener("mousedown",(function(t){if("overlay_close"!==e.parentElement.dataset.overlayClick){var r=t.target.getBoundingClientRect();(t.clientX<r.left||t.clientX>r.right||t.clientY<r.top||t.clientY>r.bottom)&&(e.close(),t.stopPropagation())}}))}))}},function(e,t,r){"use strict";var n=r(0),a=r.n(n),i=r(3),o=r.n(i),s=function(){var e=event.target.closest(".pb_rich_text_editor_kit");e.classList.contains("inline")&&e.classList.toggle("focused")},l=function(){document.querySelectorAll(".focus-editor-targets trix-editor").forEach((function(e){var t=e.toolbarElement;e==document.activeElement?(e.classList.add("focused-editor"),t.style.display="block"):t.contains(document.activeElement)||(e.classList.remove("focused-editor"),t.style.display="none")}))},c=r(4),u=r(2),d=r(229),m=r(115),p=r(7),h=r(16),f=r(53),b=r(5),g=r(173),_=function(e){var t=e.classname,r=e.disable,n=e.onclick,i=e.icon,o=e.text;return a.a.createElement(g.a,{delay:{open:2e3},interaction:!0,placement:"top",text:o},a.a.createElement("button",{className:t,disabled:r,onClick:n,role:"button",type:"button"},a.a.createElement(p.a,{align:"center",className:"toolbar_button_icon",justify:"center"},a.a.createElement(b.a,{icon:i,size:"lg"}))))},y=r(74),v=r(26),k=r(46),x=r(27);function w(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,a,i,o,s=[],l=!0,c=!1;try{if(i=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=i.call(r)).done)&&(s.push(n.value),s.length!==t);l=!0);}catch(e){c=!0,a=e}finally{try{if(!l&&null!=r.return&&(o=r.return(),Object(o)!==o))return}finally{if(c)throw a}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return N(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return N(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function N(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var E=function(e){for(var t=e.editor,r=w(Object(n.useState)(!1),2),i=r[0],o=r[1],s=[{node:"paragraph",icon:"paragraph",isActive:t.isActive("paragraph"),text:"Paragraph",onclick:function(){return t.chain().focus().setParagraph().run()}},{node:"heading-1",icon:"h1",isActive:t.isActive("heading",{level:1}),text:"Heading 1",onclick:function(){return t.chain().focus().toggleHeading({level:1}).run()}},{node:"heading-2",icon:"h2",isActive:t.isActive("heading",{level:2}),text:"Heading 2",onclick:function(){return t.chain().focus().toggleHeading({level:2}).run()}},{node:"heading-3",icon:"h3",isActive:t.isActive("heading",{level:3}),text:"Heading 3",onclick:function(){return t.chain().focus().toggleHeading({level:3}).run()}},{node:"bulletList",icon:"list",isActive:t.isActive("bulletList"),text:"Bullet List",onclick:function(){return t.chain().focus().toggleBulletList().run()}},{node:"orderedList",icon:"list-ol",isActive:t.isActive("orderedList"),text:"Ordered List",onclick:function(){return t.chain().focus().toggleOrderedList().run()}},{node:"blockquote",icon:"block-quote",isActive:t.isActive("blockquote"),text:"Block Quote",onclick:function(){return t.chain().focus().toggleBlockquote().run()}}],l=0,c=[],u=0,d=s;u<d.length;u++){var m=d[u],h=m.text,f=m.isActive,g=m.icon;f&&(l++,c.push(a.a.createElement(p.a,{align:"center",gap:"xs",key:g},a.a.createElement(b.a,{icon:g,size:"lg"}),a.a.createElement("div",null,h),a.a.createElement(p.a,{className:i?"fa-flip-vertical":"",display:"inline_flex"},a.a.createElement(b.a,{fixedWidth:!0,icon:"angle-down","margin-left":"xs"})))))}var _=a.a.createElement(v.a,{className:"editor-dropdown-button",onClick:function(){o(!0)},variant:"secondary"},2===l?c[1]:1===l?c[0]||null:a.a.createElement(p.a,{align:"center",gap:"xs",key:"paragraph"},a.a.createElement(b.a,{icon:"paragraph",size:"lg"}),a.a.createElement("div",null,"Paragraph"),a.a.createElement(p.a,{className:i?"fa-flip-vertical":"",display:"inline_flex"},a.a.createElement(b.a,{fixedWidth:!0,icon:"angle-down","margin-left":"xs"}))));return a.a.createElement(y.a,{closeOnClick:"outside",padding:"none",placement:"bottom",reference:_,shouldClosePopover:function(e){o(!e)},show:i},a.a.createElement(k.a,{paddingBottom:"xs",paddingTop:"xs",variant:"subtle"},s.map((function(e,t){var r=e.icon,n=e.text,i=e.onclick,s=e.isActive;return a.a.createElement(x.a,{className:"pb_tiptap_toolbar_dropdown_list_item ".concat(s?"is-active":""),cursor:"pointer",iconLeft:r,key:"".concat(n,"_").concat(t),margin:"none",onClick:function(){i(),o(!1)},paddingBottom:"xxs",paddingTop:"xxs",text:n})}))))},j=function(e){var t=e.editor,r=Object(n.useCallback)((function(){var e=t.getAttributes("link").href,r=window.prompt("URL",e);null!==r&&(""!==r?t.chain().focus().extendMarkRange("link").setLink({href:r}).run():t.chain().focus().extendMarkRange("link").unsetLink().run())}),[t]),i=[{onclick:function(){return t.chain().focus().toggleCodeBlock().run()},icon:"code",isActive:t.isActive("codeBlock"),text:"Codeblock"},{onclick:r,icon:"link",isActive:t.isActive("link"),text:"Link"}];return a.a.createElement(a.a.Fragment,null,i.map((function(e,t){var r=e.onclick,n=e.icon,i=e.text,o=e.isActive;return a.a.createElement(_,{classname:"toolbar_button ".concat(o?"is-active":""),icon:n,key:t,onclick:r,text:i})})))},O=function(e){var t=e.editor,r=[{classname:"toolbar_button",icon:"undo",text:"Undo",onclick:function(){return t.chain().focus().undo().run()},disable:!t.can().chain().focus().undo().run()},{classname:"toolbar_button",icon:"redo",text:"Redo",onclick:function(){return t.chain().focus().redo().run()},disable:!t.can().chain().focus().redo().run()}];return a.a.createElement(a.a.Fragment,null,a.a.createElement(h.a,{displayFlex:!0},r.map((function(e,t){var r=e.onclick,n=e.classname,i=e.disable,o=e.icon,s=e.text;return a.a.createElement(_,{classname:n,disable:i,icon:o,key:t,onclick:r,text:s})}))))};function C(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,a,i,o,s=[],l=!0,c=!1;try{if(i=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=i.call(r)).done)&&(s.push(n.value),s.length!==t);l=!0);}catch(e){c=!0,a=e}finally{try{if(!l&&null!=r.return&&(o=r.return(),Object(o)!==o))return}finally{if(c)throw a}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return S(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return S(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function S(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var z=function(e){var t=e.extensions,r=C(Object(n.useState)(!1),2),i=r[0],o=r[1],s=a.a.createElement("button",{className:"toolbar_button",onClick:function(){o(!0)},role:"button",type:"button"},a.a.createElement(p.a,{align:"center",className:"toolbar_button_icon",justify:"center"},a.a.createElement(b.a,{icon:"ellipsis",size:"lg"})));return a.a.createElement(y.a,{closeOnClick:"outside",padding:"none",placement:"bottom",reference:s,shouldClosePopover:function(e){o(!e)},show:i},a.a.createElement(k.a,{paddingBottom:t.length>1?"xs":"none",paddingTop:t.length>1?"xs":"none",variant:"subtle"},t&&t.map((function(e,t){var r=e.icon,n=e.text,i=e.onclick,s=e.isActive;return a.a.createElement(x.a,{className:"pb_tiptap_toolbar_dropdown_list_item ".concat(s?"is-active":""),cursor:"pointer",iconLeft:r,key:"".concat(n,"_").concat(t),margin:"none",onClick:function(){i(),o(!1)},paddingBottom:"xxs",paddingTop:"xxs",text:n})}))))},T=function(e){var t=e.editor,r=e.extensions,n=[{icon:"bold",text:"Bold",classname:"toolbar_button ".concat(t.isActive("bold")?"is-active":""),onclick:function(){return t.chain().focus().toggleBold().run()}},{icon:"italic",text:"Italic",classname:"toolbar_button ".concat(t.isActive("italic")?"is-active":""),onclick:function(){return t.chain().focus().toggleItalic().run()}},{icon:"strikethrough",text:"Strikethrough",classname:"toolbar_button ".concat(t.isActive("strike")?"is-active":""),onclick:function(){return t.chain().focus().toggleStrike().run()}}];return a.a.createElement(m.a,{backgroundColor:"white",className:"toolbar"},a.a.createElement(p.a,{flex:"0",justify:"between",paddingX:"sm",paddingY:"xxs"},a.a.createElement(h.a,{className:"toolbar_block",displayFlex:!0},a.a.createElement(E,{editor:t}),a.a.createElement(f.a,{orientation:"vertical"}),n&&n.map((function(e,t){var r=e.icon,n=e.text,i=e.classname,o=e.onclick;return a.a.createElement(_,{classname:i,icon:r,key:t,onclick:o,text:n})})),a.a.createElement(f.a,{orientation:"vertical"}),a.a.createElement(j,{editor:t}),r&&a.a.createElement(a.a.Fragment,null,a.a.createElement(z,{extensions:r}))),a.a.createElement(O,{editor:t})))};function A(e,t,r){var n;return(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!=typeof n)return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function M(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,a,i,o,s=[],l=!0,c=!1;try{if(i=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=i.call(r)).done)&&(s.push(n.value),s.length!==t);l=!0);}catch(e){c=!0,a=e}finally{try{if(!l&&null!=r.return&&(o=r.return(),Object(o)!==o))return}finally{if(c)throw a}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return P(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return P(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function P(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}try{r(267).config.textAttributes.inlineCode={tagName:"code",inheritable:!0}}catch(e){}t.a=function(e){var t=e.aria,r=void 0===t?{}:t,i=e.advancedEditor,m=e.advancedEditorToolbar,p=void 0===m||m,h=e.toolbarBottom,f=void 0!==h&&h,b=e.children,g=e.className,_=e.data,y=void 0===_?{}:_,v=e.focus,k=void 0!==v&&v,x=e.htmlOptions,w=void 0===x?{}:x,N=e.inline,E=void 0!==N&&N,j=e.extensions,O=e.name,C=e.onChange,S=void 0===C?u.e:C,z=e.placeholder,P=e.simple,I=void 0!==P&&P,D=e.sticky,L=void 0!==D&&D,$=e.template,R=void 0===$?"":$,F=e.value,B=void 0===F?"":F,q=e.maxWidth,V=void 0===q?"md":q,U=Object(u.a)(r),H=Object(u.c)(y),W=M(Object(n.useState)(),2),G=W[0],Y=W[1],X=Object(u.d)(w),Z=null==G?void 0:G.element;if(G){var K=Z.parentElement.querySelector("trix-toolbar"),J=K.querySelector("[data-trix-attribute=code]"),Q=K.querySelector("[data-trix-attribute=inlineCode]");Q||(Q=J.cloneNode(!0)),Q.dataset.trixAttribute="inlineCode",J.insertAdjacentElement("afterend",Q),f&&G.element.after(K);Z.addEventListener("trix-selection-change",(function(){var e=function(){if(G.attributeIsActive("code"))return"block";if(G.attributeIsActive("inlineCode"))return"inline";var e=G.getSelectedRange();if(e[0]==e[1])return"block";var t=G.getSelectedDocument().toString().trim();return/\n/.test(t)?"block":"inline"}();J.hidden="inline"==e,Q.hidden="block"==e})),k&&(document.addEventListener("trix-focus",l),document.addEventListener("trix-blur",l),l()),document.addEventListener("trix-focus",s),document.addEventListener("trix-blur",s)}Object(n.useEffect)((function(){G&&R&&(G.loadHTML(""),G.setSelectedRange([0,0]),G.insertHTML(R))}),[G,R]),Object(n.useEffect)((function(){Z&&Z.addEventListener("click",(function(e){var t=e.target;if(t.closest(".pb_rich_text_editor_kit")){var r=t.closest("a");r&&r.hasAttribute("href")&&window.open(r.href)}}))}),[Z]);var ee=I?"simple":"",te=k?"focus-editor-targets":"",re=L?"sticky":"",ne=E?"inline":"",ae=f?"toolbar-bottom":"",ie=o()(Object(c.c)(e,{maxWidth:V}),g);return ie=o()("pb_rich_text_editor_kit",ee,te,re,ne,ae,ie),a.a.createElement("div",Object.assign({},U,H,X,{className:ie}),i?a.a.createElement("div",{className:o()("pb_rich_text_editor_advanced_container",A({},"toolbar-active",p))},p&&a.a.createElement(T,{editor:i,extensions:j}),b):a.a.createElement(d.TrixEditor,{className:"",fileParamName:O,mergeTags:[],onChange:S,onEditorReady:function(e){return Y(e)},placeholder:z,value:B}))}},function(e,t,r){"use strict";var n=r(0),a=r.n(n),i=r(3),o=r.n(i),s=r(4),l=r(2),c=function(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var a=0;for(n=Object.getOwnPropertySymbols(e);a<n.length;a++)t.indexOf(n[a])<0&&Object.prototype.propertyIsEnumerable.call(e,n[a])&&(r[n[a]]=e[n[a]])}return r};t.a=function(e){var t=e.aria,r=void 0===t?{}:t,n=e.className,i=e.data,u=void 0===i?{}:i,d=e.htmlOptions,m=void 0===d?{}:d,p=e.id,h=e.component,f=void 0===h?"a":h,b=c(e,["aria","className","data","htmlOptions","id","component"]),g=Object(l.a)(r),_=Object(l.c)(u),y=Object(l.d)(m),v=f||"span",k=o()(Object(l.b)("pb_bread_crumb_item_kit"),Object(s.c)(e),n);return a.a.createElement("div",Object.assign({},g,_,y,{className:k,id:p}),a.a.createElement(v,Object.assign({className:"pb_bread_crumb_item"},Object(s.b)(b))))}},function(e,t,r){e.exports=function(e){var t={};function r(n){if(t[n])return t[n].exports;var a=t[n]={exports:{},id:n,loaded:!1};return e[n].call(a.exports,a,a.exports,r),a.loaded=!0,a.exports}return r.m=e,r.c=t,r.p="",r(0)}([function(e,t,r){e.exports=r(1)},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n,a=r(2),i=(n=a)&&n.__esModule?n:{default:n};t.default=i.default,e.exports=t.default},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e};function a(e){return e&&e.__esModule?e:{default:e}}t.default=c;var i=r(3),o=a(r(4)),s=r(14),l=a(r(15));function c(e){var t=e.activeClassName,r=void 0===t?"":t,a=e.activeIndex,o=void 0===a?-1:a,c=e.activeStyle,u=e.autoEscape,d=e.caseSensitive,m=void 0!==d&&d,p=e.className,h=e.findChunks,f=e.highlightClassName,b=void 0===f?"":f,g=e.highlightStyle,_=void 0===g?{}:g,y=e.highlightTag,v=void 0===y?"mark":y,k=e.sanitize,x=e.searchWords,w=e.textToHighlight,N=e.unhighlightTag,E=void 0===N?"span":N,j=e.unhighlightClassName,O=void 0===j?"":j,C=e.unhighlightStyle,S=function(e,t){var r={};for(var n in e)t.indexOf(n)>=0||Object.prototype.hasOwnProperty.call(e,n)&&(r[n]=e[n]);return r}(e,["activeClassName","activeIndex","activeStyle","autoEscape","caseSensitive","className","findChunks","highlightClassName","highlightStyle","highlightTag","sanitize","searchWords","textToHighlight","unhighlightTag","unhighlightClassName","unhighlightStyle"]),z=(0,i.findAll)({autoEscape:u,caseSensitive:m,findChunks:h,sanitize:k,searchWords:x,textToHighlight:w}),T=v,A=-1,M="",P=void 0,I=(0,l.default)((function(e){var t={};for(var r in e)t[r.toLowerCase()]=e[r];return t}));return(0,s.createElement)("span",n({className:p},S,{children:z.map((function(e,t){var n=w.substr(e.start,e.end-e.start);if(e.highlight){A++;var a=void 0;a="object"==typeof b?m?b[n]:(b=I(b))[n.toLowerCase()]:b;var i=A===+o;M=a+" "+(i?r:""),P=!0===i&&null!=c?Object.assign({},_,c):_;var l={children:n,className:M,key:t,style:P};return"string"!=typeof T&&(l.highlightIndex=A),(0,s.createElement)(T,l)}return(0,s.createElement)(E,{children:n,className:O,key:t,style:C})}))}))}c.propTypes={activeClassName:o.default.string,activeIndex:o.default.number,activeStyle:o.default.object,autoEscape:o.default.bool,className:o.default.string,findChunks:o.default.func,highlightClassName:o.default.oneOfType([o.default.object,o.default.string]),highlightStyle:o.default.object,highlightTag:o.default.oneOfType([o.default.node,o.default.func,o.default.string]),sanitize:o.default.func,searchWords:o.default.arrayOf(o.default.oneOfType([o.default.string,o.default.instanceOf(RegExp)])).isRequired,textToHighlight:o.default.string.isRequired,unhighlightTag:o.default.oneOfType([o.default.node,o.default.func,o.default.string]),unhighlightClassName:o.default.string,unhighlightStyle:o.default.object},e.exports=t.default},function(e,t){e.exports=function(e){var t={};function r(n){if(t[n])return t[n].exports;var a=t[n]={exports:{},id:n,loaded:!1};return e[n].call(a.exports,a,a.exports,r),a.loaded=!0,a.exports}return r.m=e,r.c=t,r.p="",r(0)}([function(e,t,r){e.exports=r(1)},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r(2);Object.defineProperty(t,"combineChunks",{enumerable:!0,get:function(){return n.combineChunks}}),Object.defineProperty(t,"fillInChunks",{enumerable:!0,get:function(){return n.fillInChunks}}),Object.defineProperty(t,"findAll",{enumerable:!0,get:function(){return n.findAll}}),Object.defineProperty(t,"findChunks",{enumerable:!0,get:function(){return n.findChunks}})},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.findAll=function(e){var t=e.autoEscape,i=e.caseSensitive,o=void 0!==i&&i,s=e.findChunks,l=void 0===s?n:s,c=e.sanitize,u=e.searchWords,d=e.textToHighlight;return a({chunksToHighlight:r({chunks:l({autoEscape:t,caseSensitive:o,sanitize:c,searchWords:u,textToHighlight:d})}),totalLength:d?d.length:0})};var r=t.combineChunks=function(e){var t=e.chunks;return t=t.sort((function(e,t){return e.start-t.start})).reduce((function(e,t){if(0===e.length)return[t];var r=e.pop();if(t.start<=r.end){var n=Math.max(r.end,t.end);e.push({start:r.start,end:n})}else e.push(r,t);return e}),[])},n=function(e){var t=e.autoEscape,r=e.caseSensitive,n=e.sanitize,a=void 0===n?i:n,o=e.searchWords,s=e.textToHighlight;return s=a(s),o.filter((function(e){return e})).reduce((function(e,n){n=a(n),t&&(n=n.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&"));for(var i=new RegExp(n,r?"g":"gi"),o=void 0;o=i.exec(s);){var l=o.index,c=i.lastIndex;c>l&&e.push({start:l,end:c}),o.index==i.lastIndex&&i.lastIndex++}return e}),[])};t.findChunks=n;var a=t.fillInChunks=function(e){var t=e.chunksToHighlight,r=e.totalLength,n=[],a=function(e,t,r){t-e>0&&n.push({start:e,end:t,highlight:r})};if(0===t.length)a(0,r,!1);else{var i=0;t.forEach((function(e){a(i,e.start,!1),a(e.start,e.end,!0),i=e.end})),a(i,r,!1)}return n};function i(e){return e}}])},function(e,t,r){(function(t){if("production"!==t.env.NODE_ENV){var n="function"==typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103;e.exports=r(6)((function(e){return"object"==typeof e&&null!==e&&e.$$typeof===n}),!0)}else e.exports=r(13)()}).call(t,r(5))},function(e,t){var r,n,a=e.exports={};function i(){throw new Error("setTimeout has not been defined")}function o(){throw new Error("clearTimeout has not been defined")}function s(e){if(r===setTimeout)return setTimeout(e,0);if((r===i||!r)&&setTimeout)return r=setTimeout,setTimeout(e,0);try{return r(e,0)}catch(t){try{return r.call(null,e,0)}catch(t){return r.call(this,e,0)}}}!function(){try{r="function"==typeof setTimeout?setTimeout:i}catch(e){r=i}try{n="function"==typeof clearTimeout?clearTimeout:o}catch(e){n=o}}();var l,c=[],u=!1,d=-1;function m(){u&&l&&(u=!1,l.length?c=l.concat(c):d=-1,c.length&&p())}function p(){if(!u){var e=s(m);u=!0;for(var t=c.length;t;){for(l=c,c=[];++d<t;)l&&l[d].run();d=-1,t=c.length}l=null,u=!1,function(e){if(n===clearTimeout)return clearTimeout(e);if((n===o||!n)&&clearTimeout)return n=clearTimeout,clearTimeout(e);try{n(e)}catch(t){try{return n.call(null,e)}catch(t){return n.call(this,e)}}}(e)}}function h(e,t){this.fun=e,this.array=t}function f(){}a.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)t[r-1]=arguments[r];c.push(new h(e,t)),1!==c.length||u||s(p)},h.prototype.run=function(){this.fun.apply(null,this.array)},a.title="browser",a.browser=!0,a.env={},a.argv=[],a.version="",a.versions={},a.on=f,a.addListener=f,a.once=f,a.off=f,a.removeListener=f,a.removeAllListeners=f,a.emit=f,a.prependListener=f,a.prependOnceListener=f,a.listeners=function(e){return[]},a.binding=function(e){throw new Error("process.binding is not supported")},a.cwd=function(){return"/"},a.chdir=function(e){throw new Error("process.chdir is not supported")},a.umask=function(){return 0}},function(e,t,r){(function(t){"use strict";var n=r(7),a=r(8),i=r(9),o=r(10),s=r(11),l=r(12);e.exports=function(e,r){var c="function"==typeof Symbol&&Symbol.iterator;var u={array:h("array"),bool:h("boolean"),func:h("function"),number:h("number"),object:h("object"),string:h("string"),symbol:h("symbol"),any:p(n.thatReturnsNull),arrayOf:function(e){return p((function(t,r,n,a,i){if("function"!=typeof e)return new m("Property `"+i+"` of component `"+n+"` has invalid PropType notation inside arrayOf.");var o=t[r];if(!Array.isArray(o))return new m("Invalid "+a+" `"+i+"` of type `"+b(o)+"` supplied to `"+n+"`, expected an array.");for(var l=0;l<o.length;l++){var c=e(o,l,n,a,i+"["+l+"]",s);if(c instanceof Error)return c}return null}))},element:p((function(t,r,n,a,i){var o=t[r];return e(o)?null:new m("Invalid "+a+" `"+i+"` of type `"+b(o)+"` supplied to `"+n+"`, expected a single ReactElement.")})),instanceOf:function(e){return p((function(t,r,n,a,i){if(!(t[r]instanceof e)){var o=e.name||"<<anonymous>>";return new m("Invalid "+a+" `"+i+"` of type `"+function(e){if(!e.constructor||!e.constructor.name)return"<<anonymous>>";return e.constructor.name}(t[r])+"` supplied to `"+n+"`, expected instance of `"+o+"`.")}return null}))},node:p((function(e,t,r,n,a){return f(e[t])?null:new m("Invalid "+n+" `"+a+"` supplied to `"+r+"`, expected a ReactNode.")})),objectOf:function(e){return p((function(t,r,n,a,i){if("function"!=typeof e)return new m("Property `"+i+"` of component `"+n+"` has invalid PropType notation inside objectOf.");var o=t[r],l=b(o);if("object"!==l)return new m("Invalid "+a+" `"+i+"` of type `"+l+"` supplied to `"+n+"`, expected an object.");for(var c in o)if(o.hasOwnProperty(c)){var u=e(o,c,n,a,i+"."+c,s);if(u instanceof Error)return u}return null}))},oneOf:function(e){if(!Array.isArray(e))return"production"!==t.env.NODE_ENV&&i(!1,"Invalid argument supplied to oneOf, expected an instance of array."),n.thatReturnsNull;return p((function(t,r,n,a,i){for(var o=t[r],s=0;s<e.length;s++)if(d(o,e[s]))return null;return new m("Invalid "+a+" `"+i+"` of value `"+o+"` supplied to `"+n+"`, expected one of "+JSON.stringify(e)+".")}))},oneOfType:function(e){if(!Array.isArray(e))return"production"!==t.env.NODE_ENV&&i(!1,"Invalid argument supplied to oneOfType, expected an instance of array."),n.thatReturnsNull;for(var r=0;r<e.length;r++){var a=e[r];if("function"!=typeof a)return i(!1,"Invalid argument supplied to oneOfType. Expected an array of check functions, but received %s at index %s.",_(a),r),n.thatReturnsNull}return p((function(t,r,n,a,i){for(var o=0;o<e.length;o++){if(null==(0,e[o])(t,r,n,a,i,s))return null}return new m("Invalid "+a+" `"+i+"` supplied to `"+n+"`.")}))},shape:function(e){return p((function(t,r,n,a,i){var o=t[r],l=b(o);if("object"!==l)return new m("Invalid "+a+" `"+i+"` of type `"+l+"` supplied to `"+n+"`, expected `object`.");for(var c in e){var u=e[c];if(u){var d=u(o,c,n,a,i+"."+c,s);if(d)return d}}return null}))},exact:function(e){return p((function(t,r,n,a,i){var l=t[r],c=b(l);if("object"!==c)return new m("Invalid "+a+" `"+i+"` of type `"+c+"` supplied to `"+n+"`, expected `object`.");var u=o({},t[r],e);for(var d in u){var p=e[d];if(!p)return new m("Invalid "+a+" `"+i+"` key `"+d+"` supplied to `"+n+"`.\nBad object: "+JSON.stringify(t[r],null," ")+"\nValid keys: "+JSON.stringify(Object.keys(e),null," "));var h=p(l,d,n,a,i+"."+d,s);if(h)return h}return null}))}};function d(e,t){return e===t?0!==e||1/e==1/t:e!=e&&t!=t}function m(e){this.message=e,this.stack=""}function p(e){if("production"!==t.env.NODE_ENV)var n={},o=0;function l(l,c,u,d,p,h,f){if(d=d||"<<anonymous>>",h=h||u,f!==s)if(r)a(!1,"Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types");else if("production"!==t.env.NODE_ENV&&"undefined"!=typeof console){var b=d+":"+u;!n[b]&&o<3&&(i(!1,"You are manually calling a React.PropTypes validation function for the `%s` prop on `%s`. This is deprecated and will throw in the standalone `prop-types` package. You may be seeing this warning due to a third-party PropTypes library. See https://fb.me/react-warning-dont-call-proptypes for details.",h,d),n[b]=!0,o++)}return null==c[u]?l?null===c[u]?new m("The "+p+" `"+h+"` is marked as required in `"+d+"`, but its value is `null`."):new m("The "+p+" `"+h+"` is marked as required in `"+d+"`, but its value is `undefined`."):null:e(c,u,d,p,h)}var c=l.bind(null,!1);return c.isRequired=l.bind(null,!0),c}function h(e){return p((function(t,r,n,a,i,o){var s=t[r];return b(s)!==e?new m("Invalid "+a+" `"+i+"` of type `"+g(s)+"` supplied to `"+n+"`, expected `"+e+"`."):null}))}function f(t){switch(typeof t){case"number":case"string":case"undefined":return!0;case"boolean":return!t;case"object":if(Array.isArray(t))return t.every(f);if(null===t||e(t))return!0;var r=function(e){var t=e&&(c&&e[c]||e["@@iterator"]);if("function"==typeof t)return t}(t);if(!r)return!1;var n,a=r.call(t);if(r!==t.entries){for(;!(n=a.next()).done;)if(!f(n.value))return!1}else for(;!(n=a.next()).done;){var i=n.value;if(i&&!f(i[1]))return!1}return!0;default:return!1}}function b(e){var t=typeof e;return Array.isArray(e)?"array":e instanceof RegExp?"object":function(e,t){return"symbol"===e||("Symbol"===t["@@toStringTag"]||"function"==typeof Symbol&&t instanceof Symbol)}(t,e)?"symbol":t}function g(e){if(null==e)return""+e;var t=b(e);if("object"===t){if(e instanceof Date)return"date";if(e instanceof RegExp)return"regexp"}return t}function _(e){var t=g(e);switch(t){case"array":case"object":return"an "+t;case"boolean":case"date":case"regexp":return"a "+t;default:return t}}return m.prototype=Error.prototype,u.checkPropTypes=l,u.PropTypes=u,u}}).call(t,r(5))},function(e,t){"use strict";function r(e){return function(){return e}}var n=function(){};n.thatReturns=r,n.thatReturnsFalse=r(!1),n.thatReturnsTrue=r(!0),n.thatReturnsNull=r(null),n.thatReturnsThis=function(){return this},n.thatReturnsArgument=function(e){return e},e.exports=n},function(e,t,r){(function(t){"use strict";var r=function(e){};"production"!==t.env.NODE_ENV&&(r=function(e){if(void 0===e)throw new Error("invariant requires an error message argument")}),e.exports=function(e,t,n,a,i,o,s,l){if(r(t),!e){var c;if(void 0===t)c=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var u=[n,a,i,o,s,l],d=0;(c=new Error(t.replace(/%s/g,(function(){return u[d++]})))).name="Invariant Violation"}throw c.framesToPop=1,c}}}).call(t,r(5))},function(e,t,r){(function(t){"use strict";var n=r(7);if("production"!==t.env.NODE_ENV){var a=function(e){for(var t=arguments.length,r=Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];var a=0,i="Warning: "+e.replace(/%s/g,(function(){return r[a++]}));"undefined"!=typeof console&&console.error(i);try{throw new Error(i)}catch(e){}};n=function(e,t){if(void 0===t)throw new Error("`warning(condition, format, ...args)` requires a warning message argument");if(0!==t.indexOf("Failed Composite propType: ")&&!e){for(var r=arguments.length,n=Array(r>2?r-2:0),i=2;i<r;i++)n[i-2]=arguments[i];a.apply(void 0,[t].concat(n))}}}e.exports=n}).call(t,r(5))},function(e,t){
53
+ var n=/input|select|textarea|button|object|iframe/;function a(e){var t=e.offsetWidth<=0&&e.offsetHeight<=0;if(t&&!e.innerHTML)return!0;try{var r=window.getComputedStyle(e),n=r.getPropertyValue("display");return t?"contents"!==n&&function(e,t){return"visible"!==t.getPropertyValue("overflow")||e.scrollWidth<=0&&e.scrollHeight<=0}(e,r):"none"===n}catch(e){return console.warn("Failed to inspect element style"),!1}}function i(e,t){var r=e.nodeName.toLowerCase();return(n.test(r)&&!e.disabled||"a"===r&&e.href||t)&&function(e){for(var t=e,r=e.getRootNode&&e.getRootNode();t&&t!==document.body;){if(r&&t===r&&(t=r.host.parentNode),a(t))return!1;t=t.parentNode}return!0}(e)}function o(e){var t=e.getAttribute("tabindex");null===t&&(t=void 0);var r=isNaN(t);return(r||t>=0)&&i(e,!r)}e.exports=t.default},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.resetState=function(){s&&(s.removeAttribute?s.removeAttribute("aria-hidden"):null!=s.length?s.forEach((function(e){return e.removeAttribute("aria-hidden")})):document.querySelectorAll(s).forEach((function(e){return e.removeAttribute("aria-hidden")})));s=null},t.log=function(){0},t.assertNodeList=l,t.setElement=function(e){var t=e;if("string"==typeof t&&o.canUseDOM){var r=document.querySelectorAll(t);l(r,t),t=r}return s=t||s},t.validateElement=c,t.hide=function(e){var t=!0,r=!1,n=void 0;try{for(var a,i=c(e)[Symbol.iterator]();!(t=(a=i.next()).done);t=!0){a.value.setAttribute("aria-hidden","true")}}catch(e){r=!0,n=e}finally{try{!t&&i.return&&i.return()}finally{if(r)throw n}}},t.show=function(e){var t=!0,r=!1,n=void 0;try{for(var a,i=c(e)[Symbol.iterator]();!(t=(a=i.next()).done);t=!0){a.value.removeAttribute("aria-hidden")}}catch(e){r=!0,n=e}finally{try{!t&&i.return&&i.return()}finally{if(r)throw n}}},t.documentNotReadyOrSSRTesting=function(){s=null};var n,a=r(179),i=(n=a)&&n.__esModule?n:{default:n},o=r(177);var s=null;function l(e,t){if(!e||!e.length)throw new Error("react-modal: No elements were found for selector "+t+".")}function c(e){var t=e||s;return t?Array.isArray(t)||t instanceof HTMLCollection||t instanceof NodeList?t:[t]:((0,i.default)(!1,["react-modal: App element is not defined.","Please use `Modal.setAppElement(el)` or set `appElement={el}`.","This is needed so screen readers don't see main content","when modal is opened. It is not recommended, but you can opt-out","by setting `ariaHideApp={false}`."].join(" ")),[])}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.log=function(){console.log("portalOpenInstances ----------"),console.log(a.openInstances.length),a.openInstances.forEach((function(e){return console.log(e)})),console.log("end portalOpenInstances ----------")},t.resetState=function(){a=new n};var n=function e(){var t=this;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.register=function(e){-1===t.openInstances.indexOf(e)&&(t.openInstances.push(e),t.emit("register"))},this.deregister=function(e){var r=t.openInstances.indexOf(e);-1!==r&&(t.openInstances.splice(r,1),t.emit("deregister"))},this.subscribe=function(e){t.subscribers.push(e)},this.emit=function(e){t.subscribers.forEach((function(r){return r(e,t.openInstances.slice())}))},this.openInstances=[],this.subscribers=[]},a=new n;t.default=a},function(e,t,r){var n=r(90).default,a=r(269);e.exports=function(e){var t=a(e,"string");return"symbol"===n(t)?t:String(t)},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t,r){var n=r(210);e.exports=function(e,t){if(e){if("string"==typeof e)return n(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?n(e,t):void 0}},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t,r){"use strict";var n=r(0),a=r.n(n),i=r(3),o=r.n(i),s=r(223),l=r.n(s),c=r(2),u=r(4),d=r(9),m=r(26),p=r(195),h=r(193),f=r(194),b=r(7),g=r(56),_=r(12),y=r(150);function v(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,a,i,o,s=[],l=!0,c=!1;try{if(i=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=i.call(r)).done)&&(s.push(n.value),s.length!==t);l=!0);}catch(e){c=!0,a=e}finally{try{if(!l&&null!=r.return&&(o=r.return(),Object(o)!==o))return}finally{if(c)throw a}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return k(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return k(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function k(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var x=function e(t){var r=t.aria,i=void 0===r?{}:r,s=t.cancelButton,p=t.confirmButton,h=t.className,f=t.data,k=void 0===f?{}:f,x=t.htmlOptions,w=void 0===x?{}:x,N=t.id,E=t.size,j=void 0===E?"md":E,O=t.children,C=t.loading,S=void 0!==C&&C,z=t.fullHeight,T=void 0!==z&&z,A=t.opened,M=t.onCancel,P=t.onConfirm,I=t.onClose,D=t.placement,L=void 0===D?"center":D,$=t.portalClassName,R=t.shouldCloseOnOverlayClick,F=void 0===R||R,B=t.status,q=t.text,V=t.title,U=t.trigger,H=Object(c.a)(i),W=Object(c.c)(k),G=Object(c.d)(w),Y={base:o()("pb_dialog",Object(c.b)("pb_dialog",j,L)),afterOpen:"pb_dialog_after_open",beforeClose:"pb_dialog_before_close"},X={base:"pb_dialog_overlay ".concat(null!==T&&(T?"xl"===j?"full_height_center":"full_height_".concat(L):null)),afterOpen:"pb_dialog_overlay_after_open",beforeClose:"pb_dialog_overlay_before_close"},Z=o()(Object(c.b)("pb_dialog_wrapper"),Object(u.c)(t),h),K=v(Object(n.useState)(!1),2),J=K[0],Q=K[1],ee=U?J:A,te={onClose:U?function(){Q(!1)}:I};U&&document.querySelector(U).addEventListener("click",(function(){Q(!0),document.querySelector("#cancel-button").addEventListener("click",(function(){Q(!1)}))}),{once:!0});var re={default:{icon:"exclamation-circle",variant:"default",size:"lg"},info:{icon:"info-circle",variant:"default",size:"lg"},caution:{icon:"exclamation-triangle",variant:"yellow",size:"lg"},delete:{icon:"trash-alt",variant:"red",size:"lg"},error:{icon:"times-circle",variant:"red",size:"lg"},success:{icon:"check-circle",variant:"green",size:"lg"}};return a.a.createElement(y.a.Provider,{value:te},a.a.createElement("div",Object.assign({},H,W,G,{className:Z}),a.a.createElement(l.a,{ariaHideApp:!1,className:Y,closeTimeoutMS:200,contentLabel:"Minimal Modal Example",id:N,isOpen:ee,onRequestClose:I,overlayClassName:X,portalClassName:$,shouldCloseOnOverlayClick:F},a.a.createElement(a.a.Fragment,null,V&&!B?a.a.createElement(e.Header,null,V):null,!B&&q?a.a.createElement(e.Body,null,q):null,B&&a.a.createElement(e.Body,{className:"dialog_status_text_align",padding:"md"},a.a.createElement(b.a,{align:"center",orientation:"column"},a.a.createElement(g.a,{icon:re[B].icon,size:re[B].size,variant:re[B].variant}),a.a.createElement(_.a,{marginTop:"sm",size:3},V),a.a.createElement(d.a,{marginTop:"xs",text:q}))),s&&p?a.a.createElement(e.Footer,null,a.a.createElement(m.a,{htmlType:"button",loading:S,onClick:P,variant:"primary"},p),a.a.createElement(m.a,{htmlType:"button",id:"cancel-button",onClick:M,variant:"link"},s)):null,O))))};x.Header=p.a,x.Body=f.a,x.Footer=h.a,t.a=x},function(e,t,r){"use strict";var n=r(0),a=r.n(n),i=r(3),o=r.n(i),s=r(67),l=r.n(s),c=r(29),u=r.n(c),d=r(49),m=r(75),p=r(68),h=r(121),f=r.n(h),b=r(226),g=r.n(b),_=r(8),y=r.n(_),v=r(10),k=r.n(v),x=r(2),w=r(4);function N(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,a,i,o,s=[],l=!0,c=!1;try{if(i=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=i.call(r)).done)&&(s.push(n.value),s.length!==t);l=!0);}catch(e){c=!0,a=e}finally{try{if(!l&&null!=r.return&&(o=r.return(),Object(o)!==o))return}finally{if(c)throw a}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return E(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return E(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function E(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var j=function(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var a=0;for(n=Object.getOwnPropertySymbols(e);a<n.length;a++)t.indexOf(n[a])<0&&Object.prototype.propertyIsEnumerable.call(e,n[a])&&(r[n[a]]=e[n[a]])}return r};t.a=function(e){var t=e.aria,r=void 0===t?{}:t,i=e.chartData,s=e.dark,c=void 0!==s&&s,h=e.data,b=void 0===h?{}:h,_=e.disableAnimation,v=void 0!==_&&_,E=e.fullCircle,O=void 0!==E&&E,C=e.height,S=void 0===C?null:C,z=e.htmlOptions,T=void 0===z?{}:z,A=e.id,M=e.max,P=void 0===M?100:M,I=e.min,D=void 0===I?0:I,L=e.prefix,$=void 0===L?"":L,R=e.showLabels,F=void 0!==R&&R,B=e.style,q=void 0===B?"solidgauge":B,V=e.suffix,U=void 0===V?"":V,H=e.title,W=void 0===H?"":H,G=e.tooltipHtml,Y=void 0===G?'<span style="font-weight: bold; color:{point.color};">●</span>{point.name}: <b>{point.y}</b>':G,X=e.colors,Z=void 0===X?[]:X,K=e.minorTickInterval,J=void 0===K?null:K,Q=e.circumference,ee=void 0===Q?O?[0,360]:[-100,100]:Q,te=j(e,["aria","chartData","dark","data","disableAnimation","fullCircle","height","htmlOptions","id","max","min","prefix","showLabels","style","suffix","title","tooltipHtml","colors","minorTickInterval","circumference"]),re=Object(x.a)(r),ne=Object(x.c)(b),ae=Object(x.d)(T);f()(u.a),g()(u.a);c?u.a.setOptions(m.a):u.a.setOptions(d.a),u.a.setOptions({tooltip:{pointFormat:Y,followPointer:!0}});var ie=Object(x.b)({pb_gauge_kit:!0}),oe=N(Object(n.useState)({}),2),se=oe[0],le=oe[1];return Object(n.useEffect)((function(){var e=i.map((function(e){return e.y=e.value,delete e.value,e})),t={chart:{events:{load:function(){setTimeout(this.reflow.bind(this),0)}},type:q,height:S},title:{text:W},yAxis:{min:D,max:P,lineWidth:0,tickWidth:0,minorTickInterval:J,tickAmount:2,tickPositions:[D,P],labels:{y:26,enabled:F}},credits:!1,series:[{data:e}],pane:{center:["50%","50%"],size:"90%",startAngle:ee[0],endAngle:ee[1],background:{borderWidth:20,innerRadius:"90%",outerRadius:"90%",shape:"arc",className:"gauge-pane"}},colors:void 0!==Z&&Z.length>0?Object(p.a)(Z):d.a.colors,plotOptions:{series:{animation:!v},solidgauge:{borderColor:void 0!==Z&&1===Z.length?Object(p.a)(Z).join():d.a.colors[0],borderWidth:20,radius:90,innerRadius:"90%",dataLabels:{borderWidth:0,color:y.a.text_lt_default,enabled:!0,format:'<span class="prefix">'.concat($,"</span>")+'<span class="fix">{y:,f}</span>'+'<span class="suffix">'.concat(U,"</span>"),style:{fontFamily:k.a.font_family_base,fontWeight:k.a.regular,fontSize:k.a.heading_2},y:-26}}}};le(Object.assign({},t)),document.querySelector(".prefix")&&(document.querySelectorAll(".prefix").forEach((function(e){e.setAttribute("y","28")})),document.querySelectorAll(".fix").forEach((function(e){return e.setAttribute("y","38")})))}),[i]),a.a.createElement(l.a,{containerProps:Object.assign(Object.assign(Object.assign({className:o()(ie,Object(w.c)(te)),id:A},re),ne),ae),highcharts:u.a,options:se})}},function(e,t,r){"use strict";r.d(t,"a",(function(){return p}));var n=r(55),a=r(295);function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,s(n.key),n)}}function s(e){var t=function(e,t){if("object"!=typeof e||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!=typeof n)return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"==typeof t?t:t+""}function l(e,t){return(l=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e})(e,t)}function c(e){var t=function(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(e){}return function(){return!!e}()}();return function(){var r,n=d(e);if(t){var a=d(this).constructor;r=Reflect.construct(n,arguments,a)}else r=n.apply(this,arguments);return u(this,r)}}function u(e,t){if(t&&("object"==typeof t||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function d(e){return(d=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var m=[0,20],p=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&l(e,t)}(u,e);var t,r,n,s=c(u);function u(){return i(this,u),s.apply(this,arguments)}return t=u,n=[{key:"selector",get:function(){return"[data-pb-popover-kit]"}}],(r=[{key:"moveTooltip",value:function(){document.querySelector("body").appendChild(this.tooltip)}},{key:"connect",value:function(){var e=this;this.moveTooltip(),this.popper=Object(a.a)(this.triggerElement,this.tooltip,{placement:this.position,strategy:"fixed",modifiers:[{name:"offset",options:{offset:this.offset}}]}),this.triggerElement.addEventListener("click",(function(t){t.preventDefault(),t.stopPropagation(),e.tooltip.classList.contains("show")||e.checkCloseTooltip(),setTimeout((function(){e.toggleTooltip(),e.popper.update()}),0)}))}},{key:"checkCloseTooltip",value:function(){var e=this;document.querySelector("body").addEventListener("click",(function(t){var r=t.target,n=null!==r.closest("#".concat(e.tooltipId)),a=null!==r.closest("#".concat(e.triggerElementId));switch(e.closeOnClick){case"any":(n||!n&&!a)&&e.hideTooltip();break;case"outside":n||a||e.hideTooltip();break;case"inside":n&&e.hideTooltip()}}),!0)}},{key:"hideTooltip",value:function(){this.tooltip.classList.remove("show"),this.tooltip.classList.add("hide")}},{key:"toggleTooltip",value:function(){this.tooltip.classList.toggle("show"),this.tooltip.classList.toggle("hide")}},{key:"triggerElement",get:function(){return this._triggerElement=this._triggerElement||document.querySelector("#".concat(this.triggerElementId))}},{key:"tooltip",get:function(){return this._tooltip=this._tooltip||this.element.querySelector("#".concat(this.tooltipId))}},{key:"position",get:function(){return this.element.dataset.pbPopoverPosition}},{key:"triggerElementId",get:function(){return this.element.dataset.pbPopoverTriggerElementId}},{key:"tooltipId",get:function(){return this.element.dataset.pbPopoverTooltipId}},{key:"offset",get:function(){return"true"===this.element.dataset.pbPopoverOffset?m:[0,0]}},{key:"closeOnClick",get:function(){return this.element.dataset.pbPopoverCloseOnClick}}])&&o(t.prototype,r),n&&o(t,n),Object.defineProperty(t,"prototype",{writable:!1}),u}(n.a)},function(e,t,r){"use strict";r.d(t,"a",(function(){return b}));var n=r(55),a=r(184),i=r(186),o=r(189),s=r(188);function l(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function c(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,u(n.key),n)}}function u(e){var t=function(e,t){if("object"!=typeof e||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!=typeof n)return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"==typeof t?t:t+""}function d(e,t){return(d=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e})(e,t)}function m(e){var t=function(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(e){}return function(){return!!e}()}();return function(){var r,n=h(e);if(t){var a=h(this).constructor;r=Reflect.construct(n,arguments,a)}else r=n.apply(this,arguments);return p(this,r)}}function p(e,t){if(t&&("object"==typeof t||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function h(e){return(h=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var f=[0,20],b=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&d(e,t)}(p,e);var t,r,n,u=m(p);function p(){return l(this,p),u.apply(this,arguments)}return t=p,n=[{key:"selector",get:function(){return"[data-pb-tooltip-kit]"}}],(r=[{key:"connect",value:function(){var e=this;this.triggerElements.forEach((function(t){t.addEventListener("mouseenter",(function(){e.mouseenterTimeout=setTimeout((function(){e.showTooltip(t),e.checkCloseTooltip(t)}),250),t.addEventListener("mouseleave",(function(){clearTimeout(e.mouseenterTimeout),setTimeout((function(){e.hideTooltip()}),0)}),{once:!0})}))})),this.tooltip.addEventListener("mouseenter",(function(){clearTimeout(e.mouseenterTimeout)})),this.tooltip.addEventListener("mouseleave",(function(){e.hideTooltip()}))}},{key:"checkCloseTooltip",value:function(e){var t=this;document.querySelector("body").addEventListener("click",(function(r){var n=r.target,a=n.closest("#".concat(t.tooltipId))===t.tooltip;n.closest(t.triggerElementSelector)===e||a?t.checkCloseTooltip(e):t.hideTooltip()}),{once:!0})}},{key:"showTooltip",value:function(e){"false"!==this.shouldShowTooltip&&(this.popper=Object(a.a)(e,this.tooltip,{placement:this.position,strategy:"fixed",modifiers:[{name:"offset",options:{offset:f}},{name:"arrow",options:{element:document.querySelector("#".concat(this.tooltipId,"-arrow"))}},i.a,o.a,s.a]}),this.tooltip.classList.add("show"))}},{key:"hideTooltip",value:function(){var e=this;this.tooltip.classList.add("fade_out"),setTimeout((function(){e.popper&&(e.popper.destroy(),e.tooltip.classList.remove("show"),e.tooltip.classList.remove("fade_out"))}),250)}},{key:"triggerElements",get:function(){var e;return(e=this.triggerElementId?document.querySelector("#".concat(this.triggerElementId)):this.triggerElementSelector.indexOf("#")>-1?document.querySelector("".concat(this.triggerElementSelector)):document.querySelectorAll("".concat(this.triggerElementSelector)))?(e.length||(e=[e]),this._triggerElements=this._triggerElements||e):(console.error("Tooltip Kit: an invalid or unavailable DOM reference was provided!"),[])}},{key:"tooltip",get:function(){return this._tooltip=this._tooltip||this.element.querySelector("#".concat(this.tooltipId))}},{key:"position",get:function(){return this.element.dataset.pbTooltipPosition}},{key:"triggerElementId",get:function(){return this.element.dataset.pbTooltipTriggerElementId}},{key:"tooltipId",get:function(){return this.element.dataset.pbTooltipTooltipId}},{key:"triggerElementSelector",get:function(){return this.element.dataset.pbTooltipTriggerElementSelector}},{key:"shouldShowTooltip",get:function(){return this.element.dataset.pbTooltipShowTooltip}}])&&c(t.prototype,r),n&&c(t,n),Object.defineProperty(t,"prototype",{writable:!1}),p}(n.a)},function(e,t,r){"use strict";r.d(t,"a",(function(){return h}));var n=r(55),a=r(25);function i(e,t){var r="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!r){if(Array.isArray(e)||(r=function(e,t){if(!e)return;if("string"==typeof e)return o(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return o(e,t)}(e))||t&&e&&"number"==typeof e.length){r&&(e=r);var n=0,a=function(){};return{s:a,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},e:function(e){throw e},f:a}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,l=!1;return{s:function(){r=r.call(e)},n:function(){var e=r.next();return s=e.done,e},e:function(e){l=!0,i=e},f:function(){try{s||null==r.return||r.return()}finally{if(l)throw i}}}}function o(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function l(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,c(n.key),n)}}function c(e){var t=function(e,t){if("object"!=typeof e||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!=typeof n)return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"==typeof t?t:t+""}function u(e,t){return(u=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e})(e,t)}function d(e){var t=function(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(e){}return function(){return!!e}()}();return function(){var r,n=p(e);if(t){var a=p(this).constructor;r=Reflect.construct(n,arguments,a)}else r=n.apply(this,arguments);return m(this,r)}}function m(e,t){if(t&&("object"==typeof t||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function p(e){return(p=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var h=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&u(e,t)}(c,e);var t,r,n,o=d(c);function c(){return s(this,c),o.apply(this,arguments)}return t=c,n=[{key:"selector",get:function(){return"[data-pb-typeahead-kit]"}}],(r=[{key:"connect",value:function(){var e=this;this.element.addEventListener("keydown",(function(t){return e.handleKeydown(t)})),this.searchInput.addEventListener("focus",(function(){return e.debouncedSearch()})),this.searchInput.addEventListener("input",(function(){return e.debouncedSearch()})),this.resultsElement.addEventListener("click",(function(t){return e.optionSelected(t)}))}},{key:"handleKeydown",value:function(e){"ArrowUp"===e.key?(e.preventDefault(),this.focusPreviousOption()):"ArrowDown"===e.key&&(e.preventDefault(),this.focusNextOption())}},{key:"search",value:function(){var e=this;if(this.searchTerm.length<parseInt(this.searchTermMinimumLength))return this.clearResults();this.toggleResultsLoadingIndicator(!0),this.showResults();var t=this.searchTerm,r=this.searchContext,n={searchingFor:t,searchingContext:r,setResults:function(n){e.resultsCacheUpdate(t,r,n)}};this.element.dispatchEvent(new CustomEvent("pb-typeahead-kit-search",{bubbles:!0,detail:n}))}},{key:"resultsCacheUpdate",value:function(e,t,r){var n=this.cacheKeyFor(e,t);this.resultsOptionCache.has(n)&&this.resultsOptionCache.delete(n),this.resultsOptionCache.size>32&&this.resultsOptionCache.delete(this.resultsOptionCache.keys().next().value),this.resultsOptionCache.set(n,r),this.showResults()}},{key:"resultsCacheClear",value:function(){this.resultsOptionCache.clear()}},{key:"debouncedSearch",get:function(){return this._debouncedSearch=this._debouncedSearch||Object(a.debounce)(this.search,parseInt(this.searchDebounceTimeout)).bind(this)}},{key:"showResults",value:function(){var e=this;if(this.resultsOptionCache.has(this.searchTermAndContext)){this.toggleResultsLoadingIndicator(!1),this.clearResults();var t,r=i(this.resultsOptionCache.get(this.searchTermAndContext));try{for(r.s();!(t=r.n()).done;){var n=t.value;this.resultsElement.appendChild(this.newResultOption(n.cloneNode(!0)))}}catch(e){r.e(e)}finally{r.f()}var a,o=i(this.resultsElement.querySelectorAll("[data-result-option-item]"));try{for(o.s();!(a=o.n()).done;)a.value.addEventListener("mousedown",(function(t){return e.optionSelected(t)}))}catch(e){o.e(e)}finally{o.f()}}}},{key:"optionSelected",value:function(e){var t=e.target.closest("[data-result-option-item]");t&&(this.resultsCacheClear(),this.searchInputClear(),this.clearResults(),this.element.dispatchEvent(new CustomEvent("pb-typeahead-kit-result-option-selected",{bubbles:!0,detail:{selected:t,typeahead:this}})))}},{key:"clearResults",value:function(){this.resultsElement.innerHTML=""}},{key:"newResultOption",value:function(e){var t=this.resultOptionTemplate.content.cloneNode(!0);return t.querySelector('slot[name="content"]').replaceWith(e),t}},{key:"focusPreviousOption",value:function(){var e=this.resultOptionItems.indexOf(this.currentSelectedResultOptionItem)-1;(this.resultOptionItems[e]||this.resultOptionItems[this.resultOptionItems.length-1]).focus()}},{key:"focusNextOption",value:function(){var e=this.resultOptionItems.indexOf(this.currentSelectedResultOptionItem)+1;(this.resultOptionItems[e]||this.resultOptionItems[0]).focus()}},{key:"resultOptionItems",get:function(){return Array.from(this.resultsElement.querySelectorAll("[data-result-option-item]"))}},{key:"currentSelectedResultOptionItem",get:function(){return document.activeElement.closest("[data-result-option-item]")}},{key:"searchInput",get:function(){return this._searchInput=this._searchInput||this.element.querySelector('input[type="search"]')}},{key:"searchTerm",get:function(){return this.searchInput.value}},{key:"searchContext",get:function(){if(this._searchContext)return this._searchContext;var e=this.element.dataset.searchContextValueSelector;return e?(this.element.parentNode.querySelector(e)||this.element.closest(e)).value:null},set:function(e){this._searchContext=e}},{key:"searchTermAndContext",get:function(){return this.cacheKeyFor(this.searchTerm,this.searchContext)}},{key:"cacheKeyFor",value:function(e,t){return[e,JSON.stringify(t)].join()}},{key:"searchInputClear",value:function(){this.searchInput.value=""}},{key:"searchTermMinimumLength",get:function(){return this.element.dataset.pbTypeaheadKitSearchTermMinimumLength}},{key:"searchDebounceTimeout",get:function(){return this.element.dataset.pbTypeaheadKitSearchDebounceTimeout}},{key:"resultsElement",get:function(){return this._resultsElement=this._resultsElement||this.element.querySelector("[data-pb-typeahead-kit-results]")}},{key:"resultOptionTemplate",get:function(){return this._resultOptionTemplate=this._resultOptionTemplate||this.element.querySelector("template[data-pb-typeahead-kit-result-option]")}},{key:"resultsOptionCache",get:function(){return this._resultsOptionCache=this._resultsOptionCache||new Map}},{key:"resultsLoadingIndicator",get:function(){return this._resultsLoadingIndicator=this._resultsLoadingIndicator||this.element.querySelector("[data-pb-typeahead-kit-loading-indicator]")}},{key:"toggleResultsLoadingIndicator",value:function(e){var t="0";e&&(t="1"),this.resultsLoadingIndicator.style.opacity=t}}])&&l(t.prototype,r),n&&l(t,n),Object.defineProperty(t,"prototype",{writable:!1}),c}(n.a)},function(e,t,r){"use strict";t.a=function(){var e=document.querySelectorAll("[data-open-dialog]"),t=document.querySelectorAll("[data-close-dialog]"),r=document.querySelectorAll(".pb_dialog_rails");e.forEach((function(e){e.addEventListener("click",(function(){var t=e.dataset.openDialog,r=document.getElementById(t);r.open||r.showModal()}))})),t.forEach((function(e){e.addEventListener("click",(function(){var t=e.dataset.closeDialog;document.getElementById(t).close()}))})),r.forEach((function(e){e.addEventListener("mousedown",(function(t){if("overlay_close"!==e.parentElement.dataset.overlayClick){var r=t.target.getBoundingClientRect();(t.clientX<r.left||t.clientX>r.right||t.clientY<r.top||t.clientY>r.bottom)&&(e.close(),t.stopPropagation())}}))}))}},function(e,t,r){"use strict";var n=r(0),a=r.n(n),i=r(3),o=r.n(i),s=function(){var e=event.target.closest(".pb_rich_text_editor_kit");e.classList.contains("inline")&&e.classList.toggle("focused")},l=function(){document.querySelectorAll(".focus-editor-targets trix-editor").forEach((function(e){var t=e.toolbarElement;e==document.activeElement?(e.classList.add("focused-editor"),t.style.display="block"):t.contains(document.activeElement)||(e.classList.remove("focused-editor"),t.style.display="none")}))},c=r(4),u=r(2),d=r(229),m=r(115),p=r(7),h=r(16),f=r(53),b=r(5),g=r(173),_=function(e){var t=e.classname,r=e.disable,n=e.onclick,i=e.icon,o=e.text;return a.a.createElement(g.a,{delay:{open:2e3},interaction:!0,placement:"top",text:o},a.a.createElement("button",{className:t,disabled:r,onClick:n,role:"button",type:"button"},a.a.createElement(p.a,{align:"center",className:"toolbar_button_icon",justify:"center"},a.a.createElement(b.a,{icon:i,size:"lg"}))))},y=r(74),v=r(26),k=r(46),x=r(27);function w(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,a,i,o,s=[],l=!0,c=!1;try{if(i=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=i.call(r)).done)&&(s.push(n.value),s.length!==t);l=!0);}catch(e){c=!0,a=e}finally{try{if(!l&&null!=r.return&&(o=r.return(),Object(o)!==o))return}finally{if(c)throw a}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return N(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return N(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function N(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var E=function(e){for(var t=e.editor,r=w(Object(n.useState)(!1),2),i=r[0],o=r[1],s=[{node:"paragraph",icon:"paragraph",isActive:t.isActive("paragraph"),text:"Paragraph",onclick:function(){return t.chain().focus().setParagraph().run()}},{node:"heading-1",icon:"h1",isActive:t.isActive("heading",{level:1}),text:"Heading 1",onclick:function(){return t.chain().focus().toggleHeading({level:1}).run()}},{node:"heading-2",icon:"h2",isActive:t.isActive("heading",{level:2}),text:"Heading 2",onclick:function(){return t.chain().focus().toggleHeading({level:2}).run()}},{node:"heading-3",icon:"h3",isActive:t.isActive("heading",{level:3}),text:"Heading 3",onclick:function(){return t.chain().focus().toggleHeading({level:3}).run()}},{node:"bulletList",icon:"list",isActive:t.isActive("bulletList"),text:"Bullet List",onclick:function(){return t.chain().focus().toggleBulletList().run()}},{node:"orderedList",icon:"list-ol",isActive:t.isActive("orderedList"),text:"Ordered List",onclick:function(){return t.chain().focus().toggleOrderedList().run()}},{node:"blockquote",icon:"block-quote",isActive:t.isActive("blockquote"),text:"Block Quote",onclick:function(){return t.chain().focus().toggleBlockquote().run()}}],l=0,c=[],u=0,d=s;u<d.length;u++){var m=d[u],h=m.text,f=m.isActive,g=m.icon;f&&(l++,c.push(a.a.createElement(p.a,{align:"center",gap:"xs",key:g},a.a.createElement(b.a,{icon:g,size:"lg"}),a.a.createElement("div",null,h),a.a.createElement(p.a,{className:i?"fa-flip-vertical":"",display:"inline_flex"},a.a.createElement(b.a,{fixedWidth:!0,icon:"angle-down","margin-left":"xs"})))))}var _=a.a.createElement(v.a,{className:"editor-dropdown-button",onClick:function(){o(!0)},variant:"secondary"},2===l?c[1]:1===l?c[0]||null:a.a.createElement(p.a,{align:"center",gap:"xs",key:"paragraph"},a.a.createElement(b.a,{icon:"paragraph",size:"lg"}),a.a.createElement("div",null,"Paragraph"),a.a.createElement(p.a,{className:i?"fa-flip-vertical":"",display:"inline_flex"},a.a.createElement(b.a,{fixedWidth:!0,icon:"angle-down","margin-left":"xs"}))));return a.a.createElement(y.a,{closeOnClick:"outside",padding:"none",placement:"bottom",reference:_,shouldClosePopover:function(e){o(!e)},show:i},a.a.createElement(k.a,{paddingBottom:"xs",paddingTop:"xs",variant:"subtle"},s.map((function(e,t){var r=e.icon,n=e.text,i=e.onclick,s=e.isActive;return a.a.createElement(x.a,{className:"pb_tiptap_toolbar_dropdown_list_item ".concat(s?"is-active":""),cursor:"pointer",iconLeft:r,key:"".concat(n,"_").concat(t),margin:"none",onClick:function(){i(),o(!1)},paddingBottom:"xxs",paddingTop:"xxs",text:n})}))))},j=function(e){var t=e.editor,r=Object(n.useCallback)((function(){var e=t.getAttributes("link").href,r=window.prompt("URL",e);null!==r&&(""!==r?t.chain().focus().extendMarkRange("link").setLink({href:r}).run():t.chain().focus().extendMarkRange("link").unsetLink().run())}),[t]),i=[{onclick:function(){return t.chain().focus().toggleCodeBlock().run()},icon:"code",isActive:t.isActive("codeBlock"),text:"Codeblock"},{onclick:r,icon:"link",isActive:t.isActive("link"),text:"Link"}];return a.a.createElement(a.a.Fragment,null,i.map((function(e,t){var r=e.onclick,n=e.icon,i=e.text,o=e.isActive;return a.a.createElement(_,{classname:"toolbar_button ".concat(o?"is-active":""),icon:n,key:t,onclick:r,text:i})})))},O=function(e){var t=e.editor,r=[{classname:"toolbar_button",icon:"undo",text:"Undo",onclick:function(){return t.chain().focus().undo().run()},disable:!t.can().chain().focus().undo().run()},{classname:"toolbar_button",icon:"redo",text:"Redo",onclick:function(){return t.chain().focus().redo().run()},disable:!t.can().chain().focus().redo().run()}];return a.a.createElement(a.a.Fragment,null,a.a.createElement(h.a,{displayFlex:!0},r.map((function(e,t){var r=e.onclick,n=e.classname,i=e.disable,o=e.icon,s=e.text;return a.a.createElement(_,{classname:n,disable:i,icon:o,key:t,onclick:r,text:s})}))))};function C(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,a,i,o,s=[],l=!0,c=!1;try{if(i=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=i.call(r)).done)&&(s.push(n.value),s.length!==t);l=!0);}catch(e){c=!0,a=e}finally{try{if(!l&&null!=r.return&&(o=r.return(),Object(o)!==o))return}finally{if(c)throw a}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return S(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return S(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function S(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var z=function(e){var t=e.extensions,r=C(Object(n.useState)(!1),2),i=r[0],o=r[1],s=a.a.createElement("button",{className:"toolbar_button",onClick:function(){o(!0)},role:"button",type:"button"},a.a.createElement(p.a,{align:"center",className:"toolbar_button_icon",justify:"center"},a.a.createElement(b.a,{icon:"ellipsis",size:"lg"})));return a.a.createElement(y.a,{closeOnClick:"outside",padding:"none",placement:"bottom",reference:s,shouldClosePopover:function(e){o(!e)},show:i},a.a.createElement(k.a,{paddingBottom:t.length>1?"xs":"none",paddingTop:t.length>1?"xs":"none",variant:"subtle"},t&&t.map((function(e,t){var r=e.icon,n=e.text,i=e.onclick,s=e.isActive;return a.a.createElement(x.a,{className:"pb_tiptap_toolbar_dropdown_list_item ".concat(s?"is-active":""),cursor:"pointer",iconLeft:r,key:"".concat(n,"_").concat(t),margin:"none",onClick:function(){i(),o(!1)},paddingBottom:"xxs",paddingTop:"xxs",text:n})}))))},T=function(e){var t=e.editor,r=e.extensions,n=[{icon:"bold",text:"Bold",classname:"toolbar_button ".concat(t.isActive("bold")?"is-active":""),onclick:function(){return t.chain().focus().toggleBold().run()}},{icon:"italic",text:"Italic",classname:"toolbar_button ".concat(t.isActive("italic")?"is-active":""),onclick:function(){return t.chain().focus().toggleItalic().run()}},{icon:"strikethrough",text:"Strikethrough",classname:"toolbar_button ".concat(t.isActive("strike")?"is-active":""),onclick:function(){return t.chain().focus().toggleStrike().run()}}];return a.a.createElement(m.a,{backgroundColor:"white",className:"toolbar"},a.a.createElement(p.a,{flex:"0",justify:"between",paddingX:"sm",paddingY:"xxs"},a.a.createElement(h.a,{className:"toolbar_block",displayFlex:!0},a.a.createElement(E,{editor:t}),a.a.createElement(f.a,{orientation:"vertical"}),n&&n.map((function(e,t){var r=e.icon,n=e.text,i=e.classname,o=e.onclick;return a.a.createElement(_,{classname:i,icon:r,key:t,onclick:o,text:n})})),a.a.createElement(f.a,{orientation:"vertical"}),a.a.createElement(j,{editor:t}),r&&a.a.createElement(a.a.Fragment,null,a.a.createElement(z,{extensions:r}))),a.a.createElement(O,{editor:t})))};function A(e,t,r){var n;return(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!=typeof n)return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function M(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,a,i,o,s=[],l=!0,c=!1;try{if(i=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=i.call(r)).done)&&(s.push(n.value),s.length!==t);l=!0);}catch(e){c=!0,a=e}finally{try{if(!l&&null!=r.return&&(o=r.return(),Object(o)!==o))return}finally{if(c)throw a}}return s}}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return P(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return P(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function P(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}try{r(267).config.textAttributes.inlineCode={tagName:"code",inheritable:!0}}catch(e){}t.a=function(e){var t=e.aria,r=void 0===t?{}:t,i=e.advancedEditor,m=e.advancedEditorToolbar,p=void 0===m||m,h=e.toolbarBottom,f=void 0!==h&&h,b=e.children,g=e.className,_=e.data,y=void 0===_?{}:_,v=e.focus,k=void 0!==v&&v,x=e.htmlOptions,w=void 0===x?{}:x,N=e.inline,E=void 0!==N&&N,j=e.extensions,O=e.name,C=e.onChange,S=void 0===C?u.e:C,z=e.placeholder,P=e.simple,I=void 0!==P&&P,D=e.sticky,L=void 0!==D&&D,$=e.template,R=void 0===$?"":$,F=e.value,B=void 0===F?"":F,q=e.maxWidth,V=void 0===q?"md":q,U=Object(u.a)(r),H=Object(u.c)(y),W=M(Object(n.useState)(),2),G=W[0],Y=W[1],X=Object(u.d)(w),Z=null==G?void 0:G.element;if(G){var K=Z.parentElement.querySelector("trix-toolbar"),J=K.querySelector("[data-trix-attribute=code]"),Q=K.querySelector("[data-trix-attribute=inlineCode]");Q||(Q=J.cloneNode(!0)),Q.dataset.trixAttribute="inlineCode",J.insertAdjacentElement("afterend",Q),f&&G.element.after(K);Z.addEventListener("trix-selection-change",(function(){var e=function(){if(G.attributeIsActive("code"))return"block";if(G.attributeIsActive("inlineCode"))return"inline";var e=G.getSelectedRange();if(e[0]==e[1])return"block";var t=G.getSelectedDocument().toString().trim();return/\n/.test(t)?"block":"inline"}();J.hidden="inline"==e,Q.hidden="block"==e})),k&&(document.addEventListener("trix-focus",l),document.addEventListener("trix-blur",l),l()),document.addEventListener("trix-focus",s),document.addEventListener("trix-blur",s)}Object(n.useEffect)((function(){G&&R&&(G.loadHTML(""),G.setSelectedRange([0,0]),G.insertHTML(R))}),[G,R]),Object(n.useEffect)((function(){Z&&Z.addEventListener("click",(function(e){var t=e.target;if(t.closest(".pb_rich_text_editor_kit")){var r=t.closest("a");r&&r.hasAttribute("href")&&window.open(r.href)}}))}),[Z]);var ee=I?"simple":"",te=k?"focus-editor-targets":"",re=L?"sticky":"",ne=E?"inline":"",ae=f?"toolbar-bottom":"",ie=o()(Object(c.c)(e,{maxWidth:V}),g);return ie=o()("pb_rich_text_editor_kit",ee,te,re,ne,ae,ie),a.a.createElement("div",Object.assign({},U,H,X,{className:ie}),i?a.a.createElement("div",{className:o()("pb_rich_text_editor_advanced_container",A({},"toolbar-active",p))},p&&a.a.createElement(T,{editor:i,extensions:j}),b):a.a.createElement(d.TrixEditor,{className:"",fileParamName:O,mergeTags:[],onChange:S,onEditorReady:function(e){return Y(e)},placeholder:z,value:B}))}},function(e,t,r){"use strict";var n=r(0),a=r.n(n),i=r(3),o=r.n(i),s=r(4),l=r(2),c=function(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var a=0;for(n=Object.getOwnPropertySymbols(e);a<n.length;a++)t.indexOf(n[a])<0&&Object.prototype.propertyIsEnumerable.call(e,n[a])&&(r[n[a]]=e[n[a]])}return r};t.a=function(e){var t=e.aria,r=void 0===t?{}:t,n=e.className,i=e.data,u=void 0===i?{}:i,d=e.htmlOptions,m=void 0===d?{}:d,p=e.id,h=e.component,f=void 0===h?"a":h,b=c(e,["aria","className","data","htmlOptions","id","component"]),g=Object(l.a)(r),_=Object(l.c)(u),y=Object(l.d)(m),v=f||"span",k=o()(Object(l.b)("pb_bread_crumb_item_kit"),Object(s.c)(e),n);return a.a.createElement("div",Object.assign({},g,_,y,{className:k,id:p}),a.a.createElement(v,Object.assign({className:"pb_bread_crumb_item"},Object(s.b)(b))))}},function(e,t,r){e.exports=function(e){var t={};function r(n){if(t[n])return t[n].exports;var a=t[n]={exports:{},id:n,loaded:!1};return e[n].call(a.exports,a,a.exports,r),a.loaded=!0,a.exports}return r.m=e,r.c=t,r.p="",r(0)}([function(e,t,r){e.exports=r(1)},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n,a=r(2),i=(n=a)&&n.__esModule?n:{default:n};t.default=i.default,e.exports=t.default},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e};function a(e){return e&&e.__esModule?e:{default:e}}t.default=c;var i=r(3),o=a(r(4)),s=r(14),l=a(r(15));function c(e){var t=e.activeClassName,r=void 0===t?"":t,a=e.activeIndex,o=void 0===a?-1:a,c=e.activeStyle,u=e.autoEscape,d=e.caseSensitive,m=void 0!==d&&d,p=e.className,h=e.findChunks,f=e.highlightClassName,b=void 0===f?"":f,g=e.highlightStyle,_=void 0===g?{}:g,y=e.highlightTag,v=void 0===y?"mark":y,k=e.sanitize,x=e.searchWords,w=e.textToHighlight,N=e.unhighlightTag,E=void 0===N?"span":N,j=e.unhighlightClassName,O=void 0===j?"":j,C=e.unhighlightStyle,S=function(e,t){var r={};for(var n in e)t.indexOf(n)>=0||Object.prototype.hasOwnProperty.call(e,n)&&(r[n]=e[n]);return r}(e,["activeClassName","activeIndex","activeStyle","autoEscape","caseSensitive","className","findChunks","highlightClassName","highlightStyle","highlightTag","sanitize","searchWords","textToHighlight","unhighlightTag","unhighlightClassName","unhighlightStyle"]),z=(0,i.findAll)({autoEscape:u,caseSensitive:m,findChunks:h,sanitize:k,searchWords:x,textToHighlight:w}),T=v,A=-1,M="",P=void 0,I=(0,l.default)((function(e){var t={};for(var r in e)t[r.toLowerCase()]=e[r];return t}));return(0,s.createElement)("span",n({className:p},S,{children:z.map((function(e,t){var n=w.substr(e.start,e.end-e.start);if(e.highlight){A++;var a=void 0;a="object"==typeof b?m?b[n]:(b=I(b))[n.toLowerCase()]:b;var i=A===+o;M=a+" "+(i?r:""),P=!0===i&&null!=c?Object.assign({},_,c):_;var l={children:n,className:M,key:t,style:P};return"string"!=typeof T&&(l.highlightIndex=A),(0,s.createElement)(T,l)}return(0,s.createElement)(E,{children:n,className:O,key:t,style:C})}))}))}c.propTypes={activeClassName:o.default.string,activeIndex:o.default.number,activeStyle:o.default.object,autoEscape:o.default.bool,className:o.default.string,findChunks:o.default.func,highlightClassName:o.default.oneOfType([o.default.object,o.default.string]),highlightStyle:o.default.object,highlightTag:o.default.oneOfType([o.default.node,o.default.func,o.default.string]),sanitize:o.default.func,searchWords:o.default.arrayOf(o.default.oneOfType([o.default.string,o.default.instanceOf(RegExp)])).isRequired,textToHighlight:o.default.string.isRequired,unhighlightTag:o.default.oneOfType([o.default.node,o.default.func,o.default.string]),unhighlightClassName:o.default.string,unhighlightStyle:o.default.object},e.exports=t.default},function(e,t){e.exports=function(e){var t={};function r(n){if(t[n])return t[n].exports;var a=t[n]={exports:{},id:n,loaded:!1};return e[n].call(a.exports,a,a.exports,r),a.loaded=!0,a.exports}return r.m=e,r.c=t,r.p="",r(0)}([function(e,t,r){e.exports=r(1)},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r(2);Object.defineProperty(t,"combineChunks",{enumerable:!0,get:function(){return n.combineChunks}}),Object.defineProperty(t,"fillInChunks",{enumerable:!0,get:function(){return n.fillInChunks}}),Object.defineProperty(t,"findAll",{enumerable:!0,get:function(){return n.findAll}}),Object.defineProperty(t,"findChunks",{enumerable:!0,get:function(){return n.findChunks}})},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.findAll=function(e){var t=e.autoEscape,i=e.caseSensitive,o=void 0!==i&&i,s=e.findChunks,l=void 0===s?n:s,c=e.sanitize,u=e.searchWords,d=e.textToHighlight;return a({chunksToHighlight:r({chunks:l({autoEscape:t,caseSensitive:o,sanitize:c,searchWords:u,textToHighlight:d})}),totalLength:d?d.length:0})};var r=t.combineChunks=function(e){var t=e.chunks;return t=t.sort((function(e,t){return e.start-t.start})).reduce((function(e,t){if(0===e.length)return[t];var r=e.pop();if(t.start<=r.end){var n=Math.max(r.end,t.end);e.push({start:r.start,end:n})}else e.push(r,t);return e}),[])},n=function(e){var t=e.autoEscape,r=e.caseSensitive,n=e.sanitize,a=void 0===n?i:n,o=e.searchWords,s=e.textToHighlight;return s=a(s),o.filter((function(e){return e})).reduce((function(e,n){n=a(n),t&&(n=n.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&"));for(var i=new RegExp(n,r?"g":"gi"),o=void 0;o=i.exec(s);){var l=o.index,c=i.lastIndex;c>l&&e.push({start:l,end:c}),o.index==i.lastIndex&&i.lastIndex++}return e}),[])};t.findChunks=n;var a=t.fillInChunks=function(e){var t=e.chunksToHighlight,r=e.totalLength,n=[],a=function(e,t,r){t-e>0&&n.push({start:e,end:t,highlight:r})};if(0===t.length)a(0,r,!1);else{var i=0;t.forEach((function(e){a(i,e.start,!1),a(e.start,e.end,!0),i=e.end})),a(i,r,!1)}return n};function i(e){return e}}])},function(e,t,r){(function(t){if("production"!==t.env.NODE_ENV){var n="function"==typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103;e.exports=r(6)((function(e){return"object"==typeof e&&null!==e&&e.$$typeof===n}),!0)}else e.exports=r(13)()}).call(t,r(5))},function(e,t){var r,n,a=e.exports={};function i(){throw new Error("setTimeout has not been defined")}function o(){throw new Error("clearTimeout has not been defined")}function s(e){if(r===setTimeout)return setTimeout(e,0);if((r===i||!r)&&setTimeout)return r=setTimeout,setTimeout(e,0);try{return r(e,0)}catch(t){try{return r.call(null,e,0)}catch(t){return r.call(this,e,0)}}}!function(){try{r="function"==typeof setTimeout?setTimeout:i}catch(e){r=i}try{n="function"==typeof clearTimeout?clearTimeout:o}catch(e){n=o}}();var l,c=[],u=!1,d=-1;function m(){u&&l&&(u=!1,l.length?c=l.concat(c):d=-1,c.length&&p())}function p(){if(!u){var e=s(m);u=!0;for(var t=c.length;t;){for(l=c,c=[];++d<t;)l&&l[d].run();d=-1,t=c.length}l=null,u=!1,function(e){if(n===clearTimeout)return clearTimeout(e);if((n===o||!n)&&clearTimeout)return n=clearTimeout,clearTimeout(e);try{n(e)}catch(t){try{return n.call(null,e)}catch(t){return n.call(this,e)}}}(e)}}function h(e,t){this.fun=e,this.array=t}function f(){}a.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)t[r-1]=arguments[r];c.push(new h(e,t)),1!==c.length||u||s(p)},h.prototype.run=function(){this.fun.apply(null,this.array)},a.title="browser",a.browser=!0,a.env={},a.argv=[],a.version="",a.versions={},a.on=f,a.addListener=f,a.once=f,a.off=f,a.removeListener=f,a.removeAllListeners=f,a.emit=f,a.prependListener=f,a.prependOnceListener=f,a.listeners=function(e){return[]},a.binding=function(e){throw new Error("process.binding is not supported")},a.cwd=function(){return"/"},a.chdir=function(e){throw new Error("process.chdir is not supported")},a.umask=function(){return 0}},function(e,t,r){(function(t){"use strict";var n=r(7),a=r(8),i=r(9),o=r(10),s=r(11),l=r(12);e.exports=function(e,r){var c="function"==typeof Symbol&&Symbol.iterator;var u={array:h("array"),bool:h("boolean"),func:h("function"),number:h("number"),object:h("object"),string:h("string"),symbol:h("symbol"),any:p(n.thatReturnsNull),arrayOf:function(e){return p((function(t,r,n,a,i){if("function"!=typeof e)return new m("Property `"+i+"` of component `"+n+"` has invalid PropType notation inside arrayOf.");var o=t[r];if(!Array.isArray(o))return new m("Invalid "+a+" `"+i+"` of type `"+b(o)+"` supplied to `"+n+"`, expected an array.");for(var l=0;l<o.length;l++){var c=e(o,l,n,a,i+"["+l+"]",s);if(c instanceof Error)return c}return null}))},element:p((function(t,r,n,a,i){var o=t[r];return e(o)?null:new m("Invalid "+a+" `"+i+"` of type `"+b(o)+"` supplied to `"+n+"`, expected a single ReactElement.")})),instanceOf:function(e){return p((function(t,r,n,a,i){if(!(t[r]instanceof e)){var o=e.name||"<<anonymous>>";return new m("Invalid "+a+" `"+i+"` of type `"+function(e){if(!e.constructor||!e.constructor.name)return"<<anonymous>>";return e.constructor.name}(t[r])+"` supplied to `"+n+"`, expected instance of `"+o+"`.")}return null}))},node:p((function(e,t,r,n,a){return f(e[t])?null:new m("Invalid "+n+" `"+a+"` supplied to `"+r+"`, expected a ReactNode.")})),objectOf:function(e){return p((function(t,r,n,a,i){if("function"!=typeof e)return new m("Property `"+i+"` of component `"+n+"` has invalid PropType notation inside objectOf.");var o=t[r],l=b(o);if("object"!==l)return new m("Invalid "+a+" `"+i+"` of type `"+l+"` supplied to `"+n+"`, expected an object.");for(var c in o)if(o.hasOwnProperty(c)){var u=e(o,c,n,a,i+"."+c,s);if(u instanceof Error)return u}return null}))},oneOf:function(e){if(!Array.isArray(e))return"production"!==t.env.NODE_ENV&&i(!1,"Invalid argument supplied to oneOf, expected an instance of array."),n.thatReturnsNull;return p((function(t,r,n,a,i){for(var o=t[r],s=0;s<e.length;s++)if(d(o,e[s]))return null;return new m("Invalid "+a+" `"+i+"` of value `"+o+"` supplied to `"+n+"`, expected one of "+JSON.stringify(e)+".")}))},oneOfType:function(e){if(!Array.isArray(e))return"production"!==t.env.NODE_ENV&&i(!1,"Invalid argument supplied to oneOfType, expected an instance of array."),n.thatReturnsNull;for(var r=0;r<e.length;r++){var a=e[r];if("function"!=typeof a)return i(!1,"Invalid argument supplied to oneOfType. Expected an array of check functions, but received %s at index %s.",_(a),r),n.thatReturnsNull}return p((function(t,r,n,a,i){for(var o=0;o<e.length;o++){if(null==(0,e[o])(t,r,n,a,i,s))return null}return new m("Invalid "+a+" `"+i+"` supplied to `"+n+"`.")}))},shape:function(e){return p((function(t,r,n,a,i){var o=t[r],l=b(o);if("object"!==l)return new m("Invalid "+a+" `"+i+"` of type `"+l+"` supplied to `"+n+"`, expected `object`.");for(var c in e){var u=e[c];if(u){var d=u(o,c,n,a,i+"."+c,s);if(d)return d}}return null}))},exact:function(e){return p((function(t,r,n,a,i){var l=t[r],c=b(l);if("object"!==c)return new m("Invalid "+a+" `"+i+"` of type `"+c+"` supplied to `"+n+"`, expected `object`.");var u=o({},t[r],e);for(var d in u){var p=e[d];if(!p)return new m("Invalid "+a+" `"+i+"` key `"+d+"` supplied to `"+n+"`.\nBad object: "+JSON.stringify(t[r],null," ")+"\nValid keys: "+JSON.stringify(Object.keys(e),null," "));var h=p(l,d,n,a,i+"."+d,s);if(h)return h}return null}))}};function d(e,t){return e===t?0!==e||1/e==1/t:e!=e&&t!=t}function m(e){this.message=e,this.stack=""}function p(e){if("production"!==t.env.NODE_ENV)var n={},o=0;function l(l,c,u,d,p,h,f){if(d=d||"<<anonymous>>",h=h||u,f!==s)if(r)a(!1,"Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types");else if("production"!==t.env.NODE_ENV&&"undefined"!=typeof console){var b=d+":"+u;!n[b]&&o<3&&(i(!1,"You are manually calling a React.PropTypes validation function for the `%s` prop on `%s`. This is deprecated and will throw in the standalone `prop-types` package. You may be seeing this warning due to a third-party PropTypes library. See https://fb.me/react-warning-dont-call-proptypes for details.",h,d),n[b]=!0,o++)}return null==c[u]?l?null===c[u]?new m("The "+p+" `"+h+"` is marked as required in `"+d+"`, but its value is `null`."):new m("The "+p+" `"+h+"` is marked as required in `"+d+"`, but its value is `undefined`."):null:e(c,u,d,p,h)}var c=l.bind(null,!1);return c.isRequired=l.bind(null,!0),c}function h(e){return p((function(t,r,n,a,i,o){var s=t[r];return b(s)!==e?new m("Invalid "+a+" `"+i+"` of type `"+g(s)+"` supplied to `"+n+"`, expected `"+e+"`."):null}))}function f(t){switch(typeof t){case"number":case"string":case"undefined":return!0;case"boolean":return!t;case"object":if(Array.isArray(t))return t.every(f);if(null===t||e(t))return!0;var r=function(e){var t=e&&(c&&e[c]||e["@@iterator"]);if("function"==typeof t)return t}(t);if(!r)return!1;var n,a=r.call(t);if(r!==t.entries){for(;!(n=a.next()).done;)if(!f(n.value))return!1}else for(;!(n=a.next()).done;){var i=n.value;if(i&&!f(i[1]))return!1}return!0;default:return!1}}function b(e){var t=typeof e;return Array.isArray(e)?"array":e instanceof RegExp?"object":function(e,t){return"symbol"===e||("Symbol"===t["@@toStringTag"]||"function"==typeof Symbol&&t instanceof Symbol)}(t,e)?"symbol":t}function g(e){if(null==e)return""+e;var t=b(e);if("object"===t){if(e instanceof Date)return"date";if(e instanceof RegExp)return"regexp"}return t}function _(e){var t=g(e);switch(t){case"array":case"object":return"an "+t;case"boolean":case"date":case"regexp":return"a "+t;default:return t}}return m.prototype=Error.prototype,u.checkPropTypes=l,u.PropTypes=u,u}}).call(t,r(5))},function(e,t){"use strict";function r(e){return function(){return e}}var n=function(){};n.thatReturns=r,n.thatReturnsFalse=r(!1),n.thatReturnsTrue=r(!0),n.thatReturnsNull=r(null),n.thatReturnsThis=function(){return this},n.thatReturnsArgument=function(e){return e},e.exports=n},function(e,t,r){(function(t){"use strict";var r=function(e){};"production"!==t.env.NODE_ENV&&(r=function(e){if(void 0===e)throw new Error("invariant requires an error message argument")}),e.exports=function(e,t,n,a,i,o,s,l){if(r(t),!e){var c;if(void 0===t)c=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var u=[n,a,i,o,s,l],d=0;(c=new Error(t.replace(/%s/g,(function(){return u[d++]})))).name="Invariant Violation"}throw c.framesToPop=1,c}}}).call(t,r(5))},function(e,t,r){(function(t){"use strict";var n=r(7);if("production"!==t.env.NODE_ENV){var a=function(e){for(var t=arguments.length,r=Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];var a=0,i="Warning: "+e.replace(/%s/g,(function(){return r[a++]}));"undefined"!=typeof console&&console.error(i);try{throw new Error(i)}catch(e){}};n=function(e,t){if(void 0===t)throw new Error("`warning(condition, format, ...args)` requires a warning message argument");if(0!==t.indexOf("Failed Composite propType: ")&&!e){for(var r=arguments.length,n=Array(r>2?r-2:0),i=2;i<r;i++)n[i-2]=arguments[i];a.apply(void 0,[t].concat(n))}}}e.exports=n}).call(t,r(5))},function(e,t){
54
54
  /*
55
55
  object-assign
56
56
  (c) Sindre Sorhus
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui_docs
3
3
  version: !ruby/object:Gem::Version
4
- version: 13.28.0.pre.alpha.PLAY1209fixformgroupdatepickerborderradiusreact2953
4
+ version: 13.28.0.pre.alpha.PLAY13592980
5
5
  platform: ruby
6
6
  authors:
7
7
  - Power UX
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-05-24 00:00:00.000000000 Z
12
+ date: 2024-05-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: playbook_ui
@@ -35,6 +35,8 @@ extra_rdoc_files: []
35
35
  files:
36
36
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_beta.html.erb
37
37
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_beta.md
38
+ - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_beta_subrow_headers.html.erb
39
+ - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_beta_subrow_headers.md
38
40
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_collapsible_trail.jsx
39
41
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_collapsible_trail.md
40
42
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_default.jsx