@progress/kendo-theme-material 8.0.0-dev.8 → 8.0.0-dev.9

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
@@ -35753,7 +35753,7 @@ kendo-label > .k-label {
35753
35753
 
35754
35754
  .k-tooltip-title {
35755
35755
  margin-bottom: .25em;
35756
- font-size: calc(var(--kendo-font-size-sm, inherit)*1.25);
35756
+ font-size: calc(var( --kendo-font-size-sm, .75rem )*1.25);
35757
35757
  line-height: 1;
35758
35758
  }
35759
35759
 
@@ -54178,7 +54178,7 @@ kendo-scheduler .k-recurrence-editor {
54178
54178
  }
54179
54179
 
54180
54180
  .k-scheduler-tooltip .k-tooltip-title .k-day {
54181
- font-size: calc(var(--kendo-font-size-sm, inherit)*2);
54181
+ font-size: calc(var( --kendo-font-size-sm, .75rem )*2);
54182
54182
  }
54183
54183
 
54184
54184
  .k-scheduler-tooltip .k-tooltip-events-container {
package/dist/all.scss CHANGED
@@ -3689,6 +3689,7 @@ $kendo-line-height: k-math-div( 20, 14 ) !default;
3689
3689
  /// @group typography
3690
3690
  $kendo-line-height-xs: 1 !default;
3691
3691
  /// The small line height across all components.
3692
+ /// @group typography
3692
3693
  $kendo-line-height-sm: 1.25 !default;
3693
3694
  /// The medium line height across all components.
3694
3695
  /// @group typography
@@ -4120,12 +4121,38 @@ $kendo-padding-lg-y: k-spacing(1.5) !default;
4120
4121
 
4121
4122
  // Radii
4122
4123
  // #region @import "./border-radii/index.import.scss"; -> scss/core/border-radii/index.import.scss
4124
+ /// The none border radius used across the Components.
4125
+ /// @group radii
4126
+ $kendo-border-radius-none: k-map-get($kendo-spacing, 0) !default;
4127
+ /// The extra small border radius used across the Components.
4128
+ /// @group radii
4129
+ $kendo-border-radius-xs: k-map-get($kendo-spacing, 1px) !default;
4130
+ /// The small border radius used across the Components.
4131
+ /// @group radii
4132
+ $kendo-border-radius-sm: k-map-get($kendo-spacing, 0.5) !default;
4133
+ /// The medium border radius used across the Components.
4134
+ /// @group radii
4135
+ $kendo-border-radius-md: k-map-get($kendo-spacing, 1) !default;
4136
+ /// The large border radius used across the Components.
4137
+ /// @group radii
4123
4138
  $kendo-border-radius-lg: k-map-get($kendo-spacing, 2) !default;
4139
+ /// The extra large border radius used across the Components.
4140
+ /// @group radii
4124
4141
  $kendo-border-radius-xl: k-map-get($kendo-spacing, 3) !default;
4142
+ /// The third largest border radius used across the Components.
4143
+ /// @group radii
4125
4144
  $kendo-border-radius-xxl: k-map-get($kendo-spacing, 4) !default;
4145
+ /// The second largest border radius used across the Components.
4146
+ /// @group radii
4126
4147
  $kendo-border-radius-xxxl: k-map-get($kendo-spacing, 5) !default;
4127
4148
 
4149
+ /// The global radii Map.
4150
+ /// @group radii
4128
4151
  $kendo-border-radii: (
4152
+ none: $kendo-border-radius-none,
4153
+ xs: $kendo-border-radius-xs,
4154
+ sm: $kendo-border-radius-sm,
4155
+ md: $kendo-border-radius-md,
4129
4156
  lg: $kendo-border-radius-lg,
4130
4157
  xl: $kendo-border-radius-xl,
4131
4158
  xxl: $kendo-border-radius-xxl,
@@ -4133,14 +4160,32 @@ $kendo-border-radii: (
4133
4160
  ) !default;
4134
4161
 
4135
4162
  // #region @import "@progress/kendo-theme-core/scss/border-radii/index.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/border-radii/index.import.scss
4163
+ /// The none border radius used across the Components.
4164
+ /// @group radii
4136
4165
  $kendo-border-radius-none: k-map-get($kendo-spacing, 0) !default;
4166
+ /// The extra small border radius used across the Components.
4167
+ /// @group radii
4137
4168
  $kendo-border-radius-xs: k-map-get($kendo-spacing, 1px) !default;
4169
+ /// The small border radius used across the Components.
4170
+ /// @group radii
4138
4171
  $kendo-border-radius-sm: k-map-get($kendo-spacing, 0.5) !default;
4172
+ /// The medium border radius used across the Components.
4173
+ /// @group radii
4139
4174
  $kendo-border-radius-md: k-map-get($kendo-spacing, 1) !default;
4175
+ /// The large border radius used across the Components.
4176
+ /// @group radii
4140
4177
  $kendo-border-radius-lg: k-map-get($kendo-spacing, 1.5) !default;
4178
+ /// The extra large border radius used across the Components.
4179
+ /// @group radii
4141
4180
  $kendo-border-radius-xl: k-map-get($kendo-spacing, 2) !default;
4181
+ /// The third largest border radius used across the Components.
4182
+ /// @group radii
4142
4183
  $kendo-border-radius-xxl: k-map-get($kendo-spacing, 3) !default;
4184
+ /// The second largest border radius used across the Components.
4185
+ /// @group radii
4143
4186
  $kendo-border-radius-xxxl: k-map-get($kendo-spacing, 4) !default;
4187
+ /// The largest border radius used across the Components.
4188
+ /// @group radii
4144
4189
  $kendo-border-radius-full: 9999px !default;
4145
4190
 
4146
4191
 
@@ -4159,6 +4204,8 @@ $_default-border-radii: (
4159
4204
 
4160
4205
  $kendo-border-radii: $_default-border-radii !default;
4161
4206
 
4207
+ /// The global radii Map.
4208
+ /// @group radii
4162
4209
  $kendo-border-radii: k-map-merge($_default-border-radii, $kendo-border-radii);
4163
4210
 
4164
4211
 
@@ -16189,48 +16236,124 @@ $_kendo-module-meta: (
16189
16236
 
16190
16237
 
16191
16238
  // Headings
16239
+
16240
+ /// The font size of the highest level heading.
16241
+ /// @group typography
16192
16242
  $kendo-h1-font-size: 96px !default;
16243
+ /// The font size of the second highest level heading.
16244
+ /// @group typography
16193
16245
  $kendo-h2-font-size: 60px !default;
16246
+ /// The font size of the third highest level heading.
16247
+ /// @group typography
16194
16248
  $kendo-h3-font-size: 48px !default;
16249
+ /// The font size of the fourth highest level heading.
16250
+ /// @group typography
16195
16251
  $kendo-h4-font-size: 34px !default;
16252
+ /// The font size of the fifth highest level heading.
16253
+ /// @group typography
16196
16254
  $kendo-h5-font-size: 24px !default;
16255
+ /// The font size of the sixth highest level heading.
16256
+ /// @group typography
16197
16257
  $kendo-h6-font-size: 20px !default;
16198
16258
 
16259
+ /// The font family of the highest level heading.
16260
+ /// @group typography
16199
16261
  $kendo-h1-font-family: var( --kendo-font-family, inherit ) !default;
16262
+ /// The font family of the second highest level heading.
16263
+ /// @group typography
16200
16264
  $kendo-h2-font-family: var( --kendo-font-family, inherit ) !default;
16265
+ /// The font family of the third highest level heading.
16266
+ /// @group typography
16201
16267
  $kendo-h3-font-family: var( --kendo-font-family, inherit ) !default;
16268
+ /// The font family of the fourth highest level heading.
16269
+ /// @group typography
16202
16270
  $kendo-h4-font-family: var( --kendo-font-family, inherit ) !default;
16271
+ /// The font family of the fifth highest level heading.
16272
+ /// @group typography
16203
16273
  $kendo-h5-font-family: var( --kendo-font-family, inherit ) !default;
16274
+ /// The font family of the sixth highest level heading.
16275
+ /// @group typography
16204
16276
  $kendo-h6-font-family: var( --kendo-font-family, inherit ) !default;
16205
16277
 
16278
+ /// The line height of the highest level heading.
16279
+ /// @group typography
16206
16280
  $kendo-h1-line-height: 112px !default;
16281
+ /// The line height of the second highest level heading.
16282
+ /// @group typography
16207
16283
  $kendo-h2-line-height: 72px !default;
16284
+ /// The line height of the third highest level heading.
16285
+ /// @group typography
16208
16286
  $kendo-h3-line-height: 56px !default;
16287
+ /// The line height of the fourth highest level heading.
16288
+ /// @group typography
16209
16289
  $kendo-h4-line-height: 36px !default;
16290
+ /// The line height of the fifth highest level heading.
16291
+ /// @group typography
16210
16292
  $kendo-h5-line-height: 24px !default;
16293
+ /// The line height of the sixth highest level heading.
16294
+ /// @group typography
16211
16295
  $kendo-h6-line-height: 24px !default;
16212
16296
 
16297
+ /// The font weight of the highest level heading.
16298
+ /// @group typography
16213
16299
  $kendo-h1-font-weight: var( --kendo-font-weight-light, normal ) !default;
16300
+ /// The font weight of the second highest level heading.
16301
+ /// @group typography
16214
16302
  $kendo-h2-font-weight: var( --kendo-font-weight-light, normal ) !default;
16303
+ /// The font weight of the third highest level heading.
16304
+ /// @group typography
16215
16305
  $kendo-h3-font-weight: var( --kendo-font-weight-normal, normal ) !default;
16306
+ /// The font weight of the fourth highest level heading.
16307
+ /// @group typography
16216
16308
  $kendo-h4-font-weight: var( --kendo-font-weight-normal, normal ) !default;
16309
+ /// The font weight of the fifth highest level heading.
16310
+ /// @group typography
16217
16311
  $kendo-h5-font-weight: var( --kendo-font-weight-normal, normal ) !default;
16312
+ /// The font weight of the sixth highest level heading.
16313
+ /// @group typography
16218
16314
  $kendo-h6-font-weight: var( --kendo-font-weight-medium, normal ) !default;
16219
16315
 
16316
+ /// The letter spacing of the highest level heading.
16317
+ /// @group typography
16220
16318
  $kendo-h1-letter-spacing: var( --kendo-letter-spacing-tighter, normal ) !default;
16319
+ /// The letter spacing of the second highest level heading.
16320
+ /// @group typography
16221
16321
  $kendo-h2-letter-spacing: var( --kendo-letter-spacing-tight, normal ) !default;
16322
+ /// The letter spacing of the third highest level heading.
16323
+ /// @group typography
16222
16324
  $kendo-h3-letter-spacing: var( --kendo-letter-spacing-normal, normal ) !default;
16325
+ /// The letter spacing of the fourth highest level heading.
16326
+ /// @group typography
16223
16327
  $kendo-h4-letter-spacing: var( --kendo-letter-spacing-wider, normal ) !default;
16328
+ /// The letter spacing of the fifth highest level heading.
16329
+ /// @group typography
16224
16330
  $kendo-h5-letter-spacing: var( --kendo-letter-spacing-normal, normal ) !default;
16331
+ /// The letter spacing of the sixth highest level heading.
16332
+ /// @group typography
16225
16333
  $kendo-h6-letter-spacing: var( --kendo-letter-spacing-wide, normal ) !default;
16226
16334
 
16335
+
16336
+ /// The margin of the highest level heading.
16337
+ /// @group typography
16227
16338
  $kendo-h1-margin: 0 0 12px !default;
16339
+ /// The margin of the second highest level heading.
16340
+ /// @group typography
16228
16341
  $kendo-h2-margin: 0 0 12px !default;
16342
+ /// The margin of the third highest level heading.
16343
+ /// @group typography
16229
16344
  $kendo-h3-margin: 0 0 12px !default;
16345
+ /// The margin of the fourth highest level heading.
16346
+ /// @group typography
16230
16347
  $kendo-h4-margin: 0 0 12px !default;
16348
+ /// The margin of the fifth highest level heading.
16349
+ /// @group typography
16231
16350
  $kendo-h5-margin: 0 0 12px !default;
16351
+ /// The margin of the sixth highest level heading.
16352
+ /// @group typography
16232
16353
  $kendo-h6-margin: 0 0 12px !default;
16233
16354
 
16355
+ /// The headings Map.
16356
+ /// @group typography
16234
16357
  $kendo-headings: (
16235
16358
  h1: (
16236
16359
  font-size: $kendo-h1-font-size,
@@ -16285,58 +16408,140 @@ $kendo-headings: (
16285
16408
 
16286
16409
 
16287
16410
  // Paragraph
16411
+
16412
+ /// The margin of the paragraph.
16413
+ /// @group typography
16288
16414
  $kendo-paragraph-margin: 0 0 12px !default;
16415
+ /// The font size of the paragraph.
16416
+ /// @group typography
16289
16417
  $kendo-paragraph-font-size: 1rem !default;
16418
+ /// The font family of the paragraph.
16419
+ /// @group typography
16290
16420
  $kendo-paragraph-font-family: var( --kendo-font-family, inherit ) !default;
16421
+ /// The line height of the paragraph.
16422
+ /// @group typography
16291
16423
  $kendo-paragraph-line-height: var( --kendo-line-height-lg, normal ) !default;
16424
+ /// The font weight of the paragraph.
16425
+ /// @group typography
16292
16426
  $kendo-paragraph-font-weight: var( --kendo-font-weight-normal, normal ) !default;
16427
+ /// The letter spacing of the paragraph.
16428
+ /// @group typography
16293
16429
  $kendo-paragraph-letter-spacing: .0313em !default;
16294
16430
 
16295
16431
 
16296
16432
  // Code
16433
+
16434
+ /// The font size of the code tag.
16435
+ /// @group typography
16297
16436
  $kendo-code-font-size: var( --kendo-font-size, inherit ) !default;
16437
+ /// The font family of the code tag.
16438
+ /// @group typography
16298
16439
  $kendo-code-font-family: var( --kendo-font-family-monospace, normal ) !default;
16440
+ /// The line height of the code tag.
16441
+ /// @group typography
16299
16442
  $kendo-code-line-height: var( --kendo-line-height, normal ) !default;
16443
+ /// The font weight of the code tag.
16444
+ /// @group typography
16300
16445
  $kendo-code-font-weight: var( --kendo-font-weight-normal, normal ) !default;
16446
+ /// The letter spacing of the code tag.
16447
+ /// @group typography
16301
16448
  $kendo-code-letter-spacing: null !default;
16302
16449
 
16450
+ /// The horizontal padding of the code tag.
16451
+ /// @group typography
16303
16452
  $kendo-code-padding-x: k-spacing(1) !default;
16453
+ /// The vertical padding of the code tag.
16454
+ /// @group typography
16304
16455
  $kendo-code-padding-y: k-spacing(0) !default;
16456
+ /// The horizontal padding of the preformatted text.
16457
+ /// @group typography
16305
16458
  $kendo-pre-padding-x: k-spacing(6) !default;
16459
+ /// The vertical padding of the preformatted text.
16460
+ /// @group typography
16306
16461
  $kendo-pre-padding-y: k-spacing(4) !default;
16462
+ /// The border width of the code tag.
16463
+ /// @group typography
16307
16464
  $kendo-code-border-width: 1px !default;
16308
16465
 
16466
+ /// The background color of the code tag.
16467
+ /// @group typography
16309
16468
  $kendo-code-bg: $kendo-base-bg !default;
16469
+ /// The text color of the code tag.
16470
+ /// @group typography
16310
16471
  $kendo-code-text: $kendo-component-text !default;
16472
+ /// The border color of the code tag.
16473
+ /// @group typography
16311
16474
  $kendo-code-border: $kendo-component-border !default;
16312
16475
 
16313
-
16314
16476
  // Display
16477
+
16478
+ /// The font size of the largest display text.
16479
+ /// @group typography
16315
16480
  $kendo-display1-font-size: calc( var( --kendo-font-size, .875rem ) * 9.5 ) !default;
16481
+ /// The font size of the second largest display text.
16482
+ /// @group typography
16316
16483
  $kendo-display2-font-size: calc( var( --kendo-font-size, .875rem ) * 8.75 ) !default;
16484
+ /// The font size of the third largest display text.
16485
+ /// @group typography
16317
16486
  $kendo-display3-font-size: calc( var( --kendo-font-size, .875rem ) * 8 ) !default;
16487
+ /// The font size of the fourth largest display text.
16488
+ /// @group typography
16318
16489
  $kendo-display4-font-size: calc( var( --kendo-font-size, .875rem ) * 7.25 ) !default;
16319
16490
 
16491
+ /// The font family of the largest display text.
16492
+ /// @group typography
16320
16493
  $kendo-display1-font-family: var( --kendo-font-family, inherit ) !default;
16494
+ /// The font family of the second largest display text.
16495
+ /// @group typography
16321
16496
  $kendo-display2-font-family: var( --kendo-font-family, inherit ) !default;
16497
+ /// The font family of the third largest display text.
16498
+ /// @group typography
16322
16499
  $kendo-display3-font-family: var( --kendo-font-family, inherit ) !default;
16500
+ /// The font family of the fourth largest display text.
16501
+ /// @group typography
16323
16502
  $kendo-display4-font-family: var( --kendo-font-family, inherit ) !default;
16324
16503
 
16504
+ /// The line height of the largest display text.
16505
+ /// @group typography
16325
16506
  $kendo-display1-line-height: 1.2 !default;
16507
+ /// The line height of the second largest display text.
16508
+ /// @group typography
16326
16509
  $kendo-display2-line-height: 1.2 !default;
16510
+ /// The line height of the third largest display text.
16511
+ /// @group typography
16327
16512
  $kendo-display3-line-height: 1.2 !default;
16513
+ /// The line height of the fourth largest display text.
16514
+ /// @group typography
16328
16515
  $kendo-display4-line-height: 1.2 !default;
16329
16516
 
16517
+ /// The font weight of the largest display text.
16518
+ /// @group typography
16330
16519
  $kendo-display1-font-weight: var( --kendo-font-weight-light, normal ) !default;
16520
+ /// The font weight of the second largest display text.
16521
+ /// @group typography
16331
16522
  $kendo-display2-font-weight: var( --kendo-font-weight-light, normal ) !default;
16523
+ /// The font weight of the third largest display text.
16524
+ /// @group typography
16332
16525
  $kendo-display3-font-weight: var( --kendo-font-weight-light, normal ) !default;
16526
+ /// The font weight of the fourth largest display text.
16527
+ /// @group typography
16333
16528
  $kendo-display4-font-weight: var( --kendo-font-weight-light, normal ) !default;
16334
16529
 
16530
+ /// The letter spacing of the largest display text.
16531
+ /// @group typography
16335
16532
  $kendo-display1-letter-spacing: var( --kendo-letter-spacing-tighter, normal ) !default;
16533
+ /// The letter spacing of the second largest display text.
16534
+ /// @group typography
16336
16535
  $kendo-display2-letter-spacing: var( --kendo-letter-spacing-tighter, normal ) !default;
16536
+ /// The letter spacing of the third largest display text.
16537
+ /// @group typography
16337
16538
  $kendo-display3-letter-spacing: var( --kendo-letter-spacing-tighter, normal ) !default;
16539
+ /// The letter spacing of the fourth largest display text.
16540
+ /// @group typography
16338
16541
  $kendo-display4-letter-spacing: var( --kendo-letter-spacing-tighter, normal ) !default;
16339
16542
 
16543
+ /// The displays Map.
16544
+ /// @group typography
16340
16545
  $kendo-display: (
16341
16546
  1: (
16342
16547
  font-size: $kendo-display1-font-size,
@@ -25730,7 +25935,7 @@ $kendo-tooltip-line-height: k-math-div( 20, 14 ) !default;
25730
25935
 
25731
25936
  /// The font size of the Tooltip title.
25732
25937
  /// @group tooltip
25733
- $kendo-tooltip-title-font-size: calc( #{$kendo-tooltip-font-size} * 1.25 ) !default;
25938
+ $kendo-tooltip-title-font-size: calc( var( --kendo-font-size-sm, .75rem ) * 1.25 ) !default;
25734
25939
  /// The line height of the Tooltip title.
25735
25940
  /// @group tooltip
25736
25941
  $kendo-tooltip-title-line-height: 1 !default;
@@ -58972,7 +59177,7 @@ $kendo-scheduler-tooltip-title-margin-y: k-spacing(2) !default;
58972
59177
  $kendo-scheduler-tooltip-month-font-size: var( --kendo-font-size-sm, inherit ) !default;
58973
59178
  /// The font size of the day inside the Scheduler Tooltip.
58974
59179
  /// @group scheduler
58975
- $kendo-scheduler-tooltip-day-font-size: calc( #{$kendo-scheduler-tooltip-month-font-size} * 2 ) !default;
59180
+ $kendo-scheduler-tooltip-day-font-size: calc( var( --kendo-font-size-sm, .75rem ) * 2 ) !default;
58976
59181
 
58977
59182
  /// The max height of the events inside the Scheduler Tooltip.
58978
59183
  /// @group scheduler