@progress/kendo-theme-default 7.1.0-dev.2 → 7.1.0-dev.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 +85 -0
- package/dist/all.scss +234 -0
- package/dist/meta/sassdoc-data.json +1086 -0
- package/dist/meta/sassdoc-raw-data.json +500 -0
- package/dist/meta/variables.json +81 -1
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +1 -1
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue-a11y.json +1 -1
- package/lib/swatches/default-ocean-blue.json +1 -1
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/package.json +5 -5
- package/scss/index.scss +2 -0
- package/scss/prompt/_index.scss +37 -0
- package/scss/prompt/_layout.scss +70 -0
- package/scss/prompt/_theme.scss +41 -0
- package/scss/prompt/_variables.scss +66 -0
package/dist/all.css
CHANGED
|
@@ -51021,6 +51021,91 @@ kendo-scrollview.k-scrollview .k-scrollview-nav {
|
|
|
51021
51021
|
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.13);
|
|
51022
51022
|
}
|
|
51023
51023
|
|
|
51024
|
+
.k-prompt {
|
|
51025
|
+
display: flex;
|
|
51026
|
+
flex-direction: column;
|
|
51027
|
+
position: relative;
|
|
51028
|
+
overflow: hidden;
|
|
51029
|
+
}
|
|
51030
|
+
|
|
51031
|
+
.k-prompt-content {
|
|
51032
|
+
padding-block: 16px;
|
|
51033
|
+
padding-inline: 16px;
|
|
51034
|
+
display: flex;
|
|
51035
|
+
flex-flow: column nowrap;
|
|
51036
|
+
flex: 1 1 auto;
|
|
51037
|
+
gap: 16px;
|
|
51038
|
+
overflow: auto;
|
|
51039
|
+
}
|
|
51040
|
+
|
|
51041
|
+
.k-prompt-view {
|
|
51042
|
+
display: flex;
|
|
51043
|
+
flex-direction: column;
|
|
51044
|
+
flex: 1 1 auto;
|
|
51045
|
+
gap: 16px;
|
|
51046
|
+
}
|
|
51047
|
+
|
|
51048
|
+
.k-prompt-expander {
|
|
51049
|
+
display: flex;
|
|
51050
|
+
flex-direction: column;
|
|
51051
|
+
flex: 1;
|
|
51052
|
+
align-items: start;
|
|
51053
|
+
gap: 8px;
|
|
51054
|
+
}
|
|
51055
|
+
|
|
51056
|
+
.k-prompt-expander-content {
|
|
51057
|
+
display: flex;
|
|
51058
|
+
flex-flow: column;
|
|
51059
|
+
flex: 0 0 auto;
|
|
51060
|
+
gap: 8px;
|
|
51061
|
+
align-self: stretch;
|
|
51062
|
+
}
|
|
51063
|
+
|
|
51064
|
+
.k-prompt-suggestion {
|
|
51065
|
+
border-width: 1px;
|
|
51066
|
+
border-style: solid;
|
|
51067
|
+
border-radius: 4px;
|
|
51068
|
+
padding-block: 8px;
|
|
51069
|
+
padding-inline: 8px;
|
|
51070
|
+
cursor: pointer;
|
|
51071
|
+
}
|
|
51072
|
+
|
|
51073
|
+
.k-prompt-setting {
|
|
51074
|
+
display: flex;
|
|
51075
|
+
flex-direction: column;
|
|
51076
|
+
}
|
|
51077
|
+
|
|
51078
|
+
.k-prompt-actions.k-actions, .k-prompt-actions.k-edit-buttons,
|
|
51079
|
+
.k-prompt-actions.k-action-buttons,
|
|
51080
|
+
.k-prompt-actions.k-columnmenu-actions, .k-prompt-actions.k-form-buttons {
|
|
51081
|
+
margin: 0;
|
|
51082
|
+
}
|
|
51083
|
+
|
|
51084
|
+
.k-prompt {
|
|
51085
|
+
border-color: rgba(0, 0, 0, 0.08);
|
|
51086
|
+
color: #424242;
|
|
51087
|
+
background-color: #ffffff;
|
|
51088
|
+
}
|
|
51089
|
+
|
|
51090
|
+
.k-prompt-header {
|
|
51091
|
+
border-color: rgba(0, 0, 0, 0.08);
|
|
51092
|
+
color: #424242;
|
|
51093
|
+
background-color: #ffffff;
|
|
51094
|
+
}
|
|
51095
|
+
|
|
51096
|
+
.k-prompt-content {
|
|
51097
|
+
border-color: rgba(0, 0, 0, 0.08);
|
|
51098
|
+
color: #424242;
|
|
51099
|
+
background-color: #fafafa;
|
|
51100
|
+
}
|
|
51101
|
+
|
|
51102
|
+
.k-prompt-suggestion {
|
|
51103
|
+
border-color: rgba(0, 0, 0, 0.08);
|
|
51104
|
+
color: #424242;
|
|
51105
|
+
background-color: #ffffff;
|
|
51106
|
+
box-shadow: var(--kendo-elevation-1, 0 2px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.12));
|
|
51107
|
+
}
|
|
51108
|
+
|
|
51024
51109
|
.k-barcode {
|
|
51025
51110
|
display: inline-block;
|
|
51026
51111
|
}
|
package/dist/all.scss
CHANGED
|
@@ -3925,6 +3925,7 @@ $kendo-components: (
|
|
|
3925
3925
|
"pdf-viewer",
|
|
3926
3926
|
"scroller",
|
|
3927
3927
|
"scrollview",
|
|
3928
|
+
"prompt",
|
|
3928
3929
|
|
|
3929
3930
|
// Dataviz
|
|
3930
3931
|
"dataviz",
|
|
@@ -4263,6 +4264,7 @@ $_kendo-dependencies: (
|
|
|
4263
4264
|
),
|
|
4264
4265
|
popup: (),
|
|
4265
4266
|
progressbar: (),
|
|
4267
|
+
prompt: (),
|
|
4266
4268
|
radio: (),
|
|
4267
4269
|
rating: (
|
|
4268
4270
|
"icon"
|
|
@@ -55890,6 +55892,237 @@ $kendo-scrollview-transition-timing-function: ease-in-out !default;
|
|
|
55890
55892
|
@include kendo-scrollview--styles();
|
|
55891
55893
|
}
|
|
55892
55894
|
|
|
55895
|
+
// #endregion
|
|
55896
|
+
// #region @import "./prompt/_index.scss"; -> scss/prompt/_index.scss
|
|
55897
|
+
// #region @import "../core/_index.scss"; -> scss/core/_index.scss
|
|
55898
|
+
// File already imported_once. Skipping output.
|
|
55899
|
+
// #endregion
|
|
55900
|
+
// #region @import "../utils/_index.scss"; -> scss/utils/_index.scss
|
|
55901
|
+
// File already imported_once. Skipping output.
|
|
55902
|
+
// #endregion
|
|
55903
|
+
|
|
55904
|
+
|
|
55905
|
+
// Module meta
|
|
55906
|
+
$_kendo-module-meta: (
|
|
55907
|
+
name: "prompt",
|
|
55908
|
+
dependencies: ()
|
|
55909
|
+
);
|
|
55910
|
+
|
|
55911
|
+
|
|
55912
|
+
// Dependencies
|
|
55913
|
+
// #region @import "../common/_index.scss"; -> scss/common/_index.scss
|
|
55914
|
+
// File already imported_once. Skipping output.
|
|
55915
|
+
// #endregion
|
|
55916
|
+
|
|
55917
|
+
|
|
55918
|
+
// Component
|
|
55919
|
+
// #region @import "./_variables.scss"; -> scss/prompt/_variables.scss
|
|
55920
|
+
// Prompt
|
|
55921
|
+
|
|
55922
|
+
/// The text color of the Prompt.
|
|
55923
|
+
/// @group prompt
|
|
55924
|
+
$kendo-prompt-text: $kendo-component-text !default;
|
|
55925
|
+
/// The background color of the Prompt.
|
|
55926
|
+
/// @group prompt
|
|
55927
|
+
$kendo-prompt-bg: $kendo-component-bg !default;
|
|
55928
|
+
/// The border color of the Prompt.
|
|
55929
|
+
/// @group prompt
|
|
55930
|
+
$kendo-prompt-border: $kendo-component-border !default;
|
|
55931
|
+
|
|
55932
|
+
/// The text color of the Prompt header.
|
|
55933
|
+
/// @group prompt
|
|
55934
|
+
$kendo-prompt-header-text: $kendo-component-header-text !default;
|
|
55935
|
+
/// The background color of the Prompt header.
|
|
55936
|
+
/// @group prompt
|
|
55937
|
+
$kendo-prompt-header-bg: $kendo-component-bg !default;
|
|
55938
|
+
/// The border color of the Prompt header.
|
|
55939
|
+
/// @group prompt
|
|
55940
|
+
$kendo-prompt-header-border: $kendo-component-header-border !default;
|
|
55941
|
+
|
|
55942
|
+
/// The vertical padding of the Prompt content.
|
|
55943
|
+
/// @group prompt
|
|
55944
|
+
$kendo-prompt-content-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
|
|
55945
|
+
/// The horizontal padding of the Prompt content.
|
|
55946
|
+
/// @group prompt
|
|
55947
|
+
$kendo-prompt-content-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
55948
|
+
/// The spacing between the items of the Prompt content.
|
|
55949
|
+
/// @group prompt
|
|
55950
|
+
$kendo-prompt-content-spacing: k-map-get( $kendo-spacing, 4 ) !default;
|
|
55951
|
+
/// The text color of the Prompt content.
|
|
55952
|
+
/// @group prompt
|
|
55953
|
+
$kendo-prompt-content-text: $kendo-component-header-text !default;
|
|
55954
|
+
/// The background color of the Prompt content.
|
|
55955
|
+
/// @group prompt
|
|
55956
|
+
$kendo-prompt-content-bg: $kendo-component-header-bg !default;
|
|
55957
|
+
/// The text border of the Prompt content.
|
|
55958
|
+
/// @group prompt
|
|
55959
|
+
$kendo-prompt-content-border: $kendo-component-header-border !default;
|
|
55960
|
+
|
|
55961
|
+
/// The spacing between the items of the Prompt content expander.
|
|
55962
|
+
/// @group prompt
|
|
55963
|
+
$kendo-prompt-expander-spacing: k-map-get( $kendo-spacing, 2 ) !default;
|
|
55964
|
+
|
|
55965
|
+
/// The vertical padding of the Prompt suggestion container.
|
|
55966
|
+
/// @group prompt
|
|
55967
|
+
$kendo-prompt-suggestion-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
55968
|
+
/// The horizontal padding of the Prompt suggestion container.
|
|
55969
|
+
/// @group prompt
|
|
55970
|
+
$kendo-prompt-suggestion-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
55971
|
+
/// The border radius of the Prompt suggestion container.
|
|
55972
|
+
/// @group prompt
|
|
55973
|
+
$kendo-prompt-suggestion-border-radius: $kendo-border-radius-md !default;
|
|
55974
|
+
/// The text color of the Prompt suggestion container.
|
|
55975
|
+
/// @group prompt
|
|
55976
|
+
$kendo-prompt-suggestion-text: $kendo-component-text !default;
|
|
55977
|
+
/// The background color of the Prompt suggestion container.
|
|
55978
|
+
/// @group prompt
|
|
55979
|
+
$kendo-prompt-suggestion-bg: $kendo-body-bg !default;
|
|
55980
|
+
/// The border color of the Prompt suggestion container.
|
|
55981
|
+
/// @group prompt
|
|
55982
|
+
$kendo-prompt-suggestion-border: $kendo-component-border !default;
|
|
55983
|
+
/// The elevation of the Prompt suggestion container.
|
|
55984
|
+
/// @group prompt
|
|
55985
|
+
$kendo-prompt-suggestion-shadow: k-elevation(1) !default;
|
|
55986
|
+
|
|
55987
|
+
// #endregion
|
|
55988
|
+
// #region @import "./_layout.scss"; -> scss/prompt/_layout.scss
|
|
55989
|
+
@mixin kendo-prompt--layout-base() {
|
|
55990
|
+
|
|
55991
|
+
// Prompt
|
|
55992
|
+
.k-prompt {
|
|
55993
|
+
display: flex;
|
|
55994
|
+
flex-direction: column;
|
|
55995
|
+
position: relative;
|
|
55996
|
+
overflow: hidden;
|
|
55997
|
+
}
|
|
55998
|
+
|
|
55999
|
+
// Content
|
|
56000
|
+
.k-prompt-content {
|
|
56001
|
+
padding-block: $kendo-prompt-content-padding-y;
|
|
56002
|
+
padding-inline: $kendo-prompt-content-padding-x;
|
|
56003
|
+
display: flex;
|
|
56004
|
+
flex-flow: column nowrap;
|
|
56005
|
+
flex: 1 1 auto;
|
|
56006
|
+
gap: $kendo-prompt-content-spacing;
|
|
56007
|
+
overflow: auto;
|
|
56008
|
+
}
|
|
56009
|
+
|
|
56010
|
+
.k-prompt-view {
|
|
56011
|
+
display: flex;
|
|
56012
|
+
flex-direction: column;
|
|
56013
|
+
flex: 1 1 auto;
|
|
56014
|
+
gap: $kendo-prompt-content-spacing;
|
|
56015
|
+
}
|
|
56016
|
+
|
|
56017
|
+
// Prompt Expander
|
|
56018
|
+
.k-prompt-expander {
|
|
56019
|
+
display: flex;
|
|
56020
|
+
flex-direction: column;
|
|
56021
|
+
flex: 1;
|
|
56022
|
+
align-items: start;
|
|
56023
|
+
gap: $kendo-prompt-expander-spacing;
|
|
56024
|
+
}
|
|
56025
|
+
|
|
56026
|
+
.k-prompt-expander-content {
|
|
56027
|
+
display: flex;
|
|
56028
|
+
flex-flow: column;
|
|
56029
|
+
flex: 0 0 auto;
|
|
56030
|
+
gap: $kendo-prompt-expander-spacing;
|
|
56031
|
+
align-self: stretch;
|
|
56032
|
+
}
|
|
56033
|
+
|
|
56034
|
+
.k-prompt-suggestion {
|
|
56035
|
+
border-width: 1px;
|
|
56036
|
+
border-style: solid;
|
|
56037
|
+
border-radius: $kendo-prompt-suggestion-border-radius;
|
|
56038
|
+
padding-block: $kendo-prompt-suggestion-padding-y;
|
|
56039
|
+
padding-inline: $kendo-prompt-suggestion-padding-x;
|
|
56040
|
+
cursor: pointer;
|
|
56041
|
+
}
|
|
56042
|
+
|
|
56043
|
+
.k-prompt-setting {
|
|
56044
|
+
display: flex;
|
|
56045
|
+
flex-direction: column;
|
|
56046
|
+
}
|
|
56047
|
+
|
|
56048
|
+
// Actions
|
|
56049
|
+
.k-prompt-actions.k-actions {
|
|
56050
|
+
margin: 0;
|
|
56051
|
+
}
|
|
56052
|
+
|
|
56053
|
+
}
|
|
56054
|
+
|
|
56055
|
+
|
|
56056
|
+
@mixin kendo-prompt--layout() {
|
|
56057
|
+
@include kendo-prompt--layout-base();
|
|
56058
|
+
}
|
|
56059
|
+
|
|
56060
|
+
// #endregion
|
|
56061
|
+
// #region @import "./_theme.scss"; -> scss/prompt/_theme.scss
|
|
56062
|
+
@mixin kendo-prompt--theme-base() {
|
|
56063
|
+
|
|
56064
|
+
.k-prompt {
|
|
56065
|
+
@include fill(
|
|
56066
|
+
$kendo-prompt-text,
|
|
56067
|
+
$kendo-prompt-bg,
|
|
56068
|
+
$kendo-prompt-border
|
|
56069
|
+
);
|
|
56070
|
+
}
|
|
56071
|
+
|
|
56072
|
+
.k-prompt-header {
|
|
56073
|
+
@include fill(
|
|
56074
|
+
$kendo-prompt-header-text,
|
|
56075
|
+
$kendo-prompt-header-bg,
|
|
56076
|
+
$kendo-prompt-header-border
|
|
56077
|
+
);
|
|
56078
|
+
}
|
|
56079
|
+
|
|
56080
|
+
.k-prompt-content {
|
|
56081
|
+
@include fill(
|
|
56082
|
+
$kendo-prompt-content-text,
|
|
56083
|
+
$kendo-prompt-content-bg,
|
|
56084
|
+
$kendo-prompt-content-border
|
|
56085
|
+
);
|
|
56086
|
+
}
|
|
56087
|
+
|
|
56088
|
+
.k-prompt-suggestion {
|
|
56089
|
+
@include fill(
|
|
56090
|
+
$kendo-prompt-suggestion-text,
|
|
56091
|
+
$kendo-prompt-suggestion-bg,
|
|
56092
|
+
$kendo-prompt-suggestion-border
|
|
56093
|
+
);
|
|
56094
|
+
@include box-shadow( $kendo-prompt-suggestion-shadow );
|
|
56095
|
+
}
|
|
56096
|
+
|
|
56097
|
+
}
|
|
56098
|
+
|
|
56099
|
+
|
|
56100
|
+
@mixin kendo-prompt--theme() {
|
|
56101
|
+
@include kendo-prompt--theme-base();
|
|
56102
|
+
}
|
|
56103
|
+
|
|
56104
|
+
// #endregion
|
|
56105
|
+
|
|
56106
|
+
|
|
56107
|
+
// Register
|
|
56108
|
+
// #region @import "../core/module-system/index.import.scss"; -> scss/core/module-system/index.import.scss
|
|
56109
|
+
// File already imported_once. Skipping output.
|
|
56110
|
+
// #endregion
|
|
56111
|
+
@include module-register( $_kendo-module-meta... );
|
|
56112
|
+
|
|
56113
|
+
|
|
56114
|
+
// Expose
|
|
56115
|
+
@mixin kendo-prompt--styles() {
|
|
56116
|
+
@include module-render( "prompt" ) {
|
|
56117
|
+
@include kendo-prompt--layout();
|
|
56118
|
+
@include kendo-prompt--theme();
|
|
56119
|
+
}
|
|
56120
|
+
}
|
|
56121
|
+
|
|
56122
|
+
@if $kendo-auto-bootstrap {
|
|
56123
|
+
@include kendo-prompt--styles();
|
|
56124
|
+
}
|
|
56125
|
+
|
|
55893
56126
|
// #endregion
|
|
55894
56127
|
|
|
55895
56128
|
|
|
@@ -57692,6 +57925,7 @@ $kendo-signature-maximized-line-width: 3px !default;
|
|
|
57692
57925
|
@include kendo-pdf-viewer--styles();
|
|
57693
57926
|
@include kendo-scroller--styles();
|
|
57694
57927
|
@include kendo-scrollview--styles();
|
|
57928
|
+
@include kendo-prompt--styles();
|
|
57695
57929
|
|
|
57696
57930
|
|
|
57697
57931
|
// Dataviz
|