@cgi-learning-hub/ui 0.0.1-dev.1706796454 → 0.0.1-dev.1707475587

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 (31) hide show
  1. package/dist/assets/AnotherComponent.css +1 -0
  2. package/dist/components/AnotherComponent/AnotherComponent.d.ts +2 -0
  3. package/dist/components/AnotherComponent/AnotherComponent.js +15 -0
  4. package/dist/components/AnotherComponent/AnotherComponent.stories.d.ts +5 -0
  5. package/dist/components/AnotherComponent/AnotherComponent.stories.js +22 -0
  6. package/dist/components/AnotherComponent/index.d.ts +2 -0
  7. package/dist/components/AnotherComponent/index.js +4 -0
  8. package/dist/components/BasicButtons/BasicButtons.d.ts +2 -0
  9. package/dist/components/BasicButtons/BasicButtons.js +1983 -0
  10. package/dist/components/BasicButtons/BasicButtons.stories.d.ts +5 -0
  11. package/dist/components/BasicButtons/BasicButtons.stories.js +22 -0
  12. package/dist/components/BasicButtons/index.d.ts +2 -0
  13. package/dist/components/BasicButtons/index.js +4 -0
  14. package/dist/components/index.d.ts +2 -2
  15. package/dist/components/index.js +4 -4
  16. package/dist/index.js +4 -5
  17. package/dist/useTheme-44keg6z0.js +2235 -0
  18. package/package.json +2 -6
  19. package/dist/TransitionGroupContext-SCyurvOT.js +0 -4197
  20. package/dist/assets/index.css +0 -1
  21. package/dist/components/Button/Button.d.ts +0 -11
  22. package/dist/components/Button/Button.js +0 -1260
  23. package/dist/components/Button/Button.stories.d.ts +0 -7
  24. package/dist/components/Button/Button.stories.js +0 -31
  25. package/dist/components/Button/index.d.ts +0 -2
  26. package/dist/components/Button/index.js +0 -4
  27. package/dist/components/SearchField/SearchField.d.ts +0 -7
  28. package/dist/components/SearchField/SearchField.js +0 -26605
  29. package/dist/components/SearchField/index.d.ts +0 -2
  30. package/dist/components/SearchField/index.js +0 -4
  31. package/dist/createSvgIcon-3ijLxpup.js +0 -182
@@ -1,7 +0,0 @@
1
- import { Meta, StoryObj } from "@storybook/react";
2
- import { ButtonProps } from './Button';
3
- declare const meta: Meta<ButtonProps>;
4
- export default meta;
5
- type Story = StoryObj<ButtonProps>;
6
- export declare const Base: Story;
7
- export declare const IconedButton: Story;
@@ -1,31 +0,0 @@
1
- import { jsx as t } from "react/jsx-runtime";
2
- import o from "./Button.js";
3
- import { c as n } from "../../createSvgIcon-3ijLxpup.js";
4
- const e = n(/* @__PURE__ */ t("path", {
5
- d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z"
6
- }), "InsertEmoticon"), m = {
7
- title: "Components/Buttons/Button",
8
- component: o,
9
- argTypes: {
10
- text: {
11
- description: "Button text value",
12
- control: {
13
- type: "string"
14
- }
15
- }
16
- }
17
- }, a = {
18
- args: {
19
- text: "Base button"
20
- }
21
- }, i = {
22
- args: {
23
- text: "Iconed Button",
24
- icon: /* @__PURE__ */ t(e, {})
25
- }
26
- };
27
- export {
28
- a as Base,
29
- i as IconedButton,
30
- m as default
31
- };
@@ -1,2 +0,0 @@
1
- export { default as Button } from "./Button";
2
- export * from './Button';
@@ -1,4 +0,0 @@
1
- import { default as a } from "./Button.js";
2
- export {
3
- a as Button
4
- };
@@ -1,7 +0,0 @@
1
- import { TextFieldProps } from '@mui/material';
2
- export type SearchFieldProps = TextFieldProps;
3
- declare const SearchField: {
4
- (props: SearchFieldProps): import("react/jsx-runtime").JSX.Element;
5
- displayName: string;
6
- };
7
- export default SearchField;