@progress/kendo-theme-core 6.2.1-dev.8 → 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.
package/dist/all.scss
CHANGED
|
@@ -3021,7 +3021,6 @@ $kendo-components: (
|
|
|
3021
3021
|
// Typography and utils
|
|
3022
3022
|
"typography",
|
|
3023
3023
|
"utils",
|
|
3024
|
-
"cursor",
|
|
3025
3024
|
"draggable",
|
|
3026
3025
|
|
|
3027
3026
|
// Generic content
|
|
@@ -3150,7 +3149,7 @@ $kendo-components: (
|
|
|
3150
3149
|
"timeline",
|
|
3151
3150
|
"pdf-viewer",
|
|
3152
3151
|
"scroller",
|
|
3153
|
-
"
|
|
3152
|
+
"scrollview",
|
|
3154
3153
|
|
|
3155
3154
|
// Dataviz
|
|
3156
3155
|
"dataviz",
|
|
@@ -3499,7 +3498,7 @@ $_kendo-dependencies: (
|
|
|
3499
3498
|
"tooltip"
|
|
3500
3499
|
),
|
|
3501
3500
|
scroller: (),
|
|
3502
|
-
|
|
3501
|
+
scrollview: (
|
|
3503
3502
|
"button"
|
|
3504
3503
|
),
|
|
3505
3504
|
searchbox: (
|
|
@@ -3641,8 +3640,8 @@ $_kendo-dependencies: (
|
|
|
3641
3640
|
|
|
3642
3641
|
// #endregion
|
|
3643
3642
|
|
|
3644
|
-
$_deps: ();
|
|
3645
|
-
$_imported: ();
|
|
3643
|
+
$_deps: () !default;
|
|
3644
|
+
$_imported: () !default;
|
|
3646
3645
|
|
|
3647
3646
|
@mixin module-register( $name: null, $dependencies: null ) {
|
|
3648
3647
|
@if (k-list-index( $kendo-components, $name) != null) {
|
|
@@ -3671,8 +3670,8 @@ $_imported: ();
|
|
|
3671
3670
|
}
|
|
3672
3671
|
}
|
|
3673
3672
|
|
|
3674
|
-
@if ( k-list-index( $kendo-components, $name ) != null ) and ( k-list-index( $_imported, $name ) == null )
|
|
3675
|
-
$_imported: k-list-append( $_imported, $name );
|
|
3673
|
+
@if ( k-list-index( $kendo-components, $name ) != null ) and ( k-list-index( $_imported, $name ) == null ) {
|
|
3674
|
+
$_imported: k-list-append( $_imported, $name ) !global;
|
|
3676
3675
|
@content;
|
|
3677
3676
|
}
|
|
3678
3677
|
}
|
|
@@ -3687,6 +3686,15 @@ $_imported: ();
|
|
|
3687
3686
|
}
|
|
3688
3687
|
@include verify-dependencies();
|
|
3689
3688
|
|
|
3689
|
+
@mixin verify-rendered() {
|
|
3690
|
+
@each $component in $kendo-components {
|
|
3691
|
+
@if (k-list-index( $_imported, $component ) == null) {
|
|
3692
|
+
// sass-lint:disable-block no-warn
|
|
3693
|
+
@error "Module '#{$component}' has not been rendered.";
|
|
3694
|
+
}
|
|
3695
|
+
}
|
|
3696
|
+
}
|
|
3697
|
+
|
|
3690
3698
|
// #endregion
|
|
3691
3699
|
// #region @import "./styles/index.import.scss"; -> scss/styles/index.import.scss
|
|
3692
3700
|
// #region @import "./_accessibility.scss"; -> scss/styles/_accessibility.scss
|
package/dist/meta/variables.json
CHANGED
|
@@ -73,6 +73,6 @@
|
|
|
73
73
|
},
|
|
74
74
|
"kendo-components": {
|
|
75
75
|
"type": "List",
|
|
76
|
-
"value": "\"typography\", \"utils\", \"
|
|
76
|
+
"value": "\"typography\", \"utils\", \"draggable\", \"table\", \"icon\", \"chip\", \"messagebox\", \"input\", \"list\", \"listgroup\", \"overlay\", \"ripple\", \"virtual-scroller\", \"avatar\", \"badge\", \"color-preview\", \"loader\", \"skeleton\", \"tooltip\", \"button\", \"split-button\", \"menu-button\", \"textbox\", \"textarea\", \"checkbox\", \"listbox\", \"progressbar\", \"radio\", \"slider\", \"form\", \"validator\", \"floating-label\", \"calendar\", \"popup\", \"time-selector\", \"autocomplete\", \"captcha\", \"color-palette\", \"color-gradient\", \"color-editor\", \"color-picker\", \"combobox\", \"date-input\", \"date-picker\", \"time-picker\", \"date-time-picker\", \"date-range-picker\", \"dropdown-grid\", \"dropdown-list\", \"dropdown-tree\", \"masked-textbox\", \"multiselect\", \"numeric-textbox\", \"rating\", \"searchbox\", \"switch\", \"upload\", \"dropzone\", \"actions\", \"appbar\", \"fab\", \"menu\", \"toolbar\", \"action-sheet\", \"dialog\", \"drawer\", \"notification\", \"popover\", \"responsive-panel\", \"window\", \"bottom-navigation\", \"breadcrumb\", \"pager\", \"stepper\", \"tabstrip\", \"treeview\", \"wizard\", \"card\", \"expander\", \"panelbar\", \"splitter\", \"tile-layout\", \"grid\", \"listview\", \"spreadsheet\", \"pivotgrid\", \"treelist\", \"filter\", \"file-manager\", \"task-board\", \"editor\", \"image-editor\", \"gantt\", \"scheduler\", \"adaptive\", \"chat\", \"media-player\", \"timeline\", \"pdf-viewer\", \"scroller\", \"scrollview\", \"dataviz\", \"map\", \"orgchart\", \"signature\""
|
|
77
77
|
}
|
|
78
78
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-core",
|
|
3
3
|
"description": "A collection of functions and mixins used for building themes for Kendo UI",
|
|
4
|
-
"version": "6.
|
|
4
|
+
"version": "6.3.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"prepublishOnly": "node ../../scripts/themes-prepublish.js",
|
|
40
40
|
"postpublish": "echo 'no postpublish for core theme'"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "b20e74e39e32c4a5dd2fde0b0591dcd451d2c1cc"
|
|
43
43
|
}
|
|
@@ -2,7 +2,6 @@ $kendo-components: (
|
|
|
2
2
|
// Typography and utils
|
|
3
3
|
"typography",
|
|
4
4
|
"utils",
|
|
5
|
-
"cursor",
|
|
6
5
|
"draggable",
|
|
7
6
|
|
|
8
7
|
// Generic content
|
|
@@ -131,7 +130,7 @@ $kendo-components: (
|
|
|
131
130
|
"timeline",
|
|
132
131
|
"pdf-viewer",
|
|
133
132
|
"scroller",
|
|
134
|
-
"
|
|
133
|
+
"scrollview",
|
|
135
134
|
|
|
136
135
|
// Dataviz
|
|
137
136
|
"dataviz",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
@import "./_components.scss";
|
|
2
2
|
@import "./_dependencies.scss";
|
|
3
3
|
|
|
4
|
-
$_deps: ();
|
|
5
|
-
$_imported: ();
|
|
4
|
+
$_deps: () !default;
|
|
5
|
+
$_imported: () !default;
|
|
6
6
|
|
|
7
7
|
@mixin module-register( $name: null, $dependencies: null ) {
|
|
8
8
|
@if (k-list-index( $kendo-components, $name) != null) {
|
|
@@ -31,8 +31,8 @@ $_imported: ();
|
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
-
@if ( k-list-index( $kendo-components, $name ) != null ) and ( k-list-index( $_imported, $name ) == null )
|
|
35
|
-
$_imported: k-list-append( $_imported, $name );
|
|
34
|
+
@if ( k-list-index( $kendo-components, $name ) != null ) and ( k-list-index( $_imported, $name ) == null ) {
|
|
35
|
+
$_imported: k-list-append( $_imported, $name ) !global;
|
|
36
36
|
@content;
|
|
37
37
|
}
|
|
38
38
|
}
|
|
@@ -46,3 +46,12 @@ $_imported: ();
|
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
@include verify-dependencies();
|
|
49
|
+
|
|
50
|
+
@mixin verify-rendered() {
|
|
51
|
+
@each $component in $kendo-components {
|
|
52
|
+
@if (k-list-index( $_imported, $component ) == null) {
|
|
53
|
+
// sass-lint:disable-block no-warn
|
|
54
|
+
@error "Module '#{$component}' has not been rendered.";
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|