@dataloop-ai/components 0.18.80 → 0.18.81

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dataloop-ai/components",
3
- "version": "0.18.80",
3
+ "version": "0.18.81",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -618,6 +618,7 @@ export default defineComponent({
618
618
  width: var(--dl-card-width);
619
619
 
620
620
  &--content {
621
+ overflow-wrap: anywhere;
621
622
  padding: var(--dl-card-content-padding);
622
623
  &_text {
623
624
  font-size: 12px;
@@ -73,6 +73,13 @@
73
73
  </div>
74
74
  </template>
75
75
  </DlCard>
76
+
77
+ <div>Text Card</div>
78
+ <DlCard
79
+ title="This is a long long long long long long text title wooo"
80
+ text="sdaljfaldksfj;asdjfal;ksdf;ajksd;faj;lskdf;alkjsdflk;ajsd;lfjas;ldjfa;ldsjfals;dj"
81
+ :links="interactiveProps.links"
82
+ />
76
83
  </div>
77
84
  </template>
78
85