Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: release v0.1.0-alpha.10 #276

Merged
merged 29 commits into from
Mar 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
876b582
chore(deps-dev): bump @storybook/react in /react (#245)
dependabot[bot] Feb 19, 2023
e86ee30
chore(deps-dev): bump @storybook/addon-links in /react (#246)
dependabot[bot] Feb 19, 2023
056be8b
chore(deps-dev): bump @storybook/addon-essentials in /react (#247)
dependabot[bot] Feb 19, 2023
6c41e0c
chore(deps-dev): bump @typescript-eslint/eslint-plugin in /react (#248)
dependabot[bot] Feb 19, 2023
107c8e9
chore(deps-dev): bump @storybook/addons in /react (#249)
dependabot[bot] Feb 19, 2023
9419a70
feat: add onChange prop to searchbar to enable dynamic search (#218)
justynoh Feb 20, 2023
773e1d2
fix: upgrade downshift from 6.1.12 to 7.2.0, a11y fixes for single se…
justynoh Feb 21, 2023
490f889
fix(deps): bump downshift from 7.2.0 to 7.2.1 in /react (#254)
dependabot[bot] Feb 21, 2023
bcb06a6
feat: update design tokens (add CalSG, theme changes for others) (#255)
karrui Feb 22, 2023
0dca25f
fix(MultiSelect): set input to readonly if isSearchable is false (#257)
karrui Feb 23, 2023
ac70085
chore(deps-dev): bump eslint-plugin-storybook in /react (#262)
dependabot[bot] Feb 26, 2023
250c0f3
chore(deps-dev): bump storybook in /react (#263)
dependabot[bot] Feb 26, 2023
eadda05
chore(deps-dev): bump @types/react-dom from 18.0.10 to 18.0.11 in /re…
dependabot[bot] Feb 26, 2023
2e1f89d
fix(deps): bump rooks from 7.4.3 to 7.4.4 in /react (#265)
dependabot[bot] Feb 26, 2023
0f38a1f
chore(deps-dev): bump vite from 4.1.1 to 4.1.4 in /react (#266)
dependabot[bot] Feb 26, 2023
8a6275a
feat: add new Toolbar component (#236)
karrui Feb 28, 2023
5d6d568
fix: add outline offset to default link styles (#242)
karrui Feb 28, 2023
2e17c19
feat: add theme generation to prebuild, update storybook version, pin…
karrui Feb 28, 2023
15a8491
feat(theme): add default body text, bg, borderColor semantic tokens (…
karrui Mar 1, 2023
ea1b47b
fix(deps): bump @floating-ui/react from 0.17.0 to 0.20.1 in /react (#…
dependabot[bot] Mar 5, 2023
b523bb5
chore(deps-dev): bump typescript from 4.9.4 to 4.9.5 in /react (#270)
dependabot[bot] Mar 5, 2023
4c8a336
chore(deps-dev): bump @storybook/react-vite in /react (#271)
dependabot[bot] Mar 5, 2023
b8606b0
chore(deps-dev): bump @storybook/client-api in /react (#272)
dependabot[bot] Mar 5, 2023
aeadd2d
fix(deps): bump react-virtuoso from 4.0.1 to 4.1.0 in /react (#273)
dependabot[bot] Mar 5, 2023
3c3cddb
feat(Tag): add xs size and styles (#243)
karrui Mar 6, 2023
b1206a5
feat(FormControl): update styling and fix focus on some inputs when c…
karrui Mar 6, 2023
9d92aa0
Merge pull request #275 from opengovsg/alpha
karrui Mar 6, 2023
7bc9f20
feat: export Single/MultiSelect subcomponents (#267)
karrui Mar 6, 2023
8c1667b
build: release version v0.1.0-alpha.10
karrui Mar 6, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 15 additions & 5 deletions react/.storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@ export default {
previewMdx2: true,
},
stories: [
// Introduction stories set first so stories are ordered correctly.
'./introduction/Welcome/Welcome.stories.tsx',
'./introduction/Principles/Principles.stories.tsx',
'./foundations/**/*.stories.@(mdx|js|jsx|ts|tsx)',
'../src/**/*.stories.@(js|jsx|ts|tsx|mdx)',
'./foundations/**/*.@(mdx|stories.@(js|jsx|ts|tsx))',
'../src/**/*.@(mdx|stories.@(js|jsx|ts|tsx))',
],
addons: [
'@storybook/addon-links',
Expand All @@ -22,11 +21,22 @@ export default {
core: {
disableTelemetry: true,
},
async viteFinal(config: UserConfig, { configType }: { configType: string }) {
async viteFinal(
config: UserConfig,
{
configType,
}: {
configType: string
},
) {
return mergeConfig(config, {
plugins:
configType === 'PRODUCTION'
? [turbosnap({ rootDir: config.root ?? process.cwd() })]
? [
turbosnap({
rootDir: config.root ?? process.cwd(),
}),
]
: [],
resolve: {
alias: {
Expand Down
35 changes: 35 additions & 0 deletions react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,42 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [v0.1.0-alpha.10](https://github.com/opengovsg/design-system/compare/v0.1.0-alpha.9...v0.1.0-alpha.10)

- feat: export Single/MultiSelect subcomponents [`#267`](https://github.com/opengovsg/design-system/pull/267)
- feat: merge v0.1.0-alpha.9 back to main [`#275`](https://github.com/opengovsg/design-system/pull/275)
- feat(FormControl): update styling and fix focus on some inputs when clicked [`#260`](https://github.com/opengovsg/design-system/pull/260)
- feat(Tag): add xs size and styles [`#243`](https://github.com/opengovsg/design-system/pull/243)
- fix(deps): bump react-virtuoso from 4.0.1 to 4.1.0 in /react [`#273`](https://github.com/opengovsg/design-system/pull/273)
- chore(deps-dev): bump @storybook/client-api in /react [`#272`](https://github.com/opengovsg/design-system/pull/272)
- chore(deps-dev): bump @storybook/react-vite in /react [`#271`](https://github.com/opengovsg/design-system/pull/271)
- chore(deps-dev): bump typescript from 4.9.4 to 4.9.5 in /react [`#270`](https://github.com/opengovsg/design-system/pull/270)
- fix(deps): bump @floating-ui/react from 0.17.0 to 0.20.1 in /react [`#269`](https://github.com/opengovsg/design-system/pull/269)
- feat(theme): add default body text, bg, borderColor semantic tokens [`#239`](https://github.com/opengovsg/design-system/pull/239)
- feat: add theme generation to prebuild, update storybook version, pin [`#268`](https://github.com/opengovsg/design-system/pull/268)
- fix: add outline offset to default link styles [`#242`](https://github.com/opengovsg/design-system/pull/242)
- feat: add new Toolbar component [`#236`](https://github.com/opengovsg/design-system/pull/236)
- chore(deps-dev): bump vite from 4.1.1 to 4.1.4 in /react [`#266`](https://github.com/opengovsg/design-system/pull/266)
- fix(deps): bump rooks from 7.4.3 to 7.4.4 in /react [`#265`](https://github.com/opengovsg/design-system/pull/265)
- chore(deps-dev): bump @types/react-dom from 18.0.10 to 18.0.11 in /react [`#264`](https://github.com/opengovsg/design-system/pull/264)
- chore(deps-dev): bump storybook in /react [`#263`](https://github.com/opengovsg/design-system/pull/263)
- chore(deps-dev): bump eslint-plugin-storybook in /react [`#262`](https://github.com/opengovsg/design-system/pull/262)
- fix(MultiSelect): set input to readonly if isSearchable is false [`#257`](https://github.com/opengovsg/design-system/pull/257)
- feat: update design tokens (add CalSG, theme changes for others) [`#255`](https://github.com/opengovsg/design-system/pull/255)
- fix(deps): bump downshift from 7.2.0 to 7.2.1 in /react [`#254`](https://github.com/opengovsg/design-system/pull/254)
- fix: upgrade downshift from 6.1.12 to 7.2.0, a11y fixes for single select and multiselect [`#252`](https://github.com/opengovsg/design-system/pull/252)
- feat: add onChange prop to searchbar to enable dynamic search [`#218`](https://github.com/opengovsg/design-system/pull/218)
- chore(deps-dev): bump @storybook/addons in /react [`#249`](https://github.com/opengovsg/design-system/pull/249)
- chore(deps-dev): bump @typescript-eslint/eslint-plugin in /react [`#248`](https://github.com/opengovsg/design-system/pull/248)
- chore(deps-dev): bump @storybook/addon-essentials in /react [`#247`](https://github.com/opengovsg/design-system/pull/247)
- chore(deps-dev): bump @storybook/addon-links in /react [`#246`](https://github.com/opengovsg/design-system/pull/246)
- chore(deps-dev): bump @storybook/react in /react [`#245`](https://github.com/opengovsg/design-system/pull/245)
- build: release version v0.1.0-alpha.9 [`#241`](https://github.com/opengovsg/design-system/pull/241)

#### [v0.1.0-alpha.9](https://github.com/opengovsg/design-system/compare/v0.1.0-alpha.8...v0.1.0-alpha.9)

> 16 February 2023

- chore: merge v0.1.0-alpha.8 to back to main [`#240`](https://github.com/opengovsg/design-system/pull/240)
- feat: replace usage of borderRadius with token [`#235`](https://github.com/opengovsg/design-system/pull/235)
- feat: upgrade chakra-ui to v2.5.0 to fix Menu [`#228`](https://github.com/opengovsg/design-system/pull/228)
Expand All @@ -19,6 +53,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
- chore(deps-dev): bump @storybook/addon-essentials in /react [`#213`](https://github.com/opengovsg/design-system/pull/213)
- fix(deps): bump http-cache-semantics from 4.1.0 to 4.1.1 in /react [`#212`](https://github.com/opengovsg/design-system/pull/212)
- build: release v0.1.0-alpha.8 [`#211`](https://github.com/opengovsg/design-system/pull/211)
- build: release version v0.1.0-alpha.9 [`83bc4bf`](https://github.com/opengovsg/design-system/commit/83bc4bf3089c1d3d94cf68bc15ce21ab072651af)

#### [v0.1.0-alpha.8](https://github.com/opengovsg/design-system/compare/v0.1.0-alpha.7...v0.1.0-alpha.8)

Expand Down
Loading