@kalink-ui/seedly 0.20.0 → 0.22.0
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @kalink-ui/seedly
|
|
2
2
|
|
|
3
|
+
## 0.22.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 26816de: [Styles] Add `justifySelf` responsive property
|
|
8
|
+
|
|
9
|
+
## 0.21.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- a0f9b5c: [AlertDialog] Correctly reexport component
|
|
14
|
+
|
|
3
15
|
## 0.20.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -15,7 +15,7 @@ export function ButtonIcon<TUse extends ButtonTypes>(
|
|
|
15
15
|
|
|
16
16
|
return (
|
|
17
17
|
<Comp
|
|
18
|
-
className={clsx(buttonIcon({ variant, size }),
|
|
18
|
+
className={clsx(buttonIcon({ variant, size }), className)}
|
|
19
19
|
/* eslint-disable-next-line @typescript-eslint/no-explicit-any */
|
|
20
20
|
{...(rest as any)}
|
|
21
21
|
/>
|
package/src/components/index.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from './alert-dialog';
|
|
1
2
|
export * from './box';
|
|
2
3
|
export * from './button';
|
|
3
4
|
export * from './button-icon';
|
|
@@ -16,6 +17,8 @@ export * from './input';
|
|
|
16
17
|
export * from './label';
|
|
17
18
|
export * from './loader';
|
|
18
19
|
export * from './loader-overlay';
|
|
20
|
+
export * from './menu';
|
|
21
|
+
export * from './overlay';
|
|
19
22
|
export * from './popover';
|
|
20
23
|
export * from './scroll-area';
|
|
21
24
|
export * from './seed';
|
|
@@ -69,6 +69,7 @@ export const defineResponsiveProperties = ({
|
|
|
69
69
|
'space-around',
|
|
70
70
|
'space-evenly',
|
|
71
71
|
],
|
|
72
|
+
justifySelf: ['start', 'end', 'center', 'stretch'],
|
|
72
73
|
alignItems: ['flex-start', 'flex-end', 'center', 'baseline', 'stretch'],
|
|
73
74
|
alignSelf: ['flex-start', 'flex-end', 'center', 'baseline', 'stretch'],
|
|
74
75
|
|
|
@@ -131,6 +132,8 @@ export type DisplayValues =
|
|
|
131
132
|
keyof DefineResponsiveProperties['styles']['display']['values'];
|
|
132
133
|
export type JustifyContentValues =
|
|
133
134
|
keyof DefineResponsiveProperties['styles']['justifyContent']['values'];
|
|
135
|
+
export type JustifySelfValues =
|
|
136
|
+
keyof DefineResponsiveProperties['styles']['justifySelf']['values'];
|
|
134
137
|
export type AlignItemsValues =
|
|
135
138
|
keyof DefineResponsiveProperties['styles']['alignItems']['values'];
|
|
136
139
|
export type AlignSelfValues =
|
|
@@ -180,6 +183,8 @@ export interface ResponsiveProperties {
|
|
|
180
183
|
flexDirection?: ResponsiveValue<FlexDirectionValues>;
|
|
181
184
|
/** Mapped to `justify-content` css property */
|
|
182
185
|
justifyContent?: ResponsiveValue<JustifyContentValues>;
|
|
186
|
+
/** Mapped to `justify-self` css property */
|
|
187
|
+
justifySelf?: ResponsiveValue<JustifySelfValues>;
|
|
183
188
|
/** Mapped to `align-items` css property */
|
|
184
189
|
alignItems?: ResponsiveValue<AlignItemsValues>;
|
|
185
190
|
/** Mapped to `align-self` css property */
|