Skip to content

Commit 3067a64

Browse files
committed
Init
1 parent 039c3ec commit 3067a64

32 files changed

+318
-84
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import { default as React } from 'react';
2+
import { Accordion } from '../ui/accordion';
3+
type AccordionProps = React.ComponentProps<typeof Accordion> & {
4+
items: {
5+
id: string;
6+
trigger: React.ReactNode;
7+
content: React.ReactNode;
8+
}[];
9+
};
10+
export default function UIAccordion({ items, ...rest }: AccordionProps): import("react/jsx-dev-runtime").JSX.Element;
11+
export {};
12+
//# sourceMappingURL=Accordion.d.ts.map

dist/components/Accordion/Accordion.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { default as Accordion } from './Accordion';
2+
export default Accordion;
3+
//# sourceMappingURL=index.d.ts.map

dist/components/Accordion/index.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/components/Switch/Switch.d.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { default as React } from 'react';
2+
import { Switch } from '../ui/switch';
3+
type SwitchProps = React.ComponentProps<typeof Switch> & {
4+
label: string;
5+
description: string;
6+
id: string;
7+
};
8+
export default function SwitchWithDescription({ id, label, description, ...rest }: SwitchProps): import("react/jsx-dev-runtime").JSX.Element;
9+
export {};
10+
//# sourceMappingURL=Switch.d.ts.map

dist/components/Switch/Switch.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/components/Switch/index.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { default as Switch } from './Switch';
2+
export default Switch;
3+
//# sourceMappingURL=index.d.ts.map

dist/components/Switch/index.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.cjs53.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.cjs81.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("./index.cjs83.js"),R=require("react");/**
1+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("./index.cjs86.js"),R=require("react");/**
22
* @license React
33
* react-jsx-runtime.production.min.js
44
*

0 commit comments

Comments
 (0)