diff --git a/src/admin/components/ResourceTabs/PolygonReviewTab/components/Polygons.tsx b/src/admin/components/ResourceTabs/PolygonReviewTab/components/Polygons.tsx index 75e7e7384..7308a743d 100644 --- a/src/admin/components/ResourceTabs/PolygonReviewTab/components/Polygons.tsx +++ b/src/admin/components/ResourceTabs/PolygonReviewTab/components/Polygons.tsx @@ -231,8 +231,17 @@ const Polygons = (props: IPolygonProps) => { Add Polygon - diff --git a/src/assets/icons/ic_expand.svg b/src/assets/icons/ic_expand.svg new file mode 100644 index 000000000..8227f99dc --- /dev/null +++ b/src/assets/icons/ic_expand.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/assets/icons/ic_shrink.svg b/src/assets/icons/ic_shrink.svg new file mode 100644 index 000000000..b5edd7a06 --- /dev/null +++ b/src/assets/icons/ic_shrink.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/components/elements/Button/Button.tsx b/src/components/elements/Button/Button.tsx index c02409887..68a1a6837 100644 --- a/src/components/elements/Button/Button.tsx +++ b/src/components/elements/Button/Button.tsx @@ -54,9 +54,9 @@ const Button: FC = props => { const variantClasses = useMemo(() => { const nonTextClasses = "rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10"; - const nonTextSpanClasses = "flex items-center text-bold-caption-200"; + const nonTextSpanClasses = "flex items-center text-bold-caption-200 !leading-[normal]"; const newText = - "flex items-center font-inter font-bold text-16 leading-snug tracking-tighter uppercase text-primary"; + "flex items-center font-inter font-bold text-16 leading-snug tracking-tighter uppercase text-primary !leading-[normal]"; switch (variant) { case "primary": @@ -85,7 +85,7 @@ const Button: FC = props => { return { container: "group bg-white border border-primary-500 uppercase leading-[normal] px-4 py-[10.5px] rounded-lg hover:bg-grey-900 disabled:border-transparent disabled:bg-grey-750", - span: "text-primary-500 text-12-bold group-disabled:text-grey-730" + span: "text-primary-500 text-12-bold group-disabled:text-grey-730 !leading-[normal]" }; case "white": return { @@ -95,7 +95,7 @@ const Button: FC = props => { case "white-page-admin": return { container: "py-2 px-3 bg-white rounded-lg text-darkCustom-100 border border-grey-750 hover:bg-grey-900", - span: "flex items-center text-bold-caption-200 text-inherit uppercase" + span: "flex items-center text-bold-caption-200 text-inherit uppercase !leading-[normal]" }; case "sky": return { @@ -106,7 +106,7 @@ const Button: FC = props => { return { container: "group py-2 px-3 bg-primary-200 rounded-lg text-darkCustom-100 border border-grey-750 hover:text-primary-500", - span: "flex items-center text-bold-caption-200 text-inherit uppercase" + span: "flex items-center text-bold-caption-200 text-inherit uppercase !leading-[normal]" }; case "text": return { container: "", span: "text-12-bold" }; @@ -129,14 +129,14 @@ const Button: FC = props => { return { container: "group bg-white border-[3px] border-grey-500 hover:border-primary-500 disabled:border-neutral-1000 px-4 py-2 rounded-lg", - span: "uppercase text-14-bold text-grey-500 group-hover:text-primary-500" + span: "uppercase text-14-bold text-grey-500 group-hover:text-primary-500 !leading-[normal]" }; case "orange": return { container: "group bg-tertiary-600 py-1.5 px-5 rounded-lg hover:opacity-90 disabled:bg-tertiary-600 disabled:opacity-70", - span: "normal-case text-10-bold text-white h-min" + span: "normal-case text-10-bold text-white h-min !leading-[normal]" }; case "semi-red": @@ -148,28 +148,28 @@ const Button: FC = props => { case "white-toggle": return { container: "group bg-white py-1 px-3 rounded", - span: "text-14-semibold text-darkCustom" + span: "text-14-semibold text-darkCustom !leading-[normal]" }; case "transparent-toggle": return { container: "group bg-transparent px-3 py-1 rounded", - span: "text-14-light text-darkCustom-100" + span: "text-14-light text-darkCustom-100 !leading-[normal]" }; case "white-button-map": return { container: "h-fit rounded-lg bg-white px-4 py-2 shadow hover:bg-neutral-200", - span: "flex items-center gap-2" + span: "flex items-center gap-2 !leading-[normal]" }; case "purple": return { container: "h-fit rounded-lg px-4 py-1 hover:bg-purpleCustom-60 text-purpleCustom-500 bg-purpleCustom-50 border border-purpleCustom-60", - span: "flex items-center gap-2 text-purpleCustom-500 text-14" + span: "flex items-center gap-2 text-purpleCustom-500 text-14 !leading-[normal]" }; case "about-us": return { container: "h-fit rounded-lg bg-green-200 px-5 py-[18px] hover:bg-green-60 text-white", - span: "flex items-center text-16-bold" + span: "flex items-center text-16-bold !leading-[normal]" }; default: return { container: "", span: "" }; diff --git a/src/components/elements/Button/__snapshots__/Button.stories.storyshot b/src/components/elements/Button/__snapshots__/Button.stories.storyshot index 654b3e4d2..6b1f1a829 100644 --- a/src/components/elements/Button/__snapshots__/Button.stories.storyshot +++ b/src/components/elements/Button/__snapshots__/Button.stories.storyshot @@ -7,7 +7,7 @@ exports[`Storyshots Components/Elements/Buttons Disabled Link 1`] = ` href="/" > Disabled Link @@ -19,7 +19,7 @@ exports[`Storyshots Components/Elements/Buttons Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Primary @@ -32,7 +32,7 @@ exports[`Storyshots Components/Elements/Buttons Primary Disabled 1`] = ` disabled={true} > Primary @@ -52,7 +52,7 @@ exports[`Storyshots Components/Elements/Buttons Primary Icon 1`] = ` } /> Primary @@ -65,7 +65,7 @@ exports[`Storyshots Components/Elements/Buttons Primary Link 1`] = ` href="/" > Primary Link @@ -77,7 +77,7 @@ exports[`Storyshots Components/Elements/Buttons Secondary 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Secondary @@ -90,7 +90,7 @@ exports[`Storyshots Components/Elements/Buttons Secondary Disabled 1`] = ` disabled={true} > Secondary @@ -110,7 +110,7 @@ exports[`Storyshots Components/Elements/Buttons Secondary Icon 1`] = ` } /> Secondary diff --git a/src/components/elements/Cards/FundingCard/__snapshots__/FundingCard.stories.storyshot b/src/components/elements/Cards/FundingCard/__snapshots__/FundingCard.stories.storyshot index 3a835078c..c72dd6b56 100644 --- a/src/components/elements/Cards/FundingCard/__snapshots__/FundingCard.stories.storyshot +++ b/src/components/elements/Cards/FundingCard/__snapshots__/FundingCard.stories.storyshot @@ -66,7 +66,7 @@ exports[`Storyshots Components/Elements/Cards/FundingCard Default 1`] = ` target="_blank" > Read More @@ -80,7 +80,7 @@ exports[`Storyshots Components/Elements/Cards/FundingCard Default 1`] = ` onTouchStart={[Function]} > Apply Now diff --git a/src/components/elements/Cards/Generic/__snapshots__/GenericCard.stories.storyshot b/src/components/elements/Cards/Generic/__snapshots__/GenericCard.stories.storyshot index 68669f0a6..6adf8306c 100644 --- a/src/components/elements/Cards/Generic/__snapshots__/GenericCard.stories.storyshot +++ b/src/components/elements/Cards/Generic/__snapshots__/GenericCard.stories.storyshot @@ -114,7 +114,7 @@ exports[`Storyshots Components/Elements/Cards/GenericCard Default 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center gap-1.5 tracking-wide w-full justify-center" > View diff --git a/src/components/elements/Cards/UpcomingOpportunitiesCard/__snapshots__/UpcomingOpportunitiesCard.stories.storyshot b/src/components/elements/Cards/UpcomingOpportunitiesCard/__snapshots__/UpcomingOpportunitiesCard.stories.storyshot index 47369020c..9b549c93c 100644 --- a/src/components/elements/Cards/UpcomingOpportunitiesCard/__snapshots__/UpcomingOpportunitiesCard.stories.storyshot +++ b/src/components/elements/Cards/UpcomingOpportunitiesCard/__snapshots__/UpcomingOpportunitiesCard.stories.storyshot @@ -24,7 +24,7 @@ exports[`Storyshots Components/Elements/Cards/UpcomingOpportunitiesCard Primary onTouchStart={[Function]} > Find out more diff --git a/src/components/elements/Drawer/__snapshots__/Drawer.stories.storyshot b/src/components/elements/Drawer/__snapshots__/Drawer.stories.storyshot index baf314c2c..2da708b1c 100644 --- a/src/components/elements/Drawer/__snapshots__/Drawer.stories.storyshot +++ b/src/components/elements/Drawer/__snapshots__/Drawer.stories.storyshot @@ -39,7 +39,7 @@ exports[`Storyshots Components/Elements/Drawer Primary 1`] = ` onClick={[Function]} > Open diff --git a/src/components/elements/Field/__snapshots__/ButtonField.stories.storyshot b/src/components/elements/Field/__snapshots__/ButtonField.stories.storyshot index f15e70e7a..3fe1b5087 100644 --- a/src/components/elements/Field/__snapshots__/ButtonField.stories.storyshot +++ b/src/components/elements/Field/__snapshots__/ButtonField.stories.storyshot @@ -21,7 +21,7 @@ exports[`Storyshots Components/Elements/Fields/ButtonField Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View diff --git a/src/components/elements/Field/__snapshots__/FieldsExpander.stories.storyshot b/src/components/elements/Field/__snapshots__/FieldsExpander.stories.storyshot index fecd13e93..3cd317126 100644 --- a/src/components/elements/Field/__snapshots__/FieldsExpander.stories.storyshot +++ b/src/components/elements/Field/__snapshots__/FieldsExpander.stories.storyshot @@ -96,7 +96,7 @@ exports[`Storyshots Components/Elements/Fields/FieldsExpander Default 1`] = ` onClick={[Function]} > Download diff --git a/src/components/elements/Inputs/DataTable/__snapshots__/DataTable.stories.storyshot b/src/components/elements/Inputs/DataTable/__snapshots__/DataTable.stories.storyshot index ef2ec9b5c..47e98144b 100644 --- a/src/components/elements/Inputs/DataTable/__snapshots__/DataTable.stories.storyshot +++ b/src/components/elements/Inputs/DataTable/__snapshots__/DataTable.stories.storyshot @@ -35,7 +35,7 @@ exports[`Storyshots Components/Elements/Inputs/DataTable Default 1`] = ` } /> Add funding source diff --git a/src/components/elements/Inputs/TreeSpeciesInput/__snapshots__/TreeSpeciesInput.stories.storyshot b/src/components/elements/Inputs/TreeSpeciesInput/__snapshots__/TreeSpeciesInput.stories.storyshot index 1e1feb841..84810eee2 100644 --- a/src/components/elements/Inputs/TreeSpeciesInput/__snapshots__/TreeSpeciesInput.stories.storyshot +++ b/src/components/elements/Inputs/TreeSpeciesInput/__snapshots__/TreeSpeciesInput.stories.storyshot @@ -88,7 +88,7 @@ exports[`Storyshots Components/Elements/Inputs/TreeSpeciesInput Default 1`] = ` } /> Add Another undefined @@ -212,7 +212,7 @@ exports[`Storyshots Components/Elements/Inputs/TreeSpeciesInput With Number 1`] } /> Add Another undefined diff --git a/src/components/elements/LandingPage/__snapshots__/AlternatingSection.stories.storyshot b/src/components/elements/LandingPage/__snapshots__/AlternatingSection.stories.storyshot index f84bb9534..4bdc97c09 100644 --- a/src/components/elements/LandingPage/__snapshots__/AlternatingSection.stories.storyshot +++ b/src/components/elements/LandingPage/__snapshots__/AlternatingSection.stories.storyshot @@ -33,7 +33,7 @@ exports[`Storyshots Components/Elements/LandingPage/AlternatingSection Left 1`] onTouchStart={[Function]} > Learn more @@ -111,7 +111,7 @@ exports[`Storyshots Components/Elements/LandingPage/AlternatingSection Right 1`] onTouchStart={[Function]} > Learn more diff --git a/src/components/elements/LandingPage/__snapshots__/TwoByOneSection.stories.storyshot b/src/components/elements/LandingPage/__snapshots__/TwoByOneSection.stories.storyshot index 38c3daa47..84fe30f77 100644 --- a/src/components/elements/LandingPage/__snapshots__/TwoByOneSection.stories.storyshot +++ b/src/components/elements/LandingPage/__snapshots__/TwoByOneSection.stories.storyshot @@ -38,7 +38,7 @@ exports[`Storyshots Components/Elements/LandingPage/TwoByOneSection Primary 1`] className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Launch Resource Library diff --git a/src/components/elements/LandingPage/__snapshots__/UpcomingOpportunities.stories.storyshot b/src/components/elements/LandingPage/__snapshots__/UpcomingOpportunities.stories.storyshot index 57a2a84d2..e890b9b14 100644 --- a/src/components/elements/LandingPage/__snapshots__/UpcomingOpportunities.stories.storyshot +++ b/src/components/elements/LandingPage/__snapshots__/UpcomingOpportunities.stories.storyshot @@ -40,7 +40,7 @@ exports[`Storyshots Components/Elements/LandingPage/UpcomingOpportunities Defaul onTouchStart={[Function]} > Find out more @@ -69,7 +69,7 @@ exports[`Storyshots Components/Elements/LandingPage/UpcomingOpportunities Defaul onTouchStart={[Function]} > Find out more @@ -98,7 +98,7 @@ exports[`Storyshots Components/Elements/LandingPage/UpcomingOpportunities Defaul onTouchStart={[Function]} > Find out more diff --git a/src/components/elements/Menu/__snapshots__/Menu.stories.storyshot b/src/components/elements/Menu/__snapshots__/Menu.stories.storyshot index 716b6733c..953345b9d 100644 --- a/src/components/elements/Menu/__snapshots__/Menu.stories.storyshot +++ b/src/components/elements/Menu/__snapshots__/Menu.stories.storyshot @@ -9,7 +9,7 @@ exports[`Storyshots Components/Elements/Menu Placement Bottom Left 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Open/Close @@ -60,7 +60,7 @@ exports[`Storyshots Components/Elements/Menu Placement Bottom Right 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Open/Close @@ -111,7 +111,7 @@ exports[`Storyshots Components/Elements/Menu Placement Left Bottom 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Open/Close @@ -162,7 +162,7 @@ exports[`Storyshots Components/Elements/Menu Placement Right Top 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Open/Close @@ -213,7 +213,7 @@ exports[`Storyshots Components/Elements/Menu Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Open/Close @@ -264,7 +264,7 @@ exports[`Storyshots Components/Elements/Menu Secondary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Open/Close diff --git a/src/components/elements/Section/__snapshots__/SectionHeader.stories.storyshot b/src/components/elements/Section/__snapshots__/SectionHeader.stories.storyshot index 5f83d7788..f1c1b5806 100644 --- a/src/components/elements/Section/__snapshots__/SectionHeader.stories.storyshot +++ b/src/components/elements/Section/__snapshots__/SectionHeader.stories.storyshot @@ -14,7 +14,7 @@ exports[`Storyshots Components/Elements/Section/Header Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View more diff --git a/src/components/elements/StatusBar/__snapshots__/StatusBar.stories.storyshot b/src/components/elements/StatusBar/__snapshots__/StatusBar.stories.storyshot index 99aab4ca6..039562e59 100644 --- a/src/components/elements/StatusBar/__snapshots__/StatusBar.stories.storyshot +++ b/src/components/elements/StatusBar/__snapshots__/StatusBar.stories.storyshot @@ -48,7 +48,7 @@ exports[`Storyshots Components/Elements/StatusBar Awaiting 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View Feedback @@ -57,7 +57,7 @@ exports[`Storyshots Components/Elements/StatusBar Awaiting 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Learn More @@ -66,7 +66,7 @@ exports[`Storyshots Components/Elements/StatusBar Awaiting 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Setup Project @@ -125,7 +125,7 @@ exports[`Storyshots Components/Elements/StatusBar Default 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View Feedback @@ -134,7 +134,7 @@ exports[`Storyshots Components/Elements/StatusBar Default 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Learn More @@ -143,7 +143,7 @@ exports[`Storyshots Components/Elements/StatusBar Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Setup Project @@ -202,7 +202,7 @@ exports[`Storyshots Components/Elements/StatusBar Draft 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View Feedback @@ -211,7 +211,7 @@ exports[`Storyshots Components/Elements/StatusBar Draft 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Learn More @@ -220,7 +220,7 @@ exports[`Storyshots Components/Elements/StatusBar Draft 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Setup Project @@ -279,7 +279,7 @@ exports[`Storyshots Components/Elements/StatusBar Error 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View Feedback @@ -288,7 +288,7 @@ exports[`Storyshots Components/Elements/StatusBar Error 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Learn More @@ -297,7 +297,7 @@ exports[`Storyshots Components/Elements/StatusBar Error 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Setup Project @@ -356,7 +356,7 @@ exports[`Storyshots Components/Elements/StatusBar Warning 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View Feedback @@ -365,7 +365,7 @@ exports[`Storyshots Components/Elements/StatusBar Warning 1`] = ` className="bg-white border border-neutral-1000 hover:border-primary-500 disabled:border-neutral-1000 py-[10.5px] rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Learn More @@ -374,7 +374,7 @@ exports[`Storyshots Components/Elements/StatusBar Warning 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Setup Project diff --git a/src/components/elements/Table/__snapshots__/Table.stories.storyshot b/src/components/elements/Table/__snapshots__/Table.stories.storyshot index 90fe654fd..3ae48964c 100644 --- a/src/components/elements/Table/__snapshots__/Table.stories.storyshot +++ b/src/components/elements/Table/__snapshots__/Table.stories.storyshot @@ -95,7 +95,7 @@ exports[`Storyshots Components/Elements/Table Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Create @@ -309,7 +309,7 @@ exports[`Storyshots Components/Elements/Table Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -369,7 +369,7 @@ exports[`Storyshots Components/Elements/Table Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -429,7 +429,7 @@ exports[`Storyshots Components/Elements/Table Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -489,7 +489,7 @@ exports[`Storyshots Components/Elements/Table Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -549,7 +549,7 @@ exports[`Storyshots Components/Elements/Table Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -609,7 +609,7 @@ exports[`Storyshots Components/Elements/Table Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -669,7 +669,7 @@ exports[`Storyshots Components/Elements/Table Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -729,7 +729,7 @@ exports[`Storyshots Components/Elements/Table Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -789,7 +789,7 @@ exports[`Storyshots Components/Elements/Table Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -849,7 +849,7 @@ exports[`Storyshots Components/Elements/Table Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -958,7 +958,7 @@ exports[`Storyshots Components/Elements/Table Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Create @@ -1172,7 +1172,7 @@ exports[`Storyshots Components/Elements/Table Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -1232,7 +1232,7 @@ exports[`Storyshots Components/Elements/Table Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -1292,7 +1292,7 @@ exports[`Storyshots Components/Elements/Table Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -1352,7 +1352,7 @@ exports[`Storyshots Components/Elements/Table Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -1412,7 +1412,7 @@ exports[`Storyshots Components/Elements/Table Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -1472,7 +1472,7 @@ exports[`Storyshots Components/Elements/Table Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -1532,7 +1532,7 @@ exports[`Storyshots Components/Elements/Table Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -1592,7 +1592,7 @@ exports[`Storyshots Components/Elements/Table Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -1652,7 +1652,7 @@ exports[`Storyshots Components/Elements/Table Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -1712,7 +1712,7 @@ exports[`Storyshots Components/Elements/Table Primary 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -1821,7 +1821,7 @@ exports[`Storyshots Components/Elements/Table Secundary White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Create @@ -2035,7 +2035,7 @@ exports[`Storyshots Components/Elements/Table Secundary White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -2095,7 +2095,7 @@ exports[`Storyshots Components/Elements/Table Secundary White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -2155,7 +2155,7 @@ exports[`Storyshots Components/Elements/Table Secundary White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -2215,7 +2215,7 @@ exports[`Storyshots Components/Elements/Table Secundary White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -2275,7 +2275,7 @@ exports[`Storyshots Components/Elements/Table Secundary White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -2335,7 +2335,7 @@ exports[`Storyshots Components/Elements/Table Secundary White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -2395,7 +2395,7 @@ exports[`Storyshots Components/Elements/Table Secundary White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -2455,7 +2455,7 @@ exports[`Storyshots Components/Elements/Table Secundary White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -2515,7 +2515,7 @@ exports[`Storyshots Components/Elements/Table Secundary White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -2575,7 +2575,7 @@ exports[`Storyshots Components/Elements/Table Secundary White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -2684,7 +2684,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Create @@ -2898,7 +2898,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -2958,7 +2958,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -3018,7 +3018,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -3078,7 +3078,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -3138,7 +3138,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -3198,7 +3198,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -3258,7 +3258,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -3318,7 +3318,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -3378,7 +3378,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -3438,7 +3438,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -3550,7 +3550,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable Dashboard 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Create @@ -3764,7 +3764,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable Dashboard 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -3824,7 +3824,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable Dashboard 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -3884,7 +3884,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable Dashboard 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -3944,7 +3944,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable Dashboard 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -4004,7 +4004,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable Dashboard 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -4064,7 +4064,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable Dashboard 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -4124,7 +4124,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable Dashboard 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -4184,7 +4184,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable Dashboard 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -4244,7 +4244,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable Dashboard 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -4304,7 +4304,7 @@ exports[`Storyshots Components/Elements/Table Table Airtable Dashboard 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -4414,7 +4414,7 @@ exports[`Storyshots Components/Elements/Table Table Border 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Create @@ -4628,7 +4628,7 @@ exports[`Storyshots Components/Elements/Table Table Border 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -4688,7 +4688,7 @@ exports[`Storyshots Components/Elements/Table Table Border 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -4748,7 +4748,7 @@ exports[`Storyshots Components/Elements/Table Table Border 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -4808,7 +4808,7 @@ exports[`Storyshots Components/Elements/Table Table Border 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -4868,7 +4868,7 @@ exports[`Storyshots Components/Elements/Table Table Border 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -4928,7 +4928,7 @@ exports[`Storyshots Components/Elements/Table Table Border 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -4988,7 +4988,7 @@ exports[`Storyshots Components/Elements/Table Table Border 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -5048,7 +5048,7 @@ exports[`Storyshots Components/Elements/Table Table Border 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -5108,7 +5108,7 @@ exports[`Storyshots Components/Elements/Table Table Border 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -5168,7 +5168,7 @@ exports[`Storyshots Components/Elements/Table Table Border 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -5277,7 +5277,7 @@ exports[`Storyshots Components/Elements/Table Table Border All 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Create @@ -5491,7 +5491,7 @@ exports[`Storyshots Components/Elements/Table Table Border All 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -5551,7 +5551,7 @@ exports[`Storyshots Components/Elements/Table Table Border All 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -5611,7 +5611,7 @@ exports[`Storyshots Components/Elements/Table Table Border All 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -5671,7 +5671,7 @@ exports[`Storyshots Components/Elements/Table Table Border All 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -5731,7 +5731,7 @@ exports[`Storyshots Components/Elements/Table Table Border All 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -5791,7 +5791,7 @@ exports[`Storyshots Components/Elements/Table Table Border All 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -5851,7 +5851,7 @@ exports[`Storyshots Components/Elements/Table Table Border All 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -5911,7 +5911,7 @@ exports[`Storyshots Components/Elements/Table Table Border All 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -5971,7 +5971,7 @@ exports[`Storyshots Components/Elements/Table Table Border All 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -6031,7 +6031,7 @@ exports[`Storyshots Components/Elements/Table Table Border All 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -6143,7 +6143,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Create @@ -6357,7 +6357,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -6417,7 +6417,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -6477,7 +6477,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -6537,7 +6537,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -6597,7 +6597,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -6657,7 +6657,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -6717,7 +6717,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -6777,7 +6777,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -6837,7 +6837,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -6897,7 +6897,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -7010,7 +7010,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries Modal 1` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Create @@ -7224,7 +7224,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries Modal 1` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -7284,7 +7284,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries Modal 1` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -7344,7 +7344,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries Modal 1` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -7404,7 +7404,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries Modal 1` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -7464,7 +7464,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries Modal 1` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -7524,7 +7524,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries Modal 1` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -7584,7 +7584,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries Modal 1` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -7644,7 +7644,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries Modal 1` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -7704,7 +7704,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries Modal 1` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -7764,7 +7764,7 @@ exports[`Storyshots Components/Elements/Table Table Dashboard Countries Modal 1` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -7877,7 +7877,7 @@ exports[`Storyshots Components/Elements/Table Table Organization 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Create @@ -8091,7 +8091,7 @@ exports[`Storyshots Components/Elements/Table Table Organization 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -8151,7 +8151,7 @@ exports[`Storyshots Components/Elements/Table Table Organization 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -8211,7 +8211,7 @@ exports[`Storyshots Components/Elements/Table Table Organization 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -8271,7 +8271,7 @@ exports[`Storyshots Components/Elements/Table Table Organization 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -8331,7 +8331,7 @@ exports[`Storyshots Components/Elements/Table Table Organization 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -8391,7 +8391,7 @@ exports[`Storyshots Components/Elements/Table Table Organization 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -8451,7 +8451,7 @@ exports[`Storyshots Components/Elements/Table Table Organization 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -8511,7 +8511,7 @@ exports[`Storyshots Components/Elements/Table Table Organization 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -8571,7 +8571,7 @@ exports[`Storyshots Components/Elements/Table Table Organization 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -8631,7 +8631,7 @@ exports[`Storyshots Components/Elements/Table Table Organization 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -8741,7 +8741,7 @@ exports[`Storyshots Components/Elements/Table Table Site Polygon 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Create @@ -8955,7 +8955,7 @@ exports[`Storyshots Components/Elements/Table Table Site Polygon 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -9015,7 +9015,7 @@ exports[`Storyshots Components/Elements/Table Table Site Polygon 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -9075,7 +9075,7 @@ exports[`Storyshots Components/Elements/Table Table Site Polygon 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -9135,7 +9135,7 @@ exports[`Storyshots Components/Elements/Table Table Site Polygon 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -9195,7 +9195,7 @@ exports[`Storyshots Components/Elements/Table Table Site Polygon 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -9255,7 +9255,7 @@ exports[`Storyshots Components/Elements/Table Table Site Polygon 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -9315,7 +9315,7 @@ exports[`Storyshots Components/Elements/Table Table Site Polygon 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -9375,7 +9375,7 @@ exports[`Storyshots Components/Elements/Table Table Site Polygon 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -9435,7 +9435,7 @@ exports[`Storyshots Components/Elements/Table Table Site Polygon 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -9495,7 +9495,7 @@ exports[`Storyshots Components/Elements/Table Table Site Polygon 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -9607,7 +9607,7 @@ exports[`Storyshots Components/Elements/Table Table Version 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Create @@ -9821,7 +9821,7 @@ exports[`Storyshots Components/Elements/Table Table Version 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -9881,7 +9881,7 @@ exports[`Storyshots Components/Elements/Table Table Version 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -9941,7 +9941,7 @@ exports[`Storyshots Components/Elements/Table Table Version 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -10001,7 +10001,7 @@ exports[`Storyshots Components/Elements/Table Table Version 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -10061,7 +10061,7 @@ exports[`Storyshots Components/Elements/Table Table Version 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -10121,7 +10121,7 @@ exports[`Storyshots Components/Elements/Table Table Version 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -10181,7 +10181,7 @@ exports[`Storyshots Components/Elements/Table Table Version 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -10241,7 +10241,7 @@ exports[`Storyshots Components/Elements/Table Table Version 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -10301,7 +10301,7 @@ exports[`Storyshots Components/Elements/Table Table Version 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View @@ -10361,7 +10361,7 @@ exports[`Storyshots Components/Elements/Table Table Version 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > View diff --git a/src/components/elements/Toast/__snapshots__/Toast.stories.storyshot b/src/components/elements/Toast/__snapshots__/Toast.stories.storyshot index 8ee7f08e9..30932df5f 100644 --- a/src/components/elements/Toast/__snapshots__/Toast.stories.storyshot +++ b/src/components/elements/Toast/__snapshots__/Toast.stories.storyshot @@ -7,7 +7,7 @@ Array [ onClick={[Function]} > Trigger @@ -25,7 +25,7 @@ Array [ onClick={[Function]} > Trigger diff --git a/src/components/extensive/ActionTracker/__snapshots__/ActionTracker.stories.storyshot b/src/components/extensive/ActionTracker/__snapshots__/ActionTracker.stories.storyshot index e688fa6bc..56f82acf1 100644 --- a/src/components/extensive/ActionTracker/__snapshots__/ActionTracker.stories.storyshot +++ b/src/components/extensive/ActionTracker/__snapshots__/ActionTracker.stories.storyshot @@ -412,7 +412,7 @@ exports[`Storyshots Components/Extensive/ActionTracker/ActionTrackerCard Empty 1 className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content mt-6" > CTA here diff --git a/src/components/extensive/Banner/Hero/__snapshots__/HeroBanner.stories.storyshot b/src/components/extensive/Banner/Hero/__snapshots__/HeroBanner.stories.storyshot index 0e4327602..69d8f432d 100644 --- a/src/components/extensive/Banner/Hero/__snapshots__/HeroBanner.stories.storyshot +++ b/src/components/extensive/Banner/Hero/__snapshots__/HeroBanner.stories.storyshot @@ -32,7 +32,7 @@ exports[`Storyshots Components/Extensive/Banner/HeroBanner Default 1`] = ` onTouchStart={[Function]} > Sign up diff --git a/src/components/extensive/Banner/__snapshots__/BannerCard.stories.storyshot b/src/components/extensive/Banner/__snapshots__/BannerCard.stories.storyshot index 270e00f0a..c3cceb223 100644 --- a/src/components/extensive/Banner/__snapshots__/BannerCard.stories.storyshot +++ b/src/components/extensive/Banner/__snapshots__/BannerCard.stories.storyshot @@ -46,7 +46,7 @@ exports[`Storyshots Components/Extensive/Banner/BannerCard Default 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center gap-1.5 tracking-wide w-full justify-center" > View Profile diff --git a/src/components/extensive/BuildStrongProfile/__snapshots__/BuildStrongerProfile.stories.storyshot b/src/components/extensive/BuildStrongProfile/__snapshots__/BuildStrongerProfile.stories.storyshot index ba6ff9c31..3f30be0f5 100644 --- a/src/components/extensive/BuildStrongProfile/__snapshots__/BuildStrongerProfile.stories.storyshot +++ b/src/components/extensive/BuildStrongProfile/__snapshots__/BuildStrongerProfile.stories.storyshot @@ -20,7 +20,7 @@ exports[`Storyshots Components/Extensive/BuildStrongerProfile Neutral 150 1`] = className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Edit Profile @@ -102,7 +102,7 @@ exports[`Storyshots Components/Extensive/BuildStrongerProfile White 1`] = ` className="bg-primary-500 hover:bg-primary-400 py-2 !text-white rounded-md px-4 uppercase disabled:bg-neutral-300 disabled:text-neutral-800 transition whitespace-nowrap text-black min-h-10 flex items-center justify-center gap-1.5 tracking-wide w-fit-content" > Edit Profile diff --git a/src/components/extensive/CookieBanner/__snapshots__/CookieBanner.stories.storyshot b/src/components/extensive/CookieBanner/__snapshots__/CookieBanner.stories.storyshot index 8e4617baa..b0f10d6c3 100644 --- a/src/components/extensive/CookieBanner/__snapshots__/CookieBanner.stories.storyshot +++ b/src/components/extensive/CookieBanner/__snapshots__/CookieBanner.stories.storyshot @@ -18,7 +18,7 @@ exports[`Storyshots Components/Extensive/CookieBanner Default 1`] = ` onClick={[Function]} > Ok diff --git a/src/components/extensive/Icon/Icon.tsx b/src/components/extensive/Icon/Icon.tsx index 654c1e1e4..7216176e6 100644 --- a/src/components/extensive/Icon/Icon.tsx +++ b/src/components/extensive/Icon/Icon.tsx @@ -200,7 +200,9 @@ export enum IconNames { ORANGE_DOTS = "orange-dots", IC_NOTIFICATION = "notification", IC_LOADING = "loading", - IC_INFO_WHITE_BLACK = "ic-info-white-black" + IC_INFO_WHITE_BLACK = "ic-info-white-black", + IC_EXPAND = "ic_expand", + IC_SHINK = "ic_shrink" } export interface IconProps { diff --git a/src/components/extensive/Modal/__snapshots__/FormModal.stories.storyshot b/src/components/extensive/Modal/__snapshots__/FormModal.stories.storyshot index 1547d4708..8bf54f6bc 100644 --- a/src/components/extensive/Modal/__snapshots__/FormModal.stories.storyshot +++ b/src/components/extensive/Modal/__snapshots__/FormModal.stories.storyshot @@ -39,7 +39,7 @@ exports[`Storyshots Components/Extensive/Modal/FormModal Default 1`] = ` type="submit" > Save diff --git a/src/components/extensive/Modal/__snapshots__/Modal.stories.storyshot b/src/components/extensive/Modal/__snapshots__/Modal.stories.storyshot index d363bc3c5..8fb324735 100644 --- a/src/components/extensive/Modal/__snapshots__/Modal.stories.storyshot +++ b/src/components/extensive/Modal/__snapshots__/Modal.stories.storyshot @@ -39,7 +39,7 @@ exports[`Storyshots Components/Extensive/Modal Default 1`] = ` onClick={[Function]} > Cancel @@ -49,7 +49,7 @@ exports[`Storyshots Components/Extensive/Modal Default 1`] = ` onClick={[Function]} > Close and continue later diff --git a/src/components/extensive/Modal/__snapshots__/ModalAdd.stories.storyshot b/src/components/extensive/Modal/__snapshots__/ModalAdd.stories.storyshot index 0a3af1723..f5647855f 100644 --- a/src/components/extensive/Modal/__snapshots__/ModalAdd.stories.storyshot +++ b/src/components/extensive/Modal/__snapshots__/ModalAdd.stories.storyshot @@ -148,7 +148,7 @@ exports[`Storyshots Components/Extensive/Modal/ModalAdd Default 1`] = ` onClick={[Function]} >

Cancel @@ -66,7 +66,7 @@ exports[`Storyshots Components/Extensive/Modal/ModalWithClose Default 1`] = ` onClick={[Function]} > Close and continue later diff --git a/src/components/extensive/Modal/__snapshots__/ModalWithLogo.stories.storyshot b/src/components/extensive/Modal/__snapshots__/ModalWithLogo.stories.storyshot index 50ee0495d..0022f3536 100644 --- a/src/components/extensive/Modal/__snapshots__/ModalWithLogo.stories.storyshot +++ b/src/components/extensive/Modal/__snapshots__/ModalWithLogo.stories.storyshot @@ -239,7 +239,7 @@ exports[`Storyshots Components/Extensive/Modal/ModalWithLogo Default 1`] = ` } />

View @@ -113,7 +113,7 @@ exports[`Storyshots Components/Extensive/TaskList Default 1`] = ` href="/" > View