@progress/kendo-theme-material 7.1.0-dev.1 → 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 +78 -1
- package/dist/all.scss +243 -2
- 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/material-aqua-dark.json +1 -1
- package/lib/swatches/material-arctic.json +1 -1
- package/lib/swatches/material-burnt-teal.json +1 -1
- package/lib/swatches/material-dataviz-v4.json +1 -1
- package/lib/swatches/material-eggplant.json +1 -1
- package/lib/swatches/material-lime-dark.json +1 -1
- package/lib/swatches/material-lime.json +1 -1
- package/lib/swatches/material-main-dark.json +1 -1
- package/lib/swatches/material-main.json +1 -1
- package/lib/swatches/material-nova.json +1 -1
- package/lib/swatches/material-pacific-dark.json +1 -1
- package/lib/swatches/material-pacific.json +1 -1
- package/lib/swatches/material-sky-dark.json +1 -1
- package/lib/swatches/material-sky.json +1 -1
- package/lib/swatches/material-smoke.json +1 -1
- package/package.json +6 -6
- package/scss/index.scss +2 -0
- package/scss/prompt/_index.scss +37 -0
- package/scss/prompt/_layout.scss +6 -0
- package/scss/prompt/_theme.scss +6 -0
- package/scss/prompt/_variables.scss +66 -0
package/dist/all.css
CHANGED
|
@@ -1143,7 +1143,6 @@ kendo-sortable {
|
|
|
1143
1143
|
}
|
|
1144
1144
|
|
|
1145
1145
|
.k-current-time {
|
|
1146
|
-
width: 1px;
|
|
1147
1146
|
position: absolute;
|
|
1148
1147
|
}
|
|
1149
1148
|
|
|
@@ -52780,6 +52779,84 @@ kendo-scrollview.k-scrollview .k-scrollview-nav {
|
|
|
52780
52779
|
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.13);
|
|
52781
52780
|
}
|
|
52782
52781
|
|
|
52782
|
+
.k-prompt {
|
|
52783
|
+
display: flex;
|
|
52784
|
+
flex-direction: column;
|
|
52785
|
+
position: relative;
|
|
52786
|
+
overflow: hidden;
|
|
52787
|
+
}
|
|
52788
|
+
|
|
52789
|
+
.k-prompt-content {
|
|
52790
|
+
padding-block: 16px;
|
|
52791
|
+
padding-inline: 16px;
|
|
52792
|
+
display: flex;
|
|
52793
|
+
flex-flow: column nowrap;
|
|
52794
|
+
flex: 1 1 auto;
|
|
52795
|
+
gap: 16px;
|
|
52796
|
+
overflow: auto;
|
|
52797
|
+
}
|
|
52798
|
+
|
|
52799
|
+
.k-prompt-expander {
|
|
52800
|
+
display: flex;
|
|
52801
|
+
flex-direction: column;
|
|
52802
|
+
flex: 1;
|
|
52803
|
+
align-items: start;
|
|
52804
|
+
gap: 8px;
|
|
52805
|
+
}
|
|
52806
|
+
|
|
52807
|
+
.k-prompt-expander-content {
|
|
52808
|
+
display: flex;
|
|
52809
|
+
flex-flow: column;
|
|
52810
|
+
flex: 0 0 auto;
|
|
52811
|
+
gap: 8px;
|
|
52812
|
+
align-self: stretch;
|
|
52813
|
+
}
|
|
52814
|
+
|
|
52815
|
+
.k-prompt-suggestion {
|
|
52816
|
+
border-width: 1px;
|
|
52817
|
+
border-style: solid;
|
|
52818
|
+
border-radius: 4px;
|
|
52819
|
+
padding-block: 8px;
|
|
52820
|
+
padding-inline: 8px;
|
|
52821
|
+
cursor: pointer;
|
|
52822
|
+
}
|
|
52823
|
+
|
|
52824
|
+
.k-prompt-setting {
|
|
52825
|
+
display: flex;
|
|
52826
|
+
flex-direction: column;
|
|
52827
|
+
}
|
|
52828
|
+
|
|
52829
|
+
.k-prompt-actions.k-actions, .k-prompt-actions.k-edit-buttons,
|
|
52830
|
+
.k-prompt-actions.k-action-buttons,
|
|
52831
|
+
.k-prompt-actions.k-columnmenu-actions, .k-prompt-actions.k-form-buttons {
|
|
52832
|
+
margin: 0;
|
|
52833
|
+
}
|
|
52834
|
+
|
|
52835
|
+
.k-prompt {
|
|
52836
|
+
border-color: rgba(0, 0, 0, 0.12);
|
|
52837
|
+
color: rgba(0, 0, 0, 0.87);
|
|
52838
|
+
background-color: #ffffff;
|
|
52839
|
+
}
|
|
52840
|
+
|
|
52841
|
+
.k-prompt-header {
|
|
52842
|
+
border-color: rgba(0, 0, 0, 0.08);
|
|
52843
|
+
color: rgba(0, 0, 0, 0.87);
|
|
52844
|
+
background-color: #ffffff;
|
|
52845
|
+
}
|
|
52846
|
+
|
|
52847
|
+
.k-prompt-content {
|
|
52848
|
+
border-color: rgba(0, 0, 0, 0.08);
|
|
52849
|
+
color: rgba(0, 0, 0, 0.87);
|
|
52850
|
+
background-color: #ffffff;
|
|
52851
|
+
}
|
|
52852
|
+
|
|
52853
|
+
.k-prompt-suggestion {
|
|
52854
|
+
border-color: rgba(0, 0, 0, 0.12);
|
|
52855
|
+
color: rgba(0, 0, 0, 0.87);
|
|
52856
|
+
background-color: #ffffff;
|
|
52857
|
+
box-shadow: var(--kendo-elevation-1, 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 2px 1px 0px rgba(0, 0, 0, 0.12), 0px 1px 1px 0px rgba(0, 0, 0, 0.14));
|
|
52858
|
+
}
|
|
52859
|
+
|
|
52783
52860
|
.k-barcode {
|
|
52784
52861
|
display: inline-block;
|
|
52785
52862
|
}
|
package/dist/all.scss
CHANGED
|
@@ -4855,6 +4855,7 @@ $kendo-components: (
|
|
|
4855
4855
|
"pdf-viewer",
|
|
4856
4856
|
"scroller",
|
|
4857
4857
|
"scrollview",
|
|
4858
|
+
"prompt",
|
|
4858
4859
|
|
|
4859
4860
|
// Dataviz
|
|
4860
4861
|
"dataviz",
|
|
@@ -5193,6 +5194,7 @@ $_kendo-dependencies: (
|
|
|
5193
5194
|
),
|
|
5194
5195
|
popup: (),
|
|
5195
5196
|
progressbar: (),
|
|
5197
|
+
prompt: (),
|
|
5196
5198
|
radio: (),
|
|
5197
5199
|
rating: (
|
|
5198
5200
|
"icon"
|
|
@@ -6894,12 +6896,10 @@ $kendo-zindex-loading: 100 !default;
|
|
|
6894
6896
|
// #region @import "@progress/kendo-theme-default/scss/common/_indicators.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-default/scss/common/_indicators.scss
|
|
6895
6897
|
@include exports( "common/indicators/current-time" ) {
|
|
6896
6898
|
|
|
6897
|
-
$kendo-current-time-width: 1px !default;
|
|
6898
6899
|
$kendo-current-time-color: #ff0000 !default;
|
|
6899
6900
|
|
|
6900
6901
|
// Layout
|
|
6901
6902
|
.k-current-time {
|
|
6902
|
-
width: $kendo-current-time-width;
|
|
6903
6903
|
position: absolute;
|
|
6904
6904
|
|
|
6905
6905
|
&.k-current-time-arrow-left,
|
|
@@ -60403,6 +60403,246 @@ $kendo-scrollview-transition-timing-function: ease-in-out !default;
|
|
|
60403
60403
|
@include kendo-scrollview--styles();
|
|
60404
60404
|
}
|
|
60405
60405
|
|
|
60406
|
+
// #endregion
|
|
60407
|
+
// #region @import "./prompt/_index.scss"; -> scss/prompt/_index.scss
|
|
60408
|
+
// #region @import "../core/_index.scss"; -> scss/core/_index.scss
|
|
60409
|
+
// File already imported_once. Skipping output.
|
|
60410
|
+
// #endregion
|
|
60411
|
+
// #region @import "../utils/_index.scss"; -> scss/utils/_index.scss
|
|
60412
|
+
// File already imported_once. Skipping output.
|
|
60413
|
+
// #endregion
|
|
60414
|
+
|
|
60415
|
+
|
|
60416
|
+
// Module meta
|
|
60417
|
+
$_kendo-module-meta: (
|
|
60418
|
+
name: "prompt",
|
|
60419
|
+
dependencies: ()
|
|
60420
|
+
);
|
|
60421
|
+
|
|
60422
|
+
|
|
60423
|
+
// Dependencies
|
|
60424
|
+
// #region @import "../common/_index.scss"; -> scss/common/_index.scss
|
|
60425
|
+
// File already imported_once. Skipping output.
|
|
60426
|
+
// #endregion
|
|
60427
|
+
|
|
60428
|
+
|
|
60429
|
+
// Component
|
|
60430
|
+
// #region @import "./_variables.scss"; -> scss/prompt/_variables.scss
|
|
60431
|
+
// Prompt
|
|
60432
|
+
|
|
60433
|
+
/// The text color of the Prompt.
|
|
60434
|
+
/// @group prompt
|
|
60435
|
+
$kendo-prompt-text: $kendo-component-text !default;
|
|
60436
|
+
/// The background color of the Prompt.
|
|
60437
|
+
/// @group prompt
|
|
60438
|
+
$kendo-prompt-bg: $kendo-component-bg !default;
|
|
60439
|
+
/// The border color of the Prompt.
|
|
60440
|
+
/// @group prompt
|
|
60441
|
+
$kendo-prompt-border: $kendo-component-border !default;
|
|
60442
|
+
|
|
60443
|
+
/// The text color of the Prompt header.
|
|
60444
|
+
/// @group prompt
|
|
60445
|
+
$kendo-prompt-header-text: $kendo-component-header-text !default;
|
|
60446
|
+
/// The background color of the Prompt header.
|
|
60447
|
+
/// @group prompt
|
|
60448
|
+
$kendo-prompt-header-bg: $kendo-component-bg !default;
|
|
60449
|
+
/// The border color of the Prompt header.
|
|
60450
|
+
/// @group prompt
|
|
60451
|
+
$kendo-prompt-header-border: $kendo-component-header-border !default;
|
|
60452
|
+
|
|
60453
|
+
/// The vertical padding of the Prompt content.
|
|
60454
|
+
/// @group prompt
|
|
60455
|
+
$kendo-prompt-content-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
|
|
60456
|
+
/// The horizontal padding of the Prompt content.
|
|
60457
|
+
/// @group prompt
|
|
60458
|
+
$kendo-prompt-content-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
60459
|
+
/// The spacing between the items of the Prompt content.
|
|
60460
|
+
/// @group prompt
|
|
60461
|
+
$kendo-prompt-content-spacing: k-map-get( $kendo-spacing, 4 ) !default;
|
|
60462
|
+
/// The text color of the Prompt content.
|
|
60463
|
+
/// @group prompt
|
|
60464
|
+
$kendo-prompt-content-text: $kendo-component-header-text !default;
|
|
60465
|
+
/// The background color of the Prompt content.
|
|
60466
|
+
/// @group prompt
|
|
60467
|
+
$kendo-prompt-content-bg: $kendo-component-header-bg !default;
|
|
60468
|
+
/// The text border of the Prompt content.
|
|
60469
|
+
/// @group prompt
|
|
60470
|
+
$kendo-prompt-content-border: $kendo-component-header-border !default;
|
|
60471
|
+
|
|
60472
|
+
/// The spacing between the items of the Prompt content expander.
|
|
60473
|
+
/// @group prompt
|
|
60474
|
+
$kendo-prompt-expander-spacing: k-map-get( $kendo-spacing, 2 ) !default;
|
|
60475
|
+
|
|
60476
|
+
/// The vertical padding of the Prompt suggestion container.
|
|
60477
|
+
/// @group prompt
|
|
60478
|
+
$kendo-prompt-suggestion-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
60479
|
+
/// The horizontal padding of the Prompt suggestion container.
|
|
60480
|
+
/// @group prompt
|
|
60481
|
+
$kendo-prompt-suggestion-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
60482
|
+
/// The border radius of the Prompt suggestion container.
|
|
60483
|
+
/// @group prompt
|
|
60484
|
+
$kendo-prompt-suggestion-border-radius: $kendo-border-radius-md !default;
|
|
60485
|
+
/// The text color of the Prompt suggestion container.
|
|
60486
|
+
/// @group prompt
|
|
60487
|
+
$kendo-prompt-suggestion-text: $kendo-component-text !default;
|
|
60488
|
+
/// The background color of the Prompt suggestion container.
|
|
60489
|
+
/// @group prompt
|
|
60490
|
+
$kendo-prompt-suggestion-bg: $kendo-body-bg !default;
|
|
60491
|
+
/// The border color of the Prompt suggestion container.
|
|
60492
|
+
/// @group prompt
|
|
60493
|
+
$kendo-prompt-suggestion-border: $kendo-component-border !default;
|
|
60494
|
+
/// The elevation of the Prompt suggestion container.
|
|
60495
|
+
/// @group prompt
|
|
60496
|
+
$kendo-prompt-suggestion-shadow: k-elevation(1) !default;
|
|
60497
|
+
|
|
60498
|
+
// #endregion
|
|
60499
|
+
// #region @import "./_layout.scss"; -> scss/prompt/_layout.scss
|
|
60500
|
+
// #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
|
|
60501
|
+
@mixin kendo-prompt--layout-base() {
|
|
60502
|
+
|
|
60503
|
+
// Prompt
|
|
60504
|
+
.k-prompt {
|
|
60505
|
+
display: flex;
|
|
60506
|
+
flex-direction: column;
|
|
60507
|
+
position: relative;
|
|
60508
|
+
overflow: hidden;
|
|
60509
|
+
}
|
|
60510
|
+
|
|
60511
|
+
// Content
|
|
60512
|
+
.k-prompt-content {
|
|
60513
|
+
padding-block: $kendo-prompt-content-padding-y;
|
|
60514
|
+
padding-inline: $kendo-prompt-content-padding-x;
|
|
60515
|
+
display: flex;
|
|
60516
|
+
flex-flow: column nowrap;
|
|
60517
|
+
flex: 1 1 auto;
|
|
60518
|
+
gap: $kendo-prompt-content-spacing;
|
|
60519
|
+
overflow: auto;
|
|
60520
|
+
}
|
|
60521
|
+
|
|
60522
|
+
// Prompt Expander
|
|
60523
|
+
.k-prompt-expander {
|
|
60524
|
+
display: flex;
|
|
60525
|
+
flex-direction: column;
|
|
60526
|
+
flex: 1;
|
|
60527
|
+
align-items: start;
|
|
60528
|
+
gap: $kendo-prompt-expander-spacing;
|
|
60529
|
+
}
|
|
60530
|
+
|
|
60531
|
+
.k-prompt-expander-content {
|
|
60532
|
+
display: flex;
|
|
60533
|
+
flex-flow: column;
|
|
60534
|
+
flex: 0 0 auto;
|
|
60535
|
+
gap: $kendo-prompt-expander-spacing;
|
|
60536
|
+
align-self: stretch;
|
|
60537
|
+
}
|
|
60538
|
+
|
|
60539
|
+
.k-prompt-suggestion {
|
|
60540
|
+
border-width: 1px;
|
|
60541
|
+
border-style: solid;
|
|
60542
|
+
border-radius: $kendo-prompt-suggestion-border-radius;
|
|
60543
|
+
padding-block: $kendo-prompt-suggestion-padding-y;
|
|
60544
|
+
padding-inline: $kendo-prompt-suggestion-padding-x;
|
|
60545
|
+
cursor: pointer;
|
|
60546
|
+
}
|
|
60547
|
+
|
|
60548
|
+
.k-prompt-setting {
|
|
60549
|
+
display: flex;
|
|
60550
|
+
flex-direction: column;
|
|
60551
|
+
}
|
|
60552
|
+
|
|
60553
|
+
// Actions
|
|
60554
|
+
.k-prompt-actions.k-actions {
|
|
60555
|
+
margin: 0;
|
|
60556
|
+
}
|
|
60557
|
+
|
|
60558
|
+
}
|
|
60559
|
+
|
|
60560
|
+
|
|
60561
|
+
@mixin kendo-prompt--layout() {
|
|
60562
|
+
@include kendo-prompt--layout-base();
|
|
60563
|
+
}
|
|
60564
|
+
|
|
60565
|
+
// #endregion
|
|
60566
|
+
|
|
60567
|
+
|
|
60568
|
+
@mixin kendo-prompt--layout() {
|
|
60569
|
+
@include kendo-prompt--layout-base();
|
|
60570
|
+
}
|
|
60571
|
+
|
|
60572
|
+
// #endregion
|
|
60573
|
+
// #region @import "./_theme.scss"; -> scss/prompt/_theme.scss
|
|
60574
|
+
// #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
|
|
60575
|
+
@mixin kendo-prompt--theme-base() {
|
|
60576
|
+
|
|
60577
|
+
.k-prompt {
|
|
60578
|
+
@include fill(
|
|
60579
|
+
$kendo-prompt-text,
|
|
60580
|
+
$kendo-prompt-bg,
|
|
60581
|
+
$kendo-prompt-border
|
|
60582
|
+
);
|
|
60583
|
+
}
|
|
60584
|
+
|
|
60585
|
+
.k-prompt-header {
|
|
60586
|
+
@include fill(
|
|
60587
|
+
$kendo-prompt-header-text,
|
|
60588
|
+
$kendo-prompt-header-bg,
|
|
60589
|
+
$kendo-prompt-header-border
|
|
60590
|
+
);
|
|
60591
|
+
}
|
|
60592
|
+
|
|
60593
|
+
.k-prompt-content {
|
|
60594
|
+
@include fill(
|
|
60595
|
+
$kendo-prompt-content-text,
|
|
60596
|
+
$kendo-prompt-content-bg,
|
|
60597
|
+
$kendo-prompt-content-border
|
|
60598
|
+
);
|
|
60599
|
+
}
|
|
60600
|
+
|
|
60601
|
+
.k-prompt-suggestion {
|
|
60602
|
+
@include fill(
|
|
60603
|
+
$kendo-prompt-suggestion-text,
|
|
60604
|
+
$kendo-prompt-suggestion-bg,
|
|
60605
|
+
$kendo-prompt-suggestion-border
|
|
60606
|
+
);
|
|
60607
|
+
@include box-shadow( $kendo-prompt-suggestion-shadow );
|
|
60608
|
+
}
|
|
60609
|
+
|
|
60610
|
+
}
|
|
60611
|
+
|
|
60612
|
+
|
|
60613
|
+
@mixin kendo-prompt--theme() {
|
|
60614
|
+
@include kendo-prompt--theme-base();
|
|
60615
|
+
}
|
|
60616
|
+
|
|
60617
|
+
// #endregion
|
|
60618
|
+
|
|
60619
|
+
|
|
60620
|
+
@mixin kendo-prompt--theme() {
|
|
60621
|
+
@include kendo-prompt--theme-base();
|
|
60622
|
+
}
|
|
60623
|
+
|
|
60624
|
+
// #endregion
|
|
60625
|
+
|
|
60626
|
+
|
|
60627
|
+
// Register
|
|
60628
|
+
// #region @import "../core/module-system/index.import.scss"; -> scss/core/module-system/index.import.scss
|
|
60629
|
+
// File already imported_once. Skipping output.
|
|
60630
|
+
// #endregion
|
|
60631
|
+
@include module-register( $_kendo-module-meta... );
|
|
60632
|
+
|
|
60633
|
+
|
|
60634
|
+
// Expose
|
|
60635
|
+
@mixin kendo-prompt--styles() {
|
|
60636
|
+
@include module-render( "prompt" ) {
|
|
60637
|
+
@include kendo-prompt--layout();
|
|
60638
|
+
@include kendo-prompt--theme();
|
|
60639
|
+
}
|
|
60640
|
+
}
|
|
60641
|
+
|
|
60642
|
+
@if $kendo-auto-bootstrap {
|
|
60643
|
+
@include kendo-prompt--styles();
|
|
60644
|
+
}
|
|
60645
|
+
|
|
60406
60646
|
// #endregion
|
|
60407
60647
|
|
|
60408
60648
|
|
|
@@ -62267,6 +62507,7 @@ $kendo-signature-maximized-line-width: 3px !default;
|
|
|
62267
62507
|
@include kendo-pdf-viewer--styles();
|
|
62268
62508
|
@include kendo-scroller--styles();
|
|
62269
62509
|
@include kendo-scrollview--styles();
|
|
62510
|
+
@include kendo-prompt--styles();
|
|
62270
62511
|
|
|
62271
62512
|
|
|
62272
62513
|
// Dataviz
|