Home

tailwind-ctp-intellisense @master - refs - log -
-
https://git.jolheiser.com/tailwind-ctp-intellisense.git
Tailwind intellisense + Catppuccin
tree log patch
Update language server notices file
Brad Cornes <hello@bradley.dev>
1 year ago
1 changed files, 110 additions(+), 39 deletions(-)
M packages/tailwindcss-language-server/ThirdPartyNotices.txt -> packages/tailwindcss-language-server/ThirdPartyNotices.txt
diff --git a/packages/tailwindcss-language-server/ThirdPartyNotices.txt b/packages/tailwindcss-language-server/ThirdPartyNotices.txt
index 41bcbcebc1fdabb61bd24f17a43d57ba506c2731..d6bc3fb992c12a0047c7199507b0dfe33a76907c 100644
--- a/packages/tailwindcss-language-server/ThirdPartyNotices.txt
+++ b/packages/tailwindcss-language-server/ThirdPartyNotices.txt
@@ -169,6 +170,101 @@ This is necessary, as the default `aspectRatio` values are overwritten by this plugin's values.
 
 ================================================================================
 
+@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
 
 MIT License
@@ -244,20 +340,6 @@ 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.
-
-================================================================================
-
-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.
 
 ================================================================================
 
@@ -426,30 +508,6 @@
 ================================================================================
 
 @parcel/watcher@2.0.3
-## Configuration
-
-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.
-
-================================================================================
-
-@parcel/watcher@2.0.3
 While it's technically possible to use the new native `aspect-ratio` utilities as well as this plugin in the same project, it doesn't really make a lot of sense to do so. If you're able to use the new native aspect-ratio utilities, just use them instead of this plugin, as they are a lot simpler and work much better.
 
 # `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)
@@ -613,6 +671,20 @@
 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.
+
+================================================================================
+
+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:
 
@@ -823,8 +895,8 @@  THE SOFTWARE.
 
 ================================================================================
 
-// tailwind.config.js
 Copyright (c) 2017-present Devon Govett
+| `aspect-w-14` | `aspect-h-14` |
 
 MIT License