@noya-app/noya-designsystem 0.1.91 → 0.1.92

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.
@@ -11,14 +11,14 @@ $ tsup
11
11
  CJS dist/index.js 1.42 MB
12
12
  CJS dist/emojis.js.map 194.00 B
13
13
  CJS dist/index.js.map 2.76 MB
14
- CJS ⚡️ Build success in 9431ms
14
+ CJS ⚡️ Build success in 7996ms
15
15
  ESM dist/emojis.mjs 300.00 B
16
16
  ESM dist/chunk-L6E2LZOL.mjs 2.02 KB
17
17
  ESM dist/index.mjs 1.38 MB
18
- ESM dist/emojis.mjs.map 157.00 B
19
18
  ESM dist/chunk-L6E2LZOL.mjs.map 71.00 B
19
+ ESM dist/emojis.mjs.map 157.00 B
20
20
  ESM dist/index.mjs.map 2.76 MB
21
- ESM ⚡️ Build success in 9431ms
21
+ ESM ⚡️ Build success in 7998ms
22
22
  Browserslist: caniuse-lite is outdated. Please run:
23
23
  npx update-browserslist-db@latest
24
24
  Why you should do it regularly: https://github.com/browserslist/update-db#readme
@@ -28,10 +28,10 @@ Browserslist: browsers data (caniuse-lite) is 16 months old. Please run:
28
28
 
29
29
  Rebuilding...
30
30
 
31
- Done in 13685ms.
31
+ Done in 14052ms.
32
32
 
33
- DTS ⚡️ Build success in 88495ms
33
+ DTS ⚡️ Build success in 85349ms
34
34
  DTS dist/emojis.d.ts 43.00 B
35
- DTS dist/index.d.ts 130.07 KB
35
+ DTS dist/index.d.ts 130.10 KB
36
36
  DTS dist/emojis.d.mts 43.00 B
37
- DTS dist/index.d.mts 130.07 KB
37
+ DTS dist/index.d.mts 130.10 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @noya-app/noya-designsystem
2
2
 
3
+ ## 0.1.92
4
+
5
+ ### Patch Changes
6
+
7
+ - 24a7982: Update packages
8
+
3
9
  ## 0.1.91
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -2525,6 +2525,7 @@ interface ToastData {
2525
2525
  title?: string;
2526
2526
  content: ReactNode;
2527
2527
  action?: ReactNode;
2528
+ timeout?: number;
2528
2529
  }
2529
2530
  interface ToastContextValue {
2530
2531
  showToast: (data: ToastData) => void;
package/dist/index.d.ts CHANGED
@@ -2525,6 +2525,7 @@ interface ToastData {
2525
2525
  title?: string;
2526
2526
  content: ReactNode;
2527
2527
  action?: ReactNode;
2528
+ timeout?: number;
2528
2529
  }
2529
2530
  interface ToastContextValue {
2530
2531
  showToast: (data: ToastData) => void;
package/dist/index.js CHANGED
@@ -19161,7 +19161,7 @@ function ToastProviderInner({ children }) {
19161
19161
  const toastManager = index_parts_exports3.useToastManager();
19162
19162
  const showToast = (0, import_react25.useCallback)(
19163
19163
  (data) => {
19164
- toastManager.add({ data });
19164
+ toastManager.add({ data, timeout: data.timeout });
19165
19165
  },
19166
19166
  [toastManager]
19167
19167
  );
@@ -36791,7 +36791,7 @@ var Toolbar = (0, import_react105.forwardRef)(
36791
36791
  ref,
36792
36792
  role,
36793
36793
  className: cx(
36794
- "n-pointer-events-auto n-flex n-items-center n-rounded n-bg-popover-background n-shadow-popover",
36794
+ "n-pointer-events-auto n-flex n-max-w-full n-flex-wrap n-items-center n-justify-center n-rounded n-bg-popover-background n-shadow-popover",
36795
36795
  size4 === "small" ? "n-gap-1 n-p-1" : "n-gap-toolbar-separator n-p-2",
36796
36796
  className
36797
36797
  ),