Skip to content

Commit

Permalink
Merge branch 'master' into JOB-110594
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-at-jobber committed Nov 29, 2024
2 parents 1b623f5 + aa339b5 commit 8b94fd3
Show file tree
Hide file tree
Showing 20 changed files with 931 additions and 10 deletions.
5 changes: 1 addition & 4 deletions .vscode/docs.code-snippets
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,13 @@
"import { ContentExport } from \"../../types/content\";",
"",
"export default {",
" content: Content,",
" content: () => <Content />,",
" props: Props,",
" component: {",
" element: ${1:ComponentName},",
" defaultProps: { },",
" code: `<${1:ComponentName} />`,",
" },",
" title: \"${1:ComponentName}\",",
" description:",
" \"${1:ComponentName}s are a ...\",",
" links: [",
" {",
" label: \"Storybook\",",
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 38 additions & 0 deletions packages/site/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,44 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.10.1](https://github.com/GetJobber/atlantis/compare/@jobber/[email protected]...@jobber/[email protected]) (2024-11-29)

**Note:** Version bump only for package @jobber/atlantis-site





# [0.10.0](https://github.com/GetJobber/atlantis/compare/@jobber/[email protected]...@jobber/[email protected]) (2024-11-29)


### Features

* **components:** Adding Spinner to Docs Site ([#2154](https://github.com/GetJobber/atlantis/issues/2154)) ([460c5ec](https://github.com/GetJobber/atlantis/commit/460c5ec6e2dd4f3a63b30a47715d767d381f4174))





# [0.9.0](https://github.com/GetJobber/atlantis/compare/@jobber/[email protected]...@jobber/[email protected]) (2024-11-29)


### Features

* **components:** Adding DatePicker to Docs ([#2155](https://github.com/GetJobber/atlantis/issues/2155)) ([1a0a484](https://github.com/GetJobber/atlantis/commit/1a0a48403dac97f5d08def8b64d09e8847b88722))





## [0.8.8](https://github.com/GetJobber/atlantis/compare/@jobber/[email protected]...@jobber/[email protected]) (2024-11-29)

**Note:** Version bump only for package @jobber/atlantis-site





## [0.8.7](https://github.com/GetJobber/atlantis/compare/@jobber/[email protected]...@jobber/[email protected]) (2024-11-29)

**Note:** Version bump only for package @jobber/atlantis-site
Expand Down
4 changes: 4 additions & 0 deletions packages/site/generateDocs.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ const components = [
"Countdown",
"DataDump",
"DataList",
"DatePicker",
"Disclosure",
"Emphasis",
"FormatDate",
Expand All @@ -131,9 +132,12 @@ const components = [
"Icon",
"InlineLabel",
"InputDate",
"InputEmail",
"InputPassword",
"InputPhoneNumber",
"Link",
"ProgressBar",
"Spinner",
"StatusIndicator",
"StatusLabel",
"Switch",
Expand Down
2 changes: 1 addition & 1 deletion packages/site/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@jobber/atlantis-site",
"private": true,
"version": "0.8.7",
"version": "0.10.1",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
Binary file added packages/site/public/FormatRelativeDateTime.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions packages/site/public/FormatRelativeDateTime.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added packages/site/public/InputEmail.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions packages/site/public/InputEmail.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions packages/site/src/componentList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ export const componentList = [
to: "/components/DataList",
imageURL: "/DataList.png",
},
{
title: "DatePicker",
to: "/components/DatePicker",
imageURL: "/DatePicker.png",
},
{
title: "Disclosure",
to: "/components/Disclosure",
Expand Down Expand Up @@ -149,6 +154,16 @@ export const componentList = [
imageURL: "/InputDate.png",
additionalMatches: ["Datepicker", "Datetime Picker", "Calendar"],
},
{
title: "InputEmail",
to: "/components/InputEmail",
imageURL: "/InputEmail.png",
},
{
title: "InputPassword",
to: "/components/InputPassword",
imageURL: "/InputPassword.png",
},
{
title: "InputPhoneNumber",
to: "/components/InputPhoneNumber",
Expand All @@ -166,6 +181,12 @@ export const componentList = [
imageURL: "/ProgressBar.png",
additionalMatches: ["Progress", "Loader"],
},
{
title: "Spinner",
to: "/components/Spinner",
imageURL: "/Spinner.png",
additionalMatches: ["Loader", "Loading", "Twirly", "Wait", "Busy"],
},
{
title: "StatusIndicator",
to: "/components/StatusIndicator",
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 8b94fd3

Please sign in to comment.