@yummacss/intellisense 3.24.16 → 3.24.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +56 -56
  3. package/package.json +3 -3
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 Yumma CSS
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Yumma CSS
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,57 +1,57 @@
1
- # @yummacss/intellisense
2
-
3
- Shared editor intellisense for Yumma CSS.
4
-
5
- ## Use cases
6
-
7
- - Building editor extensions or IDE plugins
8
- - Adding Yumma CSS intellisense to a Monaco-based playground or editor
9
- - Extending support to new editors via the framework-agnostic core
10
-
11
- **For styling projects, use [yummacss](https://www.npmjs.com/package/yummacss) instead.**
12
-
13
- ## Usage
14
-
15
- ### Monaco
16
-
17
- ```typescript
18
- import {
19
- registerCompletionProvider,
20
- registerHoverProvider,
21
- registerColorProvider,
22
- registerConflictMarkers,
23
- registerCodeActionsProvider,
24
- registerSortAction,
25
- } from '@yummacss/intellisense/monaco';
26
-
27
- registerCompletionProvider(monaco);
28
- registerHoverProvider(monaco);
29
- registerColorProvider(monaco);
30
- registerCodeActionsProvider(monaco);
31
- registerConflictMarkers(monaco, editor);
32
- registerSortAction(monaco, editor);
33
- ```
34
-
35
- ### VS Code
36
-
37
- ```typescript
38
- import {
39
- CompletionProvider,
40
- HoverProvider,
41
- ColorProvider,
42
- ActionProvider,
43
- subscribeToDocChanges,
44
- registerSortCommand,
45
- } from '@yummacss/intellisense/vscode';
46
- ```
47
-
48
- ## Features
49
-
50
- - **Completions** - autocomplete for all Yumma CSS utility classes
51
- - **Hover** - CSS output, variant context, and docs link on hover
52
- - **Color decorations** - color swatches inline for color utilities
53
- - **Conflict detection** - warnings when utilities set the same CSS property
54
- - **Quick fixes** - one-click resolution for conflicting utilities
55
- - **Class sorting** - opinionated sort order based on property category
56
-
1
+ # @yummacss/intellisense
2
+
3
+ Shared editor intellisense for Yumma CSS.
4
+
5
+ ## Use cases
6
+
7
+ - Building editor extensions or IDE plugins
8
+ - Adding Yumma CSS intellisense to a Monaco-based playground or editor
9
+ - Extending support to new editors via the framework-agnostic core
10
+
11
+ **For styling projects, use [yummacss](https://www.npmjs.com/package/yummacss) instead.**
12
+
13
+ ## Usage
14
+
15
+ ### Monaco
16
+
17
+ ```typescript
18
+ import {
19
+ registerCompletionProvider,
20
+ registerHoverProvider,
21
+ registerColorProvider,
22
+ registerConflictMarkers,
23
+ registerCodeActionsProvider,
24
+ registerSortAction,
25
+ } from '@yummacss/intellisense/monaco';
26
+
27
+ registerCompletionProvider(monaco);
28
+ registerHoverProvider(monaco);
29
+ registerColorProvider(monaco);
30
+ registerCodeActionsProvider(monaco);
31
+ registerConflictMarkers(monaco, editor);
32
+ registerSortAction(monaco, editor);
33
+ ```
34
+
35
+ ### VS Code
36
+
37
+ ```typescript
38
+ import {
39
+ CompletionProvider,
40
+ HoverProvider,
41
+ ColorProvider,
42
+ ActionProvider,
43
+ subscribeToDocChanges,
44
+ registerSortCommand,
45
+ } from '@yummacss/intellisense/vscode';
46
+ ```
47
+
48
+ ## Features
49
+
50
+ - **Completions** - autocomplete for all Yumma CSS utility classes
51
+ - **Hover** - CSS output, variant context, and docs link on hover
52
+ - **Color decorations** - color swatches inline for color utilities
53
+ - **Conflict detection** - warnings when utilities set the same CSS property
54
+ - **Quick fixes** - one-click resolution for conflicting utilities
55
+ - **Class sorting** - opinionated sort order based on property category
56
+
57
57
  Learn more at [yummacss.com](https://yummacss.com)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yummacss/intellisense",
3
- "version": "3.24.16",
3
+ "version": "3.24.17",
4
4
  "description": "Shared Intellisense for Yumma CSS",
5
5
  "keywords": [
6
6
  "css-framework",
@@ -36,7 +36,7 @@
36
36
  "dist"
37
37
  ],
38
38
  "dependencies": {
39
- "@yummacss/core": "3.24.16"
39
+ "@yummacss/core": "3.24.17"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@types/tinycolor2": "^1.4.6",
@@ -45,7 +45,7 @@
45
45
  },
46
46
  "publishConfig": {
47
47
  "access": "public",
48
- "provenance": true
48
+ "provenance": false
49
49
  },
50
50
  "scripts": {
51
51
  "build": "tsdown",