Skip to content

Commit 1fcc78b

Browse files
committed
Merge remote-tracking branch 'origin' into update-pnpm
2 parents 30d219f + d31976e commit 1fcc78b

File tree

29 files changed

+1537
-1416
lines changed

29 files changed

+1537
-1416
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@cube-dev/ui-kit': minor
3+
---
4+
5+
Add casting property to Field component to cast Field value to different type that input allows

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install pnpm
2727
uses: pnpm/action-setup@v4
2828
with:
29-
version: 8
29+
version: 9
3030

3131
- name: Setup Node.js
3232
uses: actions/setup-node@v3
@@ -66,7 +66,7 @@ jobs:
6666
- name: Install pnpm
6767
uses: pnpm/action-setup@v4
6868
with:
69-
version: 8
69+
version: 9
7070

7171
- uses: actions/cache@v2
7272
name: Download storybook cache
@@ -112,7 +112,7 @@ jobs:
112112
- name: Install pnpm
113113
uses: pnpm/action-setup@v4
114114
with:
115-
version: 8
115+
version: 9
116116

117117
- uses: actions/cache@v2
118118
name: Download storybook cache

.github/workflows/pull-request.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Install pnpm
3131
uses: pnpm/action-setup@v4
3232
with:
33-
version: 8
33+
version: 9
3434

3535
- uses: actions/setup-node@v3
3636
with:
@@ -84,7 +84,7 @@ jobs:
8484
- name: Install pnpm
8585
uses: pnpm/action-setup@v4
8686
with:
87-
version: 8
87+
version: 9
8888

8989
- uses: actions/cache@v2
9090
name: Download eslint cache
@@ -124,7 +124,7 @@ jobs:
124124
- name: Install pnpm
125125
uses: pnpm/action-setup@v4
126126
with:
127-
version: 8
127+
version: 9
128128

129129
- uses: actions/cache@v2
130130
name: Download storybook cache
@@ -186,7 +186,7 @@ jobs:
186186
- name: Install pnpm
187187
uses: pnpm/action-setup@v4
188188
with:
189-
version: 8
189+
version: 9
190190

191191
- uses: actions/cache@v2
192192
name: Download storybook cache

.github/workflows/size-limit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Install pnpm
3131
uses: pnpm/action-setup@v4
3232
with:
33-
version: 8
33+
version: 9
3434

3535
- uses: actions/setup-node@v3
3636
with:
@@ -44,7 +44,7 @@ jobs:
4444
run: pnpm build
4545

4646
- name: Download baseline stats
47-
uses: dawidd6/action-download-artifact@v2
47+
uses: dawidd6/action-download-artifact@v4
4848
if: github.event.number
4949
with:
5050
workflow: size-limit.yml
@@ -60,7 +60,7 @@ jobs:
6060
run: echo '${{ steps.measure_size.outputs.result }}' > ./size-limit-report/output.json
6161

6262
- name: Upload stats
63-
uses: actions/upload-artifact@v2
63+
uses: actions/upload-artifact@v4
6464
with:
6565
name: size-limit-report
6666
path: ${{ env.REPORT_FOLDER }}

.size-limit.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ module.exports = [
2626
path: './dist/es/index.js',
2727
webpack: true,
2828
import: '{ Button }',
29-
limit: '34 kB',
29+
limit: '36 kB',
3030
},
3131
{
3232
name: 'Tree shaking (just an Icon)',
3333
path: './dist/es/index.js',
3434
webpack: true,
3535
import: '{ AiIcon }',
36-
limit: '23 kB',
36+
limit: '25 kB',
3737
},
3838
];

CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,43 @@
11
# @cube-dev/ui-kit
22

3+
## 0.38.0
4+
5+
### Minor Changes
6+
7+
- [#507](https://github.com/cube-js/cube-ui-kit/pull/507) [`c2b126e`](https://github.com/cube-js/cube-ui-kit/commit/c2b126e3b6d9e46a75025c334066f777acd8106c) Thanks [@tenphi](https://github.com/tenphi)! - Change MenuItem API to support isDisabled and onAction props.
8+
9+
### Patch Changes
10+
11+
- [#507](https://github.com/cube-js/cube-ui-kit/pull/507) [`c2b126e`](https://github.com/cube-js/cube-ui-kit/commit/c2b126e3b6d9e46a75025c334066f777acd8106c) Thanks [@tenphi](https://github.com/tenphi)! - Fix unresponsive Menu Item on tap to click.
12+
13+
## 0.37.5
14+
15+
### Patch Changes
16+
17+
- [#504](https://github.com/cube-js/cube-ui-kit/pull/504) [`b83122e`](https://github.com/cube-js/cube-ui-kit/commit/b83122e01f9cc1ff1febf4eaa451044106b8c202) Thanks [@tenphi](https://github.com/tenphi)! - Add support for dark schema for Underlay.
18+
19+
- [#504](https://github.com/cube-js/cube-ui-kit/pull/504) [`b83122e`](https://github.com/cube-js/cube-ui-kit/commit/b83122e01f9cc1ff1febf4eaa451044106b8c202) Thanks [@tenphi](https://github.com/tenphi)! - Fix FileTabs Pane max size.
20+
21+
- [#504](https://github.com/cube-js/cube-ui-kit/pull/504) [`b83122e`](https://github.com/cube-js/cube-ui-kit/commit/b83122e01f9cc1ff1febf4eaa451044106b8c202) Thanks [@tenphi](https://github.com/tenphi)! - Fix typings for SearchInput to support onSubmit and onClear callbacks.
22+
23+
## 0.37.4
24+
25+
### Patch Changes
26+
27+
- [#501](https://github.com/cube-js/cube-ui-kit/pull/501) [`90cfd16`](https://github.com/cube-js/cube-ui-kit/commit/90cfd1601924f49f5393d8a712ad10e5dba5f6fc) Thanks [@tenphi](https://github.com/tenphi)! - Add CalendarEditIcon
28+
29+
## 0.37.3
30+
31+
### Patch Changes
32+
33+
- [#498](https://github.com/cube-js/cube-ui-kit/pull/498) [`77e7ab7`](https://github.com/cube-js/cube-ui-kit/commit/77e7ab77c2797e1f5f986e0e6b40c760689eb25c) Thanks [@tenphi](https://github.com/tenphi)! - Pass `qa` prop for fields.
34+
35+
## 0.37.2
36+
37+
### Patch Changes
38+
39+
- [#495](https://github.com/cube-js/cube-ui-kit/pull/495) [`743d5fa`](https://github.com/cube-js/cube-ui-kit/commit/743d5fa8b242bd60acd55d94d3d01450bd7bcbfb) Thanks [@tenphi](https://github.com/tenphi)! - Add StatsIcon.
40+
341
## 0.37.1
442

543
### Patch Changes

package.json

Lines changed: 32 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{
22
"name": "@cube-dev/ui-kit",
3-
"version": "0.37.1",
3+
"version": "0.38.0",
44
"description": "UIKit for Cube Projects",
55
"module": "dist/es/index.js",
66
"main": "dist/cjs/index.js",
77
"types": "dist/types/index.d.ts",
88
"sideEffects": false,
9+
"packageManager": "[email protected]",
910
"exports": {
1011
".": {
1112
"import": "./dist/es/index.js",
@@ -57,42 +58,42 @@
5758
"styled-components": ">= 5.3.0"
5859
},
5960
"dependencies": {
60-
"@ant-design/icons": "^5.3.4",
61-
"@internationalized/date": "^3.5.2",
62-
"@react-aria/focus": "^3.16.2",
63-
"@react-aria/i18n": "^3.10.2",
64-
"@react-aria/interactions": "^3.21.1",
65-
"@react-aria/selection": "^3.17.5",
66-
"@react-aria/ssr": "^3.9.2",
67-
"@react-aria/utils": "^3.23.2",
68-
"@react-spectrum/utils": "^3.11.2",
69-
"@react-stately/utils": "^3.9.1",
70-
"@react-types/button": "^3.9.2",
71-
"@react-types/calendar": "^3.4.4",
72-
"@react-types/checkbox": "^3.7.1",
73-
"@react-types/combobox": "^3.10.1",
74-
"@react-types/datepicker": "^3.7.2",
75-
"@react-types/dialog": "^3.5.8",
76-
"@react-types/menu": "^3.9.7",
77-
"@react-types/numberfield": "^3.8.1",
78-
"@react-types/overlays": "^3.8.5",
79-
"@react-types/radio": "^3.7.1",
80-
"@react-types/select": "^3.9.2",
81-
"@react-types/shared": "^3.22.1",
82-
"@react-types/slider": "^3.7.1",
83-
"@react-types/switch": "^3.5.1",
84-
"@react-types/textfield": "^3.9.1",
85-
"@react-types/tooltip": "^3.4.7",
86-
"@vitejs/plugin-react": "^4.2.1",
61+
"@ant-design/icons": "^5.5.1",
62+
"@internationalized/date": "^3.5.6",
63+
"@react-aria/focus": "^3.18.4",
64+
"@react-aria/i18n": "^3.12.3",
65+
"@react-aria/interactions": "^3.22.4",
66+
"@react-aria/selection": "^3.20.1",
67+
"@react-aria/ssr": "^3.9.6",
68+
"@react-aria/utils": "^3.25.3",
69+
"@react-spectrum/utils": "^3.11.11",
70+
"@react-stately/utils": "^3.10.4",
71+
"@react-types/button": "^3.10.0",
72+
"@react-types/calendar": "^3.4.10",
73+
"@react-types/checkbox": "^3.8.4",
74+
"@react-types/combobox": "^3.13.0",
75+
"@react-types/datepicker": "^3.8.3",
76+
"@react-types/dialog": "^3.5.13",
77+
"@react-types/menu": "^3.9.12",
78+
"@react-types/numberfield": "^3.8.6",
79+
"@react-types/overlays": "^3.8.10",
80+
"@react-types/radio": "^3.8.4",
81+
"@react-types/select": "^3.9.7",
82+
"@react-types/shared": "^3.25.0",
83+
"@react-types/slider": "^3.7.6",
84+
"@react-types/switch": "^3.5.6",
85+
"@react-types/textfield": "^3.9.7",
86+
"@react-types/tooltip": "^3.4.12",
87+
"@vitejs/plugin-react": "^4.3.2",
8788
"clipboard-copy": "^4.0.1",
8889
"clsx": "^1.1.1",
8990
"email-validator": "^2.0.4",
9091
"prismjs": "^1.27.0",
91-
"react-aria": "^3.32.1",
92+
"react-aria": "^3.35.1",
9293
"react-focus-lock": "^2.11.2",
93-
"react-is": "^18.2.0",
94+
"react-is": "^18.3.1",
9495
"react-keyed-flatten-children": "^1.3.0",
95-
"react-stately": "^3.30.1",
96+
"react-stately": "^3.33.0",
9697
"react-transition-group": "^4.4.5",
9798
"react-types": "^0.1.0",
9899
"tiny-invariant": "^1.3.3",

0 commit comments

Comments
 (0)