digital-rabbit-cl 1.2.8 → 1.3.1
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/README.md +1 -1
- package/dist/components/Button/Button.d.ts +6 -14
- package/dist/components/Button/Button.d.ts.map +1 -1
- package/dist/components/Button/useButtonStyles.d.ts +2 -2
- package/dist/components/Button/useButtonStyles.d.ts.map +1 -1
- package/dist/components/Checkbox/Checkbox.d.ts +8 -3
- package/dist/components/Checkbox/Checkbox.d.ts.map +1 -1
- package/dist/components/Checkbox/useCheckboxStyles.d.ts +1 -1
- package/dist/components/Checkbox/useCheckboxStyles.d.ts.map +1 -1
- package/dist/components/FeatureCard/FeatureCard.d.ts +3 -2
- package/dist/components/FeatureCard/FeatureCard.d.ts.map +1 -1
- package/dist/components/FeatureGridSection/FeatureGridSection.d.ts +2 -3
- package/dist/components/FeatureGridSection/FeatureGridSection.d.ts.map +1 -1
- package/dist/components/Footer/Footer.d.ts +4 -8
- package/dist/components/Footer/Footer.d.ts.map +1 -1
- package/dist/components/Footer/useFooterStyles.d.ts +10 -10
- package/dist/components/Footer/useFooterStyles.d.ts.map +1 -1
- package/dist/components/Form/Form.d.ts +3 -1
- package/dist/components/Form/Form.d.ts.map +1 -1
- package/dist/components/Form/FormField.d.ts +1 -1
- package/dist/components/Form/FormField.d.ts.map +1 -1
- package/dist/components/FormError/FormError.d.ts +1 -1
- package/dist/components/FormError/FormError.d.ts.map +1 -1
- package/dist/components/FormGroup/FormGroup.d.ts +6 -9
- package/dist/components/FormGroup/FormGroup.d.ts.map +1 -1
- package/dist/components/FormLabel/FormLabel.d.ts +3 -3
- package/dist/components/FormLabel/FormLabel.d.ts.map +1 -1
- package/dist/components/Hamburger/Hamburger.d.ts +4 -5
- package/dist/components/Hamburger/Hamburger.d.ts.map +1 -1
- package/dist/components/Hamburger/useHamburgerStyles.d.ts +1 -1
- package/dist/components/Hamburger/useHamburgerStyles.d.ts.map +1 -1
- package/dist/components/Header/Header.d.ts +4 -8
- package/dist/components/Header/Header.d.ts.map +1 -1
- package/dist/components/Header/useHeaderStyles.d.ts +3 -3
- package/dist/components/Header/useHeaderStyles.d.ts.map +1 -1
- package/dist/components/Hero/Hero.d.ts +1 -1
- package/dist/components/Hero/Hero.d.ts.map +1 -1
- package/dist/components/Input/Input.d.ts +3 -3
- package/dist/components/Input/Input.d.ts.map +1 -1
- package/dist/components/LoadingSpinner/LoadingSpinner.d.ts +7 -3
- package/dist/components/LoadingSpinner/LoadingSpinner.d.ts.map +1 -1
- package/dist/components/PageLayout/PageLayout.d.ts +3 -2
- package/dist/components/PageLayout/PageLayout.d.ts.map +1 -1
- package/dist/components/Radio/Radio.d.ts +8 -3
- package/dist/components/Radio/Radio.d.ts.map +1 -1
- package/dist/components/ResponsiveNav/ResponsiveNav.d.ts +8 -7
- package/dist/components/ResponsiveNav/ResponsiveNav.d.ts.map +1 -1
- package/dist/components/ResponsiveSection/ResponsiveSection.d.ts +4 -4
- package/dist/components/ResponsiveSection/ResponsiveSection.d.ts.map +1 -1
- package/dist/components/Select/Select.d.ts +3 -3
- package/dist/components/Select/Select.d.ts.map +1 -1
- package/dist/components/Stack/Stack.d.ts +2 -2
- package/dist/components/Stack/Stack.d.ts.map +1 -1
- package/dist/components/Textarea/Textarea.d.ts +3 -3
- package/dist/components/Textarea/Textarea.d.ts.map +1 -1
- package/dist/digital-rabbit-cl.es.js +1177 -1066
- package/dist/digital-rabbit-cl.umd.js +4 -4
- package/dist/index.d.ts +4 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/test-utils.d.ts +2 -1
- package/dist/test-utils.d.ts.map +1 -1
- package/dist/theme/ThemeContext.d.ts +2 -7
- package/dist/theme/ThemeContext.d.ts.map +1 -1
- package/dist/theme/index.d.ts +2 -2
- package/dist/theme/index.d.ts.map +1 -1
- package/dist/types/utils.d.ts +7 -0
- package/dist/types/utils.d.ts.map +1 -0
- package/dist/utils.d.ts +23 -0
- package/dist/utils.d.ts.map +1 -0
- package/package.json +1 -1
- package/dist/utils/componentProps.d.ts +0 -247
- package/dist/utils/componentProps.d.ts.map +0 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
### To Update This Package
|
|
4
4
|
1. commit everything
|
|
5
|
-
3. update the version using [npm version](https://docs.npmjs.com/cli/version)
|
|
5
|
+
3. update the version using [npm version](https://docs.npmjs.com/cli/version) `npm version patch|minor|major`
|
|
6
6
|
2. push everything
|
|
7
7
|
2. build the project using `yarn build` or `npm build`
|
|
8
8
|
4. publish the package using [npm publish](https://docs.npmjs.com/cli/publish)
|
|
@@ -1,14 +1,6 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { BaseComponentProps, StateProps, ColorProps, HoverProps, SizeVariant,
|
|
3
|
-
export interface ButtonProps extends Pick<BaseComponentProps, 'className' | 'style' | 'children'>, Pick<StateProps, 'disabled'>,
|
|
4
|
-
/**
|
|
5
|
-
* Button text color - defaults to theme.buttons.textColor
|
|
6
|
-
*/
|
|
7
|
-
textColor?: string;
|
|
8
|
-
/**
|
|
9
|
-
* Hover text color - defaults to textColor
|
|
10
|
-
*/
|
|
11
|
-
hoverTextColor?: string;
|
|
2
|
+
import { BaseComponentProps, StateProps, ColorProps, HoverProps, SizeVariant, ElementSpecificProps } from '../../types/component-props.d.ts';
|
|
3
|
+
export interface ButtonProps extends Pick<BaseComponentProps, 'className' | 'style' | 'children'>, Pick<StateProps, 'disabled'>, ColorProps, Pick<HoverProps, 'hoverTextColor' | 'hoverBackgroundColor'> {
|
|
12
4
|
/**
|
|
13
5
|
* Button size variant
|
|
14
6
|
*/
|
|
@@ -21,14 +13,14 @@ export interface ButtonProps extends Pick<BaseComponentProps, 'className' | 'sty
|
|
|
21
13
|
* Button type attribute
|
|
22
14
|
*/
|
|
23
15
|
type?: 'button' | 'submit' | 'reset';
|
|
24
|
-
/**
|
|
25
|
-
* HTML button attributes - can include style overrides
|
|
26
|
-
*/
|
|
27
|
-
buttonProps?: ButtonAttributes;
|
|
28
16
|
/**
|
|
29
17
|
* Click handler
|
|
30
18
|
*/
|
|
31
19
|
onClick?: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
20
|
+
/**
|
|
21
|
+
* HTML button attributes (omits all top-level props to prevent conflicts)
|
|
22
|
+
*/
|
|
23
|
+
buttonProps?: Omit<ElementSpecificProps<HTMLButtonElement>, 'className' | 'style' | 'disabled' | 'type' | 'onClick' | 'children'>;
|
|
32
24
|
}
|
|
33
25
|
declare const Button: React.FC<ButtonProps>;
|
|
34
26
|
export default Button;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../src/components/Button/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAIxC,OAAO,KAAK,EACV,kBAAkB,EAClB,UAAU,EACV,UAAU,EACV,UAAU,EACV,WAAW,EACX,
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../src/components/Button/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAIxC,OAAO,KAAK,EACV,kBAAkB,EAClB,UAAU,EACV,UAAU,EACV,UAAU,EACV,WAAW,EACX,oBAAoB,EACrB,MAAM,kCAAkC,CAAC;AAE1C,MAAM,WAAW,WACf,SAAQ,IAAI,CAAC,kBAAkB,EAAE,WAAW,GAAG,OAAO,GAAG,UAAU,CAAC,EAClE,IAAI,CAAC,UAAU,EAAE,UAAU,CAAC,EAC5B,UAAU,EACV,IAAI,CAAC,UAAU,EAAE,gBAAgB,GAAG,sBAAsB,CAAC;IAE7D;;OAEG;IACH,IAAI,CAAC,EAAE,WAAW,CAAC;IAEnB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB;;OAEG;IACH,IAAI,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,OAAO,CAAC;IAErC;;OAEG;IACH,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,UAAU,CAAC,iBAAiB,CAAC,KAAK,IAAI,CAAC;IAG/D;;OAEG;IACH,WAAW,CAAC,EAAE,IAAI,CAChB,oBAAoB,CAAC,iBAAiB,CAAC,EACvC,WAAW,GAAG,OAAO,GAAG,UAAU,GAAG,MAAM,GAAG,SAAS,GAAG,UAAU,CACrE,CAAC;CACH;AAED,QAAA,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CAgFjC,CAAC;AAEF,eAAe,MAAM,CAAC"}
|
|
@@ -7,7 +7,7 @@ export interface UseButtonStylesParams {
|
|
|
7
7
|
disabled: boolean;
|
|
8
8
|
buttonColor: string;
|
|
9
9
|
textColor: string;
|
|
10
|
-
|
|
10
|
+
hoverBackgroundColor?: string;
|
|
11
11
|
hoverTextColor?: string;
|
|
12
12
|
outline: boolean;
|
|
13
13
|
}
|
|
@@ -17,5 +17,5 @@ export interface ButtonStyles {
|
|
|
17
17
|
color: string;
|
|
18
18
|
opacity: number;
|
|
19
19
|
}
|
|
20
|
-
export declare const useButtonStyles: ({ isActive, disabled, buttonColor, textColor,
|
|
20
|
+
export declare const useButtonStyles: ({ isActive, disabled, buttonColor, textColor, hoverBackgroundColor, hoverTextColor, outline, }: Partial<UseButtonStylesParams>) => ButtonStyles;
|
|
21
21
|
//# sourceMappingURL=useButtonStyles.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useButtonStyles.d.ts","sourceRoot":"","sources":["../../../src/components/Button/useButtonStyles.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,WAAW,qBAAqB;IACpC,QAAQ,EAAE,OAAO,CAAC;IAClB,QAAQ,EAAE,OAAO,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,
|
|
1
|
+
{"version":3,"file":"useButtonStyles.d.ts","sourceRoot":"","sources":["../../../src/components/Button/useButtonStyles.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,WAAW,qBAAqB;IACpC,QAAQ,EAAE,OAAO,CAAC;IAClB,QAAQ,EAAE,OAAO,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,OAAO,EAAE,OAAO,CAAC;CAClB;AAED,MAAM,WAAW,YAAY;IAC3B,eAAe,EAAE,MAAM,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,eAAe,GAAI,gGAQ7B,OAAO,CAAC,qBAAqB,CAAC,KAAG,YAwCnC,CAAC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { FormLabelProps } from '../FormLabel';
|
|
3
|
+
import { BaseComponentProps, StateProps, ColorProps, FormElementProps, ElementSpecificProps } from '../../types/component-props.d.ts';
|
|
3
4
|
export interface CheckboxProps extends Pick<BaseComponentProps, 'className' | 'style'>, Pick<StateProps, 'disabled' | 'error'>, Pick<ColorProps, 'color'>, Required<Pick<FormElementProps, 'name'>>, Pick<FormElementProps, 'id'> {
|
|
4
5
|
/**
|
|
5
6
|
* Whether checkbox is checked
|
|
@@ -14,9 +15,9 @@ export interface CheckboxProps extends Pick<BaseComponentProps, 'className' | 's
|
|
|
14
15
|
*/
|
|
15
16
|
inverted?: boolean;
|
|
16
17
|
/**
|
|
17
|
-
* Label
|
|
18
|
+
* Label for the checkbox
|
|
18
19
|
*/
|
|
19
|
-
label?:
|
|
20
|
+
label?: FormLabelProps['children'];
|
|
20
21
|
/**
|
|
21
22
|
* Custom styles for the label
|
|
22
23
|
*/
|
|
@@ -31,6 +32,10 @@ export interface CheckboxProps extends Pick<BaseComponentProps, 'className' | 's
|
|
|
31
32
|
type: string;
|
|
32
33
|
};
|
|
33
34
|
}) => void;
|
|
35
|
+
/**
|
|
36
|
+
* HTML div attributes (omits all top-level props to prevent conflicts)
|
|
37
|
+
*/
|
|
38
|
+
divProps?: Omit<ElementSpecificProps<HTMLDivElement>, 'className' | 'style'>;
|
|
34
39
|
}
|
|
35
40
|
declare const Checkbox: React.FC<CheckboxProps>;
|
|
36
41
|
export default Checkbox;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../../../src/components/Checkbox/Checkbox.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../../../src/components/Checkbox/Checkbox.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,OAAkB,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AACzD,OAAO,KAAK,EACV,kBAAkB,EAClB,UAAU,EACV,UAAU,EACV,gBAAgB,EAChB,oBAAoB,EACrB,MAAM,kCAAkC,CAAC;AAE1C,MAAM,WAAW,aACf,SAAQ,IAAI,CAAC,kBAAkB,EAAE,WAAW,GAAG,OAAO,CAAC,EACrD,IAAI,CAAC,UAAU,EAAE,UAAU,GAAG,OAAO,CAAC,EACtC,IAAI,CAAC,UAAU,EAAE,OAAO,CAAC,EACzB,QAAQ,CAAC,IAAI,CAAC,gBAAgB,EAAE,MAAM,CAAC,CAAC,EACxC,IAAI,CAAC,gBAAgB,EAAE,IAAI,CAAC;IAE9B;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB;;OAEG;IACH,KAAK,CAAC,EAAE,cAAc,CAAC,UAAU,CAAC,CAAC;IAEnC;;OAEG;IACH,UAAU,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAEjC;;OAEG;IACH,QAAQ,EAAE,CAAC,KAAK,EAAE;QAAE,MAAM,EAAE;YAAE,OAAO,EAAE,OAAO,CAAC;YAAC,IAAI,EAAE,MAAM,CAAC;YAAC,IAAI,EAAE,MAAM,CAAA;SAAE,CAAA;KAAE,KAAK,IAAI,CAAC;IAExF;;OAEG;IACH,QAAQ,CAAC,EAAE,IAAI,CAAC,oBAAoB,CAAC,cAAc,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,CAAC;CAC9E;AAED,QAAA,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,aAAa,CAyGrC,CAAC;AAEF,eAAe,QAAQ,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useCheckboxStyles.d.ts","sourceRoot":"","sources":["../../../src/components/Checkbox/useCheckboxStyles.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,WAAW,uBAAuB;IACtC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,cAAc;IAC7B,
|
|
1
|
+
{"version":3,"file":"useCheckboxStyles.d.ts","sourceRoot":"","sources":["../../../src/components/Checkbox/useCheckboxStyles.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,WAAW,uBAAuB;IACtC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,cAAc;IAC7B,aAAa,EAAE,MAAM,CAAC;IACtB,cAAc,EAAE,MAAM,CAAC;IACvB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,iBAAiB,GAAI,gDAK/B,uBAAuB,KAAG,cAiB5B,CAAC"}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { BaseComponentProps } from '../../
|
|
2
|
+
import { BaseComponentProps, ElementSpecificProps } from '../../types/component-props.d.ts';
|
|
3
3
|
export interface FeatureCardProps extends BaseComponentProps {
|
|
4
|
+
breakpoint?: string;
|
|
4
5
|
icon?: React.ReactNode;
|
|
5
6
|
title: string;
|
|
6
|
-
|
|
7
|
+
divProps?: Omit<ElementSpecificProps<HTMLDivElement>, 'className' | 'style'>;
|
|
7
8
|
}
|
|
8
9
|
declare const FeatureCard: React.FC<FeatureCardProps>;
|
|
9
10
|
export default FeatureCard;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FeatureCard.d.ts","sourceRoot":"","sources":["../../../src/components/FeatureCard/FeatureCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"FeatureCard.d.ts","sourceRoot":"","sources":["../../../src/components/FeatureCard/FeatureCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,OAAO,KAAK,EAAE,kBAAkB,EAAE,oBAAoB,EAAE,MAAM,kCAAkC,CAAC;AAEjG,MAAM,WAAW,gBAAiB,SAAQ,kBAAkB;IAE1D,UAAU,CAAC,EAAE,MAAM,CAAC;IAGpB,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;IAGd,QAAQ,CAAC,EAAE,IAAI,CAAC,oBAAoB,CAAC,cAAc,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,CAAC;CAC9E;AAED,QAAA,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAmC3C,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { ResponsiveSectionProps } from '../ResponsiveSection';
|
|
3
|
-
import { BreakpointProps } from '../../
|
|
4
|
-
export interface FeatureGridSectionProps extends
|
|
3
|
+
import { BreakpointProps } from '../../types/component-props.d.ts';
|
|
4
|
+
export interface FeatureGridSectionProps extends ResponsiveSectionProps {
|
|
5
5
|
columns?: 1 | 2 | 3 | 4;
|
|
6
|
-
className?: string;
|
|
7
6
|
breakpoints?: BreakpointProps;
|
|
8
7
|
}
|
|
9
8
|
declare const FeatureGridSection: React.FC<FeatureGridSectionProps>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FeatureGridSection.d.ts","sourceRoot":"","sources":["../../../src/components/FeatureGridSection/FeatureGridSection.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAA0B,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAKjF,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"FeatureGridSection.d.ts","sourceRoot":"","sources":["../../../src/components/FeatureGridSection/FeatureGridSection.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAA0B,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAKjF,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AAExE,MAAM,WAAW,uBAAwB,SAAQ,sBAAsB;IAErE,OAAO,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IACxB,WAAW,CAAC,EAAE,eAAe,CAAC;CAC/B;AAED,QAAA,MAAM,kBAAkB,EAAE,KAAK,CAAC,EAAE,CAAC,uBAAuB,CA6CzD,CAAC;AAEF,eAAe,kBAAkB,CAAC"}
|
|
@@ -1,18 +1,14 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { BaseComponentProps, ColorProps, LayoutProps } from '../../
|
|
3
|
-
export interface FooterProps extends Pick<BaseComponentProps, 'className' | 'style' | 'children'>, Pick<ColorProps, 'color' | '
|
|
2
|
+
import { BaseComponentProps, ColorProps, LayoutProps } from '../../types/component-props.d.ts';
|
|
3
|
+
export interface FooterProps extends Pick<BaseComponentProps, 'className' | 'style' | 'children'>, Pick<ColorProps, 'color' | 'backgroundColor'>, Pick<LayoutProps, 'margin' | 'gap' | 'maxWidth' | 'minWidth' | 'width' | 'height' | 'padding' | 'paddingSm'> {
|
|
4
4
|
/**
|
|
5
5
|
* Breakpoint for small screens
|
|
6
6
|
*/
|
|
7
7
|
breakPoint?: string;
|
|
8
8
|
/**
|
|
9
|
-
* HTML footer element attributes
|
|
9
|
+
* HTML footer element attributes (omits all top-level props to prevent conflicts)
|
|
10
10
|
*/
|
|
11
|
-
footerProps?: React.HTMLAttributes<HTMLElement>;
|
|
12
|
-
/**
|
|
13
|
-
* Ref for the footer element
|
|
14
|
-
*/
|
|
15
|
-
footerRef?: React.RefObject<HTMLElement>;
|
|
11
|
+
footerProps?: Omit<React.HTMLAttributes<HTMLElement>, 'className' | 'style'>;
|
|
16
12
|
}
|
|
17
13
|
declare const Footer: React.FC<FooterProps>;
|
|
18
14
|
export default Footer;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Footer.d.ts","sourceRoot":"","sources":["../../../src/components/Footer/Footer.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"Footer.d.ts","sourceRoot":"","sources":["../../../src/components/Footer/Footer.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,OAAO,KAAK,EAAE,kBAAkB,EAAE,UAAU,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAEpG,MAAM,WAAW,WACf,SAAQ,IAAI,CAAC,kBAAkB,EAAE,WAAW,GAAG,OAAO,GAAG,UAAU,CAAC,EAClE,IAAI,CAAC,UAAU,EAAE,OAAO,GAAG,iBAAiB,CAAC,EAC7C,IAAI,CACF,WAAW,EACX,QAAQ,GAAG,KAAK,GAAG,UAAU,GAAG,UAAU,GAAG,OAAO,GAAG,QAAQ,GAAG,SAAS,GAAG,WAAW,CAC1F;IACH;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,WAAW,CAAC,EAAE,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,CAAC;CAC9E;AAED,QAAA,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CA4DjC,CAAC;AAEF,eAAe,MAAM,CAAC"}
|
|
@@ -11,19 +11,19 @@ export interface UseFooterStylesParams {
|
|
|
11
11
|
padding?: string;
|
|
12
12
|
margin?: string;
|
|
13
13
|
gap?: string;
|
|
14
|
-
|
|
14
|
+
backgroundColor?: string;
|
|
15
15
|
color?: string;
|
|
16
16
|
}
|
|
17
17
|
export interface FooterStyles {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
18
|
+
maxWidth?: string;
|
|
19
|
+
minWidth?: string;
|
|
20
|
+
width?: string;
|
|
21
|
+
height?: string;
|
|
22
|
+
padding: string;
|
|
23
|
+
margin?: string;
|
|
24
|
+
gap?: string;
|
|
25
|
+
backgroundColor?: string;
|
|
26
26
|
color: string;
|
|
27
27
|
}
|
|
28
|
-
export declare const useFooterStyles: ({ isSmallScreen, maxWidth, minWidth, width, height, paddingSm, padding, margin, gap,
|
|
28
|
+
export declare const useFooterStyles: ({ isSmallScreen, maxWidth, minWidth, width, height, paddingSm, padding, margin, gap, backgroundColor, color, }?: UseFooterStylesParams) => FooterStyles;
|
|
29
29
|
//# sourceMappingURL=useFooterStyles.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useFooterStyles.d.ts","sourceRoot":"","sources":["../../../src/components/Footer/useFooterStyles.ts"],"names":[],"mappings":"AAEA;;GAEG;AAEH,MAAM,WAAW,qBAAqB;IACpC,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,
|
|
1
|
+
{"version":3,"file":"useFooterStyles.d.ts","sourceRoot":"","sources":["../../../src/components/Footer/useFooterStyles.ts"],"names":[],"mappings":"AAEA;;GAEG;AAEH,MAAM,WAAW,qBAAqB;IACpC,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,YAAY;IAC3B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,KAAK,EAAE,MAAM,CAAC;CACf;AAED,eAAO,MAAM,eAAe,GAAI,iHAY7B,qBAA0B,KAAG,YAc/B,CAAC"}
|
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { UseFormReturn, FieldValues, SubmitHandler, DefaultValues, UseFormProps } from 'react-hook-form';
|
|
3
3
|
import { ZodType } from 'zod';
|
|
4
|
-
|
|
4
|
+
import { BaseComponentProps } from '../../types/component-props';
|
|
5
|
+
export interface FormProps<TFieldValues extends FieldValues = FieldValues> extends Pick<BaseComponentProps, 'className' | 'style'> {
|
|
5
6
|
onSubmit: SubmitHandler<TFieldValues>;
|
|
6
7
|
children: React.ReactNode | ((methods: UseFormReturn<TFieldValues>) => React.ReactNode);
|
|
7
8
|
schema?: ZodType<TFieldValues, any, any>;
|
|
8
9
|
defaultValues?: DefaultValues<TFieldValues>;
|
|
9
10
|
mode?: UseFormProps<TFieldValues>['mode'];
|
|
10
11
|
reValidateMode?: UseFormProps<TFieldValues>['reValidateMode'];
|
|
12
|
+
formProps?: Omit<React.FormHTMLAttributes<HTMLFormElement>, 'onSubmit' | 'children' | 'className' | 'style'>;
|
|
11
13
|
}
|
|
12
14
|
export declare const FormContext: React.Context<UseFormReturn<any> | null>;
|
|
13
15
|
export declare function useFormContext<TFieldValues extends FieldValues = FieldValues>(): UseFormReturn<TFieldValues>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Form.d.ts","sourceRoot":"","sources":["../../../src/components/Form/Form.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAEL,aAAa,EACb,WAAW,EACX,aAAa,EACb,aAAa,EACb,YAAY,EACb,MAAM,iBAAiB,CAAC;AAEzB,OAAO,EAAE,OAAO,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"Form.d.ts","sourceRoot":"","sources":["../../../src/components/Form/Form.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAEL,aAAa,EACb,WAAW,EACX,aAAa,EACb,aAAa,EACb,YAAY,EACb,MAAM,iBAAiB,CAAC;AAEzB,OAAO,EAAE,OAAO,EAAE,MAAM,KAAK,CAAC;AAC9B,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,6BAA6B,CAAC;AAEtE,MAAM,WAAW,SAAS,CAAC,YAAY,SAAS,WAAW,GAAG,WAAW,CACvE,SAAQ,IAAI,CAAC,kBAAkB,EAAE,WAAW,GAAG,OAAO,CAAC;IACvD,QAAQ,EAAE,aAAa,CAAC,YAAY,CAAC,CAAC;IACtC,QAAQ,EAAE,KAAK,CAAC,SAAS,GAAG,CAAC,CAAC,OAAO,EAAE,aAAa,CAAC,YAAY,CAAC,KAAK,KAAK,CAAC,SAAS,CAAC,CAAC;IACxF,MAAM,CAAC,EAAE,OAAO,CAAC,YAAY,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;IACzC,aAAa,CAAC,EAAE,aAAa,CAAC,YAAY,CAAC,CAAC;IAC5C,IAAI,CAAC,EAAE,YAAY,CAAC,YAAY,CAAC,CAAC,MAAM,CAAC,CAAC;IAC1C,cAAc,CAAC,EAAE,YAAY,CAAC,YAAY,CAAC,CAAC,gBAAgB,CAAC,CAAC;IAG9D,SAAS,CAAC,EAAE,IAAI,CACd,KAAK,CAAC,kBAAkB,CAAC,eAAe,CAAC,EACzC,UAAU,GAAG,UAAU,GAAG,WAAW,GAAG,OAAO,CAChD,CAAC;CACH;AAED,eAAO,MAAM,WAAW,0CAAuD,CAAC;AAEhF,wBAAgB,cAAc,CAC5B,YAAY,SAAS,WAAW,GAAG,WAAW,KAC3C,aAAa,CAAC,YAAY,CAAC,CAM/B;AAgCD,QAAA,MAAM,IAAI,EAAoB,CAAC,YAAY,SAAS,WAAW,GAAG,WAAW,EAC3E,KAAK,EAAE,SAAS,CAAC,YAAY,CAAC,KAC3B,KAAK,CAAC,YAAY,CAAC;AAExB,eAAe,IAAI,CAAC"}
|
|
@@ -3,7 +3,7 @@ import { FieldValues, Path, UseControllerProps } from 'react-hook-form';
|
|
|
3
3
|
import { FormLabelProps } from '../FormLabel';
|
|
4
4
|
export interface FormFieldProps<TFieldValues extends FieldValues = FieldValues> {
|
|
5
5
|
name: Path<TFieldValues>;
|
|
6
|
-
label?:
|
|
6
|
+
label?: FormLabelProps['children'];
|
|
7
7
|
required?: boolean;
|
|
8
8
|
children: (field: {
|
|
9
9
|
value: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormField.d.ts","sourceRoot":"","sources":["../../../src/components/Form/FormField.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAiB,WAAW,EAAE,IAAI,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AAGvF,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAE9C,MAAM,WAAW,cAAc,CAAC,YAAY,SAAS,WAAW,GAAG,WAAW;IAC5E,IAAI,EAAE,IAAI,CAAC,YAAY,CAAC,CAAC;IACzB,KAAK,CAAC,EAAE,
|
|
1
|
+
{"version":3,"file":"FormField.d.ts","sourceRoot":"","sources":["../../../src/components/Form/FormField.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAiB,WAAW,EAAE,IAAI,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AAGvF,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAE9C,MAAM,WAAW,cAAc,CAAC,YAAY,SAAS,WAAW,GAAG,WAAW;IAC5E,IAAI,EAAE,IAAI,CAAC,YAAY,CAAC,CAAC;IACzB,KAAK,CAAC,EAAE,cAAc,CAAC,UAAU,CAAC,CAAC;IACnC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,EAAE,CAAC,KAAK,EAAE;QAChB,KAAK,EAAE,GAAG,CAAC;QACX,QAAQ,EAAE,CAAC,GAAG,KAAK,EAAE,GAAG,EAAE,KAAK,IAAI,CAAC;QACpC,MAAM,EAAE,MAAM,IAAI,CAAC;QACnB,IAAI,EAAE,MAAM,CAAC;QACb,KAAK,CAAC,EAAE,OAAO,CAAC;QAChB,MAAM,CAAC,EAAE,OAAO,CAAC;KAClB,KAAK,KAAK,CAAC,YAAY,CAAC;IACzB,KAAK,CAAC,EAAE,kBAAkB,CAAC,YAAY,CAAC,CAAC,OAAO,CAAC,CAAC;IAClD,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,UAAU,CAAC,EAAE,OAAO,CAAC,cAAc,CAAC,CAAC;CACtC;AAED,wBAAgB,SAAS,CAAC,YAAY,SAAS,WAAW,GAAG,WAAW,EAAE,EACxE,IAAI,EACJ,KAAK,EACL,QAAQ,EACR,QAAQ,EACR,KAAK,EACL,QAAQ,EACR,SAAS,EACT,KAAK,EACL,MAAM,EACN,UAAU,GACX,EAAE,cAAc,CAAC,YAAY,CAAC,2CAmC9B;AAED,eAAe,SAAS,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { BaseComponentProps, ColorProps, ElementSpecificProps } from '../../
|
|
2
|
+
import { BaseComponentProps, ColorProps, ElementSpecificProps } from '../../types/component-props.d.ts';
|
|
3
3
|
export interface FormErrorProps extends Pick<BaseComponentProps, 'className' | 'style' | 'children'>, Pick<ColorProps, 'color'> {
|
|
4
4
|
/**
|
|
5
5
|
* HTML div attributes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormError.d.ts","sourceRoot":"","sources":["../../../src/components/FormError/FormError.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,EACV,kBAAkB,EAClB,UAAU,EACV,oBAAoB,EACrB,MAAM,
|
|
1
|
+
{"version":3,"file":"FormError.d.ts","sourceRoot":"","sources":["../../../src/components/FormError/FormError.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,EACV,kBAAkB,EAClB,UAAU,EACV,oBAAoB,EACrB,MAAM,kCAAkC,CAAC;AAE1C,MAAM,WAAW,cACf,SAAQ,IAAI,CAAC,kBAAkB,EAAE,WAAW,GAAG,OAAO,GAAG,UAAU,CAAC,EAClE,IAAI,CAAC,UAAU,EAAE,OAAO,CAAC;IAC3B;;OAEG;IACH,QAAQ,CAAC,EAAE,oBAAoB,CAAC,cAAc,CAAC,CAAC;CACjD;AAED,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,cAAc,CA6BvC,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -1,19 +1,16 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { FormLabelProps } from '../FormLabel';
|
|
3
|
-
import {
|
|
4
|
-
|
|
3
|
+
import { FormErrorProps } from '../FormError';
|
|
4
|
+
import { BaseComponentProps, StateProps, FormElementProps, ElementSpecificProps } from '../../types/component-props.d.ts';
|
|
5
|
+
export interface FormGroupProps extends Pick<BaseComponentProps, 'className' | 'style' | 'children'>, Pick<StateProps, 'disabled' | 'error'>, Pick<FormElementProps, 'name' | 'required'> {
|
|
5
6
|
/**
|
|
6
|
-
* Label text for the form group
|
|
7
|
+
* Label text/element for the form group
|
|
7
8
|
*/
|
|
8
|
-
label?:
|
|
9
|
+
label?: FormLabelProps['children'];
|
|
9
10
|
/**
|
|
10
11
|
* Error message to display
|
|
11
12
|
*/
|
|
12
|
-
errorMessage?:
|
|
13
|
-
/**
|
|
14
|
-
* Show required indicator (*)
|
|
15
|
-
*/
|
|
16
|
-
required?: boolean;
|
|
13
|
+
errorMessage?: FormErrorProps['children'];
|
|
17
14
|
/**
|
|
18
15
|
* Indent the input wrapper (useful for checkboxes/radios)
|
|
19
16
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormGroup.d.ts","sourceRoot":"","sources":["../../../src/components/FormGroup/FormGroup.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAkB,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"FormGroup.d.ts","sourceRoot":"","sources":["../../../src/components/FormGroup/FormGroup.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAkB,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AACzD,OAAkB,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAGzD,OAAO,KAAK,EACV,kBAAkB,EAClB,UAAU,EACV,gBAAgB,EAChB,oBAAoB,EACrB,MAAM,kCAAkC,CAAC;AAE1C,MAAM,WAAW,cACf,SAAQ,IAAI,CAAC,kBAAkB,EAAE,WAAW,GAAG,OAAO,GAAG,UAAU,CAAC,EAClE,IAAI,CAAC,UAAU,EAAE,UAAU,GAAG,OAAO,CAAC,EACtC,IAAI,CAAC,gBAAgB,EAAE,MAAM,GAAG,UAAU,CAAC;IAC7C;;OAEG;IACH,KAAK,CAAC,EAAE,cAAc,CAAC,UAAU,CAAC,CAAC;IAEnC;;OAEG;IACH,YAAY,CAAC,EAAE,cAAc,CAAC,UAAU,CAAC,CAAC;IAE1C;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,CAAC;IAEjB;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC,cAAc,CAAC,CAAC;IAErC;;OAEG;IACH,QAAQ,CAAC,EAAE,oBAAoB,CAAC,cAAc,CAAC,CAAC;CACjD;AAED,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,cAAc,CAwFvC,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { BaseComponentProps, StateProps, ColorProps,
|
|
2
|
+
import { BaseComponentProps, StateProps, ColorProps, ElementSpecificProps } from '../../types/component-props.d.ts';
|
|
3
3
|
export interface FormLabelProps extends Pick<BaseComponentProps, 'className' | 'style' | 'children'>, Pick<StateProps, 'disabled' | 'error'>, Pick<ColorProps, 'color'> {
|
|
4
4
|
/**
|
|
5
5
|
* The id of the form element this label is associated with
|
|
6
6
|
*/
|
|
7
7
|
htmlFor?: string;
|
|
8
8
|
/**
|
|
9
|
-
* HTML label attributes
|
|
9
|
+
* HTML label attributes (omits all top-level props to prevent conflicts)
|
|
10
10
|
*/
|
|
11
|
-
labelProps?:
|
|
11
|
+
labelProps?: Omit<ElementSpecificProps<HTMLLabelElement>, 'className' | 'style' | 'children' | 'htmlFor'>;
|
|
12
12
|
}
|
|
13
13
|
declare const FormLabel: React.FC<FormLabelProps>;
|
|
14
14
|
export default FormLabel;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormLabel.d.ts","sourceRoot":"","sources":["../../../src/components/FormLabel/FormLabel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,KAAK,EACV,kBAAkB,EAClB,UAAU,EACV,UAAU,EACV,
|
|
1
|
+
{"version":3,"file":"FormLabel.d.ts","sourceRoot":"","sources":["../../../src/components/FormLabel/FormLabel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,KAAK,EACV,kBAAkB,EAClB,UAAU,EACV,UAAU,EACV,oBAAoB,EACrB,MAAM,kCAAkC,CAAC;AAE1C,MAAM,WAAW,cACf,SAAQ,IAAI,CAAC,kBAAkB,EAAE,WAAW,GAAG,OAAO,GAAG,UAAU,CAAC,EAClE,IAAI,CAAC,UAAU,EAAE,UAAU,GAAG,OAAO,CAAC,EACtC,IAAI,CAAC,UAAU,EAAE,OAAO,CAAC;IAE3B;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB;;OAEG;IACH,UAAU,CAAC,EAAE,IAAI,CACf,oBAAoB,CAAC,gBAAgB,CAAC,EACtC,WAAW,GAAG,OAAO,GAAG,UAAU,GAAG,SAAS,CAC/C,CAAC;CACH;AAED,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,cAAc,CAkDvC,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { BorderProps,
|
|
3
|
-
export interface HamburgerProps {
|
|
2
|
+
import { BorderProps, BaseComponentProps } from '../../types/component-props.d.ts';
|
|
3
|
+
export interface HamburgerProps extends Pick<BaseComponentProps, 'className' | 'style'> {
|
|
4
|
+
color?: string;
|
|
4
5
|
visible: boolean;
|
|
5
6
|
compact?: boolean;
|
|
6
|
-
color?: string;
|
|
7
7
|
hamburgerRef?: React.RefObject<HTMLButtonElement>;
|
|
8
8
|
open?: boolean;
|
|
9
|
-
setOpen: (open: boolean) => void;
|
|
10
|
-
buttonProps?: ButtonAttributes;
|
|
11
9
|
border?: BorderProps;
|
|
10
|
+
setOpen: (open: boolean) => void;
|
|
12
11
|
}
|
|
13
12
|
declare const Hamburger: React.FC<HamburgerProps>;
|
|
14
13
|
export default Hamburger;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Hamburger.d.ts","sourceRoot":"","sources":["../../../src/components/Hamburger/Hamburger.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"Hamburger.d.ts","sourceRoot":"","sources":["../../../src/components/Hamburger/Hamburger.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,EACV,WAAW,EAEX,kBAAkB,EACnB,MAAM,kCAAkC,CAAC;AAE1C,MAAM,WAAW,cAAe,SAAQ,IAAI,CAAC,kBAAkB,EAAE,WAAW,GAAG,OAAO,CAAC;IAErF,KAAK,CAAC,EAAE,MAAM,CAAC;IAGf,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,YAAY,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,iBAAiB,CAAC,CAAC;IAClD,IAAI,CAAC,EAAE,OAAO,CAAC;IAGf,MAAM,CAAC,EAAE,WAAW,CAAC;IAGrB,OAAO,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC;CAClC;AAED,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,cAAc,CA6CvC,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useHamburgerStyles.d.ts","sourceRoot":"","sources":["../../../src/components/Hamburger/useHamburgerStyles.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"useHamburgerStyles.d.ts","sourceRoot":"","sources":["../../../src/components/Hamburger/useHamburgerStyles.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAEpE,MAAM,WAAW,wBAAwB;IACvC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,MAAM,CAAC,EAAE,WAAW,CAAC;CACtB;AAED,MAAM,WAAW,eAAe;IAC9B,2BAA2B,EAAE,MAAM,CAAC;IACpC,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,eAAO,MAAM,kBAAkB,GAAI,sCAKhC,wBAAwB,KAAG,eAW7B,CAAC"}
|
|
@@ -1,18 +1,14 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { BaseComponentProps, ColorProps, LayoutProps, ElementSpecificProps } from '../../
|
|
3
|
-
export interface HeaderProps extends Pick<BaseComponentProps, 'className' | 'style' | 'children'>, Pick<ColorProps, 'color' | '
|
|
2
|
+
import { BaseComponentProps, ColorProps, LayoutProps, ElementSpecificProps } from '../../types/component-props.d.ts';
|
|
3
|
+
export interface HeaderProps extends Pick<BaseComponentProps, 'className' | 'style' | 'children'>, Pick<ColorProps, 'color' | 'backgroundColor'>, Pick<LayoutProps, 'margin' | 'gap' | 'maxWidth' | 'minWidth' | 'width' | 'height' | 'padding' | 'paddingSm'> {
|
|
4
4
|
/**
|
|
5
5
|
* Breakpoint for small screens
|
|
6
6
|
*/
|
|
7
7
|
breakpoint?: string;
|
|
8
8
|
/**
|
|
9
|
-
* HTML header element attributes
|
|
9
|
+
* HTML header element attributes (omits all top-level props to prevent conflicts)
|
|
10
10
|
*/
|
|
11
|
-
headerProps?: ElementSpecificProps<HTMLElement>;
|
|
12
|
-
/**
|
|
13
|
-
* Ref for the header element
|
|
14
|
-
*/
|
|
15
|
-
headerRef?: React.RefObject<HTMLElement>;
|
|
11
|
+
headerProps?: Omit<ElementSpecificProps<HTMLElement>, 'className' | 'style' | 'children' | 'color' | 'backgroundColor' | 'margin' | 'gap' | 'maxWidth' | 'minWidth' | 'width' | 'height' | 'padding'>;
|
|
16
12
|
}
|
|
17
13
|
declare const Header: React.FC<HeaderProps>;
|
|
18
14
|
export default Header;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Header.d.ts","sourceRoot":"","sources":["../../../src/components/Header/Header.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"Header.d.ts","sourceRoot":"","sources":["../../../src/components/Header/Header.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,OAAO,KAAK,EACV,kBAAkB,EAClB,UAAU,EACV,WAAW,EACX,oBAAoB,EACrB,MAAM,kCAAkC,CAAC;AAE1C,MAAM,WAAW,WACf,SAAQ,IAAI,CAAC,kBAAkB,EAAE,WAAW,GAAG,OAAO,GAAG,UAAU,CAAC,EAClE,IAAI,CAAC,UAAU,EAAE,OAAO,GAAG,iBAAiB,CAAC,EAC7C,IAAI,CACF,WAAW,EACX,QAAQ,GAAG,KAAK,GAAG,UAAU,GAAG,UAAU,GAAG,OAAO,GAAG,QAAQ,GAAG,SAAS,GAAG,WAAW,CAC1F;IACH;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,WAAW,CAAC,EAAE,IAAI,CAChB,oBAAoB,CAAC,WAAW,CAAC,EAC/B,WAAW,GACX,OAAO,GACP,UAAU,GACV,OAAO,GACP,iBAAiB,GACjB,QAAQ,GACR,KAAK,GACL,UAAU,GACV,UAAU,GACV,OAAO,GACP,QAAQ,GACR,SAAS,CACZ,CAAC;CACH;AAED,QAAA,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CA+DjC,CAAC;AAEF,eAAe,MAAM,CAAC"}
|
|
@@ -11,7 +11,7 @@ export interface UseHeaderStylesParams {
|
|
|
11
11
|
padding?: string;
|
|
12
12
|
margin?: string;
|
|
13
13
|
gap?: string;
|
|
14
|
-
|
|
14
|
+
backgroundColor?: string;
|
|
15
15
|
color?: string;
|
|
16
16
|
}
|
|
17
17
|
export interface HeaderStyles {
|
|
@@ -22,8 +22,8 @@ export interface HeaderStyles {
|
|
|
22
22
|
'--header-padding': string;
|
|
23
23
|
'--header-margin'?: string;
|
|
24
24
|
'--header-gap'?: string;
|
|
25
|
-
|
|
25
|
+
backgroundColor?: string;
|
|
26
26
|
color?: string;
|
|
27
27
|
}
|
|
28
|
-
export declare const useHeaderStyles: ({ isSmallScreen, maxWidth, minWidth, width, height, paddingSm, padding, margin, gap,
|
|
28
|
+
export declare const useHeaderStyles: ({ isSmallScreen, maxWidth, minWidth, width, height, paddingSm, padding, margin, gap, backgroundColor, color, }?: UseHeaderStylesParams) => HeaderStyles;
|
|
29
29
|
//# sourceMappingURL=useHeaderStyles.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useHeaderStyles.d.ts","sourceRoot":"","sources":["../../../src/components/Header/useHeaderStyles.ts"],"names":[],"mappings":"AAEA;;GAEG;AAEH,MAAM,WAAW,qBAAqB;IACpC,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,
|
|
1
|
+
{"version":3,"file":"useHeaderStyles.d.ts","sourceRoot":"","sources":["../../../src/components/Header/useHeaderStyles.ts"],"names":[],"mappings":"AAEA;;GAEG;AAEH,MAAM,WAAW,qBAAqB;IACpC,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,YAAY;IAC3B,oBAAoB,EAAE,MAAM,CAAC;IAC7B,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,kBAAkB,EAAE,MAAM,CAAC;IAC3B,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,eAAO,MAAM,eAAe,GAAI,iHAY7B,qBAA0B,KAAG,YAgB/B,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { ResponsiveSectionProps } from '../ResponsiveSection';
|
|
3
|
-
import { BreakpointProps } from '../../
|
|
3
|
+
import { BreakpointProps } from '../../types/component-props.d.ts';
|
|
4
4
|
export interface HeroProps extends ResponsiveSectionProps {
|
|
5
5
|
breakpoints?: BreakpointProps;
|
|
6
6
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Hero.d.ts","sourceRoot":"","sources":["../../../src/components/Hero/Hero.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAA0B,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAKjF,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"Hero.d.ts","sourceRoot":"","sources":["../../../src/components/Hero/Hero.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAA0B,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAKjF,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AAExE,MAAM,WAAW,SAAU,SAAQ,sBAAsB;IAEvD,WAAW,CAAC,EAAE,eAAe,CAAC;CAC/B;AAED,QAAA,MAAM,IAAI,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAsC7B,CAAC;AAEF,eAAe,IAAI,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { BaseComponentProps, StateProps, ColorProps, FormElementProps, TextInputProps, SizeVariant,
|
|
2
|
+
import { BaseComponentProps, StateProps, ColorProps, FormElementProps, TextInputProps, SizeVariant, ElementSpecificProps } from '../../types/component-props.d.ts';
|
|
3
3
|
export interface InputProps extends Pick<BaseComponentProps, 'className' | 'style'>, Pick<StateProps, 'disabled' | 'error'>, Pick<ColorProps, 'color'>, FormElementProps, TextInputProps {
|
|
4
4
|
/**
|
|
5
5
|
* Input size variant
|
|
@@ -18,9 +18,9 @@ export interface InputProps extends Pick<BaseComponentProps, 'className' | 'styl
|
|
|
18
18
|
*/
|
|
19
19
|
type?: string;
|
|
20
20
|
/**
|
|
21
|
-
* HTML input attributes
|
|
21
|
+
* HTML input attributes (omits top-level props to prevent conflicts)
|
|
22
22
|
*/
|
|
23
|
-
inputProps?:
|
|
23
|
+
inputProps?: Omit<ElementSpecificProps<HTMLInputElement>, 'className' | 'style' | 'disabled' | 'id' | 'name' | 'onChange' | 'onBlur' | 'placeholder' | 'type' | 'value'>;
|
|
24
24
|
}
|
|
25
25
|
declare const Input: React.FC<InputProps>;
|
|
26
26
|
export default Input;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../../src/components/Input/Input.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,KAAK,EACV,kBAAkB,EAClB,UAAU,EACV,UAAU,EACV,gBAAgB,EAChB,cAAc,EACd,WAAW,EACX,
|
|
1
|
+
{"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../../src/components/Input/Input.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,KAAK,EACV,kBAAkB,EAClB,UAAU,EACV,UAAU,EACV,gBAAgB,EAChB,cAAc,EACd,WAAW,EACX,oBAAoB,EACrB,MAAM,kCAAkC,CAAC;AAE1C,MAAM,WAAW,UACf,SAAQ,IAAI,CAAC,kBAAkB,EAAE,WAAW,GAAG,OAAO,CAAC,EACrD,IAAI,CAAC,UAAU,EAAE,UAAU,GAAG,OAAO,CAAC,EACtC,IAAI,CAAC,UAAU,EAAE,OAAO,CAAC,EACzB,gBAAgB,EAChB,cAAc;IAEhB;;OAEG;IACH,IAAI,CAAC,EAAE,WAAW,CAAC;IAGnB;;OAEG;IACH,QAAQ,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,WAAW,CAAC,gBAAgB,CAAC,KAAK,IAAI,CAAC;IAE/D;;OAEG;IACH,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,UAAU,CAAC,gBAAgB,CAAC,KAAK,IAAI,CAAC;IAE7D;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAGd;;OAEG;IACH,UAAU,CAAC,EAAE,IAAI,CACf,oBAAoB,CAAC,gBAAgB,CAAC,EACpC,WAAW,GACX,OAAO,GACP,UAAU,GACV,IAAI,GACJ,MAAM,GACN,UAAU,GACV,QAAQ,GACR,aAAa,GACb,MAAM,GACN,OAAO,CACV,CAAC;CACH;AAED,QAAA,MAAM,KAAK,EAAE,KAAK,CAAC,EAAE,CAAC,UAAU,CAkF/B,CAAC;AAEF,eAAe,KAAK,CAAC"}
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { BaseComponentProps, ColorProps } from '../../
|
|
3
|
-
export interface LoadingSpinnerProps extends Pick<BaseComponentProps, 'className' | 'style'>, Pick<ColorProps, 'color' | '
|
|
2
|
+
import { BaseComponentProps, ColorProps, ElementSpecificProps } from '../../types/component-props.d.ts';
|
|
3
|
+
export interface LoadingSpinnerProps extends Pick<BaseComponentProps, 'className' | 'style'>, Pick<ColorProps, 'color' | 'backgroundColor'> {
|
|
4
4
|
/**
|
|
5
5
|
* Whether to center the spinner in viewport
|
|
6
6
|
* @default true
|
|
7
7
|
*/
|
|
8
8
|
fullScreen?: boolean;
|
|
9
|
+
/**
|
|
10
|
+
* HTML div element attributes
|
|
11
|
+
*/
|
|
12
|
+
divProps?: Omit<ElementSpecificProps<HTMLDivElement>, 'className' | 'style'>;
|
|
9
13
|
}
|
|
10
14
|
/**
|
|
11
15
|
* LoadingSpinner - A simple, customizable loading spinner
|
|
@@ -21,7 +25,7 @@ export interface LoadingSpinnerProps extends Pick<BaseComponentProps, 'className
|
|
|
21
25
|
* <LoadingSpinner
|
|
22
26
|
* style={{ fontSize: '3em' }}
|
|
23
27
|
* color="#ff0000"
|
|
24
|
-
*
|
|
28
|
+
* backgroundColor="#00ff00"
|
|
25
29
|
* />
|
|
26
30
|
*
|
|
27
31
|
* // Inline (not full screen)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LoadingSpinner.d.ts","sourceRoot":"","sources":["../../../src/components/LoadingSpinner/LoadingSpinner.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"LoadingSpinner.d.ts","sourceRoot":"","sources":["../../../src/components/LoadingSpinner/LoadingSpinner.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EACV,kBAAkB,EAClB,UAAU,EACV,oBAAoB,EACrB,MAAM,kCAAkC,CAAC;AAE1C,MAAM,WAAW,mBACf,SAAQ,IAAI,CAAC,kBAAkB,EAAE,WAAW,GAAG,OAAO,CAAC,EACrD,IAAI,CAAC,UAAU,EAAE,OAAO,GAAG,iBAAiB,CAAC;IAC/C;;;OAGG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IAErB;;OAEG;IACH,QAAQ,CAAC,EAAE,IAAI,CAAC,oBAAoB,CAAC,cAAc,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,CAAC;CAC9E;AAED;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,QAAA,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAoEjD,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { BaseComponentProps } from '../../
|
|
2
|
+
import { BaseComponentProps, ElementSpecificProps } from '../../types/component-props.d.ts';
|
|
3
3
|
export interface PageLayoutProps extends BaseComponentProps {
|
|
4
4
|
header?: React.ReactNode;
|
|
5
5
|
footer?: React.ReactNode;
|
|
6
|
-
|
|
6
|
+
divProps?: Omit<ElementSpecificProps<HTMLDivElement>, 'className' | 'style'>;
|
|
7
|
+
mainProps?: Omit<React.HTMLAttributes<HTMLElement>, 'className'>;
|
|
7
8
|
}
|
|
8
9
|
declare const PageLayout: React.FC<PageLayoutProps>;
|
|
9
10
|
export default PageLayout;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PageLayout.d.ts","sourceRoot":"","sources":["../../../src/components/PageLayout/PageLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"PageLayout.d.ts","sourceRoot":"","sources":["../../../src/components/PageLayout/PageLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,KAAK,EAAE,kBAAkB,EAAE,oBAAoB,EAAE,MAAM,kCAAkC,CAAC;AAEjG,MAAM,WAAW,eAAgB,SAAQ,kBAAkB;IACzD,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,QAAQ,CAAC,EAAE,IAAI,CAAC,oBAAoB,CAAC,cAAc,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,CAAC;IAC7E,SAAS,CAAC,EAAE,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC,EAAE,WAAW,CAAC,CAAC;CAClE;AAED,QAAA,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CA2BzC,CAAC;AAEF,eAAe,UAAU,CAAC"}
|