@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.
Files changed (35) hide show
  1. package/build.js +8 -4
  2. package/dist/index.d.ts +6 -9
  3. package/dist/index.js +1 -6372
  4. package/dist/index.js.map +3 -3
  5. package/dist/types/stories/atoms/buttons/Button/Button.d.ts +2 -2
  6. package/dist/types/stories/atoms/buttons/Capsule/Capsule.d.ts +1 -1
  7. package/dist/types/stories/atoms/icons/DynamicIcon.d.ts +1 -1
  8. package/dist/types/stories/atoms/icons/TablerIcon.d.ts +1 -1
  9. package/dist/types/stories/organisms/AnimatedLabelInput/AnimatedLabelInput.d.ts +1 -1
  10. package/package.json +29 -4
  11. package/rollup.config.mjs +42 -0
  12. package/scripts/build.sh +53 -0
  13. package/scripts/resolve-files.js +32 -0
  14. package/scripts/rewrite-imports.js +24 -0
  15. package/stories/atoms/buttons/Button/Button.tsx +3 -2
  16. package/stories/atoms/buttons/Capsule/Capsule.tsx +2 -1
  17. package/stories/atoms/icons/DynamicIcon.tsx +2 -2
  18. package/stories/atoms/icons/TablerIcon.tsx +1 -1
  19. package/stories/atoms/loaders/Loader.tsx +12 -6
  20. package/stories/molecules/inputs/textArea/TextArea.tsx +13 -16
  21. package/stories/organisms/AnimatedLabelInput/AnimatedLabelInput.tsx +35 -33
  22. package/stories/organisms/AnimatedLabelTextArea/AnimatedLabelTextArea.tsx +3 -3
  23. package/stories/organisms/DropdownComponent/DropdownComponent.tsx +1 -1
  24. package/stories/organisms/index.ts +9 -1
  25. package/tsconfig.lib.json +13 -6
  26. package/dist/types/stories/layouts/index.d.ts +0 -0
  27. package/stories/layouts/CardLayout/CardLayout.stories.tsx +0 -18
  28. package/stories/layouts/CardLayout/CardLayout.tsx +0 -22
  29. package/stories/layouts/CardLayout/index.tsx +0 -3
  30. package/stories/layouts/ModalLayout/ModalLayout.stories.tsx +0 -18
  31. package/stories/layouts/ModalLayout/ModalLayout.tsx +0 -22
  32. package/stories/layouts/ModalLayout/index.tsx +0 -3
  33. package/stories/layouts/index.ts +0 -0
  34. package/stories/organisms/DropdownComponent/Dropdown.test.tsx +0 -0
  35. /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;
@@ -1,3 +0,0 @@
1
-
2
- export { default } from './ModalLayout';
3
- export * from './ModalLayout';
File without changes
File without changes