Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit 95ce8c3

Browse files
committed
chore: use main branch
1 parent f420f5c commit 95ce8c3

File tree

57 files changed

+78
-78
lines changed

Some content is hidden

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

57 files changed

+78
-78
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: PR Workflow
66
on:
77
pull_request:
88
branches:
9-
- master
9+
- main
1010
- develop
1111
push:
1212
branches:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
paths:
99
- "packages/**"
1010
branches:
11-
- master
11+
- main
1212

1313
jobs:
1414
release:

_templates/generator/component/component.tsx.ejs.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ to: packages/<%=h.changeCase.paramCase(name)%>/src/<%=h.changeCase.paramCase(nam
77
* <%=h.changeCase.sentence(description)%>
88
*
99
* @see Docs https://next.vue.chakra-ui.com/<%=h.changeCase.paramCase(name)%>
10-
* @see Source https://github.com/chakra-ui/chakra-ui-vue-next/blob/master/packages/<%=h.changeCase.paramCase(name)%>/src/<%=h.changeCase.paramCase(name)%>/<%=h.changeCase.paramCase(name)%>.ts
10+
* @see Source https://github.com/chakra-ui/chakra-ui-vue-next/blob/main/packages/<%=h.changeCase.paramCase(name)%>/src/<%=h.changeCase.paramCase(name)%>/<%=h.changeCase.paramCase(name)%>.ts
1111
* @see WAI-ARIA https://www.w3.org/TR/wai-aria-practices-1.2
1212
*/
1313

packages/c-accordion/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
}
1414
},
1515
"description": "Chakra UI Vue | CAccordion component",
16-
"repository": "https://github.com/chakra-ui/chakra-ui-vue-next/tree/master/packages/c-accordion",
16+
"repository": "https://github.com/chakra-ui/chakra-ui-vue-next/tree/main/packages/c-accordion",
1717
"author": "Jonathan Bakebwa [email protected]",
1818
"license": "MIT",
1919
"scripts": {

packages/c-alert/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
}
1414
},
1515
"description": "Chakra UI Vue | CAlert component",
16-
"repository": "https://github.com/chakra-ui/chakra-ui-vue-next/tree/master/packages/c-alert",
16+
"repository": "https://github.com/chakra-ui/chakra-ui-vue-next/tree/main/packages/c-alert",
1717
"author": "Jonathan Bakebwa [email protected]",
1818
"license": "MIT",
1919
"scripts": {

packages/c-avatar/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"default": "./dist/chakra-ui-c-avatar.esm.js"
1717
}
1818
},
19-
"repository": "https://github.com/chakra-ui/chakra-ui-vue-next/tree/master/packages/c-avatar",
19+
"repository": "https://github.com/chakra-ui/chakra-ui-vue-next/tree/main/packages/c-avatar",
2020
"bugs": {
2121
"url": "https://github.com/chakra-ui/chakra-ui-vue-next/issues"
2222
},

packages/c-avatar/src/c-avatar.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* The avatar component is used to represent user and displays the profile picture initials or fallback icon
55
*
66
* @see Docs https://next.vue.chakra-ui.com/c-avatar
7-
* @see Source https://github.com/chakra-ui/chakra-ui-vue-next/blob/master/packages/c-avatar/src/c-avatar/c-avatar.ts
7+
* @see Source https://github.com/chakra-ui/chakra-ui-vue-next/blob/main/packages/c-avatar/src/c-avatar/c-avatar.ts
88
* @see WAI-ARIA https://www.w3.org/TR/wai-aria-practices-1.2
99
*/
1010

@@ -114,8 +114,8 @@ export { AvatarContextProvider, useAvatarContext }
114114

115115
export interface CAvatarProps
116116
extends AvatarOptions,
117-
ThemingProps<"Avatar">,
118-
HTMLChakraProps<"span"> {
117+
ThemingProps<"Avatar">,
118+
HTMLChakraProps<"span"> {
119119
/**
120120
* Icon name or component
121121
*/

packages/c-breadcrumb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"publishConfig": {
2020
"access": "public"
2121
},
22-
"repository": "https://github.com/chakra-ui/chakra-ui-vue-next/tree/master/packages/c-breadcrumb",
22+
"repository": "https://github.com/chakra-ui/chakra-ui-vue-next/tree/main/packages/c-breadcrumb",
2323
"bugs": {
2424
"url": "https://github.com/chakra-ui/chakra-ui-vue-next/issues"
2525
},

packages/c-breadcrumb/src/c-breadcrumb.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Breadcrumbs help users visualize their current location in relation to the rest of the website or application by showing the hierarchy of pages
55
*
66
* @see Docs https://next.vue.chakra-ui.com/breadcrumb
7-
* @see Source https://github.com/chakra-ui/chakra-ui-vue-next/blob/master/packages/c-breadcrumb/src/c-breadcrumb/c-breadcrumb.ts
7+
* @see Source https://github.com/chakra-ui/chakra-ui-vue-next/blob/main/packages/c-breadcrumb/src/c-breadcrumb/c-breadcrumb.ts
88
* @see WAI-ARIA https://www.w3.org/TR/wai-aria-practices-1.2
99
*/
1010

@@ -57,8 +57,8 @@ export interface BreadcrumbOptions {
5757

5858
export interface BreadcrumbProps
5959
extends ChakraProps,
60-
BreadcrumbOptions,
61-
ThemingProps<"Breadcrumb"> {}
60+
BreadcrumbOptions,
61+
ThemingProps<"Breadcrumb"> { }
6262

6363
/**
6464
* CBreadcrumb is used to render a breadcrumb navigation landmark.
@@ -87,14 +87,14 @@ export const CBreadcrumb: DefineComponent<BreadcrumbProps> = defineComponent(
8787
return typeof props.separator === "string"
8888
? props.separator
8989
: isObjectComponent(props.separator!)
90-
? // TODO:
90+
? // TODO:
9191
// Add support for
9292
// object components. ATM,
9393
// This computed property will only
9494
// work for functional components provided as
9595
// separators
9696
h(() => props.separator!)
97-
: h(props.separator!)
97+
: h(props.separator!)
9898
}
9999
})
100100

@@ -198,7 +198,7 @@ interface BreadcrumbItemOptions extends BreadcrumbOptions {
198198

199199
export interface BreadcrumbItemProps
200200
extends BreadcrumbItemOptions,
201-
ChakraProps {}
201+
ChakraProps { }
202202

203203
export const CBreadcrumbItem: DefineComponent<BreadcrumbItemProps> =
204204
defineComponent((props: BreadcrumbItemProps, { attrs, slots }) => {

packages/c-button/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
}
1414
},
1515
"description": "Chakra UI Vue | CButton component",
16-
"repository": "https://github.com/chakra-ui/chakra-ui-vue-next/tree/master/packages/c-button",
16+
"repository": "https://github.com/chakra-ui/chakra-ui-vue-next/tree/main/packages/c-button",
1717
"author": "Jonathan Bakebwa [email protected]",
1818
"license": "MIT",
1919
"scripts": {

0 commit comments

Comments
 (0)