@progress/kendo-theme-utils 6.2.1-dev.44 → 6.3.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.
Files changed (87) hide show
  1. package/dist/all.css +12 -60
  2. package/dist/all.scss +4906 -484
  3. package/dist/meta/sassdoc-data.json +25020 -1335
  4. package/dist/meta/sassdoc-raw-data.json +25020 -1335
  5. package/dist/meta/variables.json +1 -1
  6. package/package.json +3 -3
  7. package/scss/_variables.scss +6 -6
  8. package/scss/background/_background-clip.scss +23 -1
  9. package/scss/background/_background-color.scss +23 -1
  10. package/scss/border/_border-color.scss +30 -1
  11. package/scss/border/_border-radius.scss +323 -1
  12. package/scss/border/_border-style.scss +246 -1
  13. package/scss/border/_border-width.scss +211 -1
  14. package/scss/border/_outline-color.scss +29 -1
  15. package/scss/border/_outline-offset.scss +29 -1
  16. package/scss/border/_outline-style.scss +35 -1
  17. package/scss/border/_outline-width.scss +29 -1
  18. package/scss/effects/_opacity.scss +11 -1
  19. package/scss/filter/_backdrop.scss +29 -1
  20. package/scss/flex-grid/_align-content.scss +77 -1
  21. package/scss/flex-grid/_align-items.scss +71 -1
  22. package/scss/flex-grid/_align-self.scss +77 -1
  23. package/scss/flex-grid/_flex-basis.scss +4 -2
  24. package/scss/flex-grid/_flex-direction.scss +8 -4
  25. package/scss/flex-grid/_flex-grow.scss +4 -2
  26. package/scss/flex-grid/_flex-shrink.scss +4 -2
  27. package/scss/flex-grid/_flex-wrap.scss +6 -3
  28. package/scss/flex-grid/_flex.scss +7 -3
  29. package/scss/flex-grid/_gap.scss +179 -1
  30. package/scss/flex-grid/_grid-auto-columns.scss +23 -1
  31. package/scss/flex-grid/_grid-auto-flow.scss +35 -1
  32. package/scss/flex-grid/_grid-auto-rows.scss +23 -1
  33. package/scss/flex-grid/_grid-column-start-end.scss +17 -1
  34. package/scss/flex-grid/_grid-row-start-end.scss +17 -1
  35. package/scss/flex-grid/_grid-template-columns.scss +17 -1
  36. package/scss/flex-grid/_grid-template-rows.scss +17 -1
  37. package/scss/flex-grid/_justify-content.scss +77 -1
  38. package/scss/flex-grid/_justify-items.scss +83 -1
  39. package/scss/flex-grid/_justify-self.scss +77 -1
  40. package/scss/flex-grid/_order.scss +9 -0
  41. package/scss/flex-grid/_place-content.scss +77 -1
  42. package/scss/flex-grid/_place-items.scss +59 -1
  43. package/scss/flex-grid/_place-self.scss +65 -1
  44. package/scss/interactivity/_appearance.scss +4 -2
  45. package/scss/interactivity/_cursor.scss +23 -1
  46. package/scss/interactivity/_pointer-events.scss +4 -4
  47. package/scss/interactivity/_resize.scss +8 -6
  48. package/scss/interactivity/_scroll.scss +325 -1
  49. package/scss/interactivity/_touch-action.scss +52 -4
  50. package/scss/interactivity/_user-select.scss +10 -7
  51. package/scss/layout/_aspect-ratio.scss +8 -6
  52. package/scss/layout/_box-sizing.scss +11 -1
  53. package/scss/layout/_clear.scss +8 -6
  54. package/scss/layout/_columns.scss +25 -14
  55. package/scss/layout/_display.scss +37 -10
  56. package/scss/layout/_float.scss +6 -5
  57. package/scss/layout/_object-fit.scss +35 -1
  58. package/scss/layout/_object-position.scss +53 -1
  59. package/scss/layout/_overflow.scss +20 -5
  60. package/scss/layout/_placement.scss +70 -6
  61. package/scss/layout/_position.scss +10 -7
  62. package/scss/layout/_visibility.scss +17 -2
  63. package/scss/layout/_zindex.scss +41 -1
  64. package/scss/sizing/_height.scss +143 -1
  65. package/scss/sizing/_width.scss +143 -1
  66. package/scss/spacing/_margin.scss +545 -1
  67. package/scss/spacing/_padding.scss +545 -1
  68. package/scss/svg/_fill.scss +35 -1
  69. package/scss/svg/_stroke.scss +36 -2
  70. package/scss/table/_border-collapse.scss +11 -1
  71. package/scss/table/_table-layout.scss +6 -6
  72. package/scss/transform/_flip.scss +4 -2
  73. package/scss/transform/_origin.scss +53 -1
  74. package/scss/transform/_rotate.scss +16 -8
  75. package/scss/transform/_scale.scss +6 -3
  76. package/scss/transform/_skew.scss +23 -1
  77. package/scss/transform/_translate.scss +18 -9
  78. package/scss/typography/_font-size.scss +29 -1
  79. package/scss/typography/_font-style.scss +11 -1
  80. package/scss/typography/_font-weight.scss +53 -1
  81. package/scss/typography/_list-style.scss +17 -1
  82. package/scss/typography/_text-align.scss +8 -6
  83. package/scss/typography/_text-decoration.scss +23 -1
  84. package/scss/typography/_text-overflow.scss +12 -0
  85. package/scss/typography/_text-transform.scss +9 -8
  86. package/scss/typography/_vertical-align.scss +47 -1
  87. package/scss/typography/_white-space.scss +12 -8
@@ -1,4 +1,56 @@
1
- // TODO: docs
1
+ /// This is equivalent to `transform-origin: center;`.
2
+ /// @example transform-origin: center;
3
+ /// @name .k-origin-center
4
+ /// @group transform-origin
5
+ /// @contextType css
6
+
7
+ /// This is equivalent to `transform-origin: top;`.
8
+ /// @example transform-origin: top;
9
+ /// @name .k-origin-top
10
+ /// @group transform-origin
11
+ /// @contextType css
12
+
13
+ /// This is equivalent to `transform-origin: right;`.
14
+ /// @example transform-origin: right;
15
+ /// @name .k-origin-right
16
+ /// @group transform-origin
17
+ /// @contextType css
18
+
19
+ /// This is equivalent to `transform-origin: bottom;`.
20
+ /// @example transform-origin: bottom;
21
+ /// @name .k-origin-bottom
22
+ /// @group transform-origin
23
+ /// @contextType css
24
+
25
+ /// This is equivalent to `transform-origin: left;`.
26
+ /// @example transform-origin: left;
27
+ /// @name .k-origin-left
28
+ /// @group transform-origin
29
+ /// @contextType css
30
+
31
+ /// This is equivalent to `transform-origin: top-left;`.
32
+ /// @example transform-origin: top-left;
33
+ /// @name .k-origin-top-left
34
+ /// @group transform-origin
35
+ /// @contextType css
36
+
37
+ /// This is equivalent to `transform-origin: top-right;`.
38
+ /// @example transform-origin: top-right;
39
+ /// @name .k-origin-top-right
40
+ /// @group transform-origin
41
+ /// @contextType css
42
+
43
+ /// This is equivalent to `transform-origin: bottom-left;`.
44
+ /// @example transform-origin: bottom-left;
45
+ /// @name .k-origin-bottom-left
46
+ /// @group transform-origin
47
+ /// @contextType css
48
+
49
+ /// This is equivalent to `transform-origin: bottom-right;`.
50
+ /// @example transform-origin: bottom-right;
51
+ /// @name .k-origin-bottom-right
52
+ /// @group transform-origin
53
+ /// @contextType css
2
54
 
3
55
  @mixin kendo-utils--transform--origin() {
4
56
 
@@ -1,39 +1,47 @@
1
- /// This is equivalent to `transform: rotate( 0 );`. Does not rotate the element.
1
+ /// This is equivalent to `transform: rotate( 0 );`.
2
+ /// @example transform: rotate( 0 );
2
3
  /// @name .k-rotate-0
3
4
  /// @group transform
4
5
  /// @contextType css
5
6
 
6
- /// This is equivalent to `transform: rotate( 45deg );`. Rotates the element by 45 degrees.
7
+ /// This is equivalent to `transform: rotate( 45deg );`.
8
+ /// @example transform: rotate( 45deg );
7
9
  /// @name .k-rotate-45
8
10
  /// @group transform
9
11
  /// @contextType css
10
12
 
11
- /// This is equivalent to `transform: rotate( 90deg );`. Rotates the element by 90 degrees.
13
+ /// This is equivalent to `transform: rotate( 90deg );`.
14
+ /// @example transform: rotate( 90deg );
12
15
  /// @name .k-rotate-90
13
16
  /// @group transform
14
17
  /// @contextType css
15
18
 
16
- /// This is equivalent to `transform: rotate( 135deg );`. Rotates the element by 135 degrees.
19
+ /// This is equivalent to `transform: rotate( 135deg );`.
20
+ /// @example transform: rotate( 135deg );
17
21
  /// @name .k-rotate-135
18
22
  /// @group transform
19
23
  /// @contextType css
20
24
 
21
- /// This is equivalent to `transform: rotate( 180deg );`. Rotates the element by 180 degrees.
25
+ /// This is equivalent to `transform: rotate( 180deg );`.
26
+ /// @example transform: rotate( 180deg );
22
27
  /// @name .k-rotate-180
23
28
  /// @group transform
24
29
  /// @contextType css
25
30
 
26
- /// This is equivalent to `transform: rotate( 225deg );`. Rotates the element by 225 degrees.
31
+ /// This is equivalent to `transform: rotate( 225deg );`.
32
+ /// @example transform: rotate( 225deg );
27
33
  /// @name .k-rotate-225
28
34
  /// @group transform
29
35
  /// @contextType css
30
36
 
31
- /// This is equivalent to `transform: rotate( 270deg );`. Rotates the element by 270 degrees.
37
+ /// This is equivalent to `transform: rotate( 270deg );`.
38
+ /// @example transform: rotate( 270deg );
32
39
  /// @name .k-rotate-270
33
40
  /// @group transform
34
41
  /// @contextType css
35
42
 
36
- /// This is equivalent to `transform: rotate( 315deg );`. Rotates the element by 315 degrees.
43
+ /// This is equivalent to `transform: rotate( 315deg );`.
44
+ /// @example transform: rotate( 315deg );
37
45
  /// @name .k-rotate-315
38
46
  /// @group transform
39
47
  /// @contextType css
@@ -1,14 +1,17 @@
1
- /// This is equivalent to `transform: scale( 0, 0 );`. The element is shrunk and no longer visible.
1
+ /// This is equivalent to `transform: scale( 0, 0 );`.
2
+ /// @example transform: scale( 0, 0 );
2
3
  /// @name .k-scale-0
3
4
  /// @group transform
4
5
  /// @contextType css
5
6
 
6
- /// This is equivalent to `transform: scale( 1, 1 );`. The element has its default scale.
7
+ /// This is equivalent to `transform: scale( 1, 1 );`.
8
+ /// @example transform: scale( 1, 1 );
7
9
  /// @name .k-scale-1
8
10
  /// @group transform
9
11
  /// @contextType css
10
12
 
11
- /// This is equivalent to `transform: scale( 2, 2 );`. The element is scaling two times in both directions.
13
+ /// This is equivalent to `transform: scale( 2, 2 );`.
14
+ /// @example transform: scale( 2, 2 );
12
15
  /// @name .k-scale-2
13
16
  /// @group transform
14
17
  /// @contextType css
@@ -1,4 +1,26 @@
1
- // TODO: docs
1
+ /// This is equivalent to `transform: skewX(0deg);`.
2
+ /// @example transform: skewX(0deg);
3
+ /// @name .k-skew-x-0
4
+ /// @group skew
5
+ /// @contextType css
6
+
7
+ /// This is equivalent to `transform: skewX(1deg);`.
8
+ /// @example transform: skewX(1deg);
9
+ /// @name .k-skew-x-1
10
+ /// @group skew
11
+ /// @contextType css
12
+
13
+ /// This is equivalent to `transform: skewY(0deg);`.
14
+ /// @example transform: skewY(0deg);
15
+ /// @name .k-skew-y-0
16
+ /// @group skew
17
+ /// @contextType css
18
+
19
+ /// This is equivalent to `transform: skewY(1deg);`.
20
+ /// @example transform: skewY(1deg);
21
+ /// @name .k-skew-y-1
22
+ /// @group skew
23
+ /// @contextType css
2
24
 
3
25
  // sass-lint:disable function-name-format
4
26
  @function __skew-x( $val ) {
@@ -1,44 +1,53 @@
1
- /// This is equivalent to `transform: translate( 0, 0 );`. The element does not move.
1
+ /// This is equivalent to `transform: translate( 0, 0 );`.
2
+ /// @example transform: translate( 0, 0 );
2
3
  /// @name .k-translate-0
3
4
  /// @group transform
4
5
  /// @contextType css
5
6
 
6
- /// This is equivalent to `transform: translate( 0, 50% );`. The element moves vertically by 50% of its height.
7
+ /// This is equivalent to `transform: translate( 0, 50% );`.
8
+ /// @example transform: translate( 0, 50% );
7
9
  /// @name .k-translate-0-50
8
10
  /// @group transform
9
11
  /// @contextType css
10
12
 
11
- /// This is equivalent to `transform: translate( 0, 100% );`. The element moves vertically by 100% of its height.
13
+ /// This is equivalent to `transform: translate( 0, 100% );`.
14
+ /// @example transform: translate( 0, 100% );
12
15
  /// @name .k-translate-0-100
13
16
  /// @group transform
14
17
  /// @contextType css
15
18
 
16
- /// This is equivalent to `transform: translate( 50%, 0 );`. The element moves horizontally by 50% of its width.
19
+ /// This is equivalent to `transform: translate( 50%, 0 );`.
20
+ /// @example transform: translate( 50%, 0 );
17
21
  /// @name .k-translate-50-0
18
22
  /// @group transform
19
23
  /// @contextType css
20
24
 
21
- /// This is equivalent to `transform: translate( 50%, 50% );`. The element moves horizontally by 50% of its width and vertically by 50% of its height.
25
+ /// This is equivalent to `transform: translate( 50%, 50% );`.
26
+ /// @example transform: translate( 50%, 50% );
22
27
  /// @name .k-translate-50-50
23
28
  /// @group transform
24
29
  /// @contextType css
25
30
 
26
- /// This is equivalent to `transform: translate( 50%, 100% );`. The element moves horizontally by 50% of its width and vertically by 100% of its height.
31
+ /// This is equivalent to `transform: translate( 50%, 100% );`.
32
+ /// @example transform: translate( 50%, 100% );
27
33
  /// @name .k-translate-50-100
28
34
  /// @group transform
29
35
  /// @contextType css
30
36
 
31
- /// This is equivalent to `transform: translate( 100%, 0 );`. The element moves horizontally by 100% of its width.
37
+ /// This is equivalent to `transform: translate( 100%, 0 );`.
38
+ /// @example transform: translate( 100%, 0 );
32
39
  /// @name .k-translate-100-0
33
40
  /// @group transform
34
41
  /// @contextType css
35
42
 
36
- /// This is equivalent to `transform: translate( 100%, 50% );`. The element moves horizontally by 100% of its width and vertically by 50% of its height.
43
+ /// This is equivalent to `transform: translate( 100%, 50% );`.
44
+ /// @example transform: translate( 100%, 50% );
37
45
  /// @name .k-translate-100-50
38
46
  /// @group transform
39
47
  /// @contextType css
40
48
 
41
- /// This is equivalent to `transform: translate( 100%, 100% );`. The element moves horizontally by 100% of its width and vertically by 100% of its height.
49
+ /// This is equivalent to `transform: translate( 100%, 100% );`.
50
+ /// @example transform: translate( 100%, 100% );
42
51
  /// @name .k-translate-100-100
43
52
  /// @group transform
44
53
  /// @contextType css
@@ -1,4 +1,32 @@
1
- // TODO: docs
1
+ /// This is equivalent to `font-size: 10px;`.
2
+ /// @example font-size: 10px;
3
+ /// @name .k-font-xs
4
+ /// @group font-size
5
+ /// @contextType css
6
+
7
+ /// This is equivalent to `font-size: 12px;`.
8
+ /// @example font-size: 12px;
9
+ /// @name .k-font-sm
10
+ /// @group font-size
11
+ /// @contextType css
12
+
13
+ /// This is equivalent to `font-size: 14px;`.
14
+ /// @example font-size: 14px;
15
+ /// @name .k-font-md
16
+ /// @group font-size
17
+ /// @contextType css
18
+
19
+ /// This is equivalent to `font-size: 16px;`.
20
+ /// @example font-size: 16px;
21
+ /// @name .k-font-lg
22
+ /// @group font-size
23
+ /// @contextType css
24
+
25
+ /// This is equivalent to `font-size: 20px;`.
26
+ /// @example font-size: 20px;
27
+ /// @name .k-font-xl
28
+ /// @group font-size
29
+ /// @contextType css
2
30
 
3
31
  @mixin kendo-utils--typography--font-size() {
4
32
 
@@ -1,4 +1,14 @@
1
- // TODO: docs
1
+ /// This is equivalent to `font-style: italic;`.
2
+ /// @example font-style: italic;
3
+ /// @name .k-font-italic
4
+ /// @group font-style
5
+ /// @contextType css
6
+
7
+ /// This is equivalent to `font-style: normal;`.
8
+ /// @example font-style: normal;
9
+ /// @name .k-font-non-italic
10
+ /// @group font-style
11
+ /// @contextType css
2
12
 
3
13
  @mixin kendo-utils--typography--font-style() {
4
14
 
@@ -1,4 +1,56 @@
1
- // TODO: docs
1
+ /// This is equivalent to `font-weight: 100;`.
2
+ /// @example font-weight: 100;
3
+ /// @name .k-font-thin
4
+ /// @group font-weight
5
+ /// @contextType css
6
+
7
+ /// This is equivalent to `font-weight: 200;`.
8
+ /// @example font-weight: 200;
9
+ /// @name .k-font-extralight
10
+ /// @group font-weight
11
+ /// @contextType css
12
+
13
+ /// This is equivalent to `font-weight: 300;`.
14
+ /// @example font-weight: 300;
15
+ /// @name .k-font-light
16
+ /// @group font-weight
17
+ /// @contextType css
18
+
19
+ /// This is equivalent to `font-weight: 400;`.
20
+ /// @example font-weight: 400;
21
+ /// @name .k-font-normal
22
+ /// @group font-weight
23
+ /// @contextType css
24
+
25
+ /// This is equivalent to `font-weight: 500;`.
26
+ /// @example font-weight: 500;
27
+ /// @name .k-font-medium
28
+ /// @group font-weight
29
+ /// @contextType css
30
+
31
+ /// This is equivalent to `font-weight: 600;`.
32
+ /// @example font-weight: 600;
33
+ /// @name .k-font-semibold
34
+ /// @group font-weight
35
+ /// @contextType css
36
+
37
+ /// This is equivalent to `font-weight: 700;`.
38
+ /// @example font-weight: 700;
39
+ /// @name .k-font-bold
40
+ /// @group font-weight
41
+ /// @contextType css
42
+
43
+ /// This is equivalent to `font-weight: 800;`.
44
+ /// @example font-weight: 800;
45
+ /// @name .k-font-extrabold
46
+ /// @group font-weight
47
+ /// @contextType css
48
+
49
+ /// This is equivalent to `font-weight: 900;`.
50
+ /// @example font-weight: 900;
51
+ /// @name .k-font-black
52
+ /// @group font-weight
53
+ /// @contextType css
2
54
 
3
55
  @mixin kendo-utils--typography--font-weight() {
4
56
 
@@ -1,4 +1,20 @@
1
- // TODO: docs
1
+ /// This is equivalent to `list-style-type: none;`.
2
+ /// @example list-style-type: none;
3
+ /// @name .k-list-none
4
+ /// @group list-style
5
+ /// @contextType css
6
+
7
+ /// This is equivalent to `list-style-type: disc;`.
8
+ /// @example list-style-type: disc;
9
+ /// @name .k-list-disc
10
+ /// @group list-style
11
+ /// @contextType css
12
+
13
+ /// This is equivalent to `list-style-type: decimal;`.The marker of list items is a number.
14
+ /// @example list-style-type: decimal;
15
+ /// @name .k-list-decimal
16
+ /// @group list-style
17
+ /// @contextType css
2
18
 
3
19
  @mixin kendo-utils--typography--list-style-type() {
4
20
 
@@ -1,21 +1,23 @@
1
- // Text-align documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/text-align.
2
-
3
- /// This is equivalent to `text-align: left;`. The inline contents are aligned to the left edge of the line box.
1
+ /// This is equivalent to `text-align: left;`.
2
+ /// @example text-align: left;
4
3
  /// @name .k-text-left
5
4
  /// @group text-align
6
5
  /// @contextType css
7
6
 
8
- /// This is equivalent to `text-align: right;`. The inline contents are aligned to the right edge of the line box.
7
+ /// This is equivalent to `text-align: right;`.
8
+ /// @example text-align: right;
9
9
  /// @name .k-text-right
10
10
  /// @group text-align
11
11
  /// @contextType css
12
12
 
13
- /// This is equivalent to `text-align: center;`. The inline contents are centered within the line box.
13
+ /// This is equivalent to `text-align: center;`.
14
+ /// @example text-align: center;
14
15
  /// @name .k-text-center
15
16
  /// @group text-align
16
17
  /// @contextType css
17
18
 
18
- /// This is equivalent to `text-align: justify;`. The inline contents are justified. Text should be spaced to line up its left and right edges to the left and right edges of the line box, except for the last line.
19
+ /// This is equivalent to `text-align: justify;`.
20
+ /// @example text-align: justify;
19
21
  /// @name .k-text-justify
20
22
  /// @group text-align
21
23
  /// @contextType css
@@ -1,4 +1,26 @@
1
- // TODO: docs
1
+ /// This is equivalent to `text-decoration: underline;`.
2
+ /// @example text-decoration: underline;
3
+ /// @name .k-underline
4
+ /// @group text-decoration
5
+ /// @contextType css
6
+
7
+ /// This is equivalent to `text-decoration: overline;`.
8
+ /// @example text-decoration: overline;
9
+ /// @name .k-overline
10
+ /// @group text-decoration
11
+ /// @contextType css
12
+
13
+ /// This is equivalent to `text-decoration: line-through;`.
14
+ /// @example text-decoration: line-through;
15
+ /// @name .k-line-through
16
+ /// @group text-decoration
17
+ /// @contextType css
18
+
19
+ /// This is equivalent to `text-decoration: none-decoration;`.
20
+ /// @example text-decoration: none-decoration;
21
+ /// @name .k-none-decoration
22
+ /// @group text-decoration
23
+ /// @contextType css
2
24
 
3
25
  @mixin kendo-utils--typography--text-decoration() {
4
26
 
@@ -1,3 +1,15 @@
1
+ /// This is equivalent to `text-overflow: clip;`.
2
+ /// @example text-overflow: clip;
3
+ /// @name .k-text-clip
4
+ /// @group text-overflow
5
+ /// @contextType css
6
+
7
+ /// This is equivalent to `text-overflow: ellipsis; white-space: nowrap; overflow: hidden;`.
8
+ /// @example text-overflow: ellipsis; white-space: nowrap; overflow: hidden;
9
+ /// @name .k-text-ellipsis
10
+ /// @group text-overflow
11
+ /// @contextType css
12
+
1
13
  @mixin kendo-utils--typography--text-overflow() {
2
14
 
3
15
  // Text overflow utility classes
@@ -1,17 +1,18 @@
1
- // Text-transform documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/text-transform.
2
-
3
- /// This is equivalent to `text-transform: lowercase;`. Is a keyword that converts all characters to lowercase.
4
- /// @name k-text-lowercase
1
+ /// This is equivalent to `text-transform: lowercase;`.
2
+ /// @example text-transform: lowercase;
3
+ /// @name .k-text-lowercase
5
4
  /// @group text-transform
6
5
  /// @contextType css
7
6
 
8
- /// This is equivalent to `text-transform: uppercase;`. Is a keyword that converts all characters to uppercase.
9
- /// @name k-text-uppercase
7
+ /// This is equivalent to `text-transform: uppercase;`.
8
+ /// @example text-transform: uppercase;
9
+ /// @name .k-text-uppercase
10
10
  /// @group text-transform
11
11
  /// @contextType css
12
12
 
13
- /// This is equivalent to `text-transform: capitalize;`. Is a keyword that converts the first letter of each word to uppercase. Other characters remain unchanged (they retain their original case as written in the element's text).
14
- /// @name k-text-capitalize
13
+ /// This is equivalent to `text-transform: capitalize;`.
14
+ /// @example text-transform: capitalize;
15
+ /// @name .k-text-capitalize
15
16
  /// @group text-transform
16
17
  /// @contextType css
17
18
 
@@ -1,4 +1,50 @@
1
- // TODO: docs
1
+ /// This is equivalent to `vertical-align: baseline;`.
2
+ /// @example vertical-align: baseline;
3
+ /// @name .k-align-baseline
4
+ /// @group vertical-align
5
+ /// @contextType css
6
+
7
+ /// This is equivalent to `vertical-align: top;`.
8
+ /// @example vertical-align: top;
9
+ /// @name .k-align-top
10
+ /// @group vertical-align
11
+ /// @contextType css
12
+
13
+ /// This is equivalent to `vertical-align: middle;`.
14
+ /// @example vertical-align: middle;
15
+ /// @name .k-align-middle
16
+ /// @group vertical-align
17
+ /// @contextType css
18
+
19
+ /// This is equivalent to `vertical-align: bottom;`.
20
+ /// @example vertical-align: bottom;
21
+ /// @name .k-align-bottom
22
+ /// @group vertical-align
23
+ /// @contextType css
24
+
25
+ /// This is equivalent to `vertical-align: text-top;`.
26
+ /// @example vertical-align: text-top;
27
+ /// @name .k-align-text-top
28
+ /// @group vertical-align
29
+ /// @contextType css
30
+
31
+ /// This is equivalent to `vertical-align: text-bottom;`.
32
+ /// @example vertical-align: text-bottom;
33
+ /// @name .k-align-text-bottom
34
+ /// @group vertical-align
35
+ /// @contextType css
36
+
37
+ /// This is equivalent to `vertical-align: sub;`.
38
+ /// @example vertical-align: sub;
39
+ /// @name .k-align-sub
40
+ /// @group vertical-align
41
+ /// @contextType css
42
+
43
+ /// This is equivalent to `vertical-align: super;`.
44
+ /// @example vertical-align: super;
45
+ /// @name .k-align-super
46
+ /// @group vertical-align
47
+ /// @contextType css
2
48
 
3
49
  @mixin kendo-utils--typography--vertical-align() {
4
50
 
@@ -1,31 +1,35 @@
1
- // White-space documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/white-space.
2
-
3
- /// This is equivalent to `white-space: normal;`. Sequences of white space are collapsed. Newline characters in the source are handled the same as other white space. Lines are broken as necessary to fill line boxes.
1
+ /// This is equivalent to `white-space: normal;`.
2
+ /// @example white-space: normal;
4
3
  /// @name .k-white-space-normal
5
4
  /// @group white-space
6
5
  /// @contextType css
7
6
 
8
- /// This is equivalent to `white-space: nowrap;`. Collapses white space as for normal, but suppresses line breaks (text wrapping) within the source.
7
+ /// This is equivalent to `white-space: nowrap;`.
8
+ /// @example white-space: nowrap;
9
9
  /// @name .k-white-space-nowrap
10
10
  /// @group white-space
11
11
  /// @contextType css
12
12
 
13
- /// This is equivalent to `white-space: pre;`. Sequences of white space are preserved. Lines are only broken at newline characters in the source and at <br> elements.
13
+ /// This is equivalent to `white-space: pre;`.
14
+ /// @example white-space: pre;
14
15
  /// @name .k-white-space-pre
15
16
  /// @group white-space
16
17
  /// @contextType css
17
18
 
18
- /// This is equivalent to `white-space: pre-wrap;`. Sequences of white space are preserved. Lines are broken at newline characters, at <br>, and as necessary to fill line boxes.
19
+ /// This is equivalent to `white-space: pre-wrap;`.
20
+ /// @example white-space: pre-wrap;
19
21
  /// @name .k-white-space-pre-wrap
20
22
  /// @group white-space
21
23
  /// @contextType css
22
24
 
23
- /// This is equivalent to `white-space: pre-line;`. Sequences of white space are collapsed. Lines are broken at newline characters, at <br>, and as necessary to fill line boxes.
25
+ /// This is equivalent to `white-space: pre-line;`.
26
+ /// @example white-space: pre-line;
24
27
  /// @name .k-white-space-pre-line
25
28
  /// @group white-space
26
29
  /// @contextType css
27
30
 
28
- /// This is equivalent to `white-space: break-spaces;`. Collapses white space as for normal, but suppresses line breaks (text wrapping) within the source.
31
+ /// This is equivalent to `white-space: break-spaces;`.
32
+ /// @example white-space: break-spaces;
29
33
  /// @name .k-white-space-break-spaces
30
34
  /// @group white-space
31
35
  /// @contextType css