@progress/kendo-theme-bootstrap 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/bootstrap-3-dark.css +1 -1
- package/dist/bootstrap-3.css +1 -1
- package/dist/bootstrap-4-dark.css +1 -1
- package/dist/bootstrap-4.css +1 -1
- package/dist/bootstrap-dataviz-v4.css +1 -1
- package/dist/bootstrap-main-dark.css +1 -1
- package/dist/bootstrap-main.css +1 -1
- package/dist/bootstrap-nordic.css +1 -1
- package/dist/bootstrap-turquoise-dark.css +1 -1
- package/dist/bootstrap-turquoise.css +1 -1
- package/dist/bootstrap-urban.css +1 -1
- package/dist/bootstrap-vintage.css +1 -1
- package/dist/meta/sassdoc-data.json +1136 -584
- package/dist/meta/sassdoc-raw-data.json +411 -278
- package/dist/meta/variables.json +309 -21
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-3.json +1 -1
- package/lib/swatches/bootstrap-4-dark.json +1 -1
- package/lib/swatches/bootstrap-4.json +1 -1
- package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +1 -1
- package/lib/swatches/bootstrap-main.json +1 -1
- package/lib/swatches/bootstrap-nordic.json +1 -1
- package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
- package/lib/swatches/bootstrap-turquoise.json +1 -1
- package/lib/swatches/bootstrap-urban.json +1 -1
- package/lib/swatches/bootstrap-vintage.json +1 -1
- package/package.json +4 -4
- package/scss/button/_variables.scss +2 -3
- package/scss/core/_index.scss +12 -0
- package/scss/core/motion/index.scss +174 -1
- package/scss/dataviz/_variables.scss +1 -1
- package/scss/floating-label/_variables.scss +1 -1
- package/scss/input/_layout.scss +0 -6
- package/scss/slider/_variables.scss +4 -4
- package/scss/stepper/_variables.scss +2 -2
- package/scss/treeview/_layout.scss +0 -12
|
@@ -1 +1,174 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use "sass:map";
|
|
2
|
+
@use "sass:list";
|
|
3
|
+
|
|
4
|
+
$default-easings: (
|
|
5
|
+
linear: cubic-bezier(0, 0, 1, 1),
|
|
6
|
+
accelerate: cubic-bezier(0.42, 0, 1, 1),
|
|
7
|
+
decelerate: cubic-bezier(0, 0, 0.58, 1),
|
|
8
|
+
standard: cubic-bezier(0.42, 0, 0.58, 1),
|
|
9
|
+
sharp: cubic-bezier(0.75, 0, 0.25, 1),
|
|
10
|
+
bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55),
|
|
11
|
+
elastic: cubic-bezier(0.5, -0.5, 0.5, 1.5),
|
|
12
|
+
) !default;
|
|
13
|
+
|
|
14
|
+
$default-durations: (
|
|
15
|
+
instant: 0ms,
|
|
16
|
+
immediate: 50ms,
|
|
17
|
+
brief: 100ms,
|
|
18
|
+
quick: 150ms,
|
|
19
|
+
rapid: 200ms,
|
|
20
|
+
swift: 250ms,
|
|
21
|
+
speedy: 300ms,
|
|
22
|
+
brisk: 350ms,
|
|
23
|
+
prompt: 400ms,
|
|
24
|
+
timely: 450ms,
|
|
25
|
+
moderate: 500ms,
|
|
26
|
+
measured: 550ms,
|
|
27
|
+
steady: 600ms,
|
|
28
|
+
leisurely: 700ms,
|
|
29
|
+
slow: 800ms,
|
|
30
|
+
languid: 900ms,
|
|
31
|
+
sluggish: 1000ms
|
|
32
|
+
) !default;
|
|
33
|
+
|
|
34
|
+
$default-transitions: (
|
|
35
|
+
instant: (
|
|
36
|
+
duration: var(--kendo-duration-instant),
|
|
37
|
+
easing: var(--kendo-easing-linear),
|
|
38
|
+
),
|
|
39
|
+
rapid: (
|
|
40
|
+
duration: var(--kendo-duration-quick),
|
|
41
|
+
easing: var(--kendo-easing-decelerate),
|
|
42
|
+
),
|
|
43
|
+
snappy: (
|
|
44
|
+
duration: var(--kendo-duration-swift),
|
|
45
|
+
easing: var(--kendo-easing-decelerate),
|
|
46
|
+
),
|
|
47
|
+
energetic: (
|
|
48
|
+
duration: var(--kendo-duration-swift),
|
|
49
|
+
easing: var(--kendo-easing-elastic),
|
|
50
|
+
),
|
|
51
|
+
bouncy: (
|
|
52
|
+
duration: var(--kendo-duration-speedy),
|
|
53
|
+
easing: var(--kendo-easing-bounce),
|
|
54
|
+
),
|
|
55
|
+
subtle: (
|
|
56
|
+
duration: var(--kendo-duration-brisk),
|
|
57
|
+
easing: var(--kendo-easing-standard),
|
|
58
|
+
),
|
|
59
|
+
gentle: (
|
|
60
|
+
duration: var(--kendo-duration-prompt),
|
|
61
|
+
easing: var(--kendo-easing-accelerate),
|
|
62
|
+
),
|
|
63
|
+
enter: (
|
|
64
|
+
duration: var(--kendo-duration-speedy),
|
|
65
|
+
easing: var(--kendo-easing-decelerate),
|
|
66
|
+
),
|
|
67
|
+
exit: (
|
|
68
|
+
duration: var(--kendo-duration-rapid),
|
|
69
|
+
easing: var(--kendo-easing-accelerate),
|
|
70
|
+
),
|
|
71
|
+
settle: (
|
|
72
|
+
duration: var(--kendo-duration-brisk),
|
|
73
|
+
easing: var(--kendo-easing-decelerate),
|
|
74
|
+
),
|
|
75
|
+
scale-out: (
|
|
76
|
+
duration: var(--kendo-duration-quick),
|
|
77
|
+
easing: var(--kendo-easing-accelerate),
|
|
78
|
+
),
|
|
79
|
+
scale-in: (
|
|
80
|
+
duration: var(--kendo-duration-rapid),
|
|
81
|
+
easing: var(--kendo-easing-decelerate),
|
|
82
|
+
),
|
|
83
|
+
fade-out: (
|
|
84
|
+
duration: var(--kendo-duration-rapid),
|
|
85
|
+
easing: var(--kendo-easing-standard),
|
|
86
|
+
),
|
|
87
|
+
fade-in: (
|
|
88
|
+
duration: var(--kendo-duration-swift),
|
|
89
|
+
easing: var(--kendo-easing-standard),
|
|
90
|
+
),
|
|
91
|
+
slide-out: (
|
|
92
|
+
duration: var(--kendo-duration-swift),
|
|
93
|
+
easing: var(--kendo-easing-accelerate),
|
|
94
|
+
),
|
|
95
|
+
slide-in: (
|
|
96
|
+
duration: var(--kendo-duration-speedy),
|
|
97
|
+
easing: var(--kendo-easing-decelerate),
|
|
98
|
+
),
|
|
99
|
+
emphasis: (
|
|
100
|
+
duration: var(--kendo-duration-quick),
|
|
101
|
+
easing: var(--kendo-easing-sharp),
|
|
102
|
+
),
|
|
103
|
+
collapse: (
|
|
104
|
+
duration: var(--kendo-duration-speedy),
|
|
105
|
+
easing: var(--kendo-easing-accelerate),
|
|
106
|
+
),
|
|
107
|
+
expand: (
|
|
108
|
+
duration: var(--kendo-duration-prompt),
|
|
109
|
+
easing: var(--kendo-easing-standard),
|
|
110
|
+
),
|
|
111
|
+
shrink: (
|
|
112
|
+
duration: var(--kendo-duration-brisk),
|
|
113
|
+
easing: var(--kendo-easing-accelerate),
|
|
114
|
+
),
|
|
115
|
+
grow: (
|
|
116
|
+
duration: var(--kendo-duration-prompt),
|
|
117
|
+
easing: var(--kendo-easing-standard),
|
|
118
|
+
),
|
|
119
|
+
pulse: (
|
|
120
|
+
duration: var(--kendo-duration-brisk),
|
|
121
|
+
easing: var(--kendo-easing-standard),
|
|
122
|
+
),
|
|
123
|
+
smooth: (
|
|
124
|
+
duration: var(--kendo-duration-moderate),
|
|
125
|
+
easing: var(--kendo-easing-standard),
|
|
126
|
+
),
|
|
127
|
+
flip: (
|
|
128
|
+
duration: var(--kendo-duration-measured),
|
|
129
|
+
easing: var(--kendo-easing-standard),
|
|
130
|
+
),
|
|
131
|
+
fluid: (
|
|
132
|
+
duration: var(--kendo-duration-steady),
|
|
133
|
+
easing: var(--kendo-easing-standard),
|
|
134
|
+
),
|
|
135
|
+
deliberate: (
|
|
136
|
+
duration: var(--kendo-duration-slow),
|
|
137
|
+
easing: var(--kendo-easing-standard),
|
|
138
|
+
),
|
|
139
|
+
) !default;
|
|
140
|
+
|
|
141
|
+
/// The global map of motion easing tokens.
|
|
142
|
+
/// @group motion
|
|
143
|
+
$kendo-easings: $default-easings !default;
|
|
144
|
+
$kendo-easings: map.merge($default-easings, $kendo-easings);
|
|
145
|
+
|
|
146
|
+
/// The global map of motion duration tokens.
|
|
147
|
+
/// @group motion
|
|
148
|
+
$kendo-durations: $default-durations !default;
|
|
149
|
+
$kendo-durations: map.merge($default-durations, $kendo-durations);
|
|
150
|
+
|
|
151
|
+
/// The global map of motion transition tokens.
|
|
152
|
+
/// @group motion
|
|
153
|
+
///
|
|
154
|
+
/// @subgroup {fast}
|
|
155
|
+
/// [instant, rapid, snappy, energetic]
|
|
156
|
+
/// Speed and Responsiveness
|
|
157
|
+
///
|
|
158
|
+
/// @subgroup {expressive}
|
|
159
|
+
/// [emphasis, bouncy, pulse, flip]
|
|
160
|
+
/// Personality and Playfulness
|
|
161
|
+
///
|
|
162
|
+
/// @subgroup {calm}
|
|
163
|
+
/// [subtle, gentle, settle, smooth, fluid, deliberate]
|
|
164
|
+
/// Subtle & Natural
|
|
165
|
+
///
|
|
166
|
+
/// @subgroup {visibility}
|
|
167
|
+
/// [slide-in, slide-out, fade-in, fade-out, enter, exit]
|
|
168
|
+
/// Visibility & Movement Change
|
|
169
|
+
///
|
|
170
|
+
/// @subgroup {size}
|
|
171
|
+
/// [scale-in, scale-out, grow, shrink, expand, collapse]
|
|
172
|
+
/// Size & Scale Adjustments
|
|
173
|
+
$kendo-transitions: $default-transitions !default;
|
|
174
|
+
$kendo-transitions: map.merge($default-transitions, $kendo-transitions);
|
|
@@ -250,7 +250,7 @@ $kendo-chart-tooltip-padding-y: k-spacing(1) !default;
|
|
|
250
250
|
|
|
251
251
|
/// The transition of the Chart.
|
|
252
252
|
/// @group charts
|
|
253
|
-
$kendo-chart-tooltip-transition: left
|
|
253
|
+
$kendo-chart-tooltip-transition: left k-transition(fade-in), top k-transition(fade-in) !default;
|
|
254
254
|
|
|
255
255
|
/// The text color of the chart tooltip.
|
|
256
256
|
/// @group charts
|
|
@@ -37,7 +37,7 @@ $kendo-floating-label-focus-offset-y: 0 !default;
|
|
|
37
37
|
|
|
38
38
|
/// The transition of the Floating Label.
|
|
39
39
|
/// @group floating-label
|
|
40
|
-
$kendo-floating-label-transition:
|
|
40
|
+
$kendo-floating-label-transition: k-transition(scale-in) !default;
|
|
41
41
|
|
|
42
42
|
/// The background color of the Floating Label.
|
|
43
43
|
/// @group floating-label
|
package/scss/input/_layout.scss
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../core/_index.scss" as *;
|
|
3
|
-
@use "../core/motion/index.scss" as *;
|
|
4
3
|
@use "./_variables.scss" as *;
|
|
5
4
|
@use "@progress/kendo-theme-core/scss/components/input/_layout.scss" as *;
|
|
6
5
|
|
|
@@ -8,11 +7,6 @@
|
|
|
8
7
|
|
|
9
8
|
@include kendo-input--layout-base();
|
|
10
9
|
|
|
11
|
-
// Input, Textbox
|
|
12
|
-
.k-textbox {
|
|
13
|
-
transition: $kendo-transition;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
10
|
// Sizing
|
|
17
11
|
@each $size, $size-props in $kendo-input-sizes {
|
|
18
12
|
$_padding-x: map.get( $size-props, padding-x );
|
|
@@ -88,16 +88,16 @@ $kendo-slider-draghandle-focus-shadow: 0 0 0 3px color-mix(in srgb, k-color(prim
|
|
|
88
88
|
|
|
89
89
|
/// The transition speed of the Slider.
|
|
90
90
|
/// @group slider
|
|
91
|
-
$kendo-slider-transition-speed:
|
|
91
|
+
$kendo-slider-transition-speed: k-duration(brisk) !default;
|
|
92
92
|
/// The transition function of the Slider.
|
|
93
93
|
/// @group slider
|
|
94
|
-
$kendo-slider-transition-function:
|
|
94
|
+
$kendo-slider-transition-function: k-easing(standard) !default;
|
|
95
95
|
/// The transition speed of the Slider drag handle.
|
|
96
96
|
/// @group slider
|
|
97
|
-
$kendo-slider-draghandle-transition-speed:
|
|
97
|
+
$kendo-slider-draghandle-transition-speed: k-duration(quick) !default;
|
|
98
98
|
/// The transition function of the Slider drag handle.
|
|
99
99
|
/// @group slider
|
|
100
|
-
$kendo-slider-draghandle-transition-function:
|
|
100
|
+
$kendo-slider-draghandle-transition-function: k-easing(decelerate) !default;
|
|
101
101
|
|
|
102
102
|
/// The background color of the Slider track.
|
|
103
103
|
/// @group slider
|
|
@@ -225,10 +225,10 @@ $kendo-stepper-progressbar-fill-text: null !default;
|
|
|
225
225
|
$kendo-stepper-content-transition-property: height !default;
|
|
226
226
|
/// The duration of the Stepper transition.
|
|
227
227
|
/// @group stepper
|
|
228
|
-
$kendo-stepper-content-transition-duration:
|
|
228
|
+
$kendo-stepper-content-transition-duration: k-duration(speedy) !default;
|
|
229
229
|
/// The timing function of the Stepper transition.
|
|
230
230
|
/// @group stepper
|
|
231
|
-
$kendo-stepper-content-transition-timing-function:
|
|
231
|
+
$kendo-stepper-content-transition-timing-function: k-easing(standard) !default;
|
|
232
232
|
|
|
233
233
|
|
|
234
234
|
@forward "@progress/kendo-theme-core/scss/components/stepper/_variables.scss" with (
|
|
@@ -1,19 +1,7 @@
|
|
|
1
1
|
@use "../core/_index.scss" as *;
|
|
2
|
-
@use "../core/motion/index.scss" as *;
|
|
3
2
|
@use "@progress/kendo-theme-core/scss/components/treeview/_layout.scss" as *;
|
|
4
3
|
|
|
5
4
|
|
|
6
5
|
@mixin kendo-treeview--layout() {
|
|
7
|
-
|
|
8
6
|
@include kendo-treeview--layout-base();
|
|
9
|
-
|
|
10
|
-
// Treeview
|
|
11
|
-
.k-treeview {}
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
// Treeview leaf
|
|
15
|
-
.k-treeview-leaf {
|
|
16
|
-
transition: $kendo-transition;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
7
|
}
|