@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
@@ -0,0 +1,5 @@
1
+ import { StoryFn, Meta } from '@storybook/react';
2
+ declare const stories: Meta<StoryFn<any>>;
3
+ export declare const Primary: any;
4
+ export declare const Secondary: any;
5
+ export default stories;
@@ -0,0 +1,22 @@
1
+ import { jsx as r } from "react/jsx-runtime";
2
+ import t from "./BasicButtons.js";
3
+ const i = {
4
+ title: "Components/BasicButtons",
5
+ component: t,
6
+ argTypes: {
7
+ // Définissez ici vos paramètres d'histoires spécifiques aux arguments (args).
8
+ }
9
+ }, o = (n) => /* @__PURE__ */ r(t, { ...n }), s = o.bind({});
10
+ s.args = {
11
+ label: "Primary Button"
12
+ };
13
+ const a = o.bind({});
14
+ a.args = {
15
+ label: "Secondary Button",
16
+ secondary: !0
17
+ };
18
+ export {
19
+ s as Primary,
20
+ a as Secondary,
21
+ i as default
22
+ };
@@ -0,0 +1,2 @@
1
+ export { default as BasicButtons } from "./BasicButtons";
2
+ export * from "./BasicButtons";
@@ -0,0 +1,4 @@
1
+ import { default as o } from "./BasicButtons.js";
2
+ export {
3
+ o as BasicButtons
4
+ };
@@ -1,2 +1,2 @@
1
- export * from "./Button";
2
- export * from "./SearchField";
1
+ export * from "./BasicButtons";
2
+ export * from "./AnotherComponent";
@@ -1,6 +1,6 @@
1
- import { default as a } from "./Button/Button.js";
2
- import { default as r } from "./SearchField/SearchField.js";
1
+ import { default as e } from "./BasicButtons/BasicButtons.js";
2
+ import { default as r } from "./AnotherComponent/AnotherComponent.js";
3
3
  export {
4
- a as Button,
5
- r as SearchField
4
+ r as AnotherComponent,
5
+ e as BasicButtons
6
6
  };
package/dist/index.js CHANGED
@@ -1,7 +1,6 @@
1
- import "./assets/index.css";
2
- import { default as r } from "./components/Button/Button.js";
3
- import { default as f } from "./components/SearchField/SearchField.js";
1
+ import { default as e } from "./components/BasicButtons/BasicButtons.js";
2
+ import { default as r } from "./components/AnotherComponent/AnotherComponent.js";
4
3
  export {
5
- r as Button,
6
- f as SearchField
4
+ r as AnotherComponent,
5
+ e as BasicButtons
7
6
  };