From 61f9ad43e804d87d55b669d23db7a755faa3b7cb Mon Sep 17 00:00:00 2001 From: Jared Scott Date: Mon, 9 Sep 2024 10:00:06 +0800 Subject: [PATCH] chore: #5644 Fix typing --- components/doc/calendar/floatlabeldoc.js | 2 +- components/doc/cascadeselect/floatlabeldoc.js | 2 +- components/doc/chips/floatlabeldoc.js | 2 +- components/doc/dropdown/floatlabeldoc.js | 2 +- components/doc/floatlabel/basicdoc.js | 2 +- components/doc/inputmask/floatlabeldoc.js | 2 +- components/doc/inputnumber/floatlabeldoc.js | 2 +- components/doc/inputtext/floatlabeldoc.js | 2 +- components/doc/inputtextarea/floatlabeldoc.js | 2 +- components/doc/multiselect/floatlabeldoc.js | 2 +- components/doc/password/floatlabeldoc.js | 2 +- components/doc/treeselect/floatlabeldoc.js | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/components/doc/calendar/floatlabeldoc.js b/components/doc/calendar/floatlabeldoc.js index c1bbd98a8e..e56f588daa 100644 --- a/components/doc/calendar/floatlabeldoc.js +++ b/components/doc/calendar/floatlabeldoc.js @@ -1,7 +1,7 @@ import { DocSectionCode } from '@/components/doc/common/docsectioncode'; import { DocSectionText } from '@/components/doc/common/docsectiontext'; import { Calendar } from '@/components/lib/calendar/Calendar'; -import { FloatLabel } from '@/components/lib/floatlabel/floatlabel'; +import { FloatLabel } from '@/components/lib/floatlabel/Floatlabel'; import Link from 'next/link'; import { useState } from 'react'; diff --git a/components/doc/cascadeselect/floatlabeldoc.js b/components/doc/cascadeselect/floatlabeldoc.js index 70c5b9ad71..a6d3834a3f 100644 --- a/components/doc/cascadeselect/floatlabeldoc.js +++ b/components/doc/cascadeselect/floatlabeldoc.js @@ -1,7 +1,7 @@ import { DocSectionCode } from '@/components/doc/common/docsectioncode'; import { DocSectionText } from '@/components/doc/common/docsectiontext'; import { CascadeSelect } from '@/components/lib/cascadeselect/CascadeSelect'; -import { FloatLabel } from '@/components/lib/floatlabel/floatlabel'; +import { FloatLabel } from '@/components/lib/floatlabel/FloatLabel'; import Link from 'next/link'; import { useState } from 'react'; diff --git a/components/doc/chips/floatlabeldoc.js b/components/doc/chips/floatlabeldoc.js index 9c17dfa8af..b4ac07f74c 100644 --- a/components/doc/chips/floatlabeldoc.js +++ b/components/doc/chips/floatlabeldoc.js @@ -1,7 +1,7 @@ import { DocSectionCode } from '@/components/doc/common/docsectioncode'; import { DocSectionText } from '@/components/doc/common/docsectiontext'; import { Chips } from '@/components/lib/chips/Chips'; -import { FloatLabel } from '@/components/lib/floatlabel/floatlabel'; +import { FloatLabel } from '@/components/lib/floatlabel/Floatlabel'; import Link from 'next/link'; import { useState } from 'react'; diff --git a/components/doc/dropdown/floatlabeldoc.js b/components/doc/dropdown/floatlabeldoc.js index 49008d937b..cca37352b7 100644 --- a/components/doc/dropdown/floatlabeldoc.js +++ b/components/doc/dropdown/floatlabeldoc.js @@ -1,7 +1,7 @@ import { DocSectionCode } from '@/components/doc/common/docsectioncode'; import { DocSectionText } from '@/components/doc/common/docsectiontext'; import { Dropdown } from '@/components/lib/dropdown/Dropdown'; -import { FloatLabel } from '@/components/lib/floatlabel/floatlabel'; +import { FloatLabel } from '@/components/lib/floatlabel/Floatlabel'; import { useState } from 'react'; export function FloatLabelDoc(props) { diff --git a/components/doc/floatlabel/basicdoc.js b/components/doc/floatlabel/basicdoc.js index e2a8378ec8..13d093bab2 100644 --- a/components/doc/floatlabel/basicdoc.js +++ b/components/doc/floatlabel/basicdoc.js @@ -1,6 +1,6 @@ import { DocSectionCode } from '@/components/doc/common/docsectioncode'; import { DocSectionText } from '@/components/doc/common/docsectiontext'; -import { FloatLabel } from '@/components/lib/floatlabel/floatlabel'; +import { FloatLabel } from '@/components/lib/floatlabel/Floatlabel'; import { InputText } from '@/components/lib/inputtext/InputText'; import { useState } from 'react'; diff --git a/components/doc/inputmask/floatlabeldoc.js b/components/doc/inputmask/floatlabeldoc.js index d0f6ea9ab9..5cf0b19c65 100644 --- a/components/doc/inputmask/floatlabeldoc.js +++ b/components/doc/inputmask/floatlabeldoc.js @@ -1,6 +1,6 @@ import { DocSectionCode } from '@/components/doc/common/docsectioncode'; import { DocSectionText } from '@/components/doc/common/docsectiontext'; -import { FloatLabel } from '@/components/lib/floatlabel/floatlabel'; +import { FloatLabel } from '@/components/lib/floatlabel/Floatlabel'; import { InputMask } from '@/components/lib/inputmask/InputMask'; import Link from 'next/link'; import { useState } from 'react'; diff --git a/components/doc/inputnumber/floatlabeldoc.js b/components/doc/inputnumber/floatlabeldoc.js index 051801d7d9..2ad3a0e457 100644 --- a/components/doc/inputnumber/floatlabeldoc.js +++ b/components/doc/inputnumber/floatlabeldoc.js @@ -1,6 +1,6 @@ import { DocSectionCode } from '@/components/doc/common/docsectioncode'; import { DocSectionText } from '@/components/doc/common/docsectiontext'; -import { FloatLabel } from '@/components/lib/floatlabel/floatlabel'; +import { FloatLabel } from '@/components/lib/floatlabel/Floatlabel'; import { InputNumber } from '@/components/lib/inputnumber/InputNumber'; import Link from 'next/link'; import { useState } from 'react'; diff --git a/components/doc/inputtext/floatlabeldoc.js b/components/doc/inputtext/floatlabeldoc.js index b44c8e9e55..d02ebb9f37 100644 --- a/components/doc/inputtext/floatlabeldoc.js +++ b/components/doc/inputtext/floatlabeldoc.js @@ -1,6 +1,6 @@ import { DocSectionCode } from '@/components/doc/common/docsectioncode'; import { DocSectionText } from '@/components/doc/common/docsectiontext'; -import { FloatLabel } from '@/components/lib/floatlabel/floatlabel'; +import { FloatLabel } from '@/components/lib/floatlabel/Floatlabel'; import { InputText } from '@/components/lib/inputtext/InputText'; import Link from 'next/link'; import { useState } from 'react'; diff --git a/components/doc/inputtextarea/floatlabeldoc.js b/components/doc/inputtextarea/floatlabeldoc.js index 67afad410b..540b802e66 100644 --- a/components/doc/inputtextarea/floatlabeldoc.js +++ b/components/doc/inputtextarea/floatlabeldoc.js @@ -1,6 +1,6 @@ import { DocSectionCode } from '@/components/doc/common/docsectioncode'; import { DocSectionText } from '@/components/doc/common/docsectiontext'; -import { FloatLabel } from '@/components/lib/floatlabel/floatlabel'; +import { FloatLabel } from '@/components/lib/floatlabel/Floatlabel'; import { InputTextarea } from '@/components/lib/inputtextarea/InputTextarea'; import Link from 'next/link'; import { useState } from 'react'; diff --git a/components/doc/multiselect/floatlabeldoc.js b/components/doc/multiselect/floatlabeldoc.js index 17f4af5fc6..e9fb8f55b1 100644 --- a/components/doc/multiselect/floatlabeldoc.js +++ b/components/doc/multiselect/floatlabeldoc.js @@ -1,6 +1,6 @@ import { DocSectionCode } from '@/components/doc/common/docsectioncode'; import { DocSectionText } from '@/components/doc/common/docsectiontext'; -import { FloatLabel } from '@/components/lib/floatlabel/floatlabel'; +import { FloatLabel } from '@/components/lib/floatlabel/Floatlabel'; import { MultiSelect } from '@/components/lib/multiselect/MultiSelect'; import Link from 'next/link'; import { useState } from 'react'; diff --git a/components/doc/password/floatlabeldoc.js b/components/doc/password/floatlabeldoc.js index e4ed5c7356..8717196328 100644 --- a/components/doc/password/floatlabeldoc.js +++ b/components/doc/password/floatlabeldoc.js @@ -1,6 +1,6 @@ import { DocSectionCode } from '@/components/doc/common/docsectioncode'; import { DocSectionText } from '@/components/doc/common/docsectiontext'; -import { FloatLabel } from '@/components/lib/floatlabel/floatlabel'; +import { FloatLabel } from '@/components/lib/floatlabel/Floatlabel'; import { Password } from '@/components/lib/password/Password'; import Link from 'next/link'; import { useState } from 'react'; diff --git a/components/doc/treeselect/floatlabeldoc.js b/components/doc/treeselect/floatlabeldoc.js index 1bd2c4f3f7..ac18691710 100644 --- a/components/doc/treeselect/floatlabeldoc.js +++ b/components/doc/treeselect/floatlabeldoc.js @@ -1,6 +1,6 @@ import { DocSectionCode } from '@/components/doc/common/docsectioncode'; import { DocSectionText } from '@/components/doc/common/docsectiontext'; -import { FloatLabel } from '@/components/lib/floatlabel/floatlabel'; +import { FloatLabel } from '@/components/lib/floatlabel/Floatlabel'; import { TreeSelect } from '@/components/lib/treeselect/TreeSelect'; import Link from 'next/link'; import { useEffect, useState } from 'react';