@player-ui/common-types-plugin 0.3.0-next.2 → 0.3.0-next.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,7 +1,5 @@
1
- import { PlayerPlugin, Player } from '@player-ui/player';
1
+ import { ValidatorFunction, FormatType, PlayerPlugin, Player } from '@player-ui/player';
2
2
  import { Expression, Schema, Language } from '@player-ui/types';
3
- import { ValidatorFunction } from '@player-ui/validator';
4
- import { FormatType } from '@player-ui/schema';
5
3
 
6
4
  /** Checks to see if the data-type is a string */
7
5
  declare const string: ValidatorFunction;
package/package.json CHANGED
@@ -1,18 +1,15 @@
1
1
  {
2
2
  "name": "@player-ui/common-types-plugin",
3
- "version": "0.3.0-next.2",
3
+ "version": "0.3.0-next.4",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org"
7
7
  },
8
8
  "peerDependencies": {
9
- "@player-ui/player": "0.3.0-next.2"
9
+ "@player-ui/player": "0.3.0-next.4"
10
10
  },
11
11
  "dependencies": {
12
- "@player-ui/utils": "0.3.0-next.2",
13
- "@player-ui/constants": "0.3.0-next.2",
14
- "@player-ui/string-resolver": "0.3.0-next.2",
15
- "@player-ui/types-provider-plugin": "0.3.0-next.2",
12
+ "@player-ui/types-provider-plugin": "0.3.0-next.4",
16
13
  "@babel/runtime": "7.15.4"
17
14
  },
18
15
  "main": "dist/index.cjs.js",
@@ -1,4 +1,4 @@
1
- import type { FormatType } from '@player-ui/schema';
1
+ import type { FormatType } from '@player-ui/player';
2
2
  import { createMaskedNumericFormatter } from './utils';
3
3
 
4
4
  const LENGTH_OF_MAX_INT = String(Number.MAX_SAFE_INTEGER).split('').length;
@@ -1,4 +1,4 @@
1
- import type { FormatType } from '@player-ui/schema';
1
+ import type { FormatType } from '@player-ui/player';
2
2
 
3
3
  export const PLACEHOLDER = '#';
4
4
 
@@ -1,5 +1,5 @@
1
1
  import type { Expression } from '@player-ui/types';
2
- import type { ValidatorFunction } from '@player-ui/validator';
2
+ import type { ValidatorFunction } from '@player-ui/player';
3
3
 
4
4
  // Shamelessly lifted from Scott Gonzalez via the Bassistance Validation plugin http://projects.scottsplayground.com/email_address_validation/
5
5