@progress/kendo-theme-core 12.2.4-dev.1 → 12.3.0-dev.1
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 +1 -1
- package/dist/meta/sassdoc-data.json +552 -0
- package/dist/meta/sassdoc-raw-data.json +133 -0
- package/dist/meta/variables.json +295 -7
- package/package.json +2 -2
- package/scss/components/action-sheet/_layout.scss +2 -0
- package/scss/components/bottom-navigation/_layout.scss +2 -0
- package/scss/components/breadcrumb/_layout.scss +1 -1
- package/scss/components/bubble/_layout.scss +8 -0
- package/scss/components/bubble/_theme.scss +0 -1
- package/scss/components/button/_layout.scss +3 -2
- package/scss/components/calendar/_layout.scss +2 -0
- package/scss/components/chart-wizard/_layout.scss +3 -0
- package/scss/components/chat/_layout.scss +7 -5
- package/scss/components/checkbox/_layout.scss +3 -1
- package/scss/components/chip/_layout.scss +3 -1
- package/scss/components/colorgradient/_layout.scss +2 -0
- package/scss/components/colorpalette/_layout.scss +2 -0
- package/scss/components/datetimepicker/_layout.scss +3 -1
- package/scss/components/dock-manager/_layout.scss +3 -1
- package/scss/components/drawer/_layout.scss +4 -2
- package/scss/components/fab/_layout.scss +3 -1
- package/scss/components/filter/_layout.scss +2 -0
- package/scss/components/gantt/_layout.scss +5 -0
- package/scss/components/input/_layout.scss +3 -0
- package/scss/components/list/_layout.scss +3 -3
- package/scss/components/listview/_layout.scss +2 -0
- package/scss/components/menu/_layout.scss +8 -0
- package/scss/components/panelbar/_layout.scss +2 -2
- package/scss/components/progressbar/_layout.scss +2 -1
- package/scss/components/progressbar/_theme.scss +2 -1
- package/scss/components/radio/_layout.scss +3 -1
- package/scss/components/rating/_layout.scss +2 -1
- package/scss/components/ripple/_layout.scss +3 -2
- package/scss/components/scroller/_layout.scss +3 -2
- package/scss/components/scrollview/_layout.scss +3 -0
- package/scss/components/slider/_layout.scss +3 -2
- package/scss/components/splitter/_layout.scss +2 -0
- package/scss/components/spreadsheet/_layout.scss +4 -0
- package/scss/components/stepper/_layout.scss +3 -3
- package/scss/components/suggestion/_layout.scss +2 -3
- package/scss/components/switch/_layout.scss +6 -2
- package/scss/components/tabstrip/_layout.scss +3 -1
- package/scss/components/timeline/_layout.scss +3 -2
- package/scss/components/treeview/_layout.scss +2 -0
- package/scss/index.scss +4 -2
- package/scss/motion/index.scss +208 -3
- package/scss/styles/_animations.scss +35 -35
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
@use "../../spacing/index.scss" as *;
|
|
3
3
|
@use "../../border-radii/index.scss" as *;
|
|
4
4
|
@use "../../z-index/index.scss" as *;
|
|
5
|
+
@use "../../motion/index.scss" as *;
|
|
5
6
|
@use "./variables.scss" as *;
|
|
6
7
|
@use "../toolbar/_variables.scss" as *;
|
|
7
8
|
@use "../bubble/_variables.scss" as *;
|
|
@@ -99,7 +100,7 @@
|
|
|
99
100
|
&,
|
|
100
101
|
+ .k-chat-user-status {
|
|
101
102
|
margin-block-end: calc($kendo-chat-message-meta-line-height * $kendo-chat-message-meta-font-size + $kendo-chat-bubble-spacing);
|
|
102
|
-
transition: margin
|
|
103
|
+
transition: margin k-transition(fade-out);
|
|
103
104
|
}
|
|
104
105
|
}
|
|
105
106
|
|
|
@@ -192,7 +193,7 @@
|
|
|
192
193
|
display: flex;
|
|
193
194
|
flex-direction: column;
|
|
194
195
|
position: relative;
|
|
195
|
-
transition: margin
|
|
196
|
+
transition: margin k-transition(fade-out);
|
|
196
197
|
outline: none;
|
|
197
198
|
overflow-wrap: break-word;
|
|
198
199
|
|
|
@@ -250,7 +251,7 @@
|
|
|
250
251
|
.k-chat-bubble.k-bubble-expandable {
|
|
251
252
|
.k-bubble-content {
|
|
252
253
|
height: auto;
|
|
253
|
-
transition: height
|
|
254
|
+
transition: height k-transition(shrink);
|
|
254
255
|
}
|
|
255
256
|
}
|
|
256
257
|
|
|
@@ -275,7 +276,7 @@
|
|
|
275
276
|
line-height: $kendo-chat-message-meta-line-height;
|
|
276
277
|
white-space: nowrap;
|
|
277
278
|
pointer-events: none;
|
|
278
|
-
transition: height
|
|
279
|
+
transition: height k-transition(fade-out);
|
|
279
280
|
height: 0;
|
|
280
281
|
overflow: hidden;
|
|
281
282
|
}
|
|
@@ -304,7 +305,7 @@
|
|
|
304
305
|
display: flex;
|
|
305
306
|
flex-direction: column;
|
|
306
307
|
gap: $kendo-chat-message-gap;
|
|
307
|
-
transition: height
|
|
308
|
+
transition: height k-transition(fade-out);
|
|
308
309
|
}
|
|
309
310
|
|
|
310
311
|
a {
|
|
@@ -325,6 +326,7 @@
|
|
|
325
326
|
.k-message-time,
|
|
326
327
|
.k-message-status {
|
|
327
328
|
height: calc($kendo-chat-message-meta-line-height * $kendo-chat-message-meta-font-size);
|
|
329
|
+
transition: height k-transition(fade-in);
|
|
328
330
|
}
|
|
329
331
|
}
|
|
330
332
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../../spacing/index.scss" as *;
|
|
3
3
|
@use "../../z-index/index.scss" as *;
|
|
4
|
+
@use "../../motion/index.scss" as *;
|
|
4
5
|
@use "../../_variables.scss" as *;
|
|
5
6
|
@use "./_variables.scss" as *;
|
|
6
7
|
|
|
@@ -23,6 +24,7 @@
|
|
|
23
24
|
position: relative;
|
|
24
25
|
cursor: pointer;
|
|
25
26
|
-webkit-appearance: none;
|
|
27
|
+
transition: background-color k-transition(rapid), border-color k-transition(rapid), box-shadow k-transition(rapid), opacity k-transition(rapid);
|
|
26
28
|
}
|
|
27
29
|
|
|
28
30
|
|
|
@@ -183,7 +185,7 @@
|
|
|
183
185
|
left: 50%;
|
|
184
186
|
border-radius: 100%;
|
|
185
187
|
z-index: k-z-index("bottom");
|
|
186
|
-
transition: opacity
|
|
188
|
+
transition: opacity k-transition(rapid), transform k-transition(rapid);
|
|
187
189
|
transform: translate(-50%, -50%) scale(0);
|
|
188
190
|
transform-origin: center center;
|
|
189
191
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
@use "./_variables.scss" as *;
|
|
2
1
|
@use "sass:map";
|
|
2
|
+
@use "./_variables.scss" as *;
|
|
3
|
+
@use "../../motion/index.scss" as *;
|
|
3
4
|
|
|
4
5
|
@mixin kendo-chip--layout-base() {
|
|
5
6
|
|
|
@@ -23,6 +24,7 @@
|
|
|
23
24
|
overflow: hidden;
|
|
24
25
|
cursor: pointer;
|
|
25
26
|
user-select: none;
|
|
27
|
+
transition: color k-transition(rapid), background-color k-transition(rapid), box-shadow k-transition(rapid), opacity k-transition(rapid);
|
|
26
28
|
|
|
27
29
|
*,
|
|
28
30
|
*::before,
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
@use "../../mixins/index.scss" as *;
|
|
4
4
|
@use "../../color-system/_constants.scss" as *;
|
|
5
5
|
@use "../../z-index/index.scss" as *;
|
|
6
|
+
@use "../../motion/index.scss" as *;
|
|
6
7
|
@use "./variables.scss" as *;
|
|
7
8
|
|
|
8
9
|
@mixin kendo-color-gradient--layout-base() {
|
|
@@ -58,6 +59,7 @@
|
|
|
58
59
|
left: 50%;
|
|
59
60
|
z-index: k-z-index("base", 1);
|
|
60
61
|
cursor: pointer;
|
|
62
|
+
transition: outline-color k-transition(rapid), background-color k-transition(rapid), border-color k-transition(rapid);
|
|
61
63
|
}
|
|
62
64
|
|
|
63
65
|
.k-hsv-controls {
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
@use "../../color-system/_constants.scss" as *;
|
|
3
3
|
@use "./variables.scss" as *;
|
|
4
4
|
@use "../../z-index/index.scss" as *;
|
|
5
|
+
@use "../../motion/index.scss" as *;
|
|
5
6
|
|
|
6
7
|
@mixin kendo-color-palette--layout-base() {
|
|
7
8
|
|
|
@@ -40,6 +41,7 @@
|
|
|
40
41
|
box-sizing: border-box;
|
|
41
42
|
overflow: hidden;
|
|
42
43
|
cursor: pointer;
|
|
44
|
+
transition: box-shadow k-transition(rapid);
|
|
43
45
|
|
|
44
46
|
&:hover,
|
|
45
47
|
&.k-hover {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "./variables.scss" as *;
|
|
3
|
+
@use "../../motion/index.scss" as *;
|
|
3
4
|
@use "../action-buttons/_variables.scss" as *;
|
|
4
5
|
|
|
5
6
|
@mixin kendo-date-time-picker--layout-base() {
|
|
@@ -10,7 +11,6 @@
|
|
|
10
11
|
// Datetime selector
|
|
11
12
|
.k-datetime-selector {
|
|
12
13
|
display: flex;
|
|
13
|
-
transition: transform .2s;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
// Wrap
|
|
@@ -56,9 +56,11 @@
|
|
|
56
56
|
// Tabs
|
|
57
57
|
.k-date-tab .k-datetime-selector {
|
|
58
58
|
transform: translateX(0);
|
|
59
|
+
transition: transform k-transition(slide-in);
|
|
59
60
|
}
|
|
60
61
|
.k-time-tab .k-datetime-selector {
|
|
61
62
|
transform: translateX(-100%);
|
|
63
|
+
transition: transform k-transition(slide-out);
|
|
62
64
|
}
|
|
63
65
|
|
|
64
66
|
:is(.k-rtl, [dir="rtl"]) .k-time-tab .k-datetime-selector,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@use "../../typography/index.scss" as *;
|
|
2
|
-
@use "./variables.scss" as *;
|
|
3
2
|
@use "../../z-index/index.scss" as *;
|
|
3
|
+
@use "../../motion/index.scss" as *;
|
|
4
|
+
@use "./variables.scss" as *;
|
|
4
5
|
|
|
5
6
|
@mixin kendo-dock-manager--layout-base() {
|
|
6
7
|
|
|
@@ -198,6 +199,7 @@
|
|
|
198
199
|
outline-width: $kendo-dock-indicator-outline-width;
|
|
199
200
|
outline-style: $kendo-dock-indicator-outline-style;
|
|
200
201
|
z-index: k-z-index("top", 1);
|
|
202
|
+
transition: color k-transition(emphasis), background-color k-transition(emphasis);
|
|
201
203
|
|
|
202
204
|
&.k-dock-indicator-middle {
|
|
203
205
|
filter: none;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@use "../../color-system/_constants.scss" as *;
|
|
2
2
|
@use "./variables.scss" as *;
|
|
3
3
|
@use "../../z-index/index.scss" as *;
|
|
4
|
+
@use "../../motion/index.scss" as *;
|
|
4
5
|
|
|
5
6
|
@mixin kendo-drawer--layout-base() {
|
|
6
7
|
|
|
@@ -31,7 +32,7 @@
|
|
|
31
32
|
display: flex;
|
|
32
33
|
flex-direction: column;
|
|
33
34
|
flex: 0 0 auto;
|
|
34
|
-
transition: all
|
|
35
|
+
transition: all k-transition(grow);
|
|
35
36
|
overflow: hidden;
|
|
36
37
|
-webkit-touch-callout: none;
|
|
37
38
|
-webkit-tap-highlight-color: $kendo-color-rgba-transparent;
|
|
@@ -114,7 +115,7 @@
|
|
|
114
115
|
overflow-x: hidden;
|
|
115
116
|
overflow-y: auto;
|
|
116
117
|
scrollbar-width: thin; // Scrollbar styles for Mozilla
|
|
117
|
-
transition: all
|
|
118
|
+
transition: all k-transition(grow);
|
|
118
119
|
|
|
119
120
|
// Scrollbar styles for Chrome, Safari and Opera
|
|
120
121
|
&::-webkit-scrollbar {
|
|
@@ -147,6 +148,7 @@
|
|
|
147
148
|
gap: $kendo-drawer-item-spacing;
|
|
148
149
|
align-items: center;
|
|
149
150
|
cursor: pointer;
|
|
151
|
+
transition: background-color k-transition(snappy), color k-transition(snappy), box-shadow k-transition(snappy);
|
|
150
152
|
|
|
151
153
|
> .k-drawer-link {
|
|
152
154
|
margin-block: calc( #{$kendo-drawer-item-padding-y} * -1 );
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
@use "../../spacing/index.scss" as *;
|
|
2
1
|
@use "sass:map";
|
|
3
2
|
@use "./variables.scss" as *;
|
|
3
|
+
@use "../../spacing/index.scss" as *;
|
|
4
|
+
@use "../../motion/index.scss" as *;
|
|
4
5
|
|
|
5
6
|
@mixin kendo-fab--layout-base() {
|
|
6
7
|
|
|
@@ -26,6 +27,7 @@
|
|
|
26
27
|
text-overflow: ellipsis;
|
|
27
28
|
cursor: pointer;
|
|
28
29
|
outline: none;
|
|
30
|
+
transition: background-color k-transition(rapid), border-color k-transition(rapid), box-shadow k-transition(rapid), opacity k-transition(rapid);
|
|
29
31
|
|
|
30
32
|
*,
|
|
31
33
|
*::before,
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@use "./variables.scss" as *;
|
|
2
|
+
@use "../../motion/index.scss" as *;
|
|
2
3
|
|
|
3
4
|
@mixin kendo-filter--layout-base() {
|
|
4
5
|
|
|
@@ -49,6 +50,7 @@
|
|
|
49
50
|
|
|
50
51
|
.k-toolbar {
|
|
51
52
|
border-style: solid;
|
|
53
|
+
transition: box-shadow k-transition(snappy);
|
|
52
54
|
}
|
|
53
55
|
}
|
|
54
56
|
.k-filter-operator .k-dropdown-list {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@use "../../typography/index.scss" as *;
|
|
2
2
|
@use "../../color-system/_constants.scss" as *;
|
|
3
3
|
@use "../../border-radii/index.scss" as *;
|
|
4
|
+
@use "../../motion/index.scss" as *;
|
|
4
5
|
@use "../../mixins/index.scss" as *;
|
|
5
6
|
@use "./variables.scss" as *;
|
|
6
7
|
@use "../table/_variables.scss" as *;
|
|
@@ -499,6 +500,7 @@
|
|
|
499
500
|
border-style: solid;
|
|
500
501
|
box-sizing: border-box;
|
|
501
502
|
transform: rotate(45deg);
|
|
503
|
+
transition: background-color k-transition(rapid);
|
|
502
504
|
}
|
|
503
505
|
|
|
504
506
|
|
|
@@ -512,6 +514,7 @@
|
|
|
512
514
|
.k-task-summary,
|
|
513
515
|
.k-task-summary-complete {
|
|
514
516
|
background-color: currentColor;
|
|
517
|
+
transition: color k-transition(rapid);
|
|
515
518
|
|
|
516
519
|
&::before,
|
|
517
520
|
&::after {
|
|
@@ -552,6 +555,7 @@
|
|
|
552
555
|
border-style: solid;
|
|
553
556
|
box-sizing: border-box;
|
|
554
557
|
cursor: default;
|
|
558
|
+
transition: background-color k-transition(rapid);
|
|
555
559
|
|
|
556
560
|
.k-resize-handle {
|
|
557
561
|
opacity: .5;
|
|
@@ -594,6 +598,7 @@
|
|
|
594
598
|
width: 20%;
|
|
595
599
|
position: absolute;
|
|
596
600
|
z-index: k-z-index("base", 1);
|
|
601
|
+
transition: background-color k-transition(rapid);
|
|
597
602
|
inset-block-start: 0;
|
|
598
603
|
inset-block-end: 0;
|
|
599
604
|
inset-inline-start: 0;
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
@use "./_variables.scss" as *;
|
|
6
6
|
@use "../icons/_variables.scss" as *;
|
|
7
7
|
@use "../../z-index/index.scss" as *;
|
|
8
|
+
@use "../../motion/index.scss" as *;
|
|
8
9
|
|
|
9
10
|
@mixin kendo-input--layout-base() {
|
|
10
11
|
|
|
@@ -35,6 +36,8 @@
|
|
|
35
36
|
text-overflow: ellipsis;
|
|
36
37
|
-webkit-appearance: none;
|
|
37
38
|
|
|
39
|
+
transition: color k-transition(rapid), background-color k-transition(rapid), border-color k-transition(rapid), box-shadow k-transition(rapid), opacity k-transition(rapid);
|
|
40
|
+
|
|
38
41
|
*,
|
|
39
42
|
*::before,
|
|
40
43
|
*::after {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
@use "./_variables.scss" as *;
|
|
3
3
|
@use "../icons/_variables.scss" as *;
|
|
4
|
+
@use "../../motion/index.scss" as *;
|
|
4
5
|
@use "sass:map";
|
|
5
6
|
|
|
6
7
|
@mixin kendo-list--layout-base() {
|
|
@@ -105,9 +106,8 @@
|
|
|
105
106
|
align-content: center;
|
|
106
107
|
gap: $kendo-icon-spacing;
|
|
107
108
|
position: relative;
|
|
108
|
-
|
|
109
|
-
transition
|
|
110
|
-
transition-timing-function: ease;
|
|
109
|
+
|
|
110
|
+
transition: color k-transition(snappy), background-color k-transition(snappy), outline-color k-transition(snappy), box-shadow k-transition(snappy);
|
|
111
111
|
|
|
112
112
|
&.k-first::before {
|
|
113
113
|
content: "";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@use "./variables.scss" as *;
|
|
2
|
+
@use "../../motion/index.scss" as *;
|
|
2
3
|
|
|
3
4
|
@mixin kendo-listview--layout-base() {
|
|
4
5
|
|
|
@@ -71,6 +72,7 @@
|
|
|
71
72
|
border-style: solid;
|
|
72
73
|
box-sizing: border-box;
|
|
73
74
|
flex-shrink: 0;
|
|
75
|
+
transition: color k-transition(snappy), border-color k-transition(snappy), background-color k-transition(snappy);
|
|
74
76
|
}
|
|
75
77
|
.k-listview-item-padding-rectangle {
|
|
76
78
|
padding-block: $kendo-listview-item-padding-y;
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
@use "../icons/_variables.scss" as *;
|
|
3
3
|
@use "./variables.scss" as *;
|
|
4
4
|
@use "../../z-index/index.scss" as *;
|
|
5
|
+
@use "../../motion/index.scss" as *;
|
|
5
6
|
|
|
6
7
|
@mixin kendo-menu--layout-base() {
|
|
7
8
|
|
|
@@ -39,6 +40,7 @@
|
|
|
39
40
|
flex: none;
|
|
40
41
|
position: relative;
|
|
41
42
|
user-select: none;
|
|
43
|
+
transition: color k-transition(rapid), background-color k-transition(rapid), border-color k-transition(rapid), box-shadow k-transition(rapid);
|
|
42
44
|
|
|
43
45
|
&.k-selected {
|
|
44
46
|
font-weight: $kendo-menu-item-selected-font-weight;
|
|
@@ -320,4 +322,10 @@
|
|
|
320
322
|
}
|
|
321
323
|
}
|
|
322
324
|
|
|
325
|
+
.k-menu-group,
|
|
326
|
+
.k-menu.k-context-menu {
|
|
327
|
+
.k-item > .k-link {
|
|
328
|
+
transition: color k-transition(rapid), background-color k-transition(rapid), border-color k-transition(rapid), box-shadow k-transition(rapid);
|
|
329
|
+
}
|
|
330
|
+
}
|
|
323
331
|
}
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
position: relative;
|
|
54
54
|
user-select: none;
|
|
55
55
|
cursor: default;
|
|
56
|
-
transition:
|
|
56
|
+
transition: color k-transition(rapid), background-color k-transition(rapid), border-color k-transition(rapid), box-shadow k-transition(rapid);
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
59
|
> .k-panelbar-header + .k-panelbar-header {
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
position: relative;
|
|
88
88
|
user-select: none;
|
|
89
89
|
cursor: default;
|
|
90
|
-
transition:
|
|
90
|
+
transition: color k-transition(rapid), background-color k-transition(rapid), border-color k-transition(rapid), box-shadow k-transition(rapid);
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
// Hierarchy items
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
@use "../../border-radii/index.scss" as *;
|
|
3
3
|
@use "../../color-system/_constants.scss" as *;
|
|
4
4
|
@use "../../spacing/index.scss" as *;
|
|
5
|
+
@use "../../motion/index.scss" as *;
|
|
5
6
|
@use "./variables.scss" as *;
|
|
6
7
|
|
|
7
8
|
@mixin kendo-progressbar--layout-base() {
|
|
@@ -192,7 +193,7 @@
|
|
|
192
193
|
|
|
193
194
|
> .k-progressbar-value,
|
|
194
195
|
> .k-progressbar-value > .k-progress-status-wrap {
|
|
195
|
-
transition: width
|
|
196
|
+
transition: width k-duration(brief) k-easing(standard);
|
|
196
197
|
}
|
|
197
198
|
}
|
|
198
199
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use "../../mixins/index.scss" as *;
|
|
2
2
|
@use "../../functions/index.scss" as *;
|
|
3
|
+
@use "../../motion/index.scss" as *;
|
|
3
4
|
@use "../../color-system/_constants.scss" as *;
|
|
4
5
|
@use "../../color-system/_functions.scss" as *;
|
|
5
6
|
@use "../../_variables.scss" as *;
|
|
@@ -49,7 +50,7 @@
|
|
|
49
50
|
|
|
50
51
|
.k-circular-progressbar-arc {
|
|
51
52
|
stroke: $kendo-circular-progressbar-arc-stroke;
|
|
52
|
-
transition: stroke
|
|
53
|
+
transition: stroke k-transition(smooth);
|
|
53
54
|
}
|
|
54
55
|
|
|
55
56
|
}
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
@use "../../mixins/index.scss" as *;
|
|
3
3
|
@use "../../spacing/index.scss" as *;
|
|
4
4
|
@use "../../z-index/index.scss" as *;
|
|
5
|
+
@use "../../motion/index.scss" as *;
|
|
5
6
|
@use "../../_variables.scss" as *;
|
|
6
7
|
@use "./variables.scss" as *;
|
|
7
8
|
|
|
@@ -26,6 +27,7 @@
|
|
|
26
27
|
position: relative;
|
|
27
28
|
cursor: pointer;
|
|
28
29
|
-webkit-appearance: none;
|
|
30
|
+
transition: background-color k-transition(rapid), border-color k-transition(rapid), box-shadow k-transition(rapid), opacity k-transition(rapid);
|
|
29
31
|
}
|
|
30
32
|
|
|
31
33
|
|
|
@@ -178,7 +180,7 @@
|
|
|
178
180
|
top: 50%;
|
|
179
181
|
border-radius: 100%;
|
|
180
182
|
z-index: k-z-index("bottom");
|
|
181
|
-
transition: opacity
|
|
183
|
+
transition: opacity k-transition(rapid), transform k-transition(rapid);
|
|
182
184
|
transform: translate(-50%, -50%) scale(0);
|
|
183
185
|
transform-origin: center center;
|
|
184
186
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@use "../../color-system/_constants.scss" as *;
|
|
2
|
+
@use "../../motion/index.scss" as *;
|
|
2
3
|
@use "./variables.scss" as *;
|
|
3
4
|
|
|
4
5
|
@mixin kendo-rating--layout-base() {
|
|
@@ -44,7 +45,7 @@
|
|
|
44
45
|
margin: 0;
|
|
45
46
|
outline: 0;
|
|
46
47
|
overflow: hidden;
|
|
47
|
-
transition: color
|
|
48
|
+
transition: color k-transition(bouncy);
|
|
48
49
|
|
|
49
50
|
* {
|
|
50
51
|
pointer-events: none;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@use "../../z-index/index.scss" as *;
|
|
2
|
+
@use "../../motion/index.scss" as *;
|
|
2
3
|
|
|
3
4
|
@mixin kendo-ripple--layout-base() {
|
|
4
5
|
|
|
@@ -23,7 +24,7 @@
|
|
|
23
24
|
border-radius: 50%;
|
|
24
25
|
padding: 0;
|
|
25
26
|
transform: translate(-50%, -50%) scale(0);
|
|
26
|
-
transition: opacity
|
|
27
|
+
transition: opacity k-transition(fade-out), transform k-transition(smooth);
|
|
27
28
|
opacity: .1;
|
|
28
29
|
background-color: currentColor;
|
|
29
30
|
}
|
|
@@ -34,7 +35,7 @@
|
|
|
34
35
|
|
|
35
36
|
.k-ripple-focus::after {
|
|
36
37
|
visibility: visible;
|
|
37
|
-
animation: ripple
|
|
38
|
+
animation: ripple k-transition(fluid);
|
|
38
39
|
}
|
|
39
40
|
|
|
40
41
|
@keyframes ripple {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@use "../../z-index/index.scss" as *;
|
|
2
|
+
@use "../../motion/index.scss" as *;
|
|
2
3
|
|
|
3
4
|
@mixin kendo-scroller--layout-base() {
|
|
4
5
|
|
|
@@ -44,7 +45,7 @@
|
|
|
44
45
|
width: 2rem;
|
|
45
46
|
font-size: 2rem;
|
|
46
47
|
transform: rotate(0deg);
|
|
47
|
-
transition: transform
|
|
48
|
+
transition: transform k-duration(speedy) k-easing(linear);
|
|
48
49
|
}
|
|
49
50
|
.km-widget .km-scroller-release .km-icon {
|
|
50
51
|
transform: rotate(180deg);
|
|
@@ -63,7 +64,7 @@
|
|
|
63
64
|
width: .4em;
|
|
64
65
|
opacity: 0;
|
|
65
66
|
transform-origin: 0 0;
|
|
66
|
-
transition: opacity
|
|
67
|
+
transition: opacity k-duration(speedy) k-easing(linear);
|
|
67
68
|
}
|
|
68
69
|
|
|
69
70
|
.k-map,
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@use "../../color-system/_constants.scss" as *;
|
|
2
|
+
@use "../../motion/index.scss" as *;
|
|
2
3
|
@use "./variables.scss" as *;
|
|
3
4
|
|
|
4
5
|
@mixin kendo-scrollview--layout-base() {
|
|
@@ -113,6 +114,7 @@
|
|
|
113
114
|
cursor: pointer;
|
|
114
115
|
pointer-events: all;
|
|
115
116
|
vertical-align: top;
|
|
117
|
+
transition: background-color k-transition(rapid), border-color k-transition(rapid), box-shadow k-transition(rapid);
|
|
116
118
|
|
|
117
119
|
&::before {
|
|
118
120
|
content: "";
|
|
@@ -138,6 +140,7 @@
|
|
|
138
140
|
text-decoration: none;
|
|
139
141
|
user-select: none;
|
|
140
142
|
cursor: pointer;
|
|
143
|
+
transition: opacity k-transition(rapid);
|
|
141
144
|
|
|
142
145
|
.k-icon {
|
|
143
146
|
display: table-cell;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@use "sass:math";
|
|
2
2
|
@use "sass:list";
|
|
3
3
|
@use "../../color-system/_constants.scss" as *;
|
|
4
|
+
@use "../../motion/index.scss" as *;
|
|
4
5
|
@use "./variables.scss" as *;
|
|
5
6
|
@use "../tooltip/_variables.scss" as *;
|
|
6
7
|
|
|
@@ -320,7 +321,7 @@
|
|
|
320
321
|
.k-slider-transitions {
|
|
321
322
|
&.k-slider-horizontal {
|
|
322
323
|
.k-draghandle {
|
|
323
|
-
transition: inset-inline-start $kendo-slider-transition-speed $kendo-slider-transition-function, background-color $kendo-slider-transition-speed $kendo-slider-transition-function,
|
|
324
|
+
transition: inset-inline-start $kendo-slider-transition-speed $kendo-slider-transition-function, background-color $kendo-slider-draghandle-transition-speed $kendo-slider-draghandle-transition-function, border-color $kendo-slider-draghandle-transition-speed $kendo-slider-draghandle-transition-function, box-shadow $kendo-slider-draghandle-transition-speed $kendo-slider-draghandle-transition-function;
|
|
324
325
|
}
|
|
325
326
|
.k-slider-selection {
|
|
326
327
|
transition: width $kendo-slider-transition-speed $kendo-slider-transition-function;
|
|
@@ -329,7 +330,7 @@
|
|
|
329
330
|
|
|
330
331
|
&.k-slider-vertical {
|
|
331
332
|
.k-draghandle {
|
|
332
|
-
transition: bottom $kendo-slider-transition-speed $kendo-slider-transition-function, background-color $kendo-slider-transition-speed $kendo-slider-transition-function,
|
|
333
|
+
transition: bottom $kendo-slider-transition-speed $kendo-slider-transition-function, background-color $kendo-slider-draghandle-transition-speed $kendo-slider-draghandle-transition-function, border-color $kendo-slider-draghandle-transition-speed $kendo-slider-draghandle-transition-function, box-shadow $kendo-slider-draghandle-transition-speed $kendo-slider-draghandle-transition-function;
|
|
333
334
|
}
|
|
334
335
|
|
|
335
336
|
.k-slider-selection {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@use "../../color-system/_constants.scss" as *;
|
|
2
2
|
@use "./variables.scss" as *;
|
|
3
3
|
@use "../../z-index/index.scss" as *;
|
|
4
|
+
@use "../../motion/index.scss" as *;
|
|
4
5
|
|
|
5
6
|
@mixin kendo-splitter--layout-base() {
|
|
6
7
|
|
|
@@ -52,6 +53,7 @@
|
|
|
52
53
|
display: flex;
|
|
53
54
|
align-items: center;
|
|
54
55
|
justify-content: center;
|
|
56
|
+
transition: background-color k-transition(snappy), color k-transition(snappy);
|
|
55
57
|
|
|
56
58
|
.k-collapse-prev,
|
|
57
59
|
.k-collapse-next {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use "../../color-system/_constants.scss" as *;
|
|
2
2
|
@use "../../spacing/index.scss" as *;
|
|
3
|
+
@use "../../motion/index.scss" as *;
|
|
3
4
|
@use "../../border-radii/index.scss" as *;
|
|
4
5
|
@use "../../mixins/index.scss" as *;
|
|
5
6
|
@use "./variables.scss" as *;
|
|
@@ -438,6 +439,7 @@
|
|
|
438
439
|
.k-spreadsheet-active-cell {
|
|
439
440
|
// always show exact active cell border, regardless of inline cell styles
|
|
440
441
|
outline-color: transparent !important; // stylelint-disable-line declaration-no-important
|
|
442
|
+
transition: box-shadow k-transition(snappy);
|
|
441
443
|
z-index: k-z-index("base", 4);
|
|
442
444
|
}
|
|
443
445
|
|
|
@@ -476,6 +478,8 @@
|
|
|
476
478
|
|
|
477
479
|
.k-spreadsheet .k-selection-full,
|
|
478
480
|
.k-spreadsheet .k-selection-partial {
|
|
481
|
+
transition: background-color k-transition(fade-in);
|
|
482
|
+
|
|
479
483
|
&::after {
|
|
480
484
|
display: none;
|
|
481
485
|
}
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
@use "../../spacing/index.scss" as *;
|
|
3
3
|
@use "../../mixins/index.scss" as *;
|
|
4
4
|
@use "../../z-index/index.scss" as *;
|
|
5
|
+
@use "../../motion/index.scss" as *;
|
|
5
6
|
@use "./variables.scss" as *;
|
|
6
7
|
@use "../icons/_variables.scss" as *;
|
|
7
8
|
|
|
@@ -76,9 +77,7 @@
|
|
|
76
77
|
position: relative;
|
|
77
78
|
z-index: k-z-index("base", 1);
|
|
78
79
|
overflow: visible;
|
|
79
|
-
transition
|
|
80
|
-
transition-duration: .4s;
|
|
81
|
-
transition-timing-function: ease-in-out;
|
|
80
|
+
transition: color k-transition(bouncy), border-color k-transition(bouncy), background-color k-transition(bouncy);
|
|
82
81
|
|
|
83
82
|
&::before {
|
|
84
83
|
@include border-radius( $kendo-stepper-indicator-border-radius );
|
|
@@ -124,6 +123,7 @@
|
|
|
124
123
|
align-items: center;
|
|
125
124
|
justify-content: center;
|
|
126
125
|
z-index: k-z-index("base", 1);
|
|
126
|
+
transition: font-weight k-transition(rapid);
|
|
127
127
|
}
|
|
128
128
|
.k-step-label:only-child {
|
|
129
129
|
@include border-radius( $kendo-stepper-label-border-radius );
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use "./_variables.scss" as *;
|
|
2
2
|
@use "../../mixins/index.scss" as *;
|
|
3
|
+
@use "../../motion/index.scss" as *;
|
|
3
4
|
@use "../../spacing/index.scss" as *;
|
|
4
5
|
|
|
5
6
|
@mixin kendo-suggestion--layout-base() {
|
|
@@ -53,9 +54,7 @@
|
|
|
53
54
|
border-style: $kendo-suggestion-border-style;
|
|
54
55
|
line-height: $kendo-suggestion-line-height;
|
|
55
56
|
flex: 0 0 auto;
|
|
56
|
-
transition
|
|
57
|
-
transition-duration: .2s;
|
|
58
|
-
transition-timing-function: ease-in-out;
|
|
57
|
+
transition: background-color k-transition(rapid), box-shadow k-transition(rapid);
|
|
59
58
|
cursor: pointer;
|
|
60
59
|
outline: none;
|
|
61
60
|
white-space: normal;
|