@skbkontur/react-ui-validations 3.0.0-beta.1 → 3.0.0-beta.2
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/package.json +5 -5
- package/typings/stories.d.ts +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skbkontur/react-ui-validations",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.2",
|
|
4
4
|
"description": "Validations for @skbkontur/react-ui",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -36,6 +36,10 @@
|
|
|
36
36
|
"selenium:test": "dotnet test ./selenium-tests/ValidationTests/ValidationTests.csproj --configuration Release --framework netcoreapp3.1",
|
|
37
37
|
"selenium:ci": "start-server-and-test storybook http://localhost:6060/iframe.html selenium:test"
|
|
38
38
|
},
|
|
39
|
+
"exports": {
|
|
40
|
+
".": "./index.js",
|
|
41
|
+
"./package.json": "./package.json"
|
|
42
|
+
},
|
|
39
43
|
"main": "./index.js",
|
|
40
44
|
"types": "./index.d.ts",
|
|
41
45
|
"author": "exactlynosense <whois.ard@gmail.com>",
|
|
@@ -118,9 +122,5 @@
|
|
|
118
122
|
"webpack": "^5.91.0",
|
|
119
123
|
"webpack-cli": "^5.1.4",
|
|
120
124
|
"webpack-dev-server": "5.0.4"
|
|
121
|
-
},
|
|
122
|
-
"exports": {
|
|
123
|
-
".": "./index.js",
|
|
124
|
-
"./package.json": "./package.json"
|
|
125
125
|
}
|
|
126
126
|
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta as StorybookMeta, Story as StorybookStory } from '@storybook/react';
|
|
2
|
+
import { CreeveyMeta, CreeveyStory, CreeveyStoryParams } from 'creevey';
|
|
3
|
+
|
|
4
|
+
export type Meta = StorybookMeta & CreeveyMeta;
|
|
5
|
+
export type Story = StorybookStory & CreeveyStory;
|
|
6
|
+
|
|
7
|
+
export type CreeveyTests = CreeveyStoryParams['tests'];
|