Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@edirect/frontend-foundations

Package Overview
Dependencies
Maintainers
37
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@edirect/frontend-foundations - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

.idea/inspectionProfiles/Project_Default.xml

2

dist/components/Column/Column.d.ts
/// <reference types="react" />
import { ColumnContainerPropsType } from '../../shared/types/column.type.js';
declare const Column: ({ children, size, className }: ColumnContainerPropsType) => JSX.Element;
declare const Column: ({ children, size, className, ...rest }: ColumnContainerPropsType) => JSX.Element;
export default Column;

@@ -71,6 +71,8 @@ "use strict";

size,
className
className,
...rest
}) => /*#__PURE__*/_react.default.createElement(S.ColumnContainer, {
className: className,
size: size
size: size,
...rest
}, children);

@@ -77,0 +79,0 @@

import { ReactElement } from 'react';
import { IconPropsType } from '../../shared/types/icon.type.js';
declare const Icon: ({ iconName, size, colorName }: IconPropsType) => ReactElement;
declare const Icon: ({ iconName, size, colorName, ...rest }: IconPropsType) => ReactElement;
export default Icon;

@@ -19,6 +19,7 @@ "use strict";

size,
colorName
colorName,
...rest
}) => {
const propsPicture = {
className: colorName ? `fill-${colorName}` : ''
const propsPicture = { ...rest,
className: colorName ? `fill-${colorName} ${rest.className}` : ''
};

@@ -25,0 +26,0 @@

/// <reference types="react" />
import { RowPropsType } from '../../shared/types/row.type.js';
declare const Row: ({ children, fullWidth }: RowPropsType) => JSX.Element;
declare const Row: ({ children, fullWidth, ...rest }: RowPropsType) => JSX.Element;
export default Row;

@@ -70,5 +70,7 @@ "use strict";

children,
fullWidth = false
fullWidth = false,
...rest
}) => /*#__PURE__*/_react.default.createElement(S.RowContainer, {
fullWidth: fullWidth
fullWidth: fullWidth,
...rest
}, children);

@@ -75,0 +77,0 @@

import { ReactElement } from 'react';
import { TypographyPropsType } from '../../shared/types/typography.type.js';
declare const Typography: ({ element, type, align, className, children, }: TypographyPropsType) => ReactElement;
declare const Typography: ({ element, type, align, className, children, ...rest }: TypographyPropsType) => ReactElement;
export default Typography;

@@ -23,3 +23,4 @@ "use strict";

className,
children
children,
...rest
}) => {

@@ -40,3 +41,4 @@ const createTypographyElement = () => {

return /*#__PURE__*/_react.default.createElement(Element, {
className: className
className: className,
...rest
}, children);

@@ -43,0 +45,0 @@ };

@@ -1,5 +0,2 @@

import { ReactElement } from 'react';
export declare type ColumnContainerPropsType = {
className?: string;
children?: ReactElement | ReactElement[];
export declare type ColumnContainerPropsType = HTMLDivElement & {
size: {

@@ -6,0 +3,0 @@ xs: string;

@@ -1,2 +0,2 @@

import { Props as SVGProps } from 'react-inlinesvg';
import React from 'react';
declare type SizeType<K extends 'xs' | 'sm' | 'md' | 'lg', T> = {

@@ -9,3 +9,3 @@ [P in K]: T;

}>;
export declare type IconPropsType = {
export declare type IconPropsType = React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> & {
iconName: string;

@@ -15,5 +15,2 @@ colorName: string;

};
export declare type StyledSVGProps = SVGProps & {
size: SizesType;
};
export {};

@@ -1,5 +0,3 @@

import { ReactElement } from 'react';
export declare type RowPropsType = {
children?: ReactElement[] | ReactElement;
export declare type RowPropsType = HTMLDivElement & {
fullWidth?: boolean;
};

@@ -1,6 +0,5 @@

import { ReactElement } from 'react';
import { typographyBreakPoints } from './bolttech-theme-provider.type.js';
declare type TextElementsType = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'span' | 'p';
declare type TextAlignmentsType = 'left' | 'center' | 'right';
export declare type TypographyPropsType = {
export declare type TypographyPropsType = HTMLElement & {
className?: string;

@@ -10,4 +9,3 @@ element?: TextElementsType;

align?: TextAlignmentsType;
children: ReactElement[] | ReactElement | string | string[] | number | number[] | boolean;
};
export {};
{
"name": "@edirect/frontend-foundations",
"version": "0.0.4",
"version": "0.0.5",
"description": "Frontend Foundations",

@@ -23,3 +23,2 @@ "main": "dist/index.js",

"react-dom": "^17.0.2",
"react-inlinesvg": "^3.0.0",
"styled-components": "^5.3.5"

@@ -26,0 +25,0 @@ },

[![N|Solid](https://www.bolttech.co.th/blog/wp-content/uploads/2020/10/logo.png)](https://bolttech.io)
# bolttech Foundations
# Foundations
## The foundations of the design system

@@ -4,0 +4,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc