hive-react-kit 0.10.7 → 0.10.8

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/build.css CHANGED
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.2.4 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.3.0 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  @layer theme, base, components, utilities;
4
4
  @layer theme {
@@ -336,12 +336,6 @@
336
336
  .inset-y-0 {
337
337
  inset-block: calc(var(--spacing) * 0);
338
338
  }
339
- .start {
340
- inset-inline-start: var(--spacing);
341
- }
342
- .end {
343
- inset-inline-end: var(--spacing);
344
- }
345
339
  .-top-1 {
346
340
  top: calc(var(--spacing) * -1);
347
341
  }
@@ -666,6 +660,13 @@
666
660
  .ml-auto {
667
661
  margin-left: auto;
668
662
  }
663
+ .scrollbar-hide {
664
+ -ms-overflow-style: none;
665
+ scrollbar-width: none;
666
+ &::-webkit-scrollbar {
667
+ display: none;
668
+ }
669
+ }
669
670
  .line-clamp-2 {
670
671
  overflow: hidden;
671
672
  display: -webkit-box;
@@ -678,13 +679,6 @@
678
679
  -webkit-box-orient: vertical;
679
680
  -webkit-line-clamp: 6;
680
681
  }
681
- .scrollbar-hide {
682
- -ms-overflow-style: none;
683
- scrollbar-width: none;
684
- &::-webkit-scrollbar {
685
- display: none;
686
- }
687
- }
688
682
  .block {
689
683
  display: block;
690
684
  }
@@ -135,6 +135,13 @@ export interface ParentPostComposerProps {
135
135
  walletApprovalLabel?: string;
136
136
  /** When true, the composer renders a blinking "approve in wallet" banner. */
137
137
  awaitingWalletApproval?: boolean;
138
+ /**
139
+ * Optional content rendered at the very top of the composer body, above the
140
+ * title input. Use this to plug in a community picker or any other
141
+ * post-routing UI without forking the composer. Receives no props — the
142
+ * consumer owns the state.
143
+ */
144
+ communitySlot?: React.ReactNode;
138
145
  }
139
146
  declare const ParentPostComposer: React.FC<ParentPostComposerProps>;
140
147
  export default ParentPostComposer;