@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.
- package/dist/assets/AnotherComponent.css +1 -0
- package/dist/components/AnotherComponent/AnotherComponent.d.ts +2 -0
- package/dist/components/AnotherComponent/AnotherComponent.js +15 -0
- package/dist/components/AnotherComponent/AnotherComponent.stories.d.ts +5 -0
- package/dist/components/AnotherComponent/AnotherComponent.stories.js +22 -0
- package/dist/components/AnotherComponent/index.d.ts +2 -0
- package/dist/components/AnotherComponent/index.js +4 -0
- package/dist/components/BasicButtons/BasicButtons.d.ts +2 -0
- package/dist/components/BasicButtons/BasicButtons.js +1983 -0
- package/dist/components/BasicButtons/BasicButtons.stories.d.ts +5 -0
- package/dist/components/BasicButtons/BasicButtons.stories.js +22 -0
- package/dist/components/BasicButtons/index.d.ts +2 -0
- package/dist/components/BasicButtons/index.js +4 -0
- package/dist/components/index.d.ts +2 -2
- package/dist/components/index.js +4 -4
- package/dist/index.js +4 -5
- package/dist/useTheme-44keg6z0.js +2235 -0
- package/package.json +2 -6
- package/dist/TransitionGroupContext-SCyurvOT.js +0 -4197
- package/dist/assets/index.css +0 -1
- package/dist/components/Button/Button.d.ts +0 -11
- package/dist/components/Button/Button.js +0 -1260
- package/dist/components/Button/Button.stories.d.ts +0 -7
- package/dist/components/Button/Button.stories.js +0 -31
- package/dist/components/Button/index.d.ts +0 -2
- package/dist/components/Button/index.js +0 -4
- package/dist/components/SearchField/SearchField.d.ts +0 -7
- package/dist/components/SearchField/SearchField.js +0 -26605
- package/dist/components/SearchField/index.d.ts +0 -2
- package/dist/components/SearchField/index.js +0 -4
- 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
|
-
};
|