@noya-app/noya-designsystem 0.1.11 → 0.1.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 +7 -7
- package/CHANGELOG.md +16 -0
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/components/Avatar.tsx +5 -5
- package/src/contexts/DesignSystemConfiguration.tsx +5 -5
package/.turbo/turbo-build.log
CHANGED
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
[34mCLI[39m Target: esnext
|
|
6
6
|
[34mCJS[39m Build start
|
|
7
7
|
[34mESM[39m Build start
|
|
8
|
-
[
|
|
9
|
-
[
|
|
10
|
-
[
|
|
11
|
-
[
|
|
12
|
-
[
|
|
13
|
-
[
|
|
8
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m196.20 KB[39m
|
|
9
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m431.85 KB[39m
|
|
10
|
+
[32mESM[39m ⚡️ Build success in 159ms
|
|
11
|
+
[32mCJS[39m [1mdist/index.js [22m[32m213.14 KB[39m
|
|
12
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m432.02 KB[39m
|
|
13
|
+
[32mCJS[39m ⚡️ Build success in 160ms
|
|
14
14
|
[34mDTS[39m Build start
|
|
15
|
-
[32mDTS[39m ⚡️ Build success in
|
|
15
|
+
[32mDTS[39m ⚡️ Build success in 7285ms
|
|
16
16
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m56.28 KB[39m
|
|
17
17
|
[32mDTS[39m [1mdist/index.d.mts [22m[32m56.28 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @noya-app/noya-designsystem
|
|
2
2
|
|
|
3
|
+
## 0.1.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 35b2424: Add ephemeral data and observable
|
|
8
|
+
- Updated dependencies [1b63535]
|
|
9
|
+
- @noya-app/noya-utils@0.1.1
|
|
10
|
+
- @noya-app/noya-colorpicker@0.1.8
|
|
11
|
+
- @noya-app/noya-geometry@0.1.3
|
|
12
|
+
|
|
13
|
+
## 0.1.12
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 4661b34: Reorder providers
|
|
18
|
+
|
|
3
19
|
## 0.1.11
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -257,9 +257,7 @@ var AvatarRoot = (0, import_styled_components3.default)(AvatarPrimitive.Root)(({
|
|
|
257
257
|
width: size2,
|
|
258
258
|
height: size2,
|
|
259
259
|
borderRadius: "100%",
|
|
260
|
-
backgroundColor: theme.colors.
|
|
261
|
-
outline: `1px solid ${theme.colors.secondary}`,
|
|
262
|
-
outlineOffset: "-1px",
|
|
260
|
+
backgroundColor: theme.colors.inputBackground,
|
|
263
261
|
...overflow && {
|
|
264
262
|
margin: `-${overflow}px`
|
|
265
263
|
},
|
|
@@ -300,8 +298,10 @@ var AvatarStackItemWrapper = import_styled_components3.default.div(({ size: size
|
|
|
300
298
|
width: size2,
|
|
301
299
|
height: size2,
|
|
302
300
|
marginLeft: "-8px",
|
|
303
|
-
outline: `2px solid ${theme.colors.sidebar.background}`,
|
|
304
|
-
borderRadius: "50%"
|
|
301
|
+
// outline: `2px solid ${theme.colors.sidebar.background}`,
|
|
302
|
+
borderRadius: "50%",
|
|
303
|
+
clipPath: `circle(50%)`,
|
|
304
|
+
overflow: "hidden"
|
|
305
305
|
}));
|
|
306
306
|
function AvatarStack({
|
|
307
307
|
size: size2 = 19,
|
|
@@ -2170,7 +2170,7 @@ var DesignSystemConfigurationProvider = (0, import_react34.memo)(
|
|
|
2170
2170
|
platform
|
|
2171
2171
|
}) {
|
|
2172
2172
|
const contextValue = (0, import_react34.useMemo)(() => ({ platform }), [platform]);
|
|
2173
|
-
return /* @__PURE__ */ import_react34.default.createElement(DesignSystemConfigurationContext.Provider, { value: contextValue }, /* @__PURE__ */ import_react34.default.createElement(import_styled_components15.ThemeProvider, { theme }, /* @__PURE__ */ import_react34.default.createElement(
|
|
2173
|
+
return /* @__PURE__ */ import_react34.default.createElement(DesignSystemConfigurationContext.Provider, { value: contextValue }, /* @__PURE__ */ import_react34.default.createElement(import_styled_components15.ThemeProvider, { theme }, /* @__PURE__ */ import_react34.default.createElement(DialogProvider, null, /* @__PURE__ */ import_react34.default.createElement(ToastProvider, null, /* @__PURE__ */ import_react34.default.createElement(FloatingWindowProvider, null, children)))));
|
|
2174
2174
|
}
|
|
2175
2175
|
);
|
|
2176
2176
|
function useDesignSystemConfiguration() {
|