Skip to content

Commit 1c09f66

Browse files
committed
Update language server notices file
1 parent 56821f5 commit 1c09f66

File tree

1 file changed

+110
-38
lines changed

1 file changed

+110
-38
lines changed

packages/tailwindcss-language-server/ThirdPartyNotices.txt

Lines changed: 110 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,101 @@ This is necessary, as the default `aspectRatio` values are overwritten by this p
170170

171171
================================================================================
172172

173+
@tailwindcss/[email protected]
174+
175+
# @tailwindcss/container-queries
176+
177+
A plugin for Tailwind CSS v3.2+ that provides utilities for container queries.
178+
179+
## Installation
180+
181+
Install the plugin from npm:
182+
183+
```sh
184+
npm install @tailwindcss/container-queries
185+
```
186+
187+
Then add the plugin to your `tailwind.config.js` file:
188+
189+
```js
190+
// tailwind.config.js
191+
module.exports = {
192+
theme: {
193+
// ...
194+
},
195+
plugins: [
196+
require('@tailwindcss/container-queries'),
197+
// ...
198+
],
199+
}
200+
```
201+
202+
## Usage
203+
204+
```html
205+
<!-- Container queries without a specific container name -->
206+
<div class="@container">
207+
<!-- Container query with a size of `lg` defined in your tailwind.config.js file -->
208+
<div class="@lg:underline"></div>
209+
<div class="@[1024px]:underline"></div>
210+
</div>
211+
212+
<!-- Container queries that apply for a defined container name -->
213+
<div class="@container/sidebar">
214+
<div class="@lg/sidebar:underline"></div>
215+
<div class="@[1024px]/sidebar:underline"></div>
216+
</div>
217+
```
218+
219+
### Container types
220+
221+
| Class | css |
222+
| --------------------------- | ------------------------------------------------------- |
223+
| `@container` | `container-type: inline-size;` |
224+
| `@container/sidebar` | `container-type: inline-size; container-name: sidebar;` |
225+
| `@container-normal` | `container-type: normal;` |
226+
| `@container-normal/sidebar` | `container-type: inline-size; container-name: sidebar;` |
227+
228+
## Configuration
229+
230+
By default we ship with the following configured values:
231+
232+
| Name | Value |
233+
| ----- | ------- |
234+
| `xs` | `20rem` |
235+
| `sm` | `24rem` |
236+
| `md` | `28rem` |
237+
| `lg` | `32rem` |
238+
| `xl` | `36rem` |
239+
| `2xl` | `42rem` |
240+
| `3xl` | `48rem` |
241+
| `4xl` | `56rem` |
242+
| `5xl` | `64rem` |
243+
| `6xl` | `72rem` |
244+
| `7xl` | `80rem` |
245+
246+
You can configure which values are available for this plugin under the `containers` key in your `tailwind.config.js` file:
247+
248+
```js
249+
// tailwind.config.js
250+
module.exports = {
251+
theme: {
252+
extend: {
253+
containers: {
254+
xs: '20rem',
255+
sm: '24rem',
256+
md: '28rem',
257+
lg: '32rem',
258+
xl: '36rem',
259+
// etc...
260+
},
261+
},
262+
},
263+
}
264+
```
265+
266+
================================================================================
267+
173268
@tailwindcss/[email protected]
174269

175270
MIT License
@@ -248,20 +343,6 @@ SOFTWARE.
248343

249344
================================================================================
250345

251-
252-
253-
MIT License
254-
255-
Copyright (c) Sindre Sorhus <[email protected]> (https://sindresorhus.com)
256-
257-
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:
258-
259-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
260-
261-
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.
262-
263-
================================================================================
264-
265346
266347

267348
The MIT License (MIT)
@@ -426,29 +507,6 @@ THE SOFTWARE.
426507

427508
================================================================================
428509

429-
430-
431-
This software is released under the MIT license:
432-
433-
Permission is hereby granted, free of charge, to any person obtaining a copy of
434-
this software and associated documentation files (the "Software"), to deal in
435-
the Software without restriction, including without limitation the rights to
436-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
437-
the Software, and to permit persons to whom the Software is furnished to do so,
438-
subject to the following conditions:
439-
440-
The above copyright notice and this permission notice shall be included in all
441-
copies or substantial portions of the Software.
442-
443-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
444-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
445-
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
446-
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
447-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
448-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
449-
450-
================================================================================
451-
452510
453511

454512
# `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
621679

622680
================================================================================
623681

682+
683+
684+
MIT License
685+
686+
Copyright (c) Sindre Sorhus <[email protected]> (sindresorhus.com)
687+
688+
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:
689+
690+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
691+
692+
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.
693+
694+
================================================================================
695+
624696
625697

626698
MIT License
@@ -822,7 +894,7 @@ Copyright (c) 2011 Felix Geisendörfer ([email protected])
822894

823895
================================================================================
824896

825-
tailwindcss@3.2.4
897+
tailwindcss@3.3.0
826898

827899
MIT License
828900

0 commit comments

Comments
 (0)