@kubit-ui-web/react-components 2.0.0-beta.73 → 2.0.0-beta.74

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
@@ -1,5 +1,19 @@
1
1
  # @kubit-ui-web/react-components
2
2
 
3
+ ## 2.0.0-beta.74
4
+
5
+ ### Major Changes
6
+
7
+ - Use heredoc delimiter for multi-line commit messages in GITHUB_OUTPUT
8
+
9
+ Multi-line commit messages (with body/bullet points) broke the
10
+ release workflows because 'echo message=' passes
11
+ each line as a separate file command. Lines starting with '- '
12
+ trigger 'Invalid format' errors in GitHub Actions.
13
+
14
+ Fix: use heredoc syntax (message<<EOF / EOF) which safely handles
15
+ multi-line values in /home/runner/work/\_temp/\_runner_file_commands/set_output_8d453e61-483b-4570-8b34-aa1b86bc6a42.
16
+
3
17
  ## 2.0.0-beta.73
4
18
 
5
19
  ### Major Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kubit-ui-web/react-components",
3
- "version": "2.0.0-beta.73",
3
+ "version": "2.0.0-beta.74",
4
4
  "description": "Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience",
5
5
  "author": {
6
6
  "name": "Kubit",
@@ -15,7 +15,6 @@
15
15
  "github": "https://github.com/kubit-ui/kubit-react-components"
16
16
  }
17
17
  },
18
- "private": false,
19
18
  "repository": {
20
19
  "type": "git",
21
20
  "url": "git+https://github.com/kubit-ui/kubit-react-components.git",
@@ -35,6 +34,7 @@
35
34
  "url": "https://github.com/kubit-ui/kubit-react-components/graphs/contributors"
36
35
  }
37
36
  ],
37
+ "packageManager": "yarn@4.9.1",
38
38
  "keywords": [
39
39
  "react",
40
40
  "react-components",
@@ -138,6 +138,25 @@
138
138
  ]
139
139
  }
140
140
  },
141
+ "scripts": {
142
+ "dev": "rslib build --watch",
143
+ "build": "rslib build",
144
+ "lint": "oxlint src",
145
+ "lint:fix": "oxlint src --fix",
146
+ "format": "oxfmt src",
147
+ "format:check": "oxfmt --check src",
148
+ "test": "vitest --coverage.enabled=true --silent --run",
149
+ "test:watch": "vitest --watch",
150
+ "test:coverage": "vitest --coverage.enabled=true --run",
151
+ "test:coverage:ui": "vitest --coverage.enabled=true --ui",
152
+ "typecheck": "tsc --noEmit",
153
+ "validate": "yarn format:check && yarn lint && yarn typecheck && yarn build",
154
+ "validate:quick": "yarn lint && yarn typecheck",
155
+ "clean": "rm -rf dist node_modules",
156
+ "clean:build": "rm -rf dist",
157
+ "prepublishOnly": "yarn build",
158
+ "prerelease": "yarn validate && yarn test"
159
+ },
141
160
  "peerDependencies": {
142
161
  "react": "^18.3.0 || ^19.0.0",
143
162
  "react-dom": "^18.3.0 || ^19.0.0"
@@ -146,13 +165,14 @@
146
165
  "@floating-ui/dom": "^1.7.6"
147
166
  },
148
167
  "devDependencies": {
168
+ "@kubit-ui-web/design-system": "workspace:*",
169
+ "@kubit-ui-web/eslint-plugin-kubit": "^0.0.5",
149
170
  "@rsbuild/plugin-react": "^1.4.6",
150
171
  "@rslib/core": "^0.20.0",
151
172
  "@testing-library/dom": "^10.4.1",
152
173
  "@testing-library/jest-dom": "^6.9.1",
153
174
  "@testing-library/react": "^16.3.2",
154
175
  "@testing-library/user-event": "^14.6.1",
155
- "@kubit-ui-web/eslint-plugin-kubit": "^0.0.5",
156
176
  "@types/node": "^25.5.0",
157
177
  "@types/react": "^19.2.14",
158
178
  "@types/react-dom": "^19.2.3",
@@ -160,17 +180,16 @@
160
180
  "@vitest/coverage-v8": "^4.1.0",
161
181
  "@vitest/ui": "^4.1.0",
162
182
  "bernova": "1.6.0",
163
- "oxlint": "^1.54.0",
164
- "oxfmt": "^0.39.0",
165
183
  "glob": "^13.0.6",
166
184
  "html-validate": "^10.11.1",
167
185
  "jsdom": "^28.1.0",
186
+ "oxfmt": "^0.39.0",
187
+ "oxlint": "^1.54.0",
168
188
  "react": "^19.2.4",
169
189
  "react-dom": "^19.2.4",
170
190
  "typescript": "^5.9.3",
171
191
  "vitest": "^4.1.0",
172
- "vitest-axe": "^0.1.0",
173
- "@kubit-ui-web/design-system": "2.0.0-beta.33"
192
+ "vitest-axe": "^0.1.0"
174
193
  },
175
194
  "publishConfig": {
176
195
  "access": "public",
@@ -181,23 +200,5 @@
181
200
  "email": "kubit.lab.dev@gmail.com"
182
201
  },
183
202
  "homepage": "https://www.kubit-ui.com/",
184
- "documentation": "https://www.kubit-ui.com",
185
- "scripts": {
186
- "dev": "rslib build --watch",
187
- "build": "rslib build",
188
- "lint": "oxlint src",
189
- "lint:fix": "oxlint src --fix",
190
- "format": "oxfmt src",
191
- "format:check": "oxfmt --check src",
192
- "test": "vitest --coverage.enabled=true --silent --run",
193
- "test:watch": "vitest --watch",
194
- "test:coverage": "vitest --coverage.enabled=true --run",
195
- "test:coverage:ui": "vitest --coverage.enabled=true --ui",
196
- "typecheck": "tsc --noEmit",
197
- "validate": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm build",
198
- "validate:quick": "pnpm lint && pnpm typecheck",
199
- "clean": "rm -rf dist node_modules",
200
- "clean:build": "rm -rf dist",
201
- "prerelease": "pnpm validate && pnpm test"
202
- }
203
- }
203
+ "documentation": "https://www.kubit-ui.com"
204
+ }
@@ -1,3 +0,0 @@
1
- import { type RenderOptions, render } from '@testing-library/react';
2
- declare const customRender: (ui: JSX.Element, options?: RenderOptions) => ReturnType<typeof render>;
3
- export { customRender as render };
@@ -1,6 +0,0 @@
1
- import { type RenderHookResult } from '@testing-library/react';
2
- export declare const renderHook: <R, P extends {
3
- children?: React.ReactNode;
4
- } = {
5
- children?: React.ReactNode;
6
- }>(hook: (props: P) => R) => RenderHookResult<R, P>;
@@ -1 +0,0 @@
1
- export declare const windowMatchMedia: (matcher?: string | string[]) => ((query: string) => MediaQueryList);