@spaziodati/atoka-design-system 7.13.1-beta.0 → 7.13.1-beta.5

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 (68) hide show
  1. package/AddableItems/index.js +1 -1
  2. package/Alert/index.js +1 -1
  3. package/Badge/index.js +1 -1
  4. package/Bs4V3Wrapper/index.js +1 -1
  5. package/BubbleChart/index.js +1 -1
  6. package/Button/index.js +1 -1
  7. package/ButtonDropdown/index.js +1 -1
  8. package/CardsPage/index.js +1 -1
  9. package/ClickableExcludableItem/index.js +1 -1
  10. package/CursorPagination/index.js +1 -1
  11. package/DatePicker/index.js +1 -1
  12. package/DatePickerInput/index.js +1 -1
  13. package/DetailPage/index.js +1 -1
  14. package/DetailPageContent/index.js +1 -1
  15. package/Dropdown/index.js +1 -1
  16. package/EditableString/index.js +1 -1
  17. package/EllipsableContent/index.js +1 -1
  18. package/EmptyState/index.js +1 -1
  19. package/Expandable/index.js +1 -1
  20. package/Facet/index.js +1 -1
  21. package/FacetSection/index.js +1 -1
  22. package/FadeAnimation/index.js +1 -1
  23. package/FeedbackButton/index.js +1 -1
  24. package/Form/index.js +1 -1
  25. package/Funnel/index.js +1 -1
  26. package/Gauge/index.js +1 -1
  27. package/GeoMap/index.js +1 -1
  28. package/GridCard/index.js +1 -1
  29. package/HighlightableText/index.js +1 -1
  30. package/Histogram/index.js +1 -1
  31. package/InlineStringEditor/index.js +1 -1
  32. package/InputGroup/index.js +1 -1
  33. package/Jumbotron/index.js +1 -1
  34. package/Map/index.js +1 -1
  35. package/Modal/index.js +1 -1
  36. package/MultiModeDatePicker/index.js +1 -1
  37. package/Navbar/index.js +1 -1
  38. package/OniruCard/index.js +1 -1
  39. package/Pagination/index.js +1 -1
  40. package/PieChart/index.js +1 -1
  41. package/PublicFooter/index.js +1 -1
  42. package/PublicNavbar/index.js +1 -1
  43. package/RecordBit/index.js +1 -1
  44. package/ResponsiveLineChart/index.js +1 -1
  45. package/ResultItemCard/index.js +1 -1
  46. package/RowCard/index.js +1 -1
  47. package/SelectDropdown/index.js +1 -1
  48. package/Spinner/index.js +1 -1
  49. package/StatisticsItemCard/index.js +1 -1
  50. package/StatisticsItemNumeric/index.js +1 -1
  51. package/StatisticsLegend/index.js +1 -1
  52. package/StatisticsTooltip/index.js +1 -1
  53. package/StreamDialog/index.js +1 -1
  54. package/Suggester/index.js +1 -1
  55. package/SuggestionCard/index.js +1 -1
  56. package/SunBurst/index.js +1 -1
  57. package/TabSwitcher/index.js +1 -1
  58. package/Text/index.js +1 -1
  59. package/Title/index.js +1 -1
  60. package/Toast/index.js +1 -1
  61. package/ToggleButtonGroup/index.js +1 -1
  62. package/Tooltip/index.js +1 -1
  63. package/UserAvatar/index.js +1 -1
  64. package/Utils/index.js +1 -1
  65. package/{atoka-design-system-7.13.1-beta.0.min.css → atoka-design-system-7.13.1-beta.5.min.css} +1 -1
  66. package/package.json +1 -1
  67. package/styles/atoka-bs.scss +6 -3
  68. package/styles/variables.scss +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spaziodati/atoka-design-system",
3
- "version": "7.13.1-beta.0",
3
+ "version": "7.13.1-beta.5",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "serve-build": "http-server -p 6006 .out . > http.log 2>&1 & echo $! > /var/tmp/pidfile",
@@ -182,8 +182,11 @@
182
182
  background-color: unset !important;
183
183
  }
184
184
 
185
- // override BS variables, do like Jesus wants it to be done
186
- --#{prefix}-form-invalid-color: var(--atoka_colors_errorMain);
187
- --#{prefix}-body-color: var(--atoka_colors_topSurfaceContrastText);
185
+ }
188
186
 
187
+ :root {
188
+ // override BS variables
189
+ --bs-form-invalid-color: var(--atoka_colors_errorMain);
190
+ --bs-body-color: var(--atoka_colors_topSurfaceContrastText);
191
+ --bs-table-bg: var(--atoka_colors_topSurfaceMain);
189
192
  }
@@ -118,3 +118,8 @@ $container-max-widths: (
118
118
  xl: 1140px,
119
119
  xxl: 1140px
120
120
  ) !default;
121
+ $text-muted: var(--atoka_colors_mediumEmphasisMain);
122
+
123
+ // https://getbootstrap.com/docs/5.0/utilities/spacing/#negative-margin
124
+ // we should avoid col/row and migrate to d-flex
125
+ $enable-negative-margins: true;