Update language server notices file

master
Brad Cornes 2023-03-31 11:37:12 +01:00
parent 56821f5d69
commit 1c09f663f5
1 changed files with 110 additions and 38 deletions

View File

@ -170,6 +170,101 @@ This is necessary, as the default `aspectRatio` values are overwritten by this p
================================================================================ ================================================================================
@tailwindcss/container-queries@0.1.0
# @tailwindcss/container-queries
A plugin for Tailwind CSS v3.2+ that provides utilities for container queries.
## Installation
Install the plugin from npm:
```sh
npm install @tailwindcss/container-queries
```
Then add the plugin to your `tailwind.config.js` file:
```js
// tailwind.config.js
module.exports = {
theme: {
// ...
},
plugins: [
require('@tailwindcss/container-queries'),
// ...
],
}
```
## Usage
```html
<!-- Container queries without a specific container name -->
<div class="@container">
<!-- Container query with a size of `lg` defined in your tailwind.config.js file -->
<div class="@lg:underline"></div>
<div class="@[1024px]:underline"></div>
</div>
<!-- Container queries that apply for a defined container name -->
<div class="@container/sidebar">
<div class="@lg/sidebar:underline"></div>
<div class="@[1024px]/sidebar:underline"></div>
</div>
```
### Container types
| Class | css |
| --------------------------- | ------------------------------------------------------- |
| `@container` | `container-type: inline-size;` |
| `@container/sidebar` | `container-type: inline-size; container-name: sidebar;` |
| `@container-normal` | `container-type: normal;` |
| `@container-normal/sidebar` | `container-type: inline-size; container-name: sidebar;` |
## Configuration
By default we ship with the following configured values:
| Name | Value |
| ----- | ------- |
| `xs` | `20rem` |
| `sm` | `24rem` |
| `md` | `28rem` |
| `lg` | `32rem` |
| `xl` | `36rem` |
| `2xl` | `42rem` |
| `3xl` | `48rem` |
| `4xl` | `56rem` |
| `5xl` | `64rem` |
| `6xl` | `72rem` |
| `7xl` | `80rem` |
You can configure which values are available for this plugin under the `containers` key in your `tailwind.config.js` file:
```js
// tailwind.config.js
module.exports = {
theme: {
extend: {
containers: {
xs: '20rem',
sm: '24rem',
md: '28rem',
lg: '32rem',
xl: '36rem',
// etc...
},
},
},
}
```
================================================================================
@tailwindcss/forms@0.5.3 @tailwindcss/forms@0.5.3
MIT License MIT License
@ -248,20 +343,6 @@ SOFTWARE.
================================================================================ ================================================================================
builtin-modules@3.2.0
MIT License
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
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.
================================================================================
chokidar@3.5.1 chokidar@3.5.1
The MIT License (MIT) The MIT License (MIT)
@ -426,29 +507,6 @@ THE SOFTWARE.
================================================================================ ================================================================================
detective@5.2.0
This software is released under the MIT license:
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.
================================================================================
dlv@1.1.3 dlv@1.1.3
# `dlv(obj, keypath)` [![NPM](https://img.shields.io/npm/v/dlv.svg)](https://npmjs.com/package/dlv) [![Build](https://travis-ci.org/developit/dlv.svg?branch=master)](https://travis-ci.org/developit/dlv) # `dlv(obj, keypath)` [![NPM](https://img.shields.io/npm/v/dlv.svg)](https://npmjs.com/package/dlv) [![Build](https://travis-ci.org/developit/dlv.svg?branch=master)](https://travis-ci.org/developit/dlv)
@ -621,6 +679,20 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
================================================================================ ================================================================================
is-builtin-module@3.2.1
MIT License
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
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.
================================================================================
klona@2.0.4 klona@2.0.4
MIT License MIT License
@ -822,7 +894,7 @@ Copyright (c) 2011 Felix Geisendörfer (felix@debuggable.com)
================================================================================ ================================================================================
tailwindcss@3.2.4 tailwindcss@3.3.0
MIT License MIT License