@progress/kendo-theme-classic 7.1.0-dev.9 → 7.1.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.css CHANGED
@@ -32216,17 +32216,22 @@ textarea.k-input-inner {
32216
32216
  margin: 0;
32217
32217
  border-style: solid;
32218
32218
  border-color: inherit;
32219
- height: auto;
32220
- align-self: stretch;
32219
+ border-width: 0 0 0 1px;
32220
+ height: 16px;
32221
+ align-self: center;
32221
32222
  }
32222
32223
 
32223
32224
  .k-input-separator-horizontal {
32225
+ height: auto;
32224
32226
  margin-inline: 4px;
32227
+ align-self: stretch;
32225
32228
  border-width: 1px 0 0;
32226
32229
  }
32227
32230
 
32228
32231
  .k-input-separator-vertical {
32232
+ height: auto;
32229
32233
  margin-block: 4px;
32234
+ align-self: stretch;
32230
32235
  border-width: 0 0 0 1px;
32231
32236
  }
32232
32237
 
@@ -32974,8 +32979,8 @@ select.k-picker-lg {
32974
32979
  white-space: nowrap;
32975
32980
  text-overflow: ellipsis;
32976
32981
  position: absolute;
32977
- top: 25.0000000004px;
32978
- left: 9px;
32982
+ top: var(--kendo-floating-label-offset-y, 25.0000000004px);
32983
+ left: var(--kendo-floating-label-offset-x, 9px);
32979
32984
  overflow: hidden;
32980
32985
  cursor: text;
32981
32986
  transform-origin: left center;
@@ -32988,22 +32993,22 @@ select.k-picker-lg {
32988
32993
  }
32989
32994
 
32990
32995
  .k-floating-label-container.k-empty > .k-label {
32991
- top: 25.0000000004px;
32992
- left: 9px;
32996
+ top: var(--kendo-floating-label-offset-y, 25.0000000004px);
32997
+ left: var(--kendo-floating-label-offset-x, 9px);
32993
32998
  transform: scale(1);
32994
32999
  pointer-events: none;
32995
33000
  }
32996
33001
 
32997
33002
  .k-floating-label-container > .k-label,
32998
33003
  .k-floating-label-container.k-focus > .k-label {
32999
- top: 0;
33000
- left: 0;
33004
+ top: var(--kendo-floating-label-focus-offset-y, 0);
33005
+ left: var(--kendo-floating-label-focus-offset-x, 0);
33001
33006
  transform: scale(1);
33002
33007
  }
33003
33008
 
33004
33009
  .k-floating-label-container:focus-within > .k-label {
33005
- top: 0;
33006
- left: 0;
33010
+ top: var(--kendo-floating-label-focus-offset-y, 0);
33011
+ left: var(--kendo-floating-label-focus-offset-x, 0);
33007
33012
  transform: scale(1);
33008
33013
  }
33009
33014
 
@@ -33024,7 +33029,7 @@ select.k-picker-lg {
33024
33029
  [dir="rtl"] .k-floating-label-container.k-empty > .k-label,
33025
33030
  .k-rtl .k-floating-label-container.k-empty > .k-label, .k-floating-label-container[dir="rtl"].k-empty > .k-label {
33026
33031
  left: auto;
33027
- right: 9px;
33032
+ right: var(--kendo-floating-label-offset-x, 9px);
33028
33033
  }
33029
33034
 
33030
33035
  [dir="rtl"] .k-floating-label-container > .k-label,
@@ -33033,13 +33038,13 @@ select.k-picker-lg {
33033
33038
  .k-rtl .k-floating-label-container.k-focus > .k-label, .k-floating-label-container[dir="rtl"] > .k-label,
33034
33039
  .k-floating-label-container[dir="rtl"].k-focus > .k-label {
33035
33040
  left: auto;
33036
- right: 0;
33041
+ right: var(--kendo-floating-label-focus-offset-x, 0);
33037
33042
  }
33038
33043
 
33039
33044
  [dir="rtl"] .k-floating-label-container:focus-within > .k-label,
33040
33045
  .k-rtl .k-floating-label-container:focus-within > .k-label, .k-floating-label-container[dir="rtl"]:focus-within > .k-label {
33041
33046
  left: auto;
33042
- right: 0;
33047
+ right: var(--kendo-floating-label-focus-offset-x, 0);
33043
33048
  }
33044
33049
 
33045
33050
  .k-floating-label-container.k-invalid > .k-label,
@@ -47751,6 +47756,12 @@ kendo-grid.k-grid .k-table-row.k-hover .k-grid-content-sticky.k-selected {
47751
47756
  display: flex;
47752
47757
  }
47753
47758
 
47759
+ .k-gantt-timeline-pane .k-gantt-timeline *,
47760
+ .k-gantt-timeline-pane .k-gantt-timeline *::before,
47761
+ .k-gantt-timeline-pane .k-gantt-timeline *::after, .k-gantt-timeline-pane .k-gantt-timeline::before, .k-gantt-timeline-pane .k-gantt-timeline::after {
47762
+ box-sizing: border-box;
47763
+ }
47764
+
47754
47765
  .k-gantt-timeline-pane .k-grid-content {
47755
47766
  overflow-x: scroll;
47756
47767
  }
package/dist/all.scss CHANGED
@@ -25288,16 +25288,21 @@ $_kendo-module-meta: (
25288
25288
  margin: 0;
25289
25289
  border-style: solid;
25290
25290
  border-color: inherit;
25291
- height: auto;
25292
- align-self: stretch;
25291
+ border-width: 0 0 0 1px;
25292
+ height: $kendo-icon-size;
25293
+ align-self: center;
25293
25294
 
25294
25295
  &-horizontal {
25296
+ height: auto;
25295
25297
  margin-inline: $kendo-input-md-padding-y;
25298
+ align-self: stretch;
25296
25299
  border-width: 1px 0 0;
25297
25300
  }
25298
25301
 
25299
25302
  &-vertical {
25303
+ height: auto;
25300
25304
  margin-block: $kendo-input-md-padding-y;
25305
+ align-self: stretch;
25301
25306
  border-width: 0 0 0 1px;
25302
25307
  }
25303
25308
  }
@@ -26344,8 +26349,8 @@ $kendo-floating-label-focus-text: null !default;
26344
26349
  white-space: nowrap;
26345
26350
  text-overflow: ellipsis;
26346
26351
  position: absolute;
26347
- top: $kendo-floating-label-offset-y;
26348
- left: $kendo-floating-label-offset-x;
26352
+ top: var(--kendo-floating-label-offset-y, #{$kendo-floating-label-offset-y});
26353
+ left: var(--kendo-floating-label-offset-x, #{$kendo-floating-label-offset-x});
26349
26354
  overflow: hidden;
26350
26355
  cursor: text;
26351
26356
  transform-origin: left center;
@@ -26359,8 +26364,8 @@ $kendo-floating-label-focus-text: null !default;
26359
26364
 
26360
26365
  &.k-empty {
26361
26366
  > .k-label {
26362
- top: $kendo-floating-label-offset-y;
26363
- left: $kendo-floating-label-offset-x;
26367
+ top: var(--kendo-floating-label-offset-y, #{$kendo-floating-label-offset-y});
26368
+ left: var(--kendo-floating-label-offset-x, #{$kendo-floating-label-offset-x});
26364
26369
  transform: scale( $kendo-floating-label-scale );
26365
26370
  pointer-events: none;
26366
26371
  }
@@ -26368,13 +26373,13 @@ $kendo-floating-label-focus-text: null !default;
26368
26373
 
26369
26374
  > .k-label,
26370
26375
  &.k-focus > .k-label {
26371
- top: $kendo-floating-label-focus-offset-y;
26372
- left: $kendo-floating-label-focus-offset-x;
26376
+ top: var(--kendo-floating-label-focus-offset-y, #{$kendo-floating-label-focus-offset-y});
26377
+ left: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
26373
26378
  transform: scale( $kendo-floating-label-focus-scale );
26374
26379
  }
26375
26380
  &:focus-within > .k-label {
26376
- top: $kendo-floating-label-focus-offset-y;
26377
- left: $kendo-floating-label-focus-offset-x;
26381
+ top: var(--kendo-floating-label-focus-offset-y, #{$kendo-floating-label-focus-offset-y});
26382
+ left: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
26378
26383
  transform: scale( $kendo-floating-label-focus-scale );
26379
26384
  }
26380
26385
 
@@ -26394,18 +26399,18 @@ $kendo-floating-label-focus-text: null !default;
26394
26399
  &.k-empty {
26395
26400
  > .k-label {
26396
26401
  left: auto;
26397
- right: $kendo-floating-label-offset-x;
26402
+ right: var(--kendo-floating-label-offset-x, #{$kendo-floating-label-offset-x});
26398
26403
  }
26399
26404
  }
26400
26405
 
26401
26406
  > .k-label,
26402
26407
  &.k-focus > .k-label {
26403
26408
  left: auto;
26404
- right: $kendo-floating-label-focus-offset-x;
26409
+ right: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
26405
26410
  }
26406
26411
  &:focus-within > .k-label {
26407
26412
  left: auto;
26408
- right: $kendo-floating-label-focus-offset-x;
26413
+ right: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
26409
26414
  }
26410
26415
  }
26411
26416
  }
@@ -53538,6 +53543,14 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
53538
53543
  height: 100%;
53539
53544
  border-width: 0;
53540
53545
  display: flex;
53546
+
53547
+ *,
53548
+ *::before,
53549
+ *::after,
53550
+ &::before,
53551
+ &::after {
53552
+ box-sizing: border-box;
53553
+ }
53541
53554
  }
53542
53555
  .k-grid-header {}
53543
53556
  .k-grid-content {
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Green Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "7.1.0-dev.9",
6
+ "version": "7.1.0",
7
7
  "api": "legacy",
8
8
  "previewColors": [
9
9
  "#000000",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Green",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "7.1.0-dev.9",
6
+ "version": "7.1.0",
7
7
  "api": "legacy",
8
8
  "previewColors": [
9
9
  "#ffffff",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Lavender Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "7.1.0-dev.9",
6
+ "version": "7.1.0",
7
7
  "api": "legacy",
8
8
  "previewColors": [
9
9
  "#000000",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Lavender",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "7.1.0-dev.9",
6
+ "version": "7.1.0",
7
7
  "api": "legacy",
8
8
  "previewColors": [
9
9
  "#ffffff",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Main Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "7.1.0-dev.9",
6
+ "version": "7.1.0",
7
7
  "api": "legacy",
8
8
  "previewColors": [
9
9
  "#000000",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Main",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "7.1.0-dev.9",
6
+ "version": "7.1.0",
7
7
  "api": "legacy",
8
8
  "previewColors": [
9
9
  "#ffffff",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Metro Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "7.1.0-dev.9",
6
+ "version": "7.1.0",
7
7
  "api": "legacy",
8
8
  "previewColors": [
9
9
  "#000000",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Metro",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "7.1.0-dev.9",
6
+ "version": "7.1.0",
7
7
  "api": "legacy",
8
8
  "previewColors": [
9
9
  "#ffffff",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Moonlight",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "7.1.0-dev.9",
6
+ "version": "7.1.0",
7
7
  "api": "legacy",
8
8
  "previewColors": [
9
9
  "#1f2a35",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Opal Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "7.1.0-dev.9",
6
+ "version": "7.1.0",
7
7
  "api": "legacy",
8
8
  "previewColors": [
9
9
  "#000000",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Opal",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "7.1.0-dev.9",
6
+ "version": "7.1.0",
7
7
  "api": "legacy",
8
8
  "previewColors": [
9
9
  "#ffffff",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Silver Dark",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "7.1.0-dev.9",
6
+ "version": "7.1.0",
7
7
  "api": "legacy",
8
8
  "previewColors": [
9
9
  "#000000",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Silver",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "7.1.0-dev.9",
6
+ "version": "7.1.0",
7
7
  "api": "legacy",
8
8
  "previewColors": [
9
9
  "#ffffff",
@@ -3,7 +3,7 @@
3
3
  "name": "Classic Uniform",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-classic",
6
- "version": "7.1.0-dev.9",
6
+ "version": "7.1.0",
7
7
  "api": "legacy",
8
8
  "previewColors": [
9
9
  "#ffffff",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-theme-classic",
3
3
  "description": "Sass port of less based themes for Kendo UI theme",
4
- "version": "7.1.0-dev.9",
4
+ "version": "7.1.0",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -53,13 +53,13 @@
53
53
  },
54
54
  "dependencies": {
55
55
  "@progress/kendo-svg-icons": "2.1.0",
56
- "@progress/kendo-theme-core": "7.1.0-dev.9",
57
- "@progress/kendo-theme-default": "7.1.0-dev.9",
58
- "@progress/kendo-theme-utils": "7.1.0-dev.9"
56
+ "@progress/kendo-theme-core": "7.1.0",
57
+ "@progress/kendo-theme-default": "7.1.0",
58
+ "@progress/kendo-theme-utils": "7.1.0"
59
59
  },
60
60
  "directories": {
61
61
  "doc": "docs",
62
62
  "lib": "lib"
63
63
  },
64
- "gitHead": "4a6a0cb7085a4b032405585e25da25fd4383d7d7"
64
+ "gitHead": "72d42dfbf1b9b895c405ccba9b35d22204a4b12d"
65
65
  }