@agility/plenum-ui 2.0.0-rc31 → 2.0.0-rc33
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/index.d.ts +5 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +3 -3
- package/dist/tailwind.css +105 -23
- package/dist/types/stories/atoms/buttons/Button/Alternative/Alternative.stories.d.ts +1 -0
- package/dist/types/stories/atoms/buttons/Button/Danger/Danger.stories.d.ts +1 -0
- package/dist/types/stories/atoms/buttons/Button/Primary/Primary.stories.d.ts +1 -0
- package/dist/types/stories/atoms/buttons/Button/Secondary/Secondary.stories.d.ts +1 -0
- package/dist/types/stories/organisms/DropdownComponent/DropdownComponent.d.ts +1 -0
- package/package.json +1 -1
- package/stories/atoms/buttons/Button/Alternative/Alternative.stories.ts +10 -0
- package/stories/atoms/buttons/Button/Button.tsx +5 -4
- package/stories/atoms/buttons/Button/Danger/Danger.stories.ts +12 -0
- package/stories/atoms/buttons/Button/Primary/Primary.stories.ts +12 -0
- package/stories/atoms/buttons/Button/Secondary/Secondary.stories.ts +12 -0
- package/stories/molecules/inputs/checkbox/Checkbox.tsx +0 -1
- package/stories/organisms/ButtonDropdown/ButtonDropdown.tsx +14 -5
- package/stories/organisms/DropdownComponent/DropdownComponent.tsx +3 -0
package/dist/index.d.ts
CHANGED
|
@@ -72,6 +72,7 @@ declare module '@agility/plenum-ui/stories/atoms/buttons/Button/Alternative/Alte
|
|
|
72
72
|
export default meta;
|
|
73
73
|
type Story = StoryObj<typeof Button>;
|
|
74
74
|
export const Alternative: Story;
|
|
75
|
+
export const AlternativeDisabled: Story;
|
|
75
76
|
export const AlternativeTrailingIcon: Story;
|
|
76
77
|
export const AlternativeLeadingIcon: Story;
|
|
77
78
|
export const AlternativeExtraSmall: Story;
|
|
@@ -123,6 +124,7 @@ declare module '@agility/plenum-ui/stories/atoms/buttons/Button/Danger/Danger.st
|
|
|
123
124
|
export default meta;
|
|
124
125
|
type Story = StoryObj<typeof Button>;
|
|
125
126
|
export const Danger: Story;
|
|
127
|
+
export const DangerDisabled: Story;
|
|
126
128
|
export const DangerTrailingIcon: Story;
|
|
127
129
|
export const DangerLeadingIcon: Story;
|
|
128
130
|
export const DangerSimpleIconName: Story;
|
|
@@ -140,6 +142,7 @@ declare module '@agility/plenum-ui/stories/atoms/buttons/Button/Primary/Primary.
|
|
|
140
142
|
export default meta;
|
|
141
143
|
type Story = StoryObj<typeof Button>;
|
|
142
144
|
export const Primary: Story;
|
|
145
|
+
export const PrimaryDisabled: Story;
|
|
143
146
|
export const PrimaryLeadingIcon: Story;
|
|
144
147
|
export const PrimarySimpleIconName: Story;
|
|
145
148
|
export const PrimaryTrailingIcon: Story;
|
|
@@ -157,6 +160,7 @@ declare module '@agility/plenum-ui/stories/atoms/buttons/Button/Secondary/Second
|
|
|
157
160
|
export default meta;
|
|
158
161
|
type Story = StoryObj<typeof Button>;
|
|
159
162
|
export const Secondary: Story;
|
|
163
|
+
export const SecondaryDisabled: Story;
|
|
160
164
|
export const SecondaryTrailingIcon: Story;
|
|
161
165
|
export const SecondaryLeadingIcon: Story;
|
|
162
166
|
export const SecondarySimpleIconName: Story;
|
|
@@ -957,6 +961,7 @@ declare module '@agility/plenum-ui/stories/organisms/DropdownComponent/DropdownC
|
|
|
957
961
|
crossAxis: number;
|
|
958
962
|
alignmentAxis: number | null;
|
|
959
963
|
}>;
|
|
964
|
+
disabled?: boolean;
|
|
960
965
|
}
|
|
961
966
|
export const defaultClassNames: {
|
|
962
967
|
groupClassname: string;
|