From 1c09f663f5406a33a04a6e54fa115620eace1f7c Mon Sep 17 00:00:00 2001 From: Brad Cornes Date: Fri, 31 Mar 2023 11:37:12 +0100 Subject: [PATCH] Update language server notices file --- .../ThirdPartyNotices.txt | 148 +++++++++++++----- 1 file changed, 110 insertions(+), 38 deletions(-) diff --git a/packages/tailwindcss-language-server/ThirdPartyNotices.txt b/packages/tailwindcss-language-server/ThirdPartyNotices.txt index 41bcbce..d6bc3fb 100644 --- a/packages/tailwindcss-language-server/ThirdPartyNotices.txt +++ b/packages/tailwindcss-language-server/ThirdPartyNotices.txt @@ -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 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 MIT License @@ -248,20 +343,6 @@ SOFTWARE. ================================================================================ -builtin-modules@3.2.0 - -MIT License - -Copyright (c) Sindre Sorhus (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 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(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.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 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