@jsonui/functions-example 0.3.4 → 0.7.0
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/cjs/index.js +30445 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/cjs/types/functions/axios.d.ts +2 -0
- package/dist/cjs/types/index.d.ts +2 -0
- package/dist/cjs/types/stories/Axios.stories.d.ts +5 -0
- package/dist/cjs/types/stories/FormPost.stories.d.ts +5 -0
- package/dist/esm/index.js +30441 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/types/functions/axios.d.ts +2 -0
- package/dist/esm/types/index.d.ts +2 -0
- package/dist/esm/types/stories/Axios.stories.d.ts +5 -0
- package/dist/esm/types/stories/FormPost.stories.d.ts +5 -0
- package/dist/index.d.ts +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
|
3
|
+
declare const TextFieldStory: ComponentMeta<typeof React.Component>;
|
|
4
|
+
export declare const AxiosFormDataSend: ComponentStory<typeof React.Component>;
|
|
5
|
+
export default TextFieldStory;
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as axios } from 'axios';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsonui/functions-example",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"author": "Istvan Fodor <fodori@jsonui.org>",
|
|
5
5
|
"contributors": [],
|
|
6
6
|
"bugs": {
|
|
@@ -110,5 +110,5 @@
|
|
|
110
110
|
"last 1 safari version"
|
|
111
111
|
]
|
|
112
112
|
},
|
|
113
|
-
"gitHead": "
|
|
113
|
+
"gitHead": "d1f5846702fd08fe465648dac4daead47ab50279"
|
|
114
114
|
}
|