reachat 2.1.0-alpha.12 → 2.1.0-alpha.14

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.css CHANGED
@@ -44,6 +44,7 @@
44
44
  --radius-xs: 0.125rem;
45
45
  --radius-md: 0.375rem;
46
46
  --radius-xl: 0.75rem;
47
+ --radius-2xl: 1rem;
47
48
  --radius-3xl: 1.5rem;
48
49
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
49
50
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
@@ -830,9 +831,6 @@
830
831
  .relative {
831
832
  position: relative;
832
833
  }
833
- .static {
834
- position: static;
835
- }
836
834
  .sticky {
837
835
  position: sticky;
838
836
  }
@@ -884,9 +882,6 @@
884
882
  .bottom-0 {
885
883
  bottom: calc(var(--spacing) * 0);
886
884
  }
887
- .bottom-1 {
888
- bottom: calc(var(--spacing) * 1);
889
- }
890
885
  .bottom-5 {
891
886
  bottom: calc(var(--spacing) * 5);
892
887
  }
@@ -1392,6 +1387,9 @@
1392
1387
  .h-11 {
1393
1388
  height: calc(var(--spacing) * 11);
1394
1389
  }
1390
+ .h-24 {
1391
+ height: calc(var(--spacing) * 24);
1392
+ }
1395
1393
  .h-46 {
1396
1394
  height: calc(var(--spacing) * 46);
1397
1395
  }
@@ -1425,6 +1423,9 @@
1425
1423
  .h-\[60px\] {
1426
1424
  height: 60px;
1427
1425
  }
1426
+ .h-\[100px\] {
1427
+ height: 100px;
1428
+ }
1428
1429
  .h-\[300px\] {
1429
1430
  height: 300px;
1430
1431
  }
@@ -1545,6 +1546,9 @@
1545
1546
  .w-3\.5 {
1546
1547
  width: calc(var(--spacing) * 3.5);
1547
1548
  }
1549
+ .w-3\/4 {
1550
+ width: calc(3/4 * 100%);
1551
+ }
1548
1552
  .w-3\/5 {
1549
1553
  width: calc(3/5 * 100%);
1550
1554
  }
@@ -1554,6 +1558,9 @@
1554
1558
  .w-5 {
1555
1559
  width: calc(var(--spacing) * 5);
1556
1560
  }
1561
+ .w-5\/6 {
1562
+ width: calc(5/6 * 100%);
1563
+ }
1557
1564
  .w-6 {
1558
1565
  width: calc(var(--spacing) * 6);
1559
1566
  }
@@ -1572,6 +1579,9 @@
1572
1579
  .w-16 {
1573
1580
  width: calc(var(--spacing) * 16);
1574
1581
  }
1582
+ .w-24 {
1583
+ width: calc(var(--spacing) * 24);
1584
+ }
1575
1585
  .w-\[9px\] {
1576
1586
  width: 9px;
1577
1587
  }
@@ -1584,12 +1594,27 @@
1584
1594
  .w-\[50px\] {
1585
1595
  width: 50px;
1586
1596
  }
1597
+ .w-\[60\%\] {
1598
+ width: 60%;
1599
+ }
1587
1600
  .w-\[60px\] {
1588
1601
  width: 60px;
1589
1602
  }
1603
+ .w-\[70\%\] {
1604
+ width: 70%;
1605
+ }
1590
1606
  .w-\[80\%\] {
1591
1607
  width: 80%;
1592
1608
  }
1609
+ .w-\[90\%\] {
1610
+ width: 90%;
1611
+ }
1612
+ .w-\[100px\] {
1613
+ width: 100px;
1614
+ }
1615
+ .w-\[200px\] {
1616
+ width: 200px;
1617
+ }
1593
1618
  .w-\[250px\] {
1594
1619
  width: 250px;
1595
1620
  }
@@ -1762,8 +1787,8 @@
1762
1787
  .rotate-180 {
1763
1788
  rotate: 180deg;
1764
1789
  }
1765
- .transform {
1766
- transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
1790
+ .animate-\[pulse_1\.5s_ease-in-out_infinite\] {
1791
+ animation: pulse 1.5s ease-in-out infinite;
1767
1792
  }
1768
1793
  .cursor-\[initial\] {
1769
1794
  cursor: initial;
@@ -2049,6 +2074,9 @@
2049
2074
  .rounded-\(--tags-details-corner-radius-base\) {
2050
2075
  border-radius: var(--tags-details-corner-radius-base);
2051
2076
  }
2077
+ .rounded-2xl {
2078
+ border-radius: var(--radius-2xl);
2079
+ }
2052
2080
  .rounded-3xl {
2053
2081
  border-radius: var(--radius-3xl);
2054
2082
  }
@@ -2550,6 +2578,9 @@
2550
2578
  .bg-background-neutral-raised-3 {
2551
2579
  background-color: var(--background-neutral-raised-3);
2552
2580
  }
2581
+ .bg-background-neutral-raised-4 {
2582
+ background-color: var(--background-neutral-raised-4);
2583
+ }
2553
2584
  .bg-background-neutral-raised-5 {
2554
2585
  background-color: var(--background-neutral-raised-5);
2555
2586
  }
@@ -3030,6 +3061,10 @@
3030
3061
  }
3031
3062
  background-image: linear-gradient(var(--tw-gradient-stops));
3032
3063
  }
3064
+ .bg-gradient-to-r {
3065
+ --tw-gradient-position: to right in oklab;
3066
+ background-image: linear-gradient(var(--tw-gradient-stops));
3067
+ }
3033
3068
  .\[background-image\:linear-gradient\(-126\.85deg\,_rgba\(30\,_30\,_46\,_0\)_63\.1678\%\,_\#2F6AFF_88\.9438\%\)\] {
3034
3069
  background-image: linear-gradient(-126.85deg, rgba(30, 30, 46, 0) 63.1678%, #2F6AFF 88.9438%);
3035
3070
  }
@@ -3039,6 +3074,10 @@
3039
3074
  .bg-none {
3040
3075
  background-image: none;
3041
3076
  }
3077
+ .from-background-neutral-raised-3 {
3078
+ --tw-gradient-from: var(--background-neutral-raised-3);
3079
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
3080
+ }
3042
3081
  .from-blue-skybolt-a-500 {
3043
3082
  --tw-gradient-from: var(--color-blue-skybolt-a-500);
3044
3083
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
@@ -3051,10 +3090,19 @@
3051
3090
  --tw-gradient-from: transparent;
3052
3091
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
3053
3092
  }
3093
+ .via-background-neutral-raised-4 {
3094
+ --tw-gradient-via: var(--background-neutral-raised-4);
3095
+ --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
3096
+ --tw-gradient-stops: var(--tw-gradient-via-stops);
3097
+ }
3054
3098
  .to-background-brand-base {
3055
3099
  --tw-gradient-to: var(--background-brand-base);
3056
3100
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
3057
3101
  }
3102
+ .to-background-neutral-raised-3 {
3103
+ --tw-gradient-to: var(--background-neutral-raised-3);
3104
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
3105
+ }
3058
3106
  .to-blue-hyperstream-500 {
3059
3107
  --tw-gradient-to: var(--color-blue-hyperstream-500);
3060
3108
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
@@ -3071,6 +3119,9 @@
3071
3119
  --tw-gradient-to: transparent;
3072
3120
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
3073
3121
  }
3122
+ .bg-\[length\:200\%_100\%\] {
3123
+ background-size: 200% 100%;
3124
+ }
3074
3125
  .bg-cover {
3075
3126
  background-size: cover;
3076
3127
  }
@@ -4172,19 +4223,12 @@
4172
4223
  .capitalize {
4173
4224
  text-transform: capitalize;
4174
4225
  }
4175
- .lowercase {
4176
- text-transform: lowercase;
4177
- }
4178
4226
  .uppercase {
4179
4227
  text-transform: uppercase;
4180
4228
  }
4181
4229
  .italic {
4182
4230
  font-style: italic;
4183
4231
  }
4184
- .ordinal {
4185
- --tw-ordinal: ordinal;
4186
- font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
4187
- }
4188
4232
  .underline {
4189
4233
  text-decoration-line: underline;
4190
4234
  }
@@ -4197,6 +4241,9 @@
4197
4241
  .opacity-10 {
4198
4242
  opacity: 10%;
4199
4243
  }
4244
+ .opacity-30 {
4245
+ opacity: 30%;
4246
+ }
4200
4247
  .opacity-40 {
4201
4248
  opacity: 40%;
4202
4249
  }
@@ -4221,10 +4268,6 @@
4221
4268
  .opacity-100 {
4222
4269
  opacity: 100%;
4223
4270
  }
4224
- .shadow {
4225
- --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
4226
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
4227
- }
4228
4271
  .shadow-2xl {
4229
4272
  --tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
4230
4273
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
@@ -4526,6 +4569,15 @@
4526
4569
  }
4527
4570
  }
4528
4571
  }
4572
+ .group-hover\:stroke-selectors-colors-checkbox-selected-assets-hover {
4573
+ &:is(:where(.group):hover *) {
4574
+ @media (hover: hover) {
4575
+ stroke: var(
4576
+ --content-assets-on-color-light-light
4577
+ );
4578
+ }
4579
+ }
4580
+ }
4529
4581
  .group-hover\:text-buttons-colors-core-icon-ghost-text-hover {
4530
4582
  &:is(:where(.group):hover *) {
4531
4583
  @media (hover: hover) {
@@ -6426,23 +6478,6 @@
6426
6478
  }
6427
6479
  }
6428
6480
  }
6429
- .focus-visible\:outline-1 {
6430
- &:focus-visible {
6431
- outline-style: var(--tw-outline-style);
6432
- outline-width: 1px;
6433
- }
6434
- }
6435
- .focus-visible\:outline-offset-2 {
6436
- &:focus-visible {
6437
- outline-offset: 2px;
6438
- }
6439
- }
6440
- .focus-visible\:outline-dashed {
6441
- &:focus-visible {
6442
- --tw-outline-style: dashed;
6443
- outline-style: dashed;
6444
- }
6445
- }
6446
6481
  .focus-visible\:outline-none {
6447
6482
  &:focus-visible {
6448
6483
  --tw-outline-style: none;
@@ -6829,6 +6864,12 @@
6829
6864
  background-color: var(--background-neutral-raised-4);
6830
6865
  }
6831
6866
  }
6867
+ .dark\:bg-gradient-to-r {
6868
+ &:where(.theme-dark, .theme-dark *, [data-theme=dark], [data-theme=dark] *) {
6869
+ --tw-gradient-position: to right in oklab;
6870
+ background-image: linear-gradient(var(--tw-gradient-stops));
6871
+ }
6872
+ }
6832
6873
  .dark\:bg-\[radial-gradient\(circle\,rgba\(36\,36\,66\,0\.3\)_2\%\,rgba\(2\,2\,15\,1\)_80\%\)\] {
6833
6874
  &:where(.theme-dark, .theme-dark *, [data-theme=dark], [data-theme=dark] *) {
6834
6875
  background-image: radial-gradient(circle,rgba(36,36,66,0.3) 2%,rgba(2,2,15,1) 80%);
@@ -6882,6 +6923,12 @@
6882
6923
  background-color: var(--color-neutrals-pure-white-dnt-1000);
6883
6924
  }
6884
6925
  }
6926
+ .light\:bg-gradient-to-r {
6927
+ &:where(.theme-light, .theme-light *, [data-theme=light], [data-theme=light] *) {
6928
+ --tw-gradient-position: to right in oklab;
6929
+ background-image: linear-gradient(var(--tw-gradient-stops));
6930
+ }
6931
+ }
6885
6932
  .light\:bg-\[radial-gradient\(circle\,rgba\(224\,224\,232\,0\.3\)_2\%\,rgba\(247\,247\,250\,1\)_80\%\)\] {
6886
6933
  &:where(.theme-light, .theme-light *, [data-theme=light], [data-theme=light] *) {
6887
6934
  background-image: radial-gradient(circle,rgba(224,224,232,0.3) 2%,rgba(247,247,250,1) 80%);
@@ -9717,26 +9764,6 @@ body {
9717
9764
  inherits: false;
9718
9765
  initial-value: 0;
9719
9766
  }
9720
- @property --tw-rotate-x {
9721
- syntax: "*";
9722
- inherits: false;
9723
- }
9724
- @property --tw-rotate-y {
9725
- syntax: "*";
9726
- inherits: false;
9727
- }
9728
- @property --tw-rotate-z {
9729
- syntax: "*";
9730
- inherits: false;
9731
- }
9732
- @property --tw-skew-x {
9733
- syntax: "*";
9734
- inherits: false;
9735
- }
9736
- @property --tw-skew-y {
9737
- syntax: "*";
9738
- inherits: false;
9739
- }
9740
9767
  @property --tw-pan-x {
9741
9768
  syntax: "*";
9742
9769
  inherits: false;
@@ -9814,26 +9841,6 @@ body {
9814
9841
  syntax: "*";
9815
9842
  inherits: false;
9816
9843
  }
9817
- @property --tw-ordinal {
9818
- syntax: "*";
9819
- inherits: false;
9820
- }
9821
- @property --tw-slashed-zero {
9822
- syntax: "*";
9823
- inherits: false;
9824
- }
9825
- @property --tw-numeric-figure {
9826
- syntax: "*";
9827
- inherits: false;
9828
- }
9829
- @property --tw-numeric-spacing {
9830
- syntax: "*";
9831
- inherits: false;
9832
- }
9833
- @property --tw-numeric-fraction {
9834
- syntax: "*";
9835
- inherits: false;
9836
- }
9837
9844
  @property --tw-shadow {
9838
9845
  syntax: "*";
9839
9846
  inherits: false;
@@ -10021,17 +10028,22 @@ body {
10021
10028
  inherits: false;
10022
10029
  initial-value: 1;
10023
10030
  }
10031
+ @keyframes pulse {
10032
+ 50% {
10033
+ opacity: 0.5;
10034
+ }
10035
+ }
10036
+ @keyframes pulse {
10037
+ 50% {
10038
+ opacity: 0.5;
10039
+ }
10040
+ }
10024
10041
  @layer properties {
10025
10042
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
10026
10043
  *, ::before, ::after, ::backdrop {
10027
10044
  --tw-translate-x: 0;
10028
10045
  --tw-translate-y: 0;
10029
10046
  --tw-translate-z: 0;
10030
- --tw-rotate-x: initial;
10031
- --tw-rotate-y: initial;
10032
- --tw-rotate-z: initial;
10033
- --tw-skew-x: initial;
10034
- --tw-skew-y: initial;
10035
10047
  --tw-pan-x: initial;
10036
10048
  --tw-pan-y: initial;
10037
10049
  --tw-pinch-zoom: initial;
@@ -10049,11 +10061,6 @@ body {
10049
10061
  --tw-gradient-to-position: 100%;
10050
10062
  --tw-leading: initial;
10051
10063
  --tw-font-weight: initial;
10052
- --tw-ordinal: initial;
10053
- --tw-slashed-zero: initial;
10054
- --tw-numeric-figure: initial;
10055
- --tw-numeric-spacing: initial;
10056
- --tw-numeric-fraction: initial;
10057
10064
  --tw-shadow: 0 0 #0000;
10058
10065
  --tw-shadow-color: initial;
10059
10066
  --tw-shadow-alpha: 100%;
package/dist/index.js CHANGED
@@ -10,7 +10,7 @@
10
10
  console.error("vite-plugin-css-injected-by-js", e);
11
11
  }
12
12
  })();
13
- import { A, b, c, C, d, e, F, M, j, k, m, n, o, p, q, N, i, w, x, s, t, u, v, y, z, T, g, f, B, h, D, l, r } from "./index-l2ncOVPh.js";
13
+ import { A, b, c, C, d, e, F, M, j, k, m, n, o, p, q, N, i, w, x, s, t, u, v, y, z, T, g, f, B, h, D, l, r } from "./index--Kv_qij4.js";
14
14
  import "react/jsx-runtime";
15
15
  import "motion/react";
16
16
  import "reablocks";
@@ -96,7 +96,13 @@
96
96
  toolbar: "text-xs flex items-center justify-between px-2 py-1 rounded-t sticky top-0 backdrop-blur-md bg-gradient-neutral-500/50",
97
97
  li: "mb-2 ml-6",
98
98
  ul: "mb-4 list-disc",
99
- ol: "mb-4 list-decimal"
99
+ ol: "mb-4 list-decimal",
100
+ h1: "text-4xl font-bold mb-4 mt-6",
101
+ h2: "text-3xl font-bold mb-3 mt-5",
102
+ h3: "text-2xl font-bold mb-3 mt-4",
103
+ h4: "text-xl font-bold mb-2 mt-3",
104
+ h5: "text-lg font-bold mb-2 mt-2",
105
+ h6: "text-base font-bold mb-2 mt-2"
100
106
  },
101
107
  csvPreview: {
102
108
  base: "flex flex-col gap-2",
@@ -1548,7 +1554,13 @@
1548
1554
  p: (props) => /* @__PURE__ */ jsxRuntime.jsx("p", { ...props, className: reablocks.cn(theme.messages.message.markdown.p) }),
1549
1555
  li: (props) => /* @__PURE__ */ jsxRuntime.jsx("li", { ...props, className: reablocks.cn(theme.messages.message.markdown.li) }),
1550
1556
  ul: (props) => /* @__PURE__ */ jsxRuntime.jsx("ul", { ...props, className: reablocks.cn(theme.messages.message.markdown.ul) }),
1551
- ol: (props) => /* @__PURE__ */ jsxRuntime.jsx("ol", { ...props, className: reablocks.cn(theme.messages.message.markdown.ol) })
1557
+ ol: (props) => /* @__PURE__ */ jsxRuntime.jsx("ol", { ...props, className: reablocks.cn(theme.messages.message.markdown.ol) }),
1558
+ h1: (props) => /* @__PURE__ */ jsxRuntime.jsx("h1", { ...props, className: reablocks.cn(theme.messages.message.markdown.h1) }),
1559
+ h2: (props) => /* @__PURE__ */ jsxRuntime.jsx("h2", { ...props, className: reablocks.cn(theme.messages.message.markdown.h2) }),
1560
+ h3: (props) => /* @__PURE__ */ jsxRuntime.jsx("h3", { ...props, className: reablocks.cn(theme.messages.message.markdown.h3) }),
1561
+ h4: (props) => /* @__PURE__ */ jsxRuntime.jsx("h4", { ...props, className: reablocks.cn(theme.messages.message.markdown.h4) }),
1562
+ h5: (props) => /* @__PURE__ */ jsxRuntime.jsx("h5", { ...props, className: reablocks.cn(theme.messages.message.markdown.h5) }),
1563
+ h6: (props) => /* @__PURE__ */ jsxRuntime.jsx("h6", { ...props, className: reablocks.cn(theme.messages.message.markdown.h6) })
1552
1564
  },
1553
1565
  children
1554
1566
  }