@agility/plenum-ui 2.0.0-rc13 → 2.0.0-rc14
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/build.js +8 -4
- package/dist/index.d.ts +6 -9
- package/dist/index.js +1 -6372
- package/dist/index.js.map +3 -3
- package/dist/types/stories/atoms/buttons/Button/Button.d.ts +2 -2
- package/dist/types/stories/atoms/buttons/Capsule/Capsule.d.ts +1 -1
- package/dist/types/stories/atoms/icons/DynamicIcon.d.ts +1 -1
- package/dist/types/stories/atoms/icons/TablerIcon.d.ts +1 -1
- package/dist/types/stories/organisms/AnimatedLabelInput/AnimatedLabelInput.d.ts +1 -1
- package/package.json +29 -4
- package/rollup.config.mjs +42 -0
- package/scripts/build.sh +53 -0
- package/scripts/resolve-files.js +32 -0
- package/scripts/rewrite-imports.js +24 -0
- package/stories/atoms/buttons/Button/Button.tsx +3 -2
- package/stories/atoms/buttons/Capsule/Capsule.tsx +2 -1
- package/stories/atoms/icons/DynamicIcon.tsx +2 -2
- package/stories/atoms/icons/TablerIcon.tsx +1 -1
- package/stories/atoms/loaders/Loader.tsx +12 -6
- package/stories/molecules/inputs/textArea/TextArea.tsx +13 -16
- package/stories/organisms/AnimatedLabelInput/AnimatedLabelInput.tsx +35 -33
- package/stories/organisms/AnimatedLabelTextArea/AnimatedLabelTextArea.tsx +3 -3
- package/stories/organisms/DropdownComponent/DropdownComponent.tsx +1 -1
- package/stories/organisms/index.ts +9 -1
- package/tsconfig.lib.json +13 -6
- package/dist/types/stories/layouts/index.d.ts +0 -0
- package/stories/layouts/CardLayout/CardLayout.stories.tsx +0 -18
- package/stories/layouts/CardLayout/CardLayout.tsx +0 -22
- package/stories/layouts/CardLayout/index.tsx +0 -3
- package/stories/layouts/ModalLayout/ModalLayout.stories.tsx +0 -18
- package/stories/layouts/ModalLayout/ModalLayout.tsx +0 -22
- package/stories/layouts/ModalLayout/index.tsx +0 -3
- package/stories/layouts/index.ts +0 -0
- package/stories/organisms/DropdownComponent/Dropdown.test.tsx +0 -0
- /package/dist/{lib/tailwind.css → tailwind.css} +0 -0
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
import type { Meta, StoryObj } from "@storybook/react"
|
|
3
|
-
import ModalLayout, { IModalLayoutProps } from "./ModalLayout"
|
|
4
|
-
|
|
5
|
-
const meta: Meta<typeof ModalLayout> = {
|
|
6
|
-
title: "Design System/layouts/ModalLayout",
|
|
7
|
-
component: ModalLayout,
|
|
8
|
-
tags: ["autodocs"],
|
|
9
|
-
argTypes: {}
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
export default meta
|
|
13
|
-
type Story = StoryObj<typeof ModalLayout>
|
|
14
|
-
export const DefaultModalLayoutStory: Story = {
|
|
15
|
-
args: {
|
|
16
|
-
|
|
17
|
-
}
|
|
18
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
import React from "react"
|
|
3
|
-
import EmptySectionPlaceholder from "@/stories/organisms/EmptySectionPlaceholder"
|
|
4
|
-
|
|
5
|
-
export interface IModalLayoutProps {}
|
|
6
|
-
|
|
7
|
-
const ModalLayout: React.FC<IModalLayoutProps> = ({}) => {
|
|
8
|
-
return (
|
|
9
|
-
<EmptySectionPlaceholder
|
|
10
|
-
{...{
|
|
11
|
-
icon: {
|
|
12
|
-
icon: "IconCode"
|
|
13
|
-
},
|
|
14
|
-
mutedText: "Coming Soon! 🚧",
|
|
15
|
-
primaryMessage: "We're working on this component. Be sure to check back soon!",
|
|
16
|
-
actions: []
|
|
17
|
-
}}
|
|
18
|
-
/>
|
|
19
|
-
)
|
|
20
|
-
};
|
|
21
|
-
|
|
22
|
-
export default ModalLayout;
|
package/stories/layouts/index.ts
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|