@semi-bot/semi-theme-sensen 1.0.0 → 1.0.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/README.md CHANGED
@@ -5,7 +5,7 @@ Operator: liuxuantingvip
5
5
 
6
6
  ## Compatibility
7
7
 
8
- Compatible with Semi Foundation Version 2.101.0 or newer.
8
+ Compatible with Semi Foundation Version 2.103.0 or newer.
9
9
 
10
10
  ## Version Release Note
11
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@semi-bot/semi-theme-sensen",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Semi theme generated by dsm. https://semi.design/dsm",
5
5
  "keywords": [
6
6
  "semi-theme",
package/semi.css CHANGED
@@ -3317,6 +3317,7 @@ body, :host {
3317
3317
  padding-right: 12px;
3318
3318
  padding-top: 6px;
3319
3319
  padding-bottom: 6px;
3320
+ font-family: inherit;
3320
3321
  font-size: 14px;
3321
3322
  line-height: 20px;
3322
3323
  font-weight: 600;
@@ -17615,6 +17616,7 @@ img[src=""], img:not([src]) {
17615
17616
  .semi-progress-horizontal .semi-progress-track {
17616
17617
  height: 100%;
17617
17618
  width: 100%;
17619
+ overflow: hidden;
17618
17620
  }
17619
17621
  .semi-progress-horizontal .semi-progress-track-inner {
17620
17622
  height: 100%;
@@ -17623,6 +17625,11 @@ img[src=""], img:not([src]) {
17623
17625
  transition: width 0.3s;
17624
17626
  transition-timing-function: cubic-bezier(0.62, 0.05, 0.36, 0.95);
17625
17627
  }
17628
+ .semi-progress-horizontal .semi-progress-track-inner-indeterminate {
17629
+ width: 35%;
17630
+ transition: none;
17631
+ animation: semi-progress-indeterminate-slide 1.6s ease-in-out infinite;
17632
+ }
17626
17633
  .semi-progress-horizontal .semi-progress-line-text {
17627
17634
  min-width: 45px;
17628
17635
  font-weight: 600;
@@ -17643,6 +17650,7 @@ img[src=""], img:not([src]) {
17643
17650
  .semi-progress-vertical .semi-progress-track {
17644
17651
  height: 100%;
17645
17652
  width: 100%;
17653
+ overflow: hidden;
17646
17654
  }
17647
17655
  .semi-progress-vertical .semi-progress-track-inner {
17648
17656
  background-color: var(--semi-color-success);
@@ -17651,6 +17659,12 @@ img[src=""], img:not([src]) {
17651
17659
  transition: height 0.3s;
17652
17660
  transition-timing-function: cubic-bezier(0.62, 0.05, 0.36, 0.95);
17653
17661
  }
17662
+ .semi-progress-vertical .semi-progress-track-inner-indeterminate {
17663
+ height: 35%;
17664
+ width: 100%;
17665
+ transition: none;
17666
+ animation: semi-progress-indeterminate-slide-vertical 1.6s ease-in-out infinite;
17667
+ }
17654
17668
  .semi-progress-vertical .semi-progress-line-text {
17655
17669
  font-weight: 600;
17656
17670
  margin-top: 8px;
@@ -17672,6 +17686,11 @@ img[src=""], img:not([src]) {
17672
17686
  transform-origin: 50% 50%;
17673
17687
  stroke: var(--semi-color-success);
17674
17688
  }
17689
+ .semi-progress-circle-ring-inner-indeterminate {
17690
+ transform: rotate(0deg);
17691
+ transform-origin: 50% 50%;
17692
+ animation: semi-progress-indeterminate-rotate 1.2s linear infinite;
17693
+ }
17675
17694
  .semi-progress-circle-text {
17676
17695
  position: absolute;
17677
17696
  top: 50%;
@@ -17683,6 +17702,36 @@ img[src=""], img:not([src]) {
17683
17702
  color: var(--semi-color-mode-minor-text);
17684
17703
  }
17685
17704
 
17705
+ @keyframes semi-progress-indeterminate-slide {
17706
+ 0% {
17707
+ transform: translateX(-120%);
17708
+ }
17709
+ 55% {
17710
+ transform: translateX(300%);
17711
+ }
17712
+ 100% {
17713
+ transform: translateX(300%);
17714
+ }
17715
+ }
17716
+ @keyframes semi-progress-indeterminate-slide-vertical {
17717
+ 0% {
17718
+ transform: translateY(-120%);
17719
+ }
17720
+ 55% {
17721
+ transform: translateY(300%);
17722
+ }
17723
+ 100% {
17724
+ transform: translateY(300%);
17725
+ }
17726
+ }
17727
+ @keyframes semi-progress-indeterminate-rotate {
17728
+ from {
17729
+ transform: rotate(0deg);
17730
+ }
17731
+ to {
17732
+ transform: rotate(360deg);
17733
+ }
17734
+ }
17686
17735
  .semi-rtl .semi-progress,
17687
17736
  .semi-portal-rtl .semi-progress {
17688
17737
  direction: rtl;