Skip to content

Commit a5dbac5

Browse files
authored
Merge branch 'main' into docs/keystatic-in-monorepo
2 parents c36d828 + 1d6f0d2 commit a5dbac5

3,154 files changed

Lines changed: 32111 additions & 32324 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/wicked-avocados-ring.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ module.exports = {
3737
'jest/valid-title': OFF,
3838
'jest/no-try-expect': OFF,
3939
'jest/no-disabled-tests': ERROR,
40+
'jest/no-alias-methods': ERROR,
4041
'jsx-quotes': ERROR,
4142
'no-trailing-spaces': ERROR,
4243
'no-undef': ERROR,

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ design-system/docs/generated
4646
design-system/docs/public/playroom
4747
design-system/docs/public/storybook
4848

49+
# pagefind
50+
docs/public/pagefind
51+
4952
# Test coverage
5053
coverage
5154

design-system/docs/CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# @voussoir/docs
22

3+
## 0.0.25
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [dad16ba6]
8+
- @keystar/ui@0.7.0
9+
10+
## 0.0.24
11+
12+
### Patch Changes
13+
14+
- Updated dependencies [ad59430d]
15+
- Updated dependencies [53d8fcc7]
16+
- @keystar/ui@0.6.0
17+
18+
## 0.0.23
19+
20+
### Patch Changes
21+
22+
- Updated dependencies [f4aaa8e3]
23+
- @keystar/ui@0.5.0
24+
25+
## 0.0.22
26+
27+
### Patch Changes
28+
29+
- 0229959f: Replace hard-coded class names with `ClassList` instances.
30+
- Updated dependencies [9854c6b1]
31+
- Updated dependencies [0229959f]
32+
- @keystar/ui@0.4.2
33+
334
## 0.0.21
435

536
### Patch Changes

design-system/docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@keystar/docs",
3-
"version": "0.0.21",
3+
"version": "0.0.25",
44
"private": true,
55
"license": "MIT",
66
"scripts": {
@@ -19,7 +19,7 @@
1919
"@babel/core": "^7.23.0",
2020
"@babel/runtime": "^7.18.3",
2121
"@internationalized/date": "^3.5.0",
22-
"@keystar/ui": "^0.4.0",
22+
"@keystar/ui": "^0.7.0",
2323
"@markdoc/markdoc": "^0.3.0",
2424
"@react-aria/i18n": "^3.8.0",
2525
"@types/js-yaml": "^4.0.5",

design-system/jest.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ const config = {
33
displayName: 'keystar/ui',
44
testEnvironment: 'jsdom',
55
clearMocks: true,
6-
setupFilesAfterEnv: ['<rootDir>/jest-setup.ts'],
6+
setupFilesAfterEnv: ['<rootDir>/pkg/jest-setup.ts'],
77
transform: {
88
'^.+\\.[tj]sx?$': ['babel-jest', { rootMode: 'upward' }],
99
},
10+
extensionsToTreatAsEsm: ['.ts', '.tsx'],
1011
};
1112

1213
module.exports = config;

design-system/pkg/CHANGELOG.md

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,88 @@
11
# @keystar/ui
22

3+
## 0.7.0
4+
5+
### Minor Changes
6+
7+
- dad16ba6: Reduce size of icons
8+
9+
## 0.6.0
10+
11+
### Minor Changes
12+
13+
- 53d8fcc7: Update icons
14+
15+
### Patch Changes
16+
17+
- ad59430d: Fix `onEnter` callback in overlays
18+
19+
## 0.5.0
20+
21+
### Minor Changes
22+
23+
- f4aaa8e3: Switch build to ESM-only
24+
25+
## 0.4.9
26+
27+
### Patch Changes
28+
29+
- 05a71cde: Remove `react-transition-group`
30+
31+
## 0.4.8
32+
33+
### Patch Changes
34+
35+
- bebaa922: Fix `NumberField` not showing error messages
36+
37+
## 0.4.7
38+
39+
### Patch Changes
40+
41+
- 90fd3809: Filter out DOM props TableVirtualizer
42+
43+
## 0.4.6
44+
45+
### Patch Changes
46+
47+
- d76af081: Fix default exports in Node ESM
48+
49+
## 0.4.5
50+
51+
### Patch Changes
52+
53+
- 0ca7f47a: Support "boundary" + "portal" props on `EditorPopover` component.
54+
Simulate clipping for portal'd popovers.
55+
- 13206393: Support "labelElementType" on `Field` component.
56+
- 56b6b121: Remove support for "uncontrolled state" in `EditorToolbar*`
57+
components.
58+
- bd28cfd4: Fix `transitionProperty` typo in `ActionButton` styles.
59+
- 0e81263b: Refactor `ProgressCircle` — split animation properties across
60+
elements to fix transform-origin issue in safari.
61+
- 267845b1: New `ScrollView` component from "@keystar/ui/layout" package.
62+
- 3288c624: Expose `useProseStyleProps` from "@keystar/ui/typography" package.
63+
64+
## 0.4.4
65+
66+
### Patch Changes
67+
68+
- 0673fb03: Fix field types.
69+
70+
## 0.4.3
71+
72+
### Patch Changes
73+
74+
- a3f86e8f: New component `DropZone` and companion `FileTrigger` from
75+
"@keystar/ui/drag-and-drop" package.
76+
- 2b4f24b8: Changes to `Checkbox`, `Radio`, and `Dialog` resolve overflow issues
77+
within dialogs. Updated "@react-[aria|stately]/virtualizer" to latest.
78+
79+
## 0.4.2
80+
81+
### Patch Changes
82+
83+
- 9854c6b1: Fix for `StatusLight` passing attributes through to DOM element.
84+
- 0229959f: Replace hard-coded class names with `ClassList` instances.
85+
386
## 0.4.1
487

588
### Patch Changes

design-system/pkg/action-group/package.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

design-system/pkg/avatar/package.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

design-system/pkg/badge/package.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)