ugcinc-render 1.8.185 → 1.8.186
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/index.js +16 -16
- package/dist/index.mjs +16 -16
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5940,34 +5940,34 @@ var defaultIMessageDmProps = {
|
|
|
5940
5940
|
// Recipient tail anchor points (offsets from message left & bottom)
|
|
5941
5941
|
recipientTailSideY: -53,
|
|
5942
5942
|
// Y where tail meets bubble (top of straight line)
|
|
5943
|
-
recipientTailCurveStartY: -
|
|
5943
|
+
recipientTailCurveStartY: -28,
|
|
5944
5944
|
// Y where straight line ends and top curve begins
|
|
5945
|
-
recipientTailTipX: -
|
|
5945
|
+
recipientTailTipX: -16,
|
|
5946
5946
|
recipientTailTipY: -1,
|
|
5947
5947
|
recipientTailBottomX: 19,
|
|
5948
5948
|
// X where bottom curve ends (connects to bubble)
|
|
5949
5949
|
recipientTailBottomY: -12,
|
|
5950
5950
|
// Y where bottom curve ends (connects to bubble)
|
|
5951
5951
|
// Recipient tail curve bend (-1 to 1, negative = inward, positive = outward)
|
|
5952
|
-
recipientTailTopBend: -0.
|
|
5952
|
+
recipientTailTopBend: -0.32,
|
|
5953
5953
|
// Top curve bends inward
|
|
5954
|
-
recipientTailBottomBend: 0.
|
|
5954
|
+
recipientTailBottomBend: 0.3,
|
|
5955
5955
|
// Bottom curve bends outward
|
|
5956
5956
|
// Sender tail anchor points (offsets from message right & bottom)
|
|
5957
5957
|
senderTailSideY: -53,
|
|
5958
5958
|
// Y where tail meets bubble (top of straight line)
|
|
5959
|
-
senderTailCurveStartY: -
|
|
5959
|
+
senderTailCurveStartY: -28,
|
|
5960
5960
|
// Y where straight line ends and top curve begins
|
|
5961
|
-
senderTailTipX:
|
|
5961
|
+
senderTailTipX: 16,
|
|
5962
5962
|
senderTailTipY: -1,
|
|
5963
5963
|
senderTailBottomX: -19,
|
|
5964
5964
|
// X where bottom curve ends (connects to bubble)
|
|
5965
5965
|
senderTailBottomY: -12,
|
|
5966
5966
|
// Y where bottom curve ends (connects to bubble)
|
|
5967
5967
|
// Sender tail curve bend (-1 to 1, negative = inward, positive = outward)
|
|
5968
|
-
senderTailTopBend: -0.
|
|
5968
|
+
senderTailTopBend: -0.32,
|
|
5969
5969
|
// Top curve bends inward
|
|
5970
|
-
senderTailBottomBend: 0.
|
|
5970
|
+
senderTailBottomBend: 0.3,
|
|
5971
5971
|
// Bottom curve bends outward
|
|
5972
5972
|
// Read receipt (under last sender message)
|
|
5973
5973
|
showReadReceipt: true,
|
|
@@ -6144,22 +6144,22 @@ var IMessageDmComposition = (props) => {
|
|
|
6144
6144
|
recipientBubbleColor = "#303032",
|
|
6145
6145
|
// Tail props - recipient (offsets from message left & bottom)
|
|
6146
6146
|
recipientTailSideY = -53,
|
|
6147
|
-
recipientTailCurveStartY = -
|
|
6148
|
-
recipientTailTipX = -
|
|
6147
|
+
recipientTailCurveStartY = -28,
|
|
6148
|
+
recipientTailTipX = -16,
|
|
6149
6149
|
recipientTailTipY = -1,
|
|
6150
6150
|
recipientTailBottomX = 19,
|
|
6151
6151
|
recipientTailBottomY = -12,
|
|
6152
|
-
recipientTailTopBend = -0.
|
|
6153
|
-
recipientTailBottomBend = 0.
|
|
6152
|
+
recipientTailTopBend = -0.32,
|
|
6153
|
+
recipientTailBottomBend = 0.3,
|
|
6154
6154
|
// Tail props - sender (offsets from message right & bottom)
|
|
6155
6155
|
senderTailSideY = -53,
|
|
6156
|
-
senderTailCurveStartY = -
|
|
6157
|
-
senderTailTipX =
|
|
6156
|
+
senderTailCurveStartY = -28,
|
|
6157
|
+
senderTailTipX = 16,
|
|
6158
6158
|
senderTailTipY = -1,
|
|
6159
6159
|
senderTailBottomX = -19,
|
|
6160
6160
|
senderTailBottomY = -12,
|
|
6161
|
-
senderTailTopBend = -0.
|
|
6162
|
-
senderTailBottomBend = 0.
|
|
6161
|
+
senderTailTopBend = -0.32,
|
|
6162
|
+
senderTailBottomBend = 0.3
|
|
6163
6163
|
} = mergedProps;
|
|
6164
6164
|
return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
|
|
6165
6165
|
BaseDmComposition,
|
package/dist/index.mjs
CHANGED
|
@@ -4986,34 +4986,34 @@ var defaultIMessageDmProps = {
|
|
|
4986
4986
|
// Recipient tail anchor points (offsets from message left & bottom)
|
|
4987
4987
|
recipientTailSideY: -53,
|
|
4988
4988
|
// Y where tail meets bubble (top of straight line)
|
|
4989
|
-
recipientTailCurveStartY: -
|
|
4989
|
+
recipientTailCurveStartY: -28,
|
|
4990
4990
|
// Y where straight line ends and top curve begins
|
|
4991
|
-
recipientTailTipX: -
|
|
4991
|
+
recipientTailTipX: -16,
|
|
4992
4992
|
recipientTailTipY: -1,
|
|
4993
4993
|
recipientTailBottomX: 19,
|
|
4994
4994
|
// X where bottom curve ends (connects to bubble)
|
|
4995
4995
|
recipientTailBottomY: -12,
|
|
4996
4996
|
// Y where bottom curve ends (connects to bubble)
|
|
4997
4997
|
// Recipient tail curve bend (-1 to 1, negative = inward, positive = outward)
|
|
4998
|
-
recipientTailTopBend: -0.
|
|
4998
|
+
recipientTailTopBend: -0.32,
|
|
4999
4999
|
// Top curve bends inward
|
|
5000
|
-
recipientTailBottomBend: 0.
|
|
5000
|
+
recipientTailBottomBend: 0.3,
|
|
5001
5001
|
// Bottom curve bends outward
|
|
5002
5002
|
// Sender tail anchor points (offsets from message right & bottom)
|
|
5003
5003
|
senderTailSideY: -53,
|
|
5004
5004
|
// Y where tail meets bubble (top of straight line)
|
|
5005
|
-
senderTailCurveStartY: -
|
|
5005
|
+
senderTailCurveStartY: -28,
|
|
5006
5006
|
// Y where straight line ends and top curve begins
|
|
5007
|
-
senderTailTipX:
|
|
5007
|
+
senderTailTipX: 16,
|
|
5008
5008
|
senderTailTipY: -1,
|
|
5009
5009
|
senderTailBottomX: -19,
|
|
5010
5010
|
// X where bottom curve ends (connects to bubble)
|
|
5011
5011
|
senderTailBottomY: -12,
|
|
5012
5012
|
// Y where bottom curve ends (connects to bubble)
|
|
5013
5013
|
// Sender tail curve bend (-1 to 1, negative = inward, positive = outward)
|
|
5014
|
-
senderTailTopBend: -0.
|
|
5014
|
+
senderTailTopBend: -0.32,
|
|
5015
5015
|
// Top curve bends inward
|
|
5016
|
-
senderTailBottomBend: 0.
|
|
5016
|
+
senderTailBottomBend: 0.3,
|
|
5017
5017
|
// Bottom curve bends outward
|
|
5018
5018
|
// Read receipt (under last sender message)
|
|
5019
5019
|
showReadReceipt: true,
|
|
@@ -5190,22 +5190,22 @@ var IMessageDmComposition = (props) => {
|
|
|
5190
5190
|
recipientBubbleColor = "#303032",
|
|
5191
5191
|
// Tail props - recipient (offsets from message left & bottom)
|
|
5192
5192
|
recipientTailSideY = -53,
|
|
5193
|
-
recipientTailCurveStartY = -
|
|
5194
|
-
recipientTailTipX = -
|
|
5193
|
+
recipientTailCurveStartY = -28,
|
|
5194
|
+
recipientTailTipX = -16,
|
|
5195
5195
|
recipientTailTipY = -1,
|
|
5196
5196
|
recipientTailBottomX = 19,
|
|
5197
5197
|
recipientTailBottomY = -12,
|
|
5198
|
-
recipientTailTopBend = -0.
|
|
5199
|
-
recipientTailBottomBend = 0.
|
|
5198
|
+
recipientTailTopBend = -0.32,
|
|
5199
|
+
recipientTailBottomBend = 0.3,
|
|
5200
5200
|
// Tail props - sender (offsets from message right & bottom)
|
|
5201
5201
|
senderTailSideY = -53,
|
|
5202
|
-
senderTailCurveStartY = -
|
|
5203
|
-
senderTailTipX =
|
|
5202
|
+
senderTailCurveStartY = -28,
|
|
5203
|
+
senderTailTipX = 16,
|
|
5204
5204
|
senderTailTipY = -1,
|
|
5205
5205
|
senderTailBottomX = -19,
|
|
5206
5206
|
senderTailBottomY = -12,
|
|
5207
|
-
senderTailTopBend = -0.
|
|
5208
|
-
senderTailBottomBend = 0.
|
|
5207
|
+
senderTailTopBend = -0.32,
|
|
5208
|
+
senderTailBottomBend = 0.3
|
|
5209
5209
|
} = mergedProps;
|
|
5210
5210
|
return /* @__PURE__ */ jsxs10(
|
|
5211
5211
|
BaseDmComposition,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ugcinc-render",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.186",
|
|
4
4
|
"description": "Unified rendering package for UGC Inc - shared types, components, and compositions for pixel-perfect client/server rendering",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|