Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Commit bf5c1dd

Browse files
committed
feat: updated useModalData function in use-modal.ts
1 parent 3c18808 commit bf5c1dd

File tree

5 files changed

+28
-6
lines changed

5 files changed

+28
-6
lines changed

.idea/jsLibraryMappings.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/tailwindcss/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @codefixlabs/tailwindcss
22

3+
## 0.1.29
4+
5+
### Patch Changes
6+
7+
- Built-in container-queries
8+
39
## 0.1.28
410

511
### Patch Changes

packages/tailwindcss/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codefixlabs/tailwindcss",
3-
"version": "0.1.28",
3+
"version": "0.1.29",
44
"license": "MIT",
55
"sideEffects": false,
66
"exports": {
@@ -34,6 +34,7 @@
3434
]
3535
},
3636
"dependencies": {
37+
"@tailwindcss/container-queries": "^0.1.1",
3738
"@tailwindcss/typography": "^0.5.10",
3839
"tailwindcss": "^3.3.5"
3940
},

packages/tailwindcss/src/tailwind.config.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import type { Config } from 'tailwindcss';
22
import { fontFamily } from 'tailwindcss/defaultTheme';
33
import plugin from 'tailwindcss/plugin';
44
import typography from '@tailwindcss/typography';
5+
import containerQueries from '@tailwindcss/container-queries';
56
import { em } from '@/lib/utils';
67

78
export const sharedConfig: Config = {
@@ -26,6 +27,7 @@ export const sharedConfig: Config = {
2627
});
2728
}),
2829
typography,
30+
containerQueries,
2931
],
3032
theme: {
3133
extend: {

pnpm-lock.yaml

Lines changed: 17 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)