@devvit/ui-renderer 0.10.15-next-2024-01-29-0e9dfa3be.0 → 0.10.15-next-2024-01-30-a6498822c.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/blocks/attributes.js +2 -2
- package/package.json +7 -7
package/blocks/attributes.js
CHANGED
|
@@ -382,8 +382,8 @@ export function textOverflowClass(config) {
|
|
|
382
382
|
const overflow = config.overflow;
|
|
383
383
|
return {
|
|
384
384
|
'overflow-hidden': true,
|
|
385
|
-
'text-clip': overflow === BlockTextOverflow.TEXT_OVERFLOW_CLIP
|
|
386
|
-
'text-ellipsis': overflow === BlockTextOverflow.TEXT_OVERFLOW_ELLIPSE,
|
|
385
|
+
'text-clip': overflow === BlockTextOverflow.TEXT_OVERFLOW_CLIP,
|
|
386
|
+
'text-ellipsis': overflow === BlockTextOverflow.TEXT_OVERFLOW_ELLIPSE || overflow === undefined,
|
|
387
387
|
'whitespace-pre-line': wrap,
|
|
388
388
|
'whitespace-nowrap': !wrap,
|
|
389
389
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devvit/ui-renderer",
|
|
3
|
-
"version": "0.10.15-next-2024-01-
|
|
3
|
+
"version": "0.10.15-next-2024-01-30-a6498822c.0",
|
|
4
4
|
"license": "BSD-3-Clause",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -54,10 +54,10 @@
|
|
|
54
54
|
},
|
|
55
55
|
"types": "./index.d.ts",
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@devvit/protos": "0.10.15-next-2024-01-
|
|
58
|
-
"@devvit/runtime-lite": "0.10.15-next-2024-01-
|
|
59
|
-
"@devvit/runtimes": "0.10.15-next-2024-01-
|
|
60
|
-
"@devvit/shared-types": "0.10.15-next-2024-01-
|
|
57
|
+
"@devvit/protos": "0.10.15-next-2024-01-30-a6498822c.0",
|
|
58
|
+
"@devvit/runtime-lite": "0.10.15-next-2024-01-30-a6498822c.0",
|
|
59
|
+
"@devvit/runtimes": "0.10.15-next-2024-01-30-a6498822c.0",
|
|
60
|
+
"@devvit/shared-types": "0.10.15-next-2024-01-30-a6498822c.0",
|
|
61
61
|
"@lottiefiles/lottie-player": "1.7.1",
|
|
62
62
|
"p-queue": "7.3.4",
|
|
63
63
|
"rxjs": "7.5.7"
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"devDependencies": {
|
|
85
85
|
"@devvit/eslint-config": "0.10.14",
|
|
86
86
|
"@devvit/repo-tools": "0.10.14",
|
|
87
|
-
"@devvit/tsconfig": "0.10.15-next-2024-01-
|
|
87
|
+
"@devvit/tsconfig": "0.10.15-next-2024-01-30-a6498822c.0",
|
|
88
88
|
"@lit-labs/ssr": "^2.2.3",
|
|
89
89
|
"@lit/localize": "0.11.4",
|
|
90
90
|
"@open-wc/testing-helpers": "2.3.0",
|
|
@@ -116,5 +116,5 @@
|
|
|
116
116
|
"directory": "dist"
|
|
117
117
|
},
|
|
118
118
|
"source": "./src/index.ts",
|
|
119
|
-
"gitHead": "
|
|
119
|
+
"gitHead": "00a19f02bbaedb4af5ac23470810de89727045f6"
|
|
120
120
|
}
|