This repository has been archived by the owner on Sep 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #280 from chakra-ui/develop
release @chakra-ui/[email protected]
- Loading branch information
Showing
87 changed files
with
1,796 additions
and
143 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
"@chakra-ui/vue-composables": minor | ||
"@chakra-ui/c-close-button": minor | ||
"@chakra-ui/c-form-control": minor | ||
"@chakra-ui/c-live-region": minor | ||
"@chakra-ui/c-media-query": minor | ||
"@chakra-ui/c-scroll-lock": minor | ||
"@chakra-ui/c-breadcrumb": minor | ||
"@chakra-ui/c-accordion": minor | ||
"@chakra-ui/c-pin-input": minor | ||
"@chakra-ui/c-checkbox": minor | ||
"@chakra-ui/c-skip-nav": minor | ||
"@chakra-ui/c-textarea": minor | ||
"@chakra-ui/c-spinner": minor | ||
"@chakra-ui/c-avatar": minor | ||
"@chakra-ui/c-button": minor | ||
"@chakra-ui/c-motion": minor | ||
"@chakra-ui/vue-accessibilty": minor | ||
"@chakra-ui/c-alert": minor | ||
"@chakra-ui/c-image": minor | ||
"@chakra-ui/c-input": minor | ||
"@chakra-ui/c-modal": minor | ||
"@chakra-ui/c-table": minor | ||
"@chakra-ui/c-code": minor | ||
"@chakra-ui/c-menu": minor | ||
"@chakra-ui/vue-layout": minor | ||
"@chakra-ui/vue-system": minor | ||
"@chakra-ui/c-tag": minor | ||
"@chakra-ui/vue-utils": minor | ||
"@chakra-ui/vue-next": minor | ||
--- | ||
|
||
Create Live Region, Textarea and useBreakpoint and useBreakpointValue hooks and | ||
components |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,29 +4,37 @@ to: packages/<%=h.changeCase.paramCase(name)%>/package.json | |
|
||
{ | ||
"name": "<%= '@chakra-ui/' + h.changeCase.paramCase(name)%>", | ||
"version": "0.0.0-next.0", | ||
"main": "<%= 'dist/chakra-ui-' + h.changeCase.paramCase(name) + '.cjs.js' %>", | ||
"module": "<%= 'dist/chakra-ui-' + h.changeCase.paramCase(name) + '.esm.js' %>", | ||
"description": "<%= 'Chakra UI Vue | ' + h.changeCase.pascalCase(name) + ' module'%>", | ||
"repository": "https://github.com/chakra-ui/chakra-ui-vue-next.git", | ||
"author": "Jonathan Bakebwa [email protected]", | ||
"version": "0.0.0-beta.0", | ||
"license": "MIT", | ||
"main": "dist/index.js", | ||
"module": "dist/index.mjs", | ||
"typings": "dist/index.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"exports": { | ||
".": { | ||
"require": "<%= './dist/chakra-ui-' + h.changeCase.paramCase(name) + '.cjs.js' %>", | ||
"default": "<%= './dist/chakra-ui-' + h.changeCase.paramCase(name) + '.esm.js' %>" | ||
"require": "./dist/index.js", | ||
"default": "./dist/index.mjs" | ||
} | ||
}, | ||
"description": "<%= 'Chakra UI Vue | ' + h.changeCase.pascalCase(name) + ' module'%>", | ||
"repository": "https://github.com/chakra-ui/chakra-ui-vue-next.git", | ||
"author": "Jonathan Bakebwa [email protected]", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/chakra-ui/chakra-ui-vue-next.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/chakra-ui/chakra-ui-vue-next/issues" | ||
}, | ||
"sideEffects": false, | ||
"scripts": { | ||
"build": "rimraf ./dist && concurrently yarn:build:*", | ||
"build:esm": "cross-env BABEL_ENV=esm babel src --root-mode upward --extensions .ts,.tsx -d dist/esm --source-maps", | ||
"build:cjs": "cross-env BABEL_ENV=cjs babel src --root-mode upward --extensions .ts,.tsx -d dist/cjs --source-maps", | ||
"watch": "concurrently yarn:watch:*", | ||
"watch:esm": "cross-env BABEL_ENV=esm babel src --root-mode upward --extensions .ts,.tsx -d dist/esm --source-maps --watch", | ||
"watch:cjs": "cross-env BABEL_ENV=cjs babel src --root-mode upward --extensions .ts,.tsx -d dist/cjs --source-maps --watch", | ||
"watch:types": "cross-env tsc --emitDeclarationOnly --declaration --declarationDir dist/types --watch --incremental" | ||
"clean": "rimraf dist .turbo", | ||
"build": "tsup && pnpm build:types", | ||
"build:fast": "tsup", | ||
"build:types": "tsup src --dts-only", | ||
"types:check": "tsc --noEmit", | ||
"dev": "tsup --watch" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,29 +5,28 @@ to: tooling/<%=h.changeCase.paramCase(name)%>/package.json | |
{ | ||
"name": "<%= '@chakra-ui/' + h.changeCase.paramCase(name)%>", | ||
"version": "1.0.0", | ||
"main": "dist/cjs/index.js", | ||
"module": "dist/esm/index.js", | ||
"main": "dist/index.js", | ||
"module": "dist/index.mjs", | ||
"typings": "dist/index.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"exports": { | ||
".": { | ||
"require": "./dist/cjs/index.js", | ||
"default": "./dist/esm/index.js" | ||
"require": "./dist/index.js", | ||
"default": "./dist/index.mjs" | ||
} | ||
}, | ||
"description": "<%= 'Chakra UI Vue | ' + h.changeCase.pascalCase(name) + ' module'%>", | ||
"repository": "https://github.com/chakra-ui/chakra-ui-vue-next.git", | ||
"author": "Jonathan Bakebwa [email protected]", | ||
"license": "MIT", | ||
"scripts": { | ||
"build": "rimraf ./dist && concurrently yarn:build:*", | ||
"build:esm": "cross-env BABEL_ENV=esm babel src --root-mode upward --extensions .ts,.tsx -d dist/esm --source-maps", | ||
"build:cjs": "cross-env BABEL_ENV=cjs babel src --root-mode upward --extensions .ts,.tsx -d dist/cjs --source-maps", | ||
"build:types": "cross-env tsc --emitDeclarationOnly --declaration --declarationDir dist/types", | ||
"watch": "concurrently yarn:watch:*", | ||
"watch:esm": "cross-env BABEL_ENV=esm babel src --root-mode upward --extensions .ts,.tsx -d dist/esm --source-maps --watch", | ||
"watch:cjs": "cross-env BABEL_ENV=cjs babel src --root-mode upward --extensions .ts,.tsx -d dist/cjs --source-maps --watch", | ||
"watch:types": "cross-env tsc --emitDeclarationOnly --declaration --declarationDir dist/types --watch --incremental" | ||
"clean": "rimraf dist .turbo", | ||
"build": "tsup && pnpm build:types", | ||
"build:fast": "tsup", | ||
"build:types": "tsup src --dts-only", | ||
"types:check": "tsc --noEmit", | ||
"dev": "tsup --watch" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# `@chakra-ui/c-live-region` | ||
|
||
Creates a hidden live region with dynamic content based on triggered events to be read out by the screen reader on change of the content | ||
|
||
## Installation | ||
|
||
```sh | ||
# with pnpm | ||
pnpm add @chakra-ui/c-live-region | ||
# or with Yarn | ||
yarn i @chakra-ui/c-live-region | ||
# or with npm | ||
npm i @chakra-ui/c-live-region | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<template> | ||
<button @click="region.speak('Filtering categories was successful')"> | ||
Click Me | ||
</button> | ||
</template> | ||
<script setup lang="ts"> | ||
import { useLiveRegion } from "../src/use-live-region" | ||
const region = useLiveRegion() | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from "./src" |
Oops, something went wrong.