Skip to content

Commit e9d8d7f

Browse files
committed
Fix conflicts, update tests
2 parents e3d5e24 + cb9d1b8 commit e9d8d7f

File tree

3 files changed

+41
-0
lines changed

3 files changed

+41
-0
lines changed

__tests__/fixtures/tailwind-output-important.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3254,6 +3254,10 @@ video {
32543254
cursor: wait !important;
32553255
}
32563256

3257+
.cursor-text {
3258+
cursor: text !important;
3259+
}
3260+
32573261
.cursor-move {
32583262
cursor: move !important;
32593263
}
@@ -10067,6 +10071,10 @@ video {
1006710071
cursor: wait !important;
1006810072
}
1006910073

10074+
.sm\:cursor-text {
10075+
cursor: text !important;
10076+
}
10077+
1007010078
.sm\:cursor-move {
1007110079
cursor: move !important;
1007210080
}
@@ -16865,6 +16873,10 @@ video {
1686516873
cursor: wait !important;
1686616874
}
1686716875

16876+
.md\:cursor-text {
16877+
cursor: text !important;
16878+
}
16879+
1686816880
.md\:cursor-move {
1686916881
cursor: move !important;
1687016882
}
@@ -23663,6 +23675,10 @@ video {
2366323675
cursor: wait !important;
2366423676
}
2366523677

23678+
.lg\:cursor-text {
23679+
cursor: text !important;
23680+
}
23681+
2366623682
.lg\:cursor-move {
2366723683
cursor: move !important;
2366823684
}
@@ -30461,6 +30477,10 @@ video {
3046130477
cursor: wait !important;
3046230478
}
3046330479

30480+
.xl\:cursor-text {
30481+
cursor: text !important;
30482+
}
30483+
3046430484
.xl\:cursor-move {
3046530485
cursor: move !important;
3046630486
}

__tests__/fixtures/tailwind-output.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3254,6 +3254,10 @@ video {
32543254
cursor: wait;
32553255
}
32563256

3257+
.cursor-text {
3258+
cursor: text;
3259+
}
3260+
32573261
.cursor-move {
32583262
cursor: move;
32593263
}
@@ -10067,6 +10071,10 @@ video {
1006710071
cursor: wait;
1006810072
}
1006910073

10074+
.sm\:cursor-text {
10075+
cursor: text;
10076+
}
10077+
1007010078
.sm\:cursor-move {
1007110079
cursor: move;
1007210080
}
@@ -16865,6 +16873,10 @@ video {
1686516873
cursor: wait;
1686616874
}
1686716875

16876+
.md\:cursor-text {
16877+
cursor: text;
16878+
}
16879+
1686816880
.md\:cursor-move {
1686916881
cursor: move;
1687016882
}
@@ -23663,6 +23675,10 @@ video {
2366323675
cursor: wait;
2366423676
}
2366523677

23678+
.lg\:cursor-text {
23679+
cursor: text;
23680+
}
23681+
2366623682
.lg\:cursor-move {
2366723683
cursor: move;
2366823684
}
@@ -30461,6 +30477,10 @@ video {
3046130477
cursor: wait;
3046230478
}
3046330479

30480+
.xl\:cursor-text {
30481+
cursor: text;
30482+
}
30483+
3046430484
.xl\:cursor-move {
3046530485
cursor: move;
3046630486
}

stubs/defaultConfig.stub.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,7 @@ module.exports = {
258258
default: 'default',
259259
pointer: 'pointer',
260260
wait: 'wait',
261+
text: 'text',
261262
move: 'move',
262263
'not-allowed': 'not-allowed',
263264
},

0 commit comments

Comments
 (0)