-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
47 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,3 +33,4 @@ | |
} | ||
:local(.local_class_name_4) { | ||
} | ||
@value value: #BF4040; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
@value value1 from './2.css'; /* single token */ | ||
@value value2, value3 from './2.css'; /* multiple tokens */ | ||
@value value4 as alias from './2.css'; /* alias */ | ||
@value value5 from './2.css'; /* re-exported token */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
declare const styles: | ||
& Readonly<Pick<(typeof import("./2.css"))["default"], "value1">> | ||
& Readonly<Pick<(typeof import("./2.css"))["default"], "value2">> | ||
& Readonly<Pick<(typeof import("./2.css"))["default"], "value3">> | ||
& Readonly<{ "alias": (typeof import("./2.css"))["default"]["value4"] }> | ||
& Readonly<Pick<(typeof import("./3.css"))["default"], "value5">> | ||
; | ||
export default styles; | ||
//# sourceMappingURL=./1.css.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@value value1: ''; | ||
@value value2: ''; | ||
@value value3: ''; | ||
@value value4: ''; | ||
@value value5 from './3.css'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
declare const styles: | ||
& Readonly<{ "value1": string }> | ||
& Readonly<{ "value2": string }> | ||
& Readonly<{ "value3": string }> | ||
& Readonly<{ "value4": string }> | ||
& Readonly<Pick<(typeof import("./3.css"))["default"], "value5">> | ||
; | ||
export default styles; | ||
//# sourceMappingURL=./2.css.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@value value5: ''; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
declare const styles: | ||
& Readonly<{ "value5": string }> | ||
; | ||
export default styles; | ||
//# sourceMappingURL=./3.css.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters