@texturehq/edges 1.15.1 → 1.15.3
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/components.manifest.json +25 -3
- package/dist/index.cjs +7 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +67 -13
- package/dist/index.d.ts +67 -13
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/styles/computed.css +4 -4
- package/dist/styles/utilities.css +15 -2
- package/dist/styles.css +47 -42
- package/dist/utilities.manifest.json +2 -2
- package/package.json +1 -1
package/dist/styles/computed.css
CHANGED
|
@@ -120,10 +120,10 @@
|
|
|
120
120
|
Input Adornments
|
|
121
121
|
============================================ */
|
|
122
122
|
|
|
123
|
-
--control-icon-size-sm:
|
|
124
|
-
--control-icon-size-md:
|
|
125
|
-
--control-icon-size-lg: 1.
|
|
126
|
-
--control-icon-size-xl: 1.
|
|
123
|
+
--control-icon-size-sm: 0.875rem;
|
|
124
|
+
--control-icon-size-md: 1rem;
|
|
125
|
+
--control-icon-size-lg: 1.25rem;
|
|
126
|
+
--control-icon-size-xl: 1.5rem;
|
|
127
127
|
--control-adornment-gap: var(--control-gap-sm);
|
|
128
128
|
|
|
129
129
|
/* ============================================
|
|
@@ -28,8 +28,21 @@
|
|
|
28
28
|
outline: none;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
|
|
32
|
-
|
|
31
|
+
/**
|
|
32
|
+
* Remove default focus outlines from menu items and list items
|
|
33
|
+
* We'll use data-[focused] with custom styling for keyboard focus instead
|
|
34
|
+
*/
|
|
35
|
+
[role="menuitem"],
|
|
36
|
+
[role="option"] {
|
|
37
|
+
outline: none;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* Global focus-visible for keyboard navigation accessibility
|
|
42
|
+
* Applies to buttons, links, and form controls
|
|
43
|
+
* Menu/list items use data-[focused] with custom styling instead
|
|
44
|
+
*/
|
|
45
|
+
:focus-visible:not([role="menuitem"]):not([role="option"]) {
|
|
33
46
|
outline: 2px solid var(--color-action-default);
|
|
34
47
|
outline-offset: 2px;
|
|
35
48
|
}
|
package/dist/styles.css
CHANGED
|
@@ -1039,7 +1039,10 @@
|
|
|
1039
1039
|
[role="dialog"], [role="menu"], [role="listbox"], [data-react-aria-dialog], [data-react-aria-modal] {
|
|
1040
1040
|
outline: none;
|
|
1041
1041
|
}
|
|
1042
|
-
|
|
1042
|
+
[role="menuitem"], [role="option"] {
|
|
1043
|
+
outline: none;
|
|
1044
|
+
}
|
|
1045
|
+
:focus-visible:not([role="menuitem"]):not([role="option"]) {
|
|
1043
1046
|
outline: 2px solid var(--color-action-default);
|
|
1044
1047
|
outline-offset: 2px;
|
|
1045
1048
|
}
|
|
@@ -1770,6 +1773,9 @@
|
|
|
1770
1773
|
.w-0 {
|
|
1771
1774
|
width: var(--spacing-0);
|
|
1772
1775
|
}
|
|
1776
|
+
.w-0\.5 {
|
|
1777
|
+
width: calc(var(--spacing) * 0.5);
|
|
1778
|
+
}
|
|
1773
1779
|
.w-1 {
|
|
1774
1780
|
width: var(--spacing-1);
|
|
1775
1781
|
}
|
|
@@ -2787,6 +2793,9 @@
|
|
|
2787
2793
|
.border-text-body {
|
|
2788
2794
|
border-color: var(--color-text-body);
|
|
2789
2795
|
}
|
|
2796
|
+
.border-text-heading {
|
|
2797
|
+
border-color: var(--color-text-heading);
|
|
2798
|
+
}
|
|
2790
2799
|
.border-transparent {
|
|
2791
2800
|
border-color: transparent;
|
|
2792
2801
|
}
|
|
@@ -3048,6 +3057,9 @@
|
|
|
3048
3057
|
.bg-state-unknown {
|
|
3049
3058
|
background-color: var(--color-state-unknown);
|
|
3050
3059
|
}
|
|
3060
|
+
.bg-text-heading {
|
|
3061
|
+
background-color: var(--color-text-heading);
|
|
3062
|
+
}
|
|
3051
3063
|
.bg-text-muted {
|
|
3052
3064
|
background-color: var(--color-text-muted);
|
|
3053
3065
|
}
|
|
@@ -3629,6 +3641,9 @@
|
|
|
3629
3641
|
.text-action-default {
|
|
3630
3642
|
color: var(--color-action-default);
|
|
3631
3643
|
}
|
|
3644
|
+
.text-background-body {
|
|
3645
|
+
color: var(--color-background-body);
|
|
3646
|
+
}
|
|
3632
3647
|
.text-blue-400 {
|
|
3633
3648
|
color: var(--color-blue-400);
|
|
3634
3649
|
}
|
|
@@ -3986,12 +4001,6 @@
|
|
|
3986
4001
|
outline-style: var(--tw-outline-style);
|
|
3987
4002
|
outline-width: 1.5px;
|
|
3988
4003
|
}
|
|
3989
|
-
.-outline-offset-2 {
|
|
3990
|
-
outline-offset: calc(2px * -1);
|
|
3991
|
-
}
|
|
3992
|
-
.-outline-offset-4 {
|
|
3993
|
-
outline-offset: calc(4px * -1);
|
|
3994
|
-
}
|
|
3995
4004
|
.outline-offset-0 {
|
|
3996
4005
|
outline-offset: 0px;
|
|
3997
4006
|
}
|
|
@@ -4004,9 +4013,6 @@
|
|
|
4004
4013
|
.outline-border-input {
|
|
4005
4014
|
outline-color: var(--color-border-input);
|
|
4006
4015
|
}
|
|
4007
|
-
.outline-white {
|
|
4008
|
-
outline-color: var(--color-white);
|
|
4009
|
-
}
|
|
4010
4016
|
.blur {
|
|
4011
4017
|
--tw-blur: blur(8px);
|
|
4012
4018
|
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
|
@@ -4727,16 +4733,6 @@
|
|
|
4727
4733
|
left: var(--spacing-4);
|
|
4728
4734
|
}
|
|
4729
4735
|
}
|
|
4730
|
-
.focus\:bg-background-hover {
|
|
4731
|
-
&:focus {
|
|
4732
|
-
background-color: var(--color-background-hover);
|
|
4733
|
-
}
|
|
4734
|
-
}
|
|
4735
|
-
.focus\:bg-feedback-error-background {
|
|
4736
|
-
&:focus {
|
|
4737
|
-
background-color: var(--color-feedback-error-background);
|
|
4738
|
-
}
|
|
4739
|
-
}
|
|
4740
4736
|
.focus\:ring-0 {
|
|
4741
4737
|
&:focus {
|
|
4742
4738
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
@@ -4786,12 +4782,6 @@
|
|
|
4786
4782
|
outline-color: var(--color-action-default);
|
|
4787
4783
|
}
|
|
4788
4784
|
}
|
|
4789
|
-
.focus\:\!outline-none {
|
|
4790
|
-
&:focus {
|
|
4791
|
-
--tw-outline-style: none !important;
|
|
4792
|
-
outline-style: none !important;
|
|
4793
|
-
}
|
|
4794
|
-
}
|
|
4795
4785
|
.focus\:outline-none {
|
|
4796
4786
|
&:focus {
|
|
4797
4787
|
--tw-outline-style: none;
|
|
@@ -4825,12 +4815,6 @@
|
|
|
4825
4815
|
outline-color: var(--color-action-default);
|
|
4826
4816
|
}
|
|
4827
4817
|
}
|
|
4828
|
-
.focus-visible\:\!outline-none {
|
|
4829
|
-
&:focus-visible {
|
|
4830
|
-
--tw-outline-style: none !important;
|
|
4831
|
-
outline-style: none !important;
|
|
4832
|
-
}
|
|
4833
|
-
}
|
|
4834
4818
|
.disabled\:cursor-not-allowed {
|
|
4835
4819
|
&:disabled {
|
|
4836
4820
|
cursor: not-allowed;
|
|
@@ -4879,11 +4863,37 @@
|
|
|
4879
4863
|
transition-timing-function: var(--ease-in);
|
|
4880
4864
|
}
|
|
4881
4865
|
}
|
|
4866
|
+
.data-\[focus-visible\]\:ring-2 {
|
|
4867
|
+
&[data-focus-visible] {
|
|
4868
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
4869
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
4870
|
+
}
|
|
4871
|
+
}
|
|
4872
|
+
.data-\[focus-visible\]\:ring-action-default {
|
|
4873
|
+
&[data-focus-visible] {
|
|
4874
|
+
--tw-ring-color: var(--color-action-default);
|
|
4875
|
+
}
|
|
4876
|
+
}
|
|
4877
|
+
.data-\[focus-visible\]\:ring-feedback-error-border {
|
|
4878
|
+
&[data-focus-visible] {
|
|
4879
|
+
--tw-ring-color: var(--color-feedback-error-border);
|
|
4880
|
+
}
|
|
4881
|
+
}
|
|
4882
|
+
.data-\[focus-visible\]\:ring-inset {
|
|
4883
|
+
&[data-focus-visible] {
|
|
4884
|
+
--tw-ring-inset: inset;
|
|
4885
|
+
}
|
|
4886
|
+
}
|
|
4882
4887
|
.data-\[focused\]\:bg-background-hover {
|
|
4883
4888
|
&[data-focused] {
|
|
4884
4889
|
background-color: var(--color-background-hover);
|
|
4885
4890
|
}
|
|
4886
4891
|
}
|
|
4892
|
+
.data-\[focused\]\:bg-feedback-error-background {
|
|
4893
|
+
&[data-focused] {
|
|
4894
|
+
background-color: var(--color-feedback-error-background);
|
|
4895
|
+
}
|
|
4896
|
+
}
|
|
4887
4897
|
.data-\[focused\]\:opacity-100 {
|
|
4888
4898
|
&[data-focused] {
|
|
4889
4899
|
opacity: 100%;
|
|
@@ -5350,6 +5360,11 @@
|
|
|
5350
5360
|
flex-direction: row;
|
|
5351
5361
|
}
|
|
5352
5362
|
}
|
|
5363
|
+
.md\:items-center {
|
|
5364
|
+
@media (width >= 48rem) {
|
|
5365
|
+
align-items: center;
|
|
5366
|
+
}
|
|
5367
|
+
}
|
|
5353
5368
|
.md\:items-start {
|
|
5354
5369
|
@media (width >= 48rem) {
|
|
5355
5370
|
align-items: flex-start;
|
|
@@ -6071,11 +6086,6 @@
|
|
|
6071
6086
|
--tw-ring-color: var(--color-gray-700);
|
|
6072
6087
|
}
|
|
6073
6088
|
}
|
|
6074
|
-
.dark\:outline-white {
|
|
6075
|
-
@media (prefers-color-scheme: dark) {
|
|
6076
|
-
outline-color: var(--color-white);
|
|
6077
|
-
}
|
|
6078
|
-
}
|
|
6079
6089
|
.dark\:backdrop-blur-2xl {
|
|
6080
6090
|
@media (prefers-color-scheme: dark) {
|
|
6081
6091
|
--tw-backdrop-blur: blur(var(--blur-2xl));
|
|
@@ -6265,11 +6275,6 @@
|
|
|
6265
6275
|
outline-color: GrayText;
|
|
6266
6276
|
}
|
|
6267
6277
|
}
|
|
6268
|
-
.forced-colors\:outline-\[HighlightText\] {
|
|
6269
|
-
@media (forced-colors: active) {
|
|
6270
|
-
outline-color: HighlightText;
|
|
6271
|
-
}
|
|
6272
|
-
}
|
|
6273
6278
|
.forced-colors\:group-invalid\:bg-\[Mark\] {
|
|
6274
6279
|
@media (forced-colors: active) {
|
|
6275
6280
|
&:is(:where(.group):invalid *) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.15.
|
|
3
|
-
"generatedAt": "2025-10-
|
|
2
|
+
"version": "1.15.3",
|
|
3
|
+
"generatedAt": "2025-10-31T11:11:25.558Z",
|
|
4
4
|
"categories": {
|
|
5
5
|
"hooks": {
|
|
6
6
|
"description": "React hooks for common functionality like breakpoints, debouncing, local storage, and media queries",
|