@progress/kendo-theme-bootstrap 4.42.1-dev.1 → 4.42.1-dev.2

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.css CHANGED
@@ -11606,6 +11606,7 @@ kendo-badge-container {
11606
11606
  font-size: 16px;
11607
11607
  }
11608
11608
 
11609
+ .k-selection-multiple .k-chip.k-state-selected .k-selected-icon-wrapper,
11609
11610
  .k-selection-multiple .k-chip.k-selected .k-selected-icon-wrapper {
11610
11611
  width: 24px;
11611
11612
  visibility: visible;
@@ -11622,6 +11623,7 @@ kendo-badge-container {
11622
11623
  transition: width .2s, opacity .2s;
11623
11624
  }
11624
11625
 
11626
+ .k-selection-multiple :not(.k-chip-has-icon).k-state-selected .k-selected-icon-wrapper,
11625
11627
  .k-selection-multiple :not(.k-chip-has-icon).k-selected .k-selected-icon-wrapper {
11626
11628
  opacity: 1;
11627
11629
  }
@@ -11728,6 +11730,7 @@ kendo-badge-container {
11728
11730
  right: 0px;
11729
11731
  }
11730
11732
 
11733
+ .k-selection-multiple .k-chip-has-icon.k-state-selected .k-selected-icon-wrapper,
11731
11734
  .k-selection-multiple .k-chip-has-icon.k-selected .k-selected-icon-wrapper {
11732
11735
  color: #ffffff;
11733
11736
  background-color: rgba(0, 0, 0, 0.36);
package/dist/all.scss CHANGED
@@ -914,11 +914,17 @@ $popover-header-padding-y: $spacer !default;
914
914
  @return red($value), green($value), blue($value);
915
915
  }
916
916
 
917
+ // stylelint-disable scss/dollar-variable-pattern
917
918
  @function rgba-css-var($identifier, $target) {
918
- @return rgba(var(--#{$variable-prefix}#{$identifier}-rgb), var(--#{$variable-prefix}#{$target}-opacity));
919
+ @if $identifier == "body" and $target == "bg" {
920
+ @return rgba(var(--#{$variable-prefix}#{$identifier}-bg-rgb), var(--#{$variable-prefix}#{$target}-opacity));
921
+ } @if $identifier == "body" and $target == "text" {
922
+ @return rgba(var(--#{$variable-prefix}#{$identifier}-color-rgb), var(--#{$variable-prefix}#{$target}-opacity));
923
+ } @else {
924
+ @return rgba(var(--#{$variable-prefix}#{$identifier}-rgb), var(--#{$variable-prefix}#{$target}-opacity));
925
+ }
919
926
  }
920
927
 
921
- // stylelint-disable scss/dollar-variable-pattern
922
928
  @function map-loop($map, $func, $args...) {
923
929
  $_map: ();
924
930
 
@@ -1585,23 +1591,33 @@ $body-text-align: null !default;
1585
1591
  //
1586
1592
  // Extends the default `$theme-colors` maps to help create our utilities.
1587
1593
 
1594
+ // Come v6, we'll de-dupe these variables. Until then, for backward compatibility, we keep them to reassign.
1588
1595
  // scss-docs-start utilities-colors
1589
- $utilities-colors: map-merge(
1590
- $theme-colors-rgb,
1596
+ $utilities-colors: $theme-colors-rgb !default;
1597
+ // scss-docs-end utilities-colors
1598
+
1599
+ // scss-docs-start utilities-text-colors
1600
+ $utilities-text: map-merge(
1601
+ $utilities-colors,
1591
1602
  (
1592
1603
  "black": to-rgb($black),
1593
1604
  "white": to-rgb($white),
1594
- "body": to-rgb($body-color)
1605
+ "body": to-rgb($body-color)
1595
1606
  )
1596
1607
  ) !default;
1597
- // scss-docs-end utilities-colors
1598
-
1599
- // scss-docs-start utilities-text-colors
1600
- $utilities-text-colors: map-loop($utilities-colors, rgba-css-var, "$key", "text") !default;
1608
+ $utilities-text-colors: map-loop($utilities-text, rgba-css-var, "$key", "text") !default;
1601
1609
  // scss-docs-end utilities-text-colors
1602
1610
 
1603
1611
  // scss-docs-start utilities-bg-colors
1604
- $utilities-bg-colors: map-loop($utilities-colors, rgba-css-var, "$key", "bg") !default;
1612
+ $utilities-bg: map-merge(
1613
+ $utilities-colors,
1614
+ (
1615
+ "black": to-rgb($black),
1616
+ "white": to-rgb($white),
1617
+ "body": to-rgb($body-bg)
1618
+ )
1619
+ ) !default;
1620
+ $utilities-bg-colors: map-loop($utilities-bg, rgba-css-var, "$key", "bg") !default;
1605
1621
  // scss-docs-end utilities-bg-colors
1606
1622
 
1607
1623
  // Links
@@ -2090,7 +2106,7 @@ $form-check-inline-margin-end: 1rem !default;
2090
2106
  // scss-docs-end form-check-variables
2091
2107
 
2092
2108
  // scss-docs-start form-switch-variables
2093
- $form-switch-color: rgba(0, 0, 0, .25) !default;
2109
+ $form-switch-color: rgba($black, .25) !default;
2094
2110
  $form-switch-width: 2em !default;
2095
2111
  $form-switch-padding-start: $form-switch-width + .5em !default;
2096
2112
  $form-switch-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#{$form-switch-color}'/></svg>") !default;
@@ -2138,7 +2154,7 @@ $form-select-feedback-icon-size: $input-height-inner-half $input-height-i
2138
2154
 
2139
2155
  $form-select-border-width: $input-border-width !default;
2140
2156
  $form-select-border-color: $input-border-color !default;
2141
- $form-select-border-radius: $border-radius !default;
2157
+ $form-select-border-radius: $input-border-radius !default;
2142
2158
  $form-select-box-shadow: $box-shadow-inset !default;
2143
2159
 
2144
2160
  $form-select-focus-border-color: $input-focus-border-color !default;
@@ -2148,10 +2164,12 @@ $form-select-focus-box-shadow: 0 0 0 $form-select-focus-width $input-btn-focu
2148
2164
  $form-select-padding-y-sm: $input-padding-y-sm !default;
2149
2165
  $form-select-padding-x-sm: $input-padding-x-sm !default;
2150
2166
  $form-select-font-size-sm: $input-font-size-sm !default;
2167
+ $form-select-border-radius-sm: $input-border-radius-sm !default;
2151
2168
 
2152
2169
  $form-select-padding-y-lg: $input-padding-y-lg !default;
2153
2170
  $form-select-padding-x-lg: $input-padding-x-lg !default;
2154
2171
  $form-select-font-size-lg: $input-font-size-lg !default;
2172
+ $form-select-border-radius-lg: $input-border-radius-lg !default;
2155
2173
 
2156
2174
  $form-select-transition: $input-transition !default;
2157
2175
  // scss-docs-end form-select-variables
@@ -2333,7 +2351,7 @@ $dropdown-divider-margin-y: $spacer * .5 !default;
2333
2351
  $dropdown-box-shadow: $box-shadow !default;
2334
2352
 
2335
2353
  $dropdown-link-color: $gray-900 !default;
2336
- $dropdown-link-hover-color: shade-color($gray-900, 10%) !default;
2354
+ $dropdown-link-hover-color: shade-color($dropdown-link-color, 10%) !default;
2337
2355
  $dropdown-link-hover-bg: $gray-200 !default;
2338
2356
 
2339
2357
  $dropdown-link-active-color: $component-active-color !default;
@@ -2538,14 +2556,14 @@ $toast-font-size: .875rem !default;
2538
2556
  $toast-color: null !default;
2539
2557
  $toast-background-color: rgba($white, .85) !default;
2540
2558
  $toast-border-width: 1px !default;
2541
- $toast-border-color: rgba(0, 0, 0, .1) !default;
2559
+ $toast-border-color: rgba($black, .1) !default;
2542
2560
  $toast-border-radius: $border-radius !default;
2543
2561
  $toast-box-shadow: $box-shadow !default;
2544
2562
  $toast-spacing: $container-padding-x !default;
2545
2563
 
2546
2564
  $toast-header-color: $gray-600 !default;
2547
2565
  $toast-header-background-color: rgba($white, .85) !default;
2548
- $toast-header-border-color: rgba(0, 0, 0, .05) !default;
2566
+ $toast-header-border-color: rgba($black, .05) !default;
2549
2567
  // scss-docs-end toast-variables
2550
2568
 
2551
2569
 
@@ -9076,6 +9094,7 @@ $chip-error-focus-shadow: 0 0 0 3px rgba( $error, .16 ) !default;
9076
9094
  font-size: $chip-selected-icon-font-size;
9077
9095
  }
9078
9096
 
9097
+ .k-chip.k-state-selected .k-selected-icon-wrapper,
9079
9098
  .k-chip.k-selected .k-selected-icon-wrapper {
9080
9099
  width: $chip-selected-icon-size;
9081
9100
  visibility: visible;
@@ -9095,6 +9114,7 @@ $chip-error-focus-shadow: 0 0 0 3px rgba( $error, .16 ) !default;
9095
9114
  transition: width .2s, opacity .2s;
9096
9115
  }
9097
9116
 
9117
+ &.k-state-selected .k-selected-icon-wrapper,
9098
9118
  &.k-selected .k-selected-icon-wrapper {
9099
9119
  opacity: 1;
9100
9120
  }
@@ -9218,6 +9238,7 @@ $chip-error-focus-shadow: 0 0 0 3px rgba( $error, .16 ) !default;
9218
9238
  // #region @import "~@progress/kendo-theme-default/scss/chip/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/chip/_theme.scss
9219
9239
  @include exports("chip/theme") {
9220
9240
 
9241
+ .k-selection-multiple .k-chip-has-icon.k-state-selected .k-selected-icon-wrapper,
9221
9242
  .k-selection-multiple .k-chip-has-icon.k-selected .k-selected-icon-wrapper {
9222
9243
  @include fill(
9223
9244
  $color: $chip-multiple-selected-icon-text,
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-theme-default",
3
3
  "description": "SASS resources for the default Kendo UI theme",
4
- "version": "4.42.1-dev.1",
4
+ "version": "4.42.1-dev.2",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -47,5 +47,5 @@
47
47
  "dart:flat": "gulp dart:flat",
48
48
  "prepublishOnly": "echo 'no prebublish for default theme'"
49
49
  },
50
- "gitHead": "0c0e482d04f4474619507a96d33f9e127c116cd1"
50
+ "gitHead": "7594d845144b5289cc2484b488f2bc9418387f12"
51
51
  }
@@ -35,6 +35,7 @@
35
35
  font-size: $chip-selected-icon-font-size;
36
36
  }
37
37
 
38
+ .k-chip.k-state-selected .k-selected-icon-wrapper,
38
39
  .k-chip.k-selected .k-selected-icon-wrapper {
39
40
  width: $chip-selected-icon-size;
40
41
  visibility: visible;
@@ -54,6 +55,7 @@
54
55
  transition: width .2s, opacity .2s;
55
56
  }
56
57
 
58
+ &.k-state-selected .k-selected-icon-wrapper,
57
59
  &.k-selected .k-selected-icon-wrapper {
58
60
  opacity: 1;
59
61
  }
@@ -1,5 +1,6 @@
1
1
  @include exports("chip/theme") {
2
2
 
3
+ .k-selection-multiple .k-chip-has-icon.k-state-selected .k-selected-icon-wrapper,
3
4
  .k-selection-multiple .k-chip-has-icon.k-selected .k-selected-icon-wrapper {
4
5
  @include fill(
5
6
  $color: $chip-multiple-selected-icon-text,
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bootstrap",
3
3
  "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
4
- "version": "5.1.0",
4
+ "version": "5.1.3",
5
5
  "config": {
6
6
  "version_short": "5.1"
7
7
  },
@@ -58,12 +58,13 @@
58
58
  "docs-build": "hugo --cleanDestinationDir",
59
59
  "docs-compile": "npm run docs-build",
60
60
  "docs-linkinator": "linkinator _site --recurse --skip \"^(?!http://localhost)\" --verbosity error",
61
+ "docs-spellcheck": "cspell \"site/**/*.md\" --no-progress",
61
62
  "docs-vnu": "node build/vnu-jar.js",
62
- "docs-lint": "npm-run-all --aggregate-output --parallel docs-vnu docs-linkinator",
63
+ "docs-lint": "npm-run-all --aggregate-output --parallel docs-vnu docs-linkinator docs-spellcheck",
63
64
  "docs-serve": "hugo server --port 9001 --disableFastRender",
64
65
  "docs-serve-only": "npx sirv-cli _site --port 9001",
65
66
  "lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
66
- "update-deps": "ncu -u -x globby,karma-browserstack-launcher,terser && npm update && echo Manually update site/assets/js/vendor",
67
+ "update-deps": "ncu -u -x globby,karma-browserstack-launcher && npm update && echo Manually update site/assets/js/vendor",
67
68
  "release": "npm-run-all dist release-sri docs-build release-zip*",
68
69
  "release-sri": "node build/generate-sri.js",
69
70
  "release-version": "node build/change-version.js",
@@ -97,30 +98,31 @@
97
98
  },
98
99
  "dependencies": {},
99
100
  "peerDependencies": {
100
- "@popperjs/core": "^2.9.3"
101
+ "@popperjs/core": "^2.10.2"
101
102
  },
102
103
  "devDependencies": {
103
- "@babel/cli": "^7.14.8",
104
- "@babel/core": "^7.14.8",
105
- "@babel/preset-env": "^7.14.9",
106
- "@popperjs/core": "^2.9.3",
104
+ "@babel/cli": "^7.15.7",
105
+ "@babel/core": "^7.15.5",
106
+ "@babel/preset-env": "^7.15.6",
107
+ "@popperjs/core": "^2.10.2",
107
108
  "@rollup/plugin-babel": "^5.3.0",
108
- "@rollup/plugin-commonjs": "^20.0.0",
109
- "@rollup/plugin-node-resolve": "^13.0.4",
109
+ "@rollup/plugin-commonjs": "^21.0.0",
110
+ "@rollup/plugin-node-resolve": "^13.0.5",
110
111
  "@rollup/plugin-replace": "^3.0.0",
111
- "autoprefixer": "^10.2.6",
112
+ "autoprefixer": "^10.3.6",
112
113
  "bundlewatch": "^0.3.2",
113
- "clean-css-cli": "^5.3.2",
114
+ "clean-css-cli": "^5.4.1",
114
115
  "cross-env": "^7.0.3",
116
+ "cspell": "^5.12.0",
115
117
  "eslint": "^7.32.0",
116
- "eslint-config-xo": "^0.37.0",
117
- "eslint-plugin-import": "^2.23.4",
118
- "eslint-plugin-unicorn": "^34.0.1",
118
+ "eslint-config-xo": "^0.39.0",
119
+ "eslint-plugin-import": "^2.24.2",
120
+ "eslint-plugin-unicorn": "^36.0.0",
119
121
  "find-unused-sass-variables": "^3.1.0",
120
- "glob": "^7.1.7",
122
+ "glob": "^7.2.0",
121
123
  "globby": "^11.0.4",
122
124
  "hammer-simulator": "0.0.1",
123
- "hugo-bin": "^0.75.0",
125
+ "hugo-bin": "^0.76.1",
124
126
  "ip": "^1.1.5",
125
127
  "jquery": "^3.6.0",
126
128
  "karma": "^6.3.4",
@@ -134,19 +136,19 @@
134
136
  "karma-rollup-preprocessor": "^7.0.7",
135
137
  "linkinator": "^2.14.0",
136
138
  "lockfile-lint": "^4.6.2",
137
- "nodemon": "^2.0.12",
139
+ "nodemon": "^2.0.13",
138
140
  "npm-run-all": "^4.1.5",
139
- "postcss": "^8.3.6",
140
- "postcss-cli": "^8.3.1",
141
- "rollup": "^2.55.1",
141
+ "postcss": "^8.3.8",
142
+ "postcss-cli": "^9.0.1",
143
+ "rollup": "^2.58.0",
142
144
  "rollup-plugin-istanbul": "^3.0.0",
143
145
  "rtlcss": "^3.3.0",
144
- "sass": "^1.37.5",
146
+ "sass": "^1.42.1",
145
147
  "shelljs": "^0.8.4",
146
148
  "stylelint": "^13.13.1",
147
- "stylelint-config-twbs-bootstrap": "^2.2.3",
148
- "terser": "5.1.0",
149
- "vnu-jar": "21.6.11"
149
+ "stylelint-config-twbs-bootstrap": "^2.2.4",
150
+ "terser": "^5.9.0",
151
+ "vnu-jar": "21.9.2"
150
152
  },
151
153
  "files": [
152
154
  "dist/{css,js}/*.{css,js,map}",
@@ -171,11 +173,11 @@
171
173
  },
172
174
  "dependencies": {},
173
175
  "peerDependencies": {
174
- "@popperjs/core": "^2.9.3"
176
+ "@popperjs/core": "^2.10.2"
175
177
  }
176
178
  }
177
179
 
178
- ,"_resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.1.0.tgz"
179
- ,"_integrity": "sha512-bs74WNI9BgBo3cEovmdMHikSKoXnDgA6VQjJ7TyTotU6L7d41ZyCEEelPwkYEzsG/Zjv3ie9IE3EMAje0W9Xew=="
180
- ,"_from": "bootstrap@5.1.0"
180
+ ,"_resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.1.3.tgz"
181
+ ,"_integrity": "sha512-fcQztozJ8jToQWXxVuEyXWW+dSo8AiXWKwiSSrKWsRB/Qt+Ewwza+JWoLKiTuQLaEPhdNAJ7+Dosc9DOIqNy7Q=="
182
+ ,"_from": "bootstrap@5.1.3"
181
183
  }
@@ -37,11 +37,17 @@
37
37
  @return red($value), green($value), blue($value);
38
38
  }
39
39
 
40
+ // stylelint-disable scss/dollar-variable-pattern
40
41
  @function rgba-css-var($identifier, $target) {
41
- @return rgba(var(--#{$variable-prefix}#{$identifier}-rgb), var(--#{$variable-prefix}#{$target}-opacity));
42
+ @if $identifier == "body" and $target == "bg" {
43
+ @return rgba(var(--#{$variable-prefix}#{$identifier}-bg-rgb), var(--#{$variable-prefix}#{$target}-opacity));
44
+ } @if $identifier == "body" and $target == "text" {
45
+ @return rgba(var(--#{$variable-prefix}#{$identifier}-color-rgb), var(--#{$variable-prefix}#{$target}-opacity));
46
+ } @else {
47
+ @return rgba(var(--#{$variable-prefix}#{$identifier}-rgb), var(--#{$variable-prefix}#{$target}-opacity));
48
+ }
42
49
  }
43
50
 
44
- // stylelint-disable scss/dollar-variable-pattern
45
51
  @function map-loop($map, $func, $args...) {
46
52
  $_map: ();
47
53
 
@@ -27,7 +27,7 @@
27
27
 
28
28
  :root {
29
29
  @if $font-size-root != null {
30
- font-size: var(--#{$variable-prefix}-root-font-size);
30
+ font-size: var(--#{$variable-prefix}root-font-size);
31
31
  }
32
32
 
33
33
  @if $enable-smooth-scroll {
@@ -23,7 +23,8 @@
23
23
 
24
24
  --#{$variable-prefix}white-rgb: #{to-rgb($white)};
25
25
  --#{$variable-prefix}black-rgb: #{to-rgb($black)};
26
- --#{$variable-prefix}body-rgb: #{to-rgb($body-color)};
26
+ --#{$variable-prefix}body-color-rgb: #{to-rgb($body-color)};
27
+ --#{$variable-prefix}body-bg-rgb: #{to-rgb($body-bg)};
27
28
 
28
29
  // Fonts
29
30
 
@@ -39,8 +39,8 @@
39
39
  }
40
40
 
41
41
  // Highlight border color between thead, tbody and tfoot.
42
- > :not(:last-child) > :last-child > * {
43
- border-bottom-color: $table-group-separator-color;
42
+ > :not(:first-child) {
43
+ border-top: (2 * $table-border-width) solid $table-group-separator-color;
44
44
  }
45
45
  }
46
46
 
@@ -91,6 +91,10 @@
91
91
  > :not(caption) > * > * {
92
92
  border-bottom-width: 0;
93
93
  }
94
+
95
+ > :not(:first-child) {
96
+ border-top-width: 0;
97
+ }
94
98
  }
95
99
 
96
100
  // Zebra-striping
@@ -98,7 +102,7 @@
98
102
  // Default zebra-stripe styles (alternating gray and transparent backgrounds)
99
103
 
100
104
  .table-striped {
101
- > tbody > tr:nth-of-type(#{$table-striped-order}) {
105
+ > tbody > tr:nth-of-type(#{$table-striped-order}) > * {
102
106
  --#{$variable-prefix}table-accent-bg: var(--#{$variable-prefix}table-striped-bg);
103
107
  color: var(--#{$variable-prefix}table-striped-color);
104
108
  }
@@ -118,7 +122,7 @@
118
122
  // Placed here since it has to come after the potential zebra striping
119
123
 
120
124
  .table-hover {
121
- > tbody > tr:hover {
125
+ > tbody > tr:hover > * {
122
126
  --#{$variable-prefix}table-accent-bg: var(--#{$variable-prefix}table-hover-bg);
123
127
  color: var(--#{$variable-prefix}table-hover-color);
124
128
  }
@@ -409,23 +409,33 @@ $body-text-align: null !default;
409
409
  //
410
410
  // Extends the default `$theme-colors` maps to help create our utilities.
411
411
 
412
+ // Come v6, we'll de-dupe these variables. Until then, for backward compatibility, we keep them to reassign.
412
413
  // scss-docs-start utilities-colors
413
- $utilities-colors: map-merge(
414
- $theme-colors-rgb,
414
+ $utilities-colors: $theme-colors-rgb !default;
415
+ // scss-docs-end utilities-colors
416
+
417
+ // scss-docs-start utilities-text-colors
418
+ $utilities-text: map-merge(
419
+ $utilities-colors,
415
420
  (
416
421
  "black": to-rgb($black),
417
422
  "white": to-rgb($white),
418
- "body": to-rgb($body-color)
423
+ "body": to-rgb($body-color)
419
424
  )
420
425
  ) !default;
421
- // scss-docs-end utilities-colors
422
-
423
- // scss-docs-start utilities-text-colors
424
- $utilities-text-colors: map-loop($utilities-colors, rgba-css-var, "$key", "text") !default;
426
+ $utilities-text-colors: map-loop($utilities-text, rgba-css-var, "$key", "text") !default;
425
427
  // scss-docs-end utilities-text-colors
426
428
 
427
429
  // scss-docs-start utilities-bg-colors
428
- $utilities-bg-colors: map-loop($utilities-colors, rgba-css-var, "$key", "bg") !default;
430
+ $utilities-bg: map-merge(
431
+ $utilities-colors,
432
+ (
433
+ "black": to-rgb($black),
434
+ "white": to-rgb($white),
435
+ "body": to-rgb($body-bg)
436
+ )
437
+ ) !default;
438
+ $utilities-bg-colors: map-loop($utilities-bg, rgba-css-var, "$key", "bg") !default;
429
439
  // scss-docs-end utilities-bg-colors
430
440
 
431
441
  // Links
@@ -914,7 +924,7 @@ $form-check-inline-margin-end: 1rem !default;
914
924
  // scss-docs-end form-check-variables
915
925
 
916
926
  // scss-docs-start form-switch-variables
917
- $form-switch-color: rgba(0, 0, 0, .25) !default;
927
+ $form-switch-color: rgba($black, .25) !default;
918
928
  $form-switch-width: 2em !default;
919
929
  $form-switch-padding-start: $form-switch-width + .5em !default;
920
930
  $form-switch-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#{$form-switch-color}'/></svg>") !default;
@@ -962,7 +972,7 @@ $form-select-feedback-icon-size: $input-height-inner-half $input-height-i
962
972
 
963
973
  $form-select-border-width: $input-border-width !default;
964
974
  $form-select-border-color: $input-border-color !default;
965
- $form-select-border-radius: $border-radius !default;
975
+ $form-select-border-radius: $input-border-radius !default;
966
976
  $form-select-box-shadow: $box-shadow-inset !default;
967
977
 
968
978
  $form-select-focus-border-color: $input-focus-border-color !default;
@@ -972,10 +982,12 @@ $form-select-focus-box-shadow: 0 0 0 $form-select-focus-width $input-btn-focu
972
982
  $form-select-padding-y-sm: $input-padding-y-sm !default;
973
983
  $form-select-padding-x-sm: $input-padding-x-sm !default;
974
984
  $form-select-font-size-sm: $input-font-size-sm !default;
985
+ $form-select-border-radius-sm: $input-border-radius-sm !default;
975
986
 
976
987
  $form-select-padding-y-lg: $input-padding-y-lg !default;
977
988
  $form-select-padding-x-lg: $input-padding-x-lg !default;
978
989
  $form-select-font-size-lg: $input-font-size-lg !default;
990
+ $form-select-border-radius-lg: $input-border-radius-lg !default;
979
991
 
980
992
  $form-select-transition: $input-transition !default;
981
993
  // scss-docs-end form-select-variables
@@ -1157,7 +1169,7 @@ $dropdown-divider-margin-y: $spacer * .5 !default;
1157
1169
  $dropdown-box-shadow: $box-shadow !default;
1158
1170
 
1159
1171
  $dropdown-link-color: $gray-900 !default;
1160
- $dropdown-link-hover-color: shade-color($gray-900, 10%) !default;
1172
+ $dropdown-link-hover-color: shade-color($dropdown-link-color, 10%) !default;
1161
1173
  $dropdown-link-hover-bg: $gray-200 !default;
1162
1174
 
1163
1175
  $dropdown-link-active-color: $component-active-color !default;
@@ -1362,14 +1374,14 @@ $toast-font-size: .875rem !default;
1362
1374
  $toast-color: null !default;
1363
1375
  $toast-background-color: rgba($white, .85) !default;
1364
1376
  $toast-border-width: 1px !default;
1365
- $toast-border-color: rgba(0, 0, 0, .1) !default;
1377
+ $toast-border-color: rgba($black, .1) !default;
1366
1378
  $toast-border-radius: $border-radius !default;
1367
1379
  $toast-box-shadow: $box-shadow !default;
1368
1380
  $toast-spacing: $container-padding-x !default;
1369
1381
 
1370
1382
  $toast-header-color: $gray-600 !default;
1371
1383
  $toast-header-background-color: rgba($white, .85) !default;
1372
- $toast-header-border-color: rgba(0, 0, 0, .05) !default;
1384
+ $toast-header-border-color: rgba($black, .05) !default;
1373
1385
  // scss-docs-end toast-variables
1374
1386
 
1375
1387
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Bootstrap Grid v5.1.0 (https://getbootstrap.com/)
2
+ * Bootstrap Grid v5.1.3 (https://getbootstrap.com/)
3
3
  * Copyright 2011-2021 The Bootstrap Authors
4
4
  * Copyright 2011-2021 Twitter, Inc.
5
5
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
@@ -18,6 +18,8 @@ $include-column-box-sizing: true !default;
18
18
 
19
19
  @import "vendor/rfs";
20
20
 
21
+ @import "root";
22
+
21
23
  @import "containers";
22
24
  @import "grid";
23
25
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Bootstrap Reboot v5.1.0 (https://getbootstrap.com/)
2
+ * Bootstrap Reboot v5.1.3 (https://getbootstrap.com/)
3
3
  * Copyright 2011-2021 The Bootstrap Authors
4
4
  * Copyright 2011-2021 Twitter, Inc.
5
5
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
@@ -8,8 +8,6 @@
8
8
 
9
9
  @import "functions";
10
10
  @import "variables";
11
- // Prevent the usage of custom properties since we don't add them to `:root` in reboot
12
- $font-family-base: $font-family-sans-serif; // stylelint-disable-line scss/dollar-variable-default
13
- $font-family-code: $font-family-monospace; // stylelint-disable-line scss/dollar-variable-default
14
11
  @import "mixins";
12
+ @import "root";
15
13
  @import "reboot";
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Bootstrap Utilities v5.1.0 (https://getbootstrap.com/)
2
+ * Bootstrap Utilities v5.1.3 (https://getbootstrap.com/)
3
3
  * Copyright 2011-2021 The Bootstrap Authors
4
4
  * Copyright 2011-2021 Twitter, Inc.
5
5
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Bootstrap v5.1.0 (https://getbootstrap.com/)
2
+ * Bootstrap v5.1.3 (https://getbootstrap.com/)
3
3
  * Copyright 2011-2021 The Bootstrap Authors
4
4
  * Copyright 2011-2021 Twitter, Inc.
5
5
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
@@ -60,6 +60,7 @@
60
60
  padding-bottom: $form-select-padding-y-sm;
61
61
  padding-left: $form-select-padding-x-sm;
62
62
  @include font-size($form-select-font-size-sm);
63
+ @include border-radius($form-select-border-radius-sm);
63
64
  }
64
65
 
65
66
  .form-select-lg {
@@ -67,4 +68,5 @@
67
68
  padding-bottom: $form-select-padding-y-lg;
68
69
  padding-left: $form-select-padding-x-lg;
69
70
  @include font-size($form-select-font-size-lg);
71
+ @include border-radius($form-select-border-radius-lg);
70
72
  }
@@ -7,9 +7,10 @@
7
7
  --#{$variable-prefix}gutter-y: 0;
8
8
  display: flex;
9
9
  flex-wrap: wrap;
10
- margin-top: calc(var(--#{$variable-prefix}gutter-y) * -1); // stylelint-disable-line function-disallowed-list
11
- margin-right: calc(var(--#{$variable-prefix}gutter-x) * -.5); // stylelint-disable-line function-disallowed-list
12
- margin-left: calc(var(--#{$variable-prefix}gutter-x) * -.5); // stylelint-disable-line function-disallowed-list
10
+ // TODO: Revisit calc order after https://github.com/react-bootstrap/react-bootstrap/issues/6039 is fixed
11
+ margin-top: calc(-1 * var(--#{$variable-prefix}gutter-y)); // stylelint-disable-line function-disallowed-list
12
+ margin-right: calc(-.5 * var(--#{$variable-prefix}gutter-x)); // stylelint-disable-line function-disallowed-list
13
+ margin-left: calc(-.5 * var(--#{$variable-prefix}gutter-x)); // stylelint-disable-line function-disallowed-list
13
14
  }
14
15
 
15
16
  @mixin make-col-ready($gutter: $grid-gutter-width) {
@@ -3,7 +3,7 @@
3
3
  // Hide content visually while keeping it accessible to assistive technologies
4
4
  //
5
5
  // See: https://www.a11yproject.com/posts/2013-01-11-how-to-hide-content/
6
- // See: https://hugogiraudel.com/2016/10/13/css-hide-and-seek/
6
+ // See: https://kittygiraudel.com/2016/10/13/css-hide-and-seek/
7
7
 
8
8
  @mixin visually-hidden() {
9
9
  position: absolute !important;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-theme-bootstrap",
3
3
  "description": "Bootstrap theme for Kendo UI",
4
- "version": "4.42.1-dev.1",
4
+ "version": "4.42.1-dev.2",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -50,8 +50,8 @@
50
50
  "postpublish": "rm -rf modules && git checkout scss"
51
51
  },
52
52
  "dependencies": {
53
- "@progress/kendo-theme-default": "^4.42.1-dev.1",
53
+ "@progress/kendo-theme-default": "^4.42.1-dev.2",
54
54
  "bootstrap": "^5.1.0"
55
55
  },
56
- "gitHead": "0c0e482d04f4474619507a96d33f9e127c116cd1"
56
+ "gitHead": "7594d845144b5289cc2484b488f2bc9418387f12"
57
57
  }