@eleven-labs/design-system 0.22.0 → 0.24.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/components/Atoms/Button/Button.d.ts +3 -3
- package/dist/components/Atoms/Typography/Heading/Heading.d.ts +1 -1
- package/dist/components/Layout/Flex/Flex.d.ts +2 -2
- package/dist/components/Molecules/Blocks/CategoryEndingBlock/CategoryEndingBlock.d.ts +2 -2
- package/dist/components/Molecules/Blocks/CategoryIntroBlock/CategoryIntroBlock.d.ts +2 -2
- package/dist/components/Molecules/Blocks/HomeIntroBlock/HomeIntroBlock.d.ts +3 -3
- package/dist/components/Molecules/Cards/AuthorCard/AuthorCard.d.ts +1 -1
- package/dist/components/Molecules/Cards/ContactCard/ContactCard.d.ts +2 -3
- package/dist/components/Molecules/Cards/NewsletterCard/NewsletterCard.d.ts +2 -2
- package/dist/components/Molecules/Link/Link.d.ts +1 -1
- package/dist/components/Organisms/Autocomplete/AutocompleteResult/AutocompleteResult.d.ts +2 -2
- package/dist/components/Organisms/Blocks/LastArticlesBlock/LastArticlesBlock.d.ts +1 -1
- package/dist/components/Organisms/Blocks/LastTutorialsBlock/LastTutorialsBlock.d.ts +2 -2
- package/dist/constants/systemProps/flexItemSystemProps.d.ts +2 -0
- package/dist/constants/systemProps/flexOrGridItemSystemProps.d.ts +2 -0
- package/dist/constants/systemProps/flexOrGridSystemProps.d.ts +2 -0
- package/dist/constants/systemProps/flexSystemProps.d.ts +2 -0
- package/dist/constants/systemProps/index.d.ts +4 -2
- package/dist/constants/tokenVariables.d.ts +40 -80
- package/dist/helpers/systemPropsHelper/flexItemSystemClassName.d.ts +2 -0
- package/dist/helpers/systemPropsHelper/flexOrGridItemSystemClassName.d.ts +2 -0
- package/dist/helpers/systemPropsHelper/flexOrGridSystemClassName.d.ts +2 -0
- package/dist/helpers/systemPropsHelper/flexSystemClassName.d.ts +2 -0
- package/dist/helpers/systemPropsHelper/index.d.ts +4 -2
- package/dist/index.es.js +1631 -1678
- package/dist/index.umd.cjs +15 -15
- package/dist/pages/AuthorPage/AuthorPage.d.ts +3 -17
- package/dist/pages/AuthorPage/AuthorPageContent.d.ts +19 -0
- package/dist/pages/AuthorPage/index.d.ts +1 -0
- package/dist/pages/CategoryPage/CategoryPage.d.ts +4 -6
- package/dist/pages/CategoryPage/CategoryPageContent.d.ts +8 -0
- package/dist/pages/CategoryPage/index.d.ts +1 -0
- package/dist/pages/PostPage/PostPage.d.ts +3 -21
- package/dist/pages/PostPage/PostPageContent.d.ts +24 -0
- package/dist/pages/PostPage/index.d.ts +1 -0
- package/dist/pages/SearchPage/SearchPage.d.ts +4 -10
- package/dist/pages/SearchPage/SearchPageContent.d.ts +10 -0
- package/dist/pages/SearchPage/index.d.ts +1 -0
- package/dist/scss/abstracts/mixins/_component.scss +14 -0
- package/dist/scss/abstracts/mixins/_index.scss +2 -0
- package/dist/scss/abstracts/mixins/_system_classes.scss +14 -0
- package/dist/scss/abstracts/mixins/_utility-classes.scss +10 -4
- package/dist/scss/abstracts/variables/_token-variables.scss +25 -49
- package/dist/scss/abstracts/variables/_variables.scss +14 -14
- package/dist/style.css +1 -1
- package/dist/templates/index.d.ts +1 -0
- package/dist/types/SystemProps/FlexItemSystemProps.d.ts +11 -0
- package/dist/types/SystemProps/FlexOrGridItemSystemProps.d.ts +8 -0
- package/dist/types/SystemProps/FlexOrGridSystemProps.d.ts +27 -0
- package/dist/types/SystemProps/FlexSystemProps.d.ts +12 -0
- package/dist/types/SystemProps/LayoutSystemProps.d.ts +5 -13
- package/dist/types/SystemProps/SystemProps.d.ts +3 -3
- package/dist/types/SystemProps/index.d.ts +4 -2
- package/dist/types/tokenTypes.d.ts +2 -2
- package/package.json +1 -1
- package/dist/constants/systemProps/flexBoxSystemProps.d.ts +0 -2
- package/dist/constants/systemProps/hiddenSystemProps.d.ts +0 -2
- package/dist/helpers/systemPropsHelper/flexBoxSystemClassName.d.ts +0 -2
- package/dist/helpers/systemPropsHelper/hiddenSystemClassName.d.ts +0 -2
- package/dist/types/SystemProps/FlexBoxSystemProps.d.ts +0 -48
- package/dist/types/SystemProps/HiddenSystemProps.d.ts +0 -11
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import type { AlignContentType, AlignItemsType, FlexType, JustifyContentType, SpacingType, TypeWithMediaQueriesType } from '../../types';
|
|
2
|
-
import type { AlignSelfType, FlexBasisType, FlexDirectionType, FlexWrapType } from '../../types';
|
|
3
|
-
export interface FlexBoxSystemProps {
|
|
4
|
-
/**
|
|
5
|
-
* flex-direction (including breakpoints modifiers)
|
|
6
|
-
*/
|
|
7
|
-
flexDirection?: TypeWithMediaQueriesType<FlexDirectionType>;
|
|
8
|
-
/**
|
|
9
|
-
* Can flex items wrap onto multiple lines (including breakpoints modifiers)
|
|
10
|
-
*/
|
|
11
|
-
flexWrap?: TypeWithMediaQueriesType<FlexWrapType>;
|
|
12
|
-
/**
|
|
13
|
-
* align-items (including breakpoints modifiers)
|
|
14
|
-
*/
|
|
15
|
-
alignItems?: TypeWithMediaQueriesType<AlignItemsType>;
|
|
16
|
-
/**
|
|
17
|
-
* align-content (including breakpoints modifiers)
|
|
18
|
-
*/
|
|
19
|
-
alignContent?: TypeWithMediaQueriesType<AlignContentType>;
|
|
20
|
-
/**
|
|
21
|
-
* Defines horizontal alignment along the main axis (including breakpoints modifiers)
|
|
22
|
-
*/
|
|
23
|
-
justifyContent?: TypeWithMediaQueriesType<JustifyContentType>;
|
|
24
|
-
/**
|
|
25
|
-
* Defines a align self (including breakpoints modifiers)
|
|
26
|
-
*/
|
|
27
|
-
alignSelf?: TypeWithMediaQueriesType<AlignSelfType>;
|
|
28
|
-
/**
|
|
29
|
-
* Defines gap for col and row (including breakpoints modifiers)
|
|
30
|
-
*/
|
|
31
|
-
gap?: TypeWithMediaQueriesType<SpacingType>;
|
|
32
|
-
/**
|
|
33
|
-
* Defines row gap (including breakpoints modifiers)
|
|
34
|
-
*/
|
|
35
|
-
gapX?: TypeWithMediaQueriesType<SpacingType>;
|
|
36
|
-
/**
|
|
37
|
-
* Defines col gap (including breakpoints modifiers)
|
|
38
|
-
*/
|
|
39
|
-
gapY?: TypeWithMediaQueriesType<SpacingType>;
|
|
40
|
-
/**
|
|
41
|
-
* Defines a flex basis, auto or number (including breakpoints modifiers)
|
|
42
|
-
*/
|
|
43
|
-
flexBasis?: TypeWithMediaQueriesType<FlexBasisType>;
|
|
44
|
-
/**
|
|
45
|
-
* Defines a flex (including breakpoints modifiers)
|
|
46
|
-
*/
|
|
47
|
-
flex?: TypeWithMediaQueriesType<FlexType>;
|
|
48
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { MediaQueryType } from '../../types';
|
|
2
|
-
export interface HiddenSystemProps {
|
|
3
|
-
/**
|
|
4
|
-
* Defines hidden above strategy with media queries (is similar to "min-width") (including breakpoints modifiers)
|
|
5
|
-
*/
|
|
6
|
-
hiddenAbove?: MediaQueryType;
|
|
7
|
-
/**
|
|
8
|
-
* Defines hidden below strategy with media queries (is similar to "max-width") (including breakpoints modifiers)
|
|
9
|
-
*/
|
|
10
|
-
hiddenBelow?: MediaQueryType;
|
|
11
|
-
}
|