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

@player-ui/player

Package Overview
Dependencies
Maintainers
2
Versions
294
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@player-ui/player - npm Package Compare versions

Comparing version 0.3.0-next.3 to 0.3.0-next.4

src/binding-grammar/ast.ts

24

package.json
{
"name": "@player-ui/player",
"version": "0.3.0-next.3",
"version": "0.3.0-next.4",
"private": false,

@@ -10,16 +10,4 @@ "publishConfig": {

"dependencies": {
"@player-ui/binding": "0.3.0-next.3",
"@player-ui/constants": "0.3.0-next.3",
"@player-ui/data": "0.3.0-next.3",
"@player-ui/expressions": "0.3.0-next.3",
"@player-ui/flow": "0.3.0-next.3",
"@player-ui/logger": "0.3.0-next.3",
"@player-ui/partial-match-registry": "0.3.0-next.3",
"@player-ui/schema": "0.3.0-next.3",
"@player-ui/string-resolver": "0.3.0-next.3",
"@player-ui/types": "0.3.0-next.3",
"@player-ui/utils": "0.3.0-next.3",
"@player-ui/validator": "0.3.0-next.3",
"@player-ui/view": "0.3.0-next.3",
"babel-plugin-preval": "^5.0.0",
"@player-ui/partial-match-registry": "0.3.0-next.4",
"@player-ui/types": "0.3.0-next.4",
"dequal": "^2.0.2",

@@ -29,2 +17,8 @@ "p-defer": "^3.0.0",

"tapable-ts": "^0.1.0",
"nested-error-stacks": "^2.1.1",
"@types/nested-error-stacks": "^2.1.0",
"parsimmon": "^1.12.0",
"@types/parsimmon": "^1.10.0",
"arr-flatten": "^1.1.0",
"ebnf": "^1.9.0",
"timm": "^1.6.2",

@@ -31,0 +25,0 @@ "@babel/runtime": "7.15.4"

// Add the types export first so it's naming takes precedence
export * from '@player-ui/types';
export * from '@player-ui/binding';
export * from '@player-ui/data';
export * from '@player-ui/expressions';
export * from '@player-ui/flow';
export * from '@player-ui/logger';
export * from '@player-ui/schema';
export * from '@player-ui/string-resolver';
export * from '@player-ui/validator';
export * from '@player-ui/view';
export * from './binding';
export * from './data';
export * from './expressions';
export * from './logger';
export * from './schema';
export * from './string-resolver';
export * from './validator';
export * from './view';
export * from './player';
export * from './validation';
export * from './view';
export * from './data';
export * from './controllers';
export * from './types';
export * from './plugins/flow-exp-plugin';

@@ -1,20 +0,23 @@

import { SyncHook, SyncWaterfallHook } from 'tapable-ts';
import type { FlowInstance } from '@player-ui/flow';
import { FlowController } from '@player-ui/flow';
import type { Logger } from '@player-ui/logger';
import { TapableLogger } from '@player-ui/logger';
import type { ExpressionHandler } from '@player-ui/expressions';
import { ExpressionEvaluator } from '@player-ui/expressions';
import { SchemaController } from '@player-ui/schema';
import { BindingParser } from '@player-ui/binding';
import type { ViewInstance } from '@player-ui/view';
import { setIn } from 'timm';
import deferred from 'p-defer';
import queueMicrotask from 'queue-microtask';
import type { Flow as FlowType, FlowResult } from '@player-ui/types';
import { resolveDataRefs } from '@player-ui/string-resolver';
import { ConstantsController } from '@player-ui/constants';
import queueMicrotask from 'queue-microtask';
import { ViewController } from './view';
import { DataController } from './data';
import { ValidationController } from './validation';
import { SyncHook, SyncWaterfallHook } from 'tapable-ts';
import type { Logger } from './logger';
import { TapableLogger } from './logger';
import type { ExpressionHandler } from './expressions';
import { ExpressionEvaluator } from './expressions';
import { SchemaController } from './schema';
import { BindingParser } from './binding';
import type { ViewInstance } from './view';
import { resolveDataRefs } from './string-resolver';
import type { FlowInstance } from './controllers';
import {
ConstantsController,
ViewController,
DataController,
ValidationController,
FlowController,
} from './controllers';
import { FlowExpPlugin } from './plugins/flow-exp-plugin';

@@ -30,4 +33,4 @@ import type {

// Variables injected at build time
const PLAYER_VERSION = '0.3.0-next.3';
const COMMIT = '92ff0044b739d9cce3b1e37bd729f8241d04a2da';
const PLAYER_VERSION = '0.3.0-next.4';
const COMMIT = '774a3cf3b0765796901d03a311a06ee68e690a74';

@@ -34,0 +37,0 @@ export interface PlayerPlugin {

@@ -6,6 +6,5 @@ import type {

} from '@player-ui/types';
import type { ExpressionEvaluator } from '@player-ui/expressions';
import type { FlowInstance } from '@player-ui/flow';
import type { ExpressionEvaluator } from '../expressions';
import type { FlowInstance } from '../controllers';
import type { Player, PlayerPlugin } from '../player';
import type { InProgressState } from '../types';

@@ -12,0 +11,0 @@ /**

import type { Flow, FlowResult } from '@player-ui/types';
import { Expression } from '@player-ui/types';
import type { DataModelWithParser } from '@player-ui/data';
import { DataModelOptions } from '@player-ui/data';
import type { FlowController } from '@player-ui/flow';
import { NamedState, TransitionFunction } from '@player-ui/flow';
import { ViewInstance } from '@player-ui/view';
import type { BindingParser, BindingLike } from '@player-ui/binding';
import type { SchemaController } from '@player-ui/schema';
import type { ExpressionEvaluator } from '@player-ui/expressions';
import type { Logger } from '@player-ui/logger';
import type { ViewController } from './view';
import type { DataController } from './data';
import type { ValidationController } from './validation';
import type { DataModelWithParser } from './data';
import type { BindingParser, BindingLike } from './binding';
import type { SchemaController } from './schema';
import type { ExpressionEvaluator } from './expressions';
import type { Logger } from './logger';
import type {
ViewController,
DataController,
ValidationController,
FlowController,
} from './controllers';

@@ -16,0 +14,0 @@ /** The status for a flow's execution state */

@@ -1,4 +0,5 @@

export * from './asset-transform';
export * from './controller';
export * from './store';
export * from './types';
export * from './view';
export * from './resolver';
export * from './parser';
export * from './builder';
export * from './plugins';

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

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

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