Skip to content

Commit

Permalink
fix: normalize 'status' field values to lowercase across multiple fil…
Browse files Browse the repository at this point in the history
…es (#2947)

* fix(status): normalize 'status' value to lowercase in page.tsx

* fix(status): normalize 'status' value to lowercase in use-case.ts

* fix(status): normalize 'status' value to lowercase in custom-render-value.ts

* fix(status): normalize 'status' value to lowercase in top-content.ts

* fix(status): normalize 'status' value to lowercase in multiple-chips.ts

* fix(status): normalize 'status' value to lowercase in custom-items.ts

* fix(status): normalize 'status' value to lowercase in data.ts

* fix(status): normalize 'status' value to lowercase in custom-styles.ts

* fix(status): normalize 'status' value to lowercase in page.tsx

* fix(status): normalize 'status' value to lowercase in custom-styles.ts

* fix(status): normalize 'status' value to lowercase in custom-items.ts

* fix(status): normalize 'status' value to lowercase in page.tsx

* fix(status): normalize 'status' value to lowercase in custom-styles.ts
  • Loading branch information
codeesura committed Jul 18, 2024
1 parent 1fdbf2a commit 7d61cf3
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion apps/docs/app/examples/perf/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ const usersData = [
age: "29",
avatar: "https://d2u8k2ocievbld.cloudfront.net/memojis/male/3.png",
email: "[email protected]",
status: "Active",
status: "active",
},
{
id: 7,
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/app/examples/table/custom-styles/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const users = [
age: "29",
avatar: "https://i.pravatar.cc/150?u=a042581f4e29026024d",
email: "[email protected]",
status: "Active",
status: "active",
},
{
id: 7,
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/app/examples/table/use-case/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const users = [
age: "29",
avatar: "https://i.pravatar.cc/150?u=a042581f4e29026024d",
email: "[email protected]",
status: "Active",
status: "active",
},
{
id: 7,
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/components/autocomplete/custom-items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const data = `export const users = [
age: "29",
avatar: "https://d2u8k2ocievbld.cloudfront.net/memojis/male/3.png",
email: "[email protected]",
status: "Active",
status: "active",
},
{
id: 7,
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/components/autocomplete/custom-styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const data = `export const users = [
age: "29",
avatar: "https://d2u8k2ocievbld.cloudfront.net/memojis/male/3.png",
email: "[email protected]",
status: "Active",
status: "active",
},
{
id: 7,
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/components/listbox/top-content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const data = `export const users = [
age: "29",
avatar: "https://d2u8k2ocievbld.cloudfront.net/memojis/male/3.png",
email: "[email protected]",
status: "Active",
status: "active",
},
{
id: 7,
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/components/select/custom-items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const data = `export const users = [
age: "29",
avatar: "https://d2u8k2ocievbld.cloudfront.net/memojis/male/3.png",
email: "[email protected]",
status: "Active",
status: "active",
},
{
id: 7,
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/components/select/custom-render-value.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const data = `export const users = [
age: "29",
avatar: "https://d2u8k2ocievbld.cloudfront.net/memojis/male/3.png",
email: "[email protected]",
status: "Active",
status: "active",
},
{
id: 7,
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/components/select/custom-styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const data = `export const users = [
age: "29",
avatar: "https://d2u8k2ocievbld.cloudfront.net/memojis/male/3.png",
email: "[email protected]",
status: "Active",
status: "active",
},
{
id: 7,
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/components/select/multiple-chips.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const data = `export const users = [
age: "29",
avatar: "https://d2u8k2ocievbld.cloudfront.net/memojis/male/3.png",
email: "[email protected]",
status: "Active",
status: "active",
},
{
id: 7,
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/components/table/custom-styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const users = [
age: "29",
avatar: "https://i.pravatar.cc/150?u=a042581f4e29026024d",
email: "[email protected]",
status: "Active",
status: "active",
},
{
id: 7,
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/components/table/use-case.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const users = [
age: "29",
avatar: "https://i.pravatar.cc/150?u=a042581f4e29026024d",
email: "[email protected]",
status: "Active",
status: "active",
},
{
id: 7,
Expand Down
2 changes: 1 addition & 1 deletion packages/utilities/stories-utils/src/mocks/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export const usersData: User[] = [
age: "29",
avatar: "https://d2u8k2ocievbld.cloudfront.net/memojis/male/3.png",
email: "[email protected]",
status: "Active",
status: "active",
},
{
id: 7,
Expand Down

0 comments on commit 7d61cf3

Please sign in to comment.