@tailwindcss/language-server 0.0.12 → 0.0.13
Sign up to get free protection for your applications and to get access to all the features.
- package/ThirdPartyNotices.txt +110 -38
- package/bin/tailwindcss-language-server +2497 -258
- package/package.json +4 -5
package/ThirdPartyNotices.txt
CHANGED
@@ -170,6 +170,101 @@ This is necessary, as the default `aspectRatio` values are overwritten by this p
|
|
170
170
|
|
171
171
|
================================================================================
|
172
172
|
|
173
|
+
@tailwindcss/container-queries@0.1.0
|
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
|
+
|
173
268
|
@tailwindcss/forms@0.5.3
|
174
269
|
|
175
270
|
MIT License
|
@@ -248,20 +343,6 @@ SOFTWARE.
|
|
248
343
|
|
249
344
|
================================================================================
|
250
345
|
|
251
|
-
builtin-modules@3.2.0
|
252
|
-
|
253
|
-
MIT License
|
254
|
-
|
255
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (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
|
-
|
265
346
|
chokidar@3.5.1
|
266
347
|
|
267
348
|
The MIT License (MIT)
|
@@ -426,29 +507,6 @@ THE SOFTWARE.
|
|
426
507
|
|
427
508
|
================================================================================
|
428
509
|
|
429
|
-
detective@5.2.0
|
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
|
-
|
452
510
|
dlv@1.1.3
|
453
511
|
|
454
512
|
# `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
|
|
621
679
|
|
622
680
|
================================================================================
|
623
681
|
|
682
|
+
is-builtin-module@3.2.1
|
683
|
+
|
684
|
+
MIT License
|
685
|
+
|
686
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (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
|
+
|
624
696
|
klona@2.0.4
|
625
697
|
|
626
698
|
MIT License
|
@@ -822,7 +894,7 @@ Copyright (c) 2011 Felix Geisendörfer (felix@debuggable.com)
|
|
822
894
|
|
823
895
|
================================================================================
|
824
896
|
|
825
|
-
tailwindcss@3.
|
897
|
+
tailwindcss@3.3.0
|
826
898
|
|
827
899
|
MIT License
|
828
900
|
|