playbook_ui 14.4.0.pre.alpha.PLAY1486highchartscssdrivenPOC3923 → 14.4.0.pre.alpha.PLAY1529removefaeasy3876

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/_playbook.scss +0 -2
  3. data/app/pb_kits/playbook/pb_advanced_table/advanced_table.test.jsx +1 -1
  4. data/app/pb_kits/playbook/pb_bar_graph/_bar_graph.scss +0 -21
  5. data/app/pb_kits/playbook/pb_bar_graph/_bar_graph.tsx +184 -5
  6. data/app/pb_kits/playbook/pb_bar_graph/barGraph.test.js +1 -1
  7. data/app/pb_kits/playbook/pb_circle_chart/_circle_chart.tsx +216 -5
  8. data/app/pb_kits/playbook/pb_circle_chart/circleChart.test.js +1 -1
  9. data/app/pb_kits/playbook/pb_dashboard/pbChartsDarkTheme.ts +6 -2
  10. data/app/pb_kits/playbook/pb_dashboard/pbChartsLightTheme.ts +7 -2
  11. data/app/pb_kits/playbook/pb_gantt_chart/_gantt_chart.tsx +64 -3
  12. data/app/pb_kits/playbook/pb_gauge/_gauge.tsx +203 -5
  13. data/app/pb_kits/playbook/pb_gauge/gauge.test.js +1 -1
  14. data/app/pb_kits/playbook/pb_line_graph/_line_graph.tsx +154 -5
  15. data/app/pb_kits/playbook/pb_line_graph/lineGraph.test.js +1 -1
  16. data/app/pb_kits/playbook/pb_popover/docs/_popover_list.html.erb +2 -2
  17. data/app/pb_kits/playbook/pb_radio/docs/_radio_custom_children.html.erb +0 -2
  18. data/app/pb_kits/playbook/pb_radio/docs/_radio_custom_children.jsx +2 -5
  19. data/app/pb_kits/playbook/pb_treemap_chart/_treemap_chart.tsx +113 -5
  20. data/app/pb_kits/playbook/pb_treemap_chart/treemapChart.test.js +1 -1
  21. data/dist/chunks/_typeahead-DnWoIeq6.js +22 -0
  22. data/dist/chunks/_weekday_stacked-C5Ls9JLc.js +45 -0
  23. data/dist/chunks/lib-CEpcaI8y.js +29 -0
  24. data/dist/chunks/{pb_form_validation-Dna2I7fw.js → pb_form_validation-D9zkwt2b.js} +1 -1
  25. data/dist/chunks/vendor.js +1 -1
  26. data/dist/menu.yml +1 -3
  27. data/dist/playbook-doc.js +1 -1
  28. data/dist/playbook-rails-react-bindings.js +1 -1
  29. data/dist/playbook-rails.js +1 -1
  30. data/dist/playbook.css +1 -1
  31. data/lib/playbook/pagination_renderer.rb +2 -2
  32. data/lib/playbook/version.rb +1 -1
  33. metadata +6 -21
  34. data/app/pb_kits/playbook/pb_drawer/_close_icon.tsx +0 -25
  35. data/app/pb_kits/playbook/pb_drawer/_drawer.scss +0 -465
  36. data/app/pb_kits/playbook/pb_drawer/_drawer.tsx +0 -195
  37. data/app/pb_kits/playbook/pb_drawer/_drawer_context.tsx +0 -3
  38. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_borders.jsx +0 -117
  39. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_breakpoints.jsx +0 -43
  40. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_default.html.erb +0 -1
  41. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_default.jsx +0 -63
  42. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_overlay.jsx +0 -55
  43. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_sizes.jsx +0 -113
  44. data/app/pb_kits/playbook/pb_drawer/docs/example.yml +0 -12
  45. data/app/pb_kits/playbook/pb_drawer/docs/index.js +0 -5
  46. data/app/pb_kits/playbook/pb_drawer/drawer.html.erb +0 -12
  47. data/app/pb_kits/playbook/pb_drawer/drawer.rb +0 -8
  48. data/app/pb_kits/playbook/pb_drawer/drawer.test.jsx +0 -77
  49. data/dist/chunks/_typeahead-BywvWGAm.js +0 -22
  50. data/dist/chunks/_weekday_stacked-5OGZKZeo.js +0 -45
  51. data/dist/chunks/lib-DMOmCoAX.js +0 -29
@@ -1 +1 @@
1
- import{P as PbEnhancedElement,d as debounce}from"./lib-DMOmCoAX.js";const KIT_SELECTOR='[class^="pb_"][class*="_kit"]';const ERROR_MESSAGE_SELECTOR=".pb_body_kit_negative";const FORM_SELECTOR='form[data-pb-form-validation="true"]';const REQUIRED_FIELDS_SELECTOR="input[required],textarea[required],select[required]";const FIELD_EVENTS=["change","valid","invalid"];class PbFormValidation extends PbEnhancedElement{static get selector(){return FORM_SELECTOR}connect(){this.formValidationFields.forEach((field=>{FIELD_EVENTS.forEach((e=>{field.addEventListener(e,debounce((event=>{this.validateFormField(event)}),250),false)}))}))}validateFormField(event){event.preventDefault();const{target:target}=event;target.setCustomValidity("");const isValid=event.target.validity.valid;if(isValid){this.clearError(target)}else{this.showValidationMessage(target)}}showValidationMessage(target){const{parentElement:parentElement}=target;this.clearError(target);parentElement.closest(KIT_SELECTOR).classList.add("error");const errorMessageContainer=this.errorMessageContainer;if(target.dataset.message)target.setCustomValidity(target.dataset.message);errorMessageContainer.innerHTML=target.validationMessage;parentElement.appendChild(errorMessageContainer)}clearError(target){const{parentElement:parentElement}=target;parentElement.closest(KIT_SELECTOR).classList.remove("error");const errorMessageContainer=parentElement.querySelector(ERROR_MESSAGE_SELECTOR);if(errorMessageContainer)errorMessageContainer.remove()}get errorMessageContainer(){const errorContainer=document.createElement("div");const kitClassName=ERROR_MESSAGE_SELECTOR.replace(/\./,"");errorContainer.classList.add(kitClassName);return errorContainer}get formValidationFields(){return this._formValidationFields=this._formValidationFields||this.element.querySelectorAll(REQUIRED_FIELDS_SELECTOR)}}window.PbFormValidation=PbFormValidation;
1
+ import{P as PbEnhancedElement,d as debounce}from"./lib-CEpcaI8y.js";const KIT_SELECTOR='[class^="pb_"][class*="_kit"]';const ERROR_MESSAGE_SELECTOR=".pb_body_kit_negative";const FORM_SELECTOR='form[data-pb-form-validation="true"]';const REQUIRED_FIELDS_SELECTOR="input[required],textarea[required],select[required]";const FIELD_EVENTS=["change","valid","invalid"];class PbFormValidation extends PbEnhancedElement{static get selector(){return FORM_SELECTOR}connect(){this.formValidationFields.forEach((field=>{FIELD_EVENTS.forEach((e=>{field.addEventListener(e,debounce((event=>{this.validateFormField(event)}),250),false)}))}))}validateFormField(event){event.preventDefault();const{target:target}=event;target.setCustomValidity("");const isValid=event.target.validity.valid;if(isValid){this.clearError(target)}else{this.showValidationMessage(target)}}showValidationMessage(target){const{parentElement:parentElement}=target;this.clearError(target);parentElement.closest(KIT_SELECTOR).classList.add("error");const errorMessageContainer=this.errorMessageContainer;if(target.dataset.message)target.setCustomValidity(target.dataset.message);errorMessageContainer.innerHTML=target.validationMessage;parentElement.appendChild(errorMessageContainer)}clearError(target){const{parentElement:parentElement}=target;parentElement.closest(KIT_SELECTOR).classList.remove("error");const errorMessageContainer=parentElement.querySelector(ERROR_MESSAGE_SELECTOR);if(errorMessageContainer)errorMessageContainer.remove()}get errorMessageContainer(){const errorContainer=document.createElement("div");const kitClassName=ERROR_MESSAGE_SELECTOR.replace(/\./,"");errorContainer.classList.add(kitClassName);return errorContainer}get formValidationFields(){return this._formValidationFields=this._formValidationFields||this.element.querySelectorAll(REQUIRED_FIELDS_SELECTOR)}}window.PbFormValidation=PbFormValidation;
@@ -1 +1 @@
1
- import"./_weekday_stacked-5OGZKZeo.js";import"./lazysizes-B7xYodB-.js";import"./_typeahead-BywvWGAm.js";import"./lib-DMOmCoAX.js";import"react/jsx-runtime";import"react";import"react-dom";import"react-trix";import"trix";import"react-is";
1
+ import"./_weekday_stacked-C5Ls9JLc.js";import"./lazysizes-B7xYodB-.js";import"./_typeahead-DnWoIeq6.js";import"./lib-CEpcaI8y.js";import"react/jsx-runtime";import"react";import"react-dom";import"react-trix";import"trix";import"react-is";
data/dist/menu.yml CHANGED
@@ -43,9 +43,6 @@ kits:
43
43
  platforms: *1
44
44
  description:
45
45
  status: stable
46
- - name: drawer
47
- platforms: *1
48
- status: beta
49
46
  - category: buttons
50
47
  description: Buttons are used primarily for actions, such as “Save” and “Cancel”.
51
48
  Link Buttons are used for less important or less commonly used actions, such as
@@ -572,3 +569,4 @@ kits:
572
569
  with avatar, titles, name and territory. This is a versatile kit with features
573
570
  than can be added to display more info.
574
571
  status: stable
572
+