nectiasw 0.0.180 → 0.0.181
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Card/Card.stories.d.ts +14 -0
- package/dist/components/Navbar/Navbar.stories.d.ts +8 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +9041 -9134
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +236 -247
- package/dist/index.umd.js.map +1 -1
- package/dist/stories/Button.d.ts +2 -2
- package/dist/stories/Button.stories.d.ts +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { StoryObj } from '@storybook/react';
|
|
2
|
+
|
|
3
|
+
declare const meta: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: import('react').FunctionComponent<import('./types').CardProps>;
|
|
6
|
+
parameters: {
|
|
7
|
+
layout: string;
|
|
8
|
+
};
|
|
9
|
+
tags: string[];
|
|
10
|
+
argTypes: {};
|
|
11
|
+
};
|
|
12
|
+
export default meta;
|
|
13
|
+
type Story = StoryObj<typeof meta>;
|
|
14
|
+
export declare const Requirement: Story;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { Navbar } from './index.tsx';
|
|
3
|
+
|
|
4
|
+
declare const meta: Meta<typeof Navbar>;
|
|
5
|
+
export default meta;
|
|
6
|
+
type Story = StoryObj<typeof meta>;
|
|
7
|
+
export declare const Default: Story;
|
|
8
|
+
export declare const NoRoutes: Story;
|
package/dist/index.d.ts
CHANGED
|
@@ -116,6 +116,7 @@ export { download } from './utils/download';
|
|
|
116
116
|
export { capitalize } from './utils/capitalize';
|
|
117
117
|
export { formatHourTime, removeHourFormat } from './utils/time';
|
|
118
118
|
export { createTimeSlots, createHalfTimeSlots } from './utils/slots';
|
|
119
|
+
export { useIsMobile } from './utils/responsive';
|
|
119
120
|
export * as Detail from './components/Detail';
|
|
120
121
|
export type { DetailProps, SectionProps } from './components/Detail';
|
|
121
122
|
export { Timeline } from './components/Timeline';
|