${Object.values(TEXT_PRIORITY)
9 | .map((p) => `
Some text
`)
10 | .join('')}
`)();
11 |
--------------------------------------------------------------------------------
/src/components/TextField/dataKeys.ts:
--------------------------------------------------------------------------------
1 | export const ERROR_MESSAGE = 'data-error-message';
2 | export const THEME = 'data-theme';
3 | export const SUCCESS = 'data-success';
4 | export const ERROR = 'data-error';
5 | export const EMPTY = 'data-empty-state';
6 | export const DATA_HOOKS = {
7 | CLEAR_BUTTON: 'clear-button',
8 | SUCCESS_ICON: 'success-Icon',
9 | CUSTOM_SUFFIX: 'custom-suffix',
10 | };
11 |
--------------------------------------------------------------------------------
/src/components/ErrorMessageWrapper/ErrorMessageWrapper.st.css:
--------------------------------------------------------------------------------
1 | :import {
2 | -st-from: "../../common/palette.st.css";
3 | -st-named: errorColor;
4 | }
5 |
6 | :import {
7 | -st-from: "wix-ui-core/index.st.css";
8 | -st-named: Input;
9 | }
10 |
11 | .root .errorMessage {
12 | height: 18px;
13 | font-size: 12px;
14 | line-height: 1.5;
15 | color: value(errorColor);
16 | }
17 |
--------------------------------------------------------------------------------
/src/components/Tabs/docs/TabsExtendedExample.st.css:
--------------------------------------------------------------------------------
1 | :import {
2 | -st-from: "../Tabs.st.css";
3 | -st-default: TPATabs;
4 | }
5 |
6 | .root {
7 | -st-mixin: TPATabs(
8 | MainTextColor '"--textColor"',
9 | MainTextFont '"--textFont"',
10 | SelectedTabIndicatorColor '"--selectedTabIndicatorColor"',
11 | IndicatorColor '"--indicatorColor"'
12 | );
13 | }
14 |
--------------------------------------------------------------------------------
/src/assets/icons/Social/Facebook.svg:
--------------------------------------------------------------------------------
1 |