@progress/kendo-theme-bootstrap 7.0.3-dev.3 → 7.1.0-dev.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.
package/dist/all.scss CHANGED
@@ -18922,6 +18922,7 @@ $kendo-popup-shadow: k-elevation(4) !default;
18922
18922
  .k-popup.k-popup-transparent {
18923
18923
  border-width: 0;
18924
18924
  background-color: transparent;
18925
+ box-shadow: none;
18925
18926
  }
18926
18927
 
18927
18928
  // Flush popup
@@ -25084,43 +25085,75 @@ $kendo-picker-flat-hover-focus-border: null !default;
25084
25085
  // #endregion
25085
25086
  // #region @import "../tooltip/_variables.scss"; -> scss/tooltip/_variables.scss
25086
25087
  // Tooltip
25088
+
25089
+ /// The vertical padding of the Tooltip.
25090
+ /// @group tooltip
25087
25091
  $kendo-tooltip-padding-y: $tooltip-padding-y !default;
25092
+ /// The horizontal padding of the Tooltip.
25093
+ /// @group tooltip
25088
25094
  $kendo-tooltip-padding-x: $tooltip-padding-x !default;
25089
- $kendo-tooltip-max-width: $tooltip-max-width !default;
25095
+ /// The width of the border around the Tooltip.
25096
+ /// @group tooltip
25090
25097
  $kendo-tooltip-border-width: 0px !default;
25098
+ /// The border radius of the Tooltip.
25099
+ /// @group tooltip
25091
25100
  $kendo-tooltip-border-radius: $tooltip-border-radius !default;
25092
25101
 
25102
+ /// The font family of the Tooltip.
25103
+ /// @group tooltip
25093
25104
  $kendo-tooltip-font-family: $kendo-font-family !default;
25105
+ /// The font size of the Tooltip.
25106
+ /// @group tooltip
25094
25107
  $kendo-tooltip-font-size: $kendo-font-size-sm !default;
25108
+ /// The line height of the Tooltip.
25109
+ /// @group tooltip
25095
25110
  $kendo-tooltip-line-height: $kendo-line-height-md !default;
25096
25111
 
25112
+ /// The font size of the Tooltip title.
25113
+ /// @group tooltip
25097
25114
  $kendo-tooltip-title-font-size: ($kendo-tooltip-font-size * 1.25) !default;
25115
+ /// The line height of the Tooltip title.
25116
+ /// @group tooltip
25098
25117
  $kendo-tooltip-title-line-height: 1 !default;
25099
25118
 
25119
+ /// The size of the Tooltip callout.
25120
+ /// @group tooltip
25100
25121
  $kendo-tooltip-callout-size: $tooltip-arrow-height !default;
25101
25122
 
25123
+ /// The default background of the Tooltip.
25124
+ /// @group tooltip
25102
25125
  $kendo-tooltip-bg: if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ) !default;
25126
+ /// The default text color of the Tooltip.
25127
+ /// @group tooltip
25103
25128
  $kendo-tooltip-text: k-contrast-color( $kendo-tooltip-bg ) !default;
25129
+ /// The default border color of the Tooltip.
25130
+ /// @group tooltip
25104
25131
  $kendo-tooltip-border: $kendo-tooltip-bg !default;
25105
25132
 
25133
+ /// The box-shadow of the Tooltip.
25134
+ /// @group tooltip
25106
25135
  $kendo-tooltip-shadow: k-elevation(2) !default;
25107
25136
 
25108
- $kendo-tooltip-primary-bg: $kendo-color-primary !default;
25109
- $kendo-tooltip-primary-text: k-contrast-color( $kendo-tooltip-primary-bg ) !default;
25110
- $kendo-tooltip-primary-border: $kendo-tooltip-primary-bg !default;
25111
- $kendo-tooltip-info-bg: $kendo-color-info !default;
25112
- $kendo-tooltip-info-text: k-contrast-color( $kendo-tooltip-info-bg ) !default;
25113
- $kendo-tooltip-info-border: $kendo-tooltip-info-bg !default;
25114
- $kendo-tooltip-success-bg: $kendo-color-success !default;
25115
- $kendo-tooltip-success-text: k-contrast-color( $kendo-tooltip-success-bg ) !default;
25116
- $kendo-tooltip-success-border: $kendo-tooltip-success-bg !default;
25117
- $kendo-tooltip-warning-bg: $kendo-color-warning !default;
25118
- $kendo-tooltip-warning-text: k-contrast-color( $kendo-tooltip-warning-bg ) !default;
25119
- $kendo-tooltip-warning-border: $kendo-tooltip-warning-bg !default;
25120
- $kendo-tooltip-error-bg: $kendo-color-error !default;
25121
- $kendo-tooltip-error-text: k-contrast-color( $kendo-tooltip-error-bg ) !default;
25122
- $kendo-tooltip-error-border: $kendo-tooltip-error-bg !default;
25137
+ @function tooltip-theme( $colors ) {
25138
+ $_theme: ();
25139
+
25140
+ @each $name, $color in $colors {
25141
+ $_theme: k-map-merge(( $name: (
25142
+ color: k-contrast-legacy( $color ),
25143
+ background-color: $color,
25144
+ border: $color,
25145
+ )), $_theme );
25146
+ }
25147
+
25148
+ @return $_theme;
25149
+ }
25123
25150
 
25151
+ /// The theme colors map for the Tooltip.
25152
+ /// @group tooltip
25153
+ $kendo-tooltip-theme-colors: $kendo-theme-colors !default;
25154
+ /// The generated theme colors map for the Tooltip.
25155
+ /// @group tooltip
25156
+ $kendo-tooltip-theme: tooltip-theme( $kendo-tooltip-theme-colors ) !default;
25124
25157
  // #endregion
25125
25158
  // #region @import "../typography/_variables.scss"; -> scss/typography/_variables.scss
25126
25159
  // File already imported_once. Skipping output.
@@ -26003,7 +26036,6 @@ $_kendo-module-meta: (
26003
26036
  margin: 0;
26004
26037
  padding-block: $kendo-tooltip-padding-y;
26005
26038
  padding-inline: $kendo-tooltip-padding-x;
26006
- // max-width: $kendo-tooltip-max-width;
26007
26039
  border-width: $kendo-tooltip-border-width;
26008
26040
  border-style: solid;
26009
26041
  box-sizing: border-box;
@@ -26126,14 +26158,6 @@ $_kendo-module-meta: (
26126
26158
  // #region @import "./_theme.scss"; -> scss/tooltip/_theme.scss
26127
26159
  // #region @import "@progress/kendo-theme-default/scss/tooltip/_theme.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-default/scss/tooltip/_theme.scss
26128
26160
  @mixin kendo-tooltip--theme-base() {
26129
-
26130
- .k-tooltip-wrapper {
26131
- .k-tooltip {
26132
- box-shadow: $kendo-tooltip-shadow;
26133
- }
26134
- }
26135
-
26136
-
26137
26161
  // Default tooltip
26138
26162
  .k-tooltip {
26139
26163
  @include fill(
@@ -26141,67 +26165,26 @@ $_kendo-module-meta: (
26141
26165
  $kendo-tooltip-bg,
26142
26166
  $kendo-tooltip-border
26143
26167
  );
26168
+
26169
+ @include box-shadow( $kendo-tooltip-shadow );
26144
26170
 
26145
26171
  .k-callout {
26146
26172
  color: $kendo-tooltip-bg;
26147
26173
  }
26148
26174
  }
26149
26175
 
26150
-
26151
26176
  // Tooltip variants
26152
- .k-tooltip-primary {
26153
- @include fill(
26154
- $kendo-tooltip-primary-text,
26155
- $kendo-tooltip-primary-bg,
26156
- $kendo-tooltip-primary-border
26157
- );
26158
-
26159
- .k-callout {
26160
- color: $kendo-tooltip-primary-bg;
26161
- }
26162
- }
26163
- .k-tooltip-info {
26164
- @include fill(
26165
- $kendo-tooltip-info-text,
26166
- $kendo-tooltip-info-bg,
26167
- $kendo-tooltip-info-border
26168
- );
26169
-
26170
- .k-callout {
26171
- color: $kendo-tooltip-info-bg;
26172
- }
26173
- }
26174
- .k-tooltip-success {
26175
- @include fill(
26176
- $kendo-tooltip-success-text,
26177
- $kendo-tooltip-success-bg,
26178
- $kendo-tooltip-success-border
26179
- );
26180
-
26181
- .k-callout {
26182
- color: $kendo-tooltip-success-bg;
26183
- }
26184
- }
26185
- .k-tooltip-warning {
26186
- @include fill(
26187
- $kendo-tooltip-warning-text,
26188
- $kendo-tooltip-warning-bg,
26189
- $kendo-tooltip-warning-border
26190
- );
26191
-
26192
- .k-callout {
26193
- color: $kendo-tooltip-warning-bg;
26194
- }
26195
- }
26196
- .k-tooltip-error {
26197
- @include fill(
26198
- $kendo-tooltip-error-text,
26199
- $kendo-tooltip-error-bg,
26200
- $kendo-tooltip-error-border
26201
- );
26202
-
26203
- .k-callout {
26204
- color: $kendo-tooltip-error-bg;
26177
+ @each $name, $props in $kendo-tooltip-theme {
26178
+ .k-tooltip-#{$name} {
26179
+ @include fill(
26180
+ k-map-get( $props, color ),
26181
+ k-map-get( $props, background-color ),
26182
+ k-map-get( $props, border )
26183
+ );
26184
+
26185
+ .k-callout {
26186
+ color: k-map-get( $props, background-color );
26187
+ }
26205
26188
  }
26206
26189
  }
26207
26190
 
@@ -29568,19 +29551,6 @@ $kendo-slider-disabled-opacity: null !default;
29568
29551
  }
29569
29552
  }
29570
29553
 
29571
-
29572
- // Slider wrap
29573
- .k-slider-wrap {
29574
- width: 100%;
29575
- height: 100%;
29576
- display: flex;
29577
- flex-flow: inherit;
29578
- align-items: inherit;
29579
- gap: inherit;
29580
- position: relative;
29581
- }
29582
-
29583
-
29584
29554
  // New rendering
29585
29555
  .k-slider {
29586
29556
  width: min-content;
@@ -29912,15 +29882,7 @@ $kendo-slider-disabled-opacity: null !default;
29912
29882
  .k-slider kendo-resize-sensor {
29913
29883
  position: absolute;
29914
29884
  }
29915
- .k-slider-horizontal .k-slider-wrap:not(.k-slider-buttons) {
29916
- padding-inline-start: calc( #{$kendo-slider-draghandle-size} / 2 );
29917
- padding-inline-end: calc( #{$kendo-slider-draghandle-size} / 2 );
29918
- }
29919
- .k-slider-vertical .k-slider-wrap:not(.k-slider-buttons) {
29920
- padding-top: calc( #{$kendo-slider-draghandle-size} / 2 );
29921
- padding-bottom: calc( #{$kendo-slider-draghandle-size} / 2 );
29922
- }
29923
-
29885
+
29924
29886
  // Aliases
29925
29887
  .k-draghandle { @extend .k-slider-thumb !optional; }
29926
29888
  .k-draghandle-start { @extend .k-slider-thumb-start !optional; }
@@ -32455,7 +32417,6 @@ $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer,
32455
32417
  z-index: -1;
32456
32418
  }
32457
32419
 
32458
- .k-slider-wrap,
32459
32420
  .k-slider-track-wrap {
32460
32421
  z-index: 1;
32461
32422
  }
@@ -39912,6 +39873,15 @@ $kendo-card-callout-height: 1.3em !default;
39912
39873
  *::after {
39913
39874
  box-sizing: border-box;
39914
39875
  }
39876
+
39877
+ // Card avatar
39878
+ .k-card-avatar,
39879
+ .k-avatar {
39880
+ margin-right: $kendo-card-avatar-spacing;
39881
+ width: $kendo-card-avatar-size;
39882
+ height: $kendo-card-avatar-size;
39883
+ flex-basis: $kendo-card-avatar-size;
39884
+ }
39915
39885
  }
39916
39886
  .k-card > .k-card-inner {
39917
39887
  @include border-radius( $kendo-card-inner-border-radius );
@@ -39921,11 +39891,9 @@ $kendo-card-callout-height: 1.3em !default;
39921
39891
  position: relative;
39922
39892
  }
39923
39893
 
39924
-
39925
39894
  // Card orientation
39926
- .k-card-horizontal { flex-flow: row nowrap; } // stylelint-disable-line block-opening-brace-space-before
39927
- .k-card-vertical { flex-flow: column nowrap; } // stylelint-disable-line block-opening-brace-space-before
39928
-
39895
+ .k-card-horizontal { flex-flow: row nowrap; } // stylelint-disable-line block-opening-brace-space-before
39896
+ .k-card-vertical { flex-flow: column nowrap; } // stylelint-disable-line block-opening-brace-space-before
39929
39897
 
39930
39898
  // Header
39931
39899
  .k-card-header {
@@ -39982,30 +39950,13 @@ $kendo-card-callout-height: 1.3em !default;
39982
39950
  }
39983
39951
  }
39984
39952
 
39985
-
39986
- // Card avatar
39987
- .k-card-avatar,
39988
- .k-card .k-avatar {
39989
- margin-right: $kendo-card-avatar-spacing;
39990
- width: $kendo-card-avatar-size;
39991
- height: $kendo-card-avatar-size;
39992
- flex-basis: $kendo-card-avatar-size;
39993
- }
39994
-
39995
-
39996
- // Card image
39997
- .k-card-image,
39953
+ // Card media
39998
39954
  .k-card-media {
39999
39955
  border: 0;
40000
39956
  max-width: 100%;
40001
39957
  flex-shrink: 0;
40002
39958
  overflow: hidden;
40003
39959
 
40004
- > img {
40005
- border: 0;
40006
- max-width: 100%;
40007
- }
40008
-
40009
39960
  .k-card-horizontal & {
40010
39961
  max-width: $kendo-card-img-max-width;
40011
39962
  object-fit: cover;
@@ -40049,22 +40000,23 @@ $kendo-card-callout-height: 1.3em !default;
40049
40000
  flex: 0 0 auto;
40050
40001
  align-self: stretch;
40051
40002
  }
40052
- .k-card-separator.k-separator-vertical,
40053
- .k-card-horizontal > .k-card-separator {
40054
- border-left-width: 1px;
40055
- }
40003
+
40056
40004
  .k-card-separator.k-separator-horizontal,
40057
40005
  .k-card-vertical > .k-card-separator {
40058
40006
  border-top-width: 1px;
40059
40007
  }
40060
40008
 
40009
+ .k-card-separator.k-separator-vertical,
40010
+ .k-card-horizontal > .k-card-separator {
40011
+ border-left-width: 1px;
40012
+ }
40013
+
40061
40014
  .k-card > .k-hr {
40062
40015
  margin: 0;
40063
40016
  flex: 0 0 auto;
40064
40017
  border-color: inherit;
40065
40018
  }
40066
40019
 
40067
-
40068
40020
  // Card actions
40069
40021
  .k-card-actions {
40070
40022
  padding-block: $kendo-card-actions-padding-y;
@@ -40079,33 +40031,6 @@ $kendo-card-callout-height: 1.3em !default;
40079
40031
  gap: $kendo-card-actions-gap;
40080
40032
  }
40081
40033
 
40082
-
40083
- // Actions align
40084
- .k-card-actions-start { justify-content: flex-start; } // stylelint-disable-line block-opening-brace-space-before
40085
- .k-card-actions-end { justify-content: flex-end; } // stylelint-disable-line block-opening-brace-space-before
40086
- .k-card-actions-center { justify-content: center; } // stylelint-disable-line block-opening-brace-space-before
40087
-
40088
-
40089
- // Actions orientation
40090
- .k-card-actions-horizontal { flex-flow: row nowrap; } // stylelint-disable-line block-opening-brace-space-before
40091
- .k-card-actions-vertical { flex-flow: column nowrap; } // stylelint-disable-line block-opening-brace-space-before
40092
-
40093
-
40094
- // Stretched actions
40095
- .k-card-actions-stretched > * {
40096
- flex: 1 1 auto;
40097
- }
40098
-
40099
-
40100
- // Card action
40101
- .k-card-action {
40102
- border-width: 0;
40103
- border-style: solid;
40104
- border-color: inherit;
40105
- display: inline-flex;
40106
- }
40107
-
40108
-
40109
40034
  // List
40110
40035
  .k-card-list {
40111
40036
  display: flex;
@@ -40197,9 +40122,6 @@ $kendo-card-callout-height: 1.3em !default;
40197
40122
  }
40198
40123
  }
40199
40124
 
40200
-
40201
-
40202
-
40203
40125
  // Card with callout
40204
40126
  .k-card-with-callout {
40205
40127
  overflow: visible;
@@ -47636,6 +47558,7 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
47636
47558
  $_selection-aggregates-padding-x: k-map-get( $size-props, selection-aggregates-padding-x );
47637
47559
  $_selection-aggregates-padding-y: k-map-get( $size-props, selection-aggregates-padding-y );
47638
47560
 
47561
+ .k-grid .k-grid-#{$size},
47639
47562
  .k-grid-#{$size} {
47640
47563
 
47641
47564
  .k-table-th {