@progress/kendo-theme-bootstrap 5.0.0-beta.0 → 5.0.0-beta.4

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 (89) hide show
  1. package/README.md +5 -8
  2. package/dist/all.css +4015 -4060
  3. package/dist/all.scss +5849 -5376
  4. package/dist/bootstrap-dataviz-v4.scss +8 -0
  5. package/dist/bootstrap-main.scss +6 -6
  6. package/lib/swatches/bootstrap-dataviz-v4.json +51 -0
  7. package/lib/swatches/bootstrap-main.json +6 -6
  8. package/package.json +3 -3
  9. package/scss/appbar/_variables.scss +1 -1
  10. package/scss/autocomplete/_variables.scss +0 -19
  11. package/scss/avatar/index.md +0 -0
  12. package/scss/button/_index.scss +1 -1
  13. package/scss/button/_layout.scss +0 -8
  14. package/scss/button/_theme.scss +0 -81
  15. package/scss/button/_variables.scss +48 -20
  16. package/scss/button/index.md +0 -0
  17. package/scss/chat/_variables.scss +0 -7
  18. package/scss/checkbox/_index.scss +2 -1
  19. package/scss/checkbox/_variables.scss +59 -68
  20. package/scss/checkbox/index.md +0 -0
  21. package/scss/chip/_index.scss +1 -0
  22. package/scss/chip/_variables.scss +12 -12
  23. package/scss/chip/index.md +0 -0
  24. package/scss/color-preview/_variables.scss +1 -0
  25. package/scss/coloreditor/_variables.scss +3 -3
  26. package/scss/colorpicker/_index.scss +1 -2
  27. package/scss/colorpicker/_variables.scss +1 -20
  28. package/scss/combobox/_variables.scss +1 -31
  29. package/scss/dateinput/_index.scss +0 -4
  30. package/scss/dateinput/_variables.scss +1 -1
  31. package/scss/datepicker/_index.scss +1 -3
  32. package/scss/datetimepicker/_index.scss +5 -3
  33. package/scss/datetimepicker/_variables.scss +2 -1
  34. package/scss/dropdowngrid/index.md +0 -0
  35. package/scss/fab/_theme.scss +51 -56
  36. package/scss/fab/_variables.scss +128 -72
  37. package/scss/fab/index.md +0 -0
  38. package/scss/filter/_index.scss +1 -1
  39. package/scss/gantt/_index.scss +1 -1
  40. package/scss/grid/_index.scss +1 -1
  41. package/scss/grid/_theme.scss +0 -6
  42. package/scss/grid/_variables.scss +8 -8
  43. package/scss/imageeditor/_variables.scss +1 -0
  44. package/scss/index.scss +2 -1
  45. package/scss/input/_index.scss +1 -1
  46. package/scss/input/_variables.scss +18 -28
  47. package/scss/list/_index.scss +1 -0
  48. package/scss/list/_theme.scss +0 -20
  49. package/scss/list/_variables.scss +213 -46
  50. package/scss/list/index.md +0 -0
  51. package/scss/listbox/_index.scss +1 -0
  52. package/scss/listbox/_variables.scss +1 -1
  53. package/scss/menu/_index.scss +1 -0
  54. package/scss/menu/_theme.scss +0 -10
  55. package/scss/menu/_variables.scss +60 -50
  56. package/scss/multiselect/_index.scss +1 -1
  57. package/scss/orgchart/_variables.scss +2 -2
  58. package/scss/panelbar/_variables.scss +5 -0
  59. package/scss/pdf-viewer/_variables.scss +2 -5
  60. package/scss/pivotgrid/_variables.scss +0 -3
  61. package/scss/popup/_index.scss +0 -1
  62. package/scss/popup/_layout.scss +5 -8
  63. package/scss/popup/_variables.scss +2 -2
  64. package/scss/radio/_index.scss +1 -1
  65. package/scss/radio/_variables.scss +69 -88
  66. package/scss/radio/index.md +0 -0
  67. package/scss/scheduler/_index.scss +1 -1
  68. package/scss/spreadsheet/_index.scss +1 -1
  69. package/scss/switch/index.md +0 -0
  70. package/scss/table/_theme.scss +0 -8
  71. package/scss/table/_variables.scss +101 -32
  72. package/scss/taskboard/_variables.scss +0 -2
  73. package/scss/timepicker/_index.scss +3 -3
  74. package/scss/timepicker/_variables.scss +1 -1
  75. package/scss/{datetime → timeselector}/_index.scss +2 -5
  76. package/scss/timeselector/_layout.scss +1 -0
  77. package/scss/timeselector/_theme.scss +1 -0
  78. package/scss/timeselector/_variables.scss +32 -0
  79. package/scss/toolbar/_variables.scss +2 -0
  80. package/scss/treeview/_layout.scss +5 -15
  81. package/scss/treeview/_variables.scss +125 -46
  82. package/scss/utils/_border.scss +1 -2
  83. package/scss/virtual-scroller/_index.scss +10 -0
  84. package/scss/virtual-scroller/_layout.scss +1 -0
  85. package/scss/virtual-scroller/_theme.scss +1 -0
  86. package/scss/virtual-scroller/_variables.scss +1 -0
  87. package/scss/datetime/_layout.scss +0 -25
  88. package/scss/datetime/_theme.scss +0 -14
  89. package/scss/datetime/_variables.scss +0 -53
package/README.md CHANGED
@@ -46,7 +46,7 @@ You can customize Kendo UI Bootstrap Theme both in terms of what gets compiled a
46
46
 
47
47
  ### Importing
48
48
 
49
- In your custom csss file, you can import the entirety of the theme, by importing `dist/all.scss` or pick just the styles for the components you need. The files for individual components are in `scss/` folder:
49
+ In your custom scss file, you can import the entirety of the theme, by importing `dist/all.scss` or pick just the styles for the components you need. The files for individual components are in `scss/` folder:
50
50
 
51
51
  ```scss
52
52
  // Import only PanelBar and Grid styles
@@ -56,9 +56,9 @@ In your custom csss file, you can import the entirety of the theme, by importing
56
56
 
57
57
  ### SCSS Variables
58
58
 
59
- Kendo UI Bootstrap Theme provides many variables for customization. There are variables that control globally used theme colors like `$primary`, `$secondary`, `$success`, `$error` etc.; variables for all components such as `$component-text`, `$component-bg`; as well as variables for individual components such as `$grid-bg`, `$combobox-text`, `$tabstrip-font-size` and so on.
59
+ Kendo UI Bootstrap Theme provides many variables for customization. There are variables that control globally used theme colors like `$primary`, `$secondary`, `$success`, `$error` etc.; variables for all components such as `$component-text`, `$component-bg`; as well as variables for individual components such as `$grid-bg`, `$tabstrip-font-size` and so on.
60
60
 
61
- Most component variables link to higher abstracted generic variables. For instance, the background of the grid component can be customized both from `$component-bg` and `$grid-bg`, with the latter ferrencing the former.
61
+ Most component variables link to higher abstracted generic variables. For instance, the background of the grid component can be customized both from `$component-bg` and `$grid-bg`, with the latter referencing the former.
62
62
 
63
63
  We have more than 2000 variables, so it's hard to list them all. We've tried to make variable names as coherent as possible. For instance, all variables ending in `-bg` control background color; all variables ending in `-text` control text color.
64
64
 
@@ -68,9 +68,6 @@ Here is a quick example on how to customize:
68
68
  // Make all inputs components with a different background color
69
69
  $input-bg: #f0f0f0;
70
70
 
71
- // Change just the autocomplete to have white background
72
- $autocomplete-bg: #ffffff;
73
-
74
71
  // Make the border of the grid black and slightly ticker
75
72
  $grid-border-width: 2px;
76
73
  $grid-border: #000000;
@@ -91,7 +88,7 @@ CSS can be complicated due to cascades (that's what C stands for). If there are
91
88
 
92
89
  To avoid that, we've prefixed all our class names with `k-` e.g. `k-grid`, `k-hidden` etc., with the exception of handling for `hidden` attribute, which will hide the element that has it.
93
90
 
94
- Some frameworks, like Bootstrap and Tailwind, touch global styles to establish a sort of baseline -- we call that normalizing. One such styles is the following bit, which makes dimenssions (width and height) behave in a specific way:
91
+ Some frameworks, like Bootstrap and Tailwind, touch global styles to establish a sort of baseline -- we call that normalizing. One such styles is the following bit, which makes dimensions (width and height) behave in a specific way:
95
92
 
96
93
  ```css
97
94
  *, ::after, ::before {
@@ -115,7 +112,7 @@ Have a bug or a feature request? Please first search for existing and closed iss
115
112
 
116
113
  ## Versioning
117
114
 
118
- To ensure version predictability, we use [Semantic Versioning](https://semver.org/): we try to add only feaures for minor versions and bugfixes (or smaller features) for patch version.
115
+ To ensure version predictability, we use [Semantic Versioning](https://semver.org/): we try to add only features for minor versions and bugfixes (or smaller features) for patch version.
119
116
 
120
117
  ## License
121
118