@foxford/ui 2.48.1-beta-5f7af17-20241016 → 2.49.0-beta-2ccaa67-20241021
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/components/Dropdown/Dropdown.js +1 -1
- package/components/Dropdown/Dropdown.js.map +1 -1
- package/components/Dropdown/Dropdown.mjs +1 -1
- package/components/Dropdown/Dropdown.mjs.map +1 -1
- package/components/Dropdown/DropdownMenuNoOptions.js +1 -1
- package/components/Dropdown/DropdownMenuNoOptions.js.map +1 -1
- package/components/Dropdown/DropdownMenuNoOptions.mjs +1 -1
- package/components/Dropdown/DropdownMenuNoOptions.mjs.map +1 -1
- package/components/Dropdown/constants.js +1 -1
- package/components/Dropdown/constants.js.map +1 -1
- package/components/Dropdown/constants.mjs +1 -1
- package/components/Dropdown/constants.mjs.map +1 -1
- package/components/Dropdown/style.js +1 -1
- package/components/Dropdown/style.js.map +1 -1
- package/components/Dropdown/style.mjs +1 -1
- package/components/Dropdown/style.mjs.map +1 -1
- package/components/Dropdown/utils.js +1 -1
- package/components/Dropdown/utils.js.map +1 -1
- package/components/Dropdown/utils.mjs +1 -1
- package/components/Dropdown/utils.mjs.map +1 -1
- package/components/FormInput/style.js +1 -1
- package/components/FormInput/style.js.map +1 -1
- package/components/FormInput/style.mjs +1 -1
- package/components/FormInput/style.mjs.map +1 -1
- package/components/FormInputLabel/style.js +1 -1
- package/components/FormInputLabel/style.js.map +1 -1
- package/components/FormInputLabel/style.mjs +1 -1
- package/components/FormInputLabel/style.mjs.map +1 -1
- package/components/MenuList/MenuList.js +1 -1
- package/components/MenuList/MenuList.js.map +1 -1
- package/components/MenuList/MenuList.mjs +1 -1
- package/components/MenuList/MenuList.mjs.map +1 -1
- package/dts/index.d.ts +9 -2
- package/external/.pnpm/@foxford_icon-pack@0.9.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@foxford/icon-pack/icons/Close/index.js +1 -1
- package/external/.pnpm/@foxford_icon-pack@0.9.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@foxford/icon-pack/icons/CloseCirlceFill/index.js +1 -1
- package/package.json +1 -1
package/dts/index.d.ts
CHANGED
|
@@ -8044,6 +8044,7 @@ declare const FormLabel: React.ForwardRefExoticComponent<FormLabelProps>;
|
|
|
8044
8044
|
|
|
8045
8045
|
declare const FuseSearchKeys: {
|
|
8046
8046
|
readonly text: "text";
|
|
8047
|
+
readonly label: "label";
|
|
8047
8048
|
readonly tags: "tags";
|
|
8048
8049
|
};
|
|
8049
8050
|
|
|
@@ -8054,9 +8055,11 @@ declare type DropdownOption = {
|
|
|
8054
8055
|
value: string;
|
|
8055
8056
|
/** Цветовая схема для валидации */
|
|
8056
8057
|
status?: DropdownStatus;
|
|
8057
|
-
/**
|
|
8058
|
+
/** Текст для отображения в инпуте и в выпадающем меню (учитывается при текстовом поиске) */
|
|
8058
8059
|
[FuseSearchKeys.text]: string;
|
|
8059
|
-
/**
|
|
8060
|
+
/** Текст для отображения в инпуте, при отсутствии будет использован `text` (учитывается при текстовом поиске) */
|
|
8061
|
+
[FuseSearchKeys.label]?: string;
|
|
8062
|
+
/** Ассоциативные теги (учитывается при текстовом поиске) */
|
|
8060
8063
|
[FuseSearchKeys.tags]?: string[];
|
|
8061
8064
|
};
|
|
8062
8065
|
interface DropdownMenuProps extends MenuComponentProps {
|
|
@@ -8113,6 +8116,8 @@ interface DropdownProps extends ResponsiveSizeProps<DropdownSize>, ResponsiveMar
|
|
|
8113
8116
|
onSelectOption?: (selectedOption: DropdownOption | null | DropdownOption[]) => void;
|
|
8114
8117
|
/** Доступные для выбора опции */
|
|
8115
8118
|
options: DropdownOption[];
|
|
8119
|
+
/** Группировать выбранные опции в выпадающем меню, если включен мод множественного выбора (по умолчанию false) */
|
|
8120
|
+
groupSelectedOptions?: boolean;
|
|
8116
8121
|
/** Отображать специальный контрол для массового выбора опций, если включен мод множественного выбора (по умолчанию true) */
|
|
8117
8122
|
optionsMultiToggle?: boolean;
|
|
8118
8123
|
/** Текст рядом с специальным контролом для массового выбора опций */
|
|
@@ -8147,6 +8152,8 @@ interface DropdownProps extends ResponsiveSizeProps<DropdownSize>, ResponsiveMar
|
|
|
8147
8152
|
readOnly?: boolean;
|
|
8148
8153
|
/** Сделать выбор опции обязательным */
|
|
8149
8154
|
required?: boolean;
|
|
8155
|
+
/** Возможность текстового ввода для поиска опций (по умолчанию true) */
|
|
8156
|
+
searchable?: boolean;
|
|
8150
8157
|
/** Вариант цветовой схемы */
|
|
8151
8158
|
secondary?: boolean;
|
|
8152
8159
|
/** Цветовая схема для валидации */
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
'use strict';var index=require('../../../../../../../../_virtual/
|
|
1
|
+
'use strict';var index=require('../../../../../../../../_virtual/index3.js');function _interopDefault(e){return e&&e.__esModule?e:{default:e}}var require$$0__default=_interopDefault(require('react/jsx-runtime'));Object.defineProperty(index.__exports,"__esModule",{value:!0}),exports.Close=index.__exports.Close=void 0;const jsx_runtime_1=require$$0__default.default;function Close(e){const{color:t,size:r,...l}=e;return(0,jsx_runtime_1.jsx)("svg",{xmlns:'http://www.w3.org/2000/svg',width:r,height:r,viewBox:'0 0 24 24',fill:t,...l,children:(0,jsx_runtime_1.jsx)("path",{fillRule:'evenodd',d:'M5.47 5.47a.75.75 0 0 1 1.06 0L12 10.94l5.47-5.47a.75.75 0 1 1 1.06 1.06L13.06 12l5.47 5.47a.75.75 0 1 1-1.06 1.06L12 13.06l-5.47 5.47a.75.75 0 0 1-1.06-1.06L10.94 12 5.47 6.53a.75.75 0 0 1 0-1.06Z',clipRule:'evenodd'})})}exports.Close=index.__exports.Close=Close,index.__exports.default=Close;
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
'use strict';var index=require('../../../../../../../../_virtual/
|
|
1
|
+
'use strict';var index=require('../../../../../../../../_virtual/index4.js');function _interopDefault(e){return e&&e.__esModule?e:{default:e}}var require$$0__default=_interopDefault(require('react/jsx-runtime'));Object.defineProperty(index.__exports,"__esModule",{value:!0}),exports.CloseCirlceFill=index.__exports.CloseCirlceFill=void 0;const jsx_runtime_1=require$$0__default.default;function CloseCirlceFill(e){const{color:l,size:i,...r}=e;return(0,jsx_runtime_1.jsx)("svg",{xmlns:'http://www.w3.org/2000/svg',width:i,height:i,viewBox:'0 0 24 24',fill:l,...r,children:(0,jsx_runtime_1.jsx)("path",{fillRule:'evenodd',d:'M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10ZM9.707 8.293a1 1 0 0 0-1.414 1.414L10.586 12l-2.293 2.293a1 1 0 1 0 1.414 1.414L12 13.414l2.293 2.293a1 1 0 0 0 1.414-1.414L13.414 12l2.293-2.293a1 1 0 0 0-1.414-1.414L12 10.586 9.707 8.293Z',clipRule:'evenodd'})})}exports.CloseCirlceFill=index.__exports.CloseCirlceFill=CloseCirlceFill,index.__exports.default=CloseCirlceFill;
|
|
2
2
|
//# sourceMappingURL=index.js.map
|