Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Don't register properties with types unless necessary
  • Loading branch information
adamwathan committed Nov 27, 2024
commit ae9ced5a53c3b26210542f4fcd13b22ea6dc883d
18 changes: 9 additions & 9 deletions packages/tailwindcss/src/__snapshots__/utilities.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ exports[`border-* 1`] = `
}

@property --tw-border-style {
syntax: "<custom-ident>";
syntax: "*";
inherits: false;
initial-value: solid;
}"
Expand Down Expand Up @@ -260,7 +260,7 @@ exports[`border-b-* 1`] = `
}

@property --tw-border-style {
syntax: "<custom-ident>";
syntax: "*";
inherits: false;
initial-value: solid;
}"
Expand Down Expand Up @@ -393,7 +393,7 @@ exports[`border-e-* 1`] = `
}

@property --tw-border-style {
syntax: "<custom-ident>";
syntax: "*";
inherits: false;
initial-value: solid;
}"
Expand Down Expand Up @@ -526,7 +526,7 @@ exports[`border-l-* 1`] = `
}

@property --tw-border-style {
syntax: "<custom-ident>";
syntax: "*";
inherits: false;
initial-value: solid;
}"
Expand Down Expand Up @@ -659,7 +659,7 @@ exports[`border-r-* 1`] = `
}

@property --tw-border-style {
syntax: "<custom-ident>";
syntax: "*";
inherits: false;
initial-value: solid;
}"
Expand Down Expand Up @@ -792,7 +792,7 @@ exports[`border-s-* 1`] = `
}

@property --tw-border-style {
syntax: "<custom-ident>";
syntax: "*";
inherits: false;
initial-value: solid;
}"
Expand Down Expand Up @@ -925,7 +925,7 @@ exports[`border-t-* 1`] = `
}

@property --tw-border-style {
syntax: "<custom-ident>";
syntax: "*";
inherits: false;
initial-value: solid;
}"
Expand Down Expand Up @@ -1058,7 +1058,7 @@ exports[`border-x-* 1`] = `
}

@property --tw-border-style {
syntax: "<custom-ident>";
syntax: "*";
inherits: false;
initial-value: solid;
}"
Expand Down Expand Up @@ -1191,7 +1191,7 @@ exports[`border-y-* 1`] = `
}

@property --tw-border-style {
syntax: "<custom-ident>";
syntax: "*";
inherits: false;
initial-value: solid;
}"
Expand Down
8 changes: 4 additions & 4 deletions packages/tailwindcss/src/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -302,19 +302,19 @@ describe('@apply', () => {
}

@property --tw-translate-x {
syntax: "<length> | <percentage>";
syntax: "*";
inherits: false;
initial-value: 0;
}

@property --tw-translate-y {
syntax: "<length> | <percentage>";
syntax: "*";
inherits: false;
initial-value: 0;
}

@property --tw-translate-z {
syntax: "<length>";
syntax: "*";
inherits: false;
initial-value: 0;
}"
Expand Down Expand Up @@ -717,7 +717,7 @@ describe('sorting', () => {
}

@property --tw-space-x-reverse {
syntax: "<number>";
syntax: "*";
inherits: false;
initial-value: 0;
}"
Expand Down
Loading