@phillips/seldon 1.105.2 → 1.106.1
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/components/Input/Input.js +1 -1
- package/dist/components/Text/Text.d.ts +6 -2
- package/dist/components/Text/Text.js +23 -14
- package/dist/components/Text/Text.stories.d.ts +14 -2
- package/dist/components/Text/index.d.ts +1 -1
- package/dist/components/Text/types.d.ts +5 -0
- package/dist/components/Text/types.js +2 -1
- package/dist/index.js +111 -110
- package/dist/scss/components/GridItem/_gridItem.scss +0 -2
- package/dist/scss/components/Text/_text.scss +12 -0
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { TextVariants } from './types';
|
|
2
|
+
import { TextAlignments, TextVariants } from './types';
|
|
3
3
|
export interface TextProps extends React.HTMLAttributes<HTMLElement> {
|
|
4
4
|
/**
|
|
5
5
|
* Optional element to render as the top-level component e.g. 'div', 'span', CustomComponent, etc. Defaults to the appropriate HTML based on the variant.
|
|
@@ -9,6 +9,10 @@ export interface TextProps extends React.HTMLAttributes<HTMLElement> {
|
|
|
9
9
|
* The OOTB style to apply to the text
|
|
10
10
|
*/
|
|
11
11
|
variant?: TextVariants;
|
|
12
|
+
/**
|
|
13
|
+
* The alignment of the text
|
|
14
|
+
*/
|
|
15
|
+
align?: TextAlignments;
|
|
12
16
|
}
|
|
13
17
|
/**
|
|
14
18
|
* ## Overview
|
|
@@ -19,5 +23,5 @@ export interface TextProps extends React.HTMLAttributes<HTMLElement> {
|
|
|
19
23
|
*
|
|
20
24
|
* [Storybook Link](https://phillips-seldon.netlify.app/?path=/docs/components-text--overview)
|
|
21
25
|
*/
|
|
22
|
-
declare const Text: ({ children, className, element: CustomElement, variant, ...props }: TextProps) => import("react/jsx-runtime").JSX.Element;
|
|
26
|
+
declare const Text: ({ children, className, element: CustomElement, variant, align, ...props }: TextProps) => import("react/jsx-runtime").JSX.Element;
|
|
23
27
|
export default Text;
|
|
@@ -1,20 +1,29 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { getCommonProps as
|
|
3
|
-
import { TextVariants as
|
|
4
|
-
import { determineDefaultTextElement as
|
|
5
|
-
import
|
|
6
|
-
const
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
import { jsx as c } from "react/jsx-runtime";
|
|
2
|
+
import { getCommonProps as f } from "../../utils/index.js";
|
|
3
|
+
import { TextVariants as p } from "./types.js";
|
|
4
|
+
import { determineDefaultTextElement as x, determineTextClassName as i } from "./utils.js";
|
|
5
|
+
import T from "../../node_modules/classnames/index.js";
|
|
6
|
+
const P = ({
|
|
7
|
+
children: s,
|
|
8
|
+
className: r,
|
|
9
|
+
element: a,
|
|
10
|
+
variant: e = p.body2,
|
|
11
|
+
align: m,
|
|
12
|
+
...t
|
|
13
|
+
}) => {
|
|
14
|
+
const n = a || x(e), { className: o, ...l } = f(t, "Text");
|
|
15
|
+
return /* @__PURE__ */ c(
|
|
16
|
+
n,
|
|
10
17
|
{
|
|
11
|
-
...
|
|
12
|
-
className:
|
|
13
|
-
|
|
14
|
-
|
|
18
|
+
...l,
|
|
19
|
+
className: T(o, r, i(e), {
|
|
20
|
+
[`${o}--${m}`]: !!m
|
|
21
|
+
}),
|
|
22
|
+
...t,
|
|
23
|
+
children: s
|
|
15
24
|
}
|
|
16
25
|
);
|
|
17
26
|
};
|
|
18
27
|
export {
|
|
19
|
-
|
|
28
|
+
P as default
|
|
20
29
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { TextProps } from './Text';
|
|
2
|
-
import { TextVariants } from './types';
|
|
2
|
+
import { TextAlignments, TextVariants } from './types';
|
|
3
3
|
declare const meta: {
|
|
4
4
|
title: string;
|
|
5
|
-
component: ({ children, className, element: CustomElement, variant, ...props }: TextProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
component: ({ children, className, element: CustomElement, variant, align, ...props }: TextProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
};
|
|
7
7
|
export default meta;
|
|
8
8
|
export declare const Playground: {
|
|
@@ -17,6 +17,12 @@ export declare const Playground: {
|
|
|
17
17
|
type: string;
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
|
+
align: {
|
|
21
|
+
options: typeof TextAlignments;
|
|
22
|
+
control: {
|
|
23
|
+
type: string;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
20
26
|
};
|
|
21
27
|
};
|
|
22
28
|
export declare const SuperScript: {
|
|
@@ -32,5 +38,11 @@ export declare const SuperScript: {
|
|
|
32
38
|
type: string;
|
|
33
39
|
};
|
|
34
40
|
};
|
|
41
|
+
align: {
|
|
42
|
+
options: typeof TextAlignments;
|
|
43
|
+
control: {
|
|
44
|
+
type: string;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
35
47
|
};
|
|
36
48
|
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { TextVariants } from './types';
|
|
1
|
+
export { TextVariants, TextAlignments } from './types';
|
|
2
2
|
export { default as Text, type TextProps } from './Text';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
var g = /* @__PURE__ */ ((d) => (d.blockquote = "blockquote", d.heading1 = "heading1", d.heading2 = "heading2", d.heading3 = "heading3", d.heading4 = "heading4", d.heading5 = "heading5", d.title1 = "title1", d.title2 = "title2", d.title3 = "title3", d.title4 = "title4", d.body1 = "body1", d.body2 = "body2", d.body3 = "body3", d.string1 = "string1", d.string2 = "string2", d.string3 = "string3", d.button = "button", d.email = "email", d.label = "label", d.link = "link", d.badge = "badge", d.snwFlyoutLink = "snwFlyoutLink", d.snwHeaderLink = "snwHeaderLink", d.snwHeadingHero1 = "snwHeadingHero1", d.snwHeadingHero2 = "snwHeadingHero2", d))(g || {});
|
|
1
|
+
var g = /* @__PURE__ */ ((d) => (d.blockquote = "blockquote", d.heading1 = "heading1", d.heading2 = "heading2", d.heading3 = "heading3", d.heading4 = "heading4", d.heading5 = "heading5", d.title1 = "title1", d.title2 = "title2", d.title3 = "title3", d.title4 = "title4", d.body1 = "body1", d.body2 = "body2", d.body3 = "body3", d.string1 = "string1", d.string2 = "string2", d.string3 = "string3", d.button = "button", d.email = "email", d.label = "label", d.link = "link", d.badge = "badge", d.snwFlyoutLink = "snwFlyoutLink", d.snwHeaderLink = "snwHeaderLink", d.snwHeadingHero1 = "snwHeadingHero1", d.snwHeadingHero2 = "snwHeadingHero2", d))(g || {}), l = /* @__PURE__ */ ((d) => (d.left = "left", d.center = "center", d.right = "right", d))(l || {});
|
|
2
2
|
export {
|
|
3
|
+
l as TextAlignments,
|
|
3
4
|
g as TextVariants
|
|
4
5
|
};
|
package/dist/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { PaddingTokens as f, SpacingTokens as s, defaultYear as l, emailValidation as d, encodeURLSearchParams as m, findChildrenExcludingTypes as p, findChildrenOfType as u, generatePaddingClassName as x, getCommonProps as
|
|
1
|
+
import { PaddingTokens as f, SpacingTokens as s, defaultYear as l, emailValidation as d, encodeURLSearchParams as m, findChildrenExcludingTypes as p, findChildrenOfType as u, generatePaddingClassName as x, getCommonProps as n, noOp as i, px as g, useNormalizedInputProps as c } from "./utils/index.js";
|
|
2
2
|
import { default as S } from "./assets/account_circle.svg.js";
|
|
3
3
|
import { default as h } from "./assets/arrowPrev.svg.js";
|
|
4
|
-
import { default as
|
|
4
|
+
import { default as T } from "./assets/calendar.svg.js";
|
|
5
5
|
import { default as b } from "./assets/calendarAlt.svg.js";
|
|
6
|
-
import { default as
|
|
7
|
-
import { default as
|
|
6
|
+
import { default as B } from "./assets/chevronDown.svg.js";
|
|
7
|
+
import { default as k } from "./assets/chevronNext.svg.js";
|
|
8
8
|
import { default as w } from "./assets/chevronRight.svg.js";
|
|
9
9
|
import { default as y } from "./assets/close.svg.js";
|
|
10
10
|
import { default as D } from "./assets/favorite.svg.js";
|
|
@@ -25,12 +25,12 @@ import { default as se } from "./assets/share.svg.js";
|
|
|
25
25
|
import { default as de } from "./assets/spotify.svg.js";
|
|
26
26
|
import { default as pe } from "./assets/wechat.svg.js";
|
|
27
27
|
import { default as xe } from "./assets/youtube.svg.js";
|
|
28
|
-
import { default as
|
|
28
|
+
import { default as ie } from "./assets/icon-green-circle.svg.js";
|
|
29
29
|
import { default as ce } from "./assets/icon-red-circle.svg.js";
|
|
30
30
|
import { default as Se } from "./pages/Page.js";
|
|
31
31
|
import { usePendingState as he } from "./utils/hooks.js";
|
|
32
|
-
import { SSRMediaQuery as
|
|
33
|
-
import { AuctionStatus as
|
|
32
|
+
import { SSRMediaQuery as Te, ssrMediaQueryStyle as Ie } from "./providers/SeldonProvider/utils.js";
|
|
33
|
+
import { AuctionStatus as Ae, LotStatus as Be, SupportedLanguages as Ve } from "./types/commonTypes.js";
|
|
34
34
|
import { default as ve } from "./components/Button/Button.js";
|
|
35
35
|
import { ButtonVariants as Fe } from "./components/Button/types.js";
|
|
36
36
|
import { default as Me } from "./components/IconButton/IconButton.js";
|
|
@@ -50,176 +50,177 @@ import { default as ft } from "./components/LinkBlock/LinkBlock.js";
|
|
|
50
50
|
import { default as lt } from "./components/LinkList/LinkList.js";
|
|
51
51
|
import { default as mt } from "./components/Row/Row.js";
|
|
52
52
|
import { default as ut } from "./components/GridItem/GridItem.js";
|
|
53
|
-
import { GridItemAlign as
|
|
53
|
+
import { GridItemAlign as nt } from "./components/GridItem/types.js";
|
|
54
54
|
import { default as gt } from "./components/Search/Search.js";
|
|
55
55
|
import { default as Ct } from "./components/Select/Select.js";
|
|
56
56
|
import { SelectVariants as Lt } from "./components/Select/types.js";
|
|
57
57
|
import { default as Pt } from "./components/SplitPanel/SplitPanel.js";
|
|
58
|
-
import { default as
|
|
59
|
-
import { SubscriptionState as
|
|
60
|
-
import { default as
|
|
58
|
+
import { default as It } from "./patterns/Subscribe/Subscribe.js";
|
|
59
|
+
import { SubscriptionState as At } from "./patterns/Subscribe/types.js";
|
|
60
|
+
import { default as Vt } from "./patterns/Social/Social.js";
|
|
61
61
|
import { default as vt } from "./patterns/ViewingsList/ViewingsList.js";
|
|
62
62
|
import { default as Ft } from "./components/Modal/Modal.js";
|
|
63
63
|
import { default as Mt } from "./components/Drawer/Drawer.js";
|
|
64
64
|
import { default as Ht } from "./components/Pagination/Pagination.js";
|
|
65
65
|
import { Tag as Rt, default as Gt } from "./components/Tags/Tags.js";
|
|
66
66
|
import { default as Ut } from "./patterns/ViewingsList/StatefulViewingsList.js";
|
|
67
|
-
import {
|
|
68
|
-
import { default as
|
|
69
|
-
import { TextSymbolVariants as
|
|
70
|
-
import { default as
|
|
71
|
-
import { default as
|
|
72
|
-
import { default as
|
|
73
|
-
import { AccordionItemVariant as
|
|
74
|
-
import { default as
|
|
75
|
-
import { AuthState as
|
|
76
|
-
import { default as
|
|
67
|
+
import { TextAlignments as Wt, TextVariants as Qt } from "./components/Text/types.js";
|
|
68
|
+
import { default as jt } from "./components/Text/Text.js";
|
|
69
|
+
import { TextSymbolVariants as Zt } from "./components/TextSymbol/types.js";
|
|
70
|
+
import { default as Jt } from "./components/TextSymbol/TextSymbol.js";
|
|
71
|
+
import { default as Xt } from "./components/Accordion/Accordion.js";
|
|
72
|
+
import { default as $t } from "./components/Accordion/AccordionItem.js";
|
|
73
|
+
import { AccordionItemVariant as to, AccordionVariants as oo } from "./components/Accordion/types.js";
|
|
74
|
+
import { default as ao } from "./patterns/UserManagement/UserManagement.js";
|
|
75
|
+
import { AuthState as so } from "./patterns/UserManagement/types.js";
|
|
76
|
+
import { default as mo } from "./components/Breadcrumb/Breadcrumb.js";
|
|
77
77
|
import "react/jsx-runtime";
|
|
78
78
|
import "./node_modules/classnames/index.js";
|
|
79
|
-
import { default as
|
|
80
|
-
import { default as
|
|
81
|
-
import { default as
|
|
82
|
-
import { default as
|
|
83
|
-
import { HeightUnits as
|
|
84
|
-
import { default as
|
|
79
|
+
import { default as uo } from "./components/Dropdown/Dropdown.js";
|
|
80
|
+
import { default as no } from "./components/Video/Video.js";
|
|
81
|
+
import { default as go } from "./patterns/LanguageSelector/LanguageSelector.js";
|
|
82
|
+
import { default as Co } from "./components/ContentPeek/ContentPeek.js";
|
|
83
|
+
import { HeightUnits as Lo } from "./components/ContentPeek/utils.js";
|
|
84
|
+
import { default as Po } from "./components/Collapsible/Collapsible.js";
|
|
85
85
|
import { default as Io } from "./components/Collapsible/CollapsibleContent.js";
|
|
86
|
-
import { default as
|
|
86
|
+
import { default as Ao } from "./components/Collapsible/CollapsibleTrigger.js";
|
|
87
87
|
import { SeldonProvider as Vo } from "./providers/SeldonProvider/SeldonProvider.js";
|
|
88
|
-
import { default as
|
|
89
|
-
import { default as
|
|
90
|
-
import { default as
|
|
91
|
-
import { default as
|
|
92
|
-
import { default as
|
|
93
|
-
import { default as
|
|
94
|
-
import { default as
|
|
95
|
-
import { DetailListAlignment as
|
|
96
|
-
import { default as
|
|
97
|
-
import { default as
|
|
98
|
-
import { default as
|
|
99
|
-
import { default as
|
|
100
|
-
import { default as
|
|
101
|
-
import { default as
|
|
102
|
-
import { default as
|
|
103
|
-
import { default as
|
|
104
|
-
import { default as
|
|
105
|
-
import { default as
|
|
106
|
-
import { default as
|
|
107
|
-
import { CountdownVariants as
|
|
108
|
-
import { default as
|
|
109
|
-
import { default as
|
|
110
|
-
import { default as
|
|
111
|
-
import { BidMessageVariants as
|
|
88
|
+
import { default as vo } from "./components/PageContentWrapper/PageContentWrapper.js";
|
|
89
|
+
import { default as Fo } from "./components/Carousel/Carousel.js";
|
|
90
|
+
import { default as Mo } from "./components/Carousel/CarouselContent.js";
|
|
91
|
+
import { default as Ho } from "./components/Carousel/CarouselItem.js";
|
|
92
|
+
import { default as Ro } from "./components/Carousel/CarouselDots.js";
|
|
93
|
+
import { default as Oo } from "./components/Detail/Detail.js";
|
|
94
|
+
import { default as Eo } from "./patterns/DetailList/DetailList.js";
|
|
95
|
+
import { DetailListAlignment as Qo } from "./patterns/DetailList/types.js";
|
|
96
|
+
import { default as jo } from "./components/PinchZoom/PinchZoom.js";
|
|
97
|
+
import { default as Zo } from "./components/Tabs/TabsContainer.js";
|
|
98
|
+
import { default as Jo } from "./components/Tabs/TabsContent.js";
|
|
99
|
+
import { default as Xo } from "./components/SeldonImage/SeldonImage.js";
|
|
100
|
+
import { default as $o } from "./patterns/SaleHeaderBanner/SaleHeaderBanner.js";
|
|
101
|
+
import { default as tr } from "./patterns/SaleHeaderBanner/SaleHeaderBrowseAuctions.js";
|
|
102
|
+
import { default as rr } from "./patterns/FilterMenu/FilterMenu.js";
|
|
103
|
+
import { default as fr } from "./components/Filter/Filter.js";
|
|
104
|
+
import { default as lr } from "./components/Filter/FilterInput.js";
|
|
105
|
+
import { default as mr } from "./components/Filter/FilterHeader.js";
|
|
106
|
+
import { default as ur } from "./components/Countdown/Countdown.js";
|
|
107
|
+
import { CountdownVariants as nr } from "./components/Countdown/types.js";
|
|
108
|
+
import { default as gr } from "./patterns/ObjectTile/ObjectTile.js";
|
|
109
|
+
import { default as Cr } from "./patterns/BidSnapshot/BidSnapshot.js";
|
|
110
|
+
import { default as Lr } from "./patterns/BidSnapshot/BidMessage.js";
|
|
111
|
+
import { BidMessageVariants as Pr, BidStatusEnum as Tr } from "./patterns/BidSnapshot/types.js";
|
|
112
112
|
export {
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
113
|
+
Xt as Accordion,
|
|
114
|
+
$t as AccordionItem,
|
|
115
|
+
to as AccordionItemVariant,
|
|
116
|
+
oo as AccordionVariants,
|
|
117
117
|
S as AccountCircle,
|
|
118
118
|
h as ArrowPrev,
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
119
|
+
Ae as AuctionStatus,
|
|
120
|
+
so as AuthState,
|
|
121
|
+
Lr as BidMessage,
|
|
122
|
+
Pr as BidMessageVariants,
|
|
123
|
+
Cr as BidSnapshot,
|
|
124
|
+
Tr as BidStatusEnum,
|
|
125
|
+
mo as Breadcrumb,
|
|
126
126
|
ve as Button,
|
|
127
127
|
Fe as ButtonVariants,
|
|
128
|
-
|
|
128
|
+
T as Calendar,
|
|
129
129
|
b as CalendarAlt,
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
130
|
+
Fo as Carousel,
|
|
131
|
+
Mo as CarouselContent,
|
|
132
|
+
Ro as CarouselDots,
|
|
133
|
+
Ho as CarouselItem,
|
|
134
|
+
B as ChevronDown,
|
|
135
|
+
k as ChevronNext,
|
|
136
136
|
w as ChevronRight,
|
|
137
137
|
y as Close,
|
|
138
|
-
|
|
138
|
+
Po as Collapsible,
|
|
139
139
|
Io as CollapsibleContent,
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
140
|
+
Ao as CollapsibleTrigger,
|
|
141
|
+
Co as ContentPeek,
|
|
142
|
+
Lo as ContentPeekHeightUnits,
|
|
143
|
+
ur as Countdown,
|
|
144
|
+
nr as CountdownVariants,
|
|
145
|
+
Oo as Detail,
|
|
146
|
+
Eo as DetailList,
|
|
147
|
+
Qo as DetailListAlignment,
|
|
148
148
|
Mt as Drawer,
|
|
149
|
-
|
|
149
|
+
uo as Dropdown,
|
|
150
150
|
He as ErrorBoundary,
|
|
151
151
|
G as Facebook,
|
|
152
152
|
D as Favorite,
|
|
153
153
|
N as FavoriteOutline,
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
154
|
+
fr as Filter,
|
|
155
|
+
mr as FilterHeader,
|
|
156
|
+
lr as FilterInput,
|
|
157
|
+
rr as FilterMenu,
|
|
158
158
|
Re as Footer,
|
|
159
159
|
U as FooterInstagram,
|
|
160
160
|
z as FooterWeChat,
|
|
161
|
-
|
|
161
|
+
ie as GreenCircle,
|
|
162
162
|
Oe as Grid,
|
|
163
163
|
ut as GridItem,
|
|
164
|
-
|
|
164
|
+
nt as GridItemAlign,
|
|
165
165
|
Ee as Header,
|
|
166
166
|
Xe as HeroBanner,
|
|
167
167
|
Me as IconButton,
|
|
168
168
|
$e as Input,
|
|
169
169
|
q as Instagram,
|
|
170
|
-
|
|
170
|
+
go as LanguageSelector,
|
|
171
171
|
tt as Link,
|
|
172
172
|
ft as LinkBlock,
|
|
173
173
|
lt as LinkList,
|
|
174
174
|
rt as LinkVariants,
|
|
175
175
|
W as LinkedIn,
|
|
176
176
|
K as Lock,
|
|
177
|
-
|
|
177
|
+
Be as LotStatus,
|
|
178
178
|
_ as Minus,
|
|
179
179
|
Ft as Modal,
|
|
180
180
|
Qe as Navigation,
|
|
181
181
|
je as NavigationItem,
|
|
182
182
|
Ze as NavigationItemTrigger,
|
|
183
183
|
Je as NavigationList,
|
|
184
|
-
|
|
184
|
+
gr as ObjectTile,
|
|
185
185
|
f as PaddingTokens,
|
|
186
186
|
Se as Page,
|
|
187
|
-
|
|
187
|
+
vo as PageContentWrapper,
|
|
188
188
|
Ht as Pagination,
|
|
189
189
|
ee as PhillipsLogo,
|
|
190
|
-
|
|
190
|
+
jo as PinchZoom,
|
|
191
191
|
oe as Plus,
|
|
192
192
|
ae as React,
|
|
193
193
|
ce as RedCircle,
|
|
194
194
|
Y as Reddit,
|
|
195
195
|
mt as Row,
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
196
|
+
Te as SSRMediaQuery,
|
|
197
|
+
$o as SaleHeaderBanner,
|
|
198
|
+
tr as SaleHeaderBrowseAuctions,
|
|
199
199
|
gt as Search,
|
|
200
|
-
|
|
200
|
+
Xo as SeldonImage,
|
|
201
201
|
Vo as SeldonProvider,
|
|
202
202
|
Ct as Select,
|
|
203
203
|
Lt as SelectVariants,
|
|
204
204
|
se as Share,
|
|
205
|
-
|
|
205
|
+
Vt as Social,
|
|
206
206
|
s as SpacingTokens,
|
|
207
207
|
Pt as SplitPanel,
|
|
208
208
|
de as Spotify,
|
|
209
209
|
Ut as StatefulViewingsList,
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
210
|
+
It as Subscribe,
|
|
211
|
+
At as SubscriptionState,
|
|
212
|
+
Ve as SupportedLanguages,
|
|
213
|
+
Zo as TabsContainer,
|
|
214
|
+
Jo as TabsContent,
|
|
215
215
|
Rt as Tag,
|
|
216
216
|
Gt as TagsList,
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
217
|
+
jt as Text,
|
|
218
|
+
Wt as TextAlignments,
|
|
219
|
+
Zt as TextSymbolVariants,
|
|
220
|
+
Jt as TextSymbols,
|
|
221
|
+
Qt as TextVariants,
|
|
222
|
+
ao as UserManagement,
|
|
223
|
+
no as Video,
|
|
223
224
|
vt as ViewingsList,
|
|
224
225
|
pe as WeChat,
|
|
225
226
|
xe as Youtube,
|
|
@@ -229,10 +230,10 @@ export {
|
|
|
229
230
|
p as findChildrenExcludingTypes,
|
|
230
231
|
u as findChildrenOfType,
|
|
231
232
|
x as generatePaddingClassName,
|
|
232
|
-
|
|
233
|
-
|
|
233
|
+
n as getCommonProps,
|
|
234
|
+
i as noOp,
|
|
234
235
|
g as px,
|
|
235
|
-
|
|
236
|
+
Ie as ssrMediaQueryStyle,
|
|
236
237
|
c as useNormalizedInputProps,
|
|
237
238
|
he as usePendingState
|
|
238
239
|
};
|
|
@@ -11,13 +11,11 @@
|
|
|
11
11
|
|
|
12
12
|
&-align-center {
|
|
13
13
|
grid-column: math.ceil(math.div($total-cols + 1 - $span, 2)) / span #{$span};
|
|
14
|
-
text-align: center;
|
|
15
14
|
}
|
|
16
15
|
}
|
|
17
16
|
|
|
18
17
|
.#{$px}-grid-item {
|
|
19
18
|
justify-self: center;
|
|
20
|
-
text-align: center;
|
|
21
19
|
width: 100%;
|
|
22
20
|
|
|
23
21
|
@for $i from 1 through 2 {
|