Skip to content

Commit

Permalink
Merge branch 'main' into refactor/tailwind-components
Browse files Browse the repository at this point in the history
  • Loading branch information
elevatebart committed Sep 18, 2024
2 parents d74d44c + c209bd1 commit 0f0a4f3
Show file tree
Hide file tree
Showing 11 changed files with 86 additions and 20 deletions.
7 changes: 0 additions & 7 deletions .changeset/spicy-readers-tickle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ten-geckos-worry.md

This file was deleted.

20 changes: 20 additions & 0 deletions components/Icon/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @cypress-design/react-icon

## 1.5.1

### Patch Changes

- [`8978535`](https://github.com/cypress-io/cypress-design/commit/8978535a3e4f9893fc269a8fa4364cab6afc88c8) Thanks [@elevatebart](https://github.com/elevatebart)! - add export secondary color

- Updated dependencies [[`8978535`](https://github.com/cypress-io/cypress-design/commit/8978535a3e4f9893fc269a8fa4364cab6afc88c8)]:
- @cypress-design/icon-registry@1.5.1

## 1.5.0

### Minor Changes

- [#492](https://github.com/cypress-io/cypress-design/pull/492) [`8e60c20`](https://github.com/cypress-io/cypress-design/commit/8e60c203d6d4b41f7367990624726b44c5c58f89) Thanks [@emilmilanov](https://github.com/emilmilanov)! - Added are Accessibility icons variations: size 12x and 16x outline

### Patch Changes

- Updated dependencies [[`8e60c20`](https://github.com/cypress-io/cypress-design/commit/8e60c203d6d4b41f7367990624726b44c5c58f89), [`e05fd51`](https://github.com/cypress-io/cypress-design/commit/e05fd5175cb67542ec45fa4b2813a37709472645)]:
- @cypress-design/icon-registry@1.5.0

## 1.4.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion components/Icon/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cypress-design/react-icon",
"version": "1.4.9",
"version": "1.5.1",
"files": [
"*"
],
Expand Down
20 changes: 20 additions & 0 deletions components/Icon/vue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @cypress-design/vue-icon

## 1.5.1

### Patch Changes

- [`8978535`](https://github.com/cypress-io/cypress-design/commit/8978535a3e4f9893fc269a8fa4364cab6afc88c8) Thanks [@elevatebart](https://github.com/elevatebart)! - add export secondary color

- Updated dependencies [[`8978535`](https://github.com/cypress-io/cypress-design/commit/8978535a3e4f9893fc269a8fa4364cab6afc88c8)]:
- @cypress-design/icon-registry@1.5.1

## 1.5.0

### Minor Changes

- [#492](https://github.com/cypress-io/cypress-design/pull/492) [`8e60c20`](https://github.com/cypress-io/cypress-design/commit/8e60c203d6d4b41f7367990624726b44c5c58f89) Thanks [@emilmilanov](https://github.com/emilmilanov)! - Added are Accessibility icons variations: size 12x and 16x outline

### Patch Changes

- Updated dependencies [[`8e60c20`](https://github.com/cypress-io/cypress-design/commit/8e60c203d6d4b41f7367990624726b44c5c58f89), [`e05fd51`](https://github.com/cypress-io/cypress-design/commit/e05fd5175cb67542ec45fa4b2813a37709472645)]:
- @cypress-design/icon-registry@1.5.0

## 1.4.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion components/Icon/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cypress-design/vue-icon",
"version": "1.4.9",
"version": "1.5.1",
"files": [
"*"
],
Expand Down
10 changes: 8 additions & 2 deletions docs/src/ColorSelector.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts" setup>
import { WindiColor } from '@cypress-design/vue-icon'
const emit = defineEmits<{
(event: 'update:modelValue', value: WindiColor): void
(event: 'update:modelValue', value?: WindiColor): void
}>()
defineProps<{
Expand All @@ -10,7 +10,11 @@ defineProps<{
function emitValue(event: Event) {
const value = (event.target as HTMLSelectElement).value
emit('update:modelValue', value as WindiColor)
if (value === 'default') {
emit('update:modelValue', undefined)
} else {
emit('update:modelValue', value as WindiColor)
}
}
</script>

Expand All @@ -21,6 +25,8 @@ function emitValue(event: Event) {
@change="emitValue"
>
<option></option>
<option value="default">default</option>
<option value="transparent">transparent</option>
<option value="indigo-300">indigo</option>
<option value="jade-300">jade</option>
<option value="red-300">red</option>
Expand Down
16 changes: 16 additions & 0 deletions icon-registry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @cypress-design/icon-registry

## 1.5.1

### Patch Changes

- [`8978535`](https://github.com/cypress-io/cypress-design/commit/8978535a3e4f9893fc269a8fa4364cab6afc88c8) Thanks [@elevatebart](https://github.com/elevatebart)! - add export secondary color

## 1.5.0

### Minor Changes

- [#492](https://github.com/cypress-io/cypress-design/pull/492) [`8e60c20`](https://github.com/cypress-io/cypress-design/commit/8e60c203d6d4b41f7367990624726b44c5c58f89) Thanks [@emilmilanov](https://github.com/emilmilanov)! - Added are Accessibility icons variations: size 12x and 16x outline

### Patch Changes

- [#494](https://github.com/cypress-io/cypress-design/pull/494) [`e05fd51`](https://github.com/cypress-io/cypress-design/commit/e05fd5175cb67542ec45fa4b2813a37709472645) Thanks [@emilyrohrbough](https://github.com/emilyrohrbough)! - add technology-magnifying-glass-no-results icon

## 1.4.9

### Patch Changes
Expand Down
9 changes: 9 additions & 0 deletions icon-registry/icons-static/action-export-small_x16.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 10 additions & 3 deletions icon-registry/icons-static/action-export_x16.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion icon-registry/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cypress-design/icon-registry",
"version": "1.4.9",
"version": "1.5.1",
"description": "All svg files to be exposed to the Icon component",
"main": "dist/index.umd.js",
"module": "dist/index.es.mjs",
Expand Down

0 comments on commit 0f0a4f3

Please sign in to comment.