@upstart.gg/style-system 0.0.135 → 0.0.137

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @upstart.gg/style-system@0.0.135 build /home/runner/work/upstart/upstart/packages/style-system
2
+ > @upstart.gg/style-system@0.0.137 build /home/runner/work/upstart/upstart/packages/style-system
3
3
  > tsup
4
4
 
5
5
  CLI Building entry: src/colors.ts, src/system.ts, src/twind-config.ts, src/twind-node.ts, src/twind-ssr.ts, src/twind.ts
@@ -12,22 +12,22 @@
12
12
  ESM dist/colors.js 115.00 B
13
13
  ESM dist/system.js 321.00 B
14
14
  ESM dist/twind-node.js 169.00 B
15
- ESM dist/twind-config.js 178.00 B
16
15
  ESM dist/twind-ssr.js 167.00 B
17
16
  ESM dist/twind.js 1.88 KB
18
- ESM dist/chunk-JA3MEJAB.js 9.82 KB
19
17
  ESM dist/chunk-MFGU3BAA.js 13.74 KB
18
+ ESM dist/chunk-JA3MEJAB.js 9.82 KB
19
+ ESM dist/twind-config.js 178.00 B
20
20
  ESM dist/colors.js.map 71.00 B
21
21
  ESM dist/system.js.map 423.00 B
22
- ESM dist/twind-config.js.map 71.00 B
23
22
  ESM dist/twind-node.js.map 207.00 B
24
- ESM dist/twind-ssr.js.map 206.00 B
25
23
  ESM dist/twind.js.map 3.02 KB
26
- ESM dist/chunk-JA3MEJAB.js.map 15.19 KB
24
+ ESM dist/twind-ssr.js.map 206.00 B
27
25
  ESM dist/chunk-MFGU3BAA.js.map 23.05 KB
28
- ESM ⚡️ Build success in 27ms
26
+ ESM dist/chunk-JA3MEJAB.js.map 15.19 KB
27
+ ESM dist/twind-config.js.map 71.00 B
28
+ ESM ⚡️ Build success in 19ms
29
29
  DTS Build start
30
- DTS ⚡️ Build success in 3723ms
30
+ DTS ⚡️ Build success in 3048ms
31
31
  DTS dist/system.d.ts 361.00 B
32
32
  DTS dist/colors.d.ts 5.90 KB
33
33
  DTS dist/twind-config.d.ts 532.00 B
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @upstart.gg/style-system
2
2
 
3
+ ## 0.0.137
4
+
5
+ ### Patch Changes
6
+
7
+ - [#475](https://github.com/upstart-gg/upstart/pull/475) [`95512c4`](https://github.com/upstart-gg/upstart/commit/95512c4c999a67d1268242c1072a42f09960012b) Thanks [@mattallty](https://github.com/mattallty)! - More improvements
8
+
9
+ ## 0.0.136
10
+
11
+ ### Patch Changes
12
+
13
+ - [#470](https://github.com/upstart-gg/upstart/pull/470) [`a5a7031`](https://github.com/upstart-gg/upstart/commit/a5a70316551721c22caf9cf119374565d50ba8d9) Thanks [@mattallty](https://github.com/mattallty)! - More changes and fixes
14
+
3
15
  ## 0.0.135
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@upstart.gg/style-system",
3
- "version": "0.0.135",
3
+ "version": "0.0.137",
4
4
  "description": "Base tailwindcss setup with some extra plugins as well as colors and editor styles",
5
5
  "type": "module",
6
6
  "exports": {
@@ -12,7 +12,18 @@
12
12
  "import": "./dist/*.js"
13
13
  }
14
14
  },
15
- "keywords": [],
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/upstart-gg/upstart.git",
18
+ "directory": "packages/style-system"
19
+ },
20
+ "keywords": [
21
+ "twind",
22
+ "css",
23
+ "react",
24
+ "design-system",
25
+ "upstart"
26
+ ],
16
27
  "author": "Matthias Etienne",
17
28
  "license": "AGPL-3.0-only",
18
29
  "dependencies": {
package/src/editor.css CHANGED
@@ -5,7 +5,7 @@ body {
5
5
  font-family: "system-ui", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
6
6
  /* gray background */
7
7
  background-color: #f5f5f5;
8
- overscroll-behavior: none;
8
+ overscroll-behavior: none !important;
9
9
  scrollbar-width: none;
10
10
  }
11
11