@websolutespa/bom-llm 0.0.10 → 0.0.12

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/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @websolutespa/bom-llm
2
2
 
3
+ ## 0.0.12
4
+
5
+ ### Patch Changes
6
+
7
+ - Fixing: markdown links
8
+ - Added: embeds IntersectionObserver, MutationObserber
9
+
10
+ ## 0.0.11
11
+
12
+ ### Patch Changes
13
+
14
+ - Added: shared state between instances
15
+
3
16
  ## 0.0.10
4
17
 
5
18
  ### Patch Changes
@@ -289,30 +289,11 @@
289
289
  llm-embed {
290
290
  display: block;
291
291
  width: 100%;
292
+ height: 760px;
292
293
  max-height: 100vh;
293
294
  background: transparent;
294
295
  overflow: clip;
295
296
  }
296
- @media (max-width: 799px) {
297
- llm-embed {
298
- height: 100vh;
299
- }
300
- }
301
- @media (min-width: 800px) {
302
- llm-embed {
303
- aspect-ratio: 1/1;
304
- }
305
- }
306
- @media (min-width: 1080px) {
307
- llm-embed {
308
- aspect-ratio: 4/3;
309
- }
310
- }
311
- @media (min-width: 1440px) {
312
- llm-embed {
313
- aspect-ratio: 16/9;
314
- }
315
- }
316
297
 
317
298
  .llm {
318
299
  display: flex;
@@ -1152,7 +1133,14 @@ llm-embed {
1152
1133
  height: 100%;
1153
1134
  }
1154
1135
  .llm.-embedded .llm__content {
1155
- padding: 80px 0 0 0;
1136
+ padding-top: 40px;
1137
+ padding-bottom: 180px;
1138
+ }
1139
+ @media (min-width: 1024px) {
1140
+ .llm.-embedded .llm__content {
1141
+ padding-top: 60px;
1142
+ padding-bottom: 180px;
1143
+ }
1156
1144
  }
1157
1145
  .llm:not(.-embedded) .llm__main {
1158
1146
  position: absolute;
@@ -1163,7 +1151,7 @@ llm-embed {
1163
1151
  }
1164
1152
  @media (min-width: 1024px) {
1165
1153
  .llm:not(.-embedded) .llm__content {
1166
- padding: 200px 0;
1154
+ padding-top: 200px;
1167
1155
  padding-bottom: 280px;
1168
1156
  }
1169
1157
  }
@@ -1636,15 +1624,17 @@ llm-embed {
1636
1624
  border: 2px solid rgba(255, 255, 255, 0.4);
1637
1625
  }
1638
1626
  .llm .llm__message--assistant .llm__inner--string .llm__text .llm__text-body .llm__text-img {
1627
+ display: block;
1628
+ margin: 1rem 0;
1629
+ font-size: 0;
1630
+ text-decoration: none;
1631
+ }
1632
+ .llm .llm__message--assistant .llm__inner--string .llm__text .llm__text-body .llm__text-img > img {
1639
1633
  display: inline-flex;
1640
1634
  justify-content: center;
1641
1635
  align-items: center;
1642
1636
  width: 320px;
1643
1637
  height: 320px;
1644
- font-size: 0;
1645
- text-decoration: none;
1646
- }
1647
- .llm .llm__message--assistant .llm__inner--string .llm__text .llm__text-body .llm__text-img > img {
1648
1638
  object-fit: cover;
1649
1639
  }
1650
1640
  .llm .llm__text-disclaimer {