@ssa-ui-kit/core 2.23.0 → 2.23.2
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.
|
@@ -8,4 +8,4 @@ import { TypeaheadProps } from './types';
|
|
|
8
8
|
* Aria attributes are set according to
|
|
9
9
|
* https://www.w3.org/WAI/ARIA/apg/patterns/combobox/examples/combobox-select-only/
|
|
10
10
|
**/
|
|
11
|
-
export declare const Typeahead: ({ name, label, selectedItems, defaultSelectedItems, isOpen, isDisabled, isMultiple, children, className, startIcon, endIcon, error, success, helperText, validationSchema, placeholder, startIconClassName, endIconClassName, optionsClassName, wrapperClassName, width, onChange, onEmptyChange, onClearAll, onRemoveSelectedClick, renderOption, }: TypeaheadProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
11
|
+
export declare const Typeahead: ({ name, label, selectedItems, defaultSelectedItems, isOpen, isDisabled, isMultiple, children, className, startIcon, endIcon, error, success, helperText, validationSchema, placeholder, startIconClassName, endIconClassName, optionsClassName, wrapperClassName, filterOptions, width, onChange, onEmptyChange, onClearAll, onRemoveSelectedClick, renderOption, }: TypeaheadProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
package/dist/index.js
CHANGED
|
@@ -6378,11 +6378,11 @@ const ProgressCircleOuter = /*#__PURE__*/base_default()("div", true ? {
|
|
|
6378
6378
|
size
|
|
6379
6379
|
}) => size, "px;height:", ({
|
|
6380
6380
|
size
|
|
6381
|
-
}) => size, "px;border
|
|
6381
|
+
}) => size, "px;border:", ({
|
|
6382
6382
|
size
|
|
6383
|
-
}) => size / 10, "px
|
|
6383
|
+
}) => size / 10, "px solid ", ({
|
|
6384
6384
|
theme
|
|
6385
|
-
}) => theme.colors.greyLighter, ";" + ( true ? "" : 0));
|
|
6385
|
+
}) => theme.colors.greyLighter, ";border-radius:50%;background:none;" + ( true ? "" : 0));
|
|
6386
6386
|
;// ./src/components/ProgressCircle/ProgressCircleInner.tsx
|
|
6387
6387
|
|
|
6388
6388
|
const ProgressCircleInner = /*#__PURE__*/base_default()("div", true ? {
|
|
@@ -6391,7 +6391,7 @@ const ProgressCircleInner = /*#__PURE__*/base_default()("div", true ? {
|
|
|
6391
6391
|
size
|
|
6392
6392
|
}) => size - size / 10 * 2, "px;height:", ({
|
|
6393
6393
|
size
|
|
6394
|
-
}) => size - size / 10 * 2, "px;display:flex;align-items:center;justify-content:center;border-radius:50%;background
|
|
6394
|
+
}) => size - size / 10 * 2, "px;display:flex;align-items:center;justify-content:center;border-radius:50%;background:none;" + ( true ? "" : 0));
|
|
6395
6395
|
;// ./src/components/ProgressCircle/ProgressCircle.tsx
|
|
6396
6396
|
|
|
6397
6397
|
|
|
@@ -19359,6 +19359,7 @@ const Typeahead = ({
|
|
|
19359
19359
|
endIconClassName,
|
|
19360
19360
|
optionsClassName,
|
|
19361
19361
|
wrapperClassName,
|
|
19362
|
+
filterOptions,
|
|
19362
19363
|
width = 300,
|
|
19363
19364
|
onChange,
|
|
19364
19365
|
onEmptyChange,
|
|
@@ -19384,6 +19385,7 @@ const Typeahead = ({
|
|
|
19384
19385
|
success,
|
|
19385
19386
|
validationSchema,
|
|
19386
19387
|
placeholder,
|
|
19388
|
+
filterOptions,
|
|
19387
19389
|
onChange,
|
|
19388
19390
|
onEmptyChange,
|
|
19389
19391
|
renderOption,
|