@utrecht/component-library-react 3.0.1-alpha.24 → 3.0.1-alpha.26
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/dist/.jest-test-results.json +1 -1
- package/dist/Combobox.d.ts +7 -3
- package/dist/Listbox.d.ts +10 -4
- package/dist/css-module/Combobox.d.ts +7 -3
- package/dist/css-module/Listbox.d.ts +10 -4
- package/dist/css-module/index.js +29 -16
- package/dist/css-module/index.js.map +1 -1
- package/dist/css-module/index.mjs +29 -16
- package/dist/css-module/index.mjs.map +1 -1
- package/dist/index.cjs.js +29 -16
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +29 -16
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/Combobox.d.ts
CHANGED
|
@@ -2,10 +2,14 @@
|
|
|
2
2
|
* @license EUPL-1.2
|
|
3
3
|
* Copyright (c) 2023 Robbert Broersma
|
|
4
4
|
*/
|
|
5
|
-
import { HTMLAttributes
|
|
5
|
+
import { HTMLAttributes } from 'react';
|
|
6
6
|
export type ComboboxProps = HTMLAttributes<HTMLDivElement>;
|
|
7
|
-
export declare const Combobox:
|
|
7
|
+
export declare const Combobox: import("react").ForwardRefExoticComponent<ComboboxProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
8
10
|
export interface ComboboxPopoverProps extends HTMLAttributes<HTMLDivElement> {
|
|
9
11
|
position?: string | 'block-end' | 'block-start';
|
|
10
12
|
}
|
|
11
|
-
export declare const ComboboxPopover:
|
|
13
|
+
export declare const ComboboxPopover: import("react").ForwardRefExoticComponent<ComboboxPopoverProps & {
|
|
14
|
+
children?: import("react").ReactNode;
|
|
15
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
package/dist/Listbox.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @license EUPL-1.2
|
|
3
3
|
* Copyright (c) 2023 Robbert Broersma
|
|
4
4
|
*/
|
|
5
|
-
import { HTMLAttributes, LiHTMLAttributes,
|
|
5
|
+
import { HTMLAttributes, LiHTMLAttributes, ReactNode } from 'react';
|
|
6
6
|
export interface ListboxProps extends HTMLAttributes<HTMLDivElement> {
|
|
7
7
|
disabled?: boolean;
|
|
8
8
|
invalid?: boolean;
|
|
@@ -10,14 +10,20 @@ export interface ListboxProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
10
10
|
readOnly?: boolean;
|
|
11
11
|
required?: boolean;
|
|
12
12
|
}
|
|
13
|
-
export declare const Listbox:
|
|
13
|
+
export declare const Listbox: import("react").ForwardRefExoticComponent<ListboxProps & {
|
|
14
|
+
children?: ReactNode;
|
|
15
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
14
16
|
export interface ListboxOptionGroupProps extends LiHTMLAttributes<HTMLLIElement> {
|
|
15
17
|
label?: ReactNode;
|
|
16
18
|
}
|
|
17
|
-
export declare const ListboxOptionGroup:
|
|
19
|
+
export declare const ListboxOptionGroup: import("react").ForwardRefExoticComponent<ListboxOptionGroupProps & {
|
|
20
|
+
children?: ReactNode;
|
|
21
|
+
} & import("react").RefAttributes<HTMLLIElement>>;
|
|
18
22
|
export interface ListboxOptionProps extends HTMLAttributes<HTMLLIElement> {
|
|
19
23
|
active?: boolean;
|
|
20
24
|
disabled?: boolean;
|
|
21
25
|
selected?: boolean;
|
|
22
26
|
}
|
|
23
|
-
export declare const ListboxOption:
|
|
27
|
+
export declare const ListboxOption: import("react").ForwardRefExoticComponent<ListboxOptionProps & {
|
|
28
|
+
children?: ReactNode;
|
|
29
|
+
} & import("react").RefAttributes<HTMLLIElement>>;
|
|
@@ -2,10 +2,14 @@
|
|
|
2
2
|
* @license EUPL-1.2
|
|
3
3
|
* Copyright (c) 2023 Robbert Broersma
|
|
4
4
|
*/
|
|
5
|
-
import { HTMLAttributes
|
|
5
|
+
import { HTMLAttributes } from 'react';
|
|
6
6
|
export type ComboboxProps = HTMLAttributes<HTMLDivElement>;
|
|
7
|
-
export declare const Combobox:
|
|
7
|
+
export declare const Combobox: import("react").ForwardRefExoticComponent<ComboboxProps & {
|
|
8
|
+
children?: import("react").ReactNode;
|
|
9
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
8
10
|
export interface ComboboxPopoverProps extends HTMLAttributes<HTMLDivElement> {
|
|
9
11
|
position?: string | 'block-end' | 'block-start';
|
|
10
12
|
}
|
|
11
|
-
export declare const ComboboxPopover:
|
|
13
|
+
export declare const ComboboxPopover: import("react").ForwardRefExoticComponent<ComboboxPopoverProps & {
|
|
14
|
+
children?: import("react").ReactNode;
|
|
15
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @license EUPL-1.2
|
|
3
3
|
* Copyright (c) 2023 Robbert Broersma
|
|
4
4
|
*/
|
|
5
|
-
import { HTMLAttributes, LiHTMLAttributes,
|
|
5
|
+
import { HTMLAttributes, LiHTMLAttributes, ReactNode } from 'react';
|
|
6
6
|
export interface ListboxProps extends HTMLAttributes<HTMLDivElement> {
|
|
7
7
|
disabled?: boolean;
|
|
8
8
|
invalid?: boolean;
|
|
@@ -10,14 +10,20 @@ export interface ListboxProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
10
10
|
readOnly?: boolean;
|
|
11
11
|
required?: boolean;
|
|
12
12
|
}
|
|
13
|
-
export declare const Listbox:
|
|
13
|
+
export declare const Listbox: import("react").ForwardRefExoticComponent<ListboxProps & {
|
|
14
|
+
children?: ReactNode;
|
|
15
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
14
16
|
export interface ListboxOptionGroupProps extends LiHTMLAttributes<HTMLLIElement> {
|
|
15
17
|
label?: ReactNode;
|
|
16
18
|
}
|
|
17
|
-
export declare const ListboxOptionGroup:
|
|
19
|
+
export declare const ListboxOptionGroup: import("react").ForwardRefExoticComponent<ListboxOptionGroupProps & {
|
|
20
|
+
children?: ReactNode;
|
|
21
|
+
} & import("react").RefAttributes<HTMLLIElement>>;
|
|
18
22
|
export interface ListboxOptionProps extends HTMLAttributes<HTMLLIElement> {
|
|
19
23
|
active?: boolean;
|
|
20
24
|
disabled?: boolean;
|
|
21
25
|
selected?: boolean;
|
|
22
26
|
}
|
|
23
|
-
export declare const ListboxOption:
|
|
27
|
+
export declare const ListboxOption: import("react").ForwardRefExoticComponent<ListboxOptionProps & {
|
|
28
|
+
children?: ReactNode;
|
|
29
|
+
} & import("react").RefAttributes<HTMLLIElement>>;
|
package/dist/css-module/index.js
CHANGED
|
@@ -857,23 +857,29 @@ var _excluded$13 = ["className"],
|
|
|
857
857
|
_excluded2$7 = ["className", "position"];
|
|
858
858
|
function ownKeys$14(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
859
859
|
function _objectSpread$14(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$14(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$14(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
860
|
-
var Combobox = function
|
|
860
|
+
var Combobox = /*#__PURE__*/react.forwardRef(function (_ref, ref) {
|
|
861
861
|
var className = _ref.className,
|
|
862
862
|
restProps = _objectWithoutProperties(_ref, _excluded$13);
|
|
863
|
-
return jsxRuntime.jsx("div", _objectSpread$14({
|
|
863
|
+
return jsxRuntime.jsx("div", _objectSpread$14(_objectSpread$14({
|
|
864
864
|
className: clsx('utrecht-combobox', className)
|
|
865
|
-
}, restProps)
|
|
866
|
-
|
|
867
|
-
|
|
865
|
+
}, restProps), {}, {
|
|
866
|
+
ref: ref
|
|
867
|
+
}));
|
|
868
|
+
});
|
|
869
|
+
Combobox.displayName = 'Combobox';
|
|
870
|
+
var ComboboxPopover = /*#__PURE__*/react.forwardRef(function (_ref2, ref) {
|
|
868
871
|
var className = _ref2.className,
|
|
869
872
|
position = _ref2.position,
|
|
870
873
|
restProps = _objectWithoutProperties(_ref2, _excluded2$7);
|
|
871
|
-
return jsxRuntime.jsx("div", _objectSpread$14({
|
|
874
|
+
return jsxRuntime.jsx("div", _objectSpread$14(_objectSpread$14({
|
|
872
875
|
className: clsx('utrecht-combobox__popover', {
|
|
873
876
|
'utrecht-search-bar__popover--block-end': !position || position === 'block-end'
|
|
874
877
|
}, className)
|
|
875
|
-
}, restProps)
|
|
876
|
-
|
|
878
|
+
}, restProps), {}, {
|
|
879
|
+
ref: ref
|
|
880
|
+
}));
|
|
881
|
+
});
|
|
882
|
+
ComboboxPopover.displayName = 'ComboboxPopover';
|
|
877
883
|
|
|
878
884
|
var css_248z$V = ".utrecht-currency-data{font-variant-numeric:lining-nums tabular-nums;white-space:nowrap}";
|
|
879
885
|
styleInject(css_248z$V);
|
|
@@ -1753,7 +1759,7 @@ var _excluded$A = ["children", "className", "disabled", "invalid", "multiple", "
|
|
|
1753
1759
|
_excluded3 = ["active", "className", "disabled", "selected"];
|
|
1754
1760
|
function ownKeys$B(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
1755
1761
|
function _objectSpread$B(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$B(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$B(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
1756
|
-
var Listbox = function
|
|
1762
|
+
var Listbox = /*#__PURE__*/react.forwardRef(function (_ref, ref) {
|
|
1757
1763
|
var children = _ref.children,
|
|
1758
1764
|
className = _ref.className,
|
|
1759
1765
|
disabled = _ref.disabled,
|
|
@@ -1776,13 +1782,15 @@ var Listbox = function Listbox(_ref) {
|
|
|
1776
1782
|
"aria-required": required || undefined,
|
|
1777
1783
|
tabIndex: 0
|
|
1778
1784
|
}, restProps), {}, {
|
|
1785
|
+
ref: ref,
|
|
1779
1786
|
children: jsxRuntime.jsx("ul", {
|
|
1780
1787
|
className: "utrecht-listbox__list",
|
|
1781
1788
|
children: children
|
|
1782
1789
|
})
|
|
1783
1790
|
}));
|
|
1784
|
-
};
|
|
1785
|
-
|
|
1791
|
+
});
|
|
1792
|
+
Listbox.displayName = 'Listbox';
|
|
1793
|
+
var ListboxOptionGroup = /*#__PURE__*/react.forwardRef(function (_ref2, ref) {
|
|
1786
1794
|
var children = _ref2.children,
|
|
1787
1795
|
label = _ref2.label,
|
|
1788
1796
|
restProps = _objectWithoutProperties(_ref2, _excluded2$3);
|
|
@@ -1792,6 +1800,7 @@ var ListboxOptionGroup = function ListboxOptionGroup(_ref2) {
|
|
|
1792
1800
|
role: "group",
|
|
1793
1801
|
"aria-labelledby": id
|
|
1794
1802
|
}, restProps), {}, {
|
|
1803
|
+
ref: ref,
|
|
1795
1804
|
children: [label && jsxRuntime.jsx("div", {
|
|
1796
1805
|
id: id,
|
|
1797
1806
|
className: "utrecht-listbox__group-label",
|
|
@@ -1800,14 +1809,15 @@ var ListboxOptionGroup = function ListboxOptionGroup(_ref2) {
|
|
|
1800
1809
|
children: children
|
|
1801
1810
|
})]
|
|
1802
1811
|
}));
|
|
1803
|
-
};
|
|
1804
|
-
|
|
1812
|
+
});
|
|
1813
|
+
ListboxOptionGroup.displayName = 'ListboxOptionGroup';
|
|
1814
|
+
var ListboxOption = /*#__PURE__*/react.forwardRef(function (_ref3, ref) {
|
|
1805
1815
|
var active = _ref3.active,
|
|
1806
1816
|
className = _ref3.className,
|
|
1807
1817
|
disabled = _ref3.disabled,
|
|
1808
1818
|
selected = _ref3.selected,
|
|
1809
1819
|
restProps = _objectWithoutProperties(_ref3, _excluded3);
|
|
1810
|
-
return jsxRuntime.jsx("li", _objectSpread$B({
|
|
1820
|
+
return jsxRuntime.jsx("li", _objectSpread$B(_objectSpread$B({
|
|
1811
1821
|
className: clsx('utrecht-listbox__option', 'utrecht-listbox__option--html-li', {
|
|
1812
1822
|
'utrecht-listbox__option--active': active,
|
|
1813
1823
|
'utrecht-listbox__option--disabled': disabled,
|
|
@@ -1817,8 +1827,11 @@ var ListboxOption = function ListboxOption(_ref3) {
|
|
|
1817
1827
|
"aria-selected": selected ? 'true' : 'false',
|
|
1818
1828
|
tabIndex: disabled ? undefined : -1,
|
|
1819
1829
|
role: "option"
|
|
1820
|
-
}, restProps)
|
|
1821
|
-
|
|
1830
|
+
}, restProps), {}, {
|
|
1831
|
+
ref: ref
|
|
1832
|
+
}));
|
|
1833
|
+
});
|
|
1834
|
+
ListboxOption.displayName = 'ListboxOption';
|
|
1822
1835
|
|
|
1823
1836
|
var css_248z$r = ".utrecht-list-social{display:flex;margin-block-end:var(--utrecht-list-social-margin-block-end);margin-block-start:var(--utrecht-list-social-margin-block-start);padding-inline-end:var(--utrecht-list-social-padding-inline-end);padding-inline-start:var(--utrecht-list-social-padding-inline-start)}.utrecht-list-social__item{list-style-type:none;margin-inline-end:var(--utrecht-list-social-item-margin-inline-end)}.utrecht-list-social__item:last-child{margin-inline-end:0}";
|
|
1824
1837
|
styleInject(css_248z$r);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../../../node_modules/.pnpm/style-inject@0.3.0/node_modules/style-inject/dist/style-inject.es.js"],"sourcesContent":["function styleInject(css, ref) {\n if ( ref === void 0 ) ref = {};\n var insertAt = ref.insertAt;\n\n if (!css || typeof document === 'undefined') { return; }\n\n var head = document.head || document.getElementsByTagName('head')[0];\n var style = document.createElement('style');\n style.type = 'text/css';\n\n if (insertAt === 'top') {\n if (head.firstChild) {\n head.insertBefore(style, head.firstChild);\n } else {\n head.appendChild(style);\n }\n } else {\n head.appendChild(style);\n }\n\n if (style.styleSheet) {\n style.styleSheet.cssText = css;\n } else {\n style.appendChild(document.createTextNode(css));\n }\n}\n\nexport default styleInject;\n"],"names":[],"mappings":";;;;;;;;;;;AAAA,SAAS,WAAW,CAAC,GAAG,EAAE,GAAG,EAAE;AAC/B,EAAE,KAAK,GAAG,KAAK,KAAK,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC;AACjC,EAAE,IAAI,QAAQ,GAAG,GAAG,CAAC,QAAQ,CAAC;AAC9B;AACA,EAAE,IAAI,CAAC,GAAG,IAAI,OAAO,QAAQ,KAAK,WAAW,EAAE,EAAE,OAAO,EAAE;AAC1D;AACA,EAAE,IAAI,IAAI,GAAG,QAAQ,CAAC,IAAI,IAAI,QAAQ,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;AACvE,EAAE,IAAI,KAAK,GAAG,QAAQ,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;AAC9C,EAAE,KAAK,CAAC,IAAI,GAAG,UAAU,CAAC;AAC1B;AACA,EAAE,IAAI,QAAQ,KAAK,KAAK,EAAE;AAC1B,IAAI,IAAI,IAAI,CAAC,UAAU,EAAE;AACzB,MAAM,IAAI,CAAC,YAAY,CAAC,KAAK,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;AAChD,KAAK,MAAM;AACX,MAAM,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;AAC9B,KAAK;AACL,GAAG,MAAM;AACT,IAAI,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;AAC5B,GAAG;AACH;AACA,EAAE,IAAI,KAAK,CAAC,UAAU,EAAE;AACxB,IAAI,KAAK,CAAC,UAAU,CAAC,OAAO,GAAG,GAAG,CAAC;AACnC,GAAG,MAAM;AACT,IAAI,KAAK,CAAC,WAAW,CAAC,QAAQ,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC;AACpD,GAAG;AACH
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../../node_modules/.pnpm/style-inject@0.3.0/node_modules/style-inject/dist/style-inject.es.js"],"sourcesContent":["function styleInject(css, ref) {\n if ( ref === void 0 ) ref = {};\n var insertAt = ref.insertAt;\n\n if (!css || typeof document === 'undefined') { return; }\n\n var head = document.head || document.getElementsByTagName('head')[0];\n var style = document.createElement('style');\n style.type = 'text/css';\n\n if (insertAt === 'top') {\n if (head.firstChild) {\n head.insertBefore(style, head.firstChild);\n } else {\n head.appendChild(style);\n }\n } else {\n head.appendChild(style);\n }\n\n if (style.styleSheet) {\n style.styleSheet.cssText = css;\n } else {\n style.appendChild(document.createTextNode(css));\n }\n}\n\nexport default styleInject;\n"],"names":[],"mappings":";;;;;;;;;;;AAAA,SAAS,WAAW,CAAC,GAAG,EAAE,GAAG,EAAE;AAC/B,EAAE,KAAK,GAAG,KAAK,KAAK,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC;AACjC,EAAE,IAAI,QAAQ,GAAG,GAAG,CAAC,QAAQ,CAAC;AAC9B;AACA,EAAE,IAAI,CAAC,GAAG,IAAI,OAAO,QAAQ,KAAK,WAAW,EAAE,EAAE,OAAO,EAAE;AAC1D;AACA,EAAE,IAAI,IAAI,GAAG,QAAQ,CAAC,IAAI,IAAI,QAAQ,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;AACvE,EAAE,IAAI,KAAK,GAAG,QAAQ,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;AAC9C,EAAE,KAAK,CAAC,IAAI,GAAG,UAAU,CAAC;AAC1B;AACA,EAAE,IAAI,QAAQ,KAAK,KAAK,EAAE;AAC1B,IAAI,IAAI,IAAI,CAAC,UAAU,EAAE;AACzB,MAAM,IAAI,CAAC,YAAY,CAAC,KAAK,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;AAChD,KAAK,MAAM;AACX,MAAM,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;AAC9B,KAAK;AACL,GAAG,MAAM;AACT,IAAI,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;AAC5B,GAAG;AACH;AACA,EAAE,IAAI,KAAK,CAAC,UAAU,EAAE;AACxB,IAAI,KAAK,CAAC,UAAU,CAAC,OAAO,GAAG,GAAG,CAAC;AACnC,GAAG,MAAM;AACT,IAAI,KAAK,CAAC,WAAW,CAAC,QAAQ,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC;AACpD,GAAG;AACH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","x_google_ignoreList":[0]}
|
|
@@ -855,23 +855,29 @@ var _excluded$13 = ["className"],
|
|
|
855
855
|
_excluded2$7 = ["className", "position"];
|
|
856
856
|
function ownKeys$14(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
857
857
|
function _objectSpread$14(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$14(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$14(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
858
|
-
var Combobox = function
|
|
858
|
+
var Combobox = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
859
859
|
var className = _ref.className,
|
|
860
860
|
restProps = _objectWithoutProperties(_ref, _excluded$13);
|
|
861
|
-
return jsx("div", _objectSpread$14({
|
|
861
|
+
return jsx("div", _objectSpread$14(_objectSpread$14({
|
|
862
862
|
className: clsx('utrecht-combobox', className)
|
|
863
|
-
}, restProps)
|
|
864
|
-
|
|
865
|
-
|
|
863
|
+
}, restProps), {}, {
|
|
864
|
+
ref: ref
|
|
865
|
+
}));
|
|
866
|
+
});
|
|
867
|
+
Combobox.displayName = 'Combobox';
|
|
868
|
+
var ComboboxPopover = /*#__PURE__*/forwardRef(function (_ref2, ref) {
|
|
866
869
|
var className = _ref2.className,
|
|
867
870
|
position = _ref2.position,
|
|
868
871
|
restProps = _objectWithoutProperties(_ref2, _excluded2$7);
|
|
869
|
-
return jsx("div", _objectSpread$14({
|
|
872
|
+
return jsx("div", _objectSpread$14(_objectSpread$14({
|
|
870
873
|
className: clsx('utrecht-combobox__popover', {
|
|
871
874
|
'utrecht-search-bar__popover--block-end': !position || position === 'block-end'
|
|
872
875
|
}, className)
|
|
873
|
-
}, restProps)
|
|
874
|
-
|
|
876
|
+
}, restProps), {}, {
|
|
877
|
+
ref: ref
|
|
878
|
+
}));
|
|
879
|
+
});
|
|
880
|
+
ComboboxPopover.displayName = 'ComboboxPopover';
|
|
875
881
|
|
|
876
882
|
var css_248z$V = ".utrecht-currency-data{font-variant-numeric:lining-nums tabular-nums;white-space:nowrap}";
|
|
877
883
|
styleInject(css_248z$V);
|
|
@@ -1751,7 +1757,7 @@ var _excluded$A = ["children", "className", "disabled", "invalid", "multiple", "
|
|
|
1751
1757
|
_excluded3 = ["active", "className", "disabled", "selected"];
|
|
1752
1758
|
function ownKeys$B(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
1753
1759
|
function _objectSpread$B(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$B(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$B(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
1754
|
-
var Listbox = function
|
|
1760
|
+
var Listbox = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
1755
1761
|
var children = _ref.children,
|
|
1756
1762
|
className = _ref.className,
|
|
1757
1763
|
disabled = _ref.disabled,
|
|
@@ -1774,13 +1780,15 @@ var Listbox = function Listbox(_ref) {
|
|
|
1774
1780
|
"aria-required": required || undefined,
|
|
1775
1781
|
tabIndex: 0
|
|
1776
1782
|
}, restProps), {}, {
|
|
1783
|
+
ref: ref,
|
|
1777
1784
|
children: jsx("ul", {
|
|
1778
1785
|
className: "utrecht-listbox__list",
|
|
1779
1786
|
children: children
|
|
1780
1787
|
})
|
|
1781
1788
|
}));
|
|
1782
|
-
};
|
|
1783
|
-
|
|
1789
|
+
});
|
|
1790
|
+
Listbox.displayName = 'Listbox';
|
|
1791
|
+
var ListboxOptionGroup = /*#__PURE__*/forwardRef(function (_ref2, ref) {
|
|
1784
1792
|
var children = _ref2.children,
|
|
1785
1793
|
label = _ref2.label,
|
|
1786
1794
|
restProps = _objectWithoutProperties(_ref2, _excluded2$3);
|
|
@@ -1790,6 +1798,7 @@ var ListboxOptionGroup = function ListboxOptionGroup(_ref2) {
|
|
|
1790
1798
|
role: "group",
|
|
1791
1799
|
"aria-labelledby": id
|
|
1792
1800
|
}, restProps), {}, {
|
|
1801
|
+
ref: ref,
|
|
1793
1802
|
children: [label && jsx("div", {
|
|
1794
1803
|
id: id,
|
|
1795
1804
|
className: "utrecht-listbox__group-label",
|
|
@@ -1798,14 +1807,15 @@ var ListboxOptionGroup = function ListboxOptionGroup(_ref2) {
|
|
|
1798
1807
|
children: children
|
|
1799
1808
|
})]
|
|
1800
1809
|
}));
|
|
1801
|
-
};
|
|
1802
|
-
|
|
1810
|
+
});
|
|
1811
|
+
ListboxOptionGroup.displayName = 'ListboxOptionGroup';
|
|
1812
|
+
var ListboxOption = /*#__PURE__*/forwardRef(function (_ref3, ref) {
|
|
1803
1813
|
var active = _ref3.active,
|
|
1804
1814
|
className = _ref3.className,
|
|
1805
1815
|
disabled = _ref3.disabled,
|
|
1806
1816
|
selected = _ref3.selected,
|
|
1807
1817
|
restProps = _objectWithoutProperties(_ref3, _excluded3);
|
|
1808
|
-
return jsx("li", _objectSpread$B({
|
|
1818
|
+
return jsx("li", _objectSpread$B(_objectSpread$B({
|
|
1809
1819
|
className: clsx('utrecht-listbox__option', 'utrecht-listbox__option--html-li', {
|
|
1810
1820
|
'utrecht-listbox__option--active': active,
|
|
1811
1821
|
'utrecht-listbox__option--disabled': disabled,
|
|
@@ -1815,8 +1825,11 @@ var ListboxOption = function ListboxOption(_ref3) {
|
|
|
1815
1825
|
"aria-selected": selected ? 'true' : 'false',
|
|
1816
1826
|
tabIndex: disabled ? undefined : -1,
|
|
1817
1827
|
role: "option"
|
|
1818
|
-
}, restProps)
|
|
1819
|
-
|
|
1828
|
+
}, restProps), {}, {
|
|
1829
|
+
ref: ref
|
|
1830
|
+
}));
|
|
1831
|
+
});
|
|
1832
|
+
ListboxOption.displayName = 'ListboxOption';
|
|
1820
1833
|
|
|
1821
1834
|
var css_248z$r = ".utrecht-list-social{display:flex;margin-block-end:var(--utrecht-list-social-margin-block-end);margin-block-start:var(--utrecht-list-social-margin-block-start);padding-inline-end:var(--utrecht-list-social-padding-inline-end);padding-inline-start:var(--utrecht-list-social-padding-inline-start)}.utrecht-list-social__item{list-style-type:none;margin-inline-end:var(--utrecht-list-social-item-margin-inline-end)}.utrecht-list-social__item:last-child{margin-inline-end:0}";
|
|
1822
1835
|
styleInject(css_248z$r);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":["../../../../node_modules/.pnpm/style-inject@0.3.0/node_modules/style-inject/dist/style-inject.es.js"],"sourcesContent":["function styleInject(css, ref) {\n if ( ref === void 0 ) ref = {};\n var insertAt = ref.insertAt;\n\n if (!css || typeof document === 'undefined') { return; }\n\n var head = document.head || document.getElementsByTagName('head')[0];\n var style = document.createElement('style');\n style.type = 'text/css';\n\n if (insertAt === 'top') {\n if (head.firstChild) {\n head.insertBefore(style, head.firstChild);\n } else {\n head.appendChild(style);\n }\n } else {\n head.appendChild(style);\n }\n\n if (style.styleSheet) {\n style.styleSheet.cssText = css;\n } else {\n style.appendChild(document.createTextNode(css));\n }\n}\n\nexport default styleInject;\n"],"names":[],"mappings":";;;;;;;;;AAAA,SAAS,WAAW,CAAC,GAAG,EAAE,GAAG,EAAE;AAC/B,EAAE,KAAK,GAAG,KAAK,KAAK,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC;AACjC,EAAE,IAAI,QAAQ,GAAG,GAAG,CAAC,QAAQ,CAAC;AAC9B;AACA,EAAE,IAAI,CAAC,GAAG,IAAI,OAAO,QAAQ,KAAK,WAAW,EAAE,EAAE,OAAO,EAAE;AAC1D;AACA,EAAE,IAAI,IAAI,GAAG,QAAQ,CAAC,IAAI,IAAI,QAAQ,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;AACvE,EAAE,IAAI,KAAK,GAAG,QAAQ,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;AAC9C,EAAE,KAAK,CAAC,IAAI,GAAG,UAAU,CAAC;AAC1B;AACA,EAAE,IAAI,QAAQ,KAAK,KAAK,EAAE;AAC1B,IAAI,IAAI,IAAI,CAAC,UAAU,EAAE;AACzB,MAAM,IAAI,CAAC,YAAY,CAAC,KAAK,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;AAChD,KAAK,MAAM;AACX,MAAM,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;AAC9B,KAAK;AACL,GAAG,MAAM;AACT,IAAI,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;AAC5B,GAAG;AACH;AACA,EAAE,IAAI,KAAK,CAAC,UAAU,EAAE;AACxB,IAAI,KAAK,CAAC,UAAU,CAAC,OAAO,GAAG,GAAG,CAAC;AACnC,GAAG,MAAM;AACT,IAAI,KAAK,CAAC,WAAW,CAAC,QAAQ,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC;AACpD,GAAG;AACH
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":["../../../../node_modules/.pnpm/style-inject@0.3.0/node_modules/style-inject/dist/style-inject.es.js"],"sourcesContent":["function styleInject(css, ref) {\n if ( ref === void 0 ) ref = {};\n var insertAt = ref.insertAt;\n\n if (!css || typeof document === 'undefined') { return; }\n\n var head = document.head || document.getElementsByTagName('head')[0];\n var style = document.createElement('style');\n style.type = 'text/css';\n\n if (insertAt === 'top') {\n if (head.firstChild) {\n head.insertBefore(style, head.firstChild);\n } else {\n head.appendChild(style);\n }\n } else {\n head.appendChild(style);\n }\n\n if (style.styleSheet) {\n style.styleSheet.cssText = css;\n } else {\n style.appendChild(document.createTextNode(css));\n }\n}\n\nexport default styleInject;\n"],"names":[],"mappings":";;;;;;;;;AAAA,SAAS,WAAW,CAAC,GAAG,EAAE,GAAG,EAAE;AAC/B,EAAE,KAAK,GAAG,KAAK,KAAK,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC;AACjC,EAAE,IAAI,QAAQ,GAAG,GAAG,CAAC,QAAQ,CAAC;AAC9B;AACA,EAAE,IAAI,CAAC,GAAG,IAAI,OAAO,QAAQ,KAAK,WAAW,EAAE,EAAE,OAAO,EAAE;AAC1D;AACA,EAAE,IAAI,IAAI,GAAG,QAAQ,CAAC,IAAI,IAAI,QAAQ,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;AACvE,EAAE,IAAI,KAAK,GAAG,QAAQ,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;AAC9C,EAAE,KAAK,CAAC,IAAI,GAAG,UAAU,CAAC;AAC1B;AACA,EAAE,IAAI,QAAQ,KAAK,KAAK,EAAE;AAC1B,IAAI,IAAI,IAAI,CAAC,UAAU,EAAE;AACzB,MAAM,IAAI,CAAC,YAAY,CAAC,KAAK,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;AAChD,KAAK,MAAM;AACX,MAAM,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;AAC9B,KAAK;AACL,GAAG,MAAM;AACT,IAAI,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;AAC5B,GAAG;AACH;AACA,EAAE,IAAI,KAAK,CAAC,UAAU,EAAE;AACxB,IAAI,KAAK,CAAC,UAAU,CAAC,OAAO,GAAG,GAAG,CAAC;AACnC,GAAG,MAAM;AACT,IAAI,KAAK,CAAC,WAAW,CAAC,QAAQ,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC;AACpD,GAAG;AACH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","x_google_ignoreList":[0]}
|
package/dist/index.cjs.js
CHANGED
|
@@ -776,23 +776,29 @@ var _excluded$13 = ["className"],
|
|
|
776
776
|
_excluded2$7 = ["className", "position"];
|
|
777
777
|
function ownKeys$14(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
778
778
|
function _objectSpread$14(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$14(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$14(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
779
|
-
var Combobox = function
|
|
779
|
+
var Combobox = /*#__PURE__*/react.forwardRef(function (_ref, ref) {
|
|
780
780
|
var className = _ref.className,
|
|
781
781
|
restProps = _objectWithoutProperties(_ref, _excluded$13);
|
|
782
|
-
return jsxRuntime.jsx("div", _objectSpread$14({
|
|
782
|
+
return jsxRuntime.jsx("div", _objectSpread$14(_objectSpread$14({
|
|
783
783
|
className: clsx('utrecht-combobox', className)
|
|
784
|
-
}, restProps)
|
|
785
|
-
|
|
786
|
-
|
|
784
|
+
}, restProps), {}, {
|
|
785
|
+
ref: ref
|
|
786
|
+
}));
|
|
787
|
+
});
|
|
788
|
+
Combobox.displayName = 'Combobox';
|
|
789
|
+
var ComboboxPopover = /*#__PURE__*/react.forwardRef(function (_ref2, ref) {
|
|
787
790
|
var className = _ref2.className,
|
|
788
791
|
position = _ref2.position,
|
|
789
792
|
restProps = _objectWithoutProperties(_ref2, _excluded2$7);
|
|
790
|
-
return jsxRuntime.jsx("div", _objectSpread$14({
|
|
793
|
+
return jsxRuntime.jsx("div", _objectSpread$14(_objectSpread$14({
|
|
791
794
|
className: clsx('utrecht-combobox__popover', {
|
|
792
795
|
'utrecht-search-bar__popover--block-end': !position || position === 'block-end'
|
|
793
796
|
}, className)
|
|
794
|
-
}, restProps)
|
|
795
|
-
|
|
797
|
+
}, restProps), {}, {
|
|
798
|
+
ref: ref
|
|
799
|
+
}));
|
|
800
|
+
});
|
|
801
|
+
ComboboxPopover.displayName = 'ComboboxPopover';
|
|
796
802
|
|
|
797
803
|
var _excluded$12 = ["children", "currency", "amount", "locale", "className"];
|
|
798
804
|
function ownKeys$13(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
@@ -1582,7 +1588,7 @@ var _excluded$A = ["children", "className", "disabled", "invalid", "multiple", "
|
|
|
1582
1588
|
_excluded3 = ["active", "className", "disabled", "selected"];
|
|
1583
1589
|
function ownKeys$B(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
1584
1590
|
function _objectSpread$B(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$B(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$B(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
1585
|
-
var Listbox = function
|
|
1591
|
+
var Listbox = /*#__PURE__*/react.forwardRef(function (_ref, ref) {
|
|
1586
1592
|
var children = _ref.children,
|
|
1587
1593
|
className = _ref.className,
|
|
1588
1594
|
disabled = _ref.disabled,
|
|
@@ -1605,13 +1611,15 @@ var Listbox = function Listbox(_ref) {
|
|
|
1605
1611
|
"aria-required": required || undefined,
|
|
1606
1612
|
tabIndex: 0
|
|
1607
1613
|
}, restProps), {}, {
|
|
1614
|
+
ref: ref,
|
|
1608
1615
|
children: jsxRuntime.jsx("ul", {
|
|
1609
1616
|
className: "utrecht-listbox__list",
|
|
1610
1617
|
children: children
|
|
1611
1618
|
})
|
|
1612
1619
|
}));
|
|
1613
|
-
};
|
|
1614
|
-
|
|
1620
|
+
});
|
|
1621
|
+
Listbox.displayName = 'Listbox';
|
|
1622
|
+
var ListboxOptionGroup = /*#__PURE__*/react.forwardRef(function (_ref2, ref) {
|
|
1615
1623
|
var children = _ref2.children,
|
|
1616
1624
|
label = _ref2.label,
|
|
1617
1625
|
restProps = _objectWithoutProperties(_ref2, _excluded2$3);
|
|
@@ -1621,6 +1629,7 @@ var ListboxOptionGroup = function ListboxOptionGroup(_ref2) {
|
|
|
1621
1629
|
role: "group",
|
|
1622
1630
|
"aria-labelledby": id
|
|
1623
1631
|
}, restProps), {}, {
|
|
1632
|
+
ref: ref,
|
|
1624
1633
|
children: [label && jsxRuntime.jsx("div", {
|
|
1625
1634
|
id: id,
|
|
1626
1635
|
className: "utrecht-listbox__group-label",
|
|
@@ -1629,14 +1638,15 @@ var ListboxOptionGroup = function ListboxOptionGroup(_ref2) {
|
|
|
1629
1638
|
children: children
|
|
1630
1639
|
})]
|
|
1631
1640
|
}));
|
|
1632
|
-
};
|
|
1633
|
-
|
|
1641
|
+
});
|
|
1642
|
+
ListboxOptionGroup.displayName = 'ListboxOptionGroup';
|
|
1643
|
+
var ListboxOption = /*#__PURE__*/react.forwardRef(function (_ref3, ref) {
|
|
1634
1644
|
var active = _ref3.active,
|
|
1635
1645
|
className = _ref3.className,
|
|
1636
1646
|
disabled = _ref3.disabled,
|
|
1637
1647
|
selected = _ref3.selected,
|
|
1638
1648
|
restProps = _objectWithoutProperties(_ref3, _excluded3);
|
|
1639
|
-
return jsxRuntime.jsx("li", _objectSpread$B({
|
|
1649
|
+
return jsxRuntime.jsx("li", _objectSpread$B(_objectSpread$B({
|
|
1640
1650
|
className: clsx('utrecht-listbox__option', 'utrecht-listbox__option--html-li', {
|
|
1641
1651
|
'utrecht-listbox__option--active': active,
|
|
1642
1652
|
'utrecht-listbox__option--disabled': disabled,
|
|
@@ -1646,8 +1656,11 @@ var ListboxOption = function ListboxOption(_ref3) {
|
|
|
1646
1656
|
"aria-selected": selected ? 'true' : 'false',
|
|
1647
1657
|
tabIndex: disabled ? undefined : -1,
|
|
1648
1658
|
role: "option"
|
|
1649
|
-
}, restProps)
|
|
1650
|
-
|
|
1659
|
+
}, restProps), {}, {
|
|
1660
|
+
ref: ref
|
|
1661
|
+
}));
|
|
1662
|
+
});
|
|
1663
|
+
ListboxOption.displayName = 'ListboxOption';
|
|
1651
1664
|
|
|
1652
1665
|
var ListSocial = function ListSocial(_ref) {
|
|
1653
1666
|
var children = _ref.children;
|
package/dist/index.cjs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/index.esm.js
CHANGED
|
@@ -774,23 +774,29 @@ var _excluded$13 = ["className"],
|
|
|
774
774
|
_excluded2$7 = ["className", "position"];
|
|
775
775
|
function ownKeys$14(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
776
776
|
function _objectSpread$14(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$14(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$14(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
777
|
-
var Combobox = function
|
|
777
|
+
var Combobox = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
778
778
|
var className = _ref.className,
|
|
779
779
|
restProps = _objectWithoutProperties(_ref, _excluded$13);
|
|
780
|
-
return jsx("div", _objectSpread$14({
|
|
780
|
+
return jsx("div", _objectSpread$14(_objectSpread$14({
|
|
781
781
|
className: clsx('utrecht-combobox', className)
|
|
782
|
-
}, restProps)
|
|
783
|
-
|
|
784
|
-
|
|
782
|
+
}, restProps), {}, {
|
|
783
|
+
ref: ref
|
|
784
|
+
}));
|
|
785
|
+
});
|
|
786
|
+
Combobox.displayName = 'Combobox';
|
|
787
|
+
var ComboboxPopover = /*#__PURE__*/forwardRef(function (_ref2, ref) {
|
|
785
788
|
var className = _ref2.className,
|
|
786
789
|
position = _ref2.position,
|
|
787
790
|
restProps = _objectWithoutProperties(_ref2, _excluded2$7);
|
|
788
|
-
return jsx("div", _objectSpread$14({
|
|
791
|
+
return jsx("div", _objectSpread$14(_objectSpread$14({
|
|
789
792
|
className: clsx('utrecht-combobox__popover', {
|
|
790
793
|
'utrecht-search-bar__popover--block-end': !position || position === 'block-end'
|
|
791
794
|
}, className)
|
|
792
|
-
}, restProps)
|
|
793
|
-
|
|
795
|
+
}, restProps), {}, {
|
|
796
|
+
ref: ref
|
|
797
|
+
}));
|
|
798
|
+
});
|
|
799
|
+
ComboboxPopover.displayName = 'ComboboxPopover';
|
|
794
800
|
|
|
795
801
|
var _excluded$12 = ["children", "currency", "amount", "locale", "className"];
|
|
796
802
|
function ownKeys$13(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
@@ -1580,7 +1586,7 @@ var _excluded$A = ["children", "className", "disabled", "invalid", "multiple", "
|
|
|
1580
1586
|
_excluded3 = ["active", "className", "disabled", "selected"];
|
|
1581
1587
|
function ownKeys$B(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
1582
1588
|
function _objectSpread$B(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$B(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$B(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
1583
|
-
var Listbox = function
|
|
1589
|
+
var Listbox = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
1584
1590
|
var children = _ref.children,
|
|
1585
1591
|
className = _ref.className,
|
|
1586
1592
|
disabled = _ref.disabled,
|
|
@@ -1603,13 +1609,15 @@ var Listbox = function Listbox(_ref) {
|
|
|
1603
1609
|
"aria-required": required || undefined,
|
|
1604
1610
|
tabIndex: 0
|
|
1605
1611
|
}, restProps), {}, {
|
|
1612
|
+
ref: ref,
|
|
1606
1613
|
children: jsx("ul", {
|
|
1607
1614
|
className: "utrecht-listbox__list",
|
|
1608
1615
|
children: children
|
|
1609
1616
|
})
|
|
1610
1617
|
}));
|
|
1611
|
-
};
|
|
1612
|
-
|
|
1618
|
+
});
|
|
1619
|
+
Listbox.displayName = 'Listbox';
|
|
1620
|
+
var ListboxOptionGroup = /*#__PURE__*/forwardRef(function (_ref2, ref) {
|
|
1613
1621
|
var children = _ref2.children,
|
|
1614
1622
|
label = _ref2.label,
|
|
1615
1623
|
restProps = _objectWithoutProperties(_ref2, _excluded2$3);
|
|
@@ -1619,6 +1627,7 @@ var ListboxOptionGroup = function ListboxOptionGroup(_ref2) {
|
|
|
1619
1627
|
role: "group",
|
|
1620
1628
|
"aria-labelledby": id
|
|
1621
1629
|
}, restProps), {}, {
|
|
1630
|
+
ref: ref,
|
|
1622
1631
|
children: [label && jsx("div", {
|
|
1623
1632
|
id: id,
|
|
1624
1633
|
className: "utrecht-listbox__group-label",
|
|
@@ -1627,14 +1636,15 @@ var ListboxOptionGroup = function ListboxOptionGroup(_ref2) {
|
|
|
1627
1636
|
children: children
|
|
1628
1637
|
})]
|
|
1629
1638
|
}));
|
|
1630
|
-
};
|
|
1631
|
-
|
|
1639
|
+
});
|
|
1640
|
+
ListboxOptionGroup.displayName = 'ListboxOptionGroup';
|
|
1641
|
+
var ListboxOption = /*#__PURE__*/forwardRef(function (_ref3, ref) {
|
|
1632
1642
|
var active = _ref3.active,
|
|
1633
1643
|
className = _ref3.className,
|
|
1634
1644
|
disabled = _ref3.disabled,
|
|
1635
1645
|
selected = _ref3.selected,
|
|
1636
1646
|
restProps = _objectWithoutProperties(_ref3, _excluded3);
|
|
1637
|
-
return jsx("li", _objectSpread$B({
|
|
1647
|
+
return jsx("li", _objectSpread$B(_objectSpread$B({
|
|
1638
1648
|
className: clsx('utrecht-listbox__option', 'utrecht-listbox__option--html-li', {
|
|
1639
1649
|
'utrecht-listbox__option--active': active,
|
|
1640
1650
|
'utrecht-listbox__option--disabled': disabled,
|
|
@@ -1644,8 +1654,11 @@ var ListboxOption = function ListboxOption(_ref3) {
|
|
|
1644
1654
|
"aria-selected": selected ? 'true' : 'false',
|
|
1645
1655
|
tabIndex: disabled ? undefined : -1,
|
|
1646
1656
|
role: "option"
|
|
1647
|
-
}, restProps)
|
|
1648
|
-
|
|
1657
|
+
}, restProps), {}, {
|
|
1658
|
+
ref: ref
|
|
1659
|
+
}));
|
|
1660
|
+
});
|
|
1661
|
+
ListboxOption.displayName = 'ListboxOption';
|
|
1649
1662
|
|
|
1650
1663
|
var ListSocial = function ListSocial(_ref) {
|
|
1651
1664
|
var children = _ref.children;
|
package/dist/index.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED