sate-lib 1.1.5 → 1.1.7
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 -0
- package/dist/assets/components/badge/badge.styles.module.css +1 -0
- package/dist/assets/components/typography/typography.styles.module.css +1 -0
- package/dist/components/badge/badge.js +2 -0
- package/dist/components/badge/badge.js.map +1 -0
- package/dist/components/badge/badge.styles.module.css.js +2 -0
- package/dist/components/badge/badge.styles.module.css.js.map +1 -0
- package/dist/components/typography/typography.js +2 -0
- package/dist/components/typography/typography.js.map +1 -0
- package/dist/components/typography/typography.styles.module.css.js +2 -0
- package/dist/components/typography/typography.styles.module.css.js.map +1 -0
- package/dist/index.js +1 -10
- package/dist/index.js.map +1 -1
- package/dist/types/{components → src/components}/badge/badge.d.ts +1 -2
- package/dist/types/src/components/badge/badge.stories.d.ts +6 -0
- package/dist/types/{components → src/components}/typography/typography.d.ts +3 -4
- package/dist/types/src/components/typography/typography.stories.d.ts +7 -0
- package/dist/types/src/index.d.ts +2 -0
- package/package.json +9 -16
- package/dist/assets/fonts/author-bold.woff2 +0 -0
- package/dist/assets/fonts/golos-ui-bold.woff2 +0 -0
- package/dist/assets/fonts/golos-ui-medium.woff2 +0 -0
- package/dist/assets/fonts/golos-ui-regular.woff2 +0 -0
- package/dist/assets/styles/fonts.scss +0 -31
- package/dist/assets/styles/index.css +0 -1
- package/dist/bundle-stats.html +0 -2
- package/dist/types/components/icon/icon.d.ts +0 -13
- package/dist/types/components/test/test.d.ts +0 -6
- package/dist/types/index.d.ts +0 -5
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { SVGProps } from "react";
|
|
2
|
-
declare const Icons: {
|
|
3
|
-
readonly Bed: any;
|
|
4
|
-
readonly Building: any;
|
|
5
|
-
};
|
|
6
|
-
export type IconName = keyof typeof Icons;
|
|
7
|
-
export declare const iconNameArr: IconName[];
|
|
8
|
-
export interface IconProps extends SVGProps<SVGSVGElement> {
|
|
9
|
-
name: IconName;
|
|
10
|
-
size?: number;
|
|
11
|
-
}
|
|
12
|
-
export declare function Icon({ name, size, ...rest }: IconProps): import("react/jsx-runtime").JSX.Element | null;
|
|
13
|
-
export {};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import type { HTMLAttributes, ReactNode } from "react";
|
|
2
|
-
import "./test.styles.scss";
|
|
3
|
-
export interface TestProps extends HTMLAttributes<HTMLSpanElement> {
|
|
4
|
-
children: ReactNode;
|
|
5
|
-
}
|
|
6
|
-
export declare function Test({ className, children, ...props }: TestProps): import("react/jsx-runtime").JSX.Element;
|
package/dist/types/index.d.ts
DELETED