Skip to content

Commit

Permalink
revert: export type *
Browse files Browse the repository at this point in the history
  • Loading branch information
segunadebayo committed Nov 15, 2023
1 parent 78b940b commit 92c89f6
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 56 deletions.
2 changes: 1 addition & 1 deletion packages/generator/src/engines/file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const getFileEngine = (config: UserConfig): PandaFileEngine => {
return `export * from '${this.ext(file)}';`
},
exportTypeStar(file: string) {
return `export type * from '${this.__extDts(file)}';`
return `export * from '${this.__extDts(file)}';`
},
isTypeFile(file: string) {
return file.endsWith('.d.ts') || file.endsWith('.d.mts')
Expand Down
8 changes: 4 additions & 4 deletions packages/studio/styled-system/css/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable */
export type * from './css';
export type * from './cx';
export type * from './cva';
export type * from './sva';
export * from './css';
export * from './cx';
export * from './cva';
export * from './sva';
46 changes: 23 additions & 23 deletions packages/studio/styled-system/jsx/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
/* eslint-disable */
export type * from './factory';
export * from './factory';

export type * from './is-valid-prop';
export * from './is-valid-prop';

export type * from './box';
export type * from './flex';
export type * from './stack';
export type * from './vstack';
export type * from './hstack';
export type * from './spacer';
export type * from './square';
export type * from './circle';
export type * from './center';
export type * from './link-box';
export type * from './link-overlay';
export type * from './aspect-ratio';
export type * from './grid';
export type * from './grid-item';
export type * from './wrap';
export type * from './container';
export type * from './divider';
export type * from './float';
export type * from './bleed';
export type * from './visually-hidden';
export type * from './styled-link';
export * from './box';
export * from './flex';
export * from './stack';
export * from './vstack';
export * from './hstack';
export * from './spacer';
export * from './square';
export * from './circle';
export * from './center';
export * from './link-box';
export * from './link-overlay';
export * from './aspect-ratio';
export * from './grid';
export * from './grid-item';
export * from './wrap';
export * from './container';
export * from './divider';
export * from './float';
export * from './bleed';
export * from './visually-hidden';
export * from './styled-link';

export type { HTMLPandaProps, PandaComponent } from '../types/jsx';
42 changes: 21 additions & 21 deletions packages/studio/styled-system/patterns/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
/* eslint-disable */
export type * from './box';
export type * from './flex';
export type * from './stack';
export type * from './vstack';
export type * from './hstack';
export type * from './spacer';
export type * from './square';
export type * from './circle';
export type * from './center';
export type * from './link-box';
export type * from './link-overlay';
export type * from './aspect-ratio';
export type * from './grid';
export type * from './grid-item';
export type * from './wrap';
export type * from './container';
export type * from './divider';
export type * from './float';
export type * from './bleed';
export type * from './visually-hidden';
export type * from './styled-link';
export * from './box';
export * from './flex';
export * from './stack';
export * from './vstack';
export * from './hstack';
export * from './spacer';
export * from './square';
export * from './circle';
export * from './center';
export * from './link-box';
export * from './link-overlay';
export * from './aspect-ratio';
export * from './grid';
export * from './grid-item';
export * from './wrap';
export * from './container';
export * from './divider';
export * from './float';
export * from './bleed';
export * from './visually-hidden';
export * from './styled-link';
2 changes: 1 addition & 1 deletion packages/studio/styled-system/tokens/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ export declare const token: {
var: (path: Token, fallback?: string) => string
}

export type * from './tokens';
export * from './tokens';
12 changes: 6 additions & 6 deletions packages/studio/styled-system/types/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* eslint-disable */
import './global.d.ts'
export type * from './conditions';
export type * from './pattern';
export type * from './recipe';
export type * from './system-types';
export type * from './jsx';
export type * from './style-props';
export * from './conditions';
export * from './pattern';
export * from './recipe';
export * from './system-types';
export * from './jsx';
export * from './style-props';

2 comments on commit 92c89f6

@vercel
Copy link

@vercel vercel bot commented on 92c89f6 Nov 15, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 92c89f6 Nov 15, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

panda-studio – ./

panda-app.vercel.app
panda-studio-git-main-chakra-ui.vercel.app
panda-studio-chakra-ui.vercel.app

Please sign in to comment.