react-store-input 0.2.5 → 0.2.6
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.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +6 -1
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -4,7 +4,7 @@ export { StoreInputProps, useStoreInput } from './use_store_input.mjs';
|
|
|
4
4
|
export { Input, Select, StoreComponentPropsWithStore, StoreInputWithNameComponentProps, Textarea, useStoreComponent } from './use_store_component.mjs';
|
|
5
5
|
export { FormStore, useFormStore } from './use_form_store.mjs';
|
|
6
6
|
export { TextEditor, TextEditorProps } from './text_editor.mjs';
|
|
7
|
-
|
|
7
|
+
export * from 'gw-store';
|
|
8
8
|
import 'react';
|
|
9
9
|
import 'react/jsx-runtime';
|
|
10
10
|
import './create_render.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export { StoreInputProps, useStoreInput } from './use_store_input.js';
|
|
|
4
4
|
export { Input, Select, StoreComponentPropsWithStore, StoreInputWithNameComponentProps, Textarea, useStoreComponent } from './use_store_component.js';
|
|
5
5
|
export { FormStore, useFormStore } from './use_form_store.js';
|
|
6
6
|
export { TextEditor, TextEditorProps } from './text_editor.js';
|
|
7
|
-
|
|
7
|
+
export * from 'gw-store';
|
|
8
8
|
import 'react';
|
|
9
9
|
import 'react/jsx-runtime';
|
|
10
10
|
import './create_render.js';
|
package/dist/index.js
CHANGED
|
@@ -15,6 +15,7 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
15
15
|
}
|
|
16
16
|
return to;
|
|
17
17
|
};
|
|
18
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
18
19
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
20
|
|
|
20
21
|
// src/index.tsx
|
|
@@ -363,6 +364,9 @@ function useFormStore(initialState) {
|
|
|
363
364
|
...storeComponent
|
|
364
365
|
};
|
|
365
366
|
}
|
|
367
|
+
|
|
368
|
+
// src/index.tsx
|
|
369
|
+
__reExport(index_exports, require("gw-store"), module.exports);
|
|
366
370
|
// Annotate the CommonJS export names for ESM import in node:
|
|
367
371
|
0 && (module.exports = {
|
|
368
372
|
Input,
|
|
@@ -373,5 +377,6 @@ function useFormStore(initialState) {
|
|
|
373
377
|
useStoreComponent,
|
|
374
378
|
useStoreController,
|
|
375
379
|
useStoreInput,
|
|
376
|
-
useStoreInputWithName
|
|
380
|
+
useStoreInputWithName,
|
|
381
|
+
...require("gw-store")
|
|
377
382
|
});
|
package/dist/index.mjs
CHANGED