@graphcommerce/next-ui 4.2.2 → 4.2.5
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/AnimatedRow/{index.tsx → AnimatedRow.tsx} +0 -0
- package/Blog/BlogAuthor/{index.tsx → BlogAuthor.tsx} +2 -2
- package/Blog/BlogContent/{index.tsx → BlogContent.tsx} +0 -0
- package/Blog/BlogHeader/{index.tsx → BlogHeader.tsx} +0 -0
- package/Blog/BlogList/{index.tsx → BlogList.tsx} +1 -1
- package/Blog/BlogListItem/{index.tsx → BlogListItem.tsx} +0 -0
- package/Blog/BlogTags/BlogTag.tsx +2 -2
- package/Blog/BlogTags/{index.tsx → BlogTags.tsx} +0 -0
- package/Blog/BlogTitle/{index.tsx → BlogTitle.tsx} +0 -0
- package/Button/{index.tsx → index.ts} +0 -0
- package/CHANGELOG.md +726 -1447
- package/ChipMenu/{index.tsx → ChipMenu.tsx} +4 -2
- package/ContainerWithHeader/{index.tsx → ContainerWithHeader.tsx} +1 -1
- package/FlagAvatar/{index.tsx → FlagAvatar.tsx} +0 -0
- package/FramerScroller/SidebarGallery.tsx +1 -1
- package/FramerScroller/SidebarSlider.tsx +1 -1
- package/FullPageMessage/{index.tsx → FullPageMessage.tsx} +0 -0
- package/Highlight/{index.tsx → Highlight.tsx} +0 -0
- package/IconHeader/{index.tsx → IconHeader.tsx} +0 -0
- package/JsonLd/{index.tsx → JsonLd.tsx} +0 -0
- package/Layout/components/LayoutHeader.tsx +3 -3
- package/Layout/components/LayoutHeaderBack.tsx +1 -1
- package/Layout/components/LayoutHeaderClose.tsx +1 -1
- package/Layout/components/LayoutHeaderContent.tsx +1 -1
- package/Layout/components/LayoutProvider.tsx +2 -2
- package/Layout/context/layoutContext.tsx +1 -3
- package/Layout/hooks/useScrollY.tsx +1 -1
- package/LayoutDefault/components/LayoutDefault.tsx +14 -4
- package/LayoutOverlay/components/LayoutOverlayBase.tsx +1 -1
- package/LayoutParts/MenuFab.tsx +1 -0
- package/Page/types.ts +1 -0
- package/PageLoadIndicator/{index.tsx → PageLoadIndicator.tsx} +0 -0
- package/PageMeta/{index.tsx → PageMeta.tsx} +0 -0
- package/Pagination/{index.tsx → Pagination.tsx} +0 -0
- package/RenderType/{index.tsx → RenderType.tsx} +0 -0
- package/Row/ButtonLinkList/ButtonLinkList.tsx +2 -2
- package/Row/ColumnOne/{index.tsx → ColumnOne.tsx} +0 -0
- package/Row/ColumnOneBoxed/{index.tsx → ColumnOneBoxed.tsx} +1 -1
- package/Row/ColumnOneCentered/{index.tsx → ColumnOneCentered.tsx} +1 -1
- package/Row/ColumnThree/{index.tsx → ColumnThree.tsx} +1 -1
- package/Row/ColumnTwo/{index.tsx → ColumnTwo.tsx} +1 -1
- package/Row/ColumnTwoSpread/{index.tsx → ColumnTwoSpread.tsx} +1 -1
- package/Row/ColumnTwoWithTop/{index.tsx → ColumnTwoWithTop.tsx} +1 -1
- package/Row/ContentLinks/{index.tsx → ContentLinks.tsx} +0 -0
- package/Row/HeroBanner/{index.tsx → HeroBanner.tsx} +1 -1
- package/Row/IconBlocks/{IconBlock/index.tsx → IconBlock.tsx} +1 -1
- package/Row/IconBlocks/{index.tsx → IconBlocks.tsx} +1 -1
- package/Row/ImageText/{index.tsx → ImageText.tsx} +1 -1
- package/Row/ImageTextBoxed/{index.tsx → ImageTextBoxed.tsx} +1 -1
- package/Row/ParagraphWithSidebarSlide/{index.tsx → ParagraphWithSidebarSlide.tsx} +1 -1
- package/Row/Quote/{index.tsx → Quote.tsx} +1 -1
- package/Row/{index.tsx → Row.tsx} +0 -0
- package/Row/SpecialBanner/{index.tsx → SpecialBanner.tsx} +1 -1
- package/Row/index.ts +18 -0
- package/SectionContainer/{index.tsx → SectionContainer.tsx} +1 -1
- package/SectionHeader/{index.tsx → SectionHeader.tsx} +0 -0
- package/Separator/{index.tsx → Separator.tsx} +0 -0
- package/Snackbar/MessageSnackbarImpl.tsx +2 -1
- package/StarRatingField/{index.tsx → StarRatingField.tsx} +0 -0
- package/Styles/{index.tsx → index.ts} +0 -9
- package/Styles/withTheme.tsx +1 -0
- package/TextInputNumber/{index.tsx → TextInputNumber.tsx} +1 -5
- package/Theme/MuiButton.ts +3 -3
- package/Theme/MuiFab.ts +1 -1
- package/Theme/MuiSlider.ts +1 -0
- package/Theme/themeDefaults.ts +1 -1
- package/TimeAgo/{index.tsx → TimeAgo.tsx} +0 -0
- package/ToggleButton/{index.tsx → ToggleButton.tsx} +1 -0
- package/ToggleButtonGroup/{index.tsx → ToggleButtonGroup.tsx} +8 -6
- package/UspList/{index.tsx → UspList.tsx} +0 -0
- package/docs/components/ComponentChild.tsx +1 -0
- package/docs/components/ComponentChildVariant.tsx +1 -0
- package/docs/components/ComponentChildVariantExtendable.tsx +1 -0
- package/icons/{index.tsx → index.ts} +0 -0
- package/index.ts +28 -45
- package/package.json +10 -11
package/index.ts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
export * from './AnimatedRow'
|
|
2
|
-
export * from './Blog/BlogAuthor'
|
|
3
|
-
export * from './Blog/BlogContent'
|
|
4
|
-
export * from './Blog/BlogHeader'
|
|
5
|
-
export * from './Blog/BlogList'
|
|
6
|
-
export * from './Blog/BlogListItem'
|
|
7
|
-
export * from './Blog/BlogTags'
|
|
8
|
-
export * from './Blog/BlogTitle'
|
|
1
|
+
export * from './AnimatedRow/AnimatedRow'
|
|
2
|
+
export * from './Blog/BlogAuthor/BlogAuthor'
|
|
3
|
+
export * from './Blog/BlogContent/BlogContent'
|
|
4
|
+
export * from './Blog/BlogHeader/BlogHeader'
|
|
5
|
+
export * from './Blog/BlogList/BlogList'
|
|
6
|
+
export * from './Blog/BlogListItem/BlogListItem'
|
|
7
|
+
export * from './Blog/BlogTags/BlogTags'
|
|
8
|
+
export * from './Blog/BlogTitle/BlogTitle'
|
|
9
9
|
export * from './Button'
|
|
10
|
-
export * from './ChipMenu'
|
|
11
|
-
export * from './ContainerWithHeader'
|
|
12
|
-
export * from './FlagAvatar'
|
|
10
|
+
export * from './ChipMenu/ChipMenu'
|
|
11
|
+
export * from './ContainerWithHeader/ContainerWithHeader'
|
|
12
|
+
export * from './FlagAvatar/FlagAvatar'
|
|
13
13
|
export * from './Footer'
|
|
14
14
|
export * from './Form/Form'
|
|
15
15
|
export * from './Form/FormActions'
|
|
@@ -18,51 +18,34 @@ export * from './Form/FormHeader'
|
|
|
18
18
|
export * from './Form/FormRow'
|
|
19
19
|
export * from './Form/InputCheckmark'
|
|
20
20
|
export * from './FramerScroller'
|
|
21
|
-
export * from './FullPageMessage'
|
|
22
|
-
export * from './Highlight'
|
|
23
|
-
export * from './IconHeader'
|
|
21
|
+
export * from './FullPageMessage/FullPageMessage'
|
|
22
|
+
export * from './Highlight/Highlight'
|
|
23
|
+
export * from './IconHeader/IconHeader'
|
|
24
24
|
export * from './icons'
|
|
25
|
-
export * from './JsonLd'
|
|
25
|
+
export * from './JsonLd/JsonLd'
|
|
26
26
|
export * from './Layout'
|
|
27
27
|
export * from './LayoutDefault'
|
|
28
28
|
export * from './LayoutOverlay'
|
|
29
29
|
export * from './LayoutParts'
|
|
30
30
|
export * from './Page'
|
|
31
|
-
export * from './PageLoadIndicator'
|
|
32
|
-
export * from './PageMeta'
|
|
33
|
-
export * from './Pagination'
|
|
34
|
-
export * from './RenderType'
|
|
31
|
+
export * from './PageLoadIndicator/PageLoadIndicator'
|
|
32
|
+
export * from './PageMeta/PageMeta'
|
|
33
|
+
export * from './Pagination/Pagination'
|
|
34
|
+
export * from './RenderType/RenderType'
|
|
35
35
|
export * from './Row'
|
|
36
|
-
export * from './
|
|
37
|
-
export * from './
|
|
38
|
-
export * from './
|
|
39
|
-
export * from './Row/ColumnOneCentered'
|
|
40
|
-
export * from './Row/ColumnThree'
|
|
41
|
-
export * from './Row/ColumnTwo'
|
|
42
|
-
export * from './Row/ColumnTwoSpread'
|
|
43
|
-
export * from './Row/ColumnTwoWithTop'
|
|
44
|
-
export * from './Row/ContentLinks'
|
|
45
|
-
export * from './Row/HeroBanner'
|
|
46
|
-
export * from './Row/IconBlocks'
|
|
47
|
-
export * from './Row/IconBlocks/IconBlock'
|
|
48
|
-
export * from './Row/ImageText'
|
|
49
|
-
export * from './Row/ImageTextBoxed'
|
|
50
|
-
export * from './Row/ParagraphWithSidebarSlide'
|
|
51
|
-
export * from './Row/Quote'
|
|
52
|
-
export * from './Row/SpecialBanner'
|
|
53
|
-
export * from './SectionContainer'
|
|
54
|
-
export * from './SectionHeader'
|
|
55
|
-
export * from './Separator'
|
|
36
|
+
export * from './SectionContainer/SectionContainer'
|
|
37
|
+
export * from './SectionHeader/SectionHeader'
|
|
38
|
+
export * from './Separator/Separator'
|
|
56
39
|
export * from './Snackbar/MessageSnackbar'
|
|
57
40
|
export * from './Snackbar/MessageSnackbarImpl'
|
|
58
|
-
export * from './StarRatingField'
|
|
41
|
+
export * from './StarRatingField/StarRatingField'
|
|
59
42
|
export * from './Stepper/Stepper'
|
|
60
43
|
export * from './Styles'
|
|
61
44
|
export * from './IconSvg'
|
|
62
|
-
export * from './TextInputNumber'
|
|
45
|
+
export * from './TextInputNumber/TextInputNumber'
|
|
63
46
|
export * from './Theme'
|
|
64
|
-
export * from './TimeAgo'
|
|
65
|
-
export * from './ToggleButton'
|
|
66
|
-
export * from './ToggleButtonGroup'
|
|
67
|
-
export * from './UspList'
|
|
47
|
+
export * from './TimeAgo/TimeAgo'
|
|
48
|
+
export * from './ToggleButton/ToggleButton'
|
|
49
|
+
export * from './ToggleButtonGroup/ToggleButtonGroup'
|
|
50
|
+
export * from './UspList/UspList'
|
|
68
51
|
export * from './UspList/UspListItem'
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/next-ui",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "4.2.
|
|
5
|
+
"version": "4.2.5",
|
|
6
6
|
"author": "",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"sideEffects": false,
|
|
@@ -16,13 +16,13 @@
|
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@emotion/babel-preset-css-prop": "^11.2.0",
|
|
18
18
|
"@emotion/cache": "^11.7.1",
|
|
19
|
-
"@emotion/react": "^11.
|
|
19
|
+
"@emotion/react": "^11.8.2",
|
|
20
20
|
"@emotion/server": "^11.4.0",
|
|
21
21
|
"@emotion/styled": "^11.6.0",
|
|
22
|
-
"@graphcommerce/framer-next-pages": "^3.1.
|
|
23
|
-
"@graphcommerce/framer-scroller": "^2.0.
|
|
24
|
-
"@graphcommerce/framer-utils": "^3.0.
|
|
25
|
-
"@graphcommerce/image": "^3.1.
|
|
22
|
+
"@graphcommerce/framer-next-pages": "^3.1.2",
|
|
23
|
+
"@graphcommerce/framer-scroller": "^2.0.6",
|
|
24
|
+
"@graphcommerce/framer-utils": "^3.0.4",
|
|
25
|
+
"@graphcommerce/image": "^3.1.1",
|
|
26
26
|
"react-is": "^17.0.2",
|
|
27
27
|
"react-schemaorg": "^2.0.0",
|
|
28
28
|
"schema-dts": "^1.1.0",
|
|
@@ -30,7 +30,6 @@
|
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"@lingui/macro": "^3.13.2",
|
|
33
|
-
"@mui/base": "^5.0.0-alpha.68",
|
|
34
33
|
"@mui/lab": "^5.0.0-alpha.68",
|
|
35
34
|
"@mui/material": "^5.4.1",
|
|
36
35
|
"framer-motion": "^6.2.4",
|
|
@@ -39,11 +38,11 @@
|
|
|
39
38
|
"react-dom": "^17.0.2"
|
|
40
39
|
},
|
|
41
40
|
"devDependencies": {
|
|
42
|
-
"@graphcommerce/eslint-config-pwa": "^4.0.
|
|
43
|
-
"@graphcommerce/prettier-config-pwa": "^4.0.
|
|
41
|
+
"@graphcommerce/eslint-config-pwa": "^4.0.6",
|
|
42
|
+
"@graphcommerce/prettier-config-pwa": "^4.0.4",
|
|
44
43
|
"@graphcommerce/typescript-config-pwa": "^4.0.2",
|
|
45
|
-
"@playwright/test": "^1.19.
|
|
44
|
+
"@playwright/test": "^1.19.2",
|
|
46
45
|
"@types/react-is": "^17.0.3",
|
|
47
|
-
"typescript": "^4.
|
|
46
|
+
"typescript": "^4.6.2"
|
|
48
47
|
}
|
|
49
48
|
}
|