@yklyklpackages/message-card 0.6.3 → 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.
Files changed (63) hide show
  1. package/dist/components/MessageCard.d.ts +4 -2
  2. package/dist/components/MessageCard.d.ts.map +1 -1
  3. package/dist/components/action/dispatcher.d.ts.map +1 -1
  4. package/dist/components/action/handlers.d.ts +5 -1
  5. package/dist/components/action/handlers.d.ts.map +1 -1
  6. package/dist/components/core/ComponentRenderer.d.ts.map +1 -1
  7. package/dist/components/core/LayoutWrapper.d.ts +1 -0
  8. package/dist/components/core/LayoutWrapper.d.ts.map +1 -1
  9. package/dist/components/core/LeafWrapper.d.ts.map +1 -1
  10. package/dist/components/layout/AbsoluteViewLayout.d.ts.map +1 -1
  11. package/dist/components/layout/AnimationLayout.d.ts.map +1 -1
  12. package/dist/components/layout/CardLayout.d.ts +23 -0
  13. package/dist/components/layout/CardLayout.d.ts.map +1 -0
  14. package/dist/components/layout/FullRowLayout.d.ts +0 -1
  15. package/dist/components/layout/FullRowLayout.d.ts.map +1 -1
  16. package/dist/components/layout/MultipleColumnLayout.d.ts +3 -7
  17. package/dist/components/layout/MultipleColumnLayout.d.ts.map +1 -1
  18. package/dist/components/layout/RadioGroupLayout.d.ts +2 -0
  19. package/dist/components/layout/RadioGroupLayout.d.ts.map +1 -0
  20. package/dist/components/layout/ResponsiveTwoColumnLayout.d.ts +13 -0
  21. package/dist/components/layout/ResponsiveTwoColumnLayout.d.ts.map +1 -0
  22. package/dist/components/layout/ScrollViewLayout.d.ts +3 -2
  23. package/dist/components/layout/ScrollViewLayout.d.ts.map +1 -1
  24. package/dist/components/message/MessageContainer.d.ts +5 -1
  25. package/dist/components/message/MessageContainer.d.ts.map +1 -1
  26. package/dist/components/render/ButtonJDH.d.ts +13 -0
  27. package/dist/components/render/ButtonJDH.d.ts.map +1 -0
  28. package/dist/components/render/Checkbox.d.ts +1 -13
  29. package/dist/components/render/Checkbox.d.ts.map +1 -1
  30. package/dist/components/render/ChoiceJDH.d.ts +14 -0
  31. package/dist/components/render/ChoiceJDH.d.ts.map +1 -0
  32. package/dist/components/render/Image.d.ts.map +1 -1
  33. package/dist/components/render/Input.d.ts +1 -13
  34. package/dist/components/render/Input.d.ts.map +1 -1
  35. package/dist/components/render/InputJDH.d.ts +15 -0
  36. package/dist/components/render/InputJDH.d.ts.map +1 -0
  37. package/dist/components/render/Markdown.d.ts.map +1 -1
  38. package/dist/components/render/Radio.d.ts +1 -13
  39. package/dist/components/render/Radio.d.ts.map +1 -1
  40. package/dist/components/render/Select.d.ts +1 -13
  41. package/dist/components/render/Select.d.ts.map +1 -1
  42. package/dist/components/render/TextareaJDH.d.ts +15 -0
  43. package/dist/components/render/TextareaJDH.d.ts.map +1 -0
  44. package/dist/components/theme/ScreenTheme375.d.ts.map +1 -1
  45. package/dist/components/theme/ThemeContext.d.ts.map +1 -1
  46. package/dist/components/theme/ZhiYiPCTheme.d.ts +4 -0
  47. package/dist/components/theme/ZhiYiPCTheme.d.ts.map +1 -0
  48. package/dist/components/theme/defaultTheme.d.ts.map +1 -1
  49. package/dist/components/types/component.d.ts +1 -2
  50. package/dist/components/types/component.d.ts.map +1 -1
  51. package/dist/components/utils/ResponsiveContext.d.ts +1 -0
  52. package/dist/components/utils/ResponsiveContext.d.ts.map +1 -1
  53. package/dist/components/utils/styleHelpers.d.ts +46 -8
  54. package/dist/components/utils/styleHelpers.d.ts.map +1 -1
  55. package/dist/components/validator/ComponentValidator.d.ts.map +1 -1
  56. package/dist/index.cjs +6234 -25585
  57. package/dist/index.cjs.map +1 -1
  58. package/dist/index.mjs +6248 -25583
  59. package/dist/index.mjs.map +1 -1
  60. package/dist/index.umd.js +6165 -25515
  61. package/dist/index.umd.js.map +1 -1
  62. package/dist/style.css +480 -0
  63. package/package.json +7 -7
@@ -1,5 +1,5 @@
1
1
  import { CSSProperties } from 'react';
2
- import { ILayoutCommonProps, IRenderCommonProps } from '@jdh-cross/aui-types';
2
+ import { IButtonRenderComponent, IChoiceRenderComponent, IInputRenderComponent, ILayoutCommonProps, IRenderCommonProps, ITextareaRenderComponent } from '@jdh-cross/aui-types';
3
3
  import { Theme, LayoutProps, CommonProps } from '../types/component';
4
4
 
5
5
  /**
@@ -16,7 +16,7 @@ export declare const baseContainerStyle: (props?: CommonProps, scale?: number) =
16
16
  * - horizontal: true 表示横向布局(Two/Three/Four),false 表示纵向(FullRow)
17
17
  */
18
18
  export declare const containerGapStyle: (gap?: number) => CSSProperties;
19
- export declare const childGapStyle: (index: number, count: number, gap?: number, horizontal?: boolean, scale?: number) => CSSProperties;
19
+ export declare const childGapStyle: (index: number, count: number, theme: Theme, gap?: number | string, horizontal?: boolean, scale?: number, isWrap?: boolean) => CSSProperties;
20
20
  /**
21
21
  * padding处理
22
22
  * 将 padding 参数转换为内联样式
@@ -28,6 +28,7 @@ export declare const childGapStyle: (index: number, count: number, gap?: number,
28
28
  export declare const resolveSpace: (val: string | number | undefined, theme: Theme, scale?: number) => string | number | undefined;
29
29
  export declare const paddingToStyle: (padding: ILayoutCommonProps["padding"] | undefined, theme: Theme, scale?: number) => CSSProperties;
30
30
  export declare const marginToStyle: (margin: ILayoutCommonProps["margin"] | undefined, theme: Theme, scale?: number) => CSSProperties;
31
+ export declare const resolvedLineHeight: (lineHeight: number | string, theme: Theme, scale?: number) => string | number;
31
32
  /**
32
33
  * 主题相关辅助:文本样式
33
34
  */
@@ -60,7 +61,7 @@ export declare const fractionWidth: (percent: string) => CSSProperties;
60
61
  /**
61
62
  * 构建布局子项容器基础样式
62
63
  */
63
- export declare const buildItemContainerStyle: (index: number, count: number, props?: LayoutProps, horizontal?: boolean, scale?: number) => CSSProperties;
64
+ export declare const buildItemContainerStyle: (index: number, count: number, theme: Theme, props?: LayoutProps, horizontal?: boolean, scale?: number, isWrap?: boolean) => CSSProperties;
64
65
  /**
65
66
  * 构建布局容器的基础样式(flex)
66
67
  */
@@ -69,10 +70,47 @@ export declare const buildLayoutContainerStyle: (props: ILayoutCommonProps | und
69
70
  * 定位布局容器的基础样式
70
71
  */
71
72
  export declare const buildAbsoluteLayoutStyle: (props: ILayoutCommonProps | undefined, direction: "column" | "row" | undefined, theme: Theme, scale?: number) => CSSProperties;
72
- /**
73
- * 样式字符串计算方法
74
- * 支持传入'2 2px 0 0',也支持[2,"2px"],或者'2px'/2,以及0的情况。
75
- * 遇到数值和2px要把2提取出来,通过Transform转换为新的值。
76
- */
77
73
  export declare const runStyle: (val: string | number | (string | number)[] | undefined, scale?: number) => string | number;
74
+ export declare const resolveColor: (color: string, theme: Theme) => any;
75
+ export declare const buildCardLayoutStyle: (props: (Pick<ILayoutCommonProps, "margin" | "hideComponent"> & {
76
+ title?: string;
77
+ subDescription?: string;
78
+ }) | undefined, theme: Theme, scale?: number) => {
79
+ warpStyle: CSSProperties;
80
+ containerStyle: CSSProperties;
81
+ titleWrapStyle: CSSProperties;
82
+ titleStyle: CSSProperties;
83
+ titleLeftSlotStyle: CSSProperties;
84
+ titleRightSlotStyle: CSSProperties;
85
+ subDescriptionStyle: CSSProperties;
86
+ contentStyle: CSSProperties;
87
+ };
88
+ export declare const buildChoiceRenderStyle: (props: IChoiceRenderComponent["props"], isSelected: boolean, theme: Theme, scale?: number) => {
89
+ wrapStyle: CSSProperties;
90
+ labelLineStyle: CSSProperties;
91
+ labelStyle: CSSProperties;
92
+ subDescriptionStyle: CSSProperties;
93
+ imgTopStyle: CSSProperties;
94
+ imgLeftStyle: CSSProperties;
95
+ };
96
+ export declare const buildButtonRenderStyle: (props: IButtonRenderComponent["props"], theme: Theme, scale?: number) => {
97
+ wrapStyle: CSSProperties;
98
+ iconStyle: CSSProperties;
99
+ arrowStyle: CSSProperties;
100
+ };
101
+ export declare const buildInputRenderStyle: (props: IInputRenderComponent["props"], theme: Theme, scale?: number) => {
102
+ wrapStyle: CSSProperties;
103
+ inputStyle: CSSProperties;
104
+ clearStyle: CSSProperties;
105
+ clearIconStyle: CSSProperties;
106
+ msgStyle: CSSProperties;
107
+ passwordStyle: CSSProperties;
108
+ passwordIconStyle: CSSProperties;
109
+ };
110
+ export declare const buildTextareaRenderStyle: (props: ITextareaRenderComponent["props"], value: string, theme: Theme, scale?: number) => {
111
+ wrapStyle: CSSProperties;
112
+ textareaStyle: CSSProperties;
113
+ msgStyle: CSSProperties;
114
+ maxLengthTipsStyle: CSSProperties;
115
+ };
78
116
  //# sourceMappingURL=styleHelpers.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"styleHelpers.d.ts","sourceRoot":"","sources":["../../../src/components/utils/styleHelpers.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"styleHelpers.d.ts","sourceRoot":"","sources":["../../../src/components/utils/styleHelpers.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"ComponentValidator.d.ts","sourceRoot":"","sources":["../../../src/components/validator/ComponentValidator.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAG3D;;;;GAIG;AAEH,MAAM,WAAW,cAAc;IAC7B,KAAK,EAAE,OAAO,CAAC;IACf,MAAM,EAAE,MAAM,EAAE,CAAC;CAClB;AAID,eAAO,MAAM,YAAY,GACvB,OAAO,cAAc,EAAE,EACvB,kBAAkB,KACjB,cAsDF,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,eAAe,GAAI,OAAO,cAAc,EAAE,EAAE,QAAQ,MAAM,SAQtE,CAAC"}
1
+ {"version":3,"file":"ComponentValidator.d.ts","sourceRoot":"","sources":["../../../src/components/validator/ComponentValidator.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAG3D;;;;GAIG;AAEH,MAAM,WAAW,cAAc;IAC7B,KAAK,EAAE,OAAO,CAAC;IACf,MAAM,EAAE,MAAM,EAAE,CAAC;CAClB;AAID,eAAO,MAAM,YAAY,GACvB,OAAO,cAAc,EAAE,EACvB,kBAAkB,KACjB,cA4DF,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,eAAe,GAAI,OAAO,cAAc,EAAE,EAAE,QAAQ,MAAM,SAQtE,CAAC"}