@cwcss/crosswind 0.1.4
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/PLUGIN.md +235 -0
- package/benchmark/framework-comparison.bench.ts +850 -0
- package/bin/cli.ts +365 -0
- package/bin/crosswind +0 -0
- package/bin/headwind +0 -0
- package/build.ts +8 -0
- package/crosswind.config.ts +9 -0
- package/example/comprehensive.html +70 -0
- package/example/index.html +21 -0
- package/example/output.css +236 -0
- package/examples/plugin/README.md +112 -0
- package/examples/plugin/build.ts +32 -0
- package/examples/plugin/src/index.html +34 -0
- package/examples/plugin/src/index.ts +7 -0
- package/headwind +2 -0
- package/package.json +92 -0
- package/src/build.ts +101 -0
- package/src/config.ts +529 -0
- package/src/generator.ts +2173 -0
- package/src/index.ts +10 -0
- package/src/parser.ts +1471 -0
- package/src/plugin.ts +118 -0
- package/src/preflight-forms.ts +229 -0
- package/src/preflight.ts +388 -0
- package/src/rules-advanced.ts +477 -0
- package/src/rules-effects.ts +457 -0
- package/src/rules-forms.ts +103 -0
- package/src/rules-grid.ts +241 -0
- package/src/rules-interactivity.ts +525 -0
- package/src/rules-layout.ts +385 -0
- package/src/rules-transforms.ts +412 -0
- package/src/rules-typography.ts +486 -0
- package/src/rules.ts +805 -0
- package/src/scanner.ts +84 -0
- package/src/transformer-compile-class.ts +275 -0
- package/src/types.ts +197 -0
- package/test/advanced-features.test.ts +911 -0
- package/test/arbitrary.test.ts +396 -0
- package/test/attributify.test.ts +592 -0
- package/test/bracket-syntax.test.ts +1133 -0
- package/test/build.test.ts +99 -0
- package/test/colors.test.ts +934 -0
- package/test/flexbox.test.ts +669 -0
- package/test/generator.test.ts +597 -0
- package/test/grid.test.ts +584 -0
- package/test/layout.test.ts +404 -0
- package/test/modifiers.test.ts +417 -0
- package/test/parser.test.ts +564 -0
- package/test/performance-regression.test.ts +376 -0
- package/test/performance.test.ts +568 -0
- package/test/plugin.test.ts +160 -0
- package/test/scanner.test.ts +94 -0
- package/test/sizing.test.ts +481 -0
- package/test/spacing.test.ts +394 -0
- package/test/transformer-compile-class.test.ts +287 -0
- package/test/transforms.test.ts +448 -0
- package/test/typography.test.ts +632 -0
- package/test/variants-form-states.test.ts +225 -0
- package/test/variants-group-peer.test.ts +66 -0
- package/test/variants-media.test.ts +213 -0
- package/test/variants-positional.test.ts +58 -0
- package/test/variants-pseudo-elements.test.ts +47 -0
- package/test/variants-state.test.ts +62 -0
- package/tsconfig.json +18 -0
package/src/index.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from './build'
|
|
2
|
+
export * from './config'
|
|
3
|
+
export * from './generator'
|
|
4
|
+
export * from './parser'
|
|
5
|
+
export * from './plugin'
|
|
6
|
+
export * from './preflight'
|
|
7
|
+
export * from './preflight-forms'
|
|
8
|
+
export * from './rules'
|
|
9
|
+
export * from './scanner'
|
|
10
|
+
export * from './types'
|