@telia-ace/widget-components-not-found 1.0.24 → 1.0.25-next.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/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { createReactComponent as t } from "@telia-ace/widget-ui";
2
- const n = (o) => t(o, "not-found", import("./not-found.2bdc2d40.js")), r = n;
2
+ const n = (o) => t(o, "not-found", import("./not-found.b81d1bf3.js")), r = n;
3
3
  export {
4
4
  r as default
5
5
  };
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- declare type Props = {
2
+ type Props = {
3
3
  header?: string;
4
4
  link?: string;
5
5
  suggestionHeader?: string;
@@ -1,5 +1,5 @@
1
1
  import { Container } from '@webprovisions/platform';
2
- export declare type NotFoundComponentProps = {
2
+ export type NotFoundComponentProps = {
3
3
  header?: string;
4
4
  linkLabel?: string;
5
5
  suggestionHeader?: string;
@@ -19,15 +19,7 @@ const P = ({
19
19
  link: e = "",
20
20
  suggestionHeader: n = "",
21
21
  suggestion: a = ""
22
- }) => /* @__PURE__ */ r.createElement(j, null, /* @__PURE__ */ r.createElement(H, null, /* @__PURE__ */ r.createElement(h, {
23
- variant: "h2"
24
- }, "404")), /* @__PURE__ */ r.createElement(S, null, /* @__PURE__ */ r.createElement(h, {
25
- variant: "h3"
26
- }, t), /* @__PURE__ */ r.createElement(F, {
27
- routeName: "index",
28
- "aria-label": e,
29
- text: e
30
- })), /* @__PURE__ */ r.createElement(D, null, /* @__PURE__ */ r.createElement("span", null, n), /* @__PURE__ */ r.createElement("ul", null, /* @__PURE__ */ r.createElement("li", null, a)))), T = P, j = o.div`
22
+ }) => /* @__PURE__ */ r.createElement(j, null, /* @__PURE__ */ r.createElement(H, null, /* @__PURE__ */ r.createElement(h, { variant: "h2" }, "404")), /* @__PURE__ */ r.createElement(S, null, /* @__PURE__ */ r.createElement(h, { variant: "h3" }, t), /* @__PURE__ */ r.createElement(F, { routeName: "index", "aria-label": e, text: e })), /* @__PURE__ */ r.createElement(D, null, /* @__PURE__ */ r.createElement("span", null, n), /* @__PURE__ */ r.createElement("ul", null, /* @__PURE__ */ r.createElement("li", null, a)))), T = P, j = o.div`
31
23
  ${(t) => L(t)}
32
24
  display: flex;
33
25
  flex-wrap: wrap;
@@ -89,25 +81,31 @@ const P = ({
89
81
  }
90
82
  `, I = () => {
91
83
  const { header: t, linkLabel: e, suggestionHeader: n, suggestionLabel: a, showSearch: E } = k(), x = B(), s = N();
92
- return /* @__PURE__ */ r.createElement(r.Fragment, null, E && /* @__PURE__ */ r.createElement(C, {
93
- builder: ($) => x.get("settings").then((l) => {
94
- var i;
95
- const w = Object.keys(l.components).reduce(
96
- (y, c) => l.components[c].type === "search" ? l.components[c].properties : y,
97
- {}
98
- ), m = $.createNode("search", { detached: !0 });
99
- return m.writeLayout({ size: "full" }), m.writeProperties(p({
100
- "css-margin-bottom": ((i = s == null ? void 0 : s.sizes) == null ? void 0 : i.normal) || "15px"
101
- }, w)), m;
102
- })
103
- }), /* @__PURE__ */ r.createElement(T, {
104
- header: t,
105
- link: e,
106
- suggestionHeader: n,
107
- suggestion: a
108
- }));
84
+ return /* @__PURE__ */ r.createElement(r.Fragment, null, E && /* @__PURE__ */ r.createElement(
85
+ C,
86
+ {
87
+ builder: ($) => x.get("settings").then((l) => {
88
+ var i;
89
+ const w = Object.keys(l.components).reduce(
90
+ (y, c) => l.components[c].type === "search" ? l.components[c].properties : y,
91
+ {}
92
+ ), m = $.createNode("search", { detached: !0 });
93
+ return m.writeLayout({ size: "full" }), m.writeProperties(p({
94
+ "css-margin-bottom": ((i = s == null ? void 0 : s.sizes) == null ? void 0 : i.normal) || "15px"
95
+ }, w)), m;
96
+ })
97
+ }
98
+ ), /* @__PURE__ */ r.createElement(
99
+ T,
100
+ {
101
+ header: t,
102
+ link: e,
103
+ suggestionHeader: n,
104
+ suggestion: a
105
+ }
106
+ ));
109
107
  };
110
108
  export {
111
109
  I as default
112
110
  };
113
- //# sourceMappingURL=not-found.2bdc2d40.js.map
111
+ //# sourceMappingURL=not-found.b81d1bf3.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"not-found.2bdc2d40.js","sources":["../src/not-found-base.tsx","../src/not-found.tsx"],"sourcesContent":["import { css } from '@emotion/react';\nimport styled from '@emotion/styled';\nimport { contentBox, headingElement, TextLink, Typography } from '@telia-ace/widget-ui';\nimport React from 'react';\n\ntype Props = {\n header?: string;\n link?: string;\n suggestionHeader?: string;\n suggestion?: string;\n};\n\nconst NotFoundBase: React.FC<Props> = ({\n header = '',\n link = '',\n suggestionHeader = '',\n suggestion = '',\n}) => {\n return (\n <Wrapper>\n <Status>\n <Typography variant=\"h2\">404</Typography>\n </Status>\n <Header>\n <Typography variant=\"h3\">{header}</Typography>\n <TextLink routeName=\"index\" aria-label={link} text={link} />\n </Header>\n <Content>\n <span>{suggestionHeader}</span>\n <ul>\n <li>{suggestion}</li>\n </ul>\n </Content>\n </Wrapper>\n );\n};\n\nexport default NotFoundBase;\n\nconst Wrapper = styled.div`\n ${(p) => contentBox(p)}\n display: flex;\n flex-wrap: wrap;\n flex-direction: row;\n justify-content: flex-start;\n padding: ${(p) => p.theme.sizes?.medium};\n`;\n\nconst Status = styled.div`\n ${(p) =>\n headingElement(p)(\n 'h2',\n css`\n padding: 0;\n margin: 0;\n color: gray;\n font-size: ${p.theme.fonts?.huge};\n `\n )}\n`;\n\nconst Header = styled.div`\n margin-left: ${(p) => p.theme.sizes?.medium};\n\n ${(p) =>\n headingElement(p)(\n 'h3',\n css`\n text-transform: uppercase;\n font-size: ${p.theme.fonts?.normal};\n `\n )}\n\n a {\n color: ${(p) => p.theme.colors?.link};\n font-size: ${(p) => p.theme.fonts?.small};\n }\n`;\n\nconst Content = styled.div`\n margin-top: ${(p) => p.theme.sizes?.medium};\n min-width: 100%;\n\n span {\n font-weight: bold;\n }\n`;\n","import { useTheme } from '@emotion/react';\nimport { DetachedComponent } from '@telia-ace/widget-types-grid';\nimport { useContainer, useProperties } from '@telia-ace/widget-ui';\nimport React from 'react';\nimport NotFoundBase from './not-found-base';\nimport { NotFoundComponentProps } from './not-found-component';\n\ntype Props = {};\n\nconst NotFound: React.FC<Props> = () => {\n const { header, linkLabel, suggestionHeader, suggestionLabel, showSearch } =\n useProperties<NotFoundComponentProps>();\n const container = useContainer();\n const theme = useTheme();\n\n return (\n <>\n {showSearch && (\n <DetachedComponent\n builder={(components: any) => {\n return container.get('settings').then((settings: any) => {\n const searchComponentProps = Object.keys(settings.components).reduce(\n (acc, key) => {\n if (settings.components[key].type === 'search') {\n return settings.components[key].properties;\n }\n\n return acc;\n },\n {}\n );\n const searchNode = components.createNode('search', { detached: true });\n searchNode.writeLayout({ size: 'full' });\n searchNode.writeProperties({\n 'css-margin-bottom': theme?.sizes?.normal || '15px',\n ...searchComponentProps,\n });\n\n return searchNode;\n });\n }}\n />\n )}\n <NotFoundBase\n header={header}\n link={linkLabel}\n suggestionHeader={suggestionHeader}\n suggestion={suggestionLabel}\n />\n </>\n );\n};\n\nexport default NotFound;\n"],"names":["NotFoundBase","header","link","suggestionHeader","suggestion","React","Wrapper","Status","Typography","Header","TextLink","Content","NotFoundBase$1","styled","p","contentBox","_a","headingElement","css","NotFound","linkLabel","suggestionLabel","showSearch","useProperties","container","useContainer","theme","useTheme","DetachedComponent","components","settings","searchComponentProps","acc","key","searchNode","__spreadValues"],"mappings":"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"}
1
+ {"version":3,"file":"not-found.b81d1bf3.js","sources":["../src/not-found-base.tsx","../src/not-found.tsx"],"sourcesContent":["import { css } from '@emotion/react';\nimport styled from '@emotion/styled';\nimport { contentBox, headingElement, TextLink, Typography } from '@telia-ace/widget-ui';\nimport React from 'react';\n\ntype Props = {\n header?: string;\n link?: string;\n suggestionHeader?: string;\n suggestion?: string;\n};\n\nconst NotFoundBase: React.FC<Props> = ({\n header = '',\n link = '',\n suggestionHeader = '',\n suggestion = '',\n}) => {\n return (\n <Wrapper>\n <Status>\n <Typography variant=\"h2\">404</Typography>\n </Status>\n <Header>\n <Typography variant=\"h3\">{header}</Typography>\n <TextLink routeName=\"index\" aria-label={link} text={link} />\n </Header>\n <Content>\n <span>{suggestionHeader}</span>\n <ul>\n <li>{suggestion}</li>\n </ul>\n </Content>\n </Wrapper>\n );\n};\n\nexport default NotFoundBase;\n\nconst Wrapper = styled.div`\n ${(p) => contentBox(p)}\n display: flex;\n flex-wrap: wrap;\n flex-direction: row;\n justify-content: flex-start;\n padding: ${(p) => p.theme.sizes?.medium};\n`;\n\nconst Status = styled.div`\n ${(p) =>\n headingElement(p)(\n 'h2',\n css`\n padding: 0;\n margin: 0;\n color: gray;\n font-size: ${p.theme.fonts?.huge};\n `\n )}\n`;\n\nconst Header = styled.div`\n margin-left: ${(p) => p.theme.sizes?.medium};\n\n ${(p) =>\n headingElement(p)(\n 'h3',\n css`\n text-transform: uppercase;\n font-size: ${p.theme.fonts?.normal};\n `\n )}\n\n a {\n color: ${(p) => p.theme.colors?.link};\n font-size: ${(p) => p.theme.fonts?.small};\n }\n`;\n\nconst Content = styled.div`\n margin-top: ${(p) => p.theme.sizes?.medium};\n min-width: 100%;\n\n span {\n font-weight: bold;\n }\n`;\n","import { useTheme } from '@emotion/react';\nimport { DetachedComponent } from '@telia-ace/widget-types-grid';\nimport { useContainer, useProperties } from '@telia-ace/widget-ui';\nimport React from 'react';\nimport NotFoundBase from './not-found-base';\nimport { NotFoundComponentProps } from './not-found-component';\n\ntype Props = {};\n\nconst NotFound: React.FC<Props> = () => {\n const { header, linkLabel, suggestionHeader, suggestionLabel, showSearch } =\n useProperties<NotFoundComponentProps>();\n const container = useContainer();\n const theme = useTheme();\n\n return (\n <>\n {showSearch && (\n <DetachedComponent\n builder={(components: any) => {\n return container.get('settings').then((settings: any) => {\n const searchComponentProps = Object.keys(settings.components).reduce(\n (acc, key) => {\n if (settings.components[key].type === 'search') {\n return settings.components[key].properties;\n }\n\n return acc;\n },\n {}\n );\n const searchNode = components.createNode('search', { detached: true });\n searchNode.writeLayout({ size: 'full' });\n searchNode.writeProperties({\n 'css-margin-bottom': theme?.sizes?.normal || '15px',\n ...searchComponentProps,\n });\n\n return searchNode;\n });\n }}\n />\n )}\n <NotFoundBase\n header={header}\n link={linkLabel}\n suggestionHeader={suggestionHeader}\n suggestion={suggestionLabel}\n />\n </>\n );\n};\n\nexport default NotFound;\n"],"names":["NotFoundBase","header","link","suggestionHeader","suggestion","Wrapper","React","Status","Typography","Header","TextLink","Content","NotFoundBase$1","styled","p","contentBox","_a","headingElement","css","NotFound","linkLabel","suggestionLabel","showSearch","useProperties","container","useContainer","theme","useTheme","DetachedComponent","components","settings","searchComponentProps","acc","key","searchNode","__spreadValues"],"mappings":"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"}
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
- declare type Props = {};
2
+ type Props = {};
3
3
  declare const NotFound: React.FC<Props>;
4
4
  export default NotFound;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telia-ace/widget-components-not-found",
3
- "version": "1.0.24",
3
+ "version": "1.0.25-next.0",
4
4
  "description": "Not found component for ACE Widgets.",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "author": "Telia Company AB",
@@ -21,9 +21,9 @@
21
21
  },
22
22
  "sideEffects": false,
23
23
  "dependencies": {
24
- "@telia-ace/widget-core": "^1.0.19",
25
- "@telia-ace/widget-types-grid": "^1.0.28",
26
- "@telia-ace/widget-ui": "^1.0.26",
24
+ "@telia-ace/widget-core": "^1.0.20-next.0",
25
+ "@telia-ace/widget-types-grid": "^1.0.29-next.0",
26
+ "@telia-ace/widget-ui": "^1.0.27-next.0",
27
27
  "@webprovisions/platform": "^1.1.2"
28
28
  },
29
29
  "peerDependencies": {
@@ -35,9 +35,9 @@
35
35
  "devDependencies": {
36
36
  "@emotion/react": "^11.10.5",
37
37
  "@emotion/styled": "^11.10.5",
38
- "@telia-ace/widget-developer-tools": "^1.0.14",
39
- "@types/react": "^18.0.25",
40
- "@types/react-dom": "^18.0.8",
38
+ "@telia-ace/widget-developer-tools": "^1.0.15-next.0",
39
+ "@types/react": "^18.0.26",
40
+ "@types/react-dom": "^18.0.9",
41
41
  "react": "^18.2.0",
42
42
  "react-dom": "^18.2.0"
43
43
  },