@noya-app/noya-designsystem 0.1.27 → 0.1.29
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 +10 -9
- package/CHANGELOG.md +12 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +12695 -4133
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12763 -4180
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -3
- package/src/components/WorkspaceLayout.tsx +14 -3
- package/tsup.config.ts +12 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -2,16 +2,17 @@
|
|
|
2
2
|
[34mCLI[39m Building entry: src/index.tsx
|
|
3
3
|
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
4
4
|
[34mCLI[39m tsup v8.0.1
|
|
5
|
+
[34mCLI[39m Using tsup config: /Users/devinabbott/Projects/noya-core/packages/noya-designsystem/tsup.config.ts
|
|
5
6
|
[34mCLI[39m Target: esnext
|
|
6
7
|
[34mCJS[39m Build start
|
|
7
8
|
[34mESM[39m Build start
|
|
8
|
-
[
|
|
9
|
-
[
|
|
10
|
-
[
|
|
11
|
-
[
|
|
12
|
-
[
|
|
13
|
-
[
|
|
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
|
|
14
15
|
[34mDTS[39m Build start
|
|
15
|
-
[32mDTS[39m ⚡️ Build success in
|
|
16
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m63.
|
|
17
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[32m63.
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 10070ms
|
|
17
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m63.23 KB[39m
|
|
18
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m63.23 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @noya-app/noya-designsystem
|
|
2
2
|
|
|
3
|
+
## 0.1.29
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b022ce3: Improve standalone component usage. Don't save to localStorage by default
|
|
8
|
+
|
|
9
|
+
## 0.1.28
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 575e561: Fix react-virtualized import issue
|
|
14
|
+
|
|
3
15
|
## 0.1.27
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -1159,7 +1159,7 @@ type IWorkspaceLayout = {
|
|
|
1159
1159
|
toggleLeftSidebar: () => void;
|
|
1160
1160
|
toggleRightSidebar: () => void;
|
|
1161
1161
|
};
|
|
1162
|
-
declare const WorkspaceLayout: (props: Props$1
|
|
1162
|
+
declare const WorkspaceLayout: (props: Props$1) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
1163
1163
|
|
|
1164
1164
|
declare const DesignSystemThemeProvider: (props: {
|
|
1165
1165
|
children: ReactNode;
|
package/dist/index.d.ts
CHANGED
|
@@ -1159,7 +1159,7 @@ type IWorkspaceLayout = {
|
|
|
1159
1159
|
toggleLeftSidebar: () => void;
|
|
1160
1160
|
toggleRightSidebar: () => void;
|
|
1161
1161
|
};
|
|
1162
|
-
declare const WorkspaceLayout: (props: Props$1
|
|
1162
|
+
declare const WorkspaceLayout: (props: Props$1) => React__default.ReactElement<any, string | React__default.JSXElementConstructor<any>> | null;
|
|
1163
1163
|
|
|
1164
1164
|
declare const DesignSystemThemeProvider: (props: {
|
|
1165
1165
|
children: ReactNode;
|