@progress/kendo-theme-utils 8.0.0-dev.1 → 8.0.0-dev.11
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 +3674 -650
- package/dist/all.scss +54 -106
- package/dist/meta/sassdoc-data.json +9641 -6485
- package/dist/meta/sassdoc-raw-data.json +4796 -3133
- package/dist/meta/variables.json +2 -2
- package/package.json +3 -3
- package/scss/_variables.scss +9 -0
- package/scss/flex-grid/_gap.scss +3 -3
- package/scss/spacing/_margin.scss +8 -7
- package/scss/spacing/_padding.scss +8 -91
- package/scss/typography/_font-weight.scss +1 -1
- package/scss/typography/_text-decoration.scss +4 -4
package/dist/all.scss
CHANGED
|
@@ -4028,13 +4028,14 @@ $kendo-sizing: k-map-merge( $kendo-spacing, (
|
|
|
4028
4028
|
@mixin kendo-utils--spacing--margin() {
|
|
4029
4029
|
|
|
4030
4030
|
// Margin utility classes
|
|
4031
|
-
|
|
4032
|
-
@include generate-utils(
|
|
4033
|
-
@include generate-utils(
|
|
4034
|
-
@include generate-utils(
|
|
4035
|
-
@include generate-utils(
|
|
4036
|
-
@include generate-utils(
|
|
4037
|
-
@include generate-utils(
|
|
4031
|
+
$kendo-utils-margin: k-map-get( $kendo-utils, "margin" ) !default;
|
|
4032
|
+
@include generate-utils( m, margin, $kendo-utils-margin, $css-var: "spacing" );
|
|
4033
|
+
@include generate-utils( mt, margin-top, $kendo-utils-margin, $css-var: "spacing" );
|
|
4034
|
+
@include generate-utils( mr, margin-right, $kendo-utils-margin, $css-var: "spacing" );
|
|
4035
|
+
@include generate-utils( mb, margin-bottom, $kendo-utils-margin, $css-var: "spacing" );
|
|
4036
|
+
@include generate-utils( ml, margin-left, $kendo-utils-margin, $css-var: "spacing" );
|
|
4037
|
+
@include generate-utils( mx, margin-inline, $kendo-utils-margin, $css-var: "spacing" );
|
|
4038
|
+
@include generate-utils( my, margin-block, $kendo-utils-margin, $css-var: "spacing" );
|
|
4038
4039
|
|
|
4039
4040
|
}
|
|
4040
4041
|
|
|
@@ -4058,18 +4059,6 @@ $kendo-sizing: k-map-merge( $kendo-spacing, (
|
|
|
4058
4059
|
/// @group padding
|
|
4059
4060
|
/// @contextType css
|
|
4060
4061
|
|
|
4061
|
-
/// This is equivalent to `padding: -1px;`.
|
|
4062
|
-
/// @example padding: -1px;
|
|
4063
|
-
/// @name .k-p--1px
|
|
4064
|
-
/// @group padding
|
|
4065
|
-
/// @contextType css
|
|
4066
|
-
|
|
4067
|
-
/// This is equivalent to `padding: -0.25rem;`.
|
|
4068
|
-
/// @example padding: -0.25rem;
|
|
4069
|
-
/// @name .k-p--1
|
|
4070
|
-
/// @group padding
|
|
4071
|
-
/// @contextType css
|
|
4072
|
-
|
|
4073
4062
|
/// This is equivalent to `padding: 0.25rem;`.
|
|
4074
4063
|
/// @example padding: 0.25rem;
|
|
4075
4064
|
/// @name .k-p-xs
|
|
@@ -4136,18 +4125,6 @@ $kendo-sizing: k-map-merge( $kendo-spacing, (
|
|
|
4136
4125
|
/// @group padding
|
|
4137
4126
|
/// @contextType css
|
|
4138
4127
|
|
|
4139
|
-
/// This is equivalent to `padding-top: -1px;`.
|
|
4140
|
-
/// @example padding-top: -1px;
|
|
4141
|
-
/// @name .k-pt--1px
|
|
4142
|
-
/// @group padding
|
|
4143
|
-
/// @contextType css
|
|
4144
|
-
|
|
4145
|
-
/// This is equivalent to `padding-top: -0.25rem;`.
|
|
4146
|
-
/// @example padding-top: -0.25rem;
|
|
4147
|
-
/// @name .k-pt--1
|
|
4148
|
-
/// @group padding
|
|
4149
|
-
/// @contextType css
|
|
4150
|
-
|
|
4151
4128
|
/// This is equivalent to `padding-top: 0.25rem;`.
|
|
4152
4129
|
/// @example padding-top: 0.25rem;
|
|
4153
4130
|
/// @name .k-pt-xs
|
|
@@ -4214,18 +4191,6 @@ $kendo-sizing: k-map-merge( $kendo-spacing, (
|
|
|
4214
4191
|
/// @group padding
|
|
4215
4192
|
/// @contextType css
|
|
4216
4193
|
|
|
4217
|
-
/// This is equivalent to `padding-right: -1px;`.
|
|
4218
|
-
/// @example padding-right: -1px;
|
|
4219
|
-
/// @name .k-pr--1px
|
|
4220
|
-
/// @group padding
|
|
4221
|
-
/// @contextType css
|
|
4222
|
-
|
|
4223
|
-
/// This is equivalent to `padding-right: -0.25rem;`.
|
|
4224
|
-
/// @example padding-right: -0.25rem;
|
|
4225
|
-
/// @name .k-pr--1
|
|
4226
|
-
/// @group padding
|
|
4227
|
-
/// @contextType css
|
|
4228
|
-
|
|
4229
4194
|
/// This is equivalent to `padding-right: 0.25rem;`.
|
|
4230
4195
|
/// @example padding-right: 0.25rem;
|
|
4231
4196
|
/// @name .k-pr-xs
|
|
@@ -4292,18 +4257,6 @@ $kendo-sizing: k-map-merge( $kendo-spacing, (
|
|
|
4292
4257
|
/// @group padding
|
|
4293
4258
|
/// @contextType css
|
|
4294
4259
|
|
|
4295
|
-
/// This is equivalent to `padding-bottom: -1px;`.
|
|
4296
|
-
/// @example padding-bottom: -1px;
|
|
4297
|
-
/// @name .k-pb--1px
|
|
4298
|
-
/// @group padding
|
|
4299
|
-
/// @contextType css
|
|
4300
|
-
|
|
4301
|
-
/// This is equivalent to `padding-bottom: -0.25rem;`.
|
|
4302
|
-
/// @example padding-bottom: -0.25rem;
|
|
4303
|
-
/// @name .k-pb--1
|
|
4304
|
-
/// @group padding
|
|
4305
|
-
/// @contextType css
|
|
4306
|
-
|
|
4307
4260
|
/// This is equivalent to `padding-bottom: 0.25rem;`.
|
|
4308
4261
|
/// @example padding-bottom: 0.25rem;
|
|
4309
4262
|
/// @name .k-pb-xs
|
|
@@ -4370,18 +4323,6 @@ $kendo-sizing: k-map-merge( $kendo-spacing, (
|
|
|
4370
4323
|
/// @group padding
|
|
4371
4324
|
/// @contextType css
|
|
4372
4325
|
|
|
4373
|
-
/// This is equivalent to `padding-left: -1px;`.
|
|
4374
|
-
/// @example padding-left: -1px;
|
|
4375
|
-
/// @name .k-pl--1px
|
|
4376
|
-
/// @group padding
|
|
4377
|
-
/// @contextType css
|
|
4378
|
-
|
|
4379
|
-
/// This is equivalent to `padding-left: -0.25rem;`.
|
|
4380
|
-
/// @example padding-left: -0.25rem;
|
|
4381
|
-
/// @name .k-pl--1
|
|
4382
|
-
/// @group padding
|
|
4383
|
-
/// @contextType css
|
|
4384
|
-
|
|
4385
4326
|
/// This is equivalent to `padding-left: 0.25rem;`.
|
|
4386
4327
|
/// @example padding-left: 0.25rem;
|
|
4387
4328
|
/// @name .k-pl-xs
|
|
@@ -4448,18 +4389,6 @@ $kendo-sizing: k-map-merge( $kendo-spacing, (
|
|
|
4448
4389
|
/// @group padding
|
|
4449
4390
|
/// @contextType css
|
|
4450
4391
|
|
|
4451
|
-
/// This is equivalent to `padding-inline: -1px;`.
|
|
4452
|
-
/// @example padding-inline: -1px;
|
|
4453
|
-
/// @name .k-px--1px
|
|
4454
|
-
/// @group padding
|
|
4455
|
-
/// @contextType css
|
|
4456
|
-
|
|
4457
|
-
/// This is equivalent to `padding-inline: -0.25rem;`.
|
|
4458
|
-
/// @example padding-inline: -0.25rem;
|
|
4459
|
-
/// @name .k-px--1
|
|
4460
|
-
/// @group padding
|
|
4461
|
-
/// @contextType css
|
|
4462
|
-
|
|
4463
4392
|
/// This is equivalent to `padding-inline: 0.25rem;`.
|
|
4464
4393
|
/// @example padding-inline: 0.25rem;
|
|
4465
4394
|
/// @name .k-px-xs
|
|
@@ -4526,18 +4455,6 @@ $kendo-sizing: k-map-merge( $kendo-spacing, (
|
|
|
4526
4455
|
/// @group padding
|
|
4527
4456
|
/// @contextType css
|
|
4528
4457
|
|
|
4529
|
-
/// This is equivalent to `padding-block: -1px;`.
|
|
4530
|
-
/// @example padding-block: -1px;
|
|
4531
|
-
/// @name .k-py--1px
|
|
4532
|
-
/// @group padding
|
|
4533
|
-
/// @contextType css
|
|
4534
|
-
|
|
4535
|
-
/// This is equivalent to `padding-block: -0.25rem;`.
|
|
4536
|
-
/// @example padding-block: -0.25rem;
|
|
4537
|
-
/// @name .k-py--1
|
|
4538
|
-
/// @group padding
|
|
4539
|
-
/// @contextType css
|
|
4540
|
-
|
|
4541
4458
|
/// This is equivalent to `padding-block: 0.25rem;`.
|
|
4542
4459
|
/// @example padding-block: 0.25rem;
|
|
4543
4460
|
/// @name .k-py-xs
|
|
@@ -4589,13 +4506,14 @@ $kendo-sizing: k-map-merge( $kendo-spacing, (
|
|
|
4589
4506
|
@mixin kendo-utils--spacing--padding() {
|
|
4590
4507
|
|
|
4591
4508
|
// Padding utility classes
|
|
4592
|
-
|
|
4593
|
-
@include generate-utils(
|
|
4594
|
-
@include generate-utils(
|
|
4595
|
-
@include generate-utils(
|
|
4596
|
-
@include generate-utils(
|
|
4597
|
-
@include generate-utils(
|
|
4598
|
-
@include generate-utils(
|
|
4509
|
+
$kendo-utils-padding: k-map-get( $kendo-utils, "padding" ) !default;
|
|
4510
|
+
@include generate-utils( p, padding, $kendo-utils-padding, $css-var: "spacing" );
|
|
4511
|
+
@include generate-utils( pt, padding-top, $kendo-utils-padding, $css-var: "spacing" );
|
|
4512
|
+
@include generate-utils( pr, padding-right, $kendo-utils-padding, $css-var: "spacing" );
|
|
4513
|
+
@include generate-utils( pb, padding-bottom, $kendo-utils-padding, $css-var: "spacing" );
|
|
4514
|
+
@include generate-utils( pl, padding-left, $kendo-utils-padding, $css-var: "spacing" );
|
|
4515
|
+
@include generate-utils( px, padding-inline, $kendo-utils-padding, $css-var: "spacing" );
|
|
4516
|
+
@include generate-utils( py, padding-block, $kendo-utils-padding, $css-var: "spacing" );
|
|
4599
4517
|
|
|
4600
4518
|
}
|
|
4601
4519
|
|
|
@@ -4640,6 +4558,15 @@ $kendo-theme-colors: () !default;
|
|
|
4640
4558
|
$kendo-font-sizes: () !default;
|
|
4641
4559
|
|
|
4642
4560
|
$kendo-util-colors-list: (
|
|
4561
|
+
app-surface,
|
|
4562
|
+
on-app-surface,
|
|
4563
|
+
subtle,
|
|
4564
|
+
surface,
|
|
4565
|
+
surface-alt,
|
|
4566
|
+
border,
|
|
4567
|
+
border-alt,
|
|
4568
|
+
base-subtle,
|
|
4569
|
+
base-emphasis,
|
|
4643
4570
|
primary-subtle,
|
|
4644
4571
|
primary,
|
|
4645
4572
|
primary-emphasis,
|
|
@@ -7180,9 +7107,9 @@ $kendo-utils: (
|
|
|
7180
7107
|
|
|
7181
7108
|
// Gap utility classes
|
|
7182
7109
|
$kendo-utils-gap: k-map-get( $kendo-utils, "gap" ) !default;
|
|
7183
|
-
@include generate-utils( gap, gap, $kendo-utils-gap );
|
|
7184
|
-
@include generate-utils( gap-x, column-gap, $kendo-utils-gap );
|
|
7185
|
-
@include generate-utils( gap-y, row-gap, $kendo-utils-gap );
|
|
7110
|
+
@include generate-utils( gap, gap, $kendo-utils-gap, $css-var: "spacing" );
|
|
7111
|
+
@include generate-utils( gap-x, column-gap, $kendo-utils-gap, $css-var: "spacing" );
|
|
7112
|
+
@include generate-utils( gap-y, row-gap, $kendo-utils-gap, $css-var: "spacing" );
|
|
7186
7113
|
|
|
7187
7114
|
}
|
|
7188
7115
|
|
|
@@ -9863,6 +9790,7 @@ $kendo-line-height: k-math-div( 20, 14 ) !default;
|
|
|
9863
9790
|
/// @group typography
|
|
9864
9791
|
$kendo-line-height-xs: 1 !default;
|
|
9865
9792
|
/// The small line height across all components.
|
|
9793
|
+
/// @group typography
|
|
9866
9794
|
$kendo-line-height-sm: 1.25 !default;
|
|
9867
9795
|
/// The medium line height across all components.
|
|
9868
9796
|
/// @group typography
|
|
@@ -10065,14 +9993,32 @@ $kendo-font-families: k-map-merge( $_default-font-families, $kendo-font-families
|
|
|
10065
9993
|
// File already imported_once. Skipping output.
|
|
10066
9994
|
// #endregion
|
|
10067
9995
|
// #region @import "./border-radii/index.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/border-radii/index.import.scss
|
|
9996
|
+
/// The none border radius used across the Components.
|
|
9997
|
+
/// @group radii
|
|
10068
9998
|
$kendo-border-radius-none: k-map-get($kendo-spacing, 0) !default;
|
|
9999
|
+
/// The extra small border radius used across the Components.
|
|
10000
|
+
/// @group radii
|
|
10069
10001
|
$kendo-border-radius-xs: k-map-get($kendo-spacing, 1px) !default;
|
|
10002
|
+
/// The small border radius used across the Components.
|
|
10003
|
+
/// @group radii
|
|
10070
10004
|
$kendo-border-radius-sm: k-map-get($kendo-spacing, 0.5) !default;
|
|
10005
|
+
/// The medium border radius used across the Components.
|
|
10006
|
+
/// @group radii
|
|
10071
10007
|
$kendo-border-radius-md: k-map-get($kendo-spacing, 1) !default;
|
|
10008
|
+
/// The large border radius used across the Components.
|
|
10009
|
+
/// @group radii
|
|
10072
10010
|
$kendo-border-radius-lg: k-map-get($kendo-spacing, 1.5) !default;
|
|
10011
|
+
/// The extra large border radius used across the Components.
|
|
10012
|
+
/// @group radii
|
|
10073
10013
|
$kendo-border-radius-xl: k-map-get($kendo-spacing, 2) !default;
|
|
10014
|
+
/// The third largest border radius used across the Components.
|
|
10015
|
+
/// @group radii
|
|
10074
10016
|
$kendo-border-radius-xxl: k-map-get($kendo-spacing, 3) !default;
|
|
10017
|
+
/// The second largest border radius used across the Components.
|
|
10018
|
+
/// @group radii
|
|
10075
10019
|
$kendo-border-radius-xxxl: k-map-get($kendo-spacing, 4) !default;
|
|
10020
|
+
/// The largest border radius used across the Components.
|
|
10021
|
+
/// @group radii
|
|
10076
10022
|
$kendo-border-radius-full: 9999px !default;
|
|
10077
10023
|
|
|
10078
10024
|
|
|
@@ -10091,6 +10037,8 @@ $_default-border-radii: (
|
|
|
10091
10037
|
|
|
10092
10038
|
$kendo-border-radii: $_default-border-radii !default;
|
|
10093
10039
|
|
|
10040
|
+
/// The global radii Map.
|
|
10041
|
+
/// @group radii
|
|
10094
10042
|
$kendo-border-radii: k-map-merge($_default-border-radii, $kendo-border-radii);
|
|
10095
10043
|
|
|
10096
10044
|
|
|
@@ -10272,7 +10220,7 @@ $kendo-zindex-loading: 100 !default;
|
|
|
10272
10220
|
@mixin kendo-utils--typography--font-weight() {
|
|
10273
10221
|
|
|
10274
10222
|
// Font weight utility classes
|
|
10275
|
-
@include generate-utils( font, font-weight, $kendo-font-weights, $css-var: "font" );
|
|
10223
|
+
@include generate-utils( font, font-weight, $kendo-font-weights, $css-var: "font-weight" );
|
|
10276
10224
|
|
|
10277
10225
|
|
|
10278
10226
|
// Legacy aliases
|
|
@@ -10393,25 +10341,25 @@ $kendo-zindex-loading: 100 !default;
|
|
|
10393
10341
|
// #region @import "./_text-decoration.scss"; -> scss/typography/_text-decoration.scss
|
|
10394
10342
|
/// This is equivalent to `text-decoration: underline;`.
|
|
10395
10343
|
/// @example text-decoration: underline;
|
|
10396
|
-
/// @name .k-underline
|
|
10344
|
+
/// @name .k-text-underline
|
|
10397
10345
|
/// @group text-decoration
|
|
10398
10346
|
/// @contextType css
|
|
10399
10347
|
|
|
10400
10348
|
/// This is equivalent to `text-decoration: overline;`.
|
|
10401
10349
|
/// @example text-decoration: overline;
|
|
10402
|
-
/// @name .k-overline
|
|
10350
|
+
/// @name .k-text-overline
|
|
10403
10351
|
/// @group text-decoration
|
|
10404
10352
|
/// @contextType css
|
|
10405
10353
|
|
|
10406
10354
|
/// This is equivalent to `text-decoration: line-through;`.
|
|
10407
10355
|
/// @example text-decoration: line-through;
|
|
10408
|
-
/// @name .k-line-through
|
|
10356
|
+
/// @name .k-text-line-through
|
|
10409
10357
|
/// @group text-decoration
|
|
10410
10358
|
/// @contextType css
|
|
10411
10359
|
|
|
10412
10360
|
/// This is equivalent to `text-decoration: none-decoration;`.
|
|
10413
10361
|
/// @example text-decoration: none-decoration;
|
|
10414
|
-
/// @name .k-
|
|
10362
|
+
/// @name .k-text-no-underline
|
|
10415
10363
|
/// @group text-decoration
|
|
10416
10364
|
/// @contextType css
|
|
10417
10365
|
|