@vitality-ds/components 4.2.1 → 4.3.0
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/Dialog/components/DialogHeader/index.js +2 -4
- package/dist/Table/components/Toolbar/index.js +0 -1
- package/dist/Typography/styles/BaseTypography.styles.js +6 -89
- package/dist/components/src/Dialog/components/DialogHeader/index.d.ts.map +1 -1
- package/dist/components/src/Dialog/components/DialogHeader/index.js +2 -2
- package/dist/components/src/Dialog/components/DialogHeader/index.js.map +1 -1
- package/dist/components/src/Link/Link.d.ts +3 -23
- package/dist/components/src/Link/Link.d.ts.map +1 -1
- package/dist/components/src/Link/styled.d.ts +1 -21
- package/dist/components/src/Link/styled.d.ts.map +1 -1
- package/dist/components/src/Table/components/Toolbar/index.d.ts.map +1 -1
- package/dist/components/src/Table/components/Toolbar/index.js +1 -1
- package/dist/components/src/Table/components/Toolbar/index.js.map +1 -1
- package/dist/components/src/Typography/styled.d.ts +1 -21
- package/dist/components/src/Typography/styled.d.ts.map +1 -1
- package/dist/components/src/Typography/styles/BaseTypography.styles.d.ts +1 -33
- package/dist/components/src/Typography/styles/BaseTypography.styles.d.ts.map +1 -1
- package/dist/components/src/Typography/styles/BaseTypography.styles.js +6 -101
- package/dist/components/src/Typography/styles/BaseTypography.styles.js.map +1 -1
- package/dist/esm/Dialog/components/DialogHeader/index.js +2 -4
- package/dist/esm/Table/components/Toolbar/index.js +0 -1
- package/dist/esm/Typography/styles/BaseTypography.styles.js +6 -89
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -5
|
@@ -27,12 +27,10 @@ function DialogHeader(_ref) {
|
|
|
27
27
|
spacing: "none"
|
|
28
28
|
}, /*#__PURE__*/_react["default"].createElement(_Typography["default"], {
|
|
29
29
|
color: "inherit",
|
|
30
|
-
variant: "sectionTitle"
|
|
31
|
-
hideVerticalSpacing: true
|
|
30
|
+
variant: "sectionTitle"
|
|
32
31
|
}, title), subtitle && /*#__PURE__*/_react["default"].createElement(_Typography["default"], {
|
|
33
32
|
color: "lowContrast",
|
|
34
|
-
variant: "sectionSubtitle"
|
|
35
|
-
hideVerticalSpacing: true
|
|
33
|
+
variant: "sectionSubtitle"
|
|
36
34
|
}, subtitle))), _constants["default"][variant].headerCloseAllowed && closeButtonOnClick && /*#__PURE__*/_react["default"].createElement(_styled.UtilityIconContainer, null, /*#__PURE__*/_react["default"].createElement(_IconButton["default"], {
|
|
37
35
|
size: "compact",
|
|
38
36
|
onClick: closeButtonOnClick,
|
|
@@ -45,7 +45,6 @@ function Toolbar(_ref) {
|
|
|
45
45
|
floating: shouldFloat,
|
|
46
46
|
totalNumOfTableRows: totalNumOfTableRows
|
|
47
47
|
}, batchActions)) : /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, /*#__PURE__*/_react["default"].createElement(_styled.LeftSideContainer, null, title && /*#__PURE__*/_react["default"].createElement(_styled.TitleContainer, null, /*#__PURE__*/_react["default"].createElement(_Typography["default"], {
|
|
48
|
-
hideVerticalSpacing: true,
|
|
49
48
|
variant: titleVariant
|
|
50
49
|
}, title)), leftContent && /*#__PURE__*/_react["default"].createElement(_styled.LeftActionsContainer, null, leftContent)), rightActions.length > 0 && /*#__PURE__*/_react["default"].createElement(_styled.RightActionsContainer, null, ActionsComponents)));
|
|
51
50
|
}
|
|
@@ -17,14 +17,11 @@ var text = _system.colorUseCases.text;
|
|
|
17
17
|
var overflowSharedStyles = {
|
|
18
18
|
overflow: "hidden"
|
|
19
19
|
};
|
|
20
|
-
var hideVerticalSpacingSharedStyles = {
|
|
21
|
-
marginTop: 0,
|
|
22
|
-
marginBottom: 0
|
|
23
|
-
};
|
|
24
20
|
var _default = exports["default"] = (0, _system.css)((_css = {
|
|
25
21
|
fontFamily: "$default",
|
|
26
22
|
fontSize: "inherit",
|
|
27
|
-
|
|
23
|
+
// Reset browser default margins added to certain semantic HTML elements
|
|
24
|
+
marginBlock: 0
|
|
28
25
|
}, (0, _defineProperty2["default"])(_css, "& > ".concat(_icons.BaseIcon), {
|
|
29
26
|
// Aligning Icons to text baseline = most Icons have 2px inner bottom spacing -> 2/24 * 2 = 0.2 rounded up
|
|
30
27
|
marginTop: "-.2em"
|
|
@@ -115,12 +112,6 @@ var _default = exports["default"] = (0, _system.css)((_css = {
|
|
|
115
112
|
color: (0, _system.getColorScaleValueByUseCase)("success", text.hiSaturation)
|
|
116
113
|
}
|
|
117
114
|
},
|
|
118
|
-
/**
|
|
119
|
-
* If `true`, the component will have no top or bottom margins
|
|
120
|
-
*/
|
|
121
|
-
hideVerticalSpacing: {
|
|
122
|
-
"true": hideVerticalSpacingSharedStyles
|
|
123
|
-
},
|
|
124
115
|
/**
|
|
125
116
|
* Customises the font size and weight to a pre-set option.
|
|
126
117
|
*/
|
|
@@ -134,15 +125,9 @@ var _default = exports["default"] = (0, _system.css)((_css = {
|
|
|
134
125
|
marginTop: "$md"
|
|
135
126
|
}
|
|
136
127
|
}),
|
|
137
|
-
sectionSubtitle: (0,
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
sectionTitle: (0, _extends2["default"])({}, (0, _helpers.getVariantStyles)("$sectionTitle"), {
|
|
141
|
-
marginBottom: "$lg"
|
|
142
|
-
}),
|
|
143
|
-
pageTitle: (0, _extends2["default"])({}, (0, _helpers.getVariantStyles)("$pageTitle"), {
|
|
144
|
-
marginBottom: "$xl"
|
|
145
|
-
}),
|
|
128
|
+
sectionSubtitle: (0, _helpers.getVariantStyles)("$sectionSubtitle"),
|
|
129
|
+
sectionTitle: (0, _helpers.getVariantStyles)("$sectionTitle"),
|
|
130
|
+
pageTitle: (0, _helpers.getVariantStyles)("$pageTitle"),
|
|
146
131
|
display100: (0, _helpers.getVariantStyles)("$display100"),
|
|
147
132
|
display200: (0, _helpers.getVariantStyles)("$display200"),
|
|
148
133
|
display300: (0, _helpers.getVariantStyles)("$display300"),
|
|
@@ -161,75 +146,7 @@ var _default = exports["default"] = (0, _system.css)((_css = {
|
|
|
161
146
|
2: (0, _helpers.getMaxLines)(2, "$body"),
|
|
162
147
|
3: (0, _helpers.getMaxLines)(3, "$body")
|
|
163
148
|
}
|
|
164
|
-
}), (0, _defineProperty2["default"])(_css, "compoundVariants",
|
|
165
|
-
variant: "inherit",
|
|
166
|
-
hideVerticalSpacing: true,
|
|
167
|
-
css: hideVerticalSpacingSharedStyles
|
|
168
|
-
}, {
|
|
169
|
-
variant: "caption",
|
|
170
|
-
hideVerticalSpacing: true,
|
|
171
|
-
css: hideVerticalSpacingSharedStyles
|
|
172
|
-
}, {
|
|
173
|
-
variant: "button",
|
|
174
|
-
hideVerticalSpacing: true,
|
|
175
|
-
css: hideVerticalSpacingSharedStyles
|
|
176
|
-
}, {
|
|
177
|
-
variant: "body",
|
|
178
|
-
hideVerticalSpacing: true,
|
|
179
|
-
css: hideVerticalSpacingSharedStyles
|
|
180
|
-
}, {
|
|
181
|
-
variant: "paragraph",
|
|
182
|
-
hideVerticalSpacing: true,
|
|
183
|
-
css: hideVerticalSpacingSharedStyles
|
|
184
|
-
}, {
|
|
185
|
-
variant: "sectionSubtitle",
|
|
186
|
-
hideVerticalSpacing: true,
|
|
187
|
-
css: hideVerticalSpacingSharedStyles
|
|
188
|
-
}, {
|
|
189
|
-
variant: "sectionTitle",
|
|
190
|
-
hideVerticalSpacing: true,
|
|
191
|
-
css: hideVerticalSpacingSharedStyles
|
|
192
|
-
}, {
|
|
193
|
-
variant: "pageTitle",
|
|
194
|
-
hideVerticalSpacing: true,
|
|
195
|
-
css: hideVerticalSpacingSharedStyles
|
|
196
|
-
}, {
|
|
197
|
-
variant: "display100",
|
|
198
|
-
hideVerticalSpacing: true,
|
|
199
|
-
css: hideVerticalSpacingSharedStyles
|
|
200
|
-
}, {
|
|
201
|
-
variant: "display200",
|
|
202
|
-
hideVerticalSpacing: true,
|
|
203
|
-
css: hideVerticalSpacingSharedStyles
|
|
204
|
-
}, {
|
|
205
|
-
variant: "display300",
|
|
206
|
-
hideVerticalSpacing: true,
|
|
207
|
-
css: hideVerticalSpacingSharedStyles
|
|
208
|
-
}, {
|
|
209
|
-
variant: "display400",
|
|
210
|
-
hideVerticalSpacing: true,
|
|
211
|
-
css: hideVerticalSpacingSharedStyles
|
|
212
|
-
}, {
|
|
213
|
-
variant: "display500",
|
|
214
|
-
hideVerticalSpacing: true,
|
|
215
|
-
css: hideVerticalSpacingSharedStyles
|
|
216
|
-
}, {
|
|
217
|
-
variant: "display600",
|
|
218
|
-
hideVerticalSpacing: true,
|
|
219
|
-
css: hideVerticalSpacingSharedStyles
|
|
220
|
-
}, {
|
|
221
|
-
variant: "display700",
|
|
222
|
-
hideVerticalSpacing: true,
|
|
223
|
-
css: hideVerticalSpacingSharedStyles
|
|
224
|
-
}, {
|
|
225
|
-
variant: "display800",
|
|
226
|
-
hideVerticalSpacing: true,
|
|
227
|
-
css: hideVerticalSpacingSharedStyles
|
|
228
|
-
}, {
|
|
229
|
-
variant: "display900",
|
|
230
|
-
hideVerticalSpacing: true,
|
|
231
|
-
css: hideVerticalSpacingSharedStyles
|
|
232
|
-
}])), (0, _defineProperty2["default"])(_css, "ul, ol", {
|
|
149
|
+
}), (0, _defineProperty2["default"])(_css, "compoundVariants", (0, _toConsumableArray2["default"])((0, _helpers.getMaxLinesVariants)(_constants.AVAILABLE_MAX_LINES, _constants.AVAILABLE_VARIANTS))), (0, _defineProperty2["default"])(_css, "ul, ol", {
|
|
233
150
|
listStylePosition: "inside",
|
|
234
151
|
paddingInlineStart: 0,
|
|
235
152
|
marginBlock: "inherit"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/Dialog/components/DialogHeader/index.tsx"],"names":[],"mappings":";AAYA,OAAO,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAE5C,iBAAS,YAAY,CAAC,EACpB,KAAK,EACL,QAAQ,EACR,IAAI,EACJ,kBAAkB,EAClB,OAAO,GACR,EAAE,iBAAiB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/Dialog/components/DialogHeader/index.tsx"],"names":[],"mappings":";AAYA,OAAO,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAE5C,iBAAS,YAAY,CAAC,EACpB,KAAK,EACL,QAAQ,EACR,IAAI,EACJ,kBAAkB,EAClB,OAAO,GACR,EAAE,iBAAiB,eAiCnB;AAED,eAAe,YAAY,CAAC"}
|
|
@@ -19,8 +19,8 @@ function DialogHeader(_a) {
|
|
|
19
19
|
react_1.default.createElement(styled_1.TitleContainer, null,
|
|
20
20
|
constants_1.default[variant].titleIcon && IconComponent && (react_1.default.createElement(IconComponent, { color: "inherit" })),
|
|
21
21
|
react_1.default.createElement(Stack_1.default, { spacing: "none" },
|
|
22
|
-
react_1.default.createElement(Typography_1.default, { color: "inherit", variant: "sectionTitle"
|
|
23
|
-
subtitle && (react_1.default.createElement(Typography_1.default, { color: "lowContrast", variant: "sectionSubtitle"
|
|
22
|
+
react_1.default.createElement(Typography_1.default, { color: "inherit", variant: "sectionTitle" }, title),
|
|
23
|
+
subtitle && (react_1.default.createElement(Typography_1.default, { color: "lowContrast", variant: "sectionSubtitle" }, subtitle)))),
|
|
24
24
|
constants_1.default[variant].headerCloseAllowed && closeButtonOnClick && (react_1.default.createElement(styled_1.UtilityIconContainer, null,
|
|
25
25
|
react_1.default.createElement(IconButton_1.default, { size: "compact", onClick: closeButtonOnClick, tooltipContent: "Close Dialog", icon: react_1.default.createElement(icons_1.Close, { color: "lowContrast" }) })))));
|
|
26
26
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/Dialog/components/DialogHeader/index.tsx"],"names":[],"mappings":";;;;;AAAA,4CAA2C;AAC3C,gDAA0B;AAE1B,mEAA6C;AAC7C,yDAAmC;AACnC,mEAA6C;AAC7C,8DAA8C;AAC9C,mCAIkB;AAGlB,SAAS,YAAY,CAAC,EAMF;QALlB,KAAK,WAAA,EACL,QAAQ,cAAA,EACR,IAAI,UAAA,EACJ,kBAAkB,wBAAA,EAClB,OAAO,aAAA;IAEP,IAAM,aAAa,GAAG,mBAAe,CAAC,OAAO,CAAC,CAAC,UAAU;QACvD,CAAC,CAAC,mBAAe,CAAC,OAAO,CAAC,CAAC,UAAU;QACrC,CAAC,CAAC,IAAI,CAAC;IACT,OAAO,CACL,8BAAC,yBAAgB,IAAC,OAAO,EAAE,OAAO;QAChC,8BAAC,uBAAc;YACZ,mBAAe,CAAC,OAAO,CAAC,CAAC,SAAS,IAAI,aAAa,IAAI,CACtD,8BAAC,aAAa,IAAC,KAAK,EAAC,SAAS,GAAG,CAClC;YACD,8BAAC,eAAK,IAAC,OAAO,EAAC,MAAM;gBACnB,8BAAC,oBAAU,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/Dialog/components/DialogHeader/index.tsx"],"names":[],"mappings":";;;;;AAAA,4CAA2C;AAC3C,gDAA0B;AAE1B,mEAA6C;AAC7C,yDAAmC;AACnC,mEAA6C;AAC7C,8DAA8C;AAC9C,mCAIkB;AAGlB,SAAS,YAAY,CAAC,EAMF;QALlB,KAAK,WAAA,EACL,QAAQ,cAAA,EACR,IAAI,UAAA,EACJ,kBAAkB,wBAAA,EAClB,OAAO,aAAA;IAEP,IAAM,aAAa,GAAG,mBAAe,CAAC,OAAO,CAAC,CAAC,UAAU;QACvD,CAAC,CAAC,mBAAe,CAAC,OAAO,CAAC,CAAC,UAAU;QACrC,CAAC,CAAC,IAAI,CAAC;IACT,OAAO,CACL,8BAAC,yBAAgB,IAAC,OAAO,EAAE,OAAO;QAChC,8BAAC,uBAAc;YACZ,mBAAe,CAAC,OAAO,CAAC,CAAC,SAAS,IAAI,aAAa,IAAI,CACtD,8BAAC,aAAa,IAAC,KAAK,EAAC,SAAS,GAAG,CAClC;YACD,8BAAC,eAAK,IAAC,OAAO,EAAC,MAAM;gBACnB,8BAAC,oBAAU,IAAC,KAAK,EAAC,SAAS,EAAC,OAAO,EAAC,cAAc,IAC/C,KAAK,CACK;gBACZ,QAAQ,IAAI,CACX,8BAAC,oBAAU,IAAC,KAAK,EAAC,aAAa,EAAC,OAAO,EAAC,iBAAiB,IACtD,QAAQ,CACE,CACd,CACK,CACO;QAChB,mBAAe,CAAC,OAAO,CAAC,CAAC,kBAAkB,IAAI,kBAAkB,IAAI,CACpE,8BAAC,6BAAoB;YACnB,8BAAC,oBAAU,IACT,IAAI,EAAC,SAAS,EACd,OAAO,EAAE,kBAAkB,EAC3B,cAAc,EAAC,cAAc,EAC7B,IAAI,EAAE,8BAAC,aAAK,IAAC,KAAK,EAAC,aAAa,GAAG,GACnC,CACmB,CACxB,CACgB,CACpB,CAAC;AACJ,CAAC;AAED,kBAAe,YAAY,CAAC"}
|
|
@@ -8,14 +8,13 @@ declare const Link: React.ForwardRefExoticComponent<Pick<{
|
|
|
8
8
|
asChild?: never;
|
|
9
9
|
} & Omit<Pick<React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "key" | keyof React.AnchorHTMLAttributes<HTMLAnchorElement>> & {
|
|
10
10
|
ref?: React.Ref<HTMLAnchorElement>;
|
|
11
|
-
}, "color" | "maxLines" | "textAlign" | "textOverflow" | "css" | "wrap" | "variant" | "
|
|
11
|
+
}, "color" | "maxLines" | "textAlign" | "textOverflow" | "css" | "wrap" | "variant" | "standalone"> & import("@stitches/react/types/styled-component").TransformProps<import("@stitches/react/types/styled-component").StyledComponentProps<[import("@stitches/react/types/styled-component").CssComponent<never, import("@stitches/react/types/styled-component").StyledComponentProps<[{
|
|
12
12
|
[x: string]: string | number | any[] | {
|
|
13
13
|
marginTop: string;
|
|
14
14
|
textAlign?: undefined;
|
|
15
15
|
textOverflow?: undefined;
|
|
16
16
|
wrap?: undefined;
|
|
17
17
|
color?: undefined;
|
|
18
|
-
hideVerticalSpacing?: undefined;
|
|
19
18
|
variant?: undefined;
|
|
20
19
|
maxLines?: undefined;
|
|
21
20
|
listStylePosition?: undefined;
|
|
@@ -100,12 +99,6 @@ declare const Link: React.ForwardRefExoticComponent<Pick<{
|
|
|
100
99
|
color: "$colors$blue2" | "$colors$cyan2" | "$colors$green2" | "$colors$grey2" | "$colors$greyA2" | "$colors$orange2" | "$colors$pink2" | "$colors$red2" | "$colors$yellow2" | "$colors$blue1" | "$colors$cyan1" | "$colors$green1" | "$colors$grey1" | "$colors$greyA1" | "$colors$orange1" | "$colors$pink1" | "$colors$red1" | "$colors$yellow1" | "$colors$blue7" | "$colors$cyan7" | "$colors$green7" | "$colors$grey7" | "$colors$greyA7" | "$colors$orange7" | "$colors$pink7" | "$colors$red7" | "$colors$yellow7" | "$colors$blue12" | "$colors$cyan12" | "$colors$green12" | "$colors$grey12" | "$colors$greyA12" | "$colors$orange12" | "$colors$pink12" | "$colors$red12" | "$colors$yellow12" | "$colors$blue3" | "$colors$cyan3" | "$colors$green3" | "$colors$grey3" | "$colors$greyA3" | "$colors$orange3" | "$colors$pink3" | "$colors$red3" | "$colors$yellow3" | "$colors$blue4" | "$colors$cyan4" | "$colors$green4" | "$colors$grey4" | "$colors$greyA4" | "$colors$orange4" | "$colors$pink4" | "$colors$red4" | "$colors$yellow4" | "$colors$blue5" | "$colors$cyan5" | "$colors$green5" | "$colors$grey5" | "$colors$greyA5" | "$colors$orange5" | "$colors$pink5" | "$colors$red5" | "$colors$yellow5" | "$colors$blue9" | "$colors$cyan9" | "$colors$green9" | "$colors$grey9" | "$colors$greyA9" | "$colors$orange9" | "$colors$pink9" | "$colors$red9" | "$colors$yellow9" | "$colors$blue10" | "$colors$cyan10" | "$colors$green10" | "$colors$grey10" | "$colors$greyA10" | "$colors$orange10" | "$colors$pink10" | "$colors$red10" | "$colors$yellow10" | "$colors$blue11" | "$colors$cyan11" | "$colors$green11" | "$colors$grey11" | "$colors$greyA11" | "$colors$orange11" | "$colors$pink11" | "$colors$red11" | "$colors$yellow11" | "$colors$blue6" | "$colors$cyan6" | "$colors$green6" | "$colors$grey6" | "$colors$greyA6" | "$colors$orange6" | "$colors$pink6" | "$colors$red6" | "$colors$yellow6" | "$colors$blue8" | "$colors$cyan8" | "$colors$green8" | "$colors$grey8" | "$colors$greyA8" | "$colors$orange8" | "$colors$pink8" | "$colors$red8" | "$colors$yellow8" | "$colors$blue13" | "$colors$cyan13" | "$colors$green13" | "$colors$grey13" | "$colors$greyA13" | "$colors$orange13" | "$colors$pink13" | "$colors$red13" | "$colors$yellow13" | "$colors$neutral2" | "$colors$neutralA2" | "$colors$primary2" | "$colors$accent2" | "$colors$success2" | "$colors$info2" | "$colors$warning2" | "$colors$critical2" | "$colors$neutral1" | "$colors$neutralA1" | "$colors$primary1" | "$colors$accent1" | "$colors$success1" | "$colors$info1" | "$colors$warning1" | "$colors$critical1" | "$colors$neutral7" | "$colors$neutralA7" | "$colors$primary7" | "$colors$accent7" | "$colors$success7" | "$colors$info7" | "$colors$warning7" | "$colors$critical7" | "$colors$neutral12" | "$colors$neutralA12" | "$colors$primary12" | "$colors$accent12" | "$colors$success12" | "$colors$info12" | "$colors$warning12" | "$colors$critical12" | "$colors$neutral3" | "$colors$neutralA3" | "$colors$primary3" | "$colors$accent3" | "$colors$success3" | "$colors$info3" | "$colors$warning3" | "$colors$critical3" | "$colors$neutral4" | "$colors$neutralA4" | "$colors$primary4" | "$colors$accent4" | "$colors$success4" | "$colors$info4" | "$colors$warning4" | "$colors$critical4" | "$colors$neutral5" | "$colors$neutralA5" | "$colors$primary5" | "$colors$accent5" | "$colors$success5" | "$colors$info5" | "$colors$warning5" | "$colors$critical5" | "$colors$neutral9" | "$colors$neutralA9" | "$colors$primary9" | "$colors$accent9" | "$colors$success9" | "$colors$info9" | "$colors$warning9" | "$colors$critical9" | "$colors$neutral10" | "$colors$neutralA10" | "$colors$primary10" | "$colors$accent10" | "$colors$success10" | "$colors$info10" | "$colors$warning10" | "$colors$critical10" | "$colors$neutral11" | "$colors$neutralA11" | "$colors$primary11" | "$colors$accent11" | "$colors$success11" | "$colors$info11" | "$colors$warning11" | "$colors$critical11" | "$colors$neutral6" | "$colors$neutralA6" | "$colors$primary6" | "$colors$accent6" | "$colors$success6" | "$colors$info6" | "$colors$warning6" | "$colors$critical6" | "$colors$neutral8" | "$colors$neutralA8" | "$colors$primary8" | "$colors$accent8" | "$colors$success8" | "$colors$info8" | "$colors$warning8" | "$colors$critical8" | "$colors$neutral13" | "$colors$neutralA13" | "$colors$primary13" | "$colors$accent13" | "$colors$success13" | "$colors$info13" | "$colors$warning13" | "$colors$critical13";
|
|
101
100
|
};
|
|
102
101
|
};
|
|
103
|
-
hideVerticalSpacing: {
|
|
104
|
-
true: {
|
|
105
|
-
marginTop: number;
|
|
106
|
-
marginBottom: number;
|
|
107
|
-
};
|
|
108
|
-
};
|
|
109
102
|
variant: {
|
|
110
103
|
inherit: {
|
|
111
104
|
fontSize: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
@@ -146,7 +139,6 @@ declare const Link: React.ForwardRefExoticComponent<Pick<{
|
|
|
146
139
|
fontFamily: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
147
140
|
};
|
|
148
141
|
sectionSubtitle: {
|
|
149
|
-
marginBottom: string;
|
|
150
142
|
fontSize: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
151
143
|
fontWeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
152
144
|
lineHeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
@@ -154,7 +146,6 @@ declare const Link: React.ForwardRefExoticComponent<Pick<{
|
|
|
154
146
|
fontFamily: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
155
147
|
};
|
|
156
148
|
sectionTitle: {
|
|
157
|
-
marginBottom: string;
|
|
158
149
|
fontSize: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
159
150
|
fontWeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
160
151
|
lineHeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
@@ -162,7 +153,6 @@ declare const Link: React.ForwardRefExoticComponent<Pick<{
|
|
|
162
153
|
fontFamily: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
163
154
|
};
|
|
164
155
|
pageTitle: {
|
|
165
|
-
marginBottom: string;
|
|
166
156
|
fontSize: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
167
157
|
fontWeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
168
158
|
lineHeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
@@ -275,13 +265,12 @@ declare const Link: React.ForwardRefExoticComponent<Pick<{
|
|
|
275
265
|
textOverflow?: undefined;
|
|
276
266
|
wrap?: undefined;
|
|
277
267
|
color?: undefined;
|
|
278
|
-
hideVerticalSpacing?: undefined;
|
|
279
268
|
variant?: undefined;
|
|
280
269
|
maxLines?: undefined;
|
|
281
270
|
};
|
|
282
271
|
fontFamily: string;
|
|
283
272
|
fontSize: string;
|
|
284
|
-
|
|
273
|
+
marginBlock: number;
|
|
285
274
|
variants: {
|
|
286
275
|
textAlign: {
|
|
287
276
|
start: {
|
|
@@ -361,12 +350,6 @@ declare const Link: React.ForwardRefExoticComponent<Pick<{
|
|
|
361
350
|
color: "$colors$blue2" | "$colors$cyan2" | "$colors$green2" | "$colors$grey2" | "$colors$greyA2" | "$colors$orange2" | "$colors$pink2" | "$colors$red2" | "$colors$yellow2" | "$colors$blue1" | "$colors$cyan1" | "$colors$green1" | "$colors$grey1" | "$colors$greyA1" | "$colors$orange1" | "$colors$pink1" | "$colors$red1" | "$colors$yellow1" | "$colors$blue7" | "$colors$cyan7" | "$colors$green7" | "$colors$grey7" | "$colors$greyA7" | "$colors$orange7" | "$colors$pink7" | "$colors$red7" | "$colors$yellow7" | "$colors$blue12" | "$colors$cyan12" | "$colors$green12" | "$colors$grey12" | "$colors$greyA12" | "$colors$orange12" | "$colors$pink12" | "$colors$red12" | "$colors$yellow12" | "$colors$blue3" | "$colors$cyan3" | "$colors$green3" | "$colors$grey3" | "$colors$greyA3" | "$colors$orange3" | "$colors$pink3" | "$colors$red3" | "$colors$yellow3" | "$colors$blue4" | "$colors$cyan4" | "$colors$green4" | "$colors$grey4" | "$colors$greyA4" | "$colors$orange4" | "$colors$pink4" | "$colors$red4" | "$colors$yellow4" | "$colors$blue5" | "$colors$cyan5" | "$colors$green5" | "$colors$grey5" | "$colors$greyA5" | "$colors$orange5" | "$colors$pink5" | "$colors$red5" | "$colors$yellow5" | "$colors$blue9" | "$colors$cyan9" | "$colors$green9" | "$colors$grey9" | "$colors$greyA9" | "$colors$orange9" | "$colors$pink9" | "$colors$red9" | "$colors$yellow9" | "$colors$blue10" | "$colors$cyan10" | "$colors$green10" | "$colors$grey10" | "$colors$greyA10" | "$colors$orange10" | "$colors$pink10" | "$colors$red10" | "$colors$yellow10" | "$colors$blue11" | "$colors$cyan11" | "$colors$green11" | "$colors$grey11" | "$colors$greyA11" | "$colors$orange11" | "$colors$pink11" | "$colors$red11" | "$colors$yellow11" | "$colors$blue6" | "$colors$cyan6" | "$colors$green6" | "$colors$grey6" | "$colors$greyA6" | "$colors$orange6" | "$colors$pink6" | "$colors$red6" | "$colors$yellow6" | "$colors$blue8" | "$colors$cyan8" | "$colors$green8" | "$colors$grey8" | "$colors$greyA8" | "$colors$orange8" | "$colors$pink8" | "$colors$red8" | "$colors$yellow8" | "$colors$blue13" | "$colors$cyan13" | "$colors$green13" | "$colors$grey13" | "$colors$greyA13" | "$colors$orange13" | "$colors$pink13" | "$colors$red13" | "$colors$yellow13" | "$colors$neutral2" | "$colors$neutralA2" | "$colors$primary2" | "$colors$accent2" | "$colors$success2" | "$colors$info2" | "$colors$warning2" | "$colors$critical2" | "$colors$neutral1" | "$colors$neutralA1" | "$colors$primary1" | "$colors$accent1" | "$colors$success1" | "$colors$info1" | "$colors$warning1" | "$colors$critical1" | "$colors$neutral7" | "$colors$neutralA7" | "$colors$primary7" | "$colors$accent7" | "$colors$success7" | "$colors$info7" | "$colors$warning7" | "$colors$critical7" | "$colors$neutral12" | "$colors$neutralA12" | "$colors$primary12" | "$colors$accent12" | "$colors$success12" | "$colors$info12" | "$colors$warning12" | "$colors$critical12" | "$colors$neutral3" | "$colors$neutralA3" | "$colors$primary3" | "$colors$accent3" | "$colors$success3" | "$colors$info3" | "$colors$warning3" | "$colors$critical3" | "$colors$neutral4" | "$colors$neutralA4" | "$colors$primary4" | "$colors$accent4" | "$colors$success4" | "$colors$info4" | "$colors$warning4" | "$colors$critical4" | "$colors$neutral5" | "$colors$neutralA5" | "$colors$primary5" | "$colors$accent5" | "$colors$success5" | "$colors$info5" | "$colors$warning5" | "$colors$critical5" | "$colors$neutral9" | "$colors$neutralA9" | "$colors$primary9" | "$colors$accent9" | "$colors$success9" | "$colors$info9" | "$colors$warning9" | "$colors$critical9" | "$colors$neutral10" | "$colors$neutralA10" | "$colors$primary10" | "$colors$accent10" | "$colors$success10" | "$colors$info10" | "$colors$warning10" | "$colors$critical10" | "$colors$neutral11" | "$colors$neutralA11" | "$colors$primary11" | "$colors$accent11" | "$colors$success11" | "$colors$info11" | "$colors$warning11" | "$colors$critical11" | "$colors$neutral6" | "$colors$neutralA6" | "$colors$primary6" | "$colors$accent6" | "$colors$success6" | "$colors$info6" | "$colors$warning6" | "$colors$critical6" | "$colors$neutral8" | "$colors$neutralA8" | "$colors$primary8" | "$colors$accent8" | "$colors$success8" | "$colors$info8" | "$colors$warning8" | "$colors$critical8" | "$colors$neutral13" | "$colors$neutralA13" | "$colors$primary13" | "$colors$accent13" | "$colors$success13" | "$colors$info13" | "$colors$warning13" | "$colors$critical13";
|
|
362
351
|
};
|
|
363
352
|
};
|
|
364
|
-
hideVerticalSpacing: {
|
|
365
|
-
true: {
|
|
366
|
-
marginTop: number;
|
|
367
|
-
marginBottom: number;
|
|
368
|
-
};
|
|
369
|
-
};
|
|
370
353
|
variant: {
|
|
371
354
|
inherit: {
|
|
372
355
|
fontSize: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
@@ -407,7 +390,6 @@ declare const Link: React.ForwardRefExoticComponent<Pick<{
|
|
|
407
390
|
fontFamily: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
408
391
|
};
|
|
409
392
|
sectionSubtitle: {
|
|
410
|
-
marginBottom: string;
|
|
411
393
|
fontSize: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
412
394
|
fontWeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
413
395
|
lineHeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
@@ -415,7 +397,6 @@ declare const Link: React.ForwardRefExoticComponent<Pick<{
|
|
|
415
397
|
fontFamily: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
416
398
|
};
|
|
417
399
|
sectionTitle: {
|
|
418
|
-
marginBottom: string;
|
|
419
400
|
fontSize: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
420
401
|
fontWeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
421
402
|
lineHeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
@@ -423,7 +404,6 @@ declare const Link: React.ForwardRefExoticComponent<Pick<{
|
|
|
423
404
|
fontFamily: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
424
405
|
};
|
|
425
406
|
pageTitle: {
|
|
426
|
-
marginBottom: string;
|
|
427
407
|
fontSize: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
428
408
|
fontWeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
429
409
|
lineHeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
@@ -1604,6 +1584,6 @@ declare const Link: React.ForwardRefExoticComponent<Pick<{
|
|
|
1604
1584
|
css?: never;
|
|
1605
1585
|
as?: never;
|
|
1606
1586
|
asChild?: never;
|
|
1607
|
-
} | "target" | "type" | "href" | "download" | "hrefLang" | "ping" | "rel" | "variant" | "
|
|
1587
|
+
} | "target" | "type" | "href" | "download" | "hrefLang" | "ping" | "rel" | "variant" | "standalone"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
1608
1588
|
export default Link;
|
|
1609
1589
|
//# sourceMappingURL=Link.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Link.d.ts","sourceRoot":"","sources":["../../../../src/Link/Link.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,QAAA,MAAM,IAAI
|
|
1
|
+
{"version":3,"file":"Link.d.ts","sourceRoot":"","sources":["../../../../src/Link/Link.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,QAAA,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+IAOT,CAAC;AAIF,eAAe,IAAI,CAAC"}
|
|
@@ -5,7 +5,6 @@ export declare const BaseLink: import("@stitches/react/types/styled-component").
|
|
|
5
5
|
textOverflow?: undefined;
|
|
6
6
|
wrap?: undefined;
|
|
7
7
|
color?: undefined;
|
|
8
|
-
hideVerticalSpacing?: undefined;
|
|
9
8
|
variant?: undefined;
|
|
10
9
|
maxLines?: undefined;
|
|
11
10
|
listStylePosition?: undefined;
|
|
@@ -90,12 +89,6 @@ export declare const BaseLink: import("@stitches/react/types/styled-component").
|
|
|
90
89
|
color: "$colors$blue2" | "$colors$cyan2" | "$colors$green2" | "$colors$grey2" | "$colors$greyA2" | "$colors$orange2" | "$colors$pink2" | "$colors$red2" | "$colors$yellow2" | "$colors$blue1" | "$colors$cyan1" | "$colors$green1" | "$colors$grey1" | "$colors$greyA1" | "$colors$orange1" | "$colors$pink1" | "$colors$red1" | "$colors$yellow1" | "$colors$blue7" | "$colors$cyan7" | "$colors$green7" | "$colors$grey7" | "$colors$greyA7" | "$colors$orange7" | "$colors$pink7" | "$colors$red7" | "$colors$yellow7" | "$colors$blue12" | "$colors$cyan12" | "$colors$green12" | "$colors$grey12" | "$colors$greyA12" | "$colors$orange12" | "$colors$pink12" | "$colors$red12" | "$colors$yellow12" | "$colors$blue3" | "$colors$cyan3" | "$colors$green3" | "$colors$grey3" | "$colors$greyA3" | "$colors$orange3" | "$colors$pink3" | "$colors$red3" | "$colors$yellow3" | "$colors$blue4" | "$colors$cyan4" | "$colors$green4" | "$colors$grey4" | "$colors$greyA4" | "$colors$orange4" | "$colors$pink4" | "$colors$red4" | "$colors$yellow4" | "$colors$blue5" | "$colors$cyan5" | "$colors$green5" | "$colors$grey5" | "$colors$greyA5" | "$colors$orange5" | "$colors$pink5" | "$colors$red5" | "$colors$yellow5" | "$colors$blue9" | "$colors$cyan9" | "$colors$green9" | "$colors$grey9" | "$colors$greyA9" | "$colors$orange9" | "$colors$pink9" | "$colors$red9" | "$colors$yellow9" | "$colors$blue10" | "$colors$cyan10" | "$colors$green10" | "$colors$grey10" | "$colors$greyA10" | "$colors$orange10" | "$colors$pink10" | "$colors$red10" | "$colors$yellow10" | "$colors$blue11" | "$colors$cyan11" | "$colors$green11" | "$colors$grey11" | "$colors$greyA11" | "$colors$orange11" | "$colors$pink11" | "$colors$red11" | "$colors$yellow11" | "$colors$blue6" | "$colors$cyan6" | "$colors$green6" | "$colors$grey6" | "$colors$greyA6" | "$colors$orange6" | "$colors$pink6" | "$colors$red6" | "$colors$yellow6" | "$colors$blue8" | "$colors$cyan8" | "$colors$green8" | "$colors$grey8" | "$colors$greyA8" | "$colors$orange8" | "$colors$pink8" | "$colors$red8" | "$colors$yellow8" | "$colors$blue13" | "$colors$cyan13" | "$colors$green13" | "$colors$grey13" | "$colors$greyA13" | "$colors$orange13" | "$colors$pink13" | "$colors$red13" | "$colors$yellow13" | "$colors$neutral2" | "$colors$neutralA2" | "$colors$primary2" | "$colors$accent2" | "$colors$success2" | "$colors$info2" | "$colors$warning2" | "$colors$critical2" | "$colors$neutral1" | "$colors$neutralA1" | "$colors$primary1" | "$colors$accent1" | "$colors$success1" | "$colors$info1" | "$colors$warning1" | "$colors$critical1" | "$colors$neutral7" | "$colors$neutralA7" | "$colors$primary7" | "$colors$accent7" | "$colors$success7" | "$colors$info7" | "$colors$warning7" | "$colors$critical7" | "$colors$neutral12" | "$colors$neutralA12" | "$colors$primary12" | "$colors$accent12" | "$colors$success12" | "$colors$info12" | "$colors$warning12" | "$colors$critical12" | "$colors$neutral3" | "$colors$neutralA3" | "$colors$primary3" | "$colors$accent3" | "$colors$success3" | "$colors$info3" | "$colors$warning3" | "$colors$critical3" | "$colors$neutral4" | "$colors$neutralA4" | "$colors$primary4" | "$colors$accent4" | "$colors$success4" | "$colors$info4" | "$colors$warning4" | "$colors$critical4" | "$colors$neutral5" | "$colors$neutralA5" | "$colors$primary5" | "$colors$accent5" | "$colors$success5" | "$colors$info5" | "$colors$warning5" | "$colors$critical5" | "$colors$neutral9" | "$colors$neutralA9" | "$colors$primary9" | "$colors$accent9" | "$colors$success9" | "$colors$info9" | "$colors$warning9" | "$colors$critical9" | "$colors$neutral10" | "$colors$neutralA10" | "$colors$primary10" | "$colors$accent10" | "$colors$success10" | "$colors$info10" | "$colors$warning10" | "$colors$critical10" | "$colors$neutral11" | "$colors$neutralA11" | "$colors$primary11" | "$colors$accent11" | "$colors$success11" | "$colors$info11" | "$colors$warning11" | "$colors$critical11" | "$colors$neutral6" | "$colors$neutralA6" | "$colors$primary6" | "$colors$accent6" | "$colors$success6" | "$colors$info6" | "$colors$warning6" | "$colors$critical6" | "$colors$neutral8" | "$colors$neutralA8" | "$colors$primary8" | "$colors$accent8" | "$colors$success8" | "$colors$info8" | "$colors$warning8" | "$colors$critical8" | "$colors$neutral13" | "$colors$neutralA13" | "$colors$primary13" | "$colors$accent13" | "$colors$success13" | "$colors$info13" | "$colors$warning13" | "$colors$critical13";
|
|
91
90
|
};
|
|
92
91
|
};
|
|
93
|
-
hideVerticalSpacing: {
|
|
94
|
-
true: {
|
|
95
|
-
marginTop: number;
|
|
96
|
-
marginBottom: number;
|
|
97
|
-
};
|
|
98
|
-
};
|
|
99
92
|
variant: {
|
|
100
93
|
inherit: {
|
|
101
94
|
fontSize: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
@@ -136,7 +129,6 @@ export declare const BaseLink: import("@stitches/react/types/styled-component").
|
|
|
136
129
|
fontFamily: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
137
130
|
};
|
|
138
131
|
sectionSubtitle: {
|
|
139
|
-
marginBottom: string;
|
|
140
132
|
fontSize: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
141
133
|
fontWeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
142
134
|
lineHeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
@@ -144,7 +136,6 @@ export declare const BaseLink: import("@stitches/react/types/styled-component").
|
|
|
144
136
|
fontFamily: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
145
137
|
};
|
|
146
138
|
sectionTitle: {
|
|
147
|
-
marginBottom: string;
|
|
148
139
|
fontSize: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
149
140
|
fontWeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
150
141
|
lineHeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
@@ -152,7 +143,6 @@ export declare const BaseLink: import("@stitches/react/types/styled-component").
|
|
|
152
143
|
fontFamily: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
153
144
|
};
|
|
154
145
|
pageTitle: {
|
|
155
|
-
marginBottom: string;
|
|
156
146
|
fontSize: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
157
147
|
fontWeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
158
148
|
lineHeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
@@ -265,13 +255,12 @@ export declare const BaseLink: import("@stitches/react/types/styled-component").
|
|
|
265
255
|
textOverflow?: undefined;
|
|
266
256
|
wrap?: undefined;
|
|
267
257
|
color?: undefined;
|
|
268
|
-
hideVerticalSpacing?: undefined;
|
|
269
258
|
variant?: undefined;
|
|
270
259
|
maxLines?: undefined;
|
|
271
260
|
};
|
|
272
261
|
fontFamily: string;
|
|
273
262
|
fontSize: string;
|
|
274
|
-
|
|
263
|
+
marginBlock: number;
|
|
275
264
|
variants: {
|
|
276
265
|
textAlign: {
|
|
277
266
|
start: {
|
|
@@ -351,12 +340,6 @@ export declare const BaseLink: import("@stitches/react/types/styled-component").
|
|
|
351
340
|
color: "$colors$blue2" | "$colors$cyan2" | "$colors$green2" | "$colors$grey2" | "$colors$greyA2" | "$colors$orange2" | "$colors$pink2" | "$colors$red2" | "$colors$yellow2" | "$colors$blue1" | "$colors$cyan1" | "$colors$green1" | "$colors$grey1" | "$colors$greyA1" | "$colors$orange1" | "$colors$pink1" | "$colors$red1" | "$colors$yellow1" | "$colors$blue7" | "$colors$cyan7" | "$colors$green7" | "$colors$grey7" | "$colors$greyA7" | "$colors$orange7" | "$colors$pink7" | "$colors$red7" | "$colors$yellow7" | "$colors$blue12" | "$colors$cyan12" | "$colors$green12" | "$colors$grey12" | "$colors$greyA12" | "$colors$orange12" | "$colors$pink12" | "$colors$red12" | "$colors$yellow12" | "$colors$blue3" | "$colors$cyan3" | "$colors$green3" | "$colors$grey3" | "$colors$greyA3" | "$colors$orange3" | "$colors$pink3" | "$colors$red3" | "$colors$yellow3" | "$colors$blue4" | "$colors$cyan4" | "$colors$green4" | "$colors$grey4" | "$colors$greyA4" | "$colors$orange4" | "$colors$pink4" | "$colors$red4" | "$colors$yellow4" | "$colors$blue5" | "$colors$cyan5" | "$colors$green5" | "$colors$grey5" | "$colors$greyA5" | "$colors$orange5" | "$colors$pink5" | "$colors$red5" | "$colors$yellow5" | "$colors$blue9" | "$colors$cyan9" | "$colors$green9" | "$colors$grey9" | "$colors$greyA9" | "$colors$orange9" | "$colors$pink9" | "$colors$red9" | "$colors$yellow9" | "$colors$blue10" | "$colors$cyan10" | "$colors$green10" | "$colors$grey10" | "$colors$greyA10" | "$colors$orange10" | "$colors$pink10" | "$colors$red10" | "$colors$yellow10" | "$colors$blue11" | "$colors$cyan11" | "$colors$green11" | "$colors$grey11" | "$colors$greyA11" | "$colors$orange11" | "$colors$pink11" | "$colors$red11" | "$colors$yellow11" | "$colors$blue6" | "$colors$cyan6" | "$colors$green6" | "$colors$grey6" | "$colors$greyA6" | "$colors$orange6" | "$colors$pink6" | "$colors$red6" | "$colors$yellow6" | "$colors$blue8" | "$colors$cyan8" | "$colors$green8" | "$colors$grey8" | "$colors$greyA8" | "$colors$orange8" | "$colors$pink8" | "$colors$red8" | "$colors$yellow8" | "$colors$blue13" | "$colors$cyan13" | "$colors$green13" | "$colors$grey13" | "$colors$greyA13" | "$colors$orange13" | "$colors$pink13" | "$colors$red13" | "$colors$yellow13" | "$colors$neutral2" | "$colors$neutralA2" | "$colors$primary2" | "$colors$accent2" | "$colors$success2" | "$colors$info2" | "$colors$warning2" | "$colors$critical2" | "$colors$neutral1" | "$colors$neutralA1" | "$colors$primary1" | "$colors$accent1" | "$colors$success1" | "$colors$info1" | "$colors$warning1" | "$colors$critical1" | "$colors$neutral7" | "$colors$neutralA7" | "$colors$primary7" | "$colors$accent7" | "$colors$success7" | "$colors$info7" | "$colors$warning7" | "$colors$critical7" | "$colors$neutral12" | "$colors$neutralA12" | "$colors$primary12" | "$colors$accent12" | "$colors$success12" | "$colors$info12" | "$colors$warning12" | "$colors$critical12" | "$colors$neutral3" | "$colors$neutralA3" | "$colors$primary3" | "$colors$accent3" | "$colors$success3" | "$colors$info3" | "$colors$warning3" | "$colors$critical3" | "$colors$neutral4" | "$colors$neutralA4" | "$colors$primary4" | "$colors$accent4" | "$colors$success4" | "$colors$info4" | "$colors$warning4" | "$colors$critical4" | "$colors$neutral5" | "$colors$neutralA5" | "$colors$primary5" | "$colors$accent5" | "$colors$success5" | "$colors$info5" | "$colors$warning5" | "$colors$critical5" | "$colors$neutral9" | "$colors$neutralA9" | "$colors$primary9" | "$colors$accent9" | "$colors$success9" | "$colors$info9" | "$colors$warning9" | "$colors$critical9" | "$colors$neutral10" | "$colors$neutralA10" | "$colors$primary10" | "$colors$accent10" | "$colors$success10" | "$colors$info10" | "$colors$warning10" | "$colors$critical10" | "$colors$neutral11" | "$colors$neutralA11" | "$colors$primary11" | "$colors$accent11" | "$colors$success11" | "$colors$info11" | "$colors$warning11" | "$colors$critical11" | "$colors$neutral6" | "$colors$neutralA6" | "$colors$primary6" | "$colors$accent6" | "$colors$success6" | "$colors$info6" | "$colors$warning6" | "$colors$critical6" | "$colors$neutral8" | "$colors$neutralA8" | "$colors$primary8" | "$colors$accent8" | "$colors$success8" | "$colors$info8" | "$colors$warning8" | "$colors$critical8" | "$colors$neutral13" | "$colors$neutralA13" | "$colors$primary13" | "$colors$accent13" | "$colors$success13" | "$colors$info13" | "$colors$warning13" | "$colors$critical13";
|
|
352
341
|
};
|
|
353
342
|
};
|
|
354
|
-
hideVerticalSpacing: {
|
|
355
|
-
true: {
|
|
356
|
-
marginTop: number;
|
|
357
|
-
marginBottom: number;
|
|
358
|
-
};
|
|
359
|
-
};
|
|
360
343
|
variant: {
|
|
361
344
|
inherit: {
|
|
362
345
|
fontSize: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
@@ -397,7 +380,6 @@ export declare const BaseLink: import("@stitches/react/types/styled-component").
|
|
|
397
380
|
fontFamily: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
398
381
|
};
|
|
399
382
|
sectionSubtitle: {
|
|
400
|
-
marginBottom: string;
|
|
401
383
|
fontSize: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
402
384
|
fontWeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
403
385
|
lineHeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
@@ -405,7 +387,6 @@ export declare const BaseLink: import("@stitches/react/types/styled-component").
|
|
|
405
387
|
fontFamily: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
406
388
|
};
|
|
407
389
|
sectionTitle: {
|
|
408
|
-
marginBottom: string;
|
|
409
390
|
fontSize: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
410
391
|
fontWeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
411
392
|
lineHeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
@@ -413,7 +394,6 @@ export declare const BaseLink: import("@stitches/react/types/styled-component").
|
|
|
413
394
|
fontFamily: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
414
395
|
};
|
|
415
396
|
pageTitle: {
|
|
416
|
-
marginBottom: string;
|
|
417
397
|
fontSize: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
418
398
|
fontWeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
419
399
|
lineHeight: "inherit" | "$display100" | "$display200" | "$display300" | "$display400" | "$display500" | "$display600" | "$display700" | "$display800" | "$display900" | "$body" | "$caption" | "$pageTitle" | "$sectionTitle" | "$sectionSubtitle" | "$button" | "$textInput";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styled.d.ts","sourceRoot":"","sources":["../../../../src/Link/styled.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,QAAQ
|
|
1
|
+
{"version":3,"file":"styled.d.ts","sourceRoot":"","sources":["../../../../src/Link/styled.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAAoD,CAAC;AAC1E,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+DAAgC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/Table/components/Toolbar/index.tsx"],"names":[],"mappings":";AAcA,OAAO,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAElE,iBAAS,OAAO,CAAC,CAAC,SAAS,yBAAyB,EAAE,EACpD,KAAK,EACL,YAA6B,EAC7B,WAAW,EACX,YAAwB,EACxB,mBAAmB,EACnB,YAAY,GACb,EAAE,YAAY,CAAC,CAAC,CAAC,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/Table/components/Toolbar/index.tsx"],"names":[],"mappings":";AAcA,OAAO,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAElE,iBAAS,OAAO,CAAC,CAAC,SAAS,yBAAyB,EAAE,EACpD,KAAK,EACL,YAA6B,EAC7B,WAAW,EACX,YAAwB,EACxB,mBAAmB,EACnB,YAAY,GACb,EAAE,YAAY,CAAC,CAAC,CAAC,eAwCjB;AAED,eAAe,OAAO,CAAC"}
|
|
@@ -52,7 +52,7 @@ function Toolbar(_a) {
|
|
|
52
52
|
return (react_1.default.createElement(styled_1.BaseToolbar, { floating: shouldFloat, "data-animate": shouldFloat && isSelectableAndSelected }, isSelectableAndSelected ? (react_1.default.createElement(BatchActions_1.default, __assign({ floating: shouldFloat, totalNumOfTableRows: totalNumOfTableRows }, batchActions))) : (react_1.default.createElement(react_1.default.Fragment, null,
|
|
53
53
|
react_1.default.createElement(styled_1.LeftSideContainer, null,
|
|
54
54
|
title && (react_1.default.createElement(styled_1.TitleContainer, null,
|
|
55
|
-
react_1.default.createElement(Typography_1.default, {
|
|
55
|
+
react_1.default.createElement(Typography_1.default, { variant: titleVariant }, title))),
|
|
56
56
|
leftContent && (react_1.default.createElement(styled_1.LeftActionsContainer, null, leftContent))),
|
|
57
57
|
rightActions.length > 0 && (react_1.default.createElement(styled_1.RightActionsContainer, null, ActionsComponents))))));
|
|
58
58
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/Table/components/Toolbar/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA0C;AAE1C,0DAA2D;AAC3D,mEAA6C;AAC7C,8DAA6D;AAC7D,iEAA2C;AAC3C,kEAA4C;AAC5C,mCAMkB;AAGlB,SAAS,OAAO,CAAsC,EAOpC;QANhB,KAAK,WAAA,EACL,oBAA6B,EAA7B,YAAY,mBAAG,cAAc,KAAA,EAC7B,WAAW,iBAAA,EACX,oBAAwB,EAAxB,YAAY,mBAAG,mBAAS,KAAA,EACxB,mBAAmB,yBAAA,EACnB,YAAY,kBAAA;IAEJ,IAAA,iBAAiB,GAAK,IAAA,oBAAU,EAAC,YAAY,CAAC,kBAA7B,CAA8B;IACjD,IAAA,KAAkC,IAAA,kBAAU,EAAC,6BAAa,CAAC,EAAzD,WAAW,iBAAA,EAAE,cAAc,oBAA8B,CAAC;IAC1D,IAAA,KAAK,GAAK,CAAA,WAAW,IAAI,EAAE,CAAA,MAAtB,CAAuB;IAC5B,IAAA,GAAG,GAAK,CAAA,KAAK,IAAI,EAAE,CAAA,IAAhB,CAAiB;IAC5B,IAAM,uBAAuB,GAAG,cAAc,IAAI,GAAG,IAAI,GAAG,CAAC,MAAM,GAAG,CAAC,CAAC;IAExE,uIAAuI;IACvI,IAAM,WAAW,GAAG,CAAC,KAAK,IAAI,CAAC,WAAW,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC;IAEnE,OAAO,CACL,8BAAC,oBAAW,IACV,QAAQ,EAAE,WAAW,kBACP,WAAW,IAAI,uBAAuB,IAEnD,uBAAuB,CAAC,CAAC,CAAC,CACzB,8BAAC,sBAAY,aACX,QAAQ,EAAE,WAAW,EACrB,mBAAmB,EAAE,mBAAmB,IACpC,YAAY,EAChB,CACH,CAAC,CAAC,CAAC,CACF;QACE,8BAAC,0BAAiB;YACf,KAAK,IAAI,CACR,8BAAC,uBAAc;gBACb,8BAAC,oBAAU,IAAC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/Table/components/Toolbar/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA0C;AAE1C,0DAA2D;AAC3D,mEAA6C;AAC7C,8DAA6D;AAC7D,iEAA2C;AAC3C,kEAA4C;AAC5C,mCAMkB;AAGlB,SAAS,OAAO,CAAsC,EAOpC;QANhB,KAAK,WAAA,EACL,oBAA6B,EAA7B,YAAY,mBAAG,cAAc,KAAA,EAC7B,WAAW,iBAAA,EACX,oBAAwB,EAAxB,YAAY,mBAAG,mBAAS,KAAA,EACxB,mBAAmB,yBAAA,EACnB,YAAY,kBAAA;IAEJ,IAAA,iBAAiB,GAAK,IAAA,oBAAU,EAAC,YAAY,CAAC,kBAA7B,CAA8B;IACjD,IAAA,KAAkC,IAAA,kBAAU,EAAC,6BAAa,CAAC,EAAzD,WAAW,iBAAA,EAAE,cAAc,oBAA8B,CAAC;IAC1D,IAAA,KAAK,GAAK,CAAA,WAAW,IAAI,EAAE,CAAA,MAAtB,CAAuB;IAC5B,IAAA,GAAG,GAAK,CAAA,KAAK,IAAI,EAAE,CAAA,IAAhB,CAAiB;IAC5B,IAAM,uBAAuB,GAAG,cAAc,IAAI,GAAG,IAAI,GAAG,CAAC,MAAM,GAAG,CAAC,CAAC;IAExE,uIAAuI;IACvI,IAAM,WAAW,GAAG,CAAC,KAAK,IAAI,CAAC,WAAW,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC;IAEnE,OAAO,CACL,8BAAC,oBAAW,IACV,QAAQ,EAAE,WAAW,kBACP,WAAW,IAAI,uBAAuB,IAEnD,uBAAuB,CAAC,CAAC,CAAC,CACzB,8BAAC,sBAAY,aACX,QAAQ,EAAE,WAAW,EACrB,mBAAmB,EAAE,mBAAmB,IACpC,YAAY,EAChB,CACH,CAAC,CAAC,CAAC,CACF;QACE,8BAAC,0BAAiB;YACf,KAAK,IAAI,CACR,8BAAC,uBAAc;gBACb,8BAAC,oBAAU,IAAC,OAAO,EAAE,YAAY,IAAG,KAAK,CAAc,CACxC,CAClB;YACA,WAAW,IAAI,CACd,8BAAC,6BAAoB,QAAE,WAAW,CAAwB,CAC3D,CACiB;QACnB,YAAY,CAAC,MAAM,GAAG,CAAC,IAAI,CAC1B,8BAAC,8BAAqB,QAAE,iBAAiB,CAAyB,CACnE,CACA,CACJ,CACW,CACf,CAAC;AACJ,CAAC;AAED,kBAAe,OAAO,CAAC"}
|