td-stylekit 30.17.2 → 30.17.3
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 +7 -0
- package/dist/es/IconBar/IconBar.d.ts +4 -2
- package/dist/es/IconBar/IconItem.d.ts +4 -2
- package/dist/es/Link/Link.d.ts +4 -2
- package/dist/es/Link/Link.js +43 -11
- package/dist/es/Tagger/TaggerElements.d.ts +4 -2
- package/dist/es/Tagger/components/PopupSelectorElements.d.ts +4 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [30.17.3](https://github.com/treasure-data/td-stylekit/compare/v30.17.2...v30.17.3) (2025-11-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **UIDX-625:** Link - remove deprecated defaultProps with inverted pattern ([#1708](https://github.com/treasure-data/td-stylekit/issues/1708)) ([9add1f0](https://github.com/treasure-data/td-stylekit/commit/9add1f0bb4048a3b9abe4525bcb3c167feab90f0))
|
|
7
|
+
|
|
1
8
|
## [30.17.2](https://github.com/treasure-data/td-stylekit/compare/v30.17.1...v30.17.2) (2025-10-31)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -33,12 +33,14 @@ declare namespace IconBar {
|
|
|
33
33
|
variantStyles?: import("./variants").VariantStyles | undefined;
|
|
34
34
|
}): import("@emotion/react/jsx-runtime").JSX.Element | null;
|
|
35
35
|
displayName: string;
|
|
36
|
-
Link: import("@emotion/styled").StyledComponent<{
|
|
36
|
+
Link: import("@emotion/styled").StyledComponent<Omit<{
|
|
37
37
|
theme?: import("@emotion/react").Theme | undefined;
|
|
38
38
|
as?: import("react").ElementType<any> | undefined;
|
|
39
39
|
} & Partial<import("../mixins").Border & import("../mixins").Color & import("../mixins").Spacing> & import("react").ClassAttributes<HTMLSpanElement> & import("react").HTMLAttributes<HTMLSpanElement> & {
|
|
40
40
|
theme?: import("@emotion/react").Theme | undefined;
|
|
41
|
-
} & import("../Link").LinkProps & import("react").ClassAttributes<HTMLAnchorElement> & import("react").AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
41
|
+
} & import("../Link").LinkProps & import("react").ClassAttributes<HTMLAnchorElement> & import("react").AnchorHTMLAttributes<HTMLAnchorElement>, "ref"> & import("react").RefAttributes<HTMLAnchorElement> & {
|
|
42
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
43
|
+
} & import("../Link").LinkProps & {
|
|
42
44
|
active?: boolean | undefined;
|
|
43
45
|
variantStyles?: import("./variants").VariantStyles | undefined;
|
|
44
46
|
}, {}, {}>;
|
|
@@ -17,12 +17,14 @@ type IconItemProps = React.ComponentProps<typeof Container>;
|
|
|
17
17
|
declare const IconItem: {
|
|
18
18
|
({ children, active, variantStyles, ...props }: IconItemProps): import("@emotion/react/jsx-runtime").JSX.Element | null;
|
|
19
19
|
displayName: string;
|
|
20
|
-
Link: import("@emotion/styled").StyledComponent<{
|
|
20
|
+
Link: import("@emotion/styled").StyledComponent<Omit<{
|
|
21
21
|
theme?: import("@emotion/react").Theme | undefined;
|
|
22
22
|
as?: React.ElementType<any> | undefined;
|
|
23
23
|
} & Partial<import("../mixins").Border & import("../mixins").Color & import("../mixins").Spacing> & React.ClassAttributes<HTMLSpanElement> & React.HTMLAttributes<HTMLSpanElement> & {
|
|
24
24
|
theme?: import("@emotion/react").Theme | undefined;
|
|
25
|
-
} & import("../Link").LinkProps & React.ClassAttributes<HTMLAnchorElement> & React.AnchorHTMLAttributes<HTMLAnchorElement> &
|
|
25
|
+
} & import("../Link").LinkProps & React.ClassAttributes<HTMLAnchorElement> & React.AnchorHTMLAttributes<HTMLAnchorElement>, "ref"> & React.RefAttributes<HTMLAnchorElement> & {
|
|
26
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
27
|
+
} & import("../Link").LinkProps & ComponentProps, {}, {}>;
|
|
26
28
|
};
|
|
27
29
|
export default IconItem;
|
|
28
30
|
//# sourceMappingURL=IconItem.d.ts.map
|
package/dist/es/Link/Link.d.ts
CHANGED
|
@@ -3,11 +3,13 @@ export type LinkProps = {
|
|
|
3
3
|
disabled?: boolean;
|
|
4
4
|
'data-instrumentation'?: string;
|
|
5
5
|
};
|
|
6
|
-
declare const Link: import("@emotion/styled").StyledComponent<{
|
|
6
|
+
declare const Link: import("@emotion/styled").StyledComponent<Omit<{
|
|
7
7
|
theme?: import("@emotion/react").Theme | undefined;
|
|
8
8
|
as?: import("react").ElementType<any> | undefined;
|
|
9
9
|
} & Partial<import("../mixins").Border & import("../mixins").Color & import("../mixins").Spacing> & import("react").ClassAttributes<HTMLSpanElement> & import("react").HTMLAttributes<HTMLSpanElement> & {
|
|
10
10
|
theme?: import("@emotion/react").Theme | undefined;
|
|
11
|
-
} & LinkProps
|
|
11
|
+
} & LinkProps & import("react").ClassAttributes<HTMLAnchorElement> & import("react").AnchorHTMLAttributes<HTMLAnchorElement>, "ref"> & import("react").RefAttributes<HTMLAnchorElement> & {
|
|
12
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
13
|
+
} & LinkProps, {}, {}>;
|
|
12
14
|
export default Link;
|
|
13
15
|
//# sourceMappingURL=Link.d.ts.map
|
package/dist/es/Link/Link.js
CHANGED
|
@@ -1,13 +1,24 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
4
|
Object.defineProperty(exports, "__esModule", {
|
|
4
5
|
value: true
|
|
5
6
|
});
|
|
6
7
|
exports["default"] = void 0;
|
|
7
8
|
var _base = _interopRequireDefault(require("@emotion/styled/base"));
|
|
9
|
+
var _react = require("react");
|
|
8
10
|
var _Text = _interopRequireDefault(require("../Text"));
|
|
9
11
|
var _ThemeProvider = require("../ThemeProvider");
|
|
12
|
+
var _jsxRuntime = require("@emotion/react/jsx-runtime");
|
|
13
|
+
var _excluded = ["data-instrumentation"];
|
|
10
14
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
15
|
+
function ownKeys(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; }
|
|
16
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
17
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
18
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
19
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
20
|
+
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
|
|
21
|
+
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
|
|
11
22
|
if (typeof window !== "undefined" && !window.gs) window.gs = function () {};
|
|
12
23
|
if (typeof window !== "undefined" && !window.gsC) window.gsC = function () {};
|
|
13
24
|
var styles = function styles(_ref) {
|
|
@@ -26,25 +37,46 @@ var styles = function styles(_ref) {
|
|
|
26
37
|
}
|
|
27
38
|
};
|
|
28
39
|
};
|
|
29
|
-
|
|
40
|
+
|
|
41
|
+
// Create base styled anchor element that extends Text
|
|
42
|
+
var BaseLink = /*#__PURE__*/(0, _base["default"])(_Text["default"], process.env.NODE_ENV === "production" ? {
|
|
30
43
|
shouldForwardProp: function shouldForwardProp(prop) {
|
|
31
44
|
return prop !== 'variantStyles';
|
|
32
45
|
},
|
|
33
|
-
target: "
|
|
46
|
+
target: "ekj80321"
|
|
34
47
|
} : {
|
|
35
48
|
shouldForwardProp: function shouldForwardProp(prop) {
|
|
36
49
|
return prop !== 'variantStyles';
|
|
37
50
|
},
|
|
38
|
-
target: "ekj80320",
|
|
39
|
-
label: "Link"
|
|
40
|
-
})(styles, (0, _ThemeProvider.getOverrides)(_ThemeProvider.Overridable.Link.Root), process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9MaW5rL0xpbmsudHN4Il0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQXlCYSIsImZpbGUiOiIuLi8uLi8uLi9zcmMvTGluay9MaW5rLnRzeCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBzdHlsZWQgZnJvbSAnQGVtb3Rpb24vc3R5bGVkJ1xuaW1wb3J0IFRleHQgZnJvbSAnLi4vVGV4dCdcbmltcG9ydCB7IGdldE92ZXJyaWRlcywgT3ZlcnJpZGFibGUgfSBmcm9tICcuLi9UaGVtZVByb3ZpZGVyJ1xuaW1wb3J0IHR5cGUgeyBUaGVtZSB9IGZyb20gJy4uL1RoZW1lUHJvdmlkZXInXG5cbmV4cG9ydCB0eXBlIExpbmtQcm9wcyA9IHtcbiAgZGlzYWJsZWQ/OiBib29sZWFuXG4gICdkYXRhLWluc3RydW1lbnRhdGlvbic/OiBzdHJpbmdcbn1cblxuY29uc3Qgc3R5bGVzID0gKHsgdGhlbWUsIGRpc2FibGVkIH06IHsgdGhlbWU6IFRoZW1lOyBkaXNhYmxlZD86IGJvb2xlYW4gfSkgPT4gKHtcbiAgY29sb3I6IGRpc2FibGVkID8gdGhlbWUucGFsZXR0ZS5uZXV0cmFsWzldIDogdGhlbWUucGFsZXR0ZS5wcmltYXJ5WzRdLFxuICBjdXJzb3I6IGRpc2FibGVkID8gJ2RlZmF1bHQnIDogJ3BvaW50ZXInLFxuICBmb250V2VpZ2h0OiA2MDAsXG4gIHRleHREZWNvcmF0aW9uOiAnbm9uZScsXG4gICc6aG92ZXInOiBkaXNhYmxlZFxuICAgID8ge31cbiAgICA6IHtcbiAgICAgICAgdGV4dERlY29yYXRpb246ICd1bmRlcmxpbmUnXG4gICAgICB9LFxuICAnOmZvY3VzJzoge1xuICAgIHRleHREZWNvcmF0aW9uOiAndW5kZXJsaW5lJ1xuICB9XG59KVxuXG5jb25zdCBMaW5rID0gc3R5bGVkKFRleHQsIHtcbiAgc2hvdWxkRm9yd2FyZFByb3A6IHByb3AgPT4gcHJvcCAhPT0gJ3ZhcmlhbnRTdHlsZXMnXG59KTxMaW5rUHJvcHM+KHN0eWxlcywgZ2V0T3ZlcnJpZGVzKE92ZXJyaWRhYmxlLkxpbmsuUm9vdCkpLndpdGhDb21wb25lbnQoJ2EnKVxuXG5MaW5rLmRpc3BsYXlOYW1lID0gJ0xpbmsnXG5MaW5rLmRlZmF1bHRQcm9wcyA9IHtcbiAgJ2RhdGEtaW5zdHJ1bWVudGF0aW9uJzogJ2xpbmsnXG59XG5cbmV4cG9ydCBkZWZhdWx0IExpbmtcbiJdfQ== */").withComponent('a', process.env.NODE_ENV === "production" ? {
|
|
41
|
-
target: "ekj80321"
|
|
42
|
-
} : {
|
|
43
51
|
target: "ekj80321",
|
|
44
|
-
label: "
|
|
52
|
+
label: "BaseLink"
|
|
53
|
+
})(styles, (0, _ThemeProvider.getOverrides)(_ThemeProvider.Overridable.Link.Root), process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9MaW5rL0xpbmsudHN4Il0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQTJCaUIiLCJmaWxlIjoiLi4vLi4vLi4vc3JjL0xpbmsvTGluay50c3giLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgc3R5bGVkIGZyb20gJ0BlbW90aW9uL3N0eWxlZCdcbmltcG9ydCB7IGZvcndhcmRSZWYsIENvbXBvbmVudFByb3BzIH0gZnJvbSAncmVhY3QnXG5pbXBvcnQgVGV4dCBmcm9tICcuLi9UZXh0J1xuaW1wb3J0IHsgZ2V0T3ZlcnJpZGVzLCBPdmVycmlkYWJsZSB9IGZyb20gJy4uL1RoZW1lUHJvdmlkZXInXG5pbXBvcnQgdHlwZSB7IFRoZW1lIH0gZnJvbSAnLi4vVGhlbWVQcm92aWRlcidcblxuZXhwb3J0IHR5cGUgTGlua1Byb3BzID0ge1xuICBkaXNhYmxlZD86IGJvb2xlYW5cbiAgJ2RhdGEtaW5zdHJ1bWVudGF0aW9uJz86IHN0cmluZ1xufVxuXG5jb25zdCBzdHlsZXMgPSAoeyB0aGVtZSwgZGlzYWJsZWQgfTogeyB0aGVtZTogVGhlbWU7IGRpc2FibGVkPzogYm9vbGVhbiB9KSA9PiAoe1xuICBjb2xvcjogZGlzYWJsZWQgPyB0aGVtZS5wYWxldHRlLm5ldXRyYWxbOV0gOiB0aGVtZS5wYWxldHRlLnByaW1hcnlbNF0sXG4gIGN1cnNvcjogZGlzYWJsZWQgPyAnZGVmYXVsdCcgOiAncG9pbnRlcicsXG4gIGZvbnRXZWlnaHQ6IDYwMCxcbiAgdGV4dERlY29yYXRpb246ICdub25lJyxcbiAgJzpob3Zlcic6IGRpc2FibGVkXG4gICAgPyB7fVxuICAgIDoge1xuICAgICAgICB0ZXh0RGVjb3JhdGlvbjogJ3VuZGVybGluZSdcbiAgICAgIH0sXG4gICc6Zm9jdXMnOiB7XG4gICAgdGV4dERlY29yYXRpb246ICd1bmRlcmxpbmUnXG4gIH1cbn0pXG5cbi8vIENyZWF0ZSBiYXNlIHN0eWxlZCBhbmNob3IgZWxlbWVudCB0aGF0IGV4dGVuZHMgVGV4dFxuY29uc3QgQmFzZUxpbmsgPSBzdHlsZWQoVGV4dCwge1xuICBzaG91bGRGb3J3YXJkUHJvcDogcHJvcCA9PiBwcm9wICE9PSAndmFyaWFudFN0eWxlcydcbn0pPExpbmtQcm9wcz4oc3R5bGVzLCBnZXRPdmVycmlkZXMoT3ZlcnJpZGFibGUuTGluay5Sb290KSkud2l0aENvbXBvbmVudCgnYScpXG5cbi8vIFdyYXBwZXIgdGhhdCBwcm92aWRlcyBkZWZhdWx0IGRhdGEtaW5zdHJ1bWVudGF0aW9uXG50eXBlIFVuc3R5bGVkTGlua1Byb3BzID0gQ29tcG9uZW50UHJvcHM8dHlwZW9mIEJhc2VMaW5rPlxuXG5jb25zdCBVbnN0eWxlZExpbmsgPSBmb3J3YXJkUmVmPEhUTUxBbmNob3JFbGVtZW50LCBVbnN0eWxlZExpbmtQcm9wcz4oXG4gICh7ICdkYXRhLWluc3RydW1lbnRhdGlvbic6IGRhdGFJbnN0cnVtZW50YXRpb24gPSAnbGluaycsIC4uLnByb3BzIH0sIHJlZikgPT4ge1xuICAgIHJldHVybiAoXG4gICAgICA8QmFzZUxpbmtcbiAgICAgICAgcmVmPXtyZWZ9XG4gICAgICAgIGRhdGEtaW5zdHJ1bWVudGF0aW9uPXtkYXRhSW5zdHJ1bWVudGF0aW9ufVxuICAgICAgICB7Li4ucHJvcHN9XG4gICAgICAvPlxuICAgIClcbiAgfVxuKVxuXG5VbnN0eWxlZExpbmsuZGlzcGxheU5hbWUgPSAnVW5zdHlsZWRMaW5rJ1xuXG4vLyBBcHBseSB0aGUgc3R5bGVkIHdyYXBwZXIgdG8gZ2V0IHRoZSBmaW5hbCBMaW5rIGNvbXBvbmVudFxuY29uc3QgTGluayA9IHN0eWxlZChVbnN0eWxlZExpbmspPExpbmtQcm9wcz4oKVxuXG5MaW5rLmRpc3BsYXlOYW1lID0gJ0xpbmsnXG5cbmV4cG9ydCBkZWZhdWx0IExpbmtcbiJdfQ== */").withComponent('a', process.env.NODE_ENV === "production" ? {
|
|
54
|
+
target: "ekj80322"
|
|
55
|
+
} : {
|
|
56
|
+
target: "ekj80322",
|
|
57
|
+
label: "BaseLink"
|
|
45
58
|
});
|
|
59
|
+
|
|
60
|
+
// Wrapper that provides default data-instrumentation
|
|
61
|
+
|
|
62
|
+
var UnstyledLink = /*#__PURE__*/(0, _react.forwardRef)(function (_ref2, ref) {
|
|
63
|
+
var _ref2$dataInstrument = _ref2['data-instrumentation'],
|
|
64
|
+
dataInstrumentation = _ref2$dataInstrument === void 0 ? 'link' : _ref2$dataInstrument,
|
|
65
|
+
props = _objectWithoutProperties(_ref2, _excluded);
|
|
66
|
+
return (0, _jsxRuntime.jsx)(BaseLink, _objectSpread({
|
|
67
|
+
"data-gs": gs("src", "link", "link.tsx", "base-link"),
|
|
68
|
+
ref: ref,
|
|
69
|
+
"data-instrumentation": dataInstrumentation
|
|
70
|
+
}, props));
|
|
71
|
+
});
|
|
72
|
+
UnstyledLink.displayName = 'UnstyledLink';
|
|
73
|
+
|
|
74
|
+
// Apply the styled wrapper to get the final Link component
|
|
75
|
+
var Link = /*#__PURE__*/(0, _base["default"])(UnstyledLink, process.env.NODE_ENV === "production" ? {
|
|
76
|
+
target: "ekj80320"
|
|
77
|
+
} : {
|
|
78
|
+
target: "ekj80320",
|
|
79
|
+
label: "Link"
|
|
80
|
+
})(process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9MaW5rL0xpbmsudHN4Il0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQWlEYSIsImZpbGUiOiIuLi8uLi8uLi9zcmMvTGluay9MaW5rLnRzeCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBzdHlsZWQgZnJvbSAnQGVtb3Rpb24vc3R5bGVkJ1xuaW1wb3J0IHsgZm9yd2FyZFJlZiwgQ29tcG9uZW50UHJvcHMgfSBmcm9tICdyZWFjdCdcbmltcG9ydCBUZXh0IGZyb20gJy4uL1RleHQnXG5pbXBvcnQgeyBnZXRPdmVycmlkZXMsIE92ZXJyaWRhYmxlIH0gZnJvbSAnLi4vVGhlbWVQcm92aWRlcidcbmltcG9ydCB0eXBlIHsgVGhlbWUgfSBmcm9tICcuLi9UaGVtZVByb3ZpZGVyJ1xuXG5leHBvcnQgdHlwZSBMaW5rUHJvcHMgPSB7XG4gIGRpc2FibGVkPzogYm9vbGVhblxuICAnZGF0YS1pbnN0cnVtZW50YXRpb24nPzogc3RyaW5nXG59XG5cbmNvbnN0IHN0eWxlcyA9ICh7IHRoZW1lLCBkaXNhYmxlZCB9OiB7IHRoZW1lOiBUaGVtZTsgZGlzYWJsZWQ/OiBib29sZWFuIH0pID0+ICh7XG4gIGNvbG9yOiBkaXNhYmxlZCA/IHRoZW1lLnBhbGV0dGUubmV1dHJhbFs5XSA6IHRoZW1lLnBhbGV0dGUucHJpbWFyeVs0XSxcbiAgY3Vyc29yOiBkaXNhYmxlZCA/ICdkZWZhdWx0JyA6ICdwb2ludGVyJyxcbiAgZm9udFdlaWdodDogNjAwLFxuICB0ZXh0RGVjb3JhdGlvbjogJ25vbmUnLFxuICAnOmhvdmVyJzogZGlzYWJsZWRcbiAgICA/IHt9XG4gICAgOiB7XG4gICAgICAgIHRleHREZWNvcmF0aW9uOiAndW5kZXJsaW5lJ1xuICAgICAgfSxcbiAgJzpmb2N1cyc6IHtcbiAgICB0ZXh0RGVjb3JhdGlvbjogJ3VuZGVybGluZSdcbiAgfVxufSlcblxuLy8gQ3JlYXRlIGJhc2Ugc3R5bGVkIGFuY2hvciBlbGVtZW50IHRoYXQgZXh0ZW5kcyBUZXh0XG5jb25zdCBCYXNlTGluayA9IHN0eWxlZChUZXh0LCB7XG4gIHNob3VsZEZvcndhcmRQcm9wOiBwcm9wID0+IHByb3AgIT09ICd2YXJpYW50U3R5bGVzJ1xufSk8TGlua1Byb3BzPihzdHlsZXMsIGdldE92ZXJyaWRlcyhPdmVycmlkYWJsZS5MaW5rLlJvb3QpKS53aXRoQ29tcG9uZW50KCdhJylcblxuLy8gV3JhcHBlciB0aGF0IHByb3ZpZGVzIGRlZmF1bHQgZGF0YS1pbnN0cnVtZW50YXRpb25cbnR5cGUgVW5zdHlsZWRMaW5rUHJvcHMgPSBDb21wb25lbnRQcm9wczx0eXBlb2YgQmFzZUxpbms+XG5cbmNvbnN0IFVuc3R5bGVkTGluayA9IGZvcndhcmRSZWY8SFRNTEFuY2hvckVsZW1lbnQsIFVuc3R5bGVkTGlua1Byb3BzPihcbiAgKHsgJ2RhdGEtaW5zdHJ1bWVudGF0aW9uJzogZGF0YUluc3RydW1lbnRhdGlvbiA9ICdsaW5rJywgLi4ucHJvcHMgfSwgcmVmKSA9PiB7XG4gICAgcmV0dXJuIChcbiAgICAgIDxCYXNlTGlua1xuICAgICAgICByZWY9e3JlZn1cbiAgICAgICAgZGF0YS1pbnN0cnVtZW50YXRpb249e2RhdGFJbnN0cnVtZW50YXRpb259XG4gICAgICAgIHsuLi5wcm9wc31cbiAgICAgIC8+XG4gICAgKVxuICB9XG4pXG5cblVuc3R5bGVkTGluay5kaXNwbGF5TmFtZSA9ICdVbnN0eWxlZExpbmsnXG5cbi8vIEFwcGx5IHRoZSBzdHlsZWQgd3JhcHBlciB0byBnZXQgdGhlIGZpbmFsIExpbmsgY29tcG9uZW50XG5jb25zdCBMaW5rID0gc3R5bGVkKFVuc3R5bGVkTGluayk8TGlua1Byb3BzPigpXG5cbkxpbmsuZGlzcGxheU5hbWUgPSAnTGluaydcblxuZXhwb3J0IGRlZmF1bHQgTGlua1xuIl19 */");
|
|
46
81
|
Link.displayName = 'Link';
|
|
47
|
-
Link.defaultProps = {
|
|
48
|
-
'data-instrumentation': 'link'
|
|
49
|
-
};
|
|
50
82
|
var _default = exports["default"] = Link;
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const RemoveLink: import("@emotion/styled").StyledComponent<{
|
|
2
|
+
export declare const RemoveLink: import("@emotion/styled").StyledComponent<Omit<{
|
|
3
3
|
theme?: import("@emotion/react").Theme | undefined;
|
|
4
4
|
as?: import("react").ElementType<any> | undefined;
|
|
5
5
|
} & Partial<import("../mixins").Border & import("../mixins").Color & import("../mixins").Spacing> & import("react").ClassAttributes<HTMLSpanElement> & import("react").HTMLAttributes<HTMLSpanElement> & {
|
|
6
6
|
theme?: import("@emotion/react").Theme | undefined;
|
|
7
|
-
} & import("../Link").LinkProps & import("react").ClassAttributes<HTMLAnchorElement> & import("react").AnchorHTMLAttributes<HTMLAnchorElement>,
|
|
7
|
+
} & import("../Link").LinkProps & import("react").ClassAttributes<HTMLAnchorElement> & import("react").AnchorHTMLAttributes<HTMLAnchorElement>, "ref"> & import("react").RefAttributes<HTMLAnchorElement> & {
|
|
8
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
9
|
+
} & import("../Link").LinkProps, {}, {}>;
|
|
8
10
|
export declare const TruncatedTagText: import("@emotion/styled").StyledComponent<import("../RightTruncatedText").TruncatedTextProps & {
|
|
9
11
|
theme?: import("@emotion/react").Theme | undefined;
|
|
10
12
|
}, {}, {}>;
|
|
@@ -10,12 +10,14 @@ export declare const AddLinkPopover: import("@emotion/styled").StyledComponent<i
|
|
|
10
10
|
}, {}, {}>;
|
|
11
11
|
export declare const ListContainer: import("@emotion/styled").StyledComponent<any, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
12
12
|
export declare const SearchListContainer: import("@emotion/styled").StyledComponent<any, {}, {}>;
|
|
13
|
-
export declare const ListItem: import("@emotion/styled").StyledComponent<{
|
|
13
|
+
export declare const ListItem: import("@emotion/styled").StyledComponent<Omit<{
|
|
14
14
|
theme?: import("@emotion/react").Theme | undefined;
|
|
15
15
|
as?: import("react").ElementType<any> | undefined;
|
|
16
16
|
} & Partial<import("../../mixins").Border & import("../../mixins").Color & import("../../mixins").Spacing> & import("react").ClassAttributes<HTMLSpanElement> & import("react").HTMLAttributes<HTMLSpanElement> & {
|
|
17
17
|
theme?: import("@emotion/react").Theme | undefined;
|
|
18
|
-
} & import("../../Link").LinkProps & import("react").ClassAttributes<HTMLAnchorElement> & import("react").AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
18
|
+
} & import("../../Link").LinkProps & import("react").ClassAttributes<HTMLAnchorElement> & import("react").AnchorHTMLAttributes<HTMLAnchorElement>, "ref"> & import("react").RefAttributes<HTMLAnchorElement> & {
|
|
19
|
+
theme?: import("@emotion/react").Theme | undefined;
|
|
20
|
+
} & import("../../Link").LinkProps & {
|
|
19
21
|
hovered: boolean;
|
|
20
22
|
}, {}, {}>;
|
|
21
23
|
export declare const NoResults: import("@emotion/styled").StyledComponent<{
|