@progress/kendo-theme-default 7.0.1-dev.1 → 7.0.2-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.css CHANGED
@@ -35486,7 +35486,6 @@ select.k-picker-lg {
35486
35486
  .k-dropdown-operator {
35487
35487
  width: min-content;
35488
35488
  flex: none;
35489
- aspect-ratio: 1;
35490
35489
  }
35491
35490
 
35492
35491
  .k-dropdown-operator .k-input-button {
@@ -42404,18 +42403,6 @@ div.k-grid-footer {
42404
42403
  flex: none;
42405
42404
  }
42406
42405
 
42407
- .k-filtercell .k-input,
42408
- .k-filtercell .k-picker {
42409
- width: auto;
42410
- flex: 1 1 auto;
42411
- }
42412
-
42413
- .k-filtercell .k-color-picker, .k-filtercell .k-colorpicker,
42414
- .k-filtercell .k-dropdown-operator {
42415
- width: min-content;
42416
- flex: none;
42417
- }
42418
-
42419
42406
  .k-grid-content,
42420
42407
  .k-grid-content-locked {
42421
42408
  border-color: inherit;
@@ -43989,6 +43976,7 @@ kendo-grid.k-grid .k-table-row.k-hover .k-grid-content-sticky.k-selected {
43989
43976
 
43990
43977
  .k-spreadsheet-sheets {
43991
43978
  flex: 1 1 auto;
43979
+ overflow: hidden;
43992
43980
  }
43993
43981
 
43994
43982
  .k-spreadsheet-sheets .k-tabstrip-items-wrapper {
package/dist/all.scss CHANGED
@@ -31158,7 +31158,6 @@ $_kendo-module-meta: (
31158
31158
  .k-dropdown-operator {
31159
31159
  width: min-content;
31160
31160
  flex: none;
31161
- aspect-ratio: 1;
31162
31161
 
31163
31162
  .k-input-button {
31164
31163
  border-width: 0;
@@ -36257,73 +36256,186 @@ $_kendo-module-meta: (
36257
36256
  // #endregion
36258
36257
 
36259
36258
  // Card
36259
+
36260
+ /// The horizontal padding of the Card.
36261
+ /// @group card
36260
36262
  $kendo-card-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
36263
+ /// The vertical padding of the Card.
36264
+ /// @group card
36261
36265
  $kendo-card-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
36266
+ /// The width of the border around the Card.
36267
+ /// @group card
36262
36268
  $kendo-card-border-width: 1px !default;
36269
+ /// The border radius of the Card.
36270
+ /// @group card
36263
36271
  $kendo-card-border-radius: $kendo-border-radius-lg !default;
36272
+ /// The inner border radius of the Card.
36273
+ /// @group card
36264
36274
  $kendo-card-inner-border-radius: calc( #{$kendo-card-border-radius} - #{$kendo-card-border-width} ) !default;
36275
+ /// The font family of the Card.
36276
+ /// @group card
36265
36277
  $kendo-card-font-family: $kendo-font-family !default;
36278
+ /// The font size of the Card.
36279
+ /// @group card
36266
36280
  $kendo-card-font-size: $kendo-font-size-md !default;
36281
+ /// The line height of the Card.
36282
+ /// @group card
36267
36283
  $kendo-card-line-height: $kendo-line-height-md !default;
36268
36284
 
36285
+ /// The spacing between the Cards in the Card deck.
36286
+ /// @group card
36269
36287
  $kendo-card-deck-gap: k-map-get( $kendo-spacing, 4 ) !default;
36270
36288
 
36289
+ /// The background color of the Card.
36290
+ /// @group card
36271
36291
  $kendo-card-bg: $kendo-component-bg !default;
36292
+ /// The text color of the Card.
36293
+ /// @group card
36272
36294
  $kendo-card-text: $kendo-component-text !default;
36295
+ /// The border color of the Card.
36296
+ /// @group card
36273
36297
  $kendo-card-border: $kendo-component-border !default;
36298
+ /// The shadow of the Card.
36299
+ /// @group card
36274
36300
  $kendo-card-shadow: null !default;
36275
36301
 
36302
+ /// The background color of the focused Card.
36303
+ /// @group card
36276
36304
  $kendo-card-focus-bg: null !default;
36305
+ /// The text color of the focused Card.
36306
+ /// @group card
36277
36307
  $kendo-card-focus-text: null !default;
36308
+ /// The border color of the focused Card.
36309
+ /// @group card
36278
36310
  $kendo-card-focus-border: rgba( black, .15 ) !default;
36279
- // TODO: double-check: the default theme is not supposed to elevate the card on focus
36311
+
36312
+ // TODO: double-check: the default theme is not supposed to elevate the Card on focus
36313
+
36314
+ /// The shadow of the focused Card.
36315
+ /// @group card
36280
36316
  $kendo-card-focus-shadow: null !default;
36281
36317
 
36318
+ /// The horizontal padding of the Card header.
36319
+ /// @group card
36282
36320
  $kendo-card-header-padding-x: $kendo-card-padding-x !default;
36321
+ /// The vertical padding of the Card header.
36322
+ /// @group card
36283
36323
  $kendo-card-header-padding-y: $kendo-card-padding-y !default;
36324
+ /// The bottom border width of the Card header.
36325
+ /// @group card
36284
36326
  $kendo-card-header-border-width: 1px !default;
36327
+ /// The background color of the Card header.
36328
+ /// @group card
36285
36329
  $kendo-card-header-bg: null !default;
36330
+ /// The text color of the Card header.
36331
+ /// @group card
36286
36332
  $kendo-card-header-text: $kendo-component-header-text !default;
36333
+ /// The border color of the Card header.
36334
+ /// @group card
36287
36335
  $kendo-card-header-border: $kendo-component-header-border !default;
36288
36336
 
36337
+ /// The horizontal padding of the Card body.
36338
+ /// @group card
36289
36339
  $kendo-card-body-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
36340
+ /// The vertical padding of the Card body.
36341
+ /// @group card
36290
36342
  $kendo-card-body-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
36291
36343
 
36344
+ /// The horizontal padding of the Card footer.
36345
+ /// @group card
36292
36346
  $kendo-card-footer-padding-x: $kendo-card-padding-x !default;
36347
+ /// The vertical padding of the Card footer.
36348
+ /// @group card
36293
36349
  $kendo-card-footer-padding-y: $kendo-card-padding-y !default;
36350
+ /// The top border width of the Card footer.
36351
+ /// @group card
36294
36352
  $kendo-card-footer-border-width: 1px !default;
36353
+ /// The background color of the Card footer.
36354
+ /// @group card
36295
36355
  $kendo-card-footer-bg: null !default;
36356
+ /// The text color of the Card footer.
36357
+ /// @group card
36296
36358
  $kendo-card-footer-text: $kendo-component-header-text !default;
36359
+ /// The border color of the Card footer.
36360
+ /// @group card
36297
36361
  $kendo-card-footer-border: $kendo-component-header-border !default;
36298
36362
 
36363
+ /// The bottom margin of the Card title.
36364
+ /// @group card
36299
36365
  $kendo-card-title-margin-bottom: k-map-get( $kendo-spacing, 2 ) !default;
36366
+ /// The font size of the Card title.
36367
+ /// @group card
36300
36368
  $kendo-card-title-font-size: $kendo-h5-font-size !default;
36369
+ /// The font family of the Card title.
36370
+ /// @group card
36301
36371
  $kendo-card-title-font-family: null !default;
36372
+ /// The line height of the Card title.
36373
+ /// @group card
36302
36374
  $kendo-card-title-line-height: 1.25 !default;
36375
+ /// The font weight of the Card title.
36376
+ /// @group card
36303
36377
  $kendo-card-title-font-weight: $kendo-font-weight-normal !default;
36378
+ /// The letter spacing of the Card title.
36379
+ /// @group card
36304
36380
  $kendo-card-title-letter-spacing: null !default;
36305
36381
 
36382
+ /// The bottom margin of the Card subtitle.
36383
+ /// @group card
36306
36384
  $kendo-card-subtitle-margin-bottom: k-map-get( $kendo-spacing, 2 ) !default;
36385
+ /// The font size of the Card subtitle.
36386
+ /// @group card
36307
36387
  $kendo-card-subtitle-font-size: $kendo-font-size-sm !default;
36388
+ /// The font family of the Card subtitle.
36389
+ /// @group card
36308
36390
  $kendo-card-subtitle-font-family: null !default;
36391
+ /// The line height of the Card subtitle.
36392
+ /// @group card
36309
36393
  $kendo-card-subtitle-line-height: normal !default;
36394
+ /// The font weight of the Card subtitle.
36395
+ /// @group card
36310
36396
  $kendo-card-subtitle-font-weight: $kendo-font-weight-normal !default;
36397
+ /// The letter spacing of the Card subtitle.
36398
+ /// @group card
36311
36399
  $kendo-card-subtitle-letter-spacing: null !default;
36400
+ /// The text color of the Card subtitle.
36401
+ /// @group card
36312
36402
  $kendo-card-subtitle-text: $kendo-subtle-text !default;
36313
36403
 
36404
+ /// The maximum width of the Card image.
36405
+ /// @group card
36314
36406
  $kendo-card-img-max-width: 100px !default;
36407
+ /// The size of the Avatar in the Card.
36408
+ /// @group card
36315
36409
  $kendo-card-avatar-size: 45px !default;
36410
+ /// The spacing between the Avatar and the text in the Card.
36411
+ /// @group card
36316
36412
  $kendo-card-avatar-spacing: $kendo-card-header-padding-x !default;
36317
36413
 
36414
+ /// The horizontal padding of the Card actions.
36415
+ /// @group card
36318
36416
  $kendo-card-actions-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
36417
+ /// The vertical padding of the Card actions.
36418
+ /// @group card
36319
36419
  $kendo-card-actions-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
36420
+ /// The top border width of the Card actions.
36421
+ /// @group card
36320
36422
  $kendo-card-actions-border-width: 1px !default;
36423
+ /// The spacing between the Card actions.
36424
+ /// @group card
36321
36425
  $kendo-card-actions-gap: k-map-get( $kendo-spacing, 2 ) !default;
36322
36426
 
36427
+ /// The border radius of the scroll button in the Card deck.
36428
+ /// @group card
36323
36429
  $kendo-card-deck-scroll-button-radius: 0px !default;
36430
+ /// The border radius of the scroll button in the Card deck.
36431
+ /// @group card
36324
36432
  $kendo-card-deck-scroll-button-offset: -$kendo-button-border-width !default;
36325
36433
 
36434
+ /// The width of the Card callout.
36435
+ /// @group card
36326
36436
  $kendo-card-callout-width: 20px !default;
36437
+ /// The height of the Card callout.
36438
+ /// @group card
36327
36439
  $kendo-card-callout-height: 20px !default;
36328
36440
 
36329
36441
  // #endregion
@@ -43496,16 +43608,6 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
43496
43608
  }
43497
43609
  }
43498
43610
 
43499
- .k-input,
43500
- .k-picker {
43501
- width: auto;
43502
- flex: 1 1 auto;
43503
- }
43504
- .k-color-picker,
43505
- .k-dropdown-operator {
43506
- width: min-content;
43507
- flex: none;
43508
- }
43509
43611
  }
43510
43612
 
43511
43613
  // Grid content
@@ -45494,6 +45596,7 @@ $kendo-spreadsheet-dropzone-spacing-y: k-map-get( $kendo-spacing, 4 ) !default;
45494
45596
 
45495
45597
  .k-spreadsheet-sheets {
45496
45598
  flex: 1 1 auto;
45599
+ overflow: hidden;
45497
45600
  }
45498
45601
  .k-spreadsheet-sheets .k-tabstrip-items-wrapper {
45499
45602
  border-width: 0;