mirror of
https://github.com/idrainformatica/PecFlow.git
synced 2026-06-17 13:15:42 +02:00
fase 5
This commit is contained in:
+21
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2021 Dany Castillo
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
+38
@@ -0,0 +1,38 @@
|
||||
<!-- This file is autogenerated. If you want to change this content, please do the changes in `./docs/README.md` instead. -->
|
||||
|
||||
<div align="center">
|
||||
<br />
|
||||
<a href="https://github.com/dcastil/tailwind-merge">
|
||||
<img src="https://github.com/dcastil/tailwind-merge/raw/v2.6.1/assets/logo.svg" alt="tailwind-merge" height="150px" />
|
||||
</a>
|
||||
</div>
|
||||
|
||||
# tailwind-merge
|
||||
|
||||
Utility function to efficiently merge [Tailwind CSS](https://tailwindcss.com) classes in JS without style conflicts.
|
||||
|
||||
```ts
|
||||
import { twMerge } from 'tailwind-merge'
|
||||
|
||||
twMerge('px-2 py-1 bg-red hover:bg-dark-red', 'p-3 bg-[#B91C1C]')
|
||||
// → 'hover:bg-dark-red p-3 bg-[#B91C1C]'
|
||||
```
|
||||
|
||||
- Supports Tailwind v3.0 up to v3.4 (if you use Tailwind v2, use [tailwind-merge v0.9.0](https://github.com/dcastil/tailwind-merge/tree/v0.9.0))
|
||||
- Works in all modern browsers and maintained Node versions
|
||||
- Fully typed
|
||||
- [Check bundle size on Bundlephobia](https://bundlephobia.com/package/tailwind-merge)
|
||||
|
||||
## Get started
|
||||
|
||||
- [What is it for](https://github.com/dcastil/tailwind-merge/tree/v2.6.1/docs/what-is-it-for.md)
|
||||
- [When and how to use it](https://github.com/dcastil/tailwind-merge/tree/v2.6.1/docs/when-and-how-to-use-it.md)
|
||||
- [Features](https://github.com/dcastil/tailwind-merge/tree/v2.6.1/docs/features.md)
|
||||
- [Limitations](https://github.com/dcastil/tailwind-merge/tree/v2.6.1/docs/limitations.md)
|
||||
- [Configuration](https://github.com/dcastil/tailwind-merge/tree/v2.6.1/docs/configuration.md)
|
||||
- [Recipes](https://github.com/dcastil/tailwind-merge/tree/v2.6.1/docs/recipes.md)
|
||||
- [API reference](https://github.com/dcastil/tailwind-merge/tree/v2.6.1/docs/api-reference.md)
|
||||
- [Writing plugins](https://github.com/dcastil/tailwind-merge/tree/v2.6.1/docs/writing-plugins.md)
|
||||
- [Versioning](https://github.com/dcastil/tailwind-merge/tree/v2.6.1/docs/versioning.md)
|
||||
- [Contributing](https://github.com/dcastil/tailwind-merge/tree/v2.6.1/docs/contributing.md)
|
||||
- [Similar packages](https://github.com/dcastil/tailwind-merge/tree/v2.6.1/docs/similar-packages.md)
|
||||
+91
@@ -0,0 +1,91 @@
|
||||
{
|
||||
"name": "tailwind-merge",
|
||||
"version": "2.6.1",
|
||||
"description": "Merge Tailwind CSS classes without style conflicts",
|
||||
"keywords": [
|
||||
"tailwindcss",
|
||||
"tailwind",
|
||||
"css",
|
||||
"classes",
|
||||
"className",
|
||||
"classList",
|
||||
"merge",
|
||||
"conflict",
|
||||
"override"
|
||||
],
|
||||
"homepage": "https://github.com/dcastil/tailwind-merge",
|
||||
"bugs": {
|
||||
"url": "https://github.com/dcastil/tailwind-merge/issues"
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
"url": "https://github.com/sponsors/dcastil"
|
||||
},
|
||||
"license": "MIT",
|
||||
"author": "Dany Castillo",
|
||||
"files": [
|
||||
"dist",
|
||||
"src"
|
||||
],
|
||||
"source": "src/index.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist/types.d.ts",
|
||||
"require": "./dist/bundle-cjs.js",
|
||||
"import": "./dist/bundle-mjs.mjs",
|
||||
"default": "./dist/bundle-mjs.mjs"
|
||||
},
|
||||
"./es5": {
|
||||
"types": "./dist/types.d.ts",
|
||||
"require": "./dist/es5/bundle-cjs.js",
|
||||
"import": "./dist/es5/bundle-mjs.mjs",
|
||||
"default": "./dist/es5/bundle-mjs.mjs"
|
||||
}
|
||||
},
|
||||
"main": "./dist/bundle-cjs.js",
|
||||
"types": "./dist/types.d.ts",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/dcastil/tailwind-merge.git"
|
||||
},
|
||||
"sideEffects": false,
|
||||
"scripts": {
|
||||
"build": "rollup --config scripts/rollup.config.mjs",
|
||||
"bench": "vitest bench --config scripts/vitest.config.mts",
|
||||
"test": "vitest --config scripts/vitest.config.mts --coverage",
|
||||
"test:watch": "vitest --config scripts/vitest.config.mts",
|
||||
"test:exports": "node scripts/test-built-package-exports.cjs && node scripts/test-built-package-exports.mjs",
|
||||
"lint": "eslint --max-warnings 0 '**'",
|
||||
"preversion": "if [ -n \"$DANYS_MACHINE\" ]; then git checkout main && git pull; fi",
|
||||
"version": "zx scripts/update-readme.mjs",
|
||||
"postversion": "if [ -n \"$DANYS_MACHINE\" ]; then git push --follow-tags && open https://github.com/dcastil/tailwind-merge/releases; fi"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.26.0",
|
||||
"@babel/preset-env": "^7.26.0",
|
||||
"@codspeed/vitest-plugin": "^4.0.0",
|
||||
"@rollup/plugin-babel": "^6.0.4",
|
||||
"@rollup/plugin-node-resolve": "^16.0.0",
|
||||
"@rollup/plugin-typescript": "^12.1.2",
|
||||
"@vitest/coverage-v8": "^2.1.8",
|
||||
"@vitest/eslint-plugin": "^1.1.22",
|
||||
"babel-plugin-annotate-pure-calls": "^0.4.0",
|
||||
"babel-plugin-polyfill-regenerator": "^0.6.3",
|
||||
"eslint": "^9.17.0",
|
||||
"eslint-plugin-import": "^2.31.0",
|
||||
"globby": "^11.1.0",
|
||||
"prettier": "^3.4.2",
|
||||
"rollup": "^4.29.1",
|
||||
"rollup-plugin-delete": "^2.1.0",
|
||||
"rollup-plugin-dts": "^6.1.1",
|
||||
"tslib": "^2.8.1",
|
||||
"typescript": "^5.7.2",
|
||||
"typescript-eslint": "^8.19.0",
|
||||
"vitest": "^2.1.8",
|
||||
"zx": "^8.3.0"
|
||||
},
|
||||
"publishConfig": {
|
||||
"provenance": true
|
||||
}
|
||||
}
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
export { createTailwindMerge } from './lib/create-tailwind-merge'
|
||||
export { getDefaultConfig } from './lib/default-config'
|
||||
export { extendTailwindMerge } from './lib/extend-tailwind-merge'
|
||||
export { fromTheme } from './lib/from-theme'
|
||||
export { mergeConfigs } from './lib/merge-configs'
|
||||
export { twJoin, type ClassNameValue } from './lib/tw-join'
|
||||
export { twMerge } from './lib/tw-merge'
|
||||
export {
|
||||
type ClassValidator,
|
||||
type Config,
|
||||
type ConfigExtension,
|
||||
type DefaultClassGroupIds,
|
||||
type DefaultThemeGroupIds,
|
||||
type ExperimentalParseClassNameParam,
|
||||
type ExperimentalParsedClassName,
|
||||
} from './lib/types'
|
||||
export * as validators from './lib/validators'
|
||||
Reference in New Issue
Block a user