Skip to content

Commit

Permalink
feat(nx-dev): Updates from master
Browse files Browse the repository at this point in the history
  • Loading branch information
ndcunningham committed Jul 17, 2024
1 parent eb4a56a commit 385e320
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 91 deletions.
4 changes: 0 additions & 4 deletions nx-dev/nx-dev/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ const {
default: flattenColorPalette,
} = require('tailwindcss/lib/util/flattenColorPalette');

const {
default: flattenColorPalette,
} = require('tailwindcss/lib/util/flattenColorPalette');

if (!createGlobPatternsForDependencies(__dirname).length)
throw Error('GRAPH ISSUE: No dependency found when many are expected.');

Expand Down
2 changes: 1 addition & 1 deletion nx-dev/ui-cloud/src/lib/agent-number-over-time.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use client';
import { SectionHeading } from '@nx/nx-dev/ui-common/src/lib/section-tags';
import { SectionHeading } from '@nx/nx-dev/ui-common';
import { motion } from 'framer-motion';
import { useEffect, useState } from 'react';
interface Agent {
Expand Down
4 changes: 2 additions & 2 deletions nx-dev/ui-cloud/src/lib/automated-agents-management.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import {
CircleStackIcon,
CodeBracketSquareIcon,
} from '@heroicons/react/24/outline';
import { SectionHeading } from '@nx/nx-dev/ui-common/src/lib/section-tags';
import { SectionHeading } from '@nx/nx-dev/ui-common';
import { motion } from 'framer-motion';
import { NxCloudIcon } from '@nx/nx-dev/ui-common';
import { NxCloudIcon } from '@nx/nx-dev/ui-icons';

export function AutomatedAgentsManagement(): JSX.Element {
const variants = {
Expand Down
77 changes: 0 additions & 77 deletions nx-dev/ui-cloud/src/lib/elements/moving-border.tsx

This file was deleted.

2 changes: 1 addition & 1 deletion nx-dev/ui-cloud/src/lib/enhance-with-ai.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
RectangleGroupIcon,
ServerStackIcon,
} from '@heroicons/react/24/outline';
import { SectionHeading } from '@nx/nx-dev/ui-common/src/lib/section-tags';
import { SectionHeading } from '@nx/nx-dev/ui-common';

const features = [
{
Expand Down
5 changes: 2 additions & 3 deletions nx-dev/ui-cloud/src/lib/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ import { cx } from '@nx/nx-dev/ui-primitives';
import { PlayIcon } from '@heroicons/react/24/outline';
import { motion } from 'framer-motion';
import { ComponentProps, Fragment, useState } from 'react';
import { ButtonLink } from '@nx/nx-dev/ui-common';
import { SectionHeading } from '@nx/nx-dev/ui-common/src/lib/section-tags';
import { MovingBorder } from './elements/moving-border';
import { ButtonLink, SectionHeading } from '@nx/nx-dev/ui-common';
import { MovingBorder } from '@nx/nx-dev/ui-animations';
import Image from 'next/image';

export function Hero(): JSX.Element {
Expand Down
2 changes: 1 addition & 1 deletion nx-dev/ui-cloud/src/lib/statistics.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use client';
import { motion } from 'framer-motion';
import { useEffect, useState } from 'react';
import { SectionHeading } from '@nx/nx-dev/ui-common/src/lib/section-tags';
import { SectionHeading } from '@nx/nx-dev/ui-common';

/**
* Calculate the total number of years worth of compute.
Expand Down
2 changes: 1 addition & 1 deletion nx-dev/ui-cloud/src/lib/trusted-by.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
ShopifyIcon,
StorybookIcon,
VmwareIcon,
} from '@nx/nx-dev/ui-common';
} from '@nx/nx-dev/ui-icons';
export function TrustedBy(): JSX.Element {
return (
<section className="">
Expand Down
2 changes: 1 addition & 1 deletion nx-dev/ui-cloud/src/lib/understand-workspace.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
LockClosedIcon,
SparklesIcon,
} from '@heroicons/react/24/outline';
import { SectionHeading } from '@nx/nx-dev/ui-common/src/lib/section-tags';
import { SectionHeading } from '@nx/nx-dev/ui-common';
import { BentoGrid, BentoGridItem } from './elements/bento-grid';
import { cx } from '@nx/nx-dev/ui-primitives';
import { animate, motion, useMotionValue, useTransform } from 'framer-motion';
Expand Down

0 comments on commit 385e320

Please sign in to comment.