@syscore/ui-library 1.13.0 → 1.14.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/seals/SealCertification.tsx +136 -0
- package/client/components/icons/seals/SealCertificationBronze.tsx +85 -0
- package/client/components/icons/seals/SealCertificationGold.tsx +85 -0
- package/client/components/icons/seals/SealCertificationPlatinum.tsx +85 -0
- package/client/components/icons/seals/SealCertificationSilver.tsx +85 -0
- package/client/components/icons/seals/SealRating.tsx +108 -0
- package/client/components/icons/seals/SealRatingCoworking.tsx +53 -0
- package/client/components/icons/seals/SealRatingDesign.tsx +53 -0
- package/client/components/icons/seals/SealRatingEquity.tsx +53 -0
- package/client/components/icons/seals/SealRatingHealthSafety.tsx +57 -0
- package/client/components/icons/seals/SealRatingOperations.tsx +53 -0
- package/client/components/icons/seals/SealRatingPerformance.tsx +57 -0
- package/client/components/icons/seals/SealRatingRealEstate.tsx +53 -0
- package/client/components/icons/seals/SealRatingWorkforce.tsx +53 -0
- package/client/components/icons/seals/WaterMarkWellProjects.tsx +27 -0
- package/client/components/icons/seals/WatermarkMemberOrg.tsx +17 -0
- package/client/components/icons/seals/index.tsx +20 -1
- package/client/global.css +0 -4
- package/client/ui/Icons.stories.tsx +74 -27
- package/client/ui/PageHeader.stories.tsx +143 -5
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +45 -6
- package/dist/index.es.js +1669 -227
- package/package.json +1 -1
- package/client/components/icons/seals/WellSeal.tsx +0 -79
- package/client/components/icons/watermarks/WaterMarkWellProjects.tsx +0 -30
- package/client/components/icons/watermarks/WatermarkMemberOrg.tsx +0 -59
- package/client/components/icons/watermarks/index.tsx +0 -3
- /package/client/components/icons/{watermarks → seals}/WaterMarkWWWProducts.tsx +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -223,11 +223,25 @@ import { ResizablePanel } from '../client/components/ui/resizable';
|
|
|
223
223
|
import { ResizablePanelGroup } from '../client/components/ui/resizable';
|
|
224
224
|
import { ScrollArea } from '../client/components/ui/scroll-area';
|
|
225
225
|
import { ScrollBar } from '../client/components/ui/scroll-area';
|
|
226
|
+
import { SealCertification } from '../client/components/icons/seals';
|
|
227
|
+
import { SealCertificationBronze } from '../client/components/icons/seals';
|
|
228
|
+
import { SealCertificationGold } from '../client/components/icons/seals';
|
|
229
|
+
import { SealCertificationPlatinum } from '../client/components/icons/seals';
|
|
230
|
+
import { SealCertificationSilver } from '../client/components/icons/seals';
|
|
226
231
|
import { SealEnterpriseProvider } from '../client/components/icons/provider-seals';
|
|
227
232
|
import { SealIwbiMember } from '../client/components/icons/seals';
|
|
228
233
|
import { SealPerformanceTestingProvider } from '../client/components/icons/provider-seals';
|
|
229
234
|
import { SealProductProvider } from '../client/components/icons/provider-seals';
|
|
230
235
|
import { SealProviders } from '../client/components/icons/provider-seals';
|
|
236
|
+
import { SealRating } from '../client/components/icons/seals';
|
|
237
|
+
import { SealRatingCoworking } from '../client/components/icons/seals';
|
|
238
|
+
import { SealRatingDesign } from '../client/components/icons/seals';
|
|
239
|
+
import { SealRatingEquity } from '../client/components/icons/seals';
|
|
240
|
+
import { SealRatingHealthSafety } from '../client/components/icons/seals';
|
|
241
|
+
import { SealRatingOperations } from '../client/components/icons/seals';
|
|
242
|
+
import { SealRatingPerformance } from '../client/components/icons/seals';
|
|
243
|
+
import { SealRatingRealEstate } from '../client/components/icons/seals';
|
|
244
|
+
import { SealRatingWorkforce } from '../client/components/icons/seals';
|
|
231
245
|
import { SealSurveyProvider } from '../client/components/icons/provider-seals';
|
|
232
246
|
import { SealWell } from '../client/components/icons/seals';
|
|
233
247
|
import { SealWellCertification } from '../client/components/icons/seals';
|
|
@@ -340,10 +354,9 @@ import { UtilityTargetActive } from '../client/components/icons/UtilityTargetAct
|
|
|
340
354
|
import { UtilityText } from '../client/components/icons/UtilityText';
|
|
341
355
|
import { UtilityTrash } from '../client/components/icons/UtilityTrash';
|
|
342
356
|
import { UtilityTriangleInfo } from '../client/components/icons/UtilityTriangleInfo';
|
|
343
|
-
import { WatermarkMemberOrg } from '../client/components/icons/
|
|
344
|
-
import { WaterMarkWellProjects } from '../client/components/icons/
|
|
345
|
-
import { WaterMarkWWWProducts } from '../client/components/icons/
|
|
346
|
-
import { WellSeal } from '../client/components/icons/seals';
|
|
357
|
+
import { WatermarkMemberOrg } from '../client/components/icons/seals';
|
|
358
|
+
import { WaterMarkWellProjects } from '../client/components/icons/seals';
|
|
359
|
+
import { WaterMarkWWWProducts } from '../client/components/icons/seals';
|
|
347
360
|
import { X } from '../client/components/icons/X';
|
|
348
361
|
|
|
349
362
|
export { Accordion }
|
|
@@ -796,6 +809,16 @@ export { ScrollArea }
|
|
|
796
809
|
|
|
797
810
|
export { ScrollBar }
|
|
798
811
|
|
|
812
|
+
export { SealCertification }
|
|
813
|
+
|
|
814
|
+
export { SealCertificationBronze }
|
|
815
|
+
|
|
816
|
+
export { SealCertificationGold }
|
|
817
|
+
|
|
818
|
+
export { SealCertificationPlatinum }
|
|
819
|
+
|
|
820
|
+
export { SealCertificationSilver }
|
|
821
|
+
|
|
799
822
|
export { SealEnterpriseProvider }
|
|
800
823
|
|
|
801
824
|
export { SealIwbiMember }
|
|
@@ -806,6 +829,24 @@ export { SealProductProvider }
|
|
|
806
829
|
|
|
807
830
|
export { SealProviders }
|
|
808
831
|
|
|
832
|
+
export { SealRating }
|
|
833
|
+
|
|
834
|
+
export { SealRatingCoworking }
|
|
835
|
+
|
|
836
|
+
export { SealRatingDesign }
|
|
837
|
+
|
|
838
|
+
export { SealRatingEquity }
|
|
839
|
+
|
|
840
|
+
export { SealRatingHealthSafety }
|
|
841
|
+
|
|
842
|
+
export { SealRatingOperations }
|
|
843
|
+
|
|
844
|
+
export { SealRatingPerformance }
|
|
845
|
+
|
|
846
|
+
export { SealRatingRealEstate }
|
|
847
|
+
|
|
848
|
+
export { SealRatingWorkforce }
|
|
849
|
+
|
|
809
850
|
export { SealSurveyProvider }
|
|
810
851
|
|
|
811
852
|
export { SealWell }
|
|
@@ -1036,8 +1077,6 @@ export { WaterMarkWellProjects }
|
|
|
1036
1077
|
|
|
1037
1078
|
export { WaterMarkWWWProducts }
|
|
1038
1079
|
|
|
1039
|
-
export { WellSeal }
|
|
1040
|
-
|
|
1041
1080
|
export { X }
|
|
1042
1081
|
|
|
1043
1082
|
export { }
|