@useblu/ocean-core 1.24.0 → 1.26.1

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,30 @@
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.26.1](https://github.com/ocean-ds/ocean-web/compare/v1.26.0...v1.26.1) (2022-01-18)
7
+
8
+ **Note:** Version bump only for package @useblu/ocean-core
9
+
10
+ # [1.26.0](https://github.com/ocean-ds/ocean-web/compare/v1.25.2...v1.26.0) (2021-12-17)
11
+
12
+ ### Features
13
+
14
+ - new component topbar ([#863](https://github.com/ocean-ds/ocean-web/issues/863)) ([4fd2beb](https://github.com/ocean-ds/ocean-web/commit/4fd2beb1d6fe0f556f11a0876ac1e37d6f2ae4fa))
15
+
16
+ ## [1.25.1](https://github.com/ocean-ds/ocean-web/compare/v1.25.0...v1.25.1) (2021-11-16)
17
+
18
+ **Note:** Version bump only for package @useblu/ocean-core
19
+
20
+ # [1.25.0](https://github.com/ocean-ds/ocean-web/compare/v1.24.0...v1.25.0) (2021-11-05)
21
+
22
+ ### Bug Fixes
23
+
24
+ - double select z-index problem ([#840](https://github.com/ocean-ds/ocean-web/issues/840)) ([775e054](https://github.com/ocean-ds/ocean-web/commit/775e054860b5330638fba27e45a72ee1d3a5f8b9))
25
+
26
+ ### Features
27
+
28
+ - create new component search ([#841](https://github.com/ocean-ds/ocean-web/issues/841)) ([f9b966e](https://github.com/ocean-ds/ocean-web/commit/f9b966e2f0c32af5d90aebc6da8aca2d00bec98b))
29
+
6
30
  # [1.24.0](https://github.com/ocean-ds/ocean-web/compare/v1.22.0...v1.24.0) (2021-10-27)
7
31
 
8
32
  ### Features
package/ocean.css CHANGED
@@ -1120,6 +1120,15 @@
1120
1120
  border-width: 2px;
1121
1121
  margin: 0;
1122
1122
  }
1123
+ .ods-input--left {
1124
+ flex-direction: row-reverse;
1125
+ }
1126
+ .ods-input--left input {
1127
+ padding: 0 0 0 10px;
1128
+ }
1129
+ .ods-input--left .ods-input__adornment {
1130
+ padding: 0 0 0 16px;
1131
+ }
1123
1132
  .ods-input--disabled {
1124
1133
  background-color: #ebecf5;
1125
1134
  border-color: #ebecf5;
@@ -1129,6 +1138,9 @@
1129
1138
  color: #b6b9cc;
1130
1139
  cursor: not-allowed;
1131
1140
  }
1141
+ .ods-input--disabled--text .ods-input__adornment {
1142
+ opacity: 0.3;
1143
+ }
1132
1144
  .ods-input--disabled:hover, .ods-input--disabled:focus, .ods-input--disabled:active {
1133
1145
  border-color: #ebecf5;
1134
1146
  }
@@ -1437,6 +1449,7 @@
1437
1449
  }
1438
1450
  .ods-select__listbox-wrapper {
1439
1451
  position: relative;
1452
+ z-index: 2;
1440
1453
  }
1441
1454
  .ods-select__listbox {
1442
1455
  background-color: white;
@@ -2171,6 +2184,7 @@
2171
2184
  }
2172
2185
  .ods-progress__primary svg {
2173
2186
  display: block;
2187
+ stroke-width: 8px;
2174
2188
  }
2175
2189
  .ods-progress__primary svg circle {
2176
2190
  stroke: rgba(255, 255, 255, 0.4);
@@ -2189,6 +2203,7 @@
2189
2203
  stroke: white;
2190
2204
  stroke-dasharray: 80px, 200px;
2191
2205
  stroke-dashoffset: 0;
2206
+ stroke-width: 8px;
2192
2207
  }
2193
2208
  .ods-progress--md {
2194
2209
  height: 24px;
@@ -2442,4 +2457,141 @@
2442
2457
  .ods-sub-header__title strong {
2443
2458
  font-weight: 900;
2444
2459
  }
2460
+
2461
+ .ods-search {
2462
+ align-items: center;
2463
+ background-color: white;
2464
+ border: 1px solid #d8dae8;
2465
+ border-radius: 4px;
2466
+ display: flex;
2467
+ height: 46px;
2468
+ margin: 1px;
2469
+ width: auto !important;
2470
+ }
2471
+ .ods-search input {
2472
+ border: 0;
2473
+ border-radius: 4px;
2474
+ box-sizing: border-box;
2475
+ color: #393b47;
2476
+ font-size: 16px;
2477
+ font-weight: 400;
2478
+ height: 100%;
2479
+ line-height: 1.1;
2480
+ outline: none;
2481
+ padding: 0 16px;
2482
+ width: 100%;
2483
+ }
2484
+ .ods-search input::-moz-placeholder {
2485
+ color: #d8dae8;
2486
+ }
2487
+ .ods-search input:-ms-input-placeholder {
2488
+ color: #d8dae8;
2489
+ }
2490
+ .ods-search input::placeholder {
2491
+ color: #d8dae8;
2492
+ }
2493
+ .ods-search:hover, .ods-search:focus, .ods-search:active {
2494
+ border-color: #5872f5;
2495
+ border-width: 2px;
2496
+ margin: 0;
2497
+ }
2498
+ .ods-search svg {
2499
+ color: #d8dae8;
2500
+ }
2501
+ .ods-search--filled {
2502
+ border-color: #b8c3ff;
2503
+ }
2504
+ .ods-search--filled svg {
2505
+ color: #0025e0;
2506
+ }
2507
+ .ods-search--disabled {
2508
+ background-color: #ebecf5;
2509
+ border-color: #ebecf5;
2510
+ cursor: not-allowed;
2511
+ }
2512
+ .ods-search--disabled input {
2513
+ color: #b6b9cc;
2514
+ cursor: not-allowed;
2515
+ }
2516
+ .ods-search--disabled:hover, .ods-search--disabled:focus, .ods-search--disabled:active {
2517
+ border-color: #ebecf5;
2518
+ }
2519
+ .ods-search__adornment {
2520
+ line-height: 0;
2521
+ padding-left: 16px;
2522
+ width: auto !important;
2523
+ }
2524
+ .ods-search__clean {
2525
+ cursor: pointer;
2526
+ line-height: 0;
2527
+ padding-right: 16px;
2528
+ width: 24px;
2529
+ }
2530
+ .ods-search__clean svg {
2531
+ color: #393b47;
2532
+ }
2533
+
2534
+ .ods-topbar {
2535
+ align-items: center;
2536
+ display: grid;
2537
+ flex-wrap: wrap;
2538
+ font-family: "Avenir";
2539
+ font-size: 20px;
2540
+ grid-template-columns: 3rem auto 3rem;
2541
+ padding: 10px 5px;
2542
+ width: 100%;
2543
+ }
2544
+ .ods-topbar-scroll-bar {
2545
+ box-shadow: 0 4px 8px rgba(12, 13, 20, 0.08);
2546
+ }
2547
+ .ods-topbar-light {
2548
+ color: #fff;
2549
+ }
2550
+ .ods-topbar-light .ods-topbar-title span {
2551
+ color: #fff;
2552
+ }
2553
+ .ods-topbar-default {
2554
+ color: #0025e0;
2555
+ }
2556
+ .ods-topbar-default .ods-topbar-title {
2557
+ padding-top: 0;
2558
+ }
2559
+ .ods-topbar-default .ods-topbar-title span {
2560
+ color: #67697a;
2561
+ }
2562
+ .ods-topbar-extend {
2563
+ display: flex;
2564
+ grid-template-columns: 50% 50% auto;
2565
+ }
2566
+ .ods-topbar-extend .ods-topbar-title {
2567
+ padding-top: 4rem;
2568
+ }
2569
+ .ods-topbar-extend .ods-topbar-search {
2570
+ width: 50%;
2571
+ }
2572
+ .ods-topbar-prev {
2573
+ line-height: 0;
2574
+ width: 50%;
2575
+ }
2576
+ .ods-topbar-prev svg {
2577
+ cursor: pointer;
2578
+ }
2579
+ .ods-topbar-title {
2580
+ font-weight: 800;
2581
+ line-height: 1.1;
2582
+ width: 100%;
2583
+ }
2584
+ .ods-topbar-title span {
2585
+ color: #67697a;
2586
+ display: block;
2587
+ font-size: 12px;
2588
+ font-weight: 600;
2589
+ }
2590
+ .ods-topbar-search {
2591
+ line-height: 0;
2592
+ text-align: right;
2593
+ }
2594
+ .ods-topbar-search svg {
2595
+ cursor: pointer;
2596
+ }
2445
2597
  /*# sourceMappingURL=ocean.css.map */