@reykjavik/hanna-react 0.10.85 → 0.10.87
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/CHANGELOG.md +15 -0
- package/Datepicker.js +11 -1
- package/MainMenu.d.ts +1 -0
- package/MainMenu.js +1 -1
- package/SeenEffect.d.ts +6 -2
- package/SeenEffect.js +8 -3
- package/SiteSearchInput.d.ts +1 -1
- package/VerticalTabsTOC.js +1 -1
- package/assets.js +1 -3
- package/esm/Datepicker.js +11 -1
- package/esm/MainMenu.d.ts +1 -0
- package/esm/MainMenu.js +1 -1
- package/esm/SeenEffect.d.ts +6 -2
- package/esm/SeenEffect.js +8 -3
- package/esm/SiteSearchInput.d.ts +1 -1
- package/esm/VerticalTabsTOC.js +1 -1
- package/esm/assets.js +1 -3
- package/esm/index.d.ts +92 -92
- package/index.d.ts +92 -92
- package/package.json +288 -288
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,21 @@
|
|
|
4
4
|
|
|
5
5
|
- ... <!-- Add new lines here. -->
|
|
6
6
|
|
|
7
|
+
## 0.10.87
|
|
8
|
+
|
|
9
|
+
_2023-05-19_
|
|
10
|
+
|
|
11
|
+
- feat: Add prop `target` to `MainMenuItem` type
|
|
12
|
+
- fix: Prevent nested/multpile `Modal`s from clashing with each other
|
|
13
|
+
|
|
14
|
+
## 0.10.86
|
|
15
|
+
|
|
16
|
+
_2023-04-24_
|
|
17
|
+
|
|
18
|
+
- feat: Add prop `Tag` to `SeenEffect`
|
|
19
|
+
- fix: `VerticalTabsTOCProps.activateOnFocus` now works as intended
|
|
20
|
+
- fix: Upstream regression in typed-input parsing in `react-datepicker`
|
|
21
|
+
|
|
7
22
|
## 0.10.85
|
|
8
23
|
|
|
9
24
|
_2023-04-04_
|
package/Datepicker.js
CHANGED
|
@@ -66,7 +66,17 @@ const Datepicker = (props) => {
|
|
|
66
66
|
(elm === null || elm === void 0 ? void 0 : elm.querySelector('input')) || undefined;
|
|
67
67
|
return elm;
|
|
68
68
|
}) }, addFocusProps()),
|
|
69
|
-
react_1.default.createElement(react_datepicker_1.default, Object.assign({ id: domid, required: inputProps.required, disabled: inputProps.disabled, readOnly: inputProps.readOnly, selected: value, name: name, locale: localeCode, dateFormat:
|
|
69
|
+
react_1.default.createElement(react_datepicker_1.default, Object.assign({ id: domid, required: inputProps.required, disabled: inputProps.disabled, readOnly: inputProps.readOnly, selected: value, name: name, locale: localeCode, dateFormat:
|
|
70
|
+
// NOTE: Force all dateFormat values into Array<string> to temporarily work around
|
|
71
|
+
// a bug in the current version of react-datepicker where invalid **string** values
|
|
72
|
+
// are re-parsed with `new Date()`, causing surprising (weird) false positives
|
|
73
|
+
// AND where Arrayed formats get parsed in order of "increasing priority".
|
|
74
|
+
//
|
|
75
|
+
// TODO: Revert back to the plain `dateFormat={dateFormat}` pass-through once
|
|
76
|
+
// https://github.com/Hacker0x01/react-datepicker/pull/3988 has been accepted and released.
|
|
77
|
+
typeof dateFormat === 'string'
|
|
78
|
+
? [dateFormat]
|
|
79
|
+
: dateFormat.slice(0).reverse(), onChange: (date) => {
|
|
70
80
|
onChange(date || undefined);
|
|
71
81
|
const inputElm = inputRef === null || inputRef === void 0 ? void 0 : inputRef.current;
|
|
72
82
|
if (inputElm) {
|
package/MainMenu.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ export type MainMenuItem = {
|
|
|
34
34
|
*/
|
|
35
35
|
onClick?: (index: number, item: MainMenuItem) => void | boolean;
|
|
36
36
|
controlsId?: string;
|
|
37
|
+
target?: JSX.IntrinsicElements['a']['target'];
|
|
37
38
|
};
|
|
38
39
|
export type MainMenuSeparator = '---';
|
|
39
40
|
export type MainMenuItemList = Array<MainMenuItem | MainMenuSeparator>;
|
package/MainMenu.js
CHANGED
|
@@ -203,7 +203,7 @@ const MainMenu = (props) => {
|
|
|
203
203
|
}
|
|
204
204
|
}, ref: pressed && pressedLinkRef, "aria-pressed": pressed, "aria-controls": controlsId, "aria-label": labelLong, title: labelLong, lang: lang, type: "button" }, label)) : item.href != null ? (
|
|
205
205
|
// always render links server-side
|
|
206
|
-
react_1.default.createElement(_Link_js_1.Link, { className: "MainMenu__link", href: item.href, "aria-label": labelLong, title: labelLong, onClick: () => {
|
|
206
|
+
react_1.default.createElement(_Link_js_1.Link, { className: "MainMenu__link", href: item.href, target: item.target, "aria-label": labelLong, title: labelLong, onClick: () => {
|
|
207
207
|
const keepOpen = onItemClick && onItemClick(i, item) === false;
|
|
208
208
|
!keepOpen && closeHamburgerMenu();
|
|
209
209
|
}, lang: lang }, label)) : undefined // skip rendering non-link menu items server side
|
package/SeenEffect.d.ts
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { EffectProp, SeenProp } from './utils/seenEffect.js';
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
type TagProps<Tag extends keyof JSX.IntrinsicElements = 'div'> = Omit<JSX.IntrinsicElements[Tag], 'ref'>;
|
|
3
|
+
type SeenEffectPropsBase<Tag extends keyof JSX.IntrinsicElements = 'div'> = {
|
|
4
|
+
Tag?: Tag;
|
|
5
|
+
} & EffectProp;
|
|
6
|
+
export type SeenEffectProps<Tag extends keyof JSX.IntrinsicElements = 'div'> = SeenEffectPropsBase<Tag> & SeenProp & TagProps<Tag>;
|
|
7
|
+
export declare const SeenEffect: <Tag extends keyof JSX.IntrinsicElements>(props: SeenEffectProps<Tag>) => JSX.Element;
|
|
4
8
|
export default SeenEffect;
|
package/SeenEffect.js
CHANGED
|
@@ -4,10 +4,15 @@ exports.SeenEffect = void 0;
|
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const react_1 = tslib_1.__importDefault(require("react"));
|
|
6
6
|
const seenEffect_js_1 = require("./utils/seenEffect.js");
|
|
7
|
+
const _SeenEffect = (props) => {
|
|
8
|
+
const { Tag = 'div', effectType, tagProps } = props;
|
|
9
|
+
const [ref] = (0, seenEffect_js_1.useSeenEffect)();
|
|
10
|
+
return react_1.default.createElement(Tag, Object.assign({}, tagProps, { ref: ref }, (0, seenEffect_js_1.getEffectAttr)(effectType)));
|
|
11
|
+
};
|
|
7
12
|
const SeenEffect = (props) => {
|
|
8
|
-
const { effectType, startSeen } =
|
|
9
|
-
const
|
|
10
|
-
return react_1.default.createElement(
|
|
13
|
+
const _a = props, { Tag = 'div', effectType, startSeen } = _a, tagProps = tslib_1.__rest(_a, ["Tag", "effectType", "startSeen"]);
|
|
14
|
+
const addEffects = (effectType || '') !== 'none' || startSeen !== true;
|
|
15
|
+
return addEffects ? (react_1.default.createElement(_SeenEffect, { Tag: Tag, effectType: effectType, tagProps: tagProps })) : (react_1.default.createElement(Tag, Object.assign({}, tagProps)));
|
|
11
16
|
};
|
|
12
17
|
exports.SeenEffect = SeenEffect;
|
|
13
18
|
exports.default = exports.SeenEffect;
|
package/SiteSearchInput.d.ts
CHANGED
|
@@ -20,5 +20,5 @@ export type SiteSearchInputProps = {
|
|
|
20
20
|
children?: never;
|
|
21
21
|
ssr?: SSRSupport;
|
|
22
22
|
} & WrappingProps & InputElmProps;
|
|
23
|
-
export declare const SiteSearchInput: React.ForwardRefExoticComponent<Pick<SiteSearchInputProps, "form" | "label" | "slot" | "style" | "title" | "key" | "list" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "step" | "value" | "pattern" | "
|
|
23
|
+
export declare const SiteSearchInput: React.ForwardRefExoticComponent<Pick<SiteSearchInputProps, "form" | "label" | "slot" | "style" | "title" | "key" | "list" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "step" | "value" | "pattern" | "name" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "size" | "src" | "multiple" | "alt" | "ssr" | "accept" | "autoComplete" | "capture" | "checked" | "crossOrigin" | "enterKeyHint" | "height" | "max" | "maxLength" | "min" | "minLength" | "width" | "onButtonClick" | "buttonText"> & React.RefAttributes<HTMLInputElement>>;
|
|
24
24
|
export default SiteSearchInput;
|
package/VerticalTabsTOC.js
CHANGED
|
@@ -67,7 +67,7 @@ const VerticalTabsTOC = (props) => {
|
|
|
67
67
|
const itemId = getItemId(item);
|
|
68
68
|
const newId = itemId || getItemId((_a = itemsById[itemId].subTabs) === null || _a === void 0 ? void 0 : _a.tabs[0]);
|
|
69
69
|
(0, frag_1.setFrag)(newId);
|
|
70
|
-
}, tabs: updatedItems, role: "tablist", activeIdx: state.activeIdx, subTabs: state.subTabs }));
|
|
70
|
+
}, tabs: updatedItems, role: "tablist", activateOnFocus: props.activateOnFocus, activeIdx: state.activeIdx, subTabs: state.subTabs }));
|
|
71
71
|
};
|
|
72
72
|
exports.VerticalTabsTOC = VerticalTabsTOC;
|
|
73
73
|
exports.default = exports.VerticalTabsTOC;
|
package/assets.js
CHANGED
|
@@ -14,9 +14,7 @@ Object.defineProperty(exports, "illustrations", { enumerable: true, get: functio
|
|
|
14
14
|
/** @deprecated Use `getCssBundleUrl` from '@reykjavik/hanna-css' instead (Will be reomved in v0.11) */
|
|
15
15
|
const getCssBundleUrl = (cssTokens,
|
|
16
16
|
/** If you want to pin your CSS files to a specific version */
|
|
17
|
-
version) => (0, hanna_css_1.getCssBundleUrl)(cssTokens, {
|
|
18
|
-
version: version,
|
|
19
|
-
});
|
|
17
|
+
version) => (0, hanna_css_1.getCssBundleUrl)(cssTokens, { version });
|
|
20
18
|
exports.getCssBundleUrl = getCssBundleUrl;
|
|
21
19
|
// ---------------------------------------------------------------------------
|
|
22
20
|
// Based on "https://styles.reykjavik.is/assets/efnistakn/menu/files.json"
|
package/esm/Datepicker.js
CHANGED
|
@@ -63,7 +63,17 @@ export const Datepicker = (props) => {
|
|
|
63
63
|
(elm === null || elm === void 0 ? void 0 : elm.querySelector('input')) || undefined;
|
|
64
64
|
return elm;
|
|
65
65
|
}) }, addFocusProps()),
|
|
66
|
-
React.createElement(ReactDatePicker, Object.assign({ id: domid, required: inputProps.required, disabled: inputProps.disabled, readOnly: inputProps.readOnly, selected: value, name: name, locale: localeCode, dateFormat:
|
|
66
|
+
React.createElement(ReactDatePicker, Object.assign({ id: domid, required: inputProps.required, disabled: inputProps.disabled, readOnly: inputProps.readOnly, selected: value, name: name, locale: localeCode, dateFormat:
|
|
67
|
+
// NOTE: Force all dateFormat values into Array<string> to temporarily work around
|
|
68
|
+
// a bug in the current version of react-datepicker where invalid **string** values
|
|
69
|
+
// are re-parsed with `new Date()`, causing surprising (weird) false positives
|
|
70
|
+
// AND where Arrayed formats get parsed in order of "increasing priority".
|
|
71
|
+
//
|
|
72
|
+
// TODO: Revert back to the plain `dateFormat={dateFormat}` pass-through once
|
|
73
|
+
// https://github.com/Hacker0x01/react-datepicker/pull/3988 has been accepted and released.
|
|
74
|
+
typeof dateFormat === 'string'
|
|
75
|
+
? [dateFormat]
|
|
76
|
+
: dateFormat.slice(0).reverse(), onChange: (date) => {
|
|
67
77
|
onChange(date || undefined);
|
|
68
78
|
const inputElm = inputRef === null || inputRef === void 0 ? void 0 : inputRef.current;
|
|
69
79
|
if (inputElm) {
|
package/esm/MainMenu.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ export type MainMenuItem = {
|
|
|
34
34
|
*/
|
|
35
35
|
onClick?: (index: number, item: MainMenuItem) => void | boolean;
|
|
36
36
|
controlsId?: string;
|
|
37
|
+
target?: JSX.IntrinsicElements['a']['target'];
|
|
37
38
|
};
|
|
38
39
|
export type MainMenuSeparator = '---';
|
|
39
40
|
export type MainMenuItemList = Array<MainMenuItem | MainMenuSeparator>;
|
package/esm/MainMenu.js
CHANGED
|
@@ -199,7 +199,7 @@ export const MainMenu = (props) => {
|
|
|
199
199
|
}
|
|
200
200
|
}, ref: pressed && pressedLinkRef, "aria-pressed": pressed, "aria-controls": controlsId, "aria-label": labelLong, title: labelLong, lang: lang, type: "button" }, label)) : item.href != null ? (
|
|
201
201
|
// always render links server-side
|
|
202
|
-
React.createElement(Link, { className: "MainMenu__link", href: item.href, "aria-label": labelLong, title: labelLong, onClick: () => {
|
|
202
|
+
React.createElement(Link, { className: "MainMenu__link", href: item.href, target: item.target, "aria-label": labelLong, title: labelLong, onClick: () => {
|
|
203
203
|
const keepOpen = onItemClick && onItemClick(i, item) === false;
|
|
204
204
|
!keepOpen && closeHamburgerMenu();
|
|
205
205
|
}, lang: lang }, label)) : undefined // skip rendering non-link menu items server side
|
package/esm/SeenEffect.d.ts
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { EffectProp, SeenProp } from './utils/seenEffect.js';
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
type TagProps<Tag extends keyof JSX.IntrinsicElements = 'div'> = Omit<JSX.IntrinsicElements[Tag], 'ref'>;
|
|
3
|
+
type SeenEffectPropsBase<Tag extends keyof JSX.IntrinsicElements = 'div'> = {
|
|
4
|
+
Tag?: Tag;
|
|
5
|
+
} & EffectProp;
|
|
6
|
+
export type SeenEffectProps<Tag extends keyof JSX.IntrinsicElements = 'div'> = SeenEffectPropsBase<Tag> & SeenProp & TagProps<Tag>;
|
|
7
|
+
export declare const SeenEffect: <Tag extends keyof JSX.IntrinsicElements>(props: SeenEffectProps<Tag>) => JSX.Element;
|
|
4
8
|
export default SeenEffect;
|
package/esm/SeenEffect.js
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
import { __rest } from "tslib";
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { getEffectAttr, useSeenEffect, } from './utils/seenEffect.js';
|
|
4
|
+
const _SeenEffect = (props) => {
|
|
5
|
+
const { Tag = 'div', effectType, tagProps } = props;
|
|
6
|
+
const [ref] = useSeenEffect();
|
|
7
|
+
return React.createElement(Tag, Object.assign({}, tagProps, { ref: ref }, getEffectAttr(effectType)));
|
|
8
|
+
};
|
|
4
9
|
export const SeenEffect = (props) => {
|
|
5
|
-
const { effectType, startSeen } =
|
|
6
|
-
const
|
|
7
|
-
return React.createElement(
|
|
10
|
+
const _a = props, { Tag = 'div', effectType, startSeen } = _a, tagProps = __rest(_a, ["Tag", "effectType", "startSeen"]);
|
|
11
|
+
const addEffects = (effectType || '') !== 'none' || startSeen !== true;
|
|
12
|
+
return addEffects ? (React.createElement(_SeenEffect, { Tag: Tag, effectType: effectType, tagProps: tagProps })) : (React.createElement(Tag, Object.assign({}, tagProps)));
|
|
8
13
|
};
|
|
9
14
|
export default SeenEffect;
|
package/esm/SiteSearchInput.d.ts
CHANGED
|
@@ -20,5 +20,5 @@ export type SiteSearchInputProps = {
|
|
|
20
20
|
children?: never;
|
|
21
21
|
ssr?: SSRSupport;
|
|
22
22
|
} & WrappingProps & InputElmProps;
|
|
23
|
-
export declare const SiteSearchInput: React.ForwardRefExoticComponent<Pick<SiteSearchInputProps, "form" | "label" | "slot" | "style" | "title" | "key" | "list" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "step" | "value" | "pattern" | "
|
|
23
|
+
export declare const SiteSearchInput: React.ForwardRefExoticComponent<Pick<SiteSearchInputProps, "form" | "label" | "slot" | "style" | "title" | "key" | "list" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "step" | "value" | "pattern" | "name" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "size" | "src" | "multiple" | "alt" | "ssr" | "accept" | "autoComplete" | "capture" | "checked" | "crossOrigin" | "enterKeyHint" | "height" | "max" | "maxLength" | "min" | "minLength" | "width" | "onButtonClick" | "buttonText"> & React.RefAttributes<HTMLInputElement>>;
|
|
24
24
|
export default SiteSearchInput;
|
package/esm/VerticalTabsTOC.js
CHANGED
|
@@ -63,6 +63,6 @@ export const VerticalTabsTOC = (props) => {
|
|
|
63
63
|
const itemId = getItemId(item);
|
|
64
64
|
const newId = itemId || getItemId((_a = itemsById[itemId].subTabs) === null || _a === void 0 ? void 0 : _a.tabs[0]);
|
|
65
65
|
setFrag(newId);
|
|
66
|
-
}, tabs: updatedItems, role: "tablist", activeIdx: state.activeIdx, subTabs: state.subTabs }));
|
|
66
|
+
}, tabs: updatedItems, role: "tablist", activateOnFocus: props.activateOnFocus, activeIdx: state.activeIdx, subTabs: state.subTabs }));
|
|
67
67
|
};
|
|
68
68
|
export default VerticalTabsTOC;
|
package/esm/assets.js
CHANGED
|
@@ -20,9 +20,7 @@ illustrations, };
|
|
|
20
20
|
/** @deprecated Use `getCssBundleUrl` from '@reykjavik/hanna-css' instead (Will be reomved in v0.11) */
|
|
21
21
|
export const getCssBundleUrl = (cssTokens,
|
|
22
22
|
/** If you want to pin your CSS files to a specific version */
|
|
23
|
-
version) => _getCssBundleUrl(cssTokens, {
|
|
24
|
-
version: version,
|
|
25
|
-
});
|
|
23
|
+
version) => _getCssBundleUrl(cssTokens, { version });
|
|
26
24
|
// ---------------------------------------------------------------------------
|
|
27
25
|
// Based on "https://styles.reykjavik.is/assets/efnistakn/menu/files.json"
|
|
28
26
|
/** @deprecated (Will be removed in v0.11) */
|
package/esm/index.d.ts
CHANGED
|
@@ -1,97 +1,97 @@
|
|
|
1
|
-
/// <reference path="./AccordionList.d.tsx" />
|
|
2
|
-
/// <reference path="./ActionCards.d.tsx" />
|
|
3
|
-
/// <reference path="./Alert.d.tsx" />
|
|
4
|
-
/// <reference path="./ArticleCards.d.tsx" />
|
|
5
|
-
/// <reference path="./ArticleCarousel.d.tsx" />
|
|
6
|
-
/// <reference path="./ArticleMeta.d.tsx" />
|
|
7
|
-
/// <reference path="./assets.d.ts" />
|
|
8
|
-
/// <reference path="./Attention.d.tsx" />
|
|
9
|
-
/// <reference path="./BasicTable.d.tsx" />
|
|
10
|
-
/// <reference path="./BgBox.d.tsx" />
|
|
11
|
-
/// <reference path="./Bling.d.tsx" />
|
|
12
|
-
/// <reference path="./BlockBreak.d.tsx" />
|
|
13
|
-
/// <reference path="./BlockQuote.d.tsx" />
|
|
14
|
-
/// <reference path="./BreadCrumbs.d.tsx" />
|
|
15
|
-
/// <reference path="./ButtonBack.d.tsx" />
|
|
16
|
-
/// <reference path="./ButtonBar.d.tsx" />
|
|
17
|
-
/// <reference path="./ButtonPrimary.d.tsx" />
|
|
18
|
-
/// <reference path="./ButtonSecondary.d.tsx" />
|
|
19
|
-
/// <reference path="./ButtonTertiary.d.tsx" />
|
|
20
|
-
/// <reference path="./Carousel.d.tsx" />
|
|
21
|
-
/// <reference path="./CarouselStepper.d.tsx" />
|
|
22
|
-
/// <reference path="./CenterColumn.d.tsx" />
|
|
23
|
-
/// <reference path="./Checkbox.d.tsx" />
|
|
24
|
-
/// <reference path="./CheckboxButton.d.tsx" />
|
|
25
|
-
/// <reference path="./CheckboxButtonsGroup.d.tsx" />
|
|
26
|
-
/// <reference path="./CheckboxGroup.d.tsx" />
|
|
27
|
-
/// <reference path="./CityBlock.d.tsx" />
|
|
28
|
-
/// <reference path="./constants.d.ts" />
|
|
29
|
-
/// <reference path="./ContactBubble.d.tsx" />
|
|
30
|
-
/// <reference path="./ContentArticle.d.tsx" />
|
|
31
|
-
/// <reference path="./ContentImage.d.tsx" />
|
|
32
|
-
/// <reference path="./Datepicker.d.tsx" />
|
|
33
|
-
/// <reference path="./ExtraLinks.d.tsx" />
|
|
34
|
-
/// <reference path="./FeatureList.d.tsx" />
|
|
35
|
-
/// <reference path="./FieldGroup.d.tsx" />
|
|
36
|
-
/// <reference path="./FileInput.d.tsx" />
|
|
37
|
-
/// <reference path="./focus-visible.d.ts" />
|
|
38
|
-
/// <reference path="./Foonote.d.tsx" />
|
|
39
|
-
/// <reference path="./FooterBadges.d.tsx" />
|
|
40
|
-
/// <reference path="./FooterInfo.d.tsx" />
|
|
41
|
-
/// <reference path="./Footnote.d.tsx" />
|
|
42
|
-
/// <reference path="./Form.d.tsx" />
|
|
43
|
-
/// <reference path="./FormField.d.tsx" />
|
|
44
|
-
/// <reference path="./Gallery.d.tsx" />
|
|
45
|
-
/// <reference path="./GridBlocks.d.tsx" />
|
|
46
|
-
/// <reference path="./Heading.d.tsx" />
|
|
47
|
-
/// <reference path="./HeroBlock.d.tsx" />
|
|
48
|
-
/// <reference path="./IframeBlock.d.tsx" />
|
|
49
|
-
/// <reference path="./Illustration.d.tsx" />
|
|
50
|
-
/// <reference path="./ImageCards.d.tsx" />
|
|
51
|
-
/// <reference path="./InfoBlock.d.tsx" />
|
|
52
|
-
/// <reference path="./InfoHero.d.tsx" />
|
|
53
|
-
/// <reference path="./IslandBlock.d.tsx" />
|
|
54
|
-
/// <reference path="./IslandPageBlock.d.tsx" />
|
|
55
|
-
/// <reference path="./LabeledTextBlock.d.tsx" />
|
|
56
|
-
/// <reference path="./Layout.d.tsx" />
|
|
57
|
-
/// <reference path="./MainMenu.d.tsx" />
|
|
58
|
-
/// <reference path="./MiniMetrics.d.tsx" />
|
|
59
|
-
/// <reference path="./Modal.d.tsx" />
|
|
60
|
-
/// <reference path="./NameCard.d.tsx" />
|
|
61
|
-
/// <reference path="./NameCards.d.tsx" />
|
|
62
|
-
/// <reference path="./NewsHero.d.tsx" />
|
|
63
|
-
/// <reference path="./PageFilter.d.tsx" />
|
|
64
|
-
/// <reference path="./PageHeading.d.tsx" />
|
|
65
|
-
/// <reference path="./Picture.d.tsx" />
|
|
66
|
-
/// <reference path="./ProcessOverview.d.tsx" />
|
|
67
|
-
/// <reference path="./PullQuote.d.tsx" />
|
|
68
|
-
/// <reference path="./RadioButtonsGroup.d.tsx" />
|
|
69
|
-
/// <reference path="./RadioGroup.d.tsx" />
|
|
70
|
-
/// <reference path="./RelatedLinks.d.tsx" />
|
|
71
|
-
/// <reference path="./RowBlock.d.tsx" />
|
|
72
|
-
/// <reference path="./RowBlockColumn.d.tsx" />
|
|
73
|
-
/// <reference path="./SearchInput.d.tsx" />
|
|
74
|
-
/// <reference path="./SearchResults.d.tsx" />
|
|
75
|
-
/// <reference path="./SeenEffect.d.tsx" />
|
|
76
|
-
/// <reference path="./Selectbox.d.tsx" />
|
|
77
|
-
/// <reference path="./ShareButtons.d.tsx" />
|
|
78
|
-
/// <reference path="./Sharpie.d.tsx" />
|
|
79
|
-
/// <reference path="./SiteSearchAutocomplete.d.tsx" />
|
|
80
|
-
/// <reference path="./SiteSearchCurtain.d.tsx" />
|
|
81
|
-
/// <reference path="./SiteSearchInput.d.tsx" />
|
|
82
|
-
/// <reference path="./Skeleton.d.tsx" />
|
|
83
|
-
/// <reference path="./SubHeading.d.tsx" />
|
|
84
|
-
/// <reference path="./Tabs.d.tsx" />
|
|
85
|
-
/// <reference path="./TagPill.d.tsx" />
|
|
86
|
-
/// <reference path="./TextBlock.d.tsx" />
|
|
87
|
-
/// <reference path="./TextButton.d.tsx" />
|
|
88
|
-
/// <reference path="./TextInput.d.tsx" />
|
|
89
|
-
/// <reference path="./Tooltip.d.tsx" />
|
|
90
1
|
/// <reference path="./utils.d.ts" />
|
|
2
|
+
/// <reference path="./focus-visible.d.ts" />
|
|
3
|
+
/// <reference path="./constants.d.ts" />
|
|
4
|
+
/// <reference path="./assets.d.ts" />
|
|
5
|
+
/// <reference path="./WizardStepper.d.tsx" />
|
|
6
|
+
/// <reference path="./WizardLayoutClose.d.tsx" />
|
|
7
|
+
/// <reference path="./WizardLayout.d.tsx" />
|
|
91
8
|
/// <reference path="./VerticalTabsTOC.d.tsx" />
|
|
92
9
|
/// <reference path="./VSpacer.d.tsx" />
|
|
93
|
-
/// <reference path="./
|
|
94
|
-
/// <reference path="./
|
|
95
|
-
/// <reference path="./
|
|
10
|
+
/// <reference path="./Tooltip.d.tsx" />
|
|
11
|
+
/// <reference path="./TextInput.d.tsx" />
|
|
12
|
+
/// <reference path="./TextButton.d.tsx" />
|
|
13
|
+
/// <reference path="./TextBlock.d.tsx" />
|
|
14
|
+
/// <reference path="./TagPill.d.tsx" />
|
|
15
|
+
/// <reference path="./Tabs.d.tsx" />
|
|
16
|
+
/// <reference path="./SubHeading.d.tsx" />
|
|
17
|
+
/// <reference path="./Skeleton.d.tsx" />
|
|
18
|
+
/// <reference path="./SiteSearchInput.d.tsx" />
|
|
19
|
+
/// <reference path="./SiteSearchCurtain.d.tsx" />
|
|
20
|
+
/// <reference path="./SiteSearchAutocomplete.d.tsx" />
|
|
21
|
+
/// <reference path="./Sharpie.d.tsx" />
|
|
22
|
+
/// <reference path="./ShareButtons.d.tsx" />
|
|
23
|
+
/// <reference path="./Selectbox.d.tsx" />
|
|
24
|
+
/// <reference path="./SeenEffect.d.tsx" />
|
|
25
|
+
/// <reference path="./SearchResults.d.tsx" />
|
|
26
|
+
/// <reference path="./SearchInput.d.tsx" />
|
|
27
|
+
/// <reference path="./RowBlockColumn.d.tsx" />
|
|
28
|
+
/// <reference path="./RowBlock.d.tsx" />
|
|
29
|
+
/// <reference path="./RelatedLinks.d.tsx" />
|
|
30
|
+
/// <reference path="./RadioGroup.d.tsx" />
|
|
31
|
+
/// <reference path="./RadioButtonsGroup.d.tsx" />
|
|
32
|
+
/// <reference path="./PullQuote.d.tsx" />
|
|
33
|
+
/// <reference path="./ProcessOverview.d.tsx" />
|
|
34
|
+
/// <reference path="./Picture.d.tsx" />
|
|
35
|
+
/// <reference path="./PageHeading.d.tsx" />
|
|
36
|
+
/// <reference path="./PageFilter.d.tsx" />
|
|
37
|
+
/// <reference path="./NewsHero.d.tsx" />
|
|
38
|
+
/// <reference path="./NameCards.d.tsx" />
|
|
39
|
+
/// <reference path="./NameCard.d.tsx" />
|
|
40
|
+
/// <reference path="./Modal.d.tsx" />
|
|
41
|
+
/// <reference path="./MiniMetrics.d.tsx" />
|
|
42
|
+
/// <reference path="./MainMenu.d.tsx" />
|
|
43
|
+
/// <reference path="./Layout.d.tsx" />
|
|
44
|
+
/// <reference path="./LabeledTextBlock.d.tsx" />
|
|
45
|
+
/// <reference path="./IslandPageBlock.d.tsx" />
|
|
46
|
+
/// <reference path="./IslandBlock.d.tsx" />
|
|
47
|
+
/// <reference path="./InfoHero.d.tsx" />
|
|
48
|
+
/// <reference path="./InfoBlock.d.tsx" />
|
|
49
|
+
/// <reference path="./ImageCards.d.tsx" />
|
|
50
|
+
/// <reference path="./Illustration.d.tsx" />
|
|
51
|
+
/// <reference path="./IframeBlock.d.tsx" />
|
|
52
|
+
/// <reference path="./HeroBlock.d.tsx" />
|
|
53
|
+
/// <reference path="./Heading.d.tsx" />
|
|
54
|
+
/// <reference path="./GridBlocks.d.tsx" />
|
|
55
|
+
/// <reference path="./Gallery.d.tsx" />
|
|
56
|
+
/// <reference path="./FormField.d.tsx" />
|
|
57
|
+
/// <reference path="./Form.d.tsx" />
|
|
58
|
+
/// <reference path="./Footnote.d.tsx" />
|
|
59
|
+
/// <reference path="./FooterInfo.d.tsx" />
|
|
60
|
+
/// <reference path="./FooterBadges.d.tsx" />
|
|
61
|
+
/// <reference path="./Foonote.d.tsx" />
|
|
62
|
+
/// <reference path="./FileInput.d.tsx" />
|
|
63
|
+
/// <reference path="./FieldGroup.d.tsx" />
|
|
64
|
+
/// <reference path="./FeatureList.d.tsx" />
|
|
65
|
+
/// <reference path="./ExtraLinks.d.tsx" />
|
|
66
|
+
/// <reference path="./Datepicker.d.tsx" />
|
|
67
|
+
/// <reference path="./ContentImage.d.tsx" />
|
|
68
|
+
/// <reference path="./ContentArticle.d.tsx" />
|
|
69
|
+
/// <reference path="./ContactBubble.d.tsx" />
|
|
70
|
+
/// <reference path="./CityBlock.d.tsx" />
|
|
71
|
+
/// <reference path="./CheckboxGroup.d.tsx" />
|
|
72
|
+
/// <reference path="./CheckboxButtonsGroup.d.tsx" />
|
|
73
|
+
/// <reference path="./CheckboxButton.d.tsx" />
|
|
74
|
+
/// <reference path="./Checkbox.d.tsx" />
|
|
75
|
+
/// <reference path="./CenterColumn.d.tsx" />
|
|
76
|
+
/// <reference path="./CarouselStepper.d.tsx" />
|
|
77
|
+
/// <reference path="./Carousel.d.tsx" />
|
|
78
|
+
/// <reference path="./ButtonTertiary.d.tsx" />
|
|
79
|
+
/// <reference path="./ButtonSecondary.d.tsx" />
|
|
80
|
+
/// <reference path="./ButtonPrimary.d.tsx" />
|
|
81
|
+
/// <reference path="./ButtonBar.d.tsx" />
|
|
82
|
+
/// <reference path="./ButtonBack.d.tsx" />
|
|
83
|
+
/// <reference path="./BreadCrumbs.d.tsx" />
|
|
84
|
+
/// <reference path="./BlockQuote.d.tsx" />
|
|
85
|
+
/// <reference path="./BlockBreak.d.tsx" />
|
|
86
|
+
/// <reference path="./Bling.d.tsx" />
|
|
87
|
+
/// <reference path="./BgBox.d.tsx" />
|
|
88
|
+
/// <reference path="./BasicTable.d.tsx" />
|
|
89
|
+
/// <reference path="./Attention.d.tsx" />
|
|
90
|
+
/// <reference path="./ArticleMeta.d.tsx" />
|
|
91
|
+
/// <reference path="./ArticleCarousel.d.tsx" />
|
|
92
|
+
/// <reference path="./ArticleCards.d.tsx" />
|
|
93
|
+
/// <reference path="./Alert.d.tsx" />
|
|
94
|
+
/// <reference path="./ActionCards.d.tsx" />
|
|
95
|
+
/// <reference path="./AccordionList.d.tsx" />
|
|
96
96
|
|
|
97
97
|
export {};
|