@db-ux/core-components 4.0.4 → 4.2.0

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 (34) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/build/assets/fonts/OpenSans-Bold-EU.woff2 +0 -0
  3. package/build/assets/fonts/OpenSans-ExtraBold-EU.woff2 +0 -0
  4. package/build/assets/fonts/OpenSans-Light-EU.woff2 +0 -0
  5. package/build/assets/fonts/OpenSans-Medium-EU.woff2 +0 -0
  6. package/build/assets/fonts/OpenSans-Regular-EU.woff2 +0 -0
  7. package/build/assets/fonts/OpenSans-SemiBold-EU.woff2 +0 -0
  8. package/build/assets/fonts/generate-eu-fonts.ts +1 -1
  9. package/build/assets/fonts/unicode-eu.txt +1 -0
  10. package/build/components/badge/badge.css +2 -1
  11. package/build/components/button/button.css +10 -5
  12. package/build/components/button/button.scss +10 -5
  13. package/build/components/custom-select/custom-select.css +47 -4
  14. package/build/components/custom-select/custom-select.scss +4 -0
  15. package/build/components/input/input.css +46 -5
  16. package/build/components/notification/notification-grid-default.scss +50 -0
  17. package/build/components/notification/notification-grid-non-overlay.scss +71 -57
  18. package/build/components/notification/notification-grid-overlay.scss +153 -52
  19. package/build/components/notification/notification-grid-shared.css +1 -0
  20. package/build/components/notification/notification-grid-shared.scss +80 -0
  21. package/build/components/notification/notification.css +165 -67
  22. package/build/components/notification/notification.scss +54 -66
  23. package/build/components/select/select.css +44 -4
  24. package/build/components/tag/tag.css +2 -1
  25. package/build/components/textarea/textarea.css +44 -4
  26. package/build/styles/absolute.css +6 -6
  27. package/build/styles/index.css +6 -6
  28. package/build/styles/internal/_button-components.scss +2 -1
  29. package/build/styles/internal/_form-components.scss +14 -1
  30. package/build/styles/relative.css +6 -6
  31. package/build/styles/rollup.css +6 -6
  32. package/build/styles/webpack.css +6 -6
  33. package/package.json +5 -5
  34. package/build/assets/icons/check-circle.svg +0 -1
@@ -2,7 +2,8 @@
2
2
 
3
3
  %default-button {
4
4
  font-weight: 700;
5
- white-space: nowrap; // we don't want to break buttons
5
+ overflow-wrap: break-word; // Multiple lines support
6
+ white-space: pre-line; // Multiple lines support
6
7
  justify-content: center;
7
8
  text-align: center;
8
9
 
@@ -80,7 +80,20 @@ $db-min-inline-size: var(
80
80
  [type="month"],
81
81
  [type="week"],
82
82
  [type="time"]
83
- ):not(:user-valid)::-webkit-datetime-edit {
83
+ ):not(
84
+ :user-valid,
85
+ /* we need to set those values, as the element might have an empty HTML value attribute */
86
+ [value*="1"],
87
+ [value*="2"],
88
+ [value*="3"],
89
+ [value*="4"],
90
+ [value*="5"],
91
+ [value*="6"],
92
+ [value*="7"],
93
+ [value*="8"],
94
+ [value*="9"],
95
+ [value*="0"]
96
+ )::-webkit-datetime-edit {
84
97
  @content;
85
98
  }
86
99
  }