@progress/kendo-theme-classic 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 CHANGED
@@ -51063,6 +51063,91 @@ kendo-scrollview.k-scrollview .k-scrollview-nav {
51063
51063
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.13);
51064
51064
  }
51065
51065
 
51066
+ .k-prompt {
51067
+ display: flex;
51068
+ flex-direction: column;
51069
+ position: relative;
51070
+ overflow: hidden;
51071
+ }
51072
+
51073
+ .k-prompt-content {
51074
+ padding-block: 16px;
51075
+ padding-inline: 16px;
51076
+ display: flex;
51077
+ flex-flow: column nowrap;
51078
+ flex: 1 1 auto;
51079
+ gap: 16px;
51080
+ overflow: auto;
51081
+ }
51082
+
51083
+ .k-prompt-view {
51084
+ display: flex;
51085
+ flex-direction: column;
51086
+ flex: 1 1 auto;
51087
+ gap: 16px;
51088
+ }
51089
+
51090
+ .k-prompt-expander {
51091
+ display: flex;
51092
+ flex-direction: column;
51093
+ flex: 1;
51094
+ align-items: start;
51095
+ gap: 8px;
51096
+ }
51097
+
51098
+ .k-prompt-expander-content {
51099
+ display: flex;
51100
+ flex-flow: column;
51101
+ flex: 0 0 auto;
51102
+ gap: 8px;
51103
+ align-self: stretch;
51104
+ }
51105
+
51106
+ .k-prompt-suggestion {
51107
+ border-width: 1px;
51108
+ border-style: solid;
51109
+ border-radius: 4px;
51110
+ padding-block: 8px;
51111
+ padding-inline: 8px;
51112
+ cursor: pointer;
51113
+ }
51114
+
51115
+ .k-prompt-setting {
51116
+ display: flex;
51117
+ flex-direction: column;
51118
+ }
51119
+
51120
+ .k-prompt-actions.k-actions, .k-prompt-actions.k-edit-buttons,
51121
+ .k-prompt-actions.k-action-buttons,
51122
+ .k-prompt-actions.k-columnmenu-actions, .k-prompt-actions.k-form-buttons {
51123
+ margin: 0;
51124
+ }
51125
+
51126
+ .k-prompt {
51127
+ border-color: #cacaca;
51128
+ color: #272727;
51129
+ background-color: #ffffff;
51130
+ }
51131
+
51132
+ .k-prompt-header {
51133
+ border-color: #cacaca;
51134
+ color: #272727;
51135
+ background-color: #ffffff;
51136
+ }
51137
+
51138
+ .k-prompt-content {
51139
+ border-color: #cacaca;
51140
+ color: #272727;
51141
+ background-color: #f0f0f0;
51142
+ }
51143
+
51144
+ .k-prompt-suggestion {
51145
+ border-color: #cacaca;
51146
+ color: #272727;
51147
+ background-color: #ffffff;
51148
+ box-shadow: var(--kendo-elevation-1, 0 2px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.12));
51149
+ }
51150
+
51066
51151
  .k-barcode {
51067
51152
  display: inline-block;
51068
51153
  }
package/dist/all.scss CHANGED
@@ -3839,6 +3839,7 @@ $kendo-components: (
3839
3839
  "pdf-viewer",
3840
3840
  "scroller",
3841
3841
  "scrollview",
3842
+ "prompt",
3842
3843
 
3843
3844
  // Dataviz
3844
3845
  "dataviz",
@@ -4177,6 +4178,7 @@ $_kendo-dependencies: (
4177
4178
  ),
4178
4179
  popup: (),
4179
4180
  progressbar: (),
4181
+ prompt: (),
4180
4182
  radio: (),
4181
4183
  rating: (
4182
4184
  "icon"
@@ -57460,6 +57462,253 @@ $kendo-scrollview-transition-timing-function: ease-in-out !default;
57460
57462
  @include kendo-scrollview--styles();
57461
57463
  }
57462
57464
 
57465
+ // #endregion
57466
+ // #region @import "./prompt/_index.scss"; -> scss/prompt/_index.scss
57467
+ // #region @import "../core/_index.scss"; -> scss/core/_index.scss
57468
+ // File already imported_once. Skipping output.
57469
+ // #endregion
57470
+ // #region @import "../utils/_index.scss"; -> scss/utils/_index.scss
57471
+ // File already imported_once. Skipping output.
57472
+ // #endregion
57473
+
57474
+
57475
+ // Module meta
57476
+ $_kendo-module-meta: (
57477
+ name: "prompt",
57478
+ dependencies: ()
57479
+ );
57480
+
57481
+
57482
+ // Dependencies
57483
+ // #region @import "../common/_index.scss"; -> scss/common/_index.scss
57484
+ // File already imported_once. Skipping output.
57485
+ // #endregion
57486
+
57487
+
57488
+ // Component
57489
+ // #region @import "./_variables.scss"; -> scss/prompt/_variables.scss
57490
+ // Prompt
57491
+
57492
+ /// The text color of the Prompt.
57493
+ /// @group prompt
57494
+ $kendo-prompt-text: $kendo-component-text !default;
57495
+ /// The background color of the Prompt.
57496
+ /// @group prompt
57497
+ $kendo-prompt-bg: $kendo-component-bg !default;
57498
+ /// The border color of the Prompt.
57499
+ /// @group prompt
57500
+ $kendo-prompt-border: $kendo-component-border !default;
57501
+
57502
+ /// The text color of the Prompt header.
57503
+ /// @group prompt
57504
+ $kendo-prompt-header-text: $kendo-component-header-text !default;
57505
+ /// The background color of the Prompt header.
57506
+ /// @group prompt
57507
+ $kendo-prompt-header-bg: $kendo-component-bg !default;
57508
+ /// The border color of the Prompt header.
57509
+ /// @group prompt
57510
+ $kendo-prompt-header-border: $kendo-component-header-border !default;
57511
+
57512
+ /// The vertical padding of the Prompt content.
57513
+ /// @group prompt
57514
+ $kendo-prompt-content-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
57515
+ /// The horizontal padding of the Prompt content.
57516
+ /// @group prompt
57517
+ $kendo-prompt-content-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
57518
+ /// The spacing between the items of the Prompt content.
57519
+ /// @group prompt
57520
+ $kendo-prompt-content-spacing: k-map-get( $kendo-spacing, 4 ) !default;
57521
+ /// The text color of the Prompt content.
57522
+ /// @group prompt
57523
+ $kendo-prompt-content-text: $kendo-component-header-text !default;
57524
+ /// The background color of the Prompt content.
57525
+ /// @group prompt
57526
+ $kendo-prompt-content-bg: $kendo-component-header-bg !default;
57527
+ /// The text border of the Prompt content.
57528
+ /// @group prompt
57529
+ $kendo-prompt-content-border: $kendo-component-header-border !default;
57530
+
57531
+ /// The spacing between the items of the Prompt content expander.
57532
+ /// @group prompt
57533
+ $kendo-prompt-expander-spacing: k-map-get( $kendo-spacing, 2 ) !default;
57534
+
57535
+ /// The vertical padding of the Prompt suggestion container.
57536
+ /// @group prompt
57537
+ $kendo-prompt-suggestion-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
57538
+ /// The horizontal padding of the Prompt suggestion container.
57539
+ /// @group prompt
57540
+ $kendo-prompt-suggestion-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
57541
+ /// The border radius of the Prompt suggestion container.
57542
+ /// @group prompt
57543
+ $kendo-prompt-suggestion-border-radius: $kendo-border-radius-md !default;
57544
+ /// The text color of the Prompt suggestion container.
57545
+ /// @group prompt
57546
+ $kendo-prompt-suggestion-text: $kendo-component-text !default;
57547
+ /// The background color of the Prompt suggestion container.
57548
+ /// @group prompt
57549
+ $kendo-prompt-suggestion-bg: $kendo-body-bg !default;
57550
+ /// The border color of the Prompt suggestion container.
57551
+ /// @group prompt
57552
+ $kendo-prompt-suggestion-border: $kendo-component-border !default;
57553
+ /// The elevation of the Prompt suggestion container.
57554
+ /// @group prompt
57555
+ $kendo-prompt-suggestion-shadow: k-elevation(1) !default;
57556
+
57557
+ // #endregion
57558
+ // #region @import "./_layout.scss"; -> scss/prompt/_layout.scss
57559
+ // #region @import "@progress/kendo-theme-default/scss/prompt/_layout.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-default/scss/prompt/_layout.scss
57560
+ @mixin kendo-prompt--layout-base() {
57561
+
57562
+ // Prompt
57563
+ .k-prompt {
57564
+ display: flex;
57565
+ flex-direction: column;
57566
+ position: relative;
57567
+ overflow: hidden;
57568
+ }
57569
+
57570
+ // Content
57571
+ .k-prompt-content {
57572
+ padding-block: $kendo-prompt-content-padding-y;
57573
+ padding-inline: $kendo-prompt-content-padding-x;
57574
+ display: flex;
57575
+ flex-flow: column nowrap;
57576
+ flex: 1 1 auto;
57577
+ gap: $kendo-prompt-content-spacing;
57578
+ overflow: auto;
57579
+ }
57580
+
57581
+ .k-prompt-view {
57582
+ display: flex;
57583
+ flex-direction: column;
57584
+ flex: 1 1 auto;
57585
+ gap: $kendo-prompt-content-spacing;
57586
+ }
57587
+
57588
+ // Prompt Expander
57589
+ .k-prompt-expander {
57590
+ display: flex;
57591
+ flex-direction: column;
57592
+ flex: 1;
57593
+ align-items: start;
57594
+ gap: $kendo-prompt-expander-spacing;
57595
+ }
57596
+
57597
+ .k-prompt-expander-content {
57598
+ display: flex;
57599
+ flex-flow: column;
57600
+ flex: 0 0 auto;
57601
+ gap: $kendo-prompt-expander-spacing;
57602
+ align-self: stretch;
57603
+ }
57604
+
57605
+ .k-prompt-suggestion {
57606
+ border-width: 1px;
57607
+ border-style: solid;
57608
+ border-radius: $kendo-prompt-suggestion-border-radius;
57609
+ padding-block: $kendo-prompt-suggestion-padding-y;
57610
+ padding-inline: $kendo-prompt-suggestion-padding-x;
57611
+ cursor: pointer;
57612
+ }
57613
+
57614
+ .k-prompt-setting {
57615
+ display: flex;
57616
+ flex-direction: column;
57617
+ }
57618
+
57619
+ // Actions
57620
+ .k-prompt-actions.k-actions {
57621
+ margin: 0;
57622
+ }
57623
+
57624
+ }
57625
+
57626
+
57627
+ @mixin kendo-prompt--layout() {
57628
+ @include kendo-prompt--layout-base();
57629
+ }
57630
+
57631
+ // #endregion
57632
+
57633
+
57634
+ @mixin kendo-prompt--layout() {
57635
+ @include kendo-prompt--layout-base();
57636
+ }
57637
+
57638
+ // #endregion
57639
+ // #region @import "./_theme.scss"; -> scss/prompt/_theme.scss
57640
+ // #region @import "@progress/kendo-theme-default/scss/prompt/_theme.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-default/scss/prompt/_theme.scss
57641
+ @mixin kendo-prompt--theme-base() {
57642
+
57643
+ .k-prompt {
57644
+ @include fill(
57645
+ $kendo-prompt-text,
57646
+ $kendo-prompt-bg,
57647
+ $kendo-prompt-border
57648
+ );
57649
+ }
57650
+
57651
+ .k-prompt-header {
57652
+ @include fill(
57653
+ $kendo-prompt-header-text,
57654
+ $kendo-prompt-header-bg,
57655
+ $kendo-prompt-header-border
57656
+ );
57657
+ }
57658
+
57659
+ .k-prompt-content {
57660
+ @include fill(
57661
+ $kendo-prompt-content-text,
57662
+ $kendo-prompt-content-bg,
57663
+ $kendo-prompt-content-border
57664
+ );
57665
+ }
57666
+
57667
+ .k-prompt-suggestion {
57668
+ @include fill(
57669
+ $kendo-prompt-suggestion-text,
57670
+ $kendo-prompt-suggestion-bg,
57671
+ $kendo-prompt-suggestion-border
57672
+ );
57673
+ @include box-shadow( $kendo-prompt-suggestion-shadow );
57674
+ }
57675
+
57676
+ }
57677
+
57678
+
57679
+ @mixin kendo-prompt--theme() {
57680
+ @include kendo-prompt--theme-base();
57681
+ }
57682
+
57683
+ // #endregion
57684
+
57685
+
57686
+ @mixin kendo-prompt--theme() {
57687
+ @include kendo-prompt--theme-base();
57688
+ }
57689
+
57690
+ // #endregion
57691
+
57692
+
57693
+ // Register
57694
+ // #region @import "../core/module-system/index.import.scss"; -> scss/core/module-system/index.import.scss
57695
+ // File already imported_once. Skipping output.
57696
+ // #endregion
57697
+ @include module-register( $_kendo-module-meta... );
57698
+
57699
+
57700
+ // Expose
57701
+ @mixin kendo-prompt--styles() {
57702
+ @include module-render( "prompt" ) {
57703
+ @include kendo-prompt--layout();
57704
+ @include kendo-prompt--theme();
57705
+ }
57706
+ }
57707
+
57708
+ @if $kendo-auto-bootstrap {
57709
+ @include kendo-prompt--styles();
57710
+ }
57711
+
57463
57712
  // #endregion
57464
57713
 
57465
57714
 
@@ -59324,6 +59573,7 @@ $kendo-signature-maximized-line-width: 3px !default;
59324
59573
  @include kendo-pdf-viewer--styles();
59325
59574
  @include kendo-scroller--styles();
59326
59575
  @include kendo-scrollview--styles();
59576
+ @include kendo-prompt--styles();
59327
59577
 
59328
59578
 
59329
59579
  // Dataviz