@player-ui/common-types-plugin 0.3.0-next.3 → 0.3.0-next.5
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 +1 -3
- package/package.json +3 -6
- package/src/formats/index.ts +1 -1
- package/src/formats/utils.ts +1 -1
- package/src/validators/index.ts +1 -1
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.
|
|
3
|
+
"version": "0.3.0-next.5",
|
|
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.
|
|
9
|
+
"@player-ui/player": "0.3.0-next.5"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@player-ui/
|
|
13
|
-
"@player-ui/constants": "0.3.0-next.3",
|
|
14
|
-
"@player-ui/string-resolver": "0.3.0-next.3",
|
|
15
|
-
"@player-ui/types-provider-plugin": "0.3.0-next.3",
|
|
12
|
+
"@player-ui/types-provider-plugin": "0.3.0-next.5",
|
|
16
13
|
"@babel/runtime": "7.15.4"
|
|
17
14
|
},
|
|
18
15
|
"main": "dist/index.cjs.js",
|
package/src/formats/index.ts
CHANGED
package/src/formats/utils.ts
CHANGED
package/src/validators/index.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Expression } from '@player-ui/types';
|
|
2
|
-
import type { ValidatorFunction } from '@player-ui/
|
|
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
|
|