@salutejs/plasma-new-hope 0.161.1-canary.1471.11182853822.0 → 0.162.0-canary.1470.11191908547.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. package/cjs/components/TextArea/TextArea.styles.js +5 -5
  2. package/cjs/components/TextArea/TextArea.styles.js.map +1 -1
  3. package/cjs/components/TextArea/{TextArea.styles_es0miz.css → TextArea.styles_1kzzs11.css} +1 -1
  4. package/cjs/components/TextArea/TextArea.tokens.js +0 -8
  5. package/cjs/components/TextArea/TextArea.tokens.js.map +1 -1
  6. package/cjs/index.css +11 -11
  7. package/emotion/cjs/components/TextArea/TextArea.styles.js +11 -11
  8. package/emotion/cjs/components/TextArea/TextArea.tokens.js +0 -8
  9. package/emotion/cjs/examples/plasma_b2c/components/TextArea/TextArea.config.js +10 -10
  10. package/emotion/cjs/examples/plasma_web/components/TextArea/TextArea.config.js +10 -10
  11. package/emotion/es/components/TextArea/TextArea.styles.js +11 -11
  12. package/emotion/es/components/TextArea/TextArea.tokens.js +0 -8
  13. package/emotion/es/examples/plasma_b2c/components/TextArea/TextArea.config.js +10 -10
  14. package/emotion/es/examples/plasma_web/components/TextArea/TextArea.config.js +10 -10
  15. package/es/components/TextArea/TextArea.styles.js +5 -5
  16. package/es/components/TextArea/TextArea.styles.js.map +1 -1
  17. package/es/components/TextArea/{TextArea.styles_es0miz.css → TextArea.styles_1kzzs11.css} +1 -1
  18. package/es/components/TextArea/TextArea.tokens.js +0 -8
  19. package/es/components/TextArea/TextArea.tokens.js.map +1 -1
  20. package/es/index.css +11 -11
  21. package/package.json +2 -2
  22. package/styled-components/cjs/components/TextArea/TextArea.styles.js +2 -2
  23. package/styled-components/cjs/components/TextArea/TextArea.tokens.js +0 -8
  24. package/styled-components/cjs/examples/plasma_b2c/components/TextArea/TextArea.config.js +8 -8
  25. package/styled-components/cjs/examples/plasma_web/components/TextArea/TextArea.config.js +8 -8
  26. package/styled-components/es/components/TextArea/TextArea.styles.js +2 -2
  27. package/styled-components/es/components/TextArea/TextArea.tokens.js +0 -8
  28. package/styled-components/es/examples/plasma_b2c/components/TextArea/TextArea.config.js +8 -8
  29. package/styled-components/es/examples/plasma_web/components/TextArea/TextArea.config.js +8 -8
  30. package/types/components/Combobox/ComboboxNew/Combobox.d.ts +2 -2
  31. package/types/components/Combobox/ComboboxNew/Combobox.d.ts.map +1 -1
  32. package/types/components/Combobox/ComboboxNew/Combobox.types.d.ts +5 -6
  33. package/types/components/Combobox/ComboboxNew/Combobox.types.d.ts.map +1 -1
  34. package/types/components/Combobox/ComboboxNew/index.d.ts +2 -0
  35. package/types/components/Combobox/ComboboxNew/index.d.ts.map +1 -1
  36. package/types/components/Combobox/index.d.ts +1 -0
  37. package/types/components/Combobox/index.d.ts.map +1 -1
  38. package/types/components/TextArea/TextArea.styles.d.ts.map +1 -1
  39. package/types/components/TextArea/TextArea.tokens.d.ts +0 -8
  40. package/types/components/TextArea/TextArea.tokens.d.ts.map +1 -1
  41. package/types/examples/plasma_b2c/components/Combobox/Combobox.d.ts +126 -6
  42. package/types/examples/plasma_b2c/components/Combobox/Combobox.d.ts.map +1 -1
  43. package/types/examples/plasma_b2c/components/TextArea/TextArea.config.d.ts.map +1 -1
  44. package/types/examples/plasma_web/components/Combobox/Combobox.d.ts +126 -6
  45. package/types/examples/plasma_web/components/Combobox/Combobox.d.ts.map +1 -1
  46. package/types/examples/plasma_web/components/TextArea/TextArea.config.d.ts.map +1 -1
@@ -22,7 +22,27 @@ declare const Combobox: import("react").FunctionComponent<import("../../../../en
22
22
  readOnly: {
23
23
  true: import("@linaria/core").LinariaClassName;
24
24
  };
25
- }> & ((import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
25
+ }> & (({
26
+ items: import("../../../..").ItemOption[];
27
+ placement?: ("left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | undefined;
28
+ label?: string | undefined;
29
+ placeholder?: string | undefined;
30
+ helperText?: string | undefined;
31
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
32
+ textBefore?: string | undefined;
33
+ textAfter?: string | undefined;
34
+ variant?: "normal" | "tight" | undefined;
35
+ listOverflow?: import("csstype").Property.Overflow | undefined;
36
+ listHeight?: import("csstype").Property.Height<string | number> | undefined;
37
+ listWidth?: import("csstype").Property.Width<string | number> | undefined;
38
+ portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
39
+ renderItem?: ((item: import("../../../..").ItemOption) => import("react").ReactNode) | undefined;
40
+ filter?: ((label: string, textValue: string) => boolean) | undefined;
41
+ closeAfterSelect?: boolean | undefined;
42
+ size?: string | undefined;
43
+ view?: string | undefined;
44
+ labelPlacement?: "inner" | "outer" | undefined;
45
+ } & {
26
46
  readOnly?: boolean | undefined;
27
47
  disabled?: true | undefined;
28
48
  alwaysOpened?: false | undefined;
@@ -31,7 +51,27 @@ declare const Combobox: import("react").FunctionComponent<import("../../../../en
31
51
  value?: string | undefined;
32
52
  onChange?: ((value: string) => void) | undefined;
33
53
  isTargetAmount?: false | undefined;
34
- } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | (import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
54
+ } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
55
+ items: import("../../../..").ItemOption[];
56
+ placement?: ("left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | undefined;
57
+ label?: string | undefined;
58
+ placeholder?: string | undefined;
59
+ helperText?: string | undefined;
60
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
61
+ textBefore?: string | undefined;
62
+ textAfter?: string | undefined;
63
+ variant?: "normal" | "tight" | undefined;
64
+ listOverflow?: import("csstype").Property.Overflow | undefined;
65
+ listHeight?: import("csstype").Property.Height<string | number> | undefined;
66
+ listWidth?: import("csstype").Property.Width<string | number> | undefined;
67
+ portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
68
+ renderItem?: ((item: import("../../../..").ItemOption) => import("react").ReactNode) | undefined;
69
+ filter?: ((label: string, textValue: string) => boolean) | undefined;
70
+ closeAfterSelect?: boolean | undefined;
71
+ size?: string | undefined;
72
+ view?: string | undefined;
73
+ labelPlacement?: "inner" | "outer" | undefined;
74
+ } & {
35
75
  readOnly?: boolean | undefined;
36
76
  disabled?: true | undefined;
37
77
  alwaysOpened?: false | undefined;
@@ -40,7 +80,27 @@ declare const Combobox: import("react").FunctionComponent<import("../../../../en
40
80
  value?: string[] | undefined;
41
81
  onChange?: ((value: string[]) => void) | undefined;
42
82
  isTargetAmount?: boolean | undefined;
43
- } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | (import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
83
+ } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
84
+ items: import("../../../..").ItemOption[];
85
+ placement?: ("left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | undefined;
86
+ label?: string | undefined;
87
+ placeholder?: string | undefined;
88
+ helperText?: string | undefined;
89
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
90
+ textBefore?: string | undefined;
91
+ textAfter?: string | undefined;
92
+ variant?: "normal" | "tight" | undefined;
93
+ listOverflow?: import("csstype").Property.Overflow | undefined;
94
+ listHeight?: import("csstype").Property.Height<string | number> | undefined;
95
+ listWidth?: import("csstype").Property.Width<string | number> | undefined;
96
+ portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
97
+ renderItem?: ((item: import("../../../..").ItemOption) => import("react").ReactNode) | undefined;
98
+ filter?: ((label: string, textValue: string) => boolean) | undefined;
99
+ closeAfterSelect?: boolean | undefined;
100
+ size?: string | undefined;
101
+ view?: string | undefined;
102
+ labelPlacement?: "inner" | "outer" | undefined;
103
+ } & {
44
104
  readOnly?: true | undefined;
45
105
  disabled?: boolean | undefined;
46
106
  alwaysOpened?: false | undefined;
@@ -49,7 +109,27 @@ declare const Combobox: import("react").FunctionComponent<import("../../../../en
49
109
  value?: string | undefined;
50
110
  onChange?: ((value: string) => void) | undefined;
51
111
  isTargetAmount?: false | undefined;
52
- } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | (import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
112
+ } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
113
+ items: import("../../../..").ItemOption[];
114
+ placement?: ("left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | undefined;
115
+ label?: string | undefined;
116
+ placeholder?: string | undefined;
117
+ helperText?: string | undefined;
118
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
119
+ textBefore?: string | undefined;
120
+ textAfter?: string | undefined;
121
+ variant?: "normal" | "tight" | undefined;
122
+ listOverflow?: import("csstype").Property.Overflow | undefined;
123
+ listHeight?: import("csstype").Property.Height<string | number> | undefined;
124
+ listWidth?: import("csstype").Property.Width<string | number> | undefined;
125
+ portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
126
+ renderItem?: ((item: import("../../../..").ItemOption) => import("react").ReactNode) | undefined;
127
+ filter?: ((label: string, textValue: string) => boolean) | undefined;
128
+ closeAfterSelect?: boolean | undefined;
129
+ size?: string | undefined;
130
+ view?: string | undefined;
131
+ labelPlacement?: "inner" | "outer" | undefined;
132
+ } & {
53
133
  readOnly?: true | undefined;
54
134
  disabled?: boolean | undefined;
55
135
  alwaysOpened?: false | undefined;
@@ -58,7 +138,27 @@ declare const Combobox: import("react").FunctionComponent<import("../../../../en
58
138
  value?: string[] | undefined;
59
139
  onChange?: ((value: string[]) => void) | undefined;
60
140
  isTargetAmount?: boolean | undefined;
61
- } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | (import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
141
+ } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
142
+ items: import("../../../..").ItemOption[];
143
+ placement?: ("left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | undefined;
144
+ label?: string | undefined;
145
+ placeholder?: string | undefined;
146
+ helperText?: string | undefined;
147
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
148
+ textBefore?: string | undefined;
149
+ textAfter?: string | undefined;
150
+ variant?: "normal" | "tight" | undefined;
151
+ listOverflow?: import("csstype").Property.Overflow | undefined;
152
+ listHeight?: import("csstype").Property.Height<string | number> | undefined;
153
+ listWidth?: import("csstype").Property.Width<string | number> | undefined;
154
+ portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
155
+ renderItem?: ((item: import("../../../..").ItemOption) => import("react").ReactNode) | undefined;
156
+ filter?: ((label: string, textValue: string) => boolean) | undefined;
157
+ closeAfterSelect?: boolean | undefined;
158
+ size?: string | undefined;
159
+ view?: string | undefined;
160
+ labelPlacement?: "inner" | "outer" | undefined;
161
+ } & {
62
162
  readOnly?: false | undefined;
63
163
  disabled?: false | undefined;
64
164
  alwaysOpened?: true | undefined;
@@ -67,7 +167,27 @@ declare const Combobox: import("react").FunctionComponent<import("../../../../en
67
167
  value?: string | undefined;
68
168
  onChange?: ((value: string) => void) | undefined;
69
169
  isTargetAmount?: false | undefined;
70
- } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | (import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
170
+ } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
171
+ items: import("../../../..").ItemOption[];
172
+ placement?: ("left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | undefined;
173
+ label?: string | undefined;
174
+ placeholder?: string | undefined;
175
+ helperText?: string | undefined;
176
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
177
+ textBefore?: string | undefined;
178
+ textAfter?: string | undefined;
179
+ variant?: "normal" | "tight" | undefined;
180
+ listOverflow?: import("csstype").Property.Overflow | undefined;
181
+ listHeight?: import("csstype").Property.Height<string | number> | undefined;
182
+ listWidth?: import("csstype").Property.Width<string | number> | undefined;
183
+ portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
184
+ renderItem?: ((item: import("../../../..").ItemOption) => import("react").ReactNode) | undefined;
185
+ filter?: ((label: string, textValue: string) => boolean) | undefined;
186
+ closeAfterSelect?: boolean | undefined;
187
+ size?: string | undefined;
188
+ view?: string | undefined;
189
+ labelPlacement?: "inner" | "outer" | undefined;
190
+ } & {
71
191
  readOnly?: false | undefined;
72
192
  disabled?: false | undefined;
73
193
  alwaysOpened?: true | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"Combobox.d.ts","sourceRoot":"","sources":["../../../../../src/examples/plasma_b2c/components/Combobox/Combobox.ts"],"names":[],"mappings":";AAMA,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2IAA0B,CAAC;AAEzC,OAAO,EAAE,QAAQ,EAAE,CAAC"}
1
+ {"version":3,"file":"Combobox.d.ts","sourceRoot":"","sources":["../../../../../src/examples/plasma_b2c/components/Combobox/Combobox.ts"],"names":[],"mappings":";AAMA,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2IAA0B,CAAC;AAEzC,OAAO,EAAE,QAAQ,EAAE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"TextArea.config.d.ts","sourceRoot":"","sources":["../../../../../src/examples/plasma_b2c/components/TextArea/TextArea.config.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;CAuXlB,CAAC"}
1
+ {"version":3,"file":"TextArea.config.d.ts","sourceRoot":"","sources":["../../../../../src/examples/plasma_b2c/components/TextArea/TextArea.config.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;CA+UlB,CAAC"}
@@ -22,7 +22,27 @@ declare const Combobox: import("react").FunctionComponent<import("../../../../en
22
22
  readOnly: {
23
23
  true: import("@linaria/core").LinariaClassName;
24
24
  };
25
- }> & ((import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
25
+ }> & (({
26
+ items: import("../../../..").ItemOption[];
27
+ placement?: ("left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | undefined;
28
+ label?: string | undefined;
29
+ placeholder?: string | undefined;
30
+ helperText?: string | undefined;
31
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
32
+ textBefore?: string | undefined;
33
+ textAfter?: string | undefined;
34
+ variant?: "normal" | "tight" | undefined;
35
+ listOverflow?: import("csstype").Property.Overflow | undefined;
36
+ listHeight?: import("csstype").Property.Height<string | number> | undefined;
37
+ listWidth?: import("csstype").Property.Width<string | number> | undefined;
38
+ portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
39
+ renderItem?: ((item: import("../../../..").ItemOption) => import("react").ReactNode) | undefined;
40
+ filter?: ((label: string, textValue: string) => boolean) | undefined;
41
+ closeAfterSelect?: boolean | undefined;
42
+ size?: string | undefined;
43
+ view?: string | undefined;
44
+ labelPlacement?: "inner" | "outer" | undefined;
45
+ } & {
26
46
  readOnly?: boolean | undefined;
27
47
  disabled?: true | undefined;
28
48
  alwaysOpened?: false | undefined;
@@ -31,7 +51,27 @@ declare const Combobox: import("react").FunctionComponent<import("../../../../en
31
51
  value?: string | undefined;
32
52
  onChange?: ((value: string) => void) | undefined;
33
53
  isTargetAmount?: false | undefined;
34
- } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | (import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
54
+ } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
55
+ items: import("../../../..").ItemOption[];
56
+ placement?: ("left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | undefined;
57
+ label?: string | undefined;
58
+ placeholder?: string | undefined;
59
+ helperText?: string | undefined;
60
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
61
+ textBefore?: string | undefined;
62
+ textAfter?: string | undefined;
63
+ variant?: "normal" | "tight" | undefined;
64
+ listOverflow?: import("csstype").Property.Overflow | undefined;
65
+ listHeight?: import("csstype").Property.Height<string | number> | undefined;
66
+ listWidth?: import("csstype").Property.Width<string | number> | undefined;
67
+ portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
68
+ renderItem?: ((item: import("../../../..").ItemOption) => import("react").ReactNode) | undefined;
69
+ filter?: ((label: string, textValue: string) => boolean) | undefined;
70
+ closeAfterSelect?: boolean | undefined;
71
+ size?: string | undefined;
72
+ view?: string | undefined;
73
+ labelPlacement?: "inner" | "outer" | undefined;
74
+ } & {
35
75
  readOnly?: boolean | undefined;
36
76
  disabled?: true | undefined;
37
77
  alwaysOpened?: false | undefined;
@@ -40,7 +80,27 @@ declare const Combobox: import("react").FunctionComponent<import("../../../../en
40
80
  value?: string[] | undefined;
41
81
  onChange?: ((value: string[]) => void) | undefined;
42
82
  isTargetAmount?: boolean | undefined;
43
- } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | (import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
83
+ } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
84
+ items: import("../../../..").ItemOption[];
85
+ placement?: ("left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | undefined;
86
+ label?: string | undefined;
87
+ placeholder?: string | undefined;
88
+ helperText?: string | undefined;
89
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
90
+ textBefore?: string | undefined;
91
+ textAfter?: string | undefined;
92
+ variant?: "normal" | "tight" | undefined;
93
+ listOverflow?: import("csstype").Property.Overflow | undefined;
94
+ listHeight?: import("csstype").Property.Height<string | number> | undefined;
95
+ listWidth?: import("csstype").Property.Width<string | number> | undefined;
96
+ portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
97
+ renderItem?: ((item: import("../../../..").ItemOption) => import("react").ReactNode) | undefined;
98
+ filter?: ((label: string, textValue: string) => boolean) | undefined;
99
+ closeAfterSelect?: boolean | undefined;
100
+ size?: string | undefined;
101
+ view?: string | undefined;
102
+ labelPlacement?: "inner" | "outer" | undefined;
103
+ } & {
44
104
  readOnly?: true | undefined;
45
105
  disabled?: boolean | undefined;
46
106
  alwaysOpened?: false | undefined;
@@ -49,7 +109,27 @@ declare const Combobox: import("react").FunctionComponent<import("../../../../en
49
109
  value?: string | undefined;
50
110
  onChange?: ((value: string) => void) | undefined;
51
111
  isTargetAmount?: false | undefined;
52
- } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | (import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
112
+ } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
113
+ items: import("../../../..").ItemOption[];
114
+ placement?: ("left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | undefined;
115
+ label?: string | undefined;
116
+ placeholder?: string | undefined;
117
+ helperText?: string | undefined;
118
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
119
+ textBefore?: string | undefined;
120
+ textAfter?: string | undefined;
121
+ variant?: "normal" | "tight" | undefined;
122
+ listOverflow?: import("csstype").Property.Overflow | undefined;
123
+ listHeight?: import("csstype").Property.Height<string | number> | undefined;
124
+ listWidth?: import("csstype").Property.Width<string | number> | undefined;
125
+ portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
126
+ renderItem?: ((item: import("../../../..").ItemOption) => import("react").ReactNode) | undefined;
127
+ filter?: ((label: string, textValue: string) => boolean) | undefined;
128
+ closeAfterSelect?: boolean | undefined;
129
+ size?: string | undefined;
130
+ view?: string | undefined;
131
+ labelPlacement?: "inner" | "outer" | undefined;
132
+ } & {
53
133
  readOnly?: true | undefined;
54
134
  disabled?: boolean | undefined;
55
135
  alwaysOpened?: false | undefined;
@@ -58,7 +138,27 @@ declare const Combobox: import("react").FunctionComponent<import("../../../../en
58
138
  value?: string[] | undefined;
59
139
  onChange?: ((value: string[]) => void) | undefined;
60
140
  isTargetAmount?: boolean | undefined;
61
- } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | (import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
141
+ } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
142
+ items: import("../../../..").ItemOption[];
143
+ placement?: ("left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | undefined;
144
+ label?: string | undefined;
145
+ placeholder?: string | undefined;
146
+ helperText?: string | undefined;
147
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
148
+ textBefore?: string | undefined;
149
+ textAfter?: string | undefined;
150
+ variant?: "normal" | "tight" | undefined;
151
+ listOverflow?: import("csstype").Property.Overflow | undefined;
152
+ listHeight?: import("csstype").Property.Height<string | number> | undefined;
153
+ listWidth?: import("csstype").Property.Width<string | number> | undefined;
154
+ portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
155
+ renderItem?: ((item: import("../../../..").ItemOption) => import("react").ReactNode) | undefined;
156
+ filter?: ((label: string, textValue: string) => boolean) | undefined;
157
+ closeAfterSelect?: boolean | undefined;
158
+ size?: string | undefined;
159
+ view?: string | undefined;
160
+ labelPlacement?: "inner" | "outer" | undefined;
161
+ } & {
62
162
  readOnly?: false | undefined;
63
163
  disabled?: false | undefined;
64
164
  alwaysOpened?: true | undefined;
@@ -67,7 +167,27 @@ declare const Combobox: import("react").FunctionComponent<import("../../../../en
67
167
  value?: string | undefined;
68
168
  onChange?: ((value: string) => void) | undefined;
69
169
  isTargetAmount?: false | undefined;
70
- } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | (import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
170
+ } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | ({
171
+ items: import("../../../..").ItemOption[];
172
+ placement?: ("left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | undefined;
173
+ label?: string | undefined;
174
+ placeholder?: string | undefined;
175
+ helperText?: string | undefined;
176
+ contentLeft?: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | undefined;
177
+ textBefore?: string | undefined;
178
+ textAfter?: string | undefined;
179
+ variant?: "normal" | "tight" | undefined;
180
+ listOverflow?: import("csstype").Property.Overflow | undefined;
181
+ listHeight?: import("csstype").Property.Height<string | number> | undefined;
182
+ listWidth?: import("csstype").Property.Width<string | number> | undefined;
183
+ portal?: import("react").MutableRefObject<HTMLElement | null> | undefined;
184
+ renderItem?: ((item: import("../../../..").ItemOption) => import("react").ReactNode) | undefined;
185
+ filter?: ((label: string, textValue: string) => boolean) | undefined;
186
+ closeAfterSelect?: boolean | undefined;
187
+ size?: string | undefined;
188
+ view?: string | undefined;
189
+ labelPlacement?: "inner" | "outer" | undefined;
190
+ } & {
71
191
  readOnly?: false | undefined;
72
192
  disabled?: false | undefined;
73
193
  alwaysOpened?: true | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"Combobox.d.ts","sourceRoot":"","sources":["../../../../../src/examples/plasma_web/components/Combobox/Combobox.ts"],"names":[],"mappings":";AAMA,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2IAA0B,CAAC;AAEzC,OAAO,EAAE,QAAQ,EAAE,CAAC"}
1
+ {"version":3,"file":"Combobox.d.ts","sourceRoot":"","sources":["../../../../../src/examples/plasma_web/components/Combobox/Combobox.ts"],"names":[],"mappings":";AAMA,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2IAA0B,CAAC;AAEzC,OAAO,EAAE,QAAQ,EAAE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"TextArea.config.d.ts","sourceRoot":"","sources":["../../../../../src/examples/plasma_web/components/TextArea/TextArea.config.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;CA0WlB,CAAC"}
1
+ {"version":3,"file":"TextArea.config.d.ts","sourceRoot":"","sources":["../../../../../src/examples/plasma_web/components/TextArea/TextArea.config.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;CAkUlB,CAAC"}