@progress/kendo-theme-default 7.1.0-dev.2 → 7.1.0-dev.3

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 CHANGED
@@ -51021,6 +51021,84 @@ 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-expander {
51042
+ display: flex;
51043
+ flex-direction: column;
51044
+ flex: 1;
51045
+ align-items: start;
51046
+ gap: 8px;
51047
+ }
51048
+
51049
+ .k-prompt-expander-content {
51050
+ display: flex;
51051
+ flex-flow: column;
51052
+ flex: 0 0 auto;
51053
+ gap: 8px;
51054
+ align-self: stretch;
51055
+ }
51056
+
51057
+ .k-prompt-suggestion {
51058
+ border-width: 1px;
51059
+ border-style: solid;
51060
+ border-radius: 4px;
51061
+ padding-block: 8px;
51062
+ padding-inline: 8px;
51063
+ cursor: pointer;
51064
+ }
51065
+
51066
+ .k-prompt-setting {
51067
+ display: flex;
51068
+ flex-direction: column;
51069
+ }
51070
+
51071
+ .k-prompt-actions.k-actions, .k-prompt-actions.k-edit-buttons,
51072
+ .k-prompt-actions.k-action-buttons,
51073
+ .k-prompt-actions.k-columnmenu-actions, .k-prompt-actions.k-form-buttons {
51074
+ margin: 0;
51075
+ }
51076
+
51077
+ .k-prompt {
51078
+ border-color: rgba(0, 0, 0, 0.08);
51079
+ color: #424242;
51080
+ background-color: #ffffff;
51081
+ }
51082
+
51083
+ .k-prompt-header {
51084
+ border-color: rgba(0, 0, 0, 0.08);
51085
+ color: #424242;
51086
+ background-color: #ffffff;
51087
+ }
51088
+
51089
+ .k-prompt-content {
51090
+ border-color: rgba(0, 0, 0, 0.08);
51091
+ color: #424242;
51092
+ background-color: #fafafa;
51093
+ }
51094
+
51095
+ .k-prompt-suggestion {
51096
+ border-color: rgba(0, 0, 0, 0.08);
51097
+ color: #424242;
51098
+ background-color: #ffffff;
51099
+ box-shadow: var(--kendo-elevation-1, 0 2px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.12));
51100
+ }
51101
+
51024
51102
  .k-barcode {
51025
51103
  display: inline-block;
51026
51104
  }
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,230 @@ $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
+ // Prompt Expander
56011
+ .k-prompt-expander {
56012
+ display: flex;
56013
+ flex-direction: column;
56014
+ flex: 1;
56015
+ align-items: start;
56016
+ gap: $kendo-prompt-expander-spacing;
56017
+ }
56018
+
56019
+ .k-prompt-expander-content {
56020
+ display: flex;
56021
+ flex-flow: column;
56022
+ flex: 0 0 auto;
56023
+ gap: $kendo-prompt-expander-spacing;
56024
+ align-self: stretch;
56025
+ }
56026
+
56027
+ .k-prompt-suggestion {
56028
+ border-width: 1px;
56029
+ border-style: solid;
56030
+ border-radius: $kendo-prompt-suggestion-border-radius;
56031
+ padding-block: $kendo-prompt-suggestion-padding-y;
56032
+ padding-inline: $kendo-prompt-suggestion-padding-x;
56033
+ cursor: pointer;
56034
+ }
56035
+
56036
+ .k-prompt-setting {
56037
+ display: flex;
56038
+ flex-direction: column;
56039
+ }
56040
+
56041
+ // Actions
56042
+ .k-prompt-actions.k-actions {
56043
+ margin: 0;
56044
+ }
56045
+
56046
+ }
56047
+
56048
+
56049
+ @mixin kendo-prompt--layout() {
56050
+ @include kendo-prompt--layout-base();
56051
+ }
56052
+
56053
+ // #endregion
56054
+ // #region @import "./_theme.scss"; -> scss/prompt/_theme.scss
56055
+ @mixin kendo-prompt--theme-base() {
56056
+
56057
+ .k-prompt {
56058
+ @include fill(
56059
+ $kendo-prompt-text,
56060
+ $kendo-prompt-bg,
56061
+ $kendo-prompt-border
56062
+ );
56063
+ }
56064
+
56065
+ .k-prompt-header {
56066
+ @include fill(
56067
+ $kendo-prompt-header-text,
56068
+ $kendo-prompt-header-bg,
56069
+ $kendo-prompt-header-border
56070
+ );
56071
+ }
56072
+
56073
+ .k-prompt-content {
56074
+ @include fill(
56075
+ $kendo-prompt-content-text,
56076
+ $kendo-prompt-content-bg,
56077
+ $kendo-prompt-content-border
56078
+ );
56079
+ }
56080
+
56081
+ .k-prompt-suggestion {
56082
+ @include fill(
56083
+ $kendo-prompt-suggestion-text,
56084
+ $kendo-prompt-suggestion-bg,
56085
+ $kendo-prompt-suggestion-border
56086
+ );
56087
+ @include box-shadow( $kendo-prompt-suggestion-shadow );
56088
+ }
56089
+
56090
+ }
56091
+
56092
+
56093
+ @mixin kendo-prompt--theme() {
56094
+ @include kendo-prompt--theme-base();
56095
+ }
56096
+
56097
+ // #endregion
56098
+
56099
+
56100
+ // Register
56101
+ // #region @import "../core/module-system/index.import.scss"; -> scss/core/module-system/index.import.scss
56102
+ // File already imported_once. Skipping output.
56103
+ // #endregion
56104
+ @include module-register( $_kendo-module-meta... );
56105
+
56106
+
56107
+ // Expose
56108
+ @mixin kendo-prompt--styles() {
56109
+ @include module-render( "prompt" ) {
56110
+ @include kendo-prompt--layout();
56111
+ @include kendo-prompt--theme();
56112
+ }
56113
+ }
56114
+
56115
+ @if $kendo-auto-bootstrap {
56116
+ @include kendo-prompt--styles();
56117
+ }
56118
+
55893
56119
  // #endregion
55894
56120
 
55895
56121
 
@@ -57692,6 +57918,7 @@ $kendo-signature-maximized-line-width: 3px !default;
57692
57918
  @include kendo-pdf-viewer--styles();
57693
57919
  @include kendo-scroller--styles();
57694
57920
  @include kendo-scrollview--styles();
57921
+ @include kendo-prompt--styles();
57695
57922
 
57696
57923
 
57697
57924
  // Dataviz