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

@lu-development/ux-mylu-patterns-react

Package Overview
Dependencies
Maintainers
6
Versions
526
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lu-development/ux-mylu-patterns-react - npm Package Compare versions

Comparing version 0.3.0-dev.202001101517.f48fc99 to 0.3.0-dev.202001131956.1670108

0

dist/components/createComponent.d.ts
import React from 'react';
export declare const createReactComponent: <PropType, ElementType>(tagName: string) => React.ForwardRefExoticComponent<React.PropsWithoutRef<import("./utils").LuReactExternalProps<PropType, ElementType>> & React.RefAttributes<ElementType>>;

@@ -0,0 +0,0 @@ var __rest = (this && this.__rest) || function (s, e) {

@@ -0,0 +0,0 @@ import { defineCustomElements } from "@lu-development/ux-mylu-patterns/dist/loader";

@@ -0,0 +0,0 @@ export interface LuReactProps {

@@ -0,0 +0,0 @@ import React from 'react';

@@ -0,0 +0,0 @@ export declare const attachEventProps: (node: HTMLElement, newProps: any, oldProps?: any) => void;

@@ -0,0 +0,0 @@ import { camelToDashCase } from './case';

export declare const dashToPascalCase: (str: string) => string;
export declare const camelToDashCase: (str: string) => string;
export const dashToPascalCase = (str) => str.toLowerCase().split('-').map(segment => segment.charAt(0).toUpperCase() + segment.slice(1)).join('');
export const camelToDashCase = (str) => str.replace(/([A-Z])/g, (m) => `-${m[0].toLowerCase()}`);
//# sourceMappingURL=case.js.map
export declare const isDevMode: () => boolean;
export declare const deprecationWarning: (key: string, message: string) => void;

@@ -0,0 +0,0 @@ export const isDevMode = () => {

@@ -0,0 +0,0 @@ import React from 'react';

@@ -0,0 +0,0 @@ import React from 'react';

export * from './components';
export * from './types';
export * from './components';
//# sourceMappingURL=index.js.map

@@ -0,0 +0,0 @@ export declare type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;

4

package.json
{
"name": "@lu-development/ux-mylu-patterns-react",
"version": "0.3.0-dev.202001101517.f48fc99",
"version": "0.3.0-dev.202001131956.1670108",
"description": "React specific wrapper for @lu-development/ux-mylu-patterns",

@@ -49,3 +49,3 @@ "keywords": [],

"dependencies": {
"@lu-development/ux-mylu-patterns": "0.3.0-dev.202001101517.f48fc99"
"@lu-development/ux-mylu-patterns": "0.3.0-dev.202001131956.1670108"
},

@@ -52,0 +52,0 @@ "peerDependencies": {

## @lu-development/ux-mylu-patterns-react
These are React specific building blocks on top of @lu-development/ux-mylu-patterns components/services.

Sorry, the diff of this file is too big to display

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