@noah-libjs/components 0.0.8 → 0.0.9

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.
Files changed (40) hide show
  1. package/dist/ArrayInput/components.d.ts +26 -649
  2. package/dist/ArrayInput/types.d.ts +2 -1
  3. package/dist/ArraySingle/DispalyInner.d.ts +4 -0
  4. package/dist/ArraySingle/Inner.d.ts +4 -0
  5. package/dist/ArraySingle/index.d.ts +4 -0
  6. package/dist/ArraySingle/types.d.ts +16 -0
  7. package/dist/MyCheckbox/components.d.ts +26 -649
  8. package/dist/MyCheckbox/types.d.ts +3 -2
  9. package/dist/MyIconSelect/MyIcon.d.ts +2 -0
  10. package/dist/MyIconSelect/MyIconSelect.d.ts +5 -0
  11. package/dist/MyIconSelect/index.d.ts +2 -3
  12. package/dist/MyIconSelect/utils.d.ts +7 -0
  13. package/dist/MyInput/index.d.ts +3 -3
  14. package/dist/MyRangeDate/Inner.d.ts +2 -1
  15. package/dist/MyRangeDate/utils.d.ts +11 -376
  16. package/dist/MySelect/components.d.ts +26 -649
  17. package/dist/MySelect/types.d.ts +2 -0
  18. package/dist/a_chunks/index.js +111 -188
  19. package/dist/a_chunks/root.17.js +10 -4
  20. package/dist/a_chunks/root.18.js +0 -1
  21. package/dist/a_chunks/root.19.js +0 -1
  22. package/dist/a_chunks/root.20.js +0 -1
  23. package/dist/a_chunks/root.21.js +0 -1
  24. package/dist/a_chunks/root.22.js +155 -55
  25. package/dist/a_chunks/root.23.js +14 -211
  26. package/dist/a_chunks/root.24.js +23 -75
  27. package/dist/a_chunks/root.25.js +8 -5
  28. package/dist/a_chunks/root.26.js +68 -4
  29. package/dist/a_chunks/root.27.js +212 -0
  30. package/dist/a_chunks/root.28.js +117 -0
  31. package/dist/a_chunks/root.29.js +5 -0
  32. package/dist/a_chunks/root.30.js +4 -0
  33. package/dist/a_chunks/utils.js +59 -0
  34. package/dist/index.js +1 -2
  35. package/dist/packs.d.ts +28 -649
  36. package/dist/util-types/fd/InputType.d.ts +1 -1
  37. package/dist/util-types/fd/index.d.ts +9 -2
  38. package/dist/utils/msmc.d.ts +6 -3
  39. package/dist/utils/use_array_marshal.d.ts +5 -0
  40. package/package.json +4 -4
@@ -8,6 +8,7 @@ import { IMyInputProps } from 'src/MyInput';
8
8
  import { IMySelectProps } from '../MySelect';
9
9
  import { IMyCheckboxProps } from 'src/MyCheckbox';
10
10
  import { SizeType } from 'antd/es/config-provider/SizeContext';
11
+ import { IMchc_FormDescriptions_InputProps } from 'src/util-types';
11
12
  export type TOption = {
12
13
  inputType: 'MyAutoComplete';
13
14
  props?: MyAutoCompleteProps;
@@ -69,7 +70,7 @@ export interface IArrayInputProps {
69
70
  optionKey?: string;
70
71
  onChange?(v: string | any[]): void;
71
72
  separator?: string;
72
- marshal?: number;
73
+ marshal?: IMchc_FormDescriptions_InputProps['marshal'];
73
74
  onBlur?: FocusEventHandler<any>;
74
75
  options?: (TOption & ICommonOption)[];
75
76
  sp?: (TOption & ICommonOption)[];
@@ -0,0 +1,4 @@
1
+ import { TCommonComponentDisplay } from 'src/util-types';
2
+ import { IArraySingleProps } from './types';
3
+ declare const DisplayFC: TCommonComponentDisplay<IArraySingleProps, string>;
4
+ export default DisplayFC;
@@ -0,0 +1,4 @@
1
+ import { TCommonComponent } from 'src/util-types';
2
+ import { IArraySingleProps } from './types';
3
+ declare const ArraySingleInner: TCommonComponent<IArraySingleProps, string | any[]>;
4
+ export default ArraySingleInner;
@@ -0,0 +1,4 @@
1
+ import { TCommonComponent } from '../util-types';
2
+ import { IArraySingleProps } from './types';
3
+ export declare const ArraySingle: TCommonComponent<IArraySingleProps, string>;
4
+ export * from './types';
@@ -0,0 +1,16 @@
1
+ import { ButtonProps, FormInstance } from "antd";
2
+ import { IMchc_FormDescriptions_InputType } from "../util-types/fd/InputType";
3
+ import { IMchc_FormDescriptions_InputProps } from "src/util-types";
4
+ export interface IArraySingleProps {
5
+ linker?: string;
6
+ value?: string;
7
+ onChange?(v: string | any[]): void;
8
+ marshal?: IMchc_FormDescriptions_InputProps['marshal'];
9
+ form?: FormInstance;
10
+ tip?: string;
11
+ addBtnStyle?: ButtonProps;
12
+ inputType?: IMchc_FormDescriptions_InputType;
13
+ component_map?: IMchc_FormDescriptions_InputProps['component_map'];
14
+ genRowData?: (list: any[]) => any;
15
+ on_row_value_change(data: any[], index: number, changed?: any, form?: FormInstance): void;
16
+ }