@sdata/web-vue 1.4.0 → 1.5.0

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/sd.css CHANGED
@@ -12592,6 +12592,32 @@ body[sd-theme='dark'] .sd-radio-button::after {
12592
12592
  color: rgb(var(--gray-5));
12593
12593
  font-size: 14px;
12594
12594
  }
12595
+ .sd-ellipsis {
12596
+ display: inline-block;
12597
+ max-width: 100%;
12598
+ color: inherit;
12599
+ vertical-align: bottom;
12600
+ }
12601
+ .sd-ellipsis--single-line {
12602
+ overflow: hidden;
12603
+ text-overflow: ellipsis;
12604
+ white-space: nowrap;
12605
+ }
12606
+ .sd-ellipsis-content {
12607
+ display: inline;
12608
+ max-width: none;
12609
+ }
12610
+ .sd-ellipsis--line-clamp {
12611
+ display: -webkit-box;
12612
+ width: 100%;
12613
+ word-break: break-word;
12614
+ }
12615
+ .sd-ellipsis--expandable {
12616
+ cursor: pointer;
12617
+ }
12618
+ .sd-ellipsis--expanded {
12619
+ white-space: normal;
12620
+ }
12595
12621
  .sd-dropdown {
12596
12622
  box-sizing: border-box;
12597
12623
  padding: 4px 0;