Skip to content

Commit

Permalink
updated version and added keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Valentino committed Mar 2, 2024
1 parent ba9c409 commit 493599d
Show file tree
Hide file tree
Showing 47 changed files with 129 additions and 34 deletions.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Geologic UI
Geologic UI is a component library inspired by 90's style web design on Geocities. It contains buttons, icons, horizontal rules, an HTML5 compliant center tag, and an HTML5 compliant Blink tag. More components are soon to come. It is compatible with Next.js and React.
Geologic UI is a component library inspired by 90's style web design on Geocities. It contains buttons, icons, HTML5 compliant versions of deprecated HTML tags, and more! It is compatible with Next.js and React.

Component List:
- Blink
- Button
- Center
- HR
- Icon
- UnderConstruction

`npm i geologic-ui`

Expand Down
23 changes: 23 additions & 0 deletions dist/cjs/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/cjs/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion dist/cjs/types/components/Blink/Blink.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/// <reference types="react" />
declare type Props = {
children: any;
};
Expand Down
1 change: 0 additions & 1 deletion dist/cjs/types/components/Blink/Blink.stories.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/// <reference types="react" />
import { ComponentStory, ComponentMeta } from '@storybook/react';
declare const _default: ComponentMeta<(props: {
children: any;
Expand Down
1 change: 0 additions & 1 deletion dist/cjs/types/components/Button/Button.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/// <reference types="react" />
export interface ButtonProps {
label: string;
size?: string;
Expand Down
1 change: 0 additions & 1 deletion dist/cjs/types/components/Button/Button.stories.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/// <reference types="react" />
import { ComponentStory, ComponentMeta } from '@storybook/react';
declare const _default: ComponentMeta<(props: import("./Button").ButtonProps) => JSX.Element>;
export default _default;
Expand Down
1 change: 0 additions & 1 deletion dist/cjs/types/components/Center/Center.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/// <reference types="react" />
declare type Props = {
children: any;
};
Expand Down
1 change: 0 additions & 1 deletion dist/cjs/types/components/Center/Center.stories.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/// <reference types="react" />
import { ComponentStory, ComponentMeta } from '@storybook/react';
declare const _default: ComponentMeta<(props: {
children: any;
Expand Down
1 change: 0 additions & 1 deletion dist/cjs/types/components/HR/HR.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/// <reference types="react" />
export interface HRProps {
size?: string;
color?: string;
Expand Down
1 change: 0 additions & 1 deletion dist/cjs/types/components/HR/HR.stories.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/// <reference types="react" />
import { ComponentStory, ComponentMeta } from '@storybook/react';
declare const _default: ComponentMeta<(props: import("./HR").HRProps) => JSX.Element>;
export default _default;
Expand Down
1 change: 0 additions & 1 deletion dist/cjs/types/components/Icon/Icon.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/// <reference types="react" />
export interface IconProps {
name: string;
size?: string;
Expand Down
1 change: 0 additions & 1 deletion dist/cjs/types/components/Icon/Icon.stories.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/// <reference types="react" />
import { ComponentStory, ComponentMeta } from '@storybook/react';
declare const _default: ComponentMeta<(props: import("./Icon").IconProps) => JSX.Element>;
export default _default;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
declare type Props = {
size?: any;
};
declare const UnderConstruction: (props: Props) => JSX.Element;
export default UnderConstruction;
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import { ComponentStory, ComponentMeta } from '@storybook/react';
declare const _default: ComponentMeta<(props: {
size?: any;
}) => JSX.Element>;
export default _default;
export declare const NoSizeArg: ComponentStory<(props: {
size?: any;
}) => JSX.Element>;
export declare const Small: ComponentStory<(props: {
size?: any;
}) => JSX.Element>;
export declare const Medium: ComponentStory<(props: {
size?: any;
}) => JSX.Element>;
export declare const Large: ComponentStory<(props: {
size?: any;
}) => JSX.Element>;
export declare const XtraLarge: ComponentStory<(props: {
size?: any;
}) => JSX.Element>;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export {};
1 change: 1 addition & 0 deletions dist/cjs/types/components/UnderConstruction/helpers.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export declare const calculateBorderColor: (baseColor: string, borders: string) => string;
File renamed without changes.
1 change: 1 addition & 0 deletions dist/cjs/types/components/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ export { default as Center } from "./Center";
export { default as Blink } from "./Blink";
export { default as HR } from "./HR";
export { default as Icon } from "./Icon";
export { default as UnderConstruction } from "./UnderConstruction";
24 changes: 23 additions & 1 deletion dist/esm/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 493599d

Please sign in to comment.