@useblu/ocean-core 1.37.2 → 1.38.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/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.38.3](https://github.com/ocean-ds/ocean-web/compare/v1.38.2...v1.38.3) (2022-12-08)
7
+
8
+ ### Bug Fixes
9
+
10
+ - remove input margin ([#1045](https://github.com/ocean-ds/ocean-web/issues/1045)) ([b6de455](https://github.com/ocean-ds/ocean-web/commit/b6de455319ef90bfbcdf3df74557788b3f21daea))
11
+
12
+ # [1.38.0](https://github.com/ocean-ds/ocean-web/compare/v1.37.2...v1.38.0) (2022-11-10)
13
+
14
+ ### Features
15
+
16
+ - add doughnut chart component ([#1037](https://github.com/ocean-ds/ocean-web/issues/1037)) ([df268fb](https://github.com/ocean-ds/ocean-web/commit/df268fb9fdb7cbcb5b297d87e64cd42c6c260ad0))
17
+
6
18
  ## [1.37.2](https://github.com/ocean-ds/ocean-web/compare/v1.37.1...v1.37.2) (2022-11-09)
7
19
 
8
20
  ### Bug Fixes
package/ocean.css CHANGED
@@ -1399,7 +1399,6 @@
1399
1399
  padding: 0 16px;
1400
1400
  }
1401
1401
  .ods-input--left .ods-input__adornment {
1402
- margin-right: -12px;
1403
1402
  padding: 0 0 0 16px;
1404
1403
  }
1405
1404
  .ods-input--right .ods-input__adornment {
@@ -3598,4 +3597,100 @@
3598
3597
  .ods-date__selectedMiddle {
3599
3598
  background-color: rgba(176, 245, 245, 0.24);
3600
3599
  }
3600
+
3601
+ .ods-chart {
3602
+ padding-bottom: 16px;
3603
+ width: 100%;
3604
+ }
3605
+ .ods-chart__title-and-subtitle {
3606
+ margin-bottom: 24px;
3607
+ width: 100%;
3608
+ }
3609
+ .ods-chart__title-and-subtitle .ods-typography__heading4 {
3610
+ color: #393b47;
3611
+ margin-bottom: 4px;
3612
+ }
3613
+ .ods-chart__canvas {
3614
+ align-items: center;
3615
+ display: flex;
3616
+ justify-content: center;
3617
+ margin-bottom: 24px;
3618
+ position: relative;
3619
+ width: 100%;
3620
+ }
3621
+ .ods-chart__canvas canvas {
3622
+ margin: 0 auto;
3623
+ }
3624
+ .ods-chart__canvas__center-legend {
3625
+ align-items: center;
3626
+ display: flex;
3627
+ flex-direction: column;
3628
+ height: 40px;
3629
+ justify-content: center;
3630
+ position: absolute;
3631
+ width: 96px;
3632
+ }
3633
+ .ods-chart__canvas__center-legend .ods-typography__heading2 {
3634
+ align-items: center;
3635
+ color: #393b47;
3636
+ display: flex;
3637
+ font-family: "Nunito Sans";
3638
+ font-size: 20px;
3639
+ font-weight: 600;
3640
+ line-height: 1.1;
3641
+ text-align: center;
3642
+ }
3643
+ .ods-chart__canvas__center-legend .ods-typography__description {
3644
+ align-items: center;
3645
+ color: #67697a;
3646
+ display: flex;
3647
+ font-family: "Nunito Sans";
3648
+ font-size: 12px;
3649
+ font-weight: 600;
3650
+ line-height: 1.5;
3651
+ text-align: center;
3652
+ }
3653
+ .ods-chart__legend {
3654
+ align-items: flex-start;
3655
+ display: flex;
3656
+ flex-direction: column;
3657
+ justify-content: center;
3658
+ width: 100%;
3659
+ }
3660
+ .ods-chart__legend__row {
3661
+ align-items: center;
3662
+ display: flex;
3663
+ height: 38px;
3664
+ justify-content: space-between;
3665
+ padding: 8px 0;
3666
+ width: 100%;
3667
+ }
3668
+ .ods-chart__legend__row:not(:last-child) {
3669
+ border-bottom: 1px solid #ebecf5;
3670
+ }
3671
+ .ods-chart__legend__row__description {
3672
+ align-items: center;
3673
+ display: flex;
3674
+ justify-content: center;
3675
+ }
3676
+ .ods-chart__legend__row__description-circle {
3677
+ border-radius: 8px;
3678
+ height: 8px;
3679
+ margin-right: 8px;
3680
+ width: 8px;
3681
+ }
3682
+ .ods-chart__legend__row__percent {
3683
+ align-items: center;
3684
+ color: #393b47;
3685
+ display: flex;
3686
+ font-family: "Nunito Sans";
3687
+ font-size: 14px;
3688
+ font-weight: 600;
3689
+ height: 21px;
3690
+ line-height: 1.5;
3691
+ }
3692
+ .ods-chart__legend__row__description-level-2 {
3693
+ color: #b6b9cc;
3694
+ margin-left: 16px;
3695
+ }
3601
3696
  /*# sourceMappingURL=ocean.css.map */