katalyst-tables 3.7.0 → 3.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +14 -0
  3. data/app/assets/builds/katalyst/tables.min.js.map +1 -1
  4. data/app/assets/images/katalyst/tables/icons/sort-asc.svg +3 -0
  5. data/app/assets/images/katalyst/tables/icons/sort-desc.svg +3 -0
  6. data/app/assets/stylesheets/katalyst/_tables.scss +3 -0
  7. data/app/assets/stylesheets/katalyst/tables/query.css +142 -0
  8. data/app/assets/stylesheets/katalyst/tables/summary.css +24 -0
  9. data/app/assets/stylesheets/katalyst/tables/table.css +164 -0
  10. data/app/assets/stylesheets/katalyst/tables.css +3 -0
  11. data/app/components/concerns/katalyst/tables/orderable.rb +1 -1
  12. data/app/components/concerns/katalyst/tables/sortable.rb +1 -1
  13. data/app/components/katalyst/summary_table_component.rb +4 -2
  14. data/app/components/katalyst/table_component.rb +5 -1
  15. data/app/components/katalyst/tables/cells/boolean_component.rb +1 -1
  16. data/app/components/katalyst/tables/cells/currency_component.rb +1 -1
  17. data/app/components/katalyst/tables/cells/date_component.rb +1 -1
  18. data/app/components/katalyst/tables/cells/date_time_component.rb +1 -1
  19. data/app/components/katalyst/tables/cells/enum_component.rb +1 -1
  20. data/app/components/katalyst/tables/cells/number_component.rb +1 -1
  21. data/app/components/katalyst/tables/cells/ordinal_component.rb +3 -3
  22. data/app/components/katalyst/tables/cells/rich_text_component.rb +1 -1
  23. data/app/components/katalyst/tables/cells/select_component.rb +4 -4
  24. data/app/components/katalyst/tables/query/input_component.html.erb +1 -1
  25. data/app/components/katalyst/tables/query/modal_component.html.erb +1 -1
  26. data/app/components/katalyst/tables/query_component.rb +2 -1
  27. data/lib/katalyst/tables/collection/type/date.rb +2 -2
  28. metadata +10 -16
  29. data/app/assets/stylesheets/katalyst/tables/_index.scss +0 -3
  30. data/app/assets/stylesheets/katalyst/tables/_ordinal.scss +0 -38
  31. data/app/assets/stylesheets/katalyst/tables/_query.scss +0 -142
  32. data/app/assets/stylesheets/katalyst/tables/_select.scss +0 -7
  33. data/app/assets/stylesheets/katalyst/tables/_summary.scss +0 -14
  34. data/app/assets/stylesheets/katalyst/tables/_table.scss +0 -128
  35. data/app/assets/stylesheets/katalyst/tables/typed-columns/_boolean.scss +0 -4
  36. data/app/assets/stylesheets/katalyst/tables/typed-columns/_currency.scss +0 -8
  37. data/app/assets/stylesheets/katalyst/tables/typed-columns/_date.scss +0 -4
  38. data/app/assets/stylesheets/katalyst/tables/typed-columns/_datetime.scss +0 -4
  39. data/app/assets/stylesheets/katalyst/tables/typed-columns/_enum.scss +0 -19
  40. data/app/assets/stylesheets/katalyst/tables/typed-columns/_index.scss +0 -6
  41. data/app/assets/stylesheets/katalyst/tables/typed-columns/_number.scss +0 -8
@@ -1,8 +0,0 @@
1
- // where psuedo selector has a specificity of 0 so it can be easily overwritten with simple selectors
2
- :where(th.type-number, td.type-number) {
3
- width: var(--width-small);
4
- }
5
-
6
- :where(thead th.type-number, td.type-number) {
7
- text-align: right;
8
- }