Socket
Socket
Sign inDemoInstall

@owlui/lib

Package Overview
Dependencies
Maintainers
4
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@owlui/lib - npm Package Compare versions

Comparing version 0.0.32 to 0.0.33

src/theme/global/_bootstrap.scss

50

dist/owl.lib.d.ts
import React, { ElementType } from "react";
import * as bs from "react-bootstrap";
import { NavDropdownProps, NavLinkProps, NavbarBrandProps } from "react-bootstrap";
import { ModalProps, ModalHeaderProps, NavDropdownProps, NavLinkProps, NavbarBrandProps } from "react-bootstrap";
import { FormRangeProps } from "react-bootstrap/esm/FormRange";

@@ -45,2 +45,3 @@ import { BsPrefixProps } from "react-bootstrap/esm/helpers";

view: React.ReactNode;
labelAction?: React.ReactNode;
}

@@ -64,3 +65,3 @@ export interface AccordionDefaultCommons {

theme?: 'Default' | 'Dark';
size?: 'Lg' | 'Md' | 'Sm';
size?: 'lg' | '' | 'sm';
}

@@ -185,5 +186,5 @@ export type ButtonDefaultProps = Partial<ButtonDefaultCommons> & bs.ButtonProps;

}
export type DropdownDefaultProps = DropdownDefaultCommons & bs.DropdownButtonProps & bs.DropdownProps;
export type DropdownDefaultProps = DropdownDefaultCommons & Partial<bs.DropdownButtonProps> & Partial<bs.DropdownProps>;
export const Dropdown: (props: DropdownDefaultProps) => JSX.Element;
export interface InputDefaultCommons {
export interface TextInputDefaultCommons {
theme?: 'Default' | 'Dark';

@@ -193,5 +194,6 @@ size?: 'Sm' | 'Md' | 'Lg';

type?: string;
inputProps: InputProps;
inputProps: TextInputProps;
}
export interface InputProps {
export interface TextInputProps {
id?: string;
label?: InputLabel & bs.FormLabelProps;

@@ -203,4 +205,3 @@ control: bs.FormControlProps;

}
export type InputDefaultProps = InputDefaultCommons & bs.FormGroupProps;
export const Input: (props: InputDefaultProps) => JSX.Element;
export type TextInputDefaultProps = TextInputDefaultCommons & bs.FormGroupProps;
export interface RangeDefaultCommons {

@@ -214,2 +215,3 @@ theme?: 'Default' | 'Dark';

export interface RangeProps {
id?: string;
label: RangeLabel & bs.FormLabelProps;

@@ -221,3 +223,3 @@ control: FormRangeProps;

}
export type RangeDefaultProps = RangeDefaultCommons & bs.FormGroupProps;
export type RangeDefaultProps = RangeDefaultCommons & Partial<bs.FormGroupProps>;
export const Range: (props: RangeDefaultProps) => JSX.Element;

@@ -232,2 +234,3 @@ export interface SelectDefaultCommons {

export interface SelectProps {
id?: string;
label: SelectLabel & bs.FormLabelProps;

@@ -250,4 +253,5 @@ control: SelectOptions;

}
export type FormDataProps = InputDefaultProps | RangeDefaultProps | SelectDefaultProps;
export type FormDefaultProps = FormDefaultCommons & bs.FormProps;
export type FormDataProps = TextInputDefaultProps | RangeDefaultProps | SelectDefaultProps;
export type FormDefaultProps = FormDefaultCommons & Partial<bs.FormProps>;
export const Input: (props: TextInputDefaultProps) => JSX.Element;
export interface SwitchToggleDefaultCommons {

@@ -293,18 +297,14 @@ theme?: 'Default' | 'Dark';

export const Listgroup: (props: ListgroupDefaultProps) => JSX.Element;
export interface ModelPartialProps {
bsProps?: BsPrefixProps;
content: React.ReactNode | React.ReactElement;
}
export interface ModalDefaultCommons {
theme?: 'Default' | 'Dark';
prefix?: string;
header: ModalHeaderProps;
body: ModalContentProps;
footer: ModalContentProps;
theme: 'Default' | 'Dark';
prefix: string;
header: ModelPartialProps & ModalHeaderProps;
body: ModelPartialProps;
footer: ModelPartialProps;
}
export interface ModalHeaderProps {
bsProps?: bs.ModalHeaderProps;
content?: React.ReactNode;
}
export interface ModalContentProps {
bsProps?: BsPrefixProps;
content?: React.ReactNode;
}
export type ModalDefaultProps = ModalDefaultCommons & bs.ModalProps;
export type ModalDefaultProps = Partial<ModalDefaultCommons> & ModalProps;
export const Modal: (props: ModalDefaultProps) => JSX.Element;

@@ -311,0 +311,0 @@ export interface NavDefaultCommons {

{
"name": "@owlui/lib",
"version": "0.0.32",
"version": "0.0.33",
"description": "",

@@ -54,34 +54,34 @@ "homepage": "https://github.com/EEBOS/owl-ui/tree/main/packages/lib#readme",

"devDependencies": {
"@owlui/typings": "^0.0.32"
"@owlui/typings": "^0.0.33"
},
"dependencies": {
"@owlui/accordion": "^0.0.32",
"@owlui/badge": "^0.0.32",
"@owlui/button": "^0.0.32",
"@owlui/card": "^0.0.32",
"@owlui/carousel": "^0.0.32",
"@owlui/closebutton": "^0.0.32",
"@owlui/design": "^0.0.32",
"@owlui/drawer": "^0.0.32",
"@owlui/dropdown": "^0.0.32",
"@owlui/form": "^0.0.32",
"@owlui/icons": "^0.0.32",
"@owlui/input": "^0.0.32",
"@owlui/listgroup": "^0.0.32",
"@owlui/modal": "^0.0.32",
"@owlui/nav": "^0.0.32",
"@owlui/navbar": "^0.0.32",
"@owlui/navigationdrawer": "^0.0.32",
"@owlui/progressbar": "^0.0.32",
"@owlui/range": "^0.0.32",
"@owlui/select": "^0.0.32",
"@owlui/spinner": "^0.0.32",
"@owlui/switchtoggle": "^0.0.32",
"@owlui/table": "^0.0.32",
"@owlui/tabs": "^0.0.32",
"@owlui/textfield": "^0.0.32",
"@owlui/toast": "^0.0.32",
"@owlui/tooltip": "^0.0.32"
"@owlui/accordion": "^0.0.33",
"@owlui/badge": "^0.0.33",
"@owlui/button": "^0.0.33",
"@owlui/card": "^0.0.33",
"@owlui/carousel": "^0.0.33",
"@owlui/closebutton": "^0.0.33",
"@owlui/design": "^0.0.33",
"@owlui/drawer": "^0.0.33",
"@owlui/dropdown": "^0.0.33",
"@owlui/form": "^0.0.33",
"@owlui/icons": "^0.0.33",
"@owlui/input": "^0.0.33",
"@owlui/listgroup": "^0.0.33",
"@owlui/modal": "^0.0.33",
"@owlui/nav": "^0.0.33",
"@owlui/navbar": "^0.0.33",
"@owlui/navigationdrawer": "^0.0.33",
"@owlui/progressbar": "^0.0.33",
"@owlui/range": "^0.0.33",
"@owlui/select": "^0.0.33",
"@owlui/spinner": "^0.0.33",
"@owlui/switchtoggle": "^0.0.33",
"@owlui/table": "^0.0.33",
"@owlui/tabs": "^0.0.33",
"@owlui/textfield": "^0.0.33",
"@owlui/toast": "^0.0.33",
"@owlui/tooltip": "^0.0.33"
},
"gitHead": "8901778489ace13abe4e7e2e6d7f1f9a373ad786"
"gitHead": "40b1687405bd9fc5ac6fe12c80a581d21aa6b5de"
}

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 too big to display

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 too big to display

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

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