@startupjs-ui/toast 0.1.22 → 0.2.0-alpha.1

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/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.2.0-alpha.1](https://github.com/startupjs/startupjs-ui/compare/v0.2.0-alpha.0...v0.2.0-alpha.1) (2026-04-10)
7
+
8
+ **Note:** Version bump only for package @startupjs-ui/toast
9
+
10
+
11
+
12
+
13
+
14
+ # [0.2.0-alpha.0](https://github.com/startupjs/startupjs-ui/compare/v0.1.22...v0.2.0-alpha.0) (2026-03-27)
15
+
16
+ **Note:** Version bump only for package @startupjs-ui/toast
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.1.22](https://github.com/startupjs/startupjs-ui/compare/v0.1.21...v0.1.22) (2026-03-25)
7
23
 
8
24
  **Note:** Version bump only for package @startupjs-ui/toast
package/ToastProvider.tsx CHANGED
@@ -6,7 +6,7 @@ import Toast, { type ToastProps } from './ToastView'
6
6
 
7
7
  export const _PropsJsonSchema = {/* ToastProviderProps */}
8
8
 
9
- // eslint-disable-next-line @typescript-eslint/no-empty-interface
9
+ // eslint-disable-next-line @typescript-eslint/no-empty-object-type
10
10
  export interface ToastProviderProps {}
11
11
 
12
12
  function ToastProvider (): ReactNode {
package/ToastView.tsx CHANGED
@@ -112,7 +112,7 @@ function Toast ({
112
112
  Div.header(vAlign='center' row)
113
113
  Div(vAlign='center' row)
114
114
  Icon.icon(
115
- icon=icon ? icon : ICONS[type]
115
+ icon=icon ?? ICONS[type]
116
116
  styleName=[type]
117
117
  )
118
118
  Span.title(styleName=[type])
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@startupjs-ui/toast",
3
- "version": "0.1.22",
3
+ "version": "0.2.0-alpha.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -8,17 +8,17 @@
8
8
  "types": "index.d.ts",
9
9
  "type": "module",
10
10
  "dependencies": {
11
- "@startupjs-ui/button": "^0.1.22",
12
- "@startupjs-ui/core": "^0.1.22",
13
- "@startupjs-ui/div": "^0.1.22",
14
- "@startupjs-ui/icon": "^0.1.22",
15
- "@startupjs-ui/portal": "^0.1.22",
16
- "@startupjs-ui/span": "^0.1.22"
11
+ "@startupjs-ui/button": "^0.2.0-alpha.1",
12
+ "@startupjs-ui/core": "^0.2.0-alpha.1",
13
+ "@startupjs-ui/div": "^0.2.0-alpha.1",
14
+ "@startupjs-ui/icon": "^0.2.0-alpha.1",
15
+ "@startupjs-ui/portal": "^0.2.0-alpha.1",
16
+ "@startupjs-ui/span": "^0.2.0-alpha.1"
17
17
  },
18
18
  "peerDependencies": {
19
19
  "react": "*",
20
20
  "react-native": "*",
21
21
  "startupjs": "*"
22
22
  },
23
- "gitHead": "3bd18c16f0f203ee3d940bf2e09381edc0034665"
23
+ "gitHead": "b48004779559b16c96a2a1995dab13b998eafce9"
24
24
  }