Skip to content

Commit 7dcac43

Browse files
committed
Merge branch 'v3-test' of https://github.com/creativetimofficial/material-tailwind into v3-test
2 parents 905a70d + 011a7b6 commit 7dcac43

35 files changed

+884
-3630
lines changed

apps/site/src/app/docs/content/html/accordion.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ Create visually distinct disabled sections using Tailwind CSS opacity and cursor
7070
## Required Script
7171
Add these scripts to the bottom of your HTML:
7272

73-
<CodePreviewTailwindClasses codeSnippet={`<script src="https://unpkg.com/@material-tailwind/[email protected].4/dist/material-tailwind.min.js" defer></script>`}/>
73+
<CodePreviewTailwindClasses codeSnippet={`<script src="https://unpkg.com/@material-tailwind/[email protected].5/dist/material-tailwind.umd.min.js" defer></script>`}/>

apps/site/src/app/docs/content/html/alert.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,4 @@ Design rich content alerts using Tailwind CSS grid and typography classes. Perfe
9191
## Required Script
9292
Add these scripts to the bottom of your HTML:
9393

94-
<CodePreviewTailwindClasses codeSnippet={`<script src="https://unpkg.com/@material-tailwind/[email protected].4/dist/material-tailwind.min.js" defer></script>`}/>
94+
<CodePreviewTailwindClasses codeSnippet={`<script src="https://unpkg.com/@material-tailwind/[email protected].5/dist/material-tailwind.umd.min.js" defer></script>`}/>

apps/site/src/app/docs/content/html/collapse.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ Check out this example on how to design a responsive collapse component tailored
5454
## Required Script
5555
Add these scripts to the bottom of your HTML:
5656

57-
<CodePreviewTailwindClasses codeSnippet={`<script src="https://unpkg.com/@material-tailwind/[email protected].4/dist/material-tailwind.min.js" defer></script>`}/>
57+
<CodePreviewTailwindClasses codeSnippet={`<script src="https://unpkg.com/@material-tailwind/[email protected].5/dist/material-tailwind.umd.min.js" defer></script>`}/>

apps/site/src/app/docs/content/html/dialog.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ Build attention-grabbing notification dialogs using Tailwind CSS color utilities
6464

6565
The dialog component requires a script for handling open/close states, keyboard navigation, and click-outside behavior. Add this script to your HTML file for proper functionality.
6666

67-
<CodePreviewTailwindClasses codeSnippet={`<script src="https://unpkg.com/@material-tailwind/[email protected].4/dist/material-tailwind.min.js" defer></script>`}/>
67+
<CodePreviewTailwindClasses codeSnippet={`<script src="https://unpkg.com/@material-tailwind/[email protected].5/dist/material-tailwind.umd.min.js" defer></script>`}/>

apps/site/src/app/docs/content/html/dropdown.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,4 +98,4 @@ Create user profile menus using Tailwind CSS flex and typography utilities. Comb
9898

9999
The dropdown component requires a script for handling open/close states, keyboard navigation, and click-outside behavior. Add this script to your HTML file for proper functionality.
100100

101-
<CodePreviewTailwindClasses codeSnippet={`<script src="https://unpkg.com/@material-tailwind/[email protected].4/dist/material-tailwind.min.js" defer></script>`}/>
101+
<CodePreviewTailwindClasses codeSnippet={`<script src="https://unpkg.com/@material-tailwind/[email protected].5/dist/material-tailwind.umd.min.js" defer></script>`}/>

apps/site/src/app/docs/content/html/gallery.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ Build categorized galleries using Tailwind CSS tab utilities. Organize images in
7777
## Required Script
7878
Add these scripts to the bottom of your HTML:
7979

80-
<CodePreviewTailwindClasses codeSnippet={`<script src="https://unpkg.com/@material-tailwind/[email protected].4/dist/material-tailwind.min.js" defer></script>`}/>
80+
<CodePreviewTailwindClasses codeSnippet={`<script src="https://unpkg.com/@material-tailwind/[email protected].5/dist/material-tailwind.umd.min.js" defer></script>`}/>

apps/site/src/app/docs/content/html/input.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Explore our responsive input components with three distinct size options using T
3636

3737
## Input Color
3838

39-
Transform your forms with our collection of beautifully styled input components using Tailwind CSS. Each input showcases different focus states with custom colors: `bg-slate-800`, `bg-slate-200`, `bg-blue-500`, `bg-green-500`, `bg-red-500`, and `bg-amber-500`, allowing you to match your brand's visual identity.
39+
Transform your forms with our collection of beautifully styled input components using Tailwind CSS. Each input showcases different focus states with custom colors: `border-slate-800`, `border-slate-200`, `border-blue-500`, `border-green-500`, `border-red-500`, and `border-amber-500`, allowing you to match your brand's visual identity.
4040

4141
<PreviewWithCode relativePath="input/input-colors.tsx" language="html" />
4242

@@ -95,7 +95,7 @@ Implement clear visual feedback for non-interactive form fields with this disabl
9595
<PreviewWithCode relativePath="input/input-disabled.tsx" language="html" />
9696

9797
<p class="mt-4 antialiased text-foreground">
98-
The input is explicitly marked as disabled (`disabled attribute`), which prevents user interaction. The styling reflects this state by altering the border and background color (`disabled:border-0 disabled:bg-blue-gray-50`), making it visually distinct from active input fields. This design choice helps users recognize that the input is not currently available for interaction.
98+
The input is explicitly marked as disabled (`disabled attribute`), which prevents user interaction. The styling reflects this state by altering the border and background color (`disabled:border-0 disabled:bg-slate-50`), making it visually distinct from active input fields. This design choice helps users recognize that the input is not currently available for interaction.
9999
</p>
100100
---
101101

apps/site/src/app/docs/content/html/installation.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ Quick start with Material Tailwind using CDN integration:
248248
<meta name="viewport" content="width=device-width, initial-scale=1.0">
249249
<title>Material Tailwind Example</title>
250250
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
251-
<script src="https://unpkg.com/@material-tailwind/[email protected].4/dist/material-tailwind.min.js"></script>
251+
<script src="https://unpkg.com/@material-tailwind/[email protected].5/dist/material-tailwind.umd.min.js"></script>
252252
</head>
253253
<body>
254254
<div role="alert" class="relative flex items-start w-full border rounded-md p-2 bg-slate-800 border-slate-800 text-slate-50">

apps/site/src/app/docs/content/html/menu.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Need a searchable menu? This component integrates Tailwind CSS form utilities wi
6666

6767
The modal component needs a script for handling open/close states and keyboard interactions. Add this script to the bottom of your HTML file for proper functionality.
6868

69-
<CodePreviewTailwindClasses codeSnippet={`<script src="https://unpkg.com/@material-tailwind/[email protected].4/dist/material-tailwind.min.js" defer></script>`}/>
69+
<CodePreviewTailwindClasses codeSnippet={`<script src="https://unpkg.com/@material-tailwind/[email protected].5/dist/material-tailwind.umd.min.js" defer></script>`}/>
7070

7171
---
7272
## Navbar Best Practices for Developers

apps/site/src/app/docs/content/html/modal.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,4 @@ Create attention-grabbing alerts using Tailwind CSS color utilities. Choose from
8080

8181
The modal component needs a script for handling open/close states and keyboard interactions. Add this script to the bottom of your HTML file for proper functionality.
8282

83-
<CodePreviewTailwindClasses codeSnippet={`<script src="https://unpkg.com/@material-tailwind/[email protected].4/dist/material-tailwind.min.js" defer></script>`}/>
83+
<CodePreviewTailwindClasses codeSnippet={`<script src="https://unpkg.com/@material-tailwind/[email protected].5/dist/material-tailwind.umd.min.js" defer></script>`}/>

0 commit comments

Comments
 (0)