@progress/kendo-theme-bootstrap 5.0.0-next.3 → 5.0.0-next.4
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 +419 -94
- package/dist/all.scss +502 -189
- package/package.json +3 -3
- package/scss/chip/_variables.scss +138 -47
- package/scss/styling/_index.scss +1 -1
- package/scss/utils/_index.scss +1 -0
- package/scss/utils/_theme-colors.scss +1 -0
- package/scss/common/_decoration.scss +0 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-bootstrap",
|
|
3
3
|
"description": "Bootstrap theme for Kendo UI",
|
|
4
|
-
"version": "5.0.0-next.
|
|
4
|
+
"version": "5.0.0-next.4",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"postpublish": "echo 'no postpublish for bootstrap theme'"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@progress/kendo-theme-default": "^5.0.0-next.
|
|
52
|
+
"@progress/kendo-theme-default": "^5.0.0-next.4",
|
|
53
53
|
"bootstrap": "^5.1.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "77cbd2943ba55ea1aeac6da992c280dd37f95520"
|
|
56
56
|
}
|
|
@@ -21,74 +21,165 @@ $chip-remove-icon-font-size: 14px !default;
|
|
|
21
21
|
|
|
22
22
|
$chip-avatar-size: 24px !default;
|
|
23
23
|
|
|
24
|
-
$chip-
|
|
25
|
-
$chip-filled-text: $body-text !default;
|
|
26
|
-
$chip-filled-border: transparent !default;
|
|
24
|
+
$chip-base-bg: $base-text !default;
|
|
27
25
|
|
|
28
|
-
$chip-
|
|
29
|
-
$chip-
|
|
26
|
+
$chip-solid-bg: rgba( $chip-base-bg, .08 ) !default;
|
|
27
|
+
$chip-solid-text: $chip-base-bg !default;
|
|
28
|
+
$chip-solid-border: rgba( $chip-base-bg, .3 ) !default;
|
|
30
29
|
|
|
31
|
-
$chip-
|
|
32
|
-
$chip-
|
|
30
|
+
$chip-solid-hover-bg: rgba( $chip-base-bg, .16 ) !default;
|
|
31
|
+
$chip-solid-hover-text: null !default;
|
|
32
|
+
$chip-solid-hover-border: null !default;
|
|
33
33
|
|
|
34
|
-
$chip-
|
|
35
|
-
$chip-
|
|
34
|
+
$chip-solid-focus-bg: $chip-solid-bg !default;
|
|
35
|
+
$chip-solid-focus-shadow: 0 0 0 3px rgba( $chip-base-bg, .16 ) !default;
|
|
36
36
|
|
|
37
|
-
$chip-
|
|
38
|
-
$chip-
|
|
39
|
-
$chip-filled-success-border: transparent !default;
|
|
37
|
+
$chip-solid-selected-bg: rgba( $chip-base-bg, .24 ) !default;
|
|
38
|
+
$chip-solid-selected-border: null !default;
|
|
40
39
|
|
|
41
|
-
$chip-
|
|
42
|
-
$chip-
|
|
43
|
-
$chip-
|
|
40
|
+
$chip-solid-success-bg: rgba( $success, .08 ) !default;
|
|
41
|
+
$chip-solid-success-text: $success !default;
|
|
42
|
+
$chip-solid-success-border: rgba( $success, .3 ) !default;
|
|
44
43
|
|
|
45
|
-
$chip-
|
|
46
|
-
$chip-
|
|
47
|
-
$chip-
|
|
44
|
+
$chip-solid-success-hover-bg: rgba( $success, .16 ) !default;
|
|
45
|
+
$chip-solid-success-hover-text: null !default;
|
|
46
|
+
$chip-solid-success-hover-border: null !default;
|
|
48
47
|
|
|
49
|
-
$chip-
|
|
50
|
-
$chip-
|
|
51
|
-
$chip-
|
|
48
|
+
$chip-solid-success-focus-bg: null !default;
|
|
49
|
+
$chip-solid-success-focus-text: null !default;
|
|
50
|
+
$chip-solid-success-focus-border: null !default;
|
|
52
51
|
|
|
53
|
-
$chip-
|
|
54
|
-
$chip-
|
|
55
|
-
$chip-
|
|
52
|
+
$chip-solid-success-selected-bg: rgba( $success, .24 ) !default;
|
|
53
|
+
$chip-solid-success-selected-text: null !default;
|
|
54
|
+
$chip-solid-success-selected-border: null !default;
|
|
56
55
|
|
|
57
|
-
$chip-
|
|
58
|
-
$chip-
|
|
59
|
-
$chip-
|
|
56
|
+
$chip-solid-warning-bg: rgba( $warning, .08 ) !default;
|
|
57
|
+
$chip-solid-warning-text: $warning !default;
|
|
58
|
+
$chip-solid-warning-border: rgba( $warning, .3 ) !default;
|
|
60
59
|
|
|
61
|
-
$chip-
|
|
62
|
-
$chip-
|
|
63
|
-
$chip-
|
|
64
|
-
$chip-outline-focused-shadow: $chip-filled-focused-shadow !default;
|
|
60
|
+
$chip-solid-warning-hover-bg: rgba( $warning, .16 ) !default;
|
|
61
|
+
$chip-solid-warning-hover-text: null !default;
|
|
62
|
+
$chip-solid-warning-hover-border: null !default;
|
|
65
63
|
|
|
66
|
-
$chip-
|
|
67
|
-
$chip-
|
|
64
|
+
$chip-solid-warning-focus-bg: null !default;
|
|
65
|
+
$chip-solid-warning-focus-text: null !default;
|
|
66
|
+
$chip-solid-warning-focus-border: null !default;
|
|
68
67
|
|
|
69
|
-
$chip-
|
|
68
|
+
$chip-solid-warning-selected-bg: rgba( $warning, .24 ) !default;
|
|
69
|
+
$chip-solid-warning-selected-text: null !default;
|
|
70
|
+
$chip-solid-warning-selected-border: null !default;
|
|
71
|
+
|
|
72
|
+
$chip-solid-error-bg: rgba( $error, .08 ) !default;
|
|
73
|
+
$chip-solid-error-text: $error !default;
|
|
74
|
+
$chip-solid-error-border: rgba( $error, .3 ) !default;
|
|
75
|
+
|
|
76
|
+
$chip-solid-error-hover-bg: rgba( $error, .16 ) !default;
|
|
77
|
+
$chip-solid-error-hover-text: null !default;
|
|
78
|
+
$chip-solid-error-hover-border: null !default;
|
|
79
|
+
|
|
80
|
+
$chip-solid-error-focus-bg: null !default;
|
|
81
|
+
$chip-solid-error-focus-text: null !default;
|
|
82
|
+
$chip-solid-error-focus-border: null !default;
|
|
83
|
+
|
|
84
|
+
$chip-solid-error-selected-bg: rgba( $error, .24 ) !default;
|
|
85
|
+
$chip-solid-error-selected-text: null !default;
|
|
86
|
+
$chip-solid-error-selected-border: null !default;
|
|
87
|
+
|
|
88
|
+
$chip-solid-info-bg: rgba( $info, .08 ) !default;
|
|
89
|
+
$chip-solid-info-text: $info !default;
|
|
90
|
+
$chip-solid-info-border: rgba( $info, .3 ) !default;
|
|
91
|
+
|
|
92
|
+
$chip-solid-info-hover-bg: rgba( $info, .16 ) !default;
|
|
93
|
+
$chip-solid-info-hover-text: null !default;
|
|
94
|
+
$chip-solid-info-hover-border: null !default;
|
|
95
|
+
|
|
96
|
+
$chip-solid-info-focus-bg: null !default;
|
|
97
|
+
$chip-solid-info-focus-text: null !default;
|
|
98
|
+
$chip-solid-info-focus-border: null !default;
|
|
99
|
+
|
|
100
|
+
$chip-solid-info-selected-bg: rgba( $info, .24 ) !default;
|
|
101
|
+
$chip-solid-info-selected-text: null !default;
|
|
102
|
+
$chip-solid-info-selected-border: null !default;
|
|
103
|
+
|
|
104
|
+
$chip-outline-bg: $component-bg !default;
|
|
105
|
+
$chip-outline-text: $chip-base-bg !default;
|
|
106
|
+
$chip-outline-border: $chip-base-bg !default;
|
|
107
|
+
|
|
108
|
+
$chip-outline-hover-bg: $chip-base-bg !default;
|
|
109
|
+
$chip-outline-hover-text: contrast-wcag( $chip-outline-hover-bg ) !default;
|
|
110
|
+
$chip-outline-hover-border: null !default;
|
|
111
|
+
|
|
112
|
+
$chip-outline-focus-bg: null !default;
|
|
113
|
+
$chip-outline-focus-text: null !default;
|
|
114
|
+
$chip-outline-focus-border: null !default;
|
|
115
|
+
$chip-outline-focus-shadow: $chip-solid-focus-shadow !default;
|
|
116
|
+
|
|
117
|
+
$chip-outline-selected-bg: $chip-outline-hover-bg !default;
|
|
118
|
+
$chip-outline-selected-text: $chip-outline-hover-text !default;
|
|
119
|
+
|
|
120
|
+
$chip-outline-success-bg: null !default;
|
|
70
121
|
$chip-outline-success-text: $success !default;
|
|
71
122
|
$chip-outline-success-border: $success !default;
|
|
72
123
|
|
|
73
|
-
$chip-outline-
|
|
124
|
+
$chip-outline-success-hover-bg: $success !default;
|
|
125
|
+
$chip-outline-success-hover-text: contrast-wcag( $chip-outline-success-hover-bg ) !default;
|
|
126
|
+
$chip-outline-success-hover-border: null !default;
|
|
127
|
+
|
|
128
|
+
$chip-outline-success-focus-bg: null !default;
|
|
129
|
+
$chip-outline-success-focus-text: null !default;
|
|
130
|
+
$chip-outline-success-focus-border: null !default;
|
|
131
|
+
|
|
132
|
+
$chip-outline-success-selected-bg: $chip-outline-success-hover-bg !default;
|
|
133
|
+
$chip-outline-success-selected-text: $chip-outline-success-hover-text !default;
|
|
134
|
+
$chip-outline-success-selected-border: null !default;
|
|
135
|
+
|
|
136
|
+
$chip-outline-warning-bg: null !default;
|
|
74
137
|
$chip-outline-warning-text: $warning !default;
|
|
75
138
|
$chip-outline-warning-border: $warning !default;
|
|
76
139
|
|
|
77
|
-
$chip-outline-
|
|
140
|
+
$chip-outline-warning-hover-bg: $warning !default;
|
|
141
|
+
$chip-outline-warning-hover-text: $white !default;
|
|
142
|
+
$chip-outline-warning-hover-border: null !default;
|
|
143
|
+
|
|
144
|
+
$chip-outline-warning-focus-bg: null !default;
|
|
145
|
+
$chip-outline-warning-focus-text: null !default;
|
|
146
|
+
$chip-outline-warning-focus-border: null !default;
|
|
147
|
+
|
|
148
|
+
$chip-outline-warning-selected-bg: $chip-outline-warning-hover-bg !default;
|
|
149
|
+
$chip-outline-warning-selected-text: $chip-outline-warning-hover-text !default;
|
|
150
|
+
$chip-outline-warning-selected-border: null !default;
|
|
151
|
+
|
|
152
|
+
$chip-outline-error-bg: null !default;
|
|
78
153
|
$chip-outline-error-text: $error !default;
|
|
79
154
|
$chip-outline-error-border: $error !default;
|
|
80
155
|
|
|
81
|
-
$chip-outline-
|
|
156
|
+
$chip-outline-error-hover-bg: $error !default;
|
|
157
|
+
$chip-outline-error-hover-text: contrast-wcag( $chip-outline-error-hover-bg ) !default;
|
|
158
|
+
$chip-outline-error-hover-border: null !default;
|
|
159
|
+
|
|
160
|
+
$chip-outline-error-focus-bg: null !default;
|
|
161
|
+
$chip-outline-error-focus-text: null !default;
|
|
162
|
+
$chip-outline-error-focus-border: null !default;
|
|
163
|
+
|
|
164
|
+
$chip-outline-error-selected-bg: $chip-outline-error-hover-bg !default;
|
|
165
|
+
$chip-outline-error-selected-text: $chip-outline-error-hover-text !default;
|
|
166
|
+
$chip-outline-error-selected-border: null !default;
|
|
167
|
+
|
|
168
|
+
$chip-outline-info-bg: null !default;
|
|
82
169
|
$chip-outline-info-text: $info !default;
|
|
83
170
|
$chip-outline-info-border: $info !default;
|
|
84
171
|
|
|
85
|
-
$chip-
|
|
86
|
-
$chip-
|
|
87
|
-
$chip-
|
|
172
|
+
$chip-outline-info-hover-bg: $info !default;
|
|
173
|
+
$chip-outline-info-hover-text: contrast-wcag( $chip-outline-info-hover-bg ) !default;
|
|
174
|
+
$chip-outline-info-hover-border: null !default;
|
|
175
|
+
|
|
176
|
+
$chip-outline-info-focus-bg: null !default;
|
|
177
|
+
$chip-outline-info-focus-text: null !default;
|
|
178
|
+
$chip-outline-info-focus-border: null !default;
|
|
88
179
|
|
|
89
|
-
$chip-outline-
|
|
90
|
-
$chip-outline-
|
|
91
|
-
$chip-outline-
|
|
180
|
+
$chip-outline-info-selected-bg: $chip-outline-info-hover-bg !default;
|
|
181
|
+
$chip-outline-info-selected-text: $chip-outline-info-hover-text !default;
|
|
182
|
+
$chip-outline-info-selected-border: null !default;
|
|
92
183
|
|
|
93
184
|
$chip-multiple-selected-icon-bg: rgba(0, 0, 0, .36) !default;
|
|
94
185
|
$chip-multiple-selected-icon-text: #ffffff !default;
|
|
@@ -96,7 +187,7 @@ $chip-multiple-selected-icon-text: #ffffff !default;
|
|
|
96
187
|
|
|
97
188
|
$chip-primary-focus-shadow: null !default;
|
|
98
189
|
$chip-secondary-focus-shadow: null !default;
|
|
99
|
-
$chip-info-focus-shadow:
|
|
100
|
-
$chip-success-focus-shadow:
|
|
101
|
-
$chip-warning-focus-shadow:
|
|
102
|
-
$chip-error-focus-shadow:
|
|
190
|
+
$chip-info-focus-shadow: 0 0 0 3px rgba( $info, .16 ) !default;
|
|
191
|
+
$chip-success-focus-shadow: 0 0 0 3px rgba( $success, .16 ) !default;
|
|
192
|
+
$chip-warning-focus-shadow: 0 0 0 3px rgba( $warning, .16 ) !default;
|
|
193
|
+
$chip-error-focus-shadow: 0 0 0 3px rgba( $error, .16 ) !default;
|
package/scss/styling/_index.scss
CHANGED
package/scss/utils/_index.scss
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "~@progress/kendo-theme-default/scss/utils/_theme-colors.scss";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@import "~@progress/kendo-theme-default/scss/common/_decoration.scss";
|