file_path stringlengths 3 280 | file_language stringclasses 66
values | content stringlengths 1 1.04M | repo_name stringlengths 5 92 | repo_stars int64 0 154k | repo_description stringlengths 0 402 | repo_primary_language stringclasses 108
values | developer_username stringlengths 1 25 | developer_name stringlengths 0 30 | developer_company stringlengths 0 82 |
|---|---|---|---|---|---|---|---|---|---|
crates/swc_css_modules/tests/fixture/modules/composes/relative.css | CSS | .imported-relative {
display: inline;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/composes/something.compiled.css | CSS | @value v-something: 2112moon;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/composes/something.css | CSS | @value v-something: 2112moon;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/composes/test-other.compiled.css | CSS | .__local__test {
d: d;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/composes/test-other.css | CSS | .test {
d: d;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/composes/top-relative.compiled.css | CSS | .__local__imported-relative {
display: flex;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/composes/top-relative.css | CSS | .imported-relative {
display: flex;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/composes/values.compiled.css | CSS | @value v-def: red;
@value v-other: green;
@value s-white: white;
@value m-small: (min-width: 320px);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/composes/values.css | CSS | @value v-def: red;
@value v-other: green;
@value s-white: white;
@value m-small: (min-width: 320px);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/dedupe/buttons/button.compiled.css | CSS | .__local__button {
border: none;
padding: 7px 15px;
cursor: pointer;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/dedupe/buttons/button.css | CSS | .button
{
border:none;
padding:7px 15px;
cursor:pointer;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/dedupe/buttons/primary-button.compiled.css | CSS | .__local__primaryButton {
background-color: blue;
color: white;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/dedupe/buttons/primary-button.css | CSS | .primaryButton
{
composes:button from './button.css';
background-color:blue;
color:white;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/dedupe/buttons/secondary-button.compiled.css | CSS | .__local__secondaryButton {
background-color: #555;
color: white;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/dedupe/buttons/secondary-button.css | CSS | .secondaryButton
{
composes:button from './button.css';
background-color:#555;
color:white;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/dedupe/source.compiled.css | CSS | .__local__nextButton {}
.__local__backButton {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/dedupe/source.css | CSS | .nextButton
{
composes:primaryButton from './buttons/primary-button.css';
}
.backButton
{
composes:secondaryButton from './buttons/secondary-button.css';
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/exportGlobals-global/exportGlobals.compiled.css | CSS | .__local__foo {
background-color: red;
}
.__local__bar {
background-color: green;
}
.baz {
background-color: blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/exportGlobals-global/exportGlobals.css | CSS | .foo {
background-color: red;
}
:local(.bar) {
background-color: green;
}
:global(.baz) {
background-color: blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/exportGlobals-local/exportGlobals.compiled.css | CSS | .__local__foo {
background-color: red;
}
.__local__bar {
background-color: green;
}
.baz {
background-color: blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/exportGlobals-local/exportGlobals.css | CSS | .foo {
background-color: red;
}
:local(.bar) {
background-color: green;
}
:global(.baz) {
background-color: blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/exportGlobals-pure/exportGlobals.compiled.css | CSS | .__local__foo {
background-color: red;
}
.__local__one .__local__bar {
background-color: green;
}
.__local__two .baz {
background-color: blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/exportGlobals-pure/exportGlobals.css | CSS | .foo {
background-color: red;
}
.one :local(.bar) {
background-color: green;
}
.two :global(.baz) {
background-color: blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/extensions/imported.compiled.css | CSS | .__local__imported-relative {
display: block;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/extensions/imported.css | CSS | .imported-relative {
display: block;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/extensions/source.compiled.css | CSS | .__local__one {
color: yellow;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/extensions/source.css | CSS | .one {
color: yellow;
composes: imported-relative from 'imported';
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-1063/global.compiled.css | CSS | .__local__classNameGlobalFile {
color: black;
}
.__local__otherClassGlobalFile {
color: coral;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-1063/global.css | CSS | .classNameGlobalFile {
color: black;
}
:local(.otherClassGlobalFile) {
color: coral;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-1063/local.compiled.css | CSS | .__local__classNameLocalFile {
color: green;
}
.otherClassLocalFile {
color: blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-1063/local.css | CSS | .classNameLocalFile {
color: green;
}
:global(.otherClassLocalFile) {
color: blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-1063/pure.compiled.css | CSS | .__local__foo .__local__bar {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-1063/pure.css | CSS | .foo :local(.bar) {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-1191/issue-1191-custom.compiled.css | CSS | .__local__some-class {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-1191/issue-1191-custom.css | CSS | .some-class {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-1191/issue-1191.compiled.css | CSS | .__local__some-class {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-1191/issue-1191.css | CSS | .some-class {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-1223/@foo/bar/index.module.compiled.css | CSS | .__local__myClass {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-1223/@foo/bar/index.module.css | CSS | .myClass {
color: red;
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-1228/source.compiled.css | CSS | .__local__a {
animation: 3s __local__animationName;
}
.__local__b {
animation: __local__animationName 3s;
}
.__local__c {
animation-name: __local__animationName;
}
@keyframes __local__animationName {
0% {
background: white;
}
100% {
background: red;
}
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-1228/source.css | CSS | .a {
animation: 3s animationName;
}
.b {
animation: animationName 3s;
}
.c {
animation-name: animationName;
}
@keyframes animationName {
0% {
background: white;
}
100% {
background: red;
}
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-286/dep.compiled.css | CSS | .__local__red {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-286/dep.css | CSS | .red { color: red }
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-286/source.compiled.css | CSS | .__local__main {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-286/source.css | CSS | .main { composes: red from './dep.css'; }
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-7737/issue-7737.compiled.css | CSS | .__local__chain2 {}
.__local__chain1 {}
.__local__root-class {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-7737/issue-7737.css | CSS | .chain2 {
composes: e from global;
composes: f from "./f.css";
}
.chain1 {
composes: chain2;
composes: c from global;
composes: d from "./d.css";
}
.root-class {
composes: chain1;
composes: a from global;
composes: b from "./b.css";
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-7948/issue-7948.compiled.css | CSS | .__local__root-class {
background-color: red;
}
.__local__chain-1,
.__local__chain-2 {}
.__local__chain-1 {
color: blue;
}
.__local__chain-2 {
color: green;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-7948/issue-7948.css | CSS | .root-class {
background-color: red;
}
.chain-1,
.chain-2 {
composes: root-class;
}
.chain-1 {
color: blue;
}
.chain-2 {
color: green;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-861/resolving-from-node_modules.compiled.css | CSS | @value color-grey from "./node_modules/@localpackage/color.css";
.__local__copyright {
color: color-grey;
margin: 0;
padding: 0;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-861/resolving-from-node_modules.css | CSS | @value color-grey from "./node_modules/@localpackage/color.css";
.copyright {
color: color-grey;
composes: type-heading from "./node_modules/@localpackage/style.css";
margin: 0;
padding: 0;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-914/source.compiled.css | CSS | @value foo from '~test';
@value bar from 'test';
.__local__className {
color: foo;
background: bar;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-914/source.css | CSS | @value foo from '~test';
@value bar from 'test';
.className {
color: foo;
background: bar;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-966/button.compiled.css | CSS | .__local__button {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-966/button.css | CSS | .button {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-966/issue-966.compiled.css | CSS | .__local__foo-class {
color: red;
}
.__local__bar-class {
color: red;
}
.__local__baz-class {
color: red;
}
.__local__fooBaz-class {
color: red;
}
.__local__some.__local__class {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-966/issue-966.css | CSS | .foo-class {
color: red;
}
.bar-class {
color: red;
}
.baz-class {
color: red;
}
.fooBaz-class {
color: red;
}
.some.class {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-966/toolbar.compiled.css | CSS | @value btn from './button.css';
.__local__toolbar > btn {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-966/toolbar.css | CSS | @value btn from './button.css';
.toolbar > btn {
color: red
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-967/path-placeholder.compiled.css | CSS | .__local__foo {
color: red;
}
.__local__foo\/bar {
color: blue;
}
.__local__\[\/\?\<\>\\\\\:\*\|\"\:\] {
color: yellow;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-967/path-placeholder.css | CSS | .foo {
color: red;
}
.foo\/bar {
color: blue;
}
.\[\/\?\<\>\\\\\3A \*\|\"\3A \] {
color: yellow;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-980/file.with.many.dots.in.name.compiled.css | CSS | .__local__a {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-980/file.with.many.dots.in.name.css | CSS | .a {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-995/issue-995.compiled.css | CSS | .__local__a {
color: red;
}
.__local__a.__local__b {
color: red;
}
.__local__a .__local__b {
color: red;
}
.__local__😀 {
color: red;
}
.__local__😀.__local__😓 {
color: red;
}
.__local__😀 .__local__😓 {
color: red;
}
.__local__😀 {
color: red;
}
.__local__😀.__local__😓 {
color: red;
}
.__local__😀 ._... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/issue-995/issue-995.css | CSS | /* class="😀" */
.a {
color: red;
}
/* class="😀 😓" */
.a.b {
color: red;
}
/* class="😀" > class="😓" */
.a .b {
color: red;
}
/* class="😀" */
.😀 {
color: red;
}
/* class="😀 😓" */
.😀.😓 {
color: red;
}
/* class="😀" > class="😓" */
.😀 .😓 {
color: red;
}
/* class="😀" */
.\1F600 {
color: red... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/localIdentName/localIdentName.compiled.css | CSS | .__local__test {
background: red;
}
.__local___test {
background: blue;
}
.__local__className {
background: red;
}
#__local__someId {
background: green;
}
.__local__className .__local__subClass {
color: green;
}
#__local__someId .__local__subClass {
color: blue;
}
.__local__-a0-34a___f {
color: red;
}
.__... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/localIdentName/localIdentName.css | CSS | .test {
background: red;
}
._test {
background: blue;
}
.className {
background: red;
}
#someId {
background: green;
}
.className .subClass {
color: green;
}
#someId .subClass {
color: blue;
}
.-a0-34a___f {
color: red;
}
.m_x_\@ {
margin-left: auto !important;
margin-right: auto !important;
}
... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/localsConvention/localsConvention.compiled.css | CSS | .__local__btn-info_is-disabled {
color: blue;
}
.__local__btn--info_is-disabled_1 {
color: blue;
}
.__local__simple {
color: red;
}
a {
color: yellow;
}
:export {
foo: bar;
my-btn-info_is-disabled: value;
}
.__local__foo_bar {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/localsConvention/localsConvention.css | CSS | .btn-info_is-disabled {
color: blue;
}
.btn--info_is-disabled_1 {
color: blue;
}
.simple {
color: red;
}
a {
color: yellow;
}
:export {
foo: bar;
my-btn-info_is-disabled: value;
}
.foo_bar {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/mode/entry.compiled.css | CSS | .__local__class {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/mode/entry.css | CSS | .class {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/mode/no-modules.compiled.css | CSS | .__local__class {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/mode/no-modules.css | CSS | .class {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/mode/relative.module.compiled.css | CSS | .__local__relative {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/mode/relative.module.css | CSS | .relative {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/mode/relative.modules.compiled.css | CSS | .__local__relative {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/mode/relative.modules.css | CSS | .relative {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/mode/style.modules.compiled.css | CSS | .__local__class {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/mode/style.modules.css | CSS | .class {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/namedExport/base/index.compiled.css | CSS | .__local__bar-baz {
color: red;
}
.bar {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/namedExport/base/index.css | CSS | :local(.bar-baz) {
color: red;
}
:global(.bar) {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/namedExport/broken/index.compiled.css | CSS | .__local__class {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/namedExport/broken/index.css | CSS | :local(.class) {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/namedExport/composes/composes.compiled.css | CSS | @value v_def from './values.css';
@value v_other-other from './values.css';
@value s-white from './values.css';
@value m-small from './values.css';
.__local__ghi {
color: v_def;
}
.__local__my-class {
color: s-white;
}
.__local__other {
display: m-small;
}
.__local__other-other {
width: v_def;
}
.__local__green... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/namedExport/composes/composes.css | CSS | @value v_def from './values.css';
@value v_other-other from './values.css';
@value s-white from './values.css';
@value m-small from './values.css';
.ghi {
color: v_def;
}
.my-class {
color: s-white;
}
.other {
display: m-small;
}
.other-other {
width: v_def;
}
.green {
color: v_other-other;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/namedExport/composes/values.compiled.css | CSS | @value v_def: red;
@value v_other-other: green;
@value s-white: white;
@value m-small: (min-width: 320px);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/namedExport/composes/values.css | CSS | @value v_def: red;
@value v_other-other: green;
@value s-white: white;
@value m-small: (min-width: 320px);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/namedExport/dashesOnly/index.compiled.css | CSS | .__local__foo_barBaz {
color: red;
}
.bar {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/namedExport/dashesOnly/index.css | CSS | :local(.foo_barBaz) {
color: red;
}
:global(.bar) {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/namedExport/nested/index.compiled.css | CSS | @value v-def from '../../composes/values.css';
@value v-primary: #BF4040;
@value s-black: black-selector;
@value m-large: (min-width: 960px);
.__local__header {
color: v-primary;
padding: 0 10px;
}
.__local__s-black {
color: black;
}
@media m-large and (max-width: 1024px) {
.__local__header {
color: v-def;
... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/namedExport/nested/index.css | CSS | @value v-def from '../../composes/values.css';
@value v-primary: #BF4040;
@value s-black: black-selector;
@value m-large: (min-width: 960px);
.header {
color: v-primary;
padding: 0 10px;
}
.s-black {
color: black;
}
@media m-large and (max-width: 1024px) {
.header {
color: v-def;
padding: 0 20px;
}... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/namedExport/template-2/index.compiled.css | CSS | .__local__header-baz {
color: red;
}
.__local__body {
color: coral;
}
.__local__footer {
color: blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/namedExport/template-2/index.css | CSS | :local(.header-baz) {
color: red;
}
:local(.body) {
color: coral;
}
:local(.footer) {
color: blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/namedExport/template/index.compiled.css | CSS | .__local__header-baz {
color: red;
}
.__local__body {
color: coral;
}
.__local__footer {
color: blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/namedExport/template/index.css | CSS | :local(.header-baz) {
color: red;
}
:local(.body) {
color: coral;
}
:local(.footer) {
color: blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/order/index.compiled.css | CSS | .__local__simple {
display: block;
}
.__local__simple-other {
display: inline;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/order/index.css | CSS | .simple {
display: block;
composes: order-1 from './order-1.css';
composes: order-2 from './order-2.css';
composes: order-1-1 from './order-1.css';
composes: order-2-2 from './order-2.css';
}
.simple-other {
display: inline;
composes: order-1 from './order-1.css';
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/order/order-1.compiled.css | CSS | .__local__order-1 {
color: red;
}
.__local__order-1-1 {
color: aliceblue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/order/order-1.css | CSS | .order-1 {
color: red;
}
.order-1-1 {
color: aliceblue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_modules/tests/fixture/modules/order/order-2.compiled.css | CSS | .__local__order-2 {
color: blue;
}
.__local__order-2-2 {
color: azure;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.