@noya-app/noya-designsystem 0.1.29 → 0.1.31
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 +9 -9
- package/.turbo/turbo-lint.log +13 -0
- package/CHANGELOG.md +16 -0
- package/dist/index.d.mts +172 -200
- package/dist/index.d.ts +172 -200
- package/dist/index.js +304 -467
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +301 -468
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -3
- package/src/components/Button.tsx +5 -3
- package/src/components/GridView.tsx +37 -35
- package/src/components/InputField.tsx +118 -88
- package/src/components/ListView.tsx +1 -0
- package/src/components/RadioGroup.tsx +2 -0
- package/src/components/SelectMenu.tsx +69 -12
- package/src/components/Stack.tsx +10 -1
- package/src/components/Switch.tsx +1 -0
- package/src/components/WorkspaceLayout.tsx +29 -6
- package/src/index.tsx +1 -2
- package/tailwind.config.ts +283 -0
- package/tailwind.d.ts +11 -0
- package/tsconfig.json +4 -1
- package/src/components/ArrayController.tsx +0 -168
- package/src/components/Select.tsx +0 -183
package/.turbo/turbo-build.log
CHANGED
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
[34mCLI[39m Target: esnext
|
|
7
7
|
[34mCJS[39m Build start
|
|
8
8
|
[34mESM[39m Build start
|
|
9
|
-
[32mESM[39m [1mdist/index.mjs [22m[32m580.17 KB[39m
|
|
10
|
-
[32mESM[39m [1mdist/index.mjs.map [22m[32m1.06 MB[39m
|
|
11
|
-
[32mESM[39m ⚡️ Build success in 174ms
|
|
12
|
-
[32mCJS[39m [1mdist/index.js [22m[32m598.21 KB[39m
|
|
13
|
-
[32mCJS[39m [1mdist/index.js.map [22m[32m1.07 MB[39m
|
|
14
|
-
[32mCJS[39m ⚡️ Build success in 176ms
|
|
15
9
|
[34mDTS[39m Build start
|
|
16
|
-
[
|
|
17
|
-
[
|
|
18
|
-
[
|
|
10
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m575.19 KB[39m
|
|
11
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m1.05 MB[39m
|
|
12
|
+
[32mESM[39m ⚡️ Build success in 409ms
|
|
13
|
+
[32mCJS[39m [1mdist/index.js [22m[32m592.90 KB[39m
|
|
14
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m1.06 MB[39m
|
|
15
|
+
[32mCJS[39m ⚡️ Build success in 409ms
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 9539ms
|
|
17
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m57.96 KB[39m
|
|
18
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m57.96 KB[39m
|
package/.turbo/turbo-lint.log
CHANGED
|
@@ -1,2 +1,15 @@
|
|
|
1
1
|
[0m[2m[35m$[0m [2m[1meslint . --max-warnings 0[0m
|
|
2
|
+
=============
|
|
3
|
+
|
|
4
|
+
WARNING: You are currently running a version of TypeScript which is not officially supported by @typescript-eslint/typescript-estree.
|
|
5
|
+
|
|
6
|
+
You may find that it works just fine, or you may not.
|
|
7
|
+
|
|
8
|
+
SUPPORTED TYPESCRIPT VERSIONS: >=4.3.5 <5.4.0
|
|
9
|
+
|
|
10
|
+
YOUR TYPESCRIPT VERSION: 5.6.3
|
|
11
|
+
|
|
12
|
+
Please only submit bug reports when using the officially supported version.
|
|
13
|
+
|
|
14
|
+
=============
|
|
2
15
|
Pages directory cannot be found at /Users/devinabbott/Projects/noya-core/packages/noya-designsystem/pages or /Users/devinabbott/Projects/noya-core/packages/noya-designsystem/src/pages. If using a custom path, please configure with the `no-html-link-for-pages` rule in your eslint config file.
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @noya-app/noya-designsystem
|
|
2
2
|
|
|
3
|
+
## 0.1.31
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6d66bd3: Fixed padding and alignment for InputField and TextArea
|
|
8
|
+
- 6862974: Combined updates
|
|
9
|
+
- 8bdb7d3: Replaced Select with SelectMenu
|
|
10
|
+
- Updated dependencies [6862974]
|
|
11
|
+
- @noya-app/noya-geometry@0.1.5
|
|
12
|
+
|
|
13
|
+
## 0.1.30
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 94941e9: Added visual regression testing and JSDoc comments to design system component APIs
|
|
18
|
+
|
|
3
19
|
## 0.1.29
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|