@noya-app/noya-designsystem 0.1.79 → 0.1.80
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.
- package/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +6 -0
- package/package.json +18 -10
package/.turbo/turbo-build.log
CHANGED
|
@@ -12,14 +12,14 @@ DTS Build start
|
|
|
12
12
|
[32mCJS[39m [1mdist/index.js [22m[32m1.40 MB[39m
|
|
13
13
|
[32mCJS[39m [1mdist/emojis.js.map [22m[32m194.00 B[39m
|
|
14
14
|
[32mCJS[39m [1mdist/index.js.map [22m[32m2.73 MB[39m
|
|
15
|
-
[32mCJS[39m ⚡️ Build success in
|
|
15
|
+
[32mCJS[39m ⚡️ Build success in 217ms
|
|
16
16
|
[32mESM[39m [1mdist/emojis.mjs [22m[32m148.00 B[39m
|
|
17
17
|
[32mESM[39m [1mdist/chunk-FJ6ZGZIA.mjs [22m[32m1.87 KB[39m
|
|
18
18
|
[32mESM[39m [1mdist/index.mjs [22m[32m1.37 MB[39m
|
|
19
19
|
[32mESM[39m [1mdist/emojis.mjs.map [22m[32m156.00 B[39m
|
|
20
20
|
[32mESM[39m [1mdist/chunk-FJ6ZGZIA.mjs.map [22m[32m71.00 B[39m
|
|
21
21
|
[32mESM[39m [1mdist/index.mjs.map [22m[32m2.73 MB[39m
|
|
22
|
-
[32mESM[39m ⚡️ Build success in
|
|
22
|
+
[32mESM[39m ⚡️ Build success in 238ms
|
|
23
23
|
Browserslist: caniuse-lite is outdated. Please run:
|
|
24
24
|
npx update-browserslist-db@latest
|
|
25
25
|
Why you should do it regularly: https://github.com/browserslist/update-db#readme
|
|
@@ -29,9 +29,9 @@ Browserslist: browsers data (caniuse-lite) is 9 months old. Please run:
|
|
|
29
29
|
|
|
30
30
|
Rebuilding...
|
|
31
31
|
|
|
32
|
-
Done in
|
|
32
|
+
Done in 557ms.
|
|
33
33
|
|
|
34
|
-
DTS ⚡️ Build success in
|
|
34
|
+
DTS ⚡️ Build success in 4974ms
|
|
35
35
|
DTS dist/emojis.d.ts 43.00 B
|
|
36
36
|
DTS dist/index.d.ts 125.02 KB
|
|
37
37
|
DTS dist/emojis.d.mts 43.00 B
|
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@noya-app/noya-designsystem",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.80",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"style": "./dist/index.css",
|
|
8
8
|
"exports": {
|
|
9
|
-
".":
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.mjs",
|
|
11
|
+
"require": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts"
|
|
13
|
+
},
|
|
10
14
|
"./index.css": "./dist/index.css",
|
|
11
|
-
"./emojis":
|
|
15
|
+
"./emojis": {
|
|
16
|
+
"import": "./dist/emojis.mjs",
|
|
17
|
+
"require": "./dist/emojis.js",
|
|
18
|
+
"types": "./dist/emojis.d.ts"
|
|
19
|
+
}
|
|
12
20
|
},
|
|
13
21
|
"scripts": {
|
|
14
22
|
"build:css": "tailwindcss -i ./src/index.css -o ./dist/index.css --postcss",
|
|
@@ -20,12 +28,12 @@
|
|
|
20
28
|
"@base-ui/react": "1.0.0",
|
|
21
29
|
"@dnd-kit/core": "6.3.1",
|
|
22
30
|
"@dnd-kit/sortable": "10.0.0",
|
|
23
|
-
"@noya-app/noya-colorpicker": "
|
|
24
|
-
"@noya-app/noya-utils": "
|
|
25
|
-
"@noya-app/noya-geometry": "
|
|
26
|
-
"@noya-app/noya-icons": "
|
|
27
|
-
"@noya-app/noya-keymap": "
|
|
28
|
-
"@noya-app/noya-tailwind-config": "
|
|
31
|
+
"@noya-app/noya-colorpicker": "0.1.33",
|
|
32
|
+
"@noya-app/noya-utils": "0.1.9",
|
|
33
|
+
"@noya-app/noya-geometry": "0.1.17",
|
|
34
|
+
"@noya-app/noya-icons": "0.1.18",
|
|
35
|
+
"@noya-app/noya-keymap": "0.1.4",
|
|
36
|
+
"@noya-app/noya-tailwind-config": "0.1.10",
|
|
29
37
|
"@radix-ui/react-compose-refs": "^1.0.0",
|
|
30
38
|
"@radix-ui/primitive": "^1.0.1",
|
|
31
39
|
"@radix-ui/react-utils": "^0.0.5",
|
|
@@ -50,4 +58,4 @@
|
|
|
50
58
|
"react": "*",
|
|
51
59
|
"react-dom": "*"
|
|
52
60
|
}
|
|
53
|
-
}
|
|
61
|
+
}
|