@salutejs/plasma-new-hope 0.143.0-canary.1422.10814333858.0 → 0.143.0-canary.1422.10829409432.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/Combobox/ComboboxNew/Combobox.js +3 -4
  2. package/cjs/components/Combobox/ComboboxNew/Combobox.js.map +1 -1
  3. package/cjs/components/Combobox/ComboboxNew/ui/Inner/Inner.js +4 -11
  4. package/cjs/components/Combobox/ComboboxNew/ui/Inner/Inner.js.map +1 -1
  5. package/cjs/components/Combobox/ComboboxNew/ui/Inner/ui/Item/Item.js +3 -5
  6. package/cjs/components/Combobox/ComboboxNew/ui/Inner/ui/Item/Item.js.map +1 -1
  7. package/emotion/cjs/components/Combobox/ComboboxNew/Combobox.js +3 -4
  8. package/emotion/cjs/components/Combobox/ComboboxNew/ui/Inner/Inner.js +4 -11
  9. package/emotion/cjs/components/Combobox/ComboboxNew/ui/Inner/ui/Item/Item.js +3 -5
  10. package/emotion/cjs/examples/plasma_b2c/components/Combobox/Combobox.stories.tsx +9 -1
  11. package/emotion/cjs/examples/plasma_web/components/Combobox/Combobox.stories.tsx +9 -1
  12. package/emotion/es/components/Combobox/ComboboxNew/Combobox.js +3 -4
  13. package/emotion/es/components/Combobox/ComboboxNew/ui/Inner/Inner.js +4 -11
  14. package/emotion/es/components/Combobox/ComboboxNew/ui/Inner/ui/Item/Item.js +3 -5
  15. package/emotion/es/examples/plasma_b2c/components/Combobox/Combobox.stories.tsx +9 -1
  16. package/emotion/es/examples/plasma_web/components/Combobox/Combobox.stories.tsx +9 -1
  17. package/es/components/Combobox/ComboboxNew/Combobox.js +3 -4
  18. package/es/components/Combobox/ComboboxNew/Combobox.js.map +1 -1
  19. package/es/components/Combobox/ComboboxNew/ui/Inner/Inner.js +4 -11
  20. package/es/components/Combobox/ComboboxNew/ui/Inner/Inner.js.map +1 -1
  21. package/es/components/Combobox/ComboboxNew/ui/Inner/ui/Item/Item.js +3 -5
  22. package/es/components/Combobox/ComboboxNew/ui/Inner/ui/Item/Item.js.map +1 -1
  23. package/package.json +2 -2
  24. package/styled-components/cjs/components/Combobox/ComboboxNew/Combobox.js +3 -4
  25. package/styled-components/cjs/components/Combobox/ComboboxNew/ui/Inner/Inner.js +4 -11
  26. package/styled-components/cjs/components/Combobox/ComboboxNew/ui/Inner/ui/Item/Item.js +3 -5
  27. package/styled-components/cjs/examples/plasma_b2c/components/Combobox/Combobox.stories.tsx +9 -1
  28. package/styled-components/cjs/examples/plasma_web/components/Combobox/Combobox.stories.tsx +9 -1
  29. package/styled-components/es/components/Combobox/ComboboxNew/Combobox.js +3 -4
  30. package/styled-components/es/components/Combobox/ComboboxNew/ui/Inner/Inner.js +4 -11
  31. package/styled-components/es/components/Combobox/ComboboxNew/ui/Inner/ui/Item/Item.js +3 -5
  32. package/styled-components/es/examples/plasma_b2c/components/Combobox/Combobox.stories.tsx +9 -1
  33. package/styled-components/es/examples/plasma_web/components/Combobox/Combobox.stories.tsx +9 -1
  34. package/types/components/Combobox/ComboboxNew/Combobox.d.ts.map +1 -1
  35. package/types/components/Combobox/ComboboxNew/Combobox.types.d.ts +41 -13
  36. package/types/components/Combobox/ComboboxNew/Combobox.types.d.ts.map +1 -1
  37. package/types/components/Combobox/ComboboxNew/ui/Inner/Inner.d.ts.map +1 -1
  38. package/types/components/Combobox/ComboboxNew/ui/Inner/Inner.type.d.ts +0 -1
  39. package/types/components/Combobox/ComboboxNew/ui/Inner/Inner.type.d.ts.map +1 -1
  40. package/types/components/Combobox/ComboboxNew/ui/Inner/ui/Item/Item.d.ts.map +1 -1
  41. package/types/components/Combobox/ComboboxNew/ui/Inner/ui/Item/Item.types.d.ts +0 -1
  42. package/types/components/Combobox/ComboboxNew/ui/Inner/ui/Item/Item.types.d.ts.map +1 -1
  43. package/types/examples/plasma_b2c/components/Combobox/Combobox.d.ts +44 -0
  44. package/types/examples/plasma_b2c/components/Combobox/Combobox.d.ts.map +1 -1
  45. package/types/examples/plasma_web/components/Combobox/Combobox.d.ts +44 -0
  46. package/types/examples/plasma_web/components/Combobox/Combobox.d.ts.map +1 -1
@@ -60,6 +60,14 @@ const meta: Meta<StorySelectProps> = {
60
60
  type: 'text',
61
61
  },
62
62
  },
63
+ disabled: {
64
+ control: { type: 'boolean' },
65
+ if: { arg: 'alwaysOpened', truthy: false },
66
+ },
67
+ readOnly: {
68
+ control: { type: 'boolean' },
69
+ if: { arg: 'alwaysOpened', truthy: false },
70
+ },
63
71
  },
64
72
  args: {
65
73
  label: 'Label',
@@ -71,9 +79,9 @@ const meta: Meta<StorySelectProps> = {
71
79
  enableContentLeft: false,
72
80
  isTargetAmount: false,
73
81
  variant: 'normal',
82
+ alwaysOpened: false,
74
83
  disabled: false,
75
84
  readOnly: false,
76
- alwaysOpened: false,
77
85
  },
78
86
  parameters: {
79
87
  controls: {
@@ -145,7 +145,7 @@ export var comboboxRoot = function comboboxRoot(Root) {
145
145
  setInternalValue(newValue);
146
146
  };
147
147
  var handleClickArrow = function handleClickArrow() {
148
- if (disabled) {
148
+ if (disabled || readOnly) {
149
149
  return;
150
150
  }
151
151
  if (isCurrentListOpen) {
@@ -182,7 +182,7 @@ export var comboboxRoot = function comboboxRoot(Root) {
182
182
 
183
183
  // Обработчик открытия/закрытия выпадающего списка
184
184
  var handleListToggle = function handleListToggle(opened) {
185
- if (disabled) {
185
+ if (disabled || readOnly) {
186
186
  return;
187
187
  }
188
188
  if (opened) {
@@ -424,8 +424,7 @@ export var comboboxRoot = function comboboxRoot(Root) {
424
424
  path: path,
425
425
  dispatchPath: dispatchPath,
426
426
  index: index,
427
- listWidth: listWidth,
428
- disabled: disabled
427
+ listWidth: listWidth
429
428
  });
430
429
  })))))));
431
430
  });
@@ -10,12 +10,8 @@ export var Inner = function Inner(_ref) {
10
10
  path = _ref.path,
11
11
  dispatchPath = _ref.dispatchPath,
12
12
  index = _ref.index,
13
- listWidth = _ref.listWidth,
14
- commonDisabled = _ref.disabled;
13
+ listWidth = _ref.listWidth;
15
14
  var handleToggle = function handleToggle(opened) {
16
- if (commonDisabled) {
17
- return;
18
- }
19
15
  if (opened) {
20
16
  dispatchPath({
21
17
  type: 'changed_on_level',
@@ -48,8 +44,7 @@ export var Inner = function Inner(_ref) {
48
44
  ariaControls: listId,
49
45
  ariaExpanded: isCurrentListOpen,
50
46
  ariaLevel: nextLevel,
51
- ariaLabel: item.label,
52
- disabled: commonDisabled
47
+ ariaLabel: item.label
53
48
  })
54
49
  }, /*#__PURE__*/React.createElement(Ul, {
55
50
  role: "group",
@@ -64,8 +59,7 @@ export var Inner = function Inner(_ref) {
64
59
  path: path,
65
60
  dispatchPath: dispatchPath,
66
61
  index: innerIndex,
67
- listWidth: listWidth,
68
- disabled: commonDisabled
62
+ listWidth: listWidth
69
63
  });
70
64
  })));
71
65
  }
@@ -74,7 +68,6 @@ export var Inner = function Inner(_ref) {
74
68
  path: path,
75
69
  index: index,
76
70
  currentLevel: currentLevel,
77
- ariaLevel: nextLevel,
78
- disabled: commonDisabled
71
+ ariaLevel: nextLevel
79
72
  });
80
73
  };
@@ -12,7 +12,6 @@ export var Item = function Item(_ref) {
12
12
  path = _ref.path,
13
13
  currentLevel = _ref.currentLevel,
14
14
  index = _ref.index,
15
- outerDisabled = _ref.disabled,
16
15
  ariaControls = _ref.ariaControls,
17
16
  ariaExpanded = _ref.ariaExpanded,
18
17
  ariaLevel = _ref.ariaLevel,
@@ -22,7 +21,6 @@ export var Item = function Item(_ref) {
22
21
  disabled = item.disabled,
23
22
  contentLeft = item.contentLeft,
24
23
  contentRight = item.contentRight;
25
- var commonDisabled = outerDisabled || disabled;
26
24
  var ref = useRef(null);
27
25
  var _useContext = useContext(Context),
28
26
  focusedPath = _useContext.focusedPath,
@@ -35,7 +33,7 @@ export var Item = function Item(_ref) {
35
33
  renderItem = _useContext.renderItem,
36
34
  valueToItemMap = _useContext.valueToItemMap,
37
35
  treeId = _useContext.treeId;
38
- var disabledClassName = commonDisabled ? classes.dropdownItemIsDisabled : undefined;
36
+ var disabledClassName = disabled ? classes.dropdownItemIsDisabled : undefined;
39
37
  var focusedClass = currentLevel === focusedPath.length - 1 && index === (focusedPath === null || focusedPath === void 0 ? void 0 : focusedPath[currentLevel]) ? classes.dropdownItemIsFocused : undefined;
40
38
  var activeClass = value === (path === null || path === void 0 ? void 0 : path[currentLevel + 1]) ? classes.dropdownItemIsActive : undefined;
41
39
  useDidMountEffect(function () {
@@ -48,12 +46,12 @@ export var Item = function Item(_ref) {
48
46
  }
49
47
  }, [focusedClass]);
50
48
  var handleChange = function handleChange(e) {
51
- if (commonDisabled) return;
49
+ if (disabled) return;
52
50
  e.stopPropagation();
53
51
  handleCheckboxChange(item);
54
52
  };
55
53
  var handleClick = function handleClick(e) {
56
- if (commonDisabled) {
54
+ if (disabled) {
57
55
  e.stopPropagation();
58
56
  return;
59
57
  }
@@ -60,6 +60,14 @@ const meta: Meta<StorySelectProps> = {
60
60
  type: 'text',
61
61
  },
62
62
  },
63
+ disabled: {
64
+ control: { type: 'boolean' },
65
+ if: { arg: 'alwaysOpened', truthy: false },
66
+ },
67
+ readOnly: {
68
+ control: { type: 'boolean' },
69
+ if: { arg: 'alwaysOpened', truthy: false },
70
+ },
63
71
  },
64
72
  args: {
65
73
  label: 'Label',
@@ -71,9 +79,9 @@ const meta: Meta<StorySelectProps> = {
71
79
  enableContentLeft: false,
72
80
  isTargetAmount: false,
73
81
  variant: 'normal',
82
+ alwaysOpened: false,
74
83
  disabled: false,
75
84
  readOnly: false,
76
- alwaysOpened: false,
77
85
  },
78
86
  parameters: {
79
87
  controls: {
@@ -60,6 +60,14 @@ const meta: Meta<StorySelectProps> = {
60
60
  type: 'text',
61
61
  },
62
62
  },
63
+ disabled: {
64
+ control: { type: 'boolean' },
65
+ if: { arg: 'alwaysOpened', truthy: false },
66
+ },
67
+ readOnly: {
68
+ control: { type: 'boolean' },
69
+ if: { arg: 'alwaysOpened', truthy: false },
70
+ },
63
71
  },
64
72
  args: {
65
73
  label: 'Label',
@@ -71,9 +79,9 @@ const meta: Meta<StorySelectProps> = {
71
79
  enableContentLeft: false,
72
80
  isTargetAmount: false,
73
81
  variant: 'normal',
82
+ alwaysOpened: false,
74
83
  disabled: false,
75
84
  readOnly: false,
76
- alwaysOpened: false,
77
85
  },
78
86
  parameters: {
79
87
  controls: {
@@ -1 +1 @@
1
- {"version":3,"file":"Combobox.d.ts","sourceRoot":"","sources":["../../../../src/components/Combobox/ComboboxNew/Combobox.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4F,MAAM,OAAO,CAAC;AAIjH,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAoB7C,OAAO,KAAK,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAKnE,eAAO,MAAM,OAAO,4BAAgD,CAAC;AAErE;;GAEG;AACH,eAAO,MAAM,YAAY,SAAU,UAAU,gBAAgB,EAAE,KAAK,aAAa,EAAE,OAAO,CAAC,CAAC,2FAwYtF,CAAC;AAEP,eAAO,MAAM,cAAc;;;mBA1YQ,UAAU,gBAAgB,EAAE,KAAK,aAAa,EAAE,OAAO,CAAC,CAAC;;;;;;;;;;;;;;;;;;CA+Z3F,CAAC"}
1
+ {"version":3,"file":"Combobox.d.ts","sourceRoot":"","sources":["../../../../src/components/Combobox/ComboboxNew/Combobox.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4F,MAAM,OAAO,CAAC;AAIjH,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAoB7C,OAAO,KAAK,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAKnE,eAAO,MAAM,OAAO,4BAAgD,CAAC;AAErE;;GAEG;AACH,eAAO,MAAM,YAAY,SAAU,UAAU,gBAAgB,EAAE,KAAK,aAAa,EAAE,OAAO,CAAC,CAAC,2FAuYtF,CAAC;AAEP,eAAO,MAAM,cAAc;;;mBAzYQ,UAAU,gBAAgB,EAAE,KAAK,aAAa,EAAE,OAAO,CAAC,CAAC;;;;;;;;;;;;;;;;;;CA8Z3F,CAAC"}
@@ -19,6 +19,46 @@ declare type IsMultiselect = {
19
19
  onChange?: (value: Array<string>) => void;
20
20
  isTargetAmount?: boolean;
21
21
  };
22
+ declare type ViewStateProps = {
23
+ /**
24
+ * Компонент доступен только для чтения.
25
+ */
26
+ readOnly?: boolean;
27
+ /**
28
+ * Компонент неактивен.
29
+ */
30
+ disabled?: true;
31
+ /**
32
+ * Дропдаун открыт всегда.
33
+ */
34
+ alwaysOpened?: false;
35
+ } | {
36
+ /**
37
+ * Компонент доступен только для чтения.
38
+ */
39
+ readOnly?: true;
40
+ /**
41
+ * Компонент неактивен.
42
+ */
43
+ disabled?: boolean;
44
+ /**
45
+ * Дропдаун открыт всегда.
46
+ */
47
+ alwaysOpened?: false;
48
+ } | {
49
+ /**
50
+ * Компонент доступен только для чтения.
51
+ */
52
+ readOnly?: false;
53
+ /**
54
+ * Компонент неактивен.
55
+ */
56
+ disabled?: false;
57
+ /**
58
+ * Дропдаун открыт всегда.
59
+ */
60
+ alwaysOpened?: true;
61
+ };
22
62
  export interface BasicProps {
23
63
  /**
24
64
  * Список элементов.
@@ -102,20 +142,8 @@ export interface BasicProps {
102
142
  * @default outer
103
143
  */
104
144
  labelPlacement?: 'outer' | 'inner';
105
- /**
106
- * Компонент доступен только для чтения.
107
- */
108
- readOnly?: boolean;
109
- /**
110
- * Компонент неактивен.
111
- */
112
- disabled?: boolean;
113
- /**
114
- * Дропдаун открыт всегда.
115
- */
116
- alwaysOpened?: boolean;
117
145
  }
118
- export declare type ComboboxProps = BasicProps & IsMultiselect & Omit<ButtonHTMLAttributes<HTMLInputElement>, 'value' | 'onChange'>;
146
+ export declare type ComboboxProps = BasicProps & ViewStateProps & IsMultiselect & Omit<ButtonHTMLAttributes<HTMLInputElement>, 'value' | 'onChange'>;
119
147
  export declare type FloatingPopoverProps = {
120
148
  target: React.ReactNode | ((ref: React.MutableRefObject<HTMLElement | null>) => React.ReactNode);
121
149
  children: React.ReactNode;
@@ -1 +1 @@
1
- {"version":3,"file":"Combobox.types.d.ts","sourceRoot":"","sources":["../../../../src/components/Combobox/ComboboxNew/Combobox.types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Combobox.types.d.ts","sourceRoot":"","sources":["../../../../src/components/Combobox/ComboboxNew/Combobox.types.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"Inner.d.ts","sourceRoot":"","sources":["../../../../../../src/components/Combobox/ComboboxNew/ui/Inner/Inner.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAShC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAE1C,eAAO,MAAM,KAAK,EAAE,EAAE,CAAC,UAAU,CA4EhC,CAAC"}
1
+ {"version":3,"file":"Inner.d.ts","sourceRoot":"","sources":["../../../../../../src/components/Combobox/ComboboxNew/ui/Inner/Inner.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAShC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAE1C,eAAO,MAAM,KAAK,EAAE,EAAE,CAAC,UAAU,CAqDhC,CAAC"}
@@ -9,6 +9,5 @@ export declare type InnerProps = {
9
9
  dispatchPath: Dispatch<PathAction>;
10
10
  index: number;
11
11
  listWidth: ComboboxProps['listWidth'];
12
- disabled?: boolean;
13
12
  };
14
13
  //# sourceMappingURL=Inner.type.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Inner.type.d.ts","sourceRoot":"","sources":["../../../../../../src/components/Combobox/ComboboxNew/ui/Inner/Inner.type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAEtC,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAC5D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAE1D,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,sBAAsB,CAAC;AAElE,oBAAY,UAAU,GAAG;IACrB,IAAI,EAAE,qBAAqB,CAAC;IAC5B,YAAY,EAAE,MAAM,CAAC;IACrB,IAAI,EAAE,SAAS,CAAC;IAChB,YAAY,EAAE,QAAQ,CAAC,UAAU,CAAC,CAAC;IACnC,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,aAAa,CAAC,WAAW,CAAC,CAAC;IACtC,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC"}
1
+ {"version":3,"file":"Inner.type.d.ts","sourceRoot":"","sources":["../../../../../../src/components/Combobox/ComboboxNew/ui/Inner/Inner.type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAEtC,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAC5D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAE1D,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,sBAAsB,CAAC;AAElE,oBAAY,UAAU,GAAG;IACrB,IAAI,EAAE,qBAAqB,CAAC;IAC5B,YAAY,EAAE,MAAM,CAAC;IACrB,IAAI,EAAE,SAAS,CAAC;IAChB,YAAY,EAAE,QAAQ,CAAC,UAAU,CAAC,CAAC;IACnC,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,aAAa,CAAC,WAAW,CAAC,CAAC;CACzC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Item.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/Combobox/ComboboxNew/ui/Inner/ui/Item/Item.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAU,EAAE,EAAc,MAAM,OAAO,CAAC;AAStD,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAazC,eAAO,MAAM,IAAI,EAAE,EAAE,CAAC,SAAS,CAwH9B,CAAC"}
1
+ {"version":3,"file":"Item.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/Combobox/ComboboxNew/ui/Inner/ui/Item/Item.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAU,EAAE,EAAc,MAAM,OAAO,CAAC;AAStD,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAazC,eAAO,MAAM,IAAI,EAAE,EAAE,CAAC,SAAS,CAsH9B,CAAC"}
@@ -35,7 +35,6 @@ export declare type ItemProps = {
35
35
  currentLevel: number;
36
36
  index: number;
37
37
  path: PathState;
38
- disabled?: boolean;
39
38
  ariaControls?: string;
40
39
  ariaExpanded?: boolean;
41
40
  ariaLevel?: React.AriaAttributes['aria-level'];
@@ -1 +1 @@
1
- {"version":3,"file":"Item.types.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/Combobox/ComboboxNew/ui/Inner/ui/Item/Item.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACvC,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,mCAAmC,CAAC;AAEnE,oBAAY,UAAU,GAAG;IACrB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,CAAC;IAC1B;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,WAAW,CAAC,EAAE,SAAS,CAAC;IACxB;;OAEG;IACH,YAAY,CAAC,EAAE,SAAS,CAAC;CAC5B,CAAC;AAEF,oBAAY,qBAAqB,GAAG,UAAU,GAAG;IAAE,MAAM,CAAC,EAAE,UAAU,GAAG,IAAI,CAAA;CAAE,CAAC;AAEhF,oBAAY,SAAS,GAAG;IACpB,IAAI,EAAE,qBAAqB,CAAC;IAC5B,YAAY,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,SAAS,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,SAAS,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,YAAY,CAAC,CAAC;IAC/C,SAAS,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,YAAY,CAAC,CAAC;CAClD,CAAC"}
1
+ {"version":3,"file":"Item.types.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/Combobox/ComboboxNew/ui/Inner/ui/Item/Item.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACvC,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,mCAAmC,CAAC;AAEnE,oBAAY,UAAU,GAAG;IACrB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,CAAC;IAC1B;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,WAAW,CAAC,EAAE,SAAS,CAAC;IACxB;;OAEG;IACH,YAAY,CAAC,EAAE,SAAS,CAAC;CAC5B,CAAC;AAEF,oBAAY,qBAAqB,GAAG,UAAU,GAAG;IAAE,MAAM,CAAC,EAAE,UAAU,GAAG,IAAI,CAAA;CAAE,CAAC;AAEhF,oBAAY,SAAS,GAAG;IACpB,IAAI,EAAE,qBAAqB,CAAC;IAC5B,YAAY,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,SAAS,CAAC;IAChB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,SAAS,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,YAAY,CAAC,CAAC;IAC/C,SAAS,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,YAAY,CAAC,CAAC;CAClD,CAAC"}
@@ -23,11 +23,55 @@ declare const Combobox: import("react").FunctionComponent<import("../../../../en
23
23
  true: import("@linaria/core").LinariaClassName;
24
24
  };
25
25
  }> & ((import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
26
+ readOnly?: boolean | undefined;
27
+ disabled?: true | undefined;
28
+ alwaysOpened?: false | undefined;
29
+ } & {
26
30
  multiple?: false | undefined;
27
31
  value?: string | undefined;
28
32
  onChange?: ((value: string) => void) | undefined;
29
33
  isTargetAmount?: false | undefined;
30
34
  } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | (import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
35
+ readOnly?: boolean | undefined;
36
+ disabled?: true | undefined;
37
+ alwaysOpened?: false | undefined;
38
+ } & {
39
+ multiple: true;
40
+ value?: string[] | undefined;
41
+ onChange?: ((value: string[]) => void) | undefined;
42
+ isTargetAmount?: boolean | undefined;
43
+ } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | (import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
44
+ readOnly?: true | undefined;
45
+ disabled?: boolean | undefined;
46
+ alwaysOpened?: false | undefined;
47
+ } & {
48
+ multiple?: false | undefined;
49
+ value?: string | undefined;
50
+ onChange?: ((value: string) => void) | undefined;
51
+ isTargetAmount?: false | undefined;
52
+ } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | (import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
53
+ readOnly?: true | undefined;
54
+ disabled?: boolean | undefined;
55
+ alwaysOpened?: false | undefined;
56
+ } & {
57
+ multiple: true;
58
+ value?: string[] | undefined;
59
+ onChange?: ((value: string[]) => void) | undefined;
60
+ isTargetAmount?: boolean | undefined;
61
+ } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | (import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
62
+ readOnly?: false | undefined;
63
+ disabled?: false | undefined;
64
+ alwaysOpened?: true | undefined;
65
+ } & {
66
+ multiple?: false | undefined;
67
+ value?: string | undefined;
68
+ onChange?: ((value: string) => void) | undefined;
69
+ isTargetAmount?: false | undefined;
70
+ } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | (import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
71
+ readOnly?: false | undefined;
72
+ disabled?: false | undefined;
73
+ alwaysOpened?: true | undefined;
74
+ } & {
31
75
  multiple: true;
32
76
  value?: string[] | undefined;
33
77
  onChange?: ((value: string[]) => void) | 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"}
@@ -23,11 +23,55 @@ declare const Combobox: import("react").FunctionComponent<import("../../../../en
23
23
  true: import("@linaria/core").LinariaClassName;
24
24
  };
25
25
  }> & ((import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
26
+ readOnly?: boolean | undefined;
27
+ disabled?: true | undefined;
28
+ alwaysOpened?: false | undefined;
29
+ } & {
26
30
  multiple?: false | undefined;
27
31
  value?: string | undefined;
28
32
  onChange?: ((value: string) => void) | undefined;
29
33
  isTargetAmount?: false | undefined;
30
34
  } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | (import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
35
+ readOnly?: boolean | undefined;
36
+ disabled?: true | undefined;
37
+ alwaysOpened?: false | undefined;
38
+ } & {
39
+ multiple: true;
40
+ value?: string[] | undefined;
41
+ onChange?: ((value: string[]) => void) | undefined;
42
+ isTargetAmount?: boolean | undefined;
43
+ } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | (import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
44
+ readOnly?: true | undefined;
45
+ disabled?: boolean | undefined;
46
+ alwaysOpened?: false | undefined;
47
+ } & {
48
+ multiple?: false | undefined;
49
+ value?: string | undefined;
50
+ onChange?: ((value: string) => void) | undefined;
51
+ isTargetAmount?: false | undefined;
52
+ } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | (import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
53
+ readOnly?: true | undefined;
54
+ disabled?: boolean | undefined;
55
+ alwaysOpened?: false | undefined;
56
+ } & {
57
+ multiple: true;
58
+ value?: string[] | undefined;
59
+ onChange?: ((value: string[]) => void) | undefined;
60
+ isTargetAmount?: boolean | undefined;
61
+ } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | (import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
62
+ readOnly?: false | undefined;
63
+ disabled?: false | undefined;
64
+ alwaysOpened?: true | undefined;
65
+ } & {
66
+ multiple?: false | undefined;
67
+ value?: string | undefined;
68
+ onChange?: ((value: string) => void) | undefined;
69
+ isTargetAmount?: false | undefined;
70
+ } & Omit<import("react").ButtonHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & import("react").RefAttributes<HTMLInputElement>) | (import("../../../../components/Combobox/ComboboxNew/Combobox.types").BasicProps & {
71
+ readOnly?: false | undefined;
72
+ disabled?: false | undefined;
73
+ alwaysOpened?: true | undefined;
74
+ } & {
31
75
  multiple: true;
32
76
  value?: string[] | undefined;
33
77
  onChange?: ((value: string[]) => void) | 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"}