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

Alpha release #37

Merged
merged 4 commits into from
Feb 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@maykin/ui",
"name": "@maykin-ui/admin-ui",
"version": "0.0.0",
"description": "",
"scripts": {
Expand Down Expand Up @@ -44,16 +44,16 @@
"types": "dist/esm/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/maykinmedia/maykin-ui.git"
"url": "git+https://github.com/maykinmedia/admin-ui.git"
},
"author": {
"name": "Maykin Media"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/maykinmedia/maykin-ui/issues"
"url": "https://github.com/maykinmedia/admin-ui/issues"
},
"homepage": "https://github.com/maykinmedia/maykin-ui#readme",
"homepage": "https://github.com/maykinmedia/admin-ui/#readme",
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@formatjs/cli": "^6.2.7",
Expand Down Expand Up @@ -111,7 +111,6 @@
"*.{js,jsx,ts,tsx,md}": "npm run lint:fix"
},
"readme": "ERROR: No README data found!",
"_id": "[email protected]",
"dependencies": {
"@floating-ui/react": "^0.26.6",
"@heroicons/react": "^2.1.1",
Expand Down
2 changes: 1 addition & 1 deletion src/components/form/form/form.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export const FormComponent: Story = {
},
};

export const usageWithFormik: Story = {
export const UsageWithFormik: Story = {
...FormComponent,
args: {
...FormComponent.args,
Expand Down
6 changes: 3 additions & 3 deletions src/lib/i18n/compiled/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@
"value": "clear value"
}
],
"mm+twj": [
"mykn.templates.Login.labelLogin": [
{
"type": 0,
"value": "login"
"value": "inloggen"
}
]
}
}
4 changes: 2 additions & 2 deletions src/lib/i18n/compiled/nl.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@
"value": "waarde wissen"
}
],
"mm+twj": [
"mykn.templates.Login.labelLogin": [
{
"type": 0,
"value": "inloggen"
}
]
}
}
4 changes: 2 additions & 2 deletions src/lib/i18n/messages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@
"description": "mykn.components.Select: The clear value (accessible) label",
"originalDefault": "waarde wissen"
},
"mm+twj": {
"defaultMessage": "login",
"mykn.templates.Login.labelLogin": {
"defaultMessage": "inloggen",
"description": "templates.Login: The login button label",
"originalDefault": "inloggen"
}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/i18n/messages/nl.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"description": "mykn.components.Select: The clear value (accessible) label",
"originalDefault": "waarde wissen"
},
"mm+twj": {
"mykn.templates.Login.labelLogin": {
"defaultMessage": "inloggen",
"description": "templates.Login: The login button label",
"originalDefault": "inloggen"
Expand Down
1 change: 1 addition & 0 deletions src/templates/login/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export const Login: React.FC<LoginProps> = ({ labelSubmit, ...formProps }) => {
const labelLogin = labelSubmit
? labelSubmit
: intl.formatMessage({
id: "mykn.templates.Login.labelLogin",
description: "templates.Login: The login button label",
defaultMessage: "inloggen",
});
Expand Down