@syscore/ui-library 1.11.2 → 1.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/components/icons/achievement-badges/BadgeCertificationBronze.tsx +103 -0
- package/client/components/icons/achievement-badges/BadgeCertificationGold.tsx +103 -0
- package/client/components/icons/achievement-badges/BadgeCertificationPlatinum.tsx +103 -0
- package/client/components/icons/achievement-badges/BadgeCertificationSilver.tsx +103 -0
- package/client/components/icons/achievement-badges/BadgeRatingCoworking.tsx +59 -0
- package/client/components/icons/achievement-badges/BadgeRatingDesign.tsx +59 -0
- package/client/components/icons/achievement-badges/BadgeRatingEquity.tsx +59 -0
- package/client/components/icons/achievement-badges/BadgeRatingHealthySafety.tsx +63 -0
- package/client/components/icons/achievement-badges/BadgeRatingOperations.tsx +63 -0
- package/client/components/icons/achievement-badges/BadgeRatingPerformance.tsx +63 -0
- package/client/components/icons/achievement-badges/BadgeRatingRealEstate.tsx +63 -0
- package/client/components/icons/achievement-badges/BadgeRatingResidential.tsx +63 -0
- package/client/components/icons/achievement-badges/BadgeRatingWorkforce.tsx +59 -0
- package/client/components/icons/achievement-badges/index.tsx +13 -0
- package/client/components/icons/provider-badges/BadgeEnterpriseProvider.tsx +72 -0
- package/client/components/icons/provider-badges/BadgePerformanceTestingProvider.tsx +76 -0
- package/client/components/icons/provider-badges/BadgeProductProvider.tsx +72 -0
- package/client/components/icons/provider-badges/BadgeSurveyProvider.tsx +72 -0
- package/client/components/icons/provider-badges/index.tsx +4 -0
- package/client/components/icons/provider-seals/SealEnterpriseProvider.tsx +67 -0
- package/client/components/icons/provider-seals/SealPerformanceTestingProvider.tsx +67 -0
- package/client/components/icons/provider-seals/SealProductProvider.tsx +63 -0
- package/client/components/icons/provider-seals/SealProviders.tsx +63 -0
- package/client/components/icons/provider-seals/SealSurveyProvider.tsx +63 -0
- package/client/components/icons/provider-seals/index.tsx +5 -0
- package/client/components/icons/seals/IWBILogo.tsx +169 -0
- package/client/components/icons/{SealIwbiMember.tsx → seals/SealIwbiMember.tsx} +1 -1
- package/client/components/icons/{SealWell.tsx → seals/SealWell.tsx} +1 -1
- package/client/components/icons/{SealWellCertification.tsx → seals/SealWellCertification.tsx} +1 -1
- package/client/components/icons/{SealWellCommunity.tsx → seals/SealWellCommunity.tsx} +1 -1
- package/client/components/icons/{SealWellResidence.tsx → seals/SealWellResidence.tsx} +1 -1
- package/client/components/icons/{SealWorksWithWell.tsx → seals/SealWorksWithWell.tsx} +1 -1
- package/client/components/icons/{WellSeal.tsx → seals/WellSeal.tsx} +1 -1
- package/client/components/icons/seals/index.tsx +8 -0
- package/client/components/icons/{WaterMarkWWWProducts.tsx → watermarks/WaterMarkWWWProducts.tsx} +1 -1
- package/client/components/icons/{WaterMarkWellProjects.tsx → watermarks/WaterMarkWellProjects.tsx} +1 -1
- package/client/components/icons/{WatermarkMemberOrg.tsx → watermarks/WatermarkMemberOrg.tsx} +1 -1
- package/client/components/icons/watermarks/index.tsx +3 -0
- package/client/components/ui/accordion.tsx +46 -32
- package/client/components/ui/navigation.tsx +32 -56
- package/client/global.css +7 -7
- package/client/ui/Icons.stories.tsx +105 -16
- package/client/ui/PageHeader.stories.tsx +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +59 -23
- package/dist/index.es.js +1822 -243
- package/package.json +1 -1
- package/client/components/icons/AchievementBadges.tsx +0 -33
- package/client/components/icons/ProviderBadges.tsx +0 -295
- package/client/components/icons/ProviderSeals.tsx +0 -319
- package/client/components/icons/SealHealthSafetyRating.tsx +0 -65
package/dist/index.d.ts
CHANGED
|
@@ -25,11 +25,23 @@ import { Avatar } from '../client/components/ui/avatar';
|
|
|
25
25
|
import { AvatarFallback } from '../client/components/ui/avatar';
|
|
26
26
|
import { AvatarImage } from '../client/components/ui/avatar';
|
|
27
27
|
import { Badge } from '../client/components/ui/badge';
|
|
28
|
-
import { BadgeCertificationBronze } from '../client/components/icons/
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
28
|
+
import { BadgeCertificationBronze } from '../client/components/icons/achievement-badges';
|
|
29
|
+
import { BadgeCertificationGold } from '../client/components/icons/achievement-badges';
|
|
30
|
+
import { BadgeCertificationPlatinum } from '../client/components/icons/achievement-badges';
|
|
31
|
+
import { BadgeCertificationSilver } from '../client/components/icons/achievement-badges';
|
|
32
|
+
import { BadgeEnterpriseProvider } from '../client/components/icons/provider-badges';
|
|
33
|
+
import { BadgePerformanceTestingProvider } from '../client/components/icons/provider-badges';
|
|
34
|
+
import { BadgeProductProvider } from '../client/components/icons/provider-badges';
|
|
35
|
+
import { BadgeRatingCoworking } from '../client/components/icons/achievement-badges';
|
|
36
|
+
import { BadgeRatingDesign } from '../client/components/icons/achievement-badges';
|
|
37
|
+
import { BadgeRatingEquity } from '../client/components/icons/achievement-badges';
|
|
38
|
+
import { BadgeRatingHealthySafety } from '../client/components/icons/achievement-badges';
|
|
39
|
+
import { BadgeRatingOperations } from '../client/components/icons/achievement-badges';
|
|
40
|
+
import { BadgeRatingPerformance } from '../client/components/icons/achievement-badges';
|
|
41
|
+
import { BadgeRatingRealEstate } from '../client/components/icons/achievement-badges';
|
|
42
|
+
import { BadgeRatingResidential } from '../client/components/icons/achievement-badges';
|
|
43
|
+
import { BadgeRatingWorkforce } from '../client/components/icons/achievement-badges';
|
|
44
|
+
import { BadgeSurveyProvider } from '../client/components/icons/provider-badges';
|
|
33
45
|
import { badgeVariants } from '../client/components/ui/badge';
|
|
34
46
|
import { Breadcrumb } from '../client/components/ui/breadcrumb';
|
|
35
47
|
import { BreadcrumbItem } from '../client/components/ui/breadcrumb';
|
|
@@ -150,6 +162,7 @@ import { InputOTP } from '../client/components/ui/input-otp';
|
|
|
150
162
|
import { InputOTPGroup } from '../client/components/ui/input-otp';
|
|
151
163
|
import { InputOTPSeparator } from '../client/components/ui/input-otp';
|
|
152
164
|
import { InputOTPSlot } from '../client/components/ui/input-otp';
|
|
165
|
+
import { IWBILogo } from '../client/components/icons/seals';
|
|
153
166
|
import { Label } from '../client/components/ui/label';
|
|
154
167
|
import { Menubar } from '../client/components/ui/menubar';
|
|
155
168
|
import { MenubarCheckboxItem } from '../client/components/ui/menubar';
|
|
@@ -210,18 +223,17 @@ import { ResizablePanel } from '../client/components/ui/resizable';
|
|
|
210
223
|
import { ResizablePanelGroup } from '../client/components/ui/resizable';
|
|
211
224
|
import { ScrollArea } from '../client/components/ui/scroll-area';
|
|
212
225
|
import { ScrollBar } from '../client/components/ui/scroll-area';
|
|
213
|
-
import { SealEnterpriseProvider } from '../client/components/icons/
|
|
214
|
-
import { SealIwbiMember
|
|
215
|
-
import {
|
|
216
|
-
import {
|
|
217
|
-
import {
|
|
218
|
-
import {
|
|
219
|
-
import {
|
|
220
|
-
import {
|
|
221
|
-
import {
|
|
222
|
-
import {
|
|
223
|
-
import {
|
|
224
|
-
import { SealWorksWithWell } from '../client/components/icons/SealWorksWithWell';
|
|
226
|
+
import { SealEnterpriseProvider } from '../client/components/icons/provider-seals';
|
|
227
|
+
import { SealIwbiMember } from '../client/components/icons/seals';
|
|
228
|
+
import { SealPerformanceTestingProvider } from '../client/components/icons/provider-seals';
|
|
229
|
+
import { SealProductProvider } from '../client/components/icons/provider-seals';
|
|
230
|
+
import { SealProviders } from '../client/components/icons/provider-seals';
|
|
231
|
+
import { SealSurveyProvider } from '../client/components/icons/provider-seals';
|
|
232
|
+
import { SealWell } from '../client/components/icons/seals';
|
|
233
|
+
import { SealWellCertification } from '../client/components/icons/seals';
|
|
234
|
+
import { SealWellCommunity } from '../client/components/icons/seals';
|
|
235
|
+
import { SealWellResidence } from '../client/components/icons/seals';
|
|
236
|
+
import { SealWorksWithWell } from '../client/components/icons/seals';
|
|
225
237
|
import { SearchField } from '../client/components/ui/search';
|
|
226
238
|
import { Select } from '../client/components/ui/select';
|
|
227
239
|
import { SelectContent } from '../client/components/ui/select';
|
|
@@ -328,10 +340,10 @@ import { UtilityTargetActive } from '../client/components/icons/UtilityTargetAct
|
|
|
328
340
|
import { UtilityText } from '../client/components/icons/UtilityText';
|
|
329
341
|
import { UtilityTrash } from '../client/components/icons/UtilityTrash';
|
|
330
342
|
import { UtilityTriangleInfo } from '../client/components/icons/UtilityTriangleInfo';
|
|
331
|
-
import { WatermarkMemberOrg } from '../client/components/icons/
|
|
332
|
-
import { WaterMarkWellProjects } from '../client/components/icons/
|
|
333
|
-
import { WaterMarkWWWProducts } from '../client/components/icons/
|
|
334
|
-
import { WellSeal } from '../client/components/icons/
|
|
343
|
+
import { WatermarkMemberOrg } from '../client/components/icons/watermarks';
|
|
344
|
+
import { WaterMarkWellProjects } from '../client/components/icons/watermarks';
|
|
345
|
+
import { WaterMarkWWWProducts } from '../client/components/icons/watermarks';
|
|
346
|
+
import { WellSeal } from '../client/components/icons/seals';
|
|
335
347
|
import { X } from '../client/components/icons/X';
|
|
336
348
|
|
|
337
349
|
export { Accordion }
|
|
@@ -390,12 +402,36 @@ export { Badge }
|
|
|
390
402
|
|
|
391
403
|
export { BadgeCertificationBronze }
|
|
392
404
|
|
|
405
|
+
export { BadgeCertificationGold }
|
|
406
|
+
|
|
407
|
+
export { BadgeCertificationPlatinum }
|
|
408
|
+
|
|
409
|
+
export { BadgeCertificationSilver }
|
|
410
|
+
|
|
393
411
|
export { BadgeEnterpriseProvider }
|
|
394
412
|
|
|
395
413
|
export { BadgePerformanceTestingProvider }
|
|
396
414
|
|
|
397
415
|
export { BadgeProductProvider }
|
|
398
416
|
|
|
417
|
+
export { BadgeRatingCoworking }
|
|
418
|
+
|
|
419
|
+
export { BadgeRatingDesign }
|
|
420
|
+
|
|
421
|
+
export { BadgeRatingEquity }
|
|
422
|
+
|
|
423
|
+
export { BadgeRatingHealthySafety }
|
|
424
|
+
|
|
425
|
+
export { BadgeRatingOperations }
|
|
426
|
+
|
|
427
|
+
export { BadgeRatingPerformance }
|
|
428
|
+
|
|
429
|
+
export { BadgeRatingRealEstate }
|
|
430
|
+
|
|
431
|
+
export { BadgeRatingResidential }
|
|
432
|
+
|
|
433
|
+
export { BadgeRatingWorkforce }
|
|
434
|
+
|
|
399
435
|
export { BadgeSurveyProvider }
|
|
400
436
|
|
|
401
437
|
export { badgeVariants }
|
|
@@ -638,6 +674,8 @@ export { InputOTPSeparator }
|
|
|
638
674
|
|
|
639
675
|
export { InputOTPSlot }
|
|
640
676
|
|
|
677
|
+
export { IWBILogo }
|
|
678
|
+
|
|
641
679
|
export { Label }
|
|
642
680
|
|
|
643
681
|
export { Menubar }
|
|
@@ -760,8 +798,6 @@ export { ScrollBar }
|
|
|
760
798
|
|
|
761
799
|
export { SealEnterpriseProvider }
|
|
762
800
|
|
|
763
|
-
export { SealHealthSafetyRating }
|
|
764
|
-
|
|
765
801
|
export { SealIwbiMember }
|
|
766
802
|
|
|
767
803
|
export { SealPerformanceTestingProvider }
|