tgui-core 1.6.1 → 1.7.0

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 (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -41,7 +41,7 @@ You have two options for importing styles:
41
41
  To import all styles at once, add the following line to your main Sass file:
42
42
 
43
43
  ```scss
44
- @use "pkg:tgui-core/styles";
44
+ @use "~tgui-core/styles";
45
45
  ```
46
46
 
47
47
  ### 2. Importing Individual Styles
@@ -49,9 +49,9 @@ To import all styles at once, add the following line to your main Sass file:
49
49
  To import individual styles, add any of the exported styles to your main Sass file:
50
50
 
51
51
  ```scss
52
- @use "pkg:tgui-core/styles/components/Button";
53
- @use "pkg:tgui-core/styles/components/Dialog";
54
- @use "pkg:tgui-core/styles/components/NoticeBox";
52
+ @use "~tgui-core/styles/components/Button.scss";
53
+ @use "~tgui-core/styles/components/Dialog.scss";
54
+ @use "~tgui-core/styles/components/NoticeBox.scss";
55
55
  ```
56
56
 
57
57
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tgui-core",
3
- "version": "1.6.1",
3
+ "version": "1.7.0",
4
4
  "description": "TGUI core component library",
5
5
  "keywords": ["TGUI", "library", "typescript"],
6
6
  "files": ["dist"],
@@ -17,7 +17,7 @@
17
17
  "default": "./lib/styles/main.scss",
18
18
  "sass": "./lib/styles/main.scss"
19
19
  },
20
- "./styles/components/*": {
20
+ "./styles/components/*.scss": {
21
21
  "sass": "./lib/styles/components/*.scss"
22
22
  }
23
23
  },