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

@coveo/bueno

Package Overview
Dependencies
Maintainers
1
Versions
417
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@coveo/bueno - npm Package Compare versions

Comparing version 0.1.0-alpha.49 to 0.1.0-alpha.50

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

# [0.1.0-alpha.50](https://bitbucket.org/coveord/ui-kit/compare/v0.1.0-alpha.49...v0.1.0-alpha.50) (2020-11-13)
**Note:** Version bump only for package @coveo/bueno
# [0.1.0-alpha.49](https://bitbucket.org/coveord/ui-kit/compare/v0.1.0-alpha.48...v0.1.0-alpha.49) (2020-11-12)

@@ -8,0 +16,0 @@

12

dist/browser/values/string-value.d.ts
import { ValueConfig } from './value';
import { SchemaValue } from '../schema';
interface StringValueConfig extends ValueConfig<string> {
interface StringValueConfig<T extends string> extends ValueConfig<T> {
emptyAllowed?: boolean;
url?: boolean;
constrainTo?: string[];
constrainTo?: readonly T[];
}
export declare class StringValue implements SchemaValue<string> {
export declare class StringValue<T extends string = string> implements SchemaValue<string> {
private value;
private config;
constructor(config?: StringValueConfig);
validate(value: string): string | null;
get default(): string | undefined;
constructor(config?: StringValueConfig<T>);
validate(value: T): string | null;
get default(): T | undefined;
get required(): boolean;

@@ -15,0 +15,0 @@ }

import { ValueConfig } from './value';
import { SchemaValue } from '../schema';
interface StringValueConfig extends ValueConfig<string> {
interface StringValueConfig<T extends string> extends ValueConfig<T> {
emptyAllowed?: boolean;
url?: boolean;
constrainTo?: string[];
constrainTo?: readonly T[];
}
export declare class StringValue implements SchemaValue<string> {
export declare class StringValue<T extends string = string> implements SchemaValue<string> {
private value;
private config;
constructor(config?: StringValueConfig);
validate(value: string): string | null;
get default(): string | undefined;
constructor(config?: StringValueConfig<T>);
validate(value: T): string | null;
get default(): T | undefined;
get required(): boolean;

@@ -15,0 +15,0 @@ }

@@ -12,3 +12,3 @@ {

"license": "Apache-2.0",
"version": "0.1.0-alpha.49",
"version": "0.1.0-alpha.50",
"files": [

@@ -15,0 +15,0 @@ "dist/"

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