New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@dhis2/ui-constants

Package Overview
Dependencies
Maintainers
5
Versions
437
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dhis2/ui-constants - npm Package Compare versions

Comparing version

to
8.16.0-alpha.2

2

package.json
{
"name": "@dhis2/ui-constants",
"version": "8.16.0-alpha.1",
"version": "8.16.0-alpha.2",
"description": "Constants used in the UI libs",

@@ -5,0 +5,0 @@ "main": "./build/cjs/index.js",

@@ -0,1 +1,8 @@

import { bool } from 'prop-types'
import {
insideAlignmentPropType,
popperPlacementPropType,
popperReferencePropType,
} from '../src/shared-prop-types'
export type ColorBase = 'blue' | 'teal' | 'red' | 'yellow' | 'green' | 'grey'

@@ -64,1 +71,9 @@ export type ColorVariant =

export const theme: Record<ThemeProp, string>
export interface sharedPropTypes {
statusPropType: typeof bool
sizePropType: typeof bool
insideAlignmentPropType: typeof insideAlignmentPropType
popperPlacementPropType: typeof popperPlacementPropType
popperReferencePropType: typeof popperReferencePropType
}