@fundamental-styles/theming-preview 0.24.0-rc.21 → 0.24.0-rc.25
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/fundamental-styles.css +411 -1
- package/package.json +2 -2
package/fundamental-styles.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/*!
|
|
3
|
-
* Fundamental Library Styles v0.24.0-rc.
|
|
3
|
+
* Fundamental Library Styles v0.24.0-rc.25
|
|
4
4
|
* Copyright (c) 2022 SAP SE or an SAP affiliate company.
|
|
5
5
|
* Licensed under Apache License 2.0 (https://github.com/SAP/fundamental-styles/blob/main/LICENSE)
|
|
6
6
|
*/
|
|
@@ -3658,6 +3658,134 @@
|
|
|
3658
3658
|
.fd-action-bar--xl {
|
|
3659
3659
|
padding: .5rem 3rem
|
|
3660
3660
|
}
|
|
3661
|
+
.fd-action-sheet {
|
|
3662
|
+
font-size: var(--sapFontSize);
|
|
3663
|
+
line-height: var(--sapContent_LineHeight);
|
|
3664
|
+
color: var(--sapTextColor);
|
|
3665
|
+
font-family: var(--sapFontFamily);
|
|
3666
|
+
font-weight: 400;
|
|
3667
|
+
-webkit-box-sizing: border-box;
|
|
3668
|
+
box-sizing: border-box;
|
|
3669
|
+
padding: 0;
|
|
3670
|
+
margin: 0;
|
|
3671
|
+
border: 0;
|
|
3672
|
+
padding: .25rem .5rem;
|
|
3673
|
+
width: 100%
|
|
3674
|
+
}
|
|
3675
|
+
.fd-action-sheet::after,
|
|
3676
|
+
.fd-action-sheet::before {
|
|
3677
|
+
-webkit-box-sizing: inherit;
|
|
3678
|
+
box-sizing: inherit;
|
|
3679
|
+
font-size: inherit
|
|
3680
|
+
}
|
|
3681
|
+
.fd-action-sheet__item {
|
|
3682
|
+
font-size: var(--sapFontSize);
|
|
3683
|
+
line-height: var(--sapContent_LineHeight);
|
|
3684
|
+
color: var(--sapTextColor);
|
|
3685
|
+
font-family: var(--sapFontFamily);
|
|
3686
|
+
font-weight: 400;
|
|
3687
|
+
-webkit-box-sizing: border-box;
|
|
3688
|
+
box-sizing: border-box;
|
|
3689
|
+
padding: 0;
|
|
3690
|
+
margin: 0;
|
|
3691
|
+
border: 0;
|
|
3692
|
+
display: block;
|
|
3693
|
+
width: 100%;
|
|
3694
|
+
padding: .25rem 0
|
|
3695
|
+
}
|
|
3696
|
+
.fd-action-sheet__item::after,
|
|
3697
|
+
.fd-action-sheet__item::before {
|
|
3698
|
+
-webkit-box-sizing: inherit;
|
|
3699
|
+
box-sizing: inherit;
|
|
3700
|
+
font-size: inherit
|
|
3701
|
+
}
|
|
3702
|
+
.fd-action-sheet__wrapper {
|
|
3703
|
+
position: absolute;
|
|
3704
|
+
width: 100%;
|
|
3705
|
+
height: 100%;
|
|
3706
|
+
left: 0;
|
|
3707
|
+
top: 0;
|
|
3708
|
+
display: none;
|
|
3709
|
+
border-radius: var(--fdPopover_Border_Radius)
|
|
3710
|
+
}
|
|
3711
|
+
.fd-action-sheet__wrapper::before {
|
|
3712
|
+
content: "";
|
|
3713
|
+
display: block;
|
|
3714
|
+
position: absolute;
|
|
3715
|
+
top: 0;
|
|
3716
|
+
left: 0;
|
|
3717
|
+
width: 100%;
|
|
3718
|
+
height: 100%;
|
|
3719
|
+
opacity: var(--fdOverlay_Background_Opacity);
|
|
3720
|
+
background-color: var(--sapBlockLayer_Background);
|
|
3721
|
+
border-radius: var(--fdPopover_Border_Radius)
|
|
3722
|
+
}
|
|
3723
|
+
.fd-action-sheet__wrapper--active {
|
|
3724
|
+
display: -webkit-box;
|
|
3725
|
+
display: -ms-flexbox;
|
|
3726
|
+
display: flex;
|
|
3727
|
+
-webkit-box-orient: vertical;
|
|
3728
|
+
-webkit-box-direction: normal;
|
|
3729
|
+
-ms-flex-direction: column;
|
|
3730
|
+
flex-direction: column;
|
|
3731
|
+
-webkit-box-pack: end;
|
|
3732
|
+
-ms-flex-pack: end;
|
|
3733
|
+
justify-content: flex-end;
|
|
3734
|
+
-webkit-box-align: start;
|
|
3735
|
+
-ms-flex-align: start;
|
|
3736
|
+
align-items: flex-start
|
|
3737
|
+
}
|
|
3738
|
+
.fd-action-sheet__title {
|
|
3739
|
+
font-size: var(--sapFontSize);
|
|
3740
|
+
line-height: var(--sapContent_LineHeight);
|
|
3741
|
+
color: var(--sapTextColor);
|
|
3742
|
+
font-family: var(--sapFontFamily);
|
|
3743
|
+
font-weight: 400;
|
|
3744
|
+
-webkit-box-sizing: border-box;
|
|
3745
|
+
box-sizing: border-box;
|
|
3746
|
+
padding: 0;
|
|
3747
|
+
margin: 0;
|
|
3748
|
+
border: 0;
|
|
3749
|
+
font-family: var(--sapFontHeaderFamily);
|
|
3750
|
+
color: var(--sapGroup_TitleTextColor);
|
|
3751
|
+
font-size: var(--sapFontHeader6Size);
|
|
3752
|
+
white-space: nowrap;
|
|
3753
|
+
overflow: hidden;
|
|
3754
|
+
text-overflow: ellipsis;
|
|
3755
|
+
max-width: 100%;
|
|
3756
|
+
z-index: 1;
|
|
3757
|
+
padding: 0 1rem .5rem 1rem;
|
|
3758
|
+
color: var(--sapContent_ContrastTextColor)
|
|
3759
|
+
}
|
|
3760
|
+
.fd-action-sheet__title::after,
|
|
3761
|
+
.fd-action-sheet__title::before {
|
|
3762
|
+
-webkit-box-sizing: inherit;
|
|
3763
|
+
box-sizing: inherit;
|
|
3764
|
+
font-size: inherit
|
|
3765
|
+
}
|
|
3766
|
+
.fd-action-sheet--compact {
|
|
3767
|
+
padding: .1875rem .375rem
|
|
3768
|
+
}
|
|
3769
|
+
.fd-action-sheet--compact .fd-action-sheet__item {
|
|
3770
|
+
padding: .1875rem 0
|
|
3771
|
+
}
|
|
3772
|
+
.fd-action-sheet--mobile {
|
|
3773
|
+
background-color: var(--sapGroup_ContentBackground);
|
|
3774
|
+
z-index: 1;
|
|
3775
|
+
-webkit-box-shadow: var(--sapContent_Shadow1);
|
|
3776
|
+
box-shadow: var(--sapContent_Shadow1);
|
|
3777
|
+
width: calc(100% - var(--sapGroup_BorderWidth) * 2);
|
|
3778
|
+
position: relative;
|
|
3779
|
+
overflow: auto;
|
|
3780
|
+
left: var(--sapGroup_BorderWidth);
|
|
3781
|
+
right: auto;
|
|
3782
|
+
border-radius: var(--fdPopover_Border_Radius)
|
|
3783
|
+
}
|
|
3784
|
+
.fd-action-sheet--mobile[dir=rtl],
|
|
3785
|
+
[dir=rtl] .fd-action-sheet--mobile {
|
|
3786
|
+
right: var(--sapGroup_BorderWidth);
|
|
3787
|
+
left: auto
|
|
3788
|
+
}
|
|
3661
3789
|
/*!
|
|
3662
3790
|
.fd-alert+(--information, --success, --warning, --error, --no-icon)
|
|
3663
3791
|
.fd-alert__close
|
|
@@ -16390,6 +16518,253 @@ fd-carousel:focus {
|
|
|
16390
16518
|
padding-right: 3rem
|
|
16391
16519
|
}
|
|
16392
16520
|
}
|
|
16521
|
+
.fd-illustrated-message {
|
|
16522
|
+
font-size: var(--sapFontSize);
|
|
16523
|
+
line-height: var(--sapContent_LineHeight);
|
|
16524
|
+
color: var(--sapTextColor);
|
|
16525
|
+
font-family: var(--sapFontFamily);
|
|
16526
|
+
font-weight: 400;
|
|
16527
|
+
-webkit-box-sizing: border-box;
|
|
16528
|
+
box-sizing: border-box;
|
|
16529
|
+
padding: 0;
|
|
16530
|
+
margin: 0;
|
|
16531
|
+
border: 0;
|
|
16532
|
+
display: -webkit-box;
|
|
16533
|
+
display: -ms-flexbox;
|
|
16534
|
+
display: flex;
|
|
16535
|
+
-webkit-box-orient: vertical;
|
|
16536
|
+
-webkit-box-direction: normal;
|
|
16537
|
+
-ms-flex-direction: column;
|
|
16538
|
+
flex-direction: column;
|
|
16539
|
+
-webkit-box-align: center;
|
|
16540
|
+
-ms-flex-align: center;
|
|
16541
|
+
align-items: center;
|
|
16542
|
+
width: 100%;
|
|
16543
|
+
max-width: 30rem;
|
|
16544
|
+
height: auto;
|
|
16545
|
+
padding: 1rem;
|
|
16546
|
+
margin-top: 5rem;
|
|
16547
|
+
text-align: center
|
|
16548
|
+
}
|
|
16549
|
+
.fd-illustrated-message::after,
|
|
16550
|
+
.fd-illustrated-message::before {
|
|
16551
|
+
-webkit-box-sizing: inherit;
|
|
16552
|
+
box-sizing: inherit;
|
|
16553
|
+
font-size: inherit
|
|
16554
|
+
}
|
|
16555
|
+
.fd-illustrated-message__illustration {
|
|
16556
|
+
font-size: var(--sapFontSize);
|
|
16557
|
+
line-height: var(--sapContent_LineHeight);
|
|
16558
|
+
color: var(--sapTextColor);
|
|
16559
|
+
font-family: var(--sapFontFamily);
|
|
16560
|
+
font-weight: 400;
|
|
16561
|
+
-webkit-box-sizing: border-box;
|
|
16562
|
+
box-sizing: border-box;
|
|
16563
|
+
padding: 0;
|
|
16564
|
+
margin: 0;
|
|
16565
|
+
border: 0;
|
|
16566
|
+
height: 15rem;
|
|
16567
|
+
width: 20rem
|
|
16568
|
+
}
|
|
16569
|
+
.fd-illustrated-message__illustration::after,
|
|
16570
|
+
.fd-illustrated-message__illustration::before {
|
|
16571
|
+
-webkit-box-sizing: inherit;
|
|
16572
|
+
box-sizing: inherit;
|
|
16573
|
+
font-size: inherit
|
|
16574
|
+
}
|
|
16575
|
+
.fd-illustrated-message__figcaption {
|
|
16576
|
+
font-size: var(--sapFontSize);
|
|
16577
|
+
line-height: var(--sapContent_LineHeight);
|
|
16578
|
+
color: var(--sapTextColor);
|
|
16579
|
+
font-family: var(--sapFontFamily);
|
|
16580
|
+
font-weight: 400;
|
|
16581
|
+
-webkit-box-sizing: border-box;
|
|
16582
|
+
box-sizing: border-box;
|
|
16583
|
+
padding: 0;
|
|
16584
|
+
margin: 0;
|
|
16585
|
+
border: 0;
|
|
16586
|
+
display: -webkit-box;
|
|
16587
|
+
display: -ms-flexbox;
|
|
16588
|
+
display: flex;
|
|
16589
|
+
-webkit-box-orient: vertical;
|
|
16590
|
+
-webkit-box-direction: normal;
|
|
16591
|
+
-ms-flex-direction: column;
|
|
16592
|
+
flex-direction: column;
|
|
16593
|
+
-webkit-box-align: center;
|
|
16594
|
+
-ms-flex-align: center;
|
|
16595
|
+
align-items: center;
|
|
16596
|
+
width: 100%
|
|
16597
|
+
}
|
|
16598
|
+
.fd-illustrated-message__figcaption::after,
|
|
16599
|
+
.fd-illustrated-message__figcaption::before {
|
|
16600
|
+
-webkit-box-sizing: inherit;
|
|
16601
|
+
box-sizing: inherit;
|
|
16602
|
+
font-size: inherit
|
|
16603
|
+
}
|
|
16604
|
+
.fd-illustrated-message__title {
|
|
16605
|
+
font-size: var(--sapFontSize);
|
|
16606
|
+
line-height: var(--sapContent_LineHeight);
|
|
16607
|
+
color: var(--sapTextColor);
|
|
16608
|
+
font-family: var(--sapFontFamily);
|
|
16609
|
+
font-weight: 400;
|
|
16610
|
+
-webkit-box-sizing: border-box;
|
|
16611
|
+
box-sizing: border-box;
|
|
16612
|
+
padding: 0;
|
|
16613
|
+
margin: 0;
|
|
16614
|
+
border: 0;
|
|
16615
|
+
width: 100%;
|
|
16616
|
+
font-size: var(--sapFontHeader2Size);
|
|
16617
|
+
font-weight: var(--sapFontHeaderWeight);
|
|
16618
|
+
line-height: 1.3;
|
|
16619
|
+
text-align: center;
|
|
16620
|
+
color: var(--sapGroup_TitleTextColor);
|
|
16621
|
+
margin-top: 2rem;
|
|
16622
|
+
margin-bottom: .5rem
|
|
16623
|
+
}
|
|
16624
|
+
.fd-illustrated-message__title::after,
|
|
16625
|
+
.fd-illustrated-message__title::before {
|
|
16626
|
+
-webkit-box-sizing: inherit;
|
|
16627
|
+
box-sizing: inherit;
|
|
16628
|
+
font-size: inherit
|
|
16629
|
+
}
|
|
16630
|
+
.fd-illustrated-message__text {
|
|
16631
|
+
font-size: var(--sapFontSize);
|
|
16632
|
+
line-height: var(--sapContent_LineHeight);
|
|
16633
|
+
color: var(--sapTextColor);
|
|
16634
|
+
font-family: var(--sapFontFamily);
|
|
16635
|
+
font-weight: 400;
|
|
16636
|
+
-webkit-box-sizing: border-box;
|
|
16637
|
+
box-sizing: border-box;
|
|
16638
|
+
padding: 0;
|
|
16639
|
+
margin: 0;
|
|
16640
|
+
border: 0;
|
|
16641
|
+
width: 100%;
|
|
16642
|
+
font-size: var(--sapFontLargeSize);
|
|
16643
|
+
font-weight: 400;
|
|
16644
|
+
line-height: 1.4;
|
|
16645
|
+
text-align: center;
|
|
16646
|
+
color: var(--sapContent_LabelColor);
|
|
16647
|
+
margin-bottom: 2rem
|
|
16648
|
+
}
|
|
16649
|
+
.fd-illustrated-message__text::after,
|
|
16650
|
+
.fd-illustrated-message__text::before {
|
|
16651
|
+
-webkit-box-sizing: inherit;
|
|
16652
|
+
box-sizing: inherit;
|
|
16653
|
+
font-size: inherit
|
|
16654
|
+
}
|
|
16655
|
+
.fd-illustrated-message__actions {
|
|
16656
|
+
font-size: var(--sapFontSize);
|
|
16657
|
+
line-height: var(--sapContent_LineHeight);
|
|
16658
|
+
color: var(--sapTextColor);
|
|
16659
|
+
font-family: var(--sapFontFamily);
|
|
16660
|
+
font-weight: 400;
|
|
16661
|
+
-webkit-box-sizing: border-box;
|
|
16662
|
+
box-sizing: border-box;
|
|
16663
|
+
padding: 0;
|
|
16664
|
+
margin: 0;
|
|
16665
|
+
border: 0;
|
|
16666
|
+
display: -webkit-box;
|
|
16667
|
+
display: -ms-flexbox;
|
|
16668
|
+
display: flex;
|
|
16669
|
+
-webkit-box-pack: center;
|
|
16670
|
+
-ms-flex-pack: center;
|
|
16671
|
+
justify-content: center;
|
|
16672
|
+
-webkit-box-align: center;
|
|
16673
|
+
-ms-flex-align: center;
|
|
16674
|
+
align-items: center;
|
|
16675
|
+
margin-bottom: 2rem;
|
|
16676
|
+
width: 100%
|
|
16677
|
+
}
|
|
16678
|
+
.fd-illustrated-message__actions::after,
|
|
16679
|
+
.fd-illustrated-message__actions::before {
|
|
16680
|
+
-webkit-box-sizing: inherit;
|
|
16681
|
+
box-sizing: inherit;
|
|
16682
|
+
font-size: inherit
|
|
16683
|
+
}
|
|
16684
|
+
.fd-illustrated-message__actions * {
|
|
16685
|
+
margin: 0 .25rem
|
|
16686
|
+
}
|
|
16687
|
+
@media screen and (max-width:599px) {
|
|
16688
|
+
.fd-illustrated-message {
|
|
16689
|
+
max-width: 20rem
|
|
16690
|
+
}
|
|
16691
|
+
.fd-illustrated-message .fd-illustrated-message__illustration {
|
|
16692
|
+
height: 10rem;
|
|
16693
|
+
width: 10rem
|
|
16694
|
+
}
|
|
16695
|
+
}
|
|
16696
|
+
.fd-illustrated-message--dialog {
|
|
16697
|
+
margin-top: 0;
|
|
16698
|
+
max-width: 100%
|
|
16699
|
+
}
|
|
16700
|
+
.fd-illustrated-message--dialog .fd-illustrated-message__illustration {
|
|
16701
|
+
height: 10rem;
|
|
16702
|
+
width: 10rem;
|
|
16703
|
+
margin-top: 1rem;
|
|
16704
|
+
margin-bottom: 2rem
|
|
16705
|
+
}
|
|
16706
|
+
.fd-illustrated-message--dialog .fd-illustrated-message__title {
|
|
16707
|
+
padding: 0;
|
|
16708
|
+
margin: 0;
|
|
16709
|
+
font-size: var(--sapFontHeader4Size);
|
|
16710
|
+
max-width: 25rem;
|
|
16711
|
+
margin-bottom: .25rem
|
|
16712
|
+
}
|
|
16713
|
+
.fd-illustrated-message--dialog .fd-illustrated-message__text {
|
|
16714
|
+
font-size: var(--sapFontSize);
|
|
16715
|
+
max-width: 25rem;
|
|
16716
|
+
color: var(--sapTile_TextColor)
|
|
16717
|
+
}
|
|
16718
|
+
@media screen and (max-width:599px) {
|
|
16719
|
+
.fd-illustrated-message--dialog .fd-illustrated-message__title {
|
|
16720
|
+
max-width: 18rem
|
|
16721
|
+
}
|
|
16722
|
+
.fd-illustrated-message--dialog .fd-illustrated-message__text {
|
|
16723
|
+
max-width: 18rem
|
|
16724
|
+
}
|
|
16725
|
+
}
|
|
16726
|
+
.fd-illustrated-message--spot {
|
|
16727
|
+
margin-top: 0;
|
|
16728
|
+
max-width: 100%
|
|
16729
|
+
}
|
|
16730
|
+
.fd-illustrated-message--spot .fd-illustrated-message__illustration {
|
|
16731
|
+
padding: 0;
|
|
16732
|
+
margin: 0;
|
|
16733
|
+
height: 8rem;
|
|
16734
|
+
width: 8rem;
|
|
16735
|
+
margin-top: .5rem;
|
|
16736
|
+
margin-bottom: .5rem
|
|
16737
|
+
}
|
|
16738
|
+
.fd-illustrated-message--spot .fd-illustrated-message__title {
|
|
16739
|
+
padding: 0;
|
|
16740
|
+
margin: 0;
|
|
16741
|
+
font-size: var(--sapFontHeader5Size);
|
|
16742
|
+
line-height: 1.25;
|
|
16743
|
+
margin-bottom: .25rem;
|
|
16744
|
+
max-width: 25rem
|
|
16745
|
+
}
|
|
16746
|
+
.fd-illustrated-message--spot .fd-illustrated-message__text {
|
|
16747
|
+
padding: 0;
|
|
16748
|
+
margin: 0;
|
|
16749
|
+
font-size: var(--sapFontSize);
|
|
16750
|
+
color: var(--sapTile_TextColor);
|
|
16751
|
+
margin-bottom: 1rem;
|
|
16752
|
+
max-width: 25rem
|
|
16753
|
+
}
|
|
16754
|
+
.fd-illustrated-message--spot .fd-illustrated-message__actions {
|
|
16755
|
+
padding: 0;
|
|
16756
|
+
margin: 0;
|
|
16757
|
+
margin-top: .5rem;
|
|
16758
|
+
margin-bottom: 1rem
|
|
16759
|
+
}
|
|
16760
|
+
@media screen and (max-width:599px) {
|
|
16761
|
+
.fd-illustrated-message--spot .fd-illustrated-message__title {
|
|
16762
|
+
max-width: 18rem
|
|
16763
|
+
}
|
|
16764
|
+
.fd-illustrated-message--spot .fd-illustrated-message__text {
|
|
16765
|
+
max-width: 18rem
|
|
16766
|
+
}
|
|
16767
|
+
}
|
|
16393
16768
|
.fd-info-label {
|
|
16394
16769
|
font-size: var(--sapFontSize);
|
|
16395
16770
|
line-height: var(--sapContent_LineHeight);
|
|
@@ -31824,6 +32199,41 @@ places the element far left of the screen. so it is not visible.
|
|
|
31824
32199
|
padding-left: 3rem;
|
|
31825
32200
|
padding-right: 3rem
|
|
31826
32201
|
}
|
|
32202
|
+
.fd-scrollbar {
|
|
32203
|
+
font-size: var(--sapFontSize);
|
|
32204
|
+
line-height: var(--sapContent_LineHeight);
|
|
32205
|
+
color: var(--sapTextColor);
|
|
32206
|
+
font-family: var(--sapFontFamily);
|
|
32207
|
+
font-weight: 400;
|
|
32208
|
+
-webkit-box-sizing: border-box;
|
|
32209
|
+
box-sizing: border-box;
|
|
32210
|
+
padding: 0;
|
|
32211
|
+
margin: 0;
|
|
32212
|
+
border: 0;
|
|
32213
|
+
overflow: auto;
|
|
32214
|
+
scrollbar-color: var(--fdScrollbar_Thumb_Color) var(--fdScrollbar_Track_Color)
|
|
32215
|
+
}
|
|
32216
|
+
.fd-scrollbar::after,
|
|
32217
|
+
.fd-scrollbar::before {
|
|
32218
|
+
-webkit-box-sizing: inherit;
|
|
32219
|
+
box-sizing: inherit;
|
|
32220
|
+
font-size: inherit
|
|
32221
|
+
}
|
|
32222
|
+
.fd-scrollbar::-webkit-scrollbar {
|
|
32223
|
+
width: var(--fdScrollbar_Dimension);
|
|
32224
|
+
height: var(--fdScrollbar_Dimension)
|
|
32225
|
+
}
|
|
32226
|
+
.fd-scrollbar::-webkit-scrollbar-corner,
|
|
32227
|
+
.fd-scrollbar::-webkit-scrollbar-track {
|
|
32228
|
+
background-color: var(--fdScrollbar_Track_Color)
|
|
32229
|
+
}
|
|
32230
|
+
.fd-scrollbar::-webkit-scrollbar-thumb {
|
|
32231
|
+
background-color: var(--fdScrollbar_Thumb_Color)
|
|
32232
|
+
}
|
|
32233
|
+
.fd-scrollbar::-webkit-scrollbar-thumb:active,
|
|
32234
|
+
.fd-scrollbar::-webkit-scrollbar-thumb:hover {
|
|
32235
|
+
background-color: var(--fdScrollbar_Thumb_Hover_Color)
|
|
32236
|
+
}
|
|
31827
32237
|
/*!
|
|
31828
32238
|
.fd-section+(--full-bleed, --no-border)
|
|
31829
32239
|
.fd-section__header
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fundamental-styles/theming-preview",
|
|
3
|
-
"version": "0.24.0-rc.
|
|
3
|
+
"version": "0.24.0-rc.25",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"homepage": "https://sap.github.io/fundamental-styles/",
|
|
6
6
|
"description": "Fundamental Library Styles - Theming Package Preview",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"url": "https://github.com/SAP/fundamental-styles"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"fundamental-styles": "0.24.0-rc.
|
|
12
|
+
"fundamental-styles": "0.24.0-rc.25"
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
|