@noya-app/noya-designsystem 0.0.11 → 0.0.13
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 +18 -17
- package/CHANGELOG.md +24 -0
- package/dist/index.js +1 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +10 -13
- package/src/components/ScrollArea.tsx +2 -7
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
|
|
2
|
+
[0m[2m[35m$[0m [2m[1mtsup src/index.tsx --format cjs,esm --dts --sourcemap[0m
|
|
3
|
+
[34mCLI[39m Building entry: src/index.tsx
|
|
4
|
+
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
5
|
+
[34mCLI[39m tsup v8.0.1
|
|
6
|
+
[34mCLI[39m Target: esnext
|
|
7
|
+
[34mCJS[39m Build start
|
|
8
|
+
[34mESM[39m Build start
|
|
9
|
+
[32mCJS[39m [1mdist/index.js [22m[32m184.20 KB[39m
|
|
10
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m366.85 KB[39m
|
|
11
|
+
[32mCJS[39m ⚡️ Build success in 138ms
|
|
12
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m167.94 KB[39m
|
|
13
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m365.94 KB[39m
|
|
14
|
+
[32mESM[39m ⚡️ Build success in 139ms
|
|
15
|
+
[34mDTS[39m Build start
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 6080ms
|
|
17
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m53.26 KB[39m
|
|
18
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m53.26 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @noya-app/noya-designsystem
|
|
2
2
|
|
|
3
|
+
## 0.0.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Bump versions
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @noya-app/noya-colorpicker@0.0.7
|
|
10
|
+
- @noya-app/noya-geometry@0.0.11
|
|
11
|
+
- @noya-app/noya-icons@0.0.4
|
|
12
|
+
- @noya-app/noya-keymap@0.0.6
|
|
13
|
+
- @noya-app/noya-utils@0.0.10
|
|
14
|
+
|
|
15
|
+
## 0.0.12
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Fix deps
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- @noya-app/noya-colorpicker@0.0.6
|
|
22
|
+
- @noya-app/noya-geometry@0.0.10
|
|
23
|
+
- @noya-app/noya-icons@0.0.3
|
|
24
|
+
- @noya-app/noya-keymap@0.0.5
|
|
25
|
+
- @noya-app/noya-utils@0.0.9
|
|
26
|
+
|
|
3
27
|
## 0.0.11
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -2695,10 +2695,6 @@ var RadixScrollArea = __toESM(require("@radix-ui/react-scroll-area"));
|
|
|
2695
2695
|
var import_react26 = __toESM(require("react"));
|
|
2696
2696
|
var import_styled_components22 = __toESM(require("styled-components"));
|
|
2697
2697
|
var SCROLLBAR_SIZE = 10;
|
|
2698
|
-
var StyledScrollArea = (0, import_styled_components22.default)(RadixScrollArea.Root)({
|
|
2699
|
-
width: "100%",
|
|
2700
|
-
height: "100%"
|
|
2701
|
-
});
|
|
2702
2698
|
var StyledViewport = (0, import_styled_components22.default)(RadixScrollArea.Viewport)({
|
|
2703
2699
|
width: "100%",
|
|
2704
2700
|
height: "100%",
|
|
@@ -2726,7 +2722,7 @@ var Container2 = import_styled_components22.default.div({
|
|
|
2726
2722
|
});
|
|
2727
2723
|
var ScrollArea = (0, import_react26.memo)(function ScrollArea2({ children }) {
|
|
2728
2724
|
const [scrollElementRef, setScrollElementRef] = (0, import_react26.useState)(null);
|
|
2729
|
-
return /* @__PURE__ */ import_react26.default.createElement(Container2, null, /* @__PURE__ */ import_react26.default.createElement(
|
|
2725
|
+
return /* @__PURE__ */ import_react26.default.createElement(Container2, null, /* @__PURE__ */ import_react26.default.createElement(RadixScrollArea.Root, { style: { width: "100%", height: "100%" } }, /* @__PURE__ */ import_react26.default.createElement(
|
|
2730
2726
|
StyledViewport,
|
|
2731
2727
|
{
|
|
2732
2728
|
ref: (0, import_react26.useCallback)(
|